Report: CSIT Framework Documentation 37/8937/7
authorTibor Frank <tifrank@cisco.com>
Fri, 20 Oct 2017 11:35:53 +0000 (13:35 +0200)
committerTibor Frank <tifrank@cisco.com>
Mon, 23 Oct 2017 13:00:36 +0000 (13:00 +0000)
Change-Id: I2eba1183a5acdd1fb34efab16fc5c89e38dedb14
Signed-off-by: Tibor Frank <tifrank@cisco.com>
docs/report/csit_framework_documentation/csit_design.rst [moved from docs/report/introduction/csit_design.rst with 93% similarity]
docs/report/csit_framework_documentation/csit_design_picture.svg [moved from docs/report/introduction/csit_design_picture.svg with 99% similarity]
docs/report/csit_framework_documentation/csit_tag_description.rst [moved from docs/report/introduction/csit_tag_description.rst with 100% similarity]
docs/report/csit_framework_documentation/csit_test_naming.rst [moved from docs/report/introduction/csit_test_naming.rst with 97% similarity]
docs/report/csit_framework_documentation/index.rst [new file with mode: 0644]
docs/report/csit_framework_documentation/pal_func_diagram.svg [new file with mode: 0644]
docs/report/csit_framework_documentation/pal_layers.svg [new file with mode: 0644]
docs/report/csit_framework_documentation/pal_lld.rst [new file with mode: 0644]
docs/report/index.rst
docs/report/introduction/index.rst
resources/tools/presentation/doc/pal_lld.rst

-.. _csit-design:\r
-\r
-CSIT Design\r
-===========\r
-\r
-FD.io CSIT system design needs to meet continuously expanding\r
-requirements of FD.io projects including VPP, related sub-systems (e.g.\r
-plugin applications, DPDK drivers) and FD.io applications (e.g. DPDK\r
-applications), as well as growing number of compute platforms running\r
-those applications. With CSIT project scope and charter including both\r
-FD.io continuous testing AND performance trending/comparisons, those\r
-evolving requirements further amplify the need for CSIT framework\r
-modularity, flexibility and usability.\r
-\r
-Design Hierarchy\r
-----------------\r
-\r
-CSIT follows a hierarchical system design with SUTs and DUTs at the\r
-bottom level of the hierarchy, presentation level at the top level and a\r
-number of functional layers in-between. The current CSIT system design\r
-including CSIT framework is depicted in the figure below.\r
-\r
-.. raw:: latex\r
-\r
-    \begin{figure}[H]\r
-    \centering\r
-        \includesvg[width=0.90\textwidth]{csit_design_picture}\r
-        \label{fig:csit_design_picture}\r
-    \end{figure}\r
-\r
-.. figure:: csit_design_picture.svg\r
-   :alt: FD.io CSIT system design\r
-   :align: center\r
-\r
-   *FD.io CSIT system design*\r
-\r
-A brief bottom-up description is provided here:\r
-\r
-#. SUTs, DUTs, TGs\r
-\r
-   - SUTs - Systems Under Test;\r
-   - DUTs - Devices Under Test;\r
-   - TGs - Traffic Generators;\r
-\r
-#. Level-1 libraries - Robot and Python\r
-\r
-   - Lowest level CSIT libraries abstracting underlying test environment, SUT,\r
-     DUT and TG specifics;\r
-   - Used commonly across multiple L2 KWs;\r
-   - Performance and functional tests:\r
-\r
-     - L1 KWs (KeyWords) are implemented as RF libraries and Python\r
-       libraries;\r
-\r
-   - Performance TG L1 KWs:\r
-\r
-     - All L1 KWs are implemented as Python libraries:\r
-\r
-       - Support for TRex only today;\r
-       - CSIT IXIA drivers in progress;\r
-\r
-   - Performance data plane traffic profiles:\r
-\r
-     - TG-specific stream profiles provide full control of:\r
-\r
-       - Packet definition – layers, MACs, IPs, ports, combinations thereof\r
-         e.g. IPs and UDP ports;\r
-       - Stream definitions - different streams can run together, delayed,\r
-         one after each other;\r
-       - Stream profiles are independent of CSIT framework and can be used\r
-         in any T-rex setup, can be sent anywhere to repeat tests with\r
-         exactly the same setup;\r
-       - Easily extensible – one can create a new stream profile that meets\r
-         tests requirements;\r
-       - Same stream profile can be used for different tests with the same\r
-         traffic needs;\r
-\r
-   - Functional data plane traffic scripts:\r
-\r
-     - Scapy specific traffic scripts;\r
-\r
-#. Level-2 libraries - Robot resource files:\r
-\r
-   - Higher level CSIT libraries abstracting required functions for executing\r
-     tests;\r
-   - L2 KWs are classified into the following functional categories:\r
-\r
-     - Configuration, test, verification, state report;\r
-     - Suite setup, suite teardown;\r
-     - Test setup, test teardown;\r
-\r
-#. Tests - Robot:\r
-\r
-   - Test suites with test cases;\r
-   - Functional tests using VIRL environment:\r
-\r
-     - VPP;\r
-     - Honeycomb;\r
-     - NSH_SFC;\r
-\r
-   - Performance tests using physical testbed environment:\r
-\r
-     - VPP;\r
-     - DPDK-Testpmd;\r
-     - DPDK-L3Fwd;\r
-\r
-   - Tools:\r
-\r
-     - Documentation generator;\r
-     - Report generator;\r
-     - Testbed environment setup ansible playbooks;\r
-     - Operational debugging scripts;\r
-\r
-Test Lifecycle Abstraction\r
---------------------------\r
-\r
-A well coded test must follow a disciplined abstraction of the test\r
-lifecycles that includes setup, configuration, test and verification. In\r
-addition to improve test execution efficiency, the commmon aspects of\r
-test setup and configuration shared across multiple test cases should be\r
-done only once. Translating these high-level guidelines into the Robot\r
-Framework one arrives to definition of a well coded RF tests for FD.io\r
-CSIT. Anatomy of Good Tests for CSIT:\r
-\r
-#. Suite Setup - Suite startup Configuration common to all Test Cases in suite:\r
-   uses Configuration KWs, Verification KWs, StateReport KWs;\r
-#. Test Setup - Test startup Configuration common to multiple Test Cases: uses\r
-   Configuration KWs, StateReport KWs;\r
-#. Test Case - uses L2 KWs with RF Gherkin style:\r
-\r
-   - prefixed with {Given} - Verification of Test setup, reading state: uses\r
-     Configuration KWs, Verification KWs, StateReport KWs;\r
-   - prefixed with {When} - Test execution: Configuration KWs, Test KWs;\r
-   - prefixed with {Then} - Verification of Test execution, reading state: uses\r
-     Verification KWs, StateReport KWs;\r
-\r
-#. Test Teardown - post Test teardown with Configuration cleanup and\r
-   Verification common to multiple Test Cases - uses: Configuration KWs,\r
-   Verification KWs, StateReport KWs;\r
-#. Suite Teardown - Suite post-test Configuration cleanup: uses Configuration\r
-   KWs, Verification KWs, StateReport KWs;\r
-\r
-RF Keywords Functional Classification\r
--------------------------------------\r
-\r
-CSIT RF KWs are classified into the functional categories matching the test\r
-lifecycle events described earlier. All CSIT RF L2 and L1 KWs have been grouped\r
-into the following functional categories:\r
-\r
-#. Configuration;\r
-#. Test;\r
-#. Verification;\r
-#. StateReport;\r
-#. SuiteSetup;\r
-#. TestSetup;\r
-#. SuiteTeardown;\r
-#. TestTeardown;\r
-\r
-RF Keywords Naming Guidelines\r
------------------------------\r
-\r
-Readability counts: "..code is read much more often than it is written."\r
-Hence following a good and consistent grammar practice is important when\r
-writing :abbr:`RF (Robot Framework)` KeyWords and Tests. All CSIT test cases\r
-are coded using Gherkin style and include only L2 KWs references. L2 KWs are\r
-coded using simple style and include L2 KWs, L1 KWs, and L1 python references.\r
-To improve readability, the proposal is to use the same grammar for both\r
-:abbr:`RF (Robot Framework)` KW styles, and to formalize the grammar of English\r
-sentences used for naming the :abbr:`RF (Robot Framework)` KWs. :abbr:`RF (Robot\r
-Framework)` KWs names are short sentences expressing functional description of\r
-the command. They must follow English sentence grammar in one of the following\r
-forms:\r
-\r
-#. **Imperative** - verb-object(s): *"Do something"*, verb in base form.\r
-#. **Declarative** - subject–verb–object(s): *"Subject does something"*, verb in\r
-   a third-person singular present tense form.\r
-#. **Affirmative** - modal_verb-verb-object(s): *"Subject should be something"*,\r
-   *"Object should exist"*, verb in base form.\r
-#. **Negative** - modal_verb-Not-verb-object(s): *"Subject should not be\r
-   something"*, *"Object should not exist"*, verb in base form.\r
-\r
-Passive form MUST NOT be used. However a usage of past participle as an\r
-adjective is okay. See usage examples provided in the Coding guidelines\r
-section below. Following sections list applicability of the above\r
-grammar forms to different :abbr:`RF (Robot Framework)` KW categories. Usage\r
-examples are provided, both good and bad.\r
-\r
-Coding guidelines\r
------------------\r
-\r
-Coding guidelines can be found on `Design optimizations wiki page\r
-<https://wiki.fd.io/view/CSIT/Design_Optimizations>`_.\r
+.. _csit-design:
+
+CSIT Design
+===========
+
+FD.io CSIT system design needs to meet continuously expanding
+requirements of FD.io projects including VPP, related sub-systems (e.g.
+plugin applications, DPDK drivers) and FD.io applications (e.g. DPDK
+applications), as well as growing number of compute platforms running
+those applications. With CSIT project scope and charter including both
+FD.io continuous testing AND performance trending/comparisons, those
+evolving requirements further amplify the need for CSIT framework
+modularity, flexibility and usability.
+
+Design Hierarchy
+----------------
+
+CSIT follows a hierarchical system design with SUTs and DUTs at the
+bottom level of the hierarchy, presentation level at the top level and a
+number of functional layers in-between. The current CSIT system design
+including CSIT framework is depicted in the figure below.
+
+.. only:: latex
+
+    .. raw:: latex
+
+       \begin{figure}[H]
+       \centering
+           \includesvg[width=0.90\textwidth]{../_tmp/src/csit_framework_documentation/csit_design_picture}
+           \label{fig:csit_design_picture}
+       \end{figure}
+
+.. only:: html
+
+    .. figure:: csit_design_picture.svg
+        :alt: FD.io CSIT system design
+        :align: center
+
+   *FD.io CSIT system design*
+
+A brief bottom-up description is provided here:
+
+#. SUTs, DUTs, TGs
+
+   - SUTs - Systems Under Test;
+   - DUTs - Devices Under Test;
+   - TGs - Traffic Generators;
+
+#. Level-1 libraries - Robot and Python
+
+   - Lowest level CSIT libraries abstracting underlying test environment, SUT,
+     DUT and TG specifics;
+   - Used commonly across multiple L2 KWs;
+   - Performance and functional tests:
+
+     - L1 KWs (KeyWords) are implemented as RF libraries and Python
+       libraries;
+
+   - Performance TG L1 KWs:
+
+     - All L1 KWs are implemented as Python libraries:
+
+       - Support for TRex only today;
+       - CSIT IXIA drivers in progress;
+
+   - Performance data plane traffic profiles:
+
+     - TG-specific stream profiles provide full control of:
+
+       - Packet definition – layers, MACs, IPs, ports, combinations thereof
+         e.g. IPs and UDP ports;
+       - Stream definitions - different streams can run together, delayed,
+         one after each other;
+       - Stream profiles are independent of CSIT framework and can be used
+         in any T-rex setup, can be sent anywhere to repeat tests with
+         exactly the same setup;
+       - Easily extensible – one can create a new stream profile that meets
+         tests requirements;
+       - Same stream profile can be used for different tests with the same
+         traffic needs;
+
+   - Functional data plane traffic scripts:
+
+     - Scapy specific traffic scripts;
+
+#. Level-2 libraries - Robot resource files:
+
+   - Higher level CSIT libraries abstracting required functions for executing
+     tests;
+   - L2 KWs are classified into the following functional categories:
+
+     - Configuration, test, verification, state report;
+     - Suite setup, suite teardown;
+     - Test setup, test teardown;
+
+#. Tests - Robot:
+
+   - Test suites with test cases;
+   - Functional tests using VIRL environment:
+
+     - VPP;
+     - Honeycomb;
+     - NSH_SFC;
+
+   - Performance tests using physical testbed environment:
+
+     - VPP;
+     - DPDK-Testpmd;
+     - DPDK-L3Fwd;
+
+   - Tools:
+
+     - Documentation generator;
+     - Report generator;
+     - Testbed environment setup ansible playbooks;
+     - Operational debugging scripts;
+
+Test Lifecycle Abstraction
+--------------------------
+
+A well coded test must follow a disciplined abstraction of the test
+lifecycles that includes setup, configuration, test and verification. In
+addition to improve test execution efficiency, the commmon aspects of
+test setup and configuration shared across multiple test cases should be
+done only once. Translating these high-level guidelines into the Robot
+Framework one arrives to definition of a well coded RF tests for FD.io
+CSIT. Anatomy of Good Tests for CSIT:
+
+#. Suite Setup - Suite startup Configuration common to all Test Cases in suite:
+   uses Configuration KWs, Verification KWs, StateReport KWs;
+#. Test Setup - Test startup Configuration common to multiple Test Cases: uses
+   Configuration KWs, StateReport KWs;
+#. Test Case - uses L2 KWs with RF Gherkin style:
+
+   - prefixed with {Given} - Verification of Test setup, reading state: uses
+     Configuration KWs, Verification KWs, StateReport KWs;
+   - prefixed with {When} - Test execution: Configuration KWs, Test KWs;
+   - prefixed with {Then} - Verification of Test execution, reading state: uses
+     Verification KWs, StateReport KWs;
+
+#. Test Teardown - post Test teardown with Configuration cleanup and
+   Verification common to multiple Test Cases - uses: Configuration KWs,
+   Verification KWs, StateReport KWs;
+#. Suite Teardown - Suite post-test Configuration cleanup: uses Configuration
+   KWs, Verification KWs, StateReport KWs;
+
+RF Keywords Functional Classification
+-------------------------------------
+
+CSIT RF KWs are classified into the functional categories matching the test
+lifecycle events described earlier. All CSIT RF L2 and L1 KWs have been grouped
+into the following functional categories:
+
+#. Configuration;
+#. Test;
+#. Verification;
+#. StateReport;
+#. SuiteSetup;
+#. TestSetup;
+#. SuiteTeardown;
+#. TestTeardown;
+
+RF Keywords Naming Guidelines
+-----------------------------
+
+Readability counts: "..code is read much more often than it is written."
+Hence following a good and consistent grammar practice is important when
+writing :abbr:`RF (Robot Framework)` KeyWords and Tests. All CSIT test cases
+are coded using Gherkin style and include only L2 KWs references. L2 KWs are
+coded using simple style and include L2 KWs, L1 KWs, and L1 python references.
+To improve readability, the proposal is to use the same grammar for both
+:abbr:`RF (Robot Framework)` KW styles, and to formalize the grammar of English
+sentences used for naming the :abbr:`RF (Robot Framework)` KWs. :abbr:`RF (Robot
+Framework)` KWs names are short sentences expressing functional description of
+the command. They must follow English sentence grammar in one of the following
+forms:
+
+#. **Imperative** - verb-object(s): *"Do something"*, verb in base form.
+#. **Declarative** - subject–verb–object(s): *"Subject does something"*, verb in
+   a third-person singular present tense form.
+#. **Affirmative** - modal_verb-verb-object(s): *"Subject should be something"*,
+   *"Object should exist"*, verb in base form.
+#. **Negative** - modal_verb-Not-verb-object(s): *"Subject should not be
+   something"*, *"Object should not exist"*, verb in base form.
+
+Passive form MUST NOT be used. However a usage of past participle as an
+adjective is okay. See usage examples provided in the Coding guidelines
+section below. Following sections list applicability of the above
+grammar forms to different :abbr:`RF (Robot Framework)` KW categories. Usage
+examples are provided, both good and bad.
+
+Coding guidelines
+-----------------
+
+Coding guidelines can be found on `Design optimizations wiki page
+<https://wiki.fd.io/view/CSIT/Design_Optimizations>`_.
-<?xml version="1.0" encoding="UTF-8"?>\r
-<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">\r
-<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1748px" height="1240px" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"\r
-viewBox="0 0 174800000 124013514"\r
- xmlns:xlink="http://www.w3.org/1999/xlink">\r
- <defs>\r
-  <style type="text/css">\r
-   <![CDATA[\r
-    .str1 {stroke:black;stroke-width:214839;stroke-linejoin:round}\r
-    .str0 {stroke:white;stroke-width:286412;stroke-linejoin:round}\r
-    .fil5 {fill:none}\r
-    .fil11 {fill:none;fill-rule:nonzero}\r
-    .fil3 {fill:#4BACC6}\r
-    .fil0 {fill:#4F81BD}\r
-    .fil2 {fill:#9BBB59}\r
-    .fil9 {fill:#C0504D}\r
-    .fil4 {fill:#F79646}\r
-    .fil7 {fill:#E5E5E6}\r
-    .fil8 {fill:#F7F7F7}\r
-    .fil6 {fill:black;fill-rule:nonzero}\r
-    .fil10 {fill:#9F9FA0;fill-rule:nonzero}\r
-    .fil1 {fill:white;fill-rule:nonzero}\r
-   ]]>\r
-  </style>\r
- </defs>\r
- <g id="Layer_x0020_1">\r
-  <polygon class="fil0" points="37422672,97611863 71024901,97611863 71024901,82665518 37422672,82665518 "/>\r
-  <path class="fil1" d="M43018162 89715864c0,143147 -23385,272003 -70865,387276 -46771,114565 -113856,212595 -201965,293971 -87400,80668 -194406,143147 -321845,187674 -127321,44409 -278735,66259 -455897,66259l-323971 0 0 1027895c0,12047 -3071,22559 -9803,30944 -6850,8976 -17362,15826 -30944,21023 -14291,5315 -33188,9803 -57282,13582 -24803,3779 -55038,5315 -91888,5315 -36968,0 -67085,-1535 -92006,-5315 -24094,-3779 -43700,-8268 -57991,-13582 -15118,-5197 -24921,-12047 -30944,-21023 -6024,-8386 -8976,-18897 -8976,-30944l0 -2636764c0,-58818 15826,-100982 46653,-125903 30944,-24803 64841,-37676 103226,-37676l611209 0c61771,0 121297,2244 177871,7559 56456,5315 123541,16535 200429,33188 77597,17244 156021,48897 236689,94959 79841,46653 147635,103935 204209,171729 55747,67912 98738,146218 128856,235153 30118,88935 45235,187674 45235,294680zm-397906 30118c0,-116809 -21850,-214012 -64841,-292436 -43700,-77597 -97203,-136297 -162044,-174800 -64015,-37676 -130391,-62479 -198185,-72282 -68621,-10630 -135588,-15826 -200429,-15826l-351135 0 0 1148483 342868 0c114565,0 210232,-15118 285585,-44527 76062,-29409 139368,-70038 191453,-122832 51141,-51968 90353,-114565 116809,-187674 26338,-73109 39921,-152241 39921,-238106z"/>\r
-  <path id="1" class="fil1" d="M44489080 91736221l-264444 731680c-9094,23385 -31653,41456 -67794,54330 -35432,12756 -90471,18779 -164288,18779 -38503,0 -69329,-1417 -92715,-5197 -23385,-3779 -41456,-10630 -54330,-18897 -12047,-8976 -18779,-21023 -20315,-35432 -1535,-15000 2244,-32362 10630,-53503l274247 -691759c-13582,-6024 -26338,-15826 -37676,-28582 -12047,-13582 -20315,-27165 -24094,-42283l-709121 -1899060c-12047,-30826 -17362,-55747 -17362,-73109 0,-18071 5315,-31653 17362,-42165 12047,-10512 30826,-17362 57282,-21023 26338,-3779 61771,-5315 106179,-5315 43700,0 78424,709 104053,2953 24803,2362 44409,6850 59526,12874 14291,5197 24803,14291 31653,24803 6732,11338 13582,26456 21141,45235l567391 1594578 6850 0 547077 -1602845c8976,-28582 19606,-46771 32362,-54212 12047,-8386 30944,-14409 55747,-18071 25629,-3779 61771,-5315 108541,-5315 41456,0 75353,1535 101691,5315 26456,3661 46062,10512 58109,21023 12756,10512 18779,24094 18779,42165 0,17362 -4488,40039 -12756,66377l-713727 1976657z"/>\r
-  <path id="2" class="fil1" d="M46685064 91533548c0,42873 -3071,76770 -9094,101691 -5197,24921 -14291,43700 -26338,55038 -11338,12047 -29409,23385 -52794,33188 -23385,10512 -50432,18779 -80550,25511 -30236,6850 -61889,12165 -95786,16653 -33897,4488 -67085,6732 -100982,6732 -103226,0 -191335,-13582 -264444,-40629 -73109,-27165 -133462,-68621 -180942,-123659 -46653,-54920 -80550,-125076 -102400,-209406 -21141,-84447 -31653,-183894 -31653,-298459l0 -1158995 -279680 0c-21850,0 -39921,-12047 -53503,-35432 -12756,-23385 -19488,-61771 -19488,-115274 0,-27992 1417,-51259 5197,-70156 3779,-19606 9094,-35432 14291,-48188 6024,-12047 14409,-21141 23385,-26456 9803,-5197 20315,-7441 32480,-7441l277318 0 0 -471842c0,-10512 2244,-20315 7441,-28582 5315,-9094 15118,-16535 29409,-23385 13582,-6732 32480,-11220 56574,-14291 23385,-3071 52676,-4488 88935,-4488 36850,0 67085,1417 90353,4488 24212,3071 42283,7559 55865,14291 13464,6850 22559,14291 28582,23385 6024,8268 9094,18071 9094,28582l0 471842 506329 0c12047,0 21850,2244 30944,7441 8268,5315 16535,14409 22559,26456 6850,12756 11338,28582 14291,48188 3071,18897 4606,42165 4606,70156 0,53503 -6850,91888 -19606,115274 -13582,23385 -30944,35432 -52794,35432l-506329 0 0 1105492c0,136415 20315,239641 60235,308971 39921,70038 112321,104762 216256,104762 33188,0 63306,-3071 89644,-9803 26456,-6850 49842,-13582 70156,-21141 20315,-7559 37676,-14291 52676,-21141 14409,-6732 27992,-9685 39212,-9685 7559,0 14291,1417 21141,5197 6024,3779 11338,10630 15118,21141 3661,10512 6732,24094 9685,42165 3071,17362 4606,39921 4606,66377z"/>\r
-  <path id="3" class="fil1" d="M48877978 91681183c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -52794,4488 -88227,4488 -37676,0 -67794,-1535 -91179,-4488 -24094,-3071 -42165,-7559 -55747,-12874 -13582,-6024 -22559,-13582 -28582,-21141 -6024,-8268 -9094,-18071 -9094,-30118l0 -1164310c0,-113029 -8976,-204918 -26338,-273538 -17362,-69329 -42991,-128856 -76888,-179288 -33897,-49724 -76888,-88227 -130391,-114565 -53503,-26338 -115274,-39921 -185312,-39921 -91179,0 -181650,32362 -272121,97203 -91179,64723 -186138,159682 -285585,284877l0 1389542c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -2948805c0,-12047 2244,-22559 7559,-30826 5315,-9094 15118,-16653 29409,-22677 13582,-5197 32362,-9803 56456,-12756 23385,-3071 52794,-4488 88935,-4488 36968,0 67085,1417 90471,4488 24094,2953 42165,7559 55747,12756 13582,6024 22677,13582 28700,22677 6024,8268 8976,18779 8976,30826l0 1187695c104053,-110785 209524,-192871 314994,-246374 105471,-53503 211768,-80668 318774,-80668 132635,0 243421,22559 333892,67085 90353,45235 163462,105471 219209,180115 55865,75353 95786,163462 119880,264444 24094,100982 36141,223106 36141,365545l0 1210962z"/>\r
-  <path id="4" class="fil1" d="M51388956 90663918c0,161926 -21141,311215 -64133,447630 -42165,135588 -106179,253106 -190626,351844 -84447,98738 -190626,175627 -317238,230665 -127321,54920 -275074,82912 -442315,82912 -163580,0 -306018,-24212 -427315,-73109 -121297,-48306 -222279,-119053 -302947,-211768 -80668,-92715 -140903,-205744 -180824,-337671 -40039,-132635 -59645,-282515 -59645,-450582 0,-162044 21141,-311215 62597,-446921 42165,-136415 105471,-253932 189918,-352671 84447,-98738 189918,-174800 316530,-229838 126612,-54212 274247,-81376 443024,-81376 163580,0 306018,24094 427315,73109 121297,48188 222279,119053 302947,211768 80668,92597 141730,204918 182359,337553 39921,132635 60353,281806 60353,448456zm-379836 23267c0,-107715 -9803,-209406 -30118,-305191 -19606,-95668 -52794,-179288 -98738,-251688 -45235,-72282 -107833,-129565 -186138,-171021 -77597,-42283 -175627,-63306 -292436,-63306 -107715,0 -200429,18779 -278026,57282 -77597,38385 -140903,92715 -191453,162753 -50432,70038 -87400,152950 -111494,248618 -24921,95786 -36968,200548 -36968,313577 0,109250 9803,211768 30118,307435 19606,95668 52794,179406 99565,250980 46653,70747 109250,128029 186847,169485 78424,42283 176335,63306 293144,63306 106297,0 198185,-18779 276609,-57282 78306,-38385 142438,-91888 192871,-161218 50550,-69329 87400,-152241 110785,-247909 23385,-95786 35432,-201256 35432,-315821z"/>\r
-  <path id="5" class="fil1" d="M53637616 91681183c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -52794,4488 -88227,4488 -37676,0 -67794,-1535 -91179,-4488 -24094,-3071 -42165,-7559 -55747,-12874 -13582,-6024 -22559,-13582 -28582,-21141 -6024,-8268 -9094,-18071 -9094,-30118l0 -1164310c0,-113029 -8976,-204918 -26338,-273538 -17362,-69329 -42991,-128856 -76888,-179288 -33897,-49724 -76888,-88227 -130391,-114565 -53503,-26338 -115274,-39921 -185312,-39921 -91179,0 -181650,32362 -272121,97203 -91179,64723 -186138,159682 -285585,284877l0 1389542c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-12047 2244,-21850 6850,-30118 4488,-7559 12756,-15000 26338,-21850 13582,-6732 30118,-11220 51259,-13582 20315,-2244 48188,-2953 82085,-2953 32480,0 59526,709 80668,2953 21850,2362 38385,6850 50550,13582 11220,6850 20315,14291 25511,21850 4606,8268 7559,18071 7559,30118l0 263027c111612,-125785 222398,-217791 333892,-275782 110785,-57991 222279,-87400 335309,-87400 131927,0 243421,22559 333892,67085 90353,45235 163462,105471 219209,180115 55865,75353 95786,163462 119880,264444 24094,100982 36141,222279 36141,363301l0 1213206z"/>\r
-  <path id="6" class="fil1" d="M56804213 91569689c0,30118 -1535,55038 -4606,74644 -2953,19488 -7441,36850 -14291,51141 -6732,13582 -14291,24212 -24094,30944 -9803,6732 -21141,9803 -34724,9803l-1263757 0c-33897,0 -66259,-11338 -96376,-33897 -30236,-23385 -45235,-63306 -45235,-120588l0 -2645858c0,-12047 2953,-22559 8976,-30944 6024,-8976 15826,-15826 30944,-21023 14291,-5315 34606,-9803 59526,-13582 24921,-3779 55038,-5315 90471,-5315 36850,0 67085,1535 91888,5315 24094,3779 43700,8268 57991,13582 15118,5197 24921,12047 30944,21023 6024,8386 9094,18897 9094,30944l0 2470231 1025533 0c13582,0 24921,3071 34724,9803 8976,6850 17362,16653 24094,28700 6850,12756 11338,29409 14291,50432 3071,20433 4606,45235 4606,74644z"/>\r
-  <path id="7" class="fil1" d="M57547231 91681183c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-10512 2244,-20315 7559,-28582 5315,-9094 15118,-16535 29409,-22559 13582,-5315 32362,-9803 56456,-12874 23385,-2953 52794,-4488 88935,-4488 36968,0 67085,1535 90471,4488 24094,3071 42165,7559 55747,12874 13582,6024 22677,13464 28700,22559 6024,8268 8976,18071 8976,28582l0 1987996zm40747 -2657905c0,85983 -16653,143974 -49015,174800 -32362,30944 -91888,46771 -179406,46771 -85865,0 -144682,-15118 -176335,-45235 -31653,-30118 -47479,-87400 -47479,-171847 0,-85865 16653,-143856 49015,-174800 32362,-30826 92006,-46653 179406,-46653 85865,0 144682,15000 176335,45117 31653,30236 47479,87518 47479,171847z"/>\r
-  <path id="8" class="fil1" d="M60000218 90659311c0,172556 -18897,327041 -56574,464992 -36968,137950 -91888,255468 -164997,351962 -72400,97203 -162044,171729 -267515,222988 -105589,52086 -226886,77715 -363301,77715 -63306,0 -122006,-6024 -175509,-18897 -53503,-12047 -106297,-32362 -157556,-60235 -51259,-28700 -102518,-63306 -154485,-106297 -51259,-42991 -105471,-94250 -162753,-154485l0 244129c0,11338 -3071,21850 -9094,30944 -6024,8976 -15000,15826 -28582,21023 -13582,5315 -30118,9094 -49724,12165 -20433,2953 -46062,4488 -76888,4488 -29409,0 -55038,-1535 -75353,-4488 -21141,-3071 -37676,-6850 -51259,-12165 -12874,-5197 -21850,-12047 -26338,-21023 -4606,-9094 -6850,-18897 -6850,-30944l0 -2948805c0,-12047 2244,-22559 7559,-30826 5315,-9094 15118,-16653 29409,-22677 13582,-5197 32362,-9803 56456,-12756 23385,-3071 52794,-4488 88935,-4488 36968,0 67085,1417 90471,4488 24094,2953 42165,7559 55747,12756 13582,6024 22677,13582 28700,22677 6024,8268 8976,18779 8976,30826l0 1187695c58818,-60235 115274,-111494 171139,-152950 54920,-40747 108423,-74644 161218,-100274 53503,-25629 106297,-44409 158974,-56456 52794,-11338 108541,-17362 167359,-17362 143856,0 266688,28582 369206,85865 101809,57282 184603,134879 248736,230665 64015,96376 110785,209406 140076,339088 29409,129565 43818,266806 43818,410662zm-379836 42283c0,-101809 -7559,-200548 -23385,-296215 -15118,-96494 -42165,-180824 -80668,-254759 -38385,-73818 -88935,-133344 -152241,-177753 -63306,-45235 -142320,-67912 -236571,-67912 -46771,0 -93424,6850 -139368,19606 -45235,13582 -92006,36259 -138659,67085 -47479,30944 -96494,70865 -147045,119880 -51259,48188 -105471,109959 -162753,183776l0 792860c100274,122832 195941,216256 287121,280271 91179,64133 186847,96494 285585,96494 91179,0 168895,-21850 233618,-66259 64841,-44527 117636,-103345 158265,-176454 40747,-72282 70156,-154485 88227,-244838 18779,-91179 27874,-183186 27874,-275782z"/>\r
-  <path id="9" class="fil1" d="M61710778 89822161c0,32362 -709,59526 -2244,81376 -1535,21850 -4488,39094 -9094,51968 -3779,12756 -9803,21850 -16535,28582 -6024,6850 -15118,9803 -27165,9803 -12047,0 -26338,-2953 -42991,-9803 -17244,-6732 -36141,-13582 -57164,-19606 -21141,-6732 -45235,-12756 -71692,-18779 -26338,-6024 -54920,-9094 -85865,-9094 -36968,0 -73109,7559 -108541,21850 -34606,15118 -72282,39212 -110785,73936 -39094,33897 -79841,79132 -122832,134879 -42165,56456 -89644,125076 -140903,206453l0 1307457c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-12047 2244,-21850 6850,-30118 4488,-7559 12756,-15000 26338,-21850 13582,-6732 30118,-11220 51259,-13582 20315,-2244 48188,-2953 82085,-2953 32480,0 59526,709 80668,2953 21850,2362 38385,6850 50550,13582 11220,6850 20315,14291 25511,21850 4606,8268 7559,18071 7559,30118l0 289483c54330,-79959 105589,-144682 153068,-195233 48188,-49724 93424,-89644 135588,-118344 42991,-28582 85156,-48188 126612,-59526 42165,-11220 84447,-16535 127321,-16535 18897,0 40747,709 64841,2953 24094,2362 49724,6850 76062,12047 26456,6142 50550,12874 71692,20433 21023,7559 36141,14291 45117,21850 9094,7559 15118,14291 17362,21023 3071,6850 6024,15118 8268,24921 2244,10512 3779,25629 4606,45235 709,20315 709,46653 709,80668z"/>\r
-  <path id="10" class="fil1" d="M63574406 91683427c0,17362 -6024,30944 -17362,40039 -12047,8976 -27874,15000 -49015,19488 -20315,4606 -50432,6850 -90353,6850 -37676,0 -68621,-2244 -91179,-6850 -22677,-4488 -39212,-10512 -49724,-19488 -10630,-9094 -15826,-21968 -15826,-40039l0 -198894c-86691,92715 -183186,164997 -290192,216256 -107006,50550 -220035,76180 -339088,76180 -104762,0 -199721,-13582 -284168,-40747 -84329,-27165 -156729,-67085 -216256,-118344 -59526,-51259 -106179,-115274 -139368,-189918 -33188,-75353 -49724,-160509 -49724,-256176 0,-112321 22559,-209524 68503,-291609 45235,-82912 110785,-151533 196768,-205744 85156,-54330 189918,-95668 313459,-122832 123541,-27165 263027,-40747 417512,-40747l274247 0 0 -155194c0,-76180 -8268,-143974 -24094,-203500 -16535,-58700 -42165,-107715 -78306,-146926 -36259,-39212 -82912,-68621 -140194,-88227 -57282,-20315 -128147,-30118 -211768,-30118 -89644,0 -170312,10630 -241177,32480 -71574,21850 -134171,45117 -187674,71574 -53503,26338 -98738,49724 -134879,71574 -35432,21850 -62479,32362 -79841,32362 -12047,0 -22677,-2953 -30944,-8976 -8976,-5315 -16535,-14409 -23385,-26456 -6732,-11220 -11220,-26338 -14291,-44409 -2953,-18897 -4488,-38385 -4488,-61062 0,-36141 2244,-65550 7559,-86691 5197,-21023 18071,-41456 37676,-60235 19606,-18897 54212,-41456 102518,-67794 48188,-25629 104644,-49724 167950,-71574 62597,-21141 131927,-39212 207280,-53503 74644,-14409 150706,-21141 226886,-21141 142320,0 263735,15826 363891,48188 100274,32480 180942,80668 242712,143265 61771,62479 106297,140076 134171,232791 27874,92715 42165,201256 42165,324797l0 1341354zm-361765 -910259l-311215 0c-99447,0 -186138,8268 -259956,25629 -73109,16535 -134171,42165 -183186,75353 -48188,33070 -83621,72282 -107006,119053 -22559,46653 -33897,100156 -33897,160509 0,103226 32480,185312 98030,246374 65550,61062 156729,92006 275074,92006 94959,0 183776,-24094 265271,-73109 81376,-48306 167241,-122832 256885,-223106l0 -422709z"/>\r
-  <path id="11" class="fil1" d="M65405672 89822161c0,32362 -709,59526 -2244,81376 -1535,21850 -4488,39094 -9094,51968 -3779,12756 -9803,21850 -16535,28582 -6024,6850 -15118,9803 -27165,9803 -12047,0 -26338,-2953 -42991,-9803 -17244,-6732 -36141,-13582 -57164,-19606 -21141,-6732 -45235,-12756 -71692,-18779 -26338,-6024 -54920,-9094 -85865,-9094 -36968,0 -73109,7559 -108541,21850 -34606,15118 -72282,39212 -110785,73936 -39094,33897 -79841,79132 -122832,134879 -42165,56456 -89644,125076 -140903,206453l0 1307457c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-12047 2244,-21850 6850,-30118 4488,-7559 12756,-15000 26338,-21850 13582,-6732 30118,-11220 51259,-13582 20315,-2244 48188,-2953 82085,-2953 32480,0 59526,709 80668,2953 21850,2362 38385,6850 50550,13582 11220,6850 20315,14291 25511,21850 4606,8268 7559,18071 7559,30118l0 289483c54330,-79959 105589,-144682 153068,-195233 48188,-49724 93424,-89644 135588,-118344 42991,-28582 85156,-48188 126612,-59526 42165,-11220 84447,-16535 127321,-16535 18897,0 40747,709 64841,2953 24094,2362 49724,6850 76062,12047 26456,6142 50550,12874 71692,20433 21023,7559 36141,14291 45117,21850 9094,7559 15118,14291 17362,21023 3071,6850 6024,15118 8268,24921 2244,10512 3779,25629 4606,45235 709,20315 709,46653 709,80668z"/>\r
-  <path id="12" class="fil1" d="M66700255 91736221l-264444 731680c-9094,23385 -31653,41456 -67794,54330 -35432,12756 -90471,18779 -164288,18779 -38503,0 -69329,-1417 -92715,-5197 -23385,-3779 -41456,-10630 -54330,-18897 -12047,-8976 -18779,-21023 -20315,-35432 -1535,-15000 2244,-32362 10630,-53503l274247 -691759c-13582,-6024 -26338,-15826 -37676,-28582 -12047,-13582 -20315,-27165 -24094,-42283l-709121 -1899060c-12047,-30826 -17362,-55747 -17362,-73109 0,-18071 5315,-31653 17362,-42165 12047,-10512 30826,-17362 57282,-21023 26338,-3779 61771,-5315 106179,-5315 43700,0 78424,709 104053,2953 24803,2362 44409,6850 59526,12874 14291,5197 24803,14291 31653,24803 6732,11338 13582,26456 21141,45235l567391 1594578 6850 0 547077 -1602845c8976,-28582 19606,-46771 32362,-54212 12047,-8386 30944,-14409 55747,-18071 25629,-3779 61771,-5315 108541,-5315 41456,0 75353,1535 101691,5315 26456,3661 46062,10512 58109,21023 12756,10512 18779,24094 18779,42165 0,17362 -4488,40039 -12756,66377l-713727 1976657z"/>\r
-  <polygon class="fil0" points="37449719,82665518 46574515,82665518 46574515,66175855 37449719,66175855 "/>\r
-  <polygon class="fil0" points="48090905,76464961 71024901,76464961 71024901,66229948 48090905,66229948 "/>\r
-  <path class="fil1" d="M57003461 70072005c0,9685 -1772,17480 -5433,24685 -3543,7205 -10748,13228 -22795,18071 -11456,4134 -28228,7795 -49369,10157 -21023,2362 -49251,3661 -84093,3661 -30708,0 -55865,-1299 -75117,-3661 -19252,-2362 -34842,-6024 -46889,-11456 -11456,-5315 -20433,-12519 -27047,-22204 -6614,-8976 -12047,-21023 -16889,-34842l-209169 -537982c-24566,-61298 -50432,-117163 -76888,-168304 -26456,-51023 -57637,-94959 -94368,-132163 -36023,-37322 -79369,-65550 -128620,-86573 -49251,-20433 -108778,-30708 -177871,-30708l-202555 0 0 971321c0,9685 -2480,17480 -7795,24685 -5433,7205 -13819,12638 -24685,16771 -11456,4252 -26456,7913 -45708,10866 -19842,2953 -43818,4252 -73345,4252 -29409,0 -53503,-1299 -73345,-4252 -19134,-2953 -34842,-6614 -46180,-10866 -12047,-4134 -19842,-9567 -24685,-16771 -4842,-6614 -7205,-15000 -7205,-24685l0 -2110238c0,-45708 12047,-77597 36023,-96140 24094,-18071 49960,-27047 77006,-27047l484361 0c57755,0 105234,1181 143738,4134 37795,3071 72046,6614 102754,9685 88345,15590 165824,39566 233736,72046 67322,33070 123895,74526 169603,125076 46180,50432 80432,108187 103345,173619 22795,64959 34251,137124 34251,215784 0,75825 -10275,144328 -30708,205036 -21023,60117 -50432,113620 -88935,159800 -39094,46298 -85274,86573 -139368,120825 -54094,33661 -114211,62597 -181532,85983 37795,16889 71455,37322 102164,62479 30590,25275 58936,55983 85274,90825 26456,35432 51731,76298 75235,122006 23385,45708 46889,97321 70274,155076l204327 502432c16299,42046 27047,72164 31299,88935 4842,16889 7205,30118 7205,39684zm-456252 -1602373c0,-88935 -19842,-164643 -60117,-226649 -39566,-61298 -106297,-105707 -200666,-132754 -29527,-8504 -62479,-13819 -99211,-17480 -37204,-3543 -85392,-5433 -145391,-5433l-255468 0 0 768175 295743 0c79841,0 149052,-9567 207280,-28818 57755,-19842 106415,-46889 144919,-81140 38976,-34842 67322,-75707 85865,-122596 18071,-46889 27047,-98030 27047,-153304z"/>\r
-  <path id="1" class="fil1" d="M58806618 69262374c0,129210 -16889,248263 -51141,357041 -33661,108187 -84684,201965 -152005,280743 -67322,78660 -152123,140076 -253106,183894 -101573,43936 -219327,66141 -352789,66141 -130391,0 -244011,-19252 -340742,-58345 -96849,-38503 -177398,-94959 -241649,-168895 -64369,-73936 -112439,-164052 -144210,-269286 -31889,-105707 -47598,-225350 -47598,-359403 0,-129210 16889,-248263 49960,-356450 33661,-108778 84093,-202555 151415,-281215 67322,-78778 151533,-139486 252515,-183422 100982,-43228 218736,-64841 353379,-64841 130391,0 244011,19252 340742,58345 96849,38385 177398,94959 241649,168895 64369,73818 113029,163462 145509,269168 31889,105825 48070,224878 48070,357631zm-302947 18661c0,-85983 -7795,-167123 -23976,-243421 -15708,-76298 -42165,-143029 -78778,-200784 -36023,-57637 -85983,-103345 -148462,-136415 -61889,-33661 -140076,-50432 -233264,-50432 -85865,0 -159800,15000 -221807,45590 -61889,30708 -112321,73936 -152596,129919 -40275,55865 -69684,122006 -88935,198304 -19842,76298 -29527,159918 -29527,250035 0,87164 7913,168895 24094,245192 15590,76416 42046,143147 79369,200193 37204,56456 87164,102164 149052,135234 62479,33661 140667,50432 233736,50432 84802,0 158147,-15000 220626,-45590 62479,-30708 113620,-73345 153895,-128620 40275,-55393 69684,-121415 88345,-197831 18661,-76298 28228,-160391 28228,-251806z"/>\r
-  <path id="2" class="fil1" d="M60693985 69258831c0,137596 -15000,260783 -45117,370859 -29409,109959 -73345,203736 -131572,280625 -57755,77597 -129328,137124 -213421,177989 -84093,41456 -180942,61889 -289719,61889 -50432,0 -97321,-4842 -140076,-15000 -42637,-9685 -84684,-25866 -125549,-48188 -40865,-22795 -81731,-50432 -123187,-84684 -40984,-34251 -84211,-75117 -129919,-123187l0 194760c0,8976 -2362,17362 -7205,24566 -4724,7205 -12047,12638 -22795,16889 -10866,4134 -24094,7205 -39684,9567 -16181,2362 -36614,3661 -61298,3661 -23504,0 -43936,-1299 -60117,-3661 -16771,-2362 -29999,-5433 -40865,-9567 -10275,-4252 -17480,-9685 -21023,-16889 -3661,-7205 -5433,-15000 -5433,-24566l0 -2352005c0,-9567 1772,-17952 6024,-24566 4252,-7205 12047,-13228 23385,-18071 10866,-4252 25866,-7795 45117,-10275 18661,-2362 42046,-3543 70983,-3543 29409,0 53503,1181 72046,3543 19252,2480 33661,6024 44527,10275 10748,4842 18071,10866 22795,18071 4842,6614 7205,15000 7205,24566l0 947345c46889,-48188 92006,-89054 136533,-122124 43818,-32362 86455,-59408 128620,-79841 42637,-20433 84684,-35551 126730,-45117 42165,-8976 86573,-13819 133462,-13819 114801,0 212831,22795 294562,68503 81140,45708 147281,107596 198304,183894 51141,77006 88345,167123 111848,270468 23385,103463 34842,212831 34842,327632zm-302947 33661c0,-81140 -6024,-159918 -18661,-236216 -12047,-77006 -33661,-144328 -64251,-203146 -30708,-58936 -70983,-106415 -121415,-141848 -50550,-36141 -113620,-54094 -188737,-54094 -37322,0 -74526,5433 -111258,15590 -36023,10866 -73345,28818 -110549,53503 -37913,24685 -77006,56456 -117163,95549 -40984,38503 -84211,87754 -129919,146690l0 632233c79959,98030 156257,172556 229012,223697 72755,51023 149052,76888 227831,76888 72755,0 134643,-17480 186375,-52912 51613,-35432 93660,-82321 126139,-140667 32480,-57637 55983,-123187 70392,-195351 15000,-72636 22204,-145982 22204,-219917z"/>\r
-  <path id="3" class="fil1" d="M62602966 69262374c0,129210 -16889,248263 -51141,357041 -33661,108187 -84684,201965 -152005,280743 -67322,78660 -152123,140076 -253106,183894 -101573,43936 -219327,66141 -352789,66141 -130391,0 -244011,-19252 -340742,-58345 -96849,-38503 -177398,-94959 -241649,-168895 -64369,-73936 -112439,-164052 -144210,-269286 -31889,-105707 -47598,-225350 -47598,-359403 0,-129210 16889,-248263 49960,-356450 33661,-108778 84093,-202555 151415,-281215 67322,-78778 151533,-139486 252515,-183422 100982,-43228 218736,-64841 353379,-64841 130391,0 244011,19252 340742,58345 96849,38385 177398,94959 241649,168895 64369,73818 113029,163462 145509,269168 31889,105825 48070,224878 48070,357631zm-302947 18661c0,-85983 -7795,-167123 -23976,-243421 -15708,-76298 -42165,-143029 -78778,-200784 -36023,-57637 -85983,-103345 -148462,-136415 -61889,-33661 -140076,-50432 -233264,-50432 -85865,0 -159800,15000 -221807,45590 -61889,30708 -112321,73936 -152596,129919 -40275,55865 -69684,122006 -88935,198304 -19842,76298 -29527,159918 -29527,250035 0,87164 7913,168895 24094,245192 15590,76416 42046,143147 79369,200193 37204,56456 87164,102164 149052,135234 62479,33661 140667,50432 233736,50432 84802,0 158147,-15000 220626,-45590 62479,-30708 113620,-73345 153895,-128620 40275,-55393 69684,-121415 88345,-197831 18661,-76298 28228,-160391 28228,-251806z"/>\r
-  <path id="4" class="fil1" d="M63855621 69956023c0,34251 -2480,61298 -7205,81140 -4252,19842 -11456,34842 -21023,43936 -9094,9567 -23504,18543 -42165,26338 -18543,8504 -40275,15118 -64251,20551 -24094,5315 -49251,9567 -76298,13110 -27047,3661 -53503,5433 -80550,5433 -82439,0 -152714,-10748 -211059,-32480 -58227,-21614 -106297,-54684 -144210,-98502 -37204,-43936 -64251,-99801 -81731,-167123 -16889,-67322 -25275,-146690 -25275,-237988l0 -924432 -222988 0c-17362,0 -31889,-9567 -42637,-28228 -10275,-18661 -15590,-49251 -15590,-92006 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38503 4842,-9567 11456,-16771 18661,-21023 7795,-4252 16181,-6024 25748,-6024l221216 0 0 -376174c0,-8504 1772,-16299 6024,-22913 4252,-7205 12047,-13228 23504,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2480 42046,-3661 70983,-3661 29409,0 53503,1181 72046,3661 19252,2362 33661,6024 44527,11338 10866,5433 18071,11456 22795,18661 4842,6614 7205,14409 7205,22913l0 376174 403930 0c9685,0 17480,1772 24685,6024 6614,4252 13228,11456 18071,21023 5315,10275 8976,22913 11338,38503 2480,15000 3661,33661 3661,55865 0,42755 -5433,73345 -15708,92006 -10748,18661 -24566,28228 -42046,28228l-403930 0 0 881795c0,108778 16299,191099 48188,246374 31771,55865 89526,83502 172438,83502 26456,0 50550,-2362 71574,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 42046,-16889 11456,-5433 22322,-7795 31299,-7795 6024,0 11456,1181 16771,4252 4842,2953 9094,8386 12047,16771 3071,8386 5433,19252 7795,33661 2480,13819 3661,31889 3661,52912z"/>\r
-  <path class="fil1" d="M56014188 74973964c0,23976 -1181,43818 -3543,59408 -2362,15590 -6024,29409 -11456,40865 -5315,10748 -11338,19134 -19134,24566 -7795,5433 -16771,7795 -27637,7795l-1006517 0c-26929,0 -52794,-8976 -76770,-27047 -23976,-18543 -36023,-50432 -36023,-96022l0 -2107167c0,-9567 2362,-17952 7205,-24566 4842,-7205 12638,-12638 24566,-16771 11456,-4252 27637,-7913 47479,-10866 19842,-2953 43818,-4252 72046,-4252 29409,0 53385,1299 73227,4252 19134,2953 34724,6614 46180,10866 11929,4134 19842,9567 24566,16771 4842,6614 7205,15000 7205,24566l0 1967327 816836 0c10866,0 19842,2480 27637,7795 7205,5433 13819,13228 19134,22795 5433,10275 9094,23504 11456,40275 2362,16181 3543,36023 3543,59408z"/>\r
-  <path id="1" class="fil1" d="M56606027 75062781c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-8386 1772,-16181 5905,-22795 4252,-7205 12047,-13228 23504,-17952 10748,-4252 25748,-7913 44999,-10275 18543,-2362 41928,-3543 70747,-3543 29409,0 53503,1181 72046,3543 19252,2362 33661,6024 44409,10275 10866,4724 18071,10748 22795,17952 4842,6614 7205,14409 7205,22795l0 1583239zm32480 -2116734c0,68385 -13228,114565 -39094,139249 -25748,24566 -73227,37204 -142793,37204 -68385,0 -115274,-12047 -140431,-36023 -25275,-24094 -37795,-69684 -37795,-136887 0,-68385 13228,-114565 38976,-139249 25866,-24566 73227,-37204 142793,-37204 68503,0 115274,12047 140549,36023 25157,23976 37795,69566 37795,136887z"/>\r
-  <path id="2" class="fil1" d="M58595558 74249016c0,137360 -15000,260428 -44999,370269 -29409,109841 -73227,203382 -131454,280271 -57637,77361 -128974,136769 -213067,177635 -83975,41456 -180587,61771 -289247,61771 -50432,0 -97203,-4724 -139840,-15000 -42637,-9567 -84565,-25748 -125431,-47952 -40865,-22795 -81613,-50432 -123069,-84684 -40747,-34133 -83975,-74999 -129565,-122951l0 194406c0,8976 -2480,17362 -7205,24566 -4842,7205 -12047,12638 -22795,16889 -10866,4134 -24094,7205 -39684,9567 -16181,2362 -36614,3543 -61180,3543 -23385,0 -43818,-1181 -59999,-3543 -16771,-2362 -29999,-5433 -40865,-9567 -10157,-4252 -17362,-9685 -21023,-16889 -3543,-7205 -5315,-15000 -5315,-24566l0 -2348462c0,-9567 1772,-17952 5905,-24566 4252,-7205 12047,-13228 23504,-18071 10748,-4134 25748,-7795 44999,-10157 18543,-2362 41928,-3661 70747,-3661 29409,0 53503,1299 72046,3661 19252,2362 33661,6024 44409,10157 10866,4842 18071,10866 22795,18071 4842,6614 7205,15000 7205,24566l0 945928c46889,-48070 91888,-88817 136297,-121888 43818,-32362 86455,-59408 128384,-79841 42637,-20433 84684,-35432 126612,-44999 42046,-8976 86455,-13819 133344,-13819 114565,0 212358,22795 293971,68503 81022,45590 147045,107360 198067,183540 51023,76888 88227,166887 111730,270113 23385,103226 34724,212476 34724,327159zm-302475 33543c0,-81022 -6024,-159682 -18543,-235862 -12047,-76770 -33661,-143974 -64251,-202792 -30590,-58818 -70865,-106297 -121297,-141730 -50314,-36023 -113384,-53975 -188382,-53975 -37204,0 -74408,5433 -111022,15590 -36023,10866 -73227,28818 -110431,53385 -37795,24685 -76888,56456 -117045,95431 -40865,38503 -84093,87636 -129683,146454l0 631406c79841,97794 156021,172202 228657,223224 72636,51023 148934,76888 227476,76888 72636,0 134407,-17480 186020,-52912 51613,-35314 93660,-82203 126139,-140431 32362,-57519 55747,-122951 70156,-194996 15000,-72636 22204,-145864 22204,-219681z"/>\r
-  <path id="3" class="fil1" d="M59957935 73582178c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>\r
-  <path id="4" class="fil1" d="M61406177 75064553c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>\r
-  <path id="5" class="fil1" d="M62864458 73582178c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>\r
-  <path id="6" class="fil1" d="M63931565 75106599l-210587 582745c-7205,18661 -25275,33070 -54094,43228 -28110,10157 -71928,15000 -130746,15000 -30590,0 -55275,-1181 -73818,-4252 -18661,-2953 -33070,-8386 -43228,-15000 -9685,-7205 -15000,-16771 -16181,-28110 -1299,-12047 1772,-25866 8386,-42637l218382 -550974c-10748,-4842 -20905,-12638 -29999,-22795 -9567,-10866 -16181,-21614 -19134,-33661l-564793 -1512374c-9567,-24566 -13819,-44409 -13819,-58227 0,-14409 4252,-25157 13819,-33661 9567,-8386 24566,-13701 45590,-16771 21023,-2953 49251,-4134 84684,-4134 34724,0 62361,591 82794,2362 19842,1772 35432,5433 47361,10157 11456,4252 19842,11456 25275,19842 5433,8976 10748,21023 16771,36023l451882 1269898 5433 0 435701 -1276512c7205,-22795 15590,-37204 25866,-43228 9567,-6614 24566,-11338 44409,-14409 20433,-2953 49251,-4134 86455,-4134 32952,0 59999,1181 81022,4134 20905,3071 36614,8386 46180,16771 10157,8504 15000,19252 15000,33661 0,13819 -3661,31771 -10157,52794l-568454 1574263z"/>\r
-  <polygon class="fil0" points="78173158,97611863 103950253,97611863 103950253,66175855 78173158,66175855 "/>\r
-  <path class="fil1" d="M88327031 68589866c0,22204 -1181,41338 -3661,57519 -2362,16299 -6024,29409 -11338,39684 -5433,9567 -11456,17362 -19252,21614 -7795,4724 -16181,7205 -25157,7205l-639201 0 0 1974531c0,9567 -2362,17362 -7205,24566 -4842,7205 -12638,12638 -24566,16771 -11456,4252 -27047,7795 -46298,10866 -19724,2953 -43818,4134 -73227,4134 -28228,0 -52204,-1181 -71928,-4134 -19842,-3071 -36023,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24566,-16771 -4842,-7205 -7205,-15000 -7205,-24566l0 -1974531 -639201 0c-8976,0 -17362,-2480 -25157,-7205 -7913,-4252 -13819,-12047 -18661,-21614 -4252,-10275 -8386,-23385 -11456,-39684 -2953,-16181 -4134,-35314 -4134,-57519 0,-22204 1181,-42046 4134,-58818 3071,-16889 7205,-30708 11456,-40865 4842,-10748 10748,-18543 18661,-22795 7795,-4842 16181,-7205 25157,-7205l1580877 0c8976,0 17362,2362 25157,7205 7795,4252 13819,12047 19252,22795 5315,10157 8976,23976 11338,40865 2480,16771 3661,36614 3661,58818z"/>\r
-  <path id="1" class="fil1" d="M89325635 69211588c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>\r
-  <path id="2" class="fil1" d="M90773876 70693962c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>\r
-  <path id="3" class="fil1" d="M93691146 68577229c0,32952 -2362,60589 -7795,82794 -5315,22204 -15000,40275 -28228,53975 -13701,13228 -31771,22913 -54566,28818 -23385,6024 -52204,9094 -87636,9094 -34251,0 -62361,-3071 -85865,-9094 -22795,-5905 -40747,-15590 -54566,-28818 -13228,-13701 -22795,-31771 -28818,-53975 -6024,-22204 -8976,-49842 -8976,-82794 0,-33070 2953,-59999 8976,-82203 6024,-21614 15590,-39684 28818,-54684 13819,-14409 31771,-24566 54566,-29999 23504,-5433 51613,-7795 85865,-7795 35432,0 64251,2362 87636,7795 22795,5433 40865,15590 54566,29999 13228,15000 22913,33070 28228,54684 5433,22204 7795,49133 7795,82203zm-32362 2114962c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23385,16889 -11456,4134 -26456,7795 -44999,10157 -18661,2362 -42637,3543 -72046,3543 -27047,0 -49842,-1181 -69684,-3543 -19134,-2362 -34133,-6024 -45590,-10157 -10748,-4842 -18543,-10866 -22795,-16889 -4134,-6614 -6024,-14409 -6024,-23976l0 -1385762 -713019 0 0 1385762c0,9567 -2362,17362 -7086,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -709357 0 0 1385762c0,9567 -2480,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -224524 0c-18543,0 -32952,-9567 -41928,-28228 -9685,-18543 -14409,-49251 -14409,-91770 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38385 4134,-9685 10157,-16889 17362,-21023 7205,-4252 15590,-6024 24566,-6024l224524 0 0 -149407c0,-109250 10748,-202910 31771,-280861 21023,-78069 52204,-142320 94250,-192634 42046,-50432 94250,-87636 157202,-111730 62479,-23976 135116,-36023 217909,-36023 51613,0 96612,4252 134998,13228 38503,8976 66613,16889 85274,24685 17952,7795 30590,15000 37204,22204 7205,6614 13228,16181 17952,26929 4252,11456 7795,24685 9685,40865 1772,15590 2362,34842 2362,57046 0,37795 -2953,64723 -8976,81613 -5433,17362 -16181,25748 -31181,25748 -9685,0 -20433,-2362 -32480,-7795 -11929,-5433 -27637,-11338 -46180,-17952 -18661,-6024 -40275,-12047 -64251,-17480 -23385,-5315 -50432,-7795 -79251,-7795 -86337,0 -147045,29999 -182359,89408 -34842,60117 -52204,155430 -52204,286885l0 153068 709357 0 0 -171021c0,-108659 10748,-202319 32362,-280271 21614,-78069 53503,-142202 94250,-193225 40865,-50432 92479,-87636 153659,-111730 61771,-23976 132635,-35905 212476,-35905 25748,0 51613,1181 77951,3543 26456,2362 49842,6024 70274,10157 20433,4842 38976,10275 54566,15000 15590,5433 26456,10866 32480,16889 6024,6024 10748,11929 14409,18543 3543,6614 6614,14409 9567,24094 2953,8976 4842,20905 6024,34724 1181,14409 1772,31181 1772,51613 0,37204 -2953,64251 -8976,80432 -5433,16771 -16181,24685 -31181,24685 -8504,0 -18071,-1890 -28228,-6024 -10866,-4252 -23385,-8386 -37795,-13228 -15000,-4842 -33661,-8976 -55865,-13228 -22204,-4134 -49251,-6024 -81022,-6024 -81022,0 -138659,29999 -173383,90116 -34251,59408 -51731,155430 -51731,286766l0 174091 913566 0c29999,0 52794,7795 68385,23976 15000,15590 22795,37204 22795,65432l0 1537649z"/>\r
-  <path id="4" class="fil1" d="M95368045 70448534c0,19842 -591,37204 -1772,51613 -1181,15000 -2953,27047 -6024,37204 -2953,10157 -6614,18661 -10748,26456 -4252,7795 -13228,19134 -28228,33543 -14409,15000 -39684,33070 -74408,55275 -35432,21614 -74999,41338 -118817,58227 -44409,17362 -91888,31181 -143501,41338 -51613,10866 -104998,16181 -160273,16181 -113974,0 -214839,-18543 -302475,-56338 -88227,-37204 -162044,-91888 -220862,-163934 -59408,-71928 -104408,-160745 -135588,-265271 -31181,-104998 -46771,-225586 -46771,-363064 0,-155430 19134,-289247 56928,-401449 38385,-111730 90707,-203500 156729,-274956 66613,-71337 144564,-124250 233972,-158974 90116,-34251 187319,-51613 291727,-51613 50432,0 98975,4724 146454,14409 47952,8976 91179,21614 131454,36614 39566,15590 75589,32952 106179,53385 31181,19842 53975,37204 67794,51023 14409,14409 24094,25748 29409,33543 4842,8504 9685,18071 13228,29409 2953,10866 5433,23504 6614,37913 1181,13701 1772,31771 1772,52794 0,45590 -5433,77361 -15590,96022 -10748,17952 -23385,26929 -38976,26929 -17480,0 -37795,-9567 -60589,-29409 -22913,-19134 -51613,-40747 -87046,-64133 -35432,-23504 -78069,-44999 -127911,-64251 -49724,-19842 -108541,-29409 -176454,-29409 -139840,0 -247200,53385 -321608,160863 -74408,106770 -111612,262200 -111612,465700 0,101455 9567,190863 28818,267633 19724,76298 47952,140431 85746,192044 37204,51023 83384,89526 138068,114683 54566,25157 117045,37795 187201,37795 67204,0 126021,-10748 176454,-31771 50432,-21023 93660,-44409 130864,-70274 37204,-25157 68385,-47952 93660,-68385 25157,-21023 44409,-31181 58818,-31181 7795,0 15000,2362 21023,7205 5905,4724 10748,12519 15000,23385 4134,11338 7205,25157 8976,42637 1772,16771 2362,37204 2362,60589z"/>\r
-  <path class="fil1" d="M85602395 73753199c0,22204 -1181,42046 -3661,58818 -2362,16771 -5905,31181 -10157,42637 -4842,10748 -10748,18543 -17952,23385 -6614,4842 -14409,7205 -22913,7205 -13701,0 -37204,-11338 -70156,-33543 -33070,-22204 -76888,-47479 -132045,-74526 -55275,-26929 -121179,-52204 -198067,-74408 -76770,-22204 -168068,-33543 -273066,-33543 -126021,0 -238224,22795 -337907,68385 -99565,46180 -184249,109250 -253224,190272 -69684,81022 -122478,177044 -159682,288656 -36614,111612 -55156,232319 -55156,362474 0,145864 20315,274956 60589,387749 40747,112203 96612,207634 168658,285113 71337,77361 156611,136179 256176,175863 99093,40157 208343,59999 326569,59999 70747,0 142202,-8386 214248,-25866 72046,-16771 139249,-42637 201611,-76180l0 -664949 -526880 0c-20433,0 -35432,-10275 -44999,-30118 -10275,-19724 -15000,-50905 -15000,-93542 0,-22204 1181,-41456 3543,-57046 2362,-15590 6024,-28818 11456,-38976 5315,-9685 11338,-16889 18543,-21614 6614,-4842 15590,-7205 26456,-7205l721995 0c13228,0 25748,2362 38976,7205 12638,4724 24566,11338 34842,21023 10748,9567 19134,22204 24566,38385 6024,16771 8976,35432 8976,56456l0 868331c0,30708 -5315,57046 -15590,79251 -10748,22204 -32952,42046 -67204,58818 -33543,16771 -77951,35432 -132045,55275 -53975,20315 -109250,37204 -166769,51613 -57637,13819 -115864,24566 -174091,31181 -58818,7205 -117045,10748 -174091,10748 -176454,0 -333655,-26929 -471724,-81613 -138659,-54566 -255704,-132635 -351017,-233382 -95431,-100864 -168658,-221453 -219091,-362592 -50432,-141021 -75589,-297632 -75589,-471724 0,-180587 26929,-344403 81613,-490857 54566,-146454 131336,-271294 230429,-375111 98975,-103226 217791,-183068 356450,-240114 139249,-57046 292908,-85156 461566,-85156 87046,0 168068,7795 244248,22795 76298,15590 144092,33543 203500,53975 58818,21023 108659,43228 149407,67794 40275,23976 67794,43818 83384,59408 15000,15000 25866,33070 31299,52794 5905,19842 8976,48661 8976,86455z"/>\r
-  <path id="1" class="fil1" d="M87481495 74813691c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>\r
-  <path id="2" class="fil1" d="M89287368 75674345c0,9567 -2480,17362 -7205,23976 -4842,6024 -12047,12047 -22913,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -41928,3543 -70156,3543 -29999,0 -53975,-1181 -72636,-3543 -19252,-2362 -33661,-6024 -44409,-10157 -10748,-4842 -17952,-10866 -22795,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -927267c0,-89998 -7205,-163225 -21023,-217791 -13819,-55275 -34251,-102636 -61180,-142911 -27047,-39566 -61298,-70156 -103817,-91179 -42637,-21023 -91888,-31889 -147635,-31889 -72636,0 -144682,25866 -216728,77479 -72636,51613 -148226,127202 -227476,226886l0 1106673c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 209406c88935,-100156 177044,-173383 265979,-219563 88227,-46298 177044,-69684 267042,-69684 104998,0 193815,18071 265861,53385 72046,36023 130273,84093 174682,143501 44409,59999 76180,130273 95431,210705 19134,80314 28818,177044 28818,289247l0 966242z"/>\r
-  <path id="3" class="fil1" d="M91164696 74813691c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>\r
-  <path id="4" class="fil1" d="M92534750 74193742c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>\r
-  <path id="5" class="fil1" d="M93946969 75676117c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>\r
-  <path id="6" class="fil1" d="M95303322 75556709c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>\r
-  <path id="7" class="fil1" d="M97122423 74864124c0,129092 -16771,247909 -51023,356450 -33543,108069 -84565,201729 -151769,280271 -67204,78660 -151887,139840 -252751,183658 -101337,43818 -218972,66022 -352316,66022 -130155,0 -243657,-19134 -340269,-58227 -96612,-38385 -177044,-94723 -241177,-168540 -64251,-73818 -112321,-163934 -144092,-268932 -31771,-105589 -47361,-224996 -47361,-358931 0,-128974 16771,-247791 49724,-355860 33661,-108659 84093,-202201 151296,-280861 67204,-78660 151178,-139249 252043,-183068 100864,-43228 218500,-64841 352907,-64841 130273,0 243657,19252 340269,58227 96612,38385 177044,94841 241295,168658 64251,73818 112793,163225 145273,268932 31771,105589 47952,224405 47952,357041zm-302475 18661c0,-85865 -7795,-166887 -23976,-243066 -15590,-76298 -42046,-142911 -78660,-200548 -36023,-57637 -85746,-103226 -148226,-136179 -61771,-33661 -139840,-50432 -232909,-50432 -85746,0 -159564,15000 -221453,45590 -61771,30590 -112203,73818 -152359,129683 -40275,55747 -69684,121769 -88817,198067 -19842,76180 -29409,159564 -29409,249681 0,86928 7795,168540 23976,244838 15590,76180 42046,142793 79251,199839 37204,56456 86928,102045 148816,134998 62361,33661 140431,50432 233500,50432 84565,0 157792,-15000 220154,-45590 62479,-30590 113502,-73227 153659,-128384 40275,-55275 69684,-121297 88227,-197477 18661,-76298 28228,-160273 28228,-251452z"/>\r
-  <path id="8" class="fil1" d="M98477596 74193742c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>\r
-  <path class="fil1" d="M87977194 79526914c0,197122 -25157,369678 -75707,516959 -50432,147871 -124368,269877 -221216,366608 -96731,96731 -215784,169485 -356332,217555 -141257,48070 -308971,72164 -503731,72164l-482590 0c-27047,0 -52912,-8976 -77006,-27047 -23976,-18661 -36023,-50432 -36023,-96140l0 -2032759c0,-45708 12047,-77597 36023,-96140 24094,-18071 49960,-27047 77006,-27047l515660 0c197713,0 364245,25157 500660,76298 135824,51023 250035,124958 342632,220508 91888,95668 161690,211650 209169,348065 47479,135824 71455,289719 71455,460976zm-317356 13228c0,-123187 -15000,-237988 -45590,-344403 -30708,-106415 -78778,-198304 -143738,-275901 -65432,-77479 -147871,-137596 -248145,-181414 -99801,-43346 -228421,-64959 -385977,-64959l-308853 0 0 1774338 311924 0c146100,0 268696,-18071 369088,-54684 99683,-36141 183304,-92006 250035,-167123 67322,-75117 117754,-169485 150824,-283105 33661,-113029 50432,-247673 50432,-402749z"/>\r
-  <path id="1" class="fil1" d="M89337327 79173534c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>\r
-  <path id="2" class="fil1" d="M89959993 80656381c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-8504 1772,-16299 6024,-22913 4252,-7205 12047,-13228 23385,-17952 10866,-4252 25866,-7795 45117,-10275 18661,-2362 42046,-3543 70983,-3543 29409,0 53503,1181 72046,3543 19252,2480 33661,6024 44527,10275 10748,4724 18071,10748 22795,17952 4842,6614 7205,14409 7205,22913l0 1585601zm32480 -2119922c0,68503 -13228,114801 -39094,139368 -25866,24685 -73345,37322 -143029,37322 -68503,0 -115392,-12047 -140667,-36141 -25157,-23976 -37795,-69684 -37795,-137005 0,-68503 13228,-114801 38976,-139486 25866,-24566 73345,-37204 143147,-37204 68503,0 115392,12047 140667,36023 25157,24094 37795,69802 37795,137124z"/>\r
-  <path id="3" class="fil1" d="M91793858 79067119c0,4842 0,9685 -591,15000 -591,5433 -1772,10866 -2362,16889 -1181,6024 -3071,12047 -4842,19252 -1772,7205 -3543,14409 -6024,22795l-540345 1506233c-4724,13228 -11338,24094 -18661,31889 -7795,8386 -19134,15000 -34251,19252 -15590,4724 -34842,8386 -58227,10157 -23504,1890 -52912,2480 -88345,2480 -34842,0 -64369,-1299 -87754,-3661 -23504,-2362 -42755,-6024 -57164,-10157 -15000,-4842 -26456,-11456 -34251,-19842 -8386,-7913 -15000,-18071 -19842,-30118l-538573 -1506233c-4724,-13819 -8386,-26456 -11338,-36614 -3071,-10866 -4842,-18661 -5433,-24094 -591,-5433 -591,-9567 -591,-13228 0,-9567 2362,-17362 6614,-24566 4842,-7323 12638,-12638 23976,-16889 10866,-4252 25866,-6614 43936,-7795 18071,-1181 40865,-1772 67912,-1772 34251,0 61298,591 81731,2362 20433,1772 36732,5433 47479,10157 11456,4252 19842,10275 24685,17480 5433,7205 10157,15590 15000,26456l447157 1307339 7205 21023 5433 -21023 441842 -1307339c2362,-10866 6496,-19252 12519,-26456 5433,-7205 14527,-13228 25275,-17480 11456,-4724 26456,-8386 45708,-10157 19842,-1772 45117,-2362 76888,-2362 27047,0 49369,591 66731,1772 17480,1181 31299,4252 41456,8976 10275,4252 16889,10275 21023,16299 4252,6614 6024,14409 6024,23976z"/>\r
-  <path id="4" class="fil1" d="M93437805 79794428c0,45708 -11456,78069 -34251,97912 -22913,19252 -49369,28936 -78778,28936l-1041005 0c0,88345 8976,167595 26456,237988 17362,70865 46889,131572 88345,182123 40865,50432 94368,88935 159918,115982 66022,27047 146572,40865 241531,40865 75117,0 142438,-6024 200784,-18661 58936,-11929 109959,-25748 152714,-40865 42637,-15000 78069,-28818 105707,-40865 27637,-12638 48070,-18661 62597,-18661 8386,0 15590,1890 22204,6024 6024,4252 11456,10275 14409,18661 3661,7795 6614,19252 8386,33661 1890,15000 2480,32480 2480,53503 0,15000 -591,28228 -1890,39684 -1181,10866 -2362,21023 -4134,29409 -1890,9094 -4842,16889 -9094,24094 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25866,16771 -57046,31181 -31889,15118 -72755,28936 -123305,43346 -50432,13819 -108778,26456 -174918,37204 -66022,11456 -136415,16889 -211532,16889 -130391,0 -244011,-18071 -341923,-54684 -98030,-36141 -180351,-90235 -247082,-161690 -66731,-72164 -117163,-161690 -150824,-269877 -34251,-107596 -51141,-233264 -51141,-376883 0,-135824 17480,-258421 52912,-367198 34842,-108187 85983,-200784 152005,-276491 66141,-75825 146690,-133462 240468,-174328 93778,-40275 198894,-60708 314994,-60708 124368,0 230193,19842 317356,60117 87754,39684 159210,93778 215784,161099 55865,67322 97321,146572 123777,237988 26456,90707 39684,188146 39684,291491l0 52912zm-292081 -85983c3543,-152596 -30118,-272830 -101691,-359994 -71455,-87164 -176690,-130391 -316648,-130391 -72164,0 -135234,13110 -189327,40157 -54094,27047 -99211,63188 -135942,108305 -36614,44409 -64841,96731 -84684,155666 -19842,59408 -31299,121415 -33661,186256l861953 0z"/>\r
-  <path id="5" class="fil1" d="M94809985 79173534c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>\r
-  <path id="6" class="fil1" d="M96073978 80223515c0,81140 -15000,153304 -44999,217083 -30118,63070 -72164,116573 -127439,159800 -55275,43346 -120825,76416 -197122,98620 -76416,22204 -160509,33661 -251925,33661 -56456,0 -109959,-4252 -160981,-13228 -51141,-8386 -96849,-19252 -137714,-33070 -40275,-13228 -74526,-27047 -102754,-41456 -28228,-14409 -48661,-27637 -61298,-39094 -13228,-11456 -22913,-28228 -28228,-49251 -6024,-21023 -9094,-49960 -9094,-86573 0,-22204 1299,-40865 3661,-55865 2362,-15708 5433,-27637 8386,-37322 3661,-9567 8976,-16181 15000,-20433 6614,-4252 13819,-6024 22322,-6024 12638,0 31771,7795 57046,24094 25275,15590 56456,33070 93187,51613 36614,18661 80550,36141 130982,51731 50550,16181 108187,24094 173737,24094 49251,0 93778,-5433 133462,-16299 40275,-10157 74526,-25866 103935,-46889 29527,-20433 51731,-46889 67912,-78660 15708,-31889 23504,-69802 23504,-113620 0,-44527 -11456,-82321 -34251,-112439 -22913,-30590 -52912,-57637 -90235,-81140 -37795,-23385 -79959,-44409 -126730,-62479 -46889,-18071 -95077,-37322 -144919,-57164 -49251,-20433 -97912,-42637 -145391,-67912 -47598,-25157 -89644,-55865 -127439,-92479 -37322,-36732 -67322,-79959 -90235,-130509 -22795,-50432 -34251,-110549 -34251,-181532 0,-61889 12047,-121297 36141,-178461 23976,-57046 59999,-107006 108187,-149643 48661,-42637 108778,-77597 180824,-103345 72164,-25866 156375,-38503 253106,-38503 42046,0 84093,3543 126848,10748 42046,7323 79841,16889 114211,27755 34251,10748 63070,22795 87046,35432 24094,13228 42755,23976 54802,34251 12519,9567 20433,18071 24566,24685 4252,7205 7205,15000 9094,23976 1772,8386 3543,19252 5315,31889 1890,13228 2480,28818 2480,47479 0,19842 -591,37204 -2480,51731 -1772,14409 -4724,26338 -8976,35432 -4252,9567 -8976,16181 -15000,20433 -6024,4134 -12638,6024 -19252,6024 -10866,0 -25866,-6614 -46298,-19842 -19842,-12638 -45708,-26456 -77479,-41456 -31889,-15118 -69211,-28936 -111848,-41574 -42637,-13110 -92006,-19724 -147281,-19724 -49251,0 -93187,5315 -130391,16771 -37913,10866 -68503,26456 -92597,46889 -23976,20433 -42637,44527 -54684,72755 -12638,27637 -18661,58227 -18661,90707 0,45708 12047,84211 35551,115392 23385,31299 53503,58345 91298,81731 37322,23504 80550,44527 128620,63778 48070,18661 96849,37795 146690,57637 49842,20433 99211,42755 147871,67322 48661,24685 91888,54684 129210,89644 37913,35432 67912,77479 90707,126730 22913,49369 34251,108187 34251,176099z"/>\r
-  <polygon class="fil0" points="106522411,97611863 121874930,97611863 121874930,66175855 106522411,66175855 "/>\r
-  <path class="fil1" d="M111459803 76026071c0,22204 -1181,41456 -3543,57637 -2480,16299 -6024,29527 -11456,39684 -5433,9685 -11456,17480 -19252,21614 -7795,4842 -16181,7205 -25157,7205l-640146 0 0 1977484c0,9685 -2480,17480 -7205,24685 -4842,7205 -12638,12638 -24685,16771 -11456,4252 -27047,7913 -46298,10866 -19842,2953 -43818,4252 -73345,4252 -28228,0 -52204,-1299 -72046,-4252 -19842,-2953 -36141,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24685,-16771 -4842,-7205 -7205,-15000 -7205,-24685l0 -1977484 -640146 0c-8976,0 -17362,-2362 -25275,-7205 -7795,-4134 -13819,-11929 -18543,-21614 -4252,-10157 -8504,-23385 -11456,-39684 -3071,-16181 -4252,-35432 -4252,-57637 0,-22322 1181,-42046 4252,-58936 2953,-16771 7205,-30708 11456,-40865 4724,-10866 10748,-18661 18543,-22795 7913,-4842 16299,-7205 25275,-7205l1583239 0c8976,0 17362,2362 25157,7205 7795,4134 13819,11929 19252,22795 5433,10157 8976,24094 11456,40865 2362,16889 3543,36614 3543,58936z"/>\r
-  <path id="1" class="fil1" d="M112459942 76648737c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>\r
-  <path id="2" class="fil1" d="M113910310 78133356c0,13819 -4842,24566 -13819,31771 -9685,7323 -22322,12047 -39094,15708 -16181,3543 -40275,5433 -72164,5433 -29999,0 -54684,-1890 -72636,-5433 -18071,-3661 -31299,-8386 -39684,-15708 -8504,-7205 -12638,-17362 -12638,-31771l0 -158737c-69093,73936 -146100,131691 -231374,172556 -85392,40275 -175509,60708 -270586,60708 -83502,0 -159210,-10866 -226531,-32480 -67322,-21614 -125076,-53503 -172556,-94368 -47479,-40865 -84684,-92006 -111140,-151415 -26456,-60117 -39684,-128029 -39684,-204445 0,-89526 18071,-167005 54684,-232555 36023,-66141 88345,-120825 156848,-164052 67912,-43346 151533,-76416 250035,-98030 98620,-21614 209760,-32480 333065,-32480l218736 0 0 -123777c0,-60708 -6614,-114801 -19252,-162281 -13228,-46889 -33661,-85983 -62479,-117163 -28818,-31299 -66141,-54802 -111848,-70392 -45590,-16181 -102164,-23976 -168895,-23976 -71455,0 -135824,8386 -192280,25748 -57164,17480 -107006,36141 -149643,57164 -42755,21023 -78778,39684 -107596,57046 -28228,17480 -49960,25866 -63778,25866 -9567,0 -17952,-2362 -24566,-7205 -7205,-4252 -13228,-11456 -18661,-21023 -5433,-8976 -8976,-21023 -11456,-35432 -2362,-15118 -3543,-30708 -3543,-48661 0,-28936 1772,-52322 6024,-69211 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43346,-33070 81731,-54094 38503,-20433 83621,-39684 134053,-57046 49842,-16889 105234,-31299 165351,-42755 59408,-11338 120116,-16771 180824,-16771 113620,0 210351,12638 290310,38503 79959,25748 144328,64251 193579,114092 49251,49960 84802,111848 107006,185784 22204,73936 33661,160509 33661,259011l0 1069941zm-288538 -726129l-248263 0c-79251,0 -148462,6614 -207280,20433 -58345,13228 -107006,33661 -146100,60117 -38503,26456 -66731,57755 -85392,94959 -17952,37322 -27047,79959 -27047,128029 0,82321 25866,147871 78188,196532 52322,48779 124958,73345 219327,73345 75825,0 146690,-19252 211650,-58227 64841,-38503 133344,-98030 204918,-177989l0 -337199z"/>\r
-  <path id="3" class="fil1" d="M116832068 76013434c0,33070 -2480,60708 -7795,82912 -5433,22204 -15118,40275 -28346,54094 -13819,13228 -31771,22913 -54684,28818 -23385,6024 -52204,9094 -87754,9094 -34251,0 -62479,-3071 -85865,-9094 -22913,-5905 -40865,-15590 -54684,-28818 -13228,-13819 -22913,-31889 -28936,-54094 -6024,-22204 -8976,-49842 -8976,-82912 0,-33070 2953,-60117 8976,-82321 6024,-21732 15708,-39684 28936,-54684 13819,-14527 31771,-24685 54684,-30118 23385,-5433 51613,-7795 85865,-7795 35551,0 64369,2362 87754,7795 22913,5433 40865,15590 54684,30118 13228,15000 22913,32952 28346,54684 5315,22204 7795,49251 7795,82321zm-32480 2118151c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42755,3661 -72164,3661 -27047,0 -49842,-1299 -69684,-3661 -19252,-2362 -34251,-6024 -45708,-10157 -10866,-4842 -18661,-10866 -22795,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1387888 -714082 0 0 1387888c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42046,3661 -70392,3661 -28228,0 -51613,-1299 -70274,-3661 -18661,-2362 -33661,-6024 -45117,-10157 -10748,-4842 -18661,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1387888 -710420 0 0 1387888c0,9567 -2480,17362 -7323,23976 -4724,6024 -12519,12047 -23385,16889 -11456,4134 -26456,7795 -45117,10157 -18543,2362 -42046,3661 -70274,3661 -28228,0 -51731,-1299 -70392,-3661 -18543,-2362 -33661,-6024 -44999,-10157 -10866,-4842 -18661,-10866 -23504,-16889 -4724,-6614 -7205,-14409 -7205,-23976l0 -1387888 -224760 0c-18661,0 -33070,-9567 -42046,-28228 -9685,-18661 -14409,-49251 -14409,-92006 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38503 4134,-9567 10157,-16771 17362,-21023 7205,-4252 15708,-6024 24685,-6024l224760 0 0 -149643c0,-109368 10866,-203146 31889,-281334 21023,-78069 52322,-142438 94368,-192871 42046,-50550 94368,-87754 157438,-111848 62597,-23976 135234,-36023 218264,-36023 51613,0 96731,4252 135234,13228 38385,8976 66613,16771 85274,24685 18071,7795 30708,15000 37322,22204 7205,6614 13228,16181 17952,27047 4252,11456 7913,24685 9685,40865 1772,15590 2362,34842 2362,57046 0,37913 -2953,64959 -8976,81731 -5433,17480 -16299,25866 -31299,25866 -9567,0 -20433,-2362 -32480,-7795 -11929,-5433 -27637,-11456 -46180,-18071 -18661,-5905 -40275,-11929 -64369,-17362 -23385,-5433 -50432,-7795 -79369,-7795 -86455,0 -147163,29999 -182713,89526 -34842,60117 -52204,155666 -52204,287357l0 153186 710420 0 0 -171257c0,-108778 10748,-202555 32480,-280743 21614,-78069 53385,-142438 94250,-193461 40984,-50550 92597,-87754 153895,-111848 61889,-23976 132872,-36023 212831,-36023 25866,0 51613,1181 78069,3543 26456,2480 49960,6024 70392,10275 20433,4842 39094,10157 54684,15000 15590,5433 26456,10866 32480,16889 6024,5905 10748,11929 14409,18543 3543,6614 6614,14409 9567,24094 3071,8976 4842,21023 6024,34842 1181,14409 1772,31299 1772,51731 0,37204 -2953,64251 -8976,80550 -5433,16771 -16181,24566 -31299,24566 -8386,0 -17952,-1772 -28228,-6024 -10748,-4134 -23385,-8386 -37795,-13228 -15118,-4724 -33661,-8976 -55983,-13228 -22204,-4134 -49251,-5905 -81140,-5905 -81140,0 -138777,29999 -173619,90116 -34251,59526 -51731,155666 -51731,287239l0 174328 914747 0c30118,0 52912,7795 68621,24094 15000,15590 22795,37204 22795,65432l0 1540012z"/>\r
-  <path id="4" class="fil1" d="M118511329 77887455c0,19842 -591,37322 -1772,51731 -1299,15000 -3071,27047 -6024,37322 -3071,10157 -6614,18543 -10866,26338 -4252,7913 -13228,19252 -28228,33661 -14409,15118 -39684,33070 -74526,55393 -35432,21614 -75117,41456 -119053,58227 -44409,17480 -91888,31299 -143619,41456 -51731,10866 -105234,16299 -160509,16299 -114211,0 -215193,-18661 -302947,-56574 -88345,-37204 -162281,-91888 -221098,-164052 -59526,-72164 -104644,-161099 -135942,-265625 -31181,-105234 -46889,-226059 -46889,-363655 0,-155666 19252,-289719 57164,-402158 38503,-111730 90707,-203736 156848,-275192 66731,-71574 144919,-124486 234445,-159328 90116,-34251 187556,-51731 292081,-51731 50550,0 99211,4842 146690,14527 48070,8976 91298,21614 131572,36614 39684,15590 75825,33070 106415,53503 31299,19842 54094,37204 67912,51023 14409,14527 24094,25866 29527,33661 4724,8504 9567,18071 13110,29527 3071,10748 5433,23385 6614,37795 1299,13819 1890,31889 1890,52912 0,45708 -5433,77597 -15708,96140 -10748,18071 -23385,27047 -38976,27047 -17480,0 -37913,-9567 -60708,-29409 -22913,-19252 -51731,-40865 -87164,-64251 -35551,-23504 -78188,-45117 -128029,-64369 -49960,-19842 -108778,-29409 -176690,-29409 -140076,0 -247673,53503 -322199,161099 -74526,106888 -111848,262554 -111848,466409 0,101573 9685,191099 28936,267987 19842,76416 48070,140667 85865,192398 37322,51023 83621,89526 138305,114801 54684,25275 117163,37795 187556,37795 67322,0 126139,-10748 176690,-31771 50432,-21023 93778,-44527 130982,-70392 37322,-25157 68503,-48070 93778,-68503 25275,-21023 44527,-31181 58936,-31181 7795,0 15000,2362 21023,7205 6024,4724 10748,12519 15000,23385 4252,11456 7205,25275 8976,42637 1890,16889 2480,37322 2480,60708z"/>\r
-  <path class="fil1" d="M110849420 82525678c0,106297 -19724,201138 -58818,284522 -39566,82794 -94132,153659 -163816,211886 -69566,57637 -151887,101337 -246019,130746 -94841,29409 -196296,43818 -305546,43818 -76180,0 -147045,-6496 -211886,-19134 -65314,-13228 -123541,-29409 -174564,-48070 -51023,-18543 -93660,-38385 -128502,-58227 -34133,-20315 -58818,-37204 -72046,-51613 -13701,-13819 -23385,-31771 -29999,-53385 -6496,-21614 -9567,-50432 -9567,-86455 0,-25748 1181,-47361 3661,-64133 2362,-16889 5905,-30708 10157,-40865 4842,-10748 10748,-17952 17952,-22204 7205,-4134 15000,-6024 24685,-6024 16181,0 39566,10275 69566,29999 29409,19842 67794,41456 115274,64841 46771,22795 103226,44999 169839,65432 66022,20433 142793,30590 229248,30590 66022,0 126021,-8976 180705,-26338 54566,-17480 101337,-42046 140431,-74408 39566,-31889 69566,-71455 90589,-118344 21023,-46771 31771,-100156 31771,-159564 0,-64251 -14409,-119407 -43818,-165115 -29409,-45590 -67794,-85746 -115746,-120588 -48661,-34251 -103226,-66022 -164525,-94841 -61771,-28818 -124840,-57637 -188973,-87636 -64251,-29999 -127321,-62952 -187910,-99565 -61180,-36023 -115864,-78660 -163816,-127911 -48070,-49133 -87046,-106770 -116455,-173383 -29999,-66022 -44999,-145273 -44999,-237752 0,-95313 17362,-179997 51613,-254405 34842,-73818 82794,-136297 144092,-186611 61771,-50432 134998,-88817 219563,-115274 85274,-26456 176454,-39566 274956,-39566 50432,0 100746,4134 151769,13110 51023,9094 99093,20433 144092,35432 44999,14409 85156,31181 120588,49251 34842,17952 58227,32952 69093,43818 11338,11338 18543,19724 22204,26338 3543,6614 5905,15000 8386,24685 2362,10157 4134,22204 5315,36614 1299,13819 1890,31771 1890,54566 0,21023 -591,39566 -2480,56456 -1772,16181 -4724,29999 -8386,41338 -2953,10866 -8386,19252 -14409,24685 -6614,5315 -13819,7795 -22204,7795 -13110,0 -32952,-8386 -60589,-24685 -27637,-16771 -61180,-34724 -101455,-55747 -39566,-20433 -87046,-38976 -141612,-55865 -53975,-17362 -115274,-25748 -183658,-25748 -62952,0 -118226,8386 -164997,25157 -46889,17480 -85865,39684 -116455,67794 -29999,28228 -52794,61298 -68385,99683 -15000,38976 -22795,79841 -22795,123069 0,62952 14291,117636 43700,163225 29409,45590 68503,85746 117045,121179 49251,35432 104526,67204 166887,96612 61771,29409 125431,58818 190272,88817 64251,30118 127793,62479 189682,98502 62361,35432 117636,77951 166769,126612 48661,48661 87636,105589 117636,172202 29999,66022 44999,144092 44999,234681z"/>\r
-  <path id="1" class="fil1" d="M112385298 82876814c0,19842 -591,37204 -1772,51613 -1181,15000 -2953,27047 -6024,37204 -2953,10157 -6614,18661 -10748,26456 -4252,7795 -13228,19134 -28228,33543 -14409,15000 -39684,33070 -74408,55275 -35432,21614 -74999,41338 -118817,58227 -44409,17362 -91888,31181 -143501,41338 -51613,10866 -104998,16181 -160273,16181 -113974,0 -214839,-18543 -302475,-56338 -88227,-37204 -162044,-91888 -220862,-163934 -59408,-71928 -104408,-160745 -135588,-265271 -31181,-104998 -46771,-225586 -46771,-363064 0,-155430 19134,-289247 56928,-401449 38385,-111730 90707,-203500 156729,-274956 66613,-71337 144564,-124250 233972,-158974 90116,-34251 187319,-51613 291727,-51613 50432,0 98975,4724 146454,14409 47952,8976 91179,21614 131454,36614 39566,15590 75589,32952 106179,53385 31181,19842 53975,37204 67794,51023 14409,14409 24094,25748 29409,33543 4842,8504 9685,18071 13228,29409 2953,10866 5433,23504 6614,37913 1181,13701 1772,31771 1772,52794 0,45590 -5433,77361 -15590,96022 -10748,17952 -23385,26929 -38976,26929 -17480,0 -37795,-9567 -60589,-29409 -22913,-19134 -51613,-40747 -87046,-64133 -35432,-23504 -78069,-44999 -127911,-64251 -49724,-19842 -108541,-29409 -176454,-29409 -139840,0 -247200,53385 -321608,160863 -74408,106770 -111612,262200 -111612,465700 0,101455 9567,190863 28818,267633 19724,76298 47952,140431 85746,192044 37204,51023 83384,89526 138068,114683 54566,25157 117045,37795 187201,37795 67204,0 126021,-10748 176454,-31771 50432,-21023 93660,-44409 130864,-70274 37204,-25157 68385,-47952 93660,-68385 25157,-21023 44409,-31181 58818,-31181 7795,0 15000,2362 21023,7205 5905,4724 10748,12519 15000,23385 4134,11338 7205,25157 8976,42637 1772,16771 2362,37204 2362,60589z"/>\r
-  <path id="2" class="fil1" d="M113695471 81639868c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>\r
-  <path id="3" class="fil1" d="M114317192 83120471c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-8386 1772,-16181 5905,-22795 4252,-7205 12047,-13228 23504,-17952 10748,-4252 25748,-7913 44999,-10275 18543,-2362 41928,-3543 70747,-3543 29409,0 53503,1181 72046,3543 19252,2362 33661,6024 44409,10275 10866,4724 18071,10748 22795,17952 4842,6614 7205,14409 7205,22795l0 1583239zm32480 -2116734c0,68385 -13228,114565 -39094,139249 -25748,24566 -73227,37204 -142793,37204 -68385,0 -115274,-12047 -140431,-36023 -25275,-24094 -37795,-69684 -37795,-136887 0,-68385 13228,-114565 38976,-139249 25866,-24566 73227,-37204 142793,-37204 68503,0 115274,12047 140549,36023 25157,23976 37795,69566 37795,136887z"/>\r
-  <path id="4" class="fil1" d="M116306723 82303045c0,138659 -15000,262909 -44999,373340 -29409,109841 -73227,203382 -131454,280271 -57637,76770 -129565,136179 -214839,177635 -85156,41456 -183068,62361 -292908,62361 -46771,0 -89998,-4724 -129565,-13701 -40275,-9685 -78660,-24094 -117045,-44527 -37795,-19724 -75589,-44999 -112793,-75589 -37913,-29999 -77479,-66022 -119525,-106770l0 792742c0,9685 -2362,17480 -7205,24685 -4724,7205 -11929,13228 -22795,17952 -10748,4252 -25157,7795 -44409,10275 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2480 -34251,-6024 -44999,-10275 -11456,-4724 -19252,-10748 -23504,-17952 -4134,-7205 -5905,-15000 -5905,-24685l0 -2211574c0,-10748 1772,-19252 5315,-25748 3661,-6024 10866,-12047 21023,-16299 10866,-4724 24094,-8386 40865,-10157 16181,-1772 36614,-2362 59999,-2362 24566,0 44999,591 61180,2362 15590,1772 28818,5433 39684,9567 10748,4842 17952,10866 22204,16889 4134,6496 5905,15000 5905,25748l0 211886c48070,-49251 94250,-91888 138659,-128502 44409,-36023 89408,-66022 134525,-89998 44999,-23976 91179,-42637 138541,-54566 47479,-12638 97321,-18661 150115,-18661 114565,0 211886,22204 292908,66613 80314,44999 146336,105707 197359,183068 51023,77479 88227,167477 111730,270113 23385,102636 34724,211177 34724,325860zm-302475 33661c0,-81022 -6024,-159682 -18543,-235271 -12047,-75707 -33661,-142911 -63070,-201729 -29999,-58818 -70156,-105589 -120588,-141021 -50432,-35432 -113502,-52794 -188501,-52794 -37795,0 -74408,5433 -111022,16771 -36023,11456 -73227,28818 -111022,52794 -37204,24094 -76770,55865 -117636,95431 -40865,39684 -84684,88227 -130273,145864l0 629634c79841,97794 155430,172202 226886,224405 72046,51613 147045,77479 225705,77479 72636,0 134998,-17480 187201,-52912 52204,-35314 94250,-82203 126612,-141021 32480,-58818 55865,-124250 71455,-197359 15000,-72636 22795,-146454 22795,-220272z"/>\r
-  <path id="5" class="fil1" d="M117549102 83002835c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>\r
-  <path id="6" class="fil1" d="M118928369 82688313c0,81022 -15000,153068 -44999,216728 -30118,62952 -72046,116455 -127321,159564 -55156,43228 -120588,76298 -196768,98502 -76298,22204 -160273,33543 -251570,33543 -56338,0 -109841,-4134 -160745,-13110 -51023,-8504 -96731,-19252 -137478,-33070 -40275,-13228 -74408,-27047 -102636,-41338 -28228,-14409 -48661,-27637 -61180,-39094 -13228,-11338 -22795,-28228 -28228,-49133 -6024,-21023 -8976,-49842 -8976,-86455 0,-22204 1181,-40865 3543,-55865 2362,-15590 5433,-27637 8386,-37204 3661,-9567 8976,-16181 15000,-20433 6614,-4134 13819,-5905 22204,-5905 12638,0 31889,7795 57046,23976 25157,15590 56456,32952 93069,51613 36614,18543 80432,36023 130746,51613 50432,16181 108069,23976 173501,23976 49251,0 93660,-5433 133226,-16181 40157,-10157 74408,-25866 103817,-46771 29409,-20433 51613,-46889 67794,-78660 15590,-31771 23504,-69684 23504,-113502 0,-44409 -11456,-82203 -34251,-112203 -22795,-30590 -52794,-57637 -89998,-81022 -37795,-23385 -79841,-44409 -126730,-62361 -46771,-18071 -94723,-37204 -144564,-57046 -49251,-20433 -97794,-42637 -145273,-67794 -47361,-25275 -89408,-55865 -127202,-92479 -37204,-36614 -67204,-79841 -89998,-130155 -22913,-50432 -34251,-110431 -34251,-181296 0,-61771 12047,-121297 36023,-178225 23976,-57046 59999,-106888 107951,-149525 48661,-42519 108659,-77361 180705,-103226 72046,-25748 156021,-38385 252633,-38385 42046,0 84093,3661 126730,10866 41928,7205 79723,16771 113974,27519 34251,10866 63070,22913 87046,35432 23976,13228 42637,23976 54566,34251 12638,9567 20433,17952 24685,24566 4134,7205 7205,15000 8976,23976 1772,8504 3543,19252 5433,31889 1772,13228 2362,28818 2362,47361 0,19842 -591,37204 -2362,51613 -1890,14409 -4842,26456 -9094,35432 -4134,9567 -8976,16181 -15000,20433 -6024,4134 -12519,6024 -19134,6024 -10866,0 -25866,-6614 -46298,-19842 -19724,-12638 -45590,-26456 -77361,-41456 -31771,-15000 -68975,-28818 -111612,-41338 -42637,-13228 -91888,-19842 -147045,-19842 -49251,0 -93069,5433 -130273,16771 -37795,10866 -68385,26456 -92361,46889 -24094,20315 -42637,44409 -54684,72636 -12638,27519 -18543,58109 -18543,90589 0,45590 11929,83975 35314,115155 23504,31299 53503,58227 91298,81731 37204,23385 80432,44409 128384,63542 48070,18661 96612,37795 146454,57637 49842,20433 99093,42637 147635,67204 48661,24566 91888,54684 129092,89408 37795,35432 67794,77479 90589,126612 22795,49251 34251,108069 34251,175863z"/>\r
-  <path class="fil1" d="M109814439 85722865c-111612,235862 -194406,477157 -249090,724948 -54566,247909 -81613,496999 -81613,747861 0,252043 27637,501723 83502,749042 55747,247200 136769,489676 243657,727310 6024,14409 8976,26456 9567,36023 591,10275 -3543,18071 -11338,24685 -8504,6614 -21023,11338 -37913,14409 -17362,2953 -40157,4134 -69566,4134 -21023,0 -38976,-591 -54566,-1772 -15118,-1181 -28228,-3661 -39684,-7205 -10748,-3661 -19842,-7205 -27047,-12047 -7205,-4724 -12519,-10157 -15590,-15590 -63542,-119998 -119407,-240704 -167359,-363064 -48070,-122478 -88227,-247318 -121297,-373930 -32952,-126021 -57637,-254405 -73818,-383497 -16181,-129683 -24566,-260428 -24566,-393064 0,-132635 8976,-262909 26929,-392001 18661,-128974 44409,-256767 77479,-384088 33661,-127202 74408,-252043 122478,-375111 47952,-122951 101927,-244838 162044,-365426 591,-4842 4134,-9094 9567,-12638 4842,-3661 12638,-7205 21614,-10157 9567,-3661 22204,-6614 38976,-8504 16181,-1772 37204,-2362 63070,-2362 26929,0 48542,1772 65432,5433 16181,3543 28700,7795 38385,13819 9567,6024 14409,13819 15590,22795 1181,9567 -591,19842 -4842,29999z"/>\r
-  <path class="fil1" d="M111553462 87507715c0,106297 -19724,201138 -58818,284522 -39566,82794 -94132,153659 -163816,211886 -69566,57637 -151887,101337 -246019,130746 -94841,29409 -196296,43818 -305546,43818 -76180,0 -147045,-6496 -211886,-19134 -65314,-13228 -123541,-29409 -174564,-48070 -51023,-18543 -93660,-38385 -128502,-58227 -34133,-20315 -58818,-37204 -72046,-51613 -13701,-13819 -23385,-31771 -29999,-53385 -6496,-21614 -9567,-50432 -9567,-86455 0,-25748 1181,-47361 3661,-64133 2362,-16889 5905,-30708 10157,-40865 4842,-10748 10748,-17952 17952,-22204 7205,-4134 15000,-6024 24685,-6024 16181,0 39566,10275 69566,29999 29409,19842 67794,41456 115274,64841 46771,22795 103226,44999 169839,65432 66022,20433 142793,30590 229248,30590 66022,0 126021,-8976 180705,-26338 54566,-17480 101337,-42046 140431,-74408 39566,-31889 69566,-71455 90589,-118344 21023,-46771 31771,-100156 31771,-159564 0,-64251 -14409,-119407 -43818,-165115 -29409,-45590 -67794,-85746 -115746,-120588 -48661,-34251 -103226,-66022 -164525,-94841 -61771,-28818 -124840,-57637 -188973,-87636 -64251,-29999 -127321,-62952 -187910,-99565 -61180,-36023 -115864,-78660 -163816,-127911 -48070,-49133 -87046,-106770 -116455,-173383 -29999,-66022 -44999,-145273 -44999,-237752 0,-95313 17362,-179997 51613,-254405 34842,-73818 82794,-136297 144092,-186611 61771,-50432 134998,-88817 219563,-115274 85274,-26456 176454,-39566 274956,-39566 50432,0 100746,4134 151769,13110 51023,9094 99093,20433 144092,35432 44999,14409 85156,31181 120588,49251 34842,17952 58227,32952 69093,43818 11338,11338 18543,19724 22204,26338 3543,6614 5905,15000 8386,24685 2362,10157 4134,22204 5315,36614 1299,13819 1890,31771 1890,54566 0,21023 -591,39566 -2480,56456 -1772,16181 -4724,29999 -8386,41338 -2953,10866 -8386,19252 -14409,24685 -6614,5315 -13819,7795 -22204,7795 -13110,0 -32952,-8386 -60589,-24685 -27637,-16771 -61180,-34724 -101455,-55747 -39566,-20433 -87046,-38976 -141612,-55865 -53975,-17362 -115274,-25748 -183658,-25748 -62952,0 -118226,8386 -164997,25157 -46889,17480 -85865,39684 -116455,67794 -29999,28228 -52794,61298 -68385,99683 -15000,38976 -22795,79841 -22795,123069 0,62952 14291,117636 43700,163225 29409,45590 68503,85746 117045,121179 49251,35432 104526,67204 166887,96612 61771,29409 125431,58818 190272,88817 64251,30118 127793,62479 189682,98502 62361,35432 117636,77951 166769,126612 48661,48661 87636,105589 117636,172202 29999,66022 44999,144092 44999,234681z"/>\r
-  <path id="1" class="fil1" d="M113089340 87858850c0,19842 -591,37204 -1772,51613 -1181,15000 -2953,27047 -6024,37204 -2953,10157 -6614,18661 -10748,26456 -4252,7795 -13228,19134 -28228,33543 -14409,15000 -39684,33070 -74408,55275 -35432,21614 -74999,41338 -118817,58227 -44409,17362 -91888,31181 -143501,41338 -51613,10866 -104998,16181 -160273,16181 -113974,0 -214839,-18543 -302475,-56338 -88227,-37204 -162044,-91888 -220862,-163934 -59408,-71928 -104408,-160745 -135588,-265271 -31181,-104998 -46771,-225586 -46771,-363064 0,-155430 19134,-289247 56928,-401449 38385,-111730 90707,-203500 156729,-274956 66613,-71337 144564,-124250 233972,-158974 90116,-34251 187319,-51613 291727,-51613 50432,0 98975,4724 146454,14409 47952,8976 91179,21614 131454,36614 39566,15590 75589,32952 106179,53385 31181,19842 53975,37204 67794,51023 14409,14409 24094,25748 29409,33543 4842,8504 9685,18071 13228,29409 2953,10866 5433,23504 6614,37913 1181,13701 1772,31771 1772,52794 0,45590 -5433,77361 -15590,96022 -10748,17952 -23385,26929 -38976,26929 -17480,0 -37795,-9567 -60589,-29409 -22913,-19134 -51613,-40747 -87046,-64133 -35432,-23504 -78069,-44999 -127911,-64251 -49724,-19842 -108541,-29409 -176454,-29409 -139840,0 -247200,53385 -321608,160863 -74408,106770 -111612,262200 -111612,465700 0,101455 9567,190863 28818,267633 19724,76298 47952,140431 85746,192044 37204,51023 83384,89526 138068,114683 54566,25157 117045,37795 187201,37795 67204,0 126021,-10748 176454,-31771 50432,-21023 93660,-44409 130864,-70274 37204,-25157 68385,-47952 93660,-68385 25157,-21023 44409,-31181 58818,-31181 7795,0 15000,2362 21023,7205 5905,4724 10748,12519 15000,23385 4134,11338 7205,25157 8976,42637 1772,16771 2362,37204 2362,60589z"/>\r
-  <path id="2" class="fil1" d="M114636084 88104279c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>\r
-  <path id="3" class="fil1" d="M116623725 87285081c0,138659 -15000,262909 -44999,373340 -29409,109841 -73227,203382 -131454,280271 -57637,76770 -129565,136179 -214839,177635 -85156,41456 -183068,62361 -292908,62361 -46771,0 -89998,-4724 -129565,-13701 -40275,-9685 -78660,-24094 -117045,-44527 -37795,-19724 -75589,-44999 -112793,-75589 -37913,-29999 -77479,-66022 -119525,-106770l0 792742c0,9685 -2362,17480 -7205,24685 -4724,7205 -11929,13228 -22795,17952 -10748,4252 -25157,7795 -44409,10275 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2480 -34251,-6024 -44999,-10275 -11456,-4724 -19252,-10748 -23504,-17952 -4134,-7205 -5905,-15000 -5905,-24685l0 -2211574c0,-10748 1772,-19252 5315,-25748 3661,-6024 10866,-12047 21023,-16299 10866,-4724 24094,-8386 40865,-10157 16181,-1772 36614,-2362 59999,-2362 24566,0 44999,591 61180,2362 15590,1772 28818,5433 39684,9567 10748,4842 17952,10866 22204,16889 4134,6496 5905,15000 5905,25748l0 211886c48070,-49251 94250,-91888 138659,-128502 44409,-36023 89408,-66022 134525,-89998 44999,-23976 91179,-42637 138541,-54566 47479,-12638 97321,-18661 150115,-18661 114565,0 211886,22204 292908,66613 80314,44999 146336,105707 197359,183068 51023,77479 88227,167477 111730,270113 23385,102636 34724,211177 34724,325860zm-302475 33661c0,-81022 -6024,-159682 -18543,-235271 -12047,-75707 -33661,-142911 -63070,-201729 -29999,-58818 -70156,-105589 -120588,-141021 -50432,-35432 -113502,-52794 -188501,-52794 -37795,0 -74408,5433 -111022,16771 -36023,11456 -73227,28818 -111022,52794 -37204,24094 -76770,55865 -117636,95431 -40865,39684 -84684,88227 -130273,145864l0 629634c79841,97794 155430,172202 226886,224405 72046,51613 147045,77479 225705,77479 72636,0 134998,-17480 187201,-52912 52204,-35314 94250,-82203 126612,-141021 32480,-58818 55865,-124250 71455,-197359 15000,-72636 22795,-146454 22795,-220272z"/>\r
-  <path id="4" class="fil1" d="M117762878 88146325l-210587 582745c-7205,18661 -25275,33070 -54094,43228 -28110,10157 -71928,15000 -130746,15000 -30590,0 -55275,-1181 -73818,-4252 -18661,-2953 -33070,-8386 -43228,-15000 -9685,-7205 -15000,-16771 -16181,-28110 -1299,-12047 1772,-25866 8386,-42637l218382 -550974c-10748,-4842 -20905,-12638 -29999,-22795 -9567,-10866 -16181,-21614 -19134,-33661l-564793 -1512374c-9567,-24566 -13819,-44409 -13819,-58227 0,-14409 4252,-25157 13819,-33661 9567,-8386 24566,-13701 45590,-16771 21023,-2953 49251,-4134 84684,-4134 34724,0 62361,591 82794,2362 19842,1772 35432,5433 47361,10157 11456,4252 19842,11456 25275,19842 5433,8976 10748,21023 16771,36023l451882 1269898 5433 0 435701 -1276512c7205,-22795 15590,-37204 25866,-43228 9567,-6614 24566,-11338 44409,-14409 20433,-2953 49251,-4134 86455,-4134 32952,0 59999,1181 81022,4134 20905,3071 36614,8386 46180,16771 10157,8504 15000,19252 15000,33661 0,13819 -3661,31771 -10157,52794l-568454 1574263z"/>\r
-  <path class="fil1" d="M119254820 87201106c0,132635 -8386,263381 -24566,393064 -16181,129092 -40865,257476 -73818,383497 -32952,126612 -73227,251452 -120588,373930 -47479,122360 -102636,243066 -166296,363064 -2953,5433 -8386,10866 -15590,15590 -7205,4842 -16181,8386 -27047,12047 -11338,3543 -24566,6024 -39566,7205 -15590,1181 -33661,1772 -54684,1772 -30590,0 -53975,-1181 -71337,-4134 -16889,-3071 -29409,-7795 -36614,-14409 -7795,-6614 -11456,-14409 -10866,-24685 591,-9567 3661,-21614 9685,-36023 107951,-236452 189564,-478928 244248,-726719 55156,-247909 82794,-497589 82794,-749632 0,-250862 -27637,-499952 -82794,-747861 -54684,-247791 -137478,-489086 -247909,-724948 -4134,-10157 -6024,-20433 -4724,-29999 1181,-8976 5905,-16771 15590,-22795 9567,-6024 22204,-10275 38385,-13819 16771,-3661 38385,-5433 65432,-5433 24566,0 44999,591 61180,2362 16771,1890 29999,4842 39566,8504 10275,2953 17480,6496 22204,10157 4842,3543 8504,7795 10275,12638 121179,239996 215429,486724 284404,740538 68503,253932 102636,512589 102636,776088z"/>\r
-  <polygon class="fil2" points="37395507,59487865 141045293,59487865 141045293,49604815 37395507,49604815 "/>\r
-  <path class="fil1" d="M64080145 56359654c0,14409 -2716,26220 -8149,37086 -5433,10748 -16299,19842 -34251,27047 -17244,6260 -42519,11693 -74054,15354 -31653,3543 -74054,5433 -126376,5433 -46062,0 -83975,-1890 -112793,-5433 -28936,-3661 -52322,-9094 -70392,-17126 -17126,-8149 -30708,-19015 -40629,-33425 -9921,-13582 -18071,-31653 -25275,-52322l-314049 -807859c-37086,-92006 -75825,-175981 -115628,-252751 -39684,-76652 -86573,-142556 -141612,-198540 -54212,-55983 -119171,-98384 -193225,-129919 -73936,-30708 -163344,-46062 -267161,-46062l-304128 0 0 1458517c0,14409 -3661,26220 -11693,37086 -8149,10748 -20787,18897 -37086,25275 -17126,6260 -39684,11693 -68503,16181 -29881,4488 -65904,6378 -110195,6378 -44172,0 -80314,-1890 -110077,-6378 -28936,-4488 -52322,-9921 -69448,-16181 -18071,-6378 -29881,-14527 -37086,-25275 -7205,-10039 -10866,-22677 -10866,-37086l0 -3168841c0,-68621 18071,-116455 54212,-144446 36141,-27047 74881,-40629 115510,-40629l727428 0c86691,0 158029,1772 215784,6378 56810,4488 108305,9921 154367,14409 132635,23504 249090,59526 351017,108305 101101,49605 186020,111966 254523,187674 69566,75825 120943,162517 155312,260901 34251,97439 51377,205744 51377,323971 0,113738 -15354,216610 -45944,307790 -31653,90235 -75825,170666 -133580,240114 -58700,69448 -128265,129919 -209406,181414 -81258,50550 -171493,93896 -272594,129092 56810,25275 107360,55983 153422,93778 46062,37913 88463,83975 128147,136297 39684,53267 77597,114683 112793,183304 35196,68503 70392,146218 105589,232791l306963 754593c24330,63188 40511,108305 46889,133580 7205,25275 10866,45117 10866,59526zm-685027 -2406216c0,-133580 -29881,-247318 -90353,-340269 -59526,-92006 -159682,-158855 -301412,-199485 -44172,-12638 -93896,-20669 -148934,-26102 -55983,-5433 -128147,-8149 -218382,-8149l-383615 0 0 1153444 444086 0c119998,0 223815,-14409 311333,-43346 86691,-29763 159800,-70392 217555,-121769 58700,-52440 101101,-113738 129092,-184131 27047,-70392 40629,-147163 40629,-230193z"/>\r
-  <path id="1" class="fil1" d="M66787773 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>\r
-  <path id="2" class="fil1" d="M69621895 55138534c0,206689 -22559,391646 -67794,556880 -44172,165115 -110077,305900 -197595,421528 -86691,116336 -194052,205744 -320427,267161 -126376,62243 -271649,92951 -434992,92951 -75825,0 -146218,-7205 -210351,-22559 -64015,-14527 -127202,-38858 -188619,-72282 -61416,-34251 -122714,-75825 -185075,-127202 -61298,-51495 -126258,-112793 -194878,-185075l0 292436c0,13582 -3661,26220 -10866,36968 -7205,10866 -18071,19015 -34251,25275 -16299,6378 -36141,10866 -59645,14527 -24330,3543 -55038,5433 -92006,5433 -35196,0 -65904,-1890 -90235,-5433 -25275,-3661 -45117,-8149 -61416,-14527 -15354,-6260 -26220,-14409 -31535,-25275 -5433,-10748 -8149,-22559 -8149,-36968l0 -3531669c0,-14527 2716,-27165 8976,-37086 6378,-10748 18071,-19842 35196,-27047 16299,-6260 38858,-11693 67676,-15354 27992,-3543 63188,-5433 106534,-5433 44291,0 80314,1890 108305,5433 28936,3661 50550,9094 66849,15354 16181,7205 27047,16299 34251,27047 7205,9921 10866,22559 10866,37086l0 1422376c70392,-72164 138068,-133580 204799,-183186 65904,-48779 130037,-89408 193225,-119998 64015,-30708 127202,-53267 190390,-67794 63188,-13464 130037,-20669 200429,-20669 172320,0 319482,34251 442197,102872 121888,68621 221098,161572 297869,276137 76770,115510 132635,250980 167832,406174 35196,155194 52440,319482 52440,491920zm-454952 50550c0,-121888 -8976,-240114 -27992,-354679 -18071,-115628 -50550,-216728 -96494,-305073 -46062,-88463 -106534,-159800 -182359,-213067 -75825,-54094 -170548,-81258 -283459,-81258 -55865,0 -111848,8149 -166887,23504 -54212,16299 -110195,43346 -166060,80314 -56928,36968 -115628,84802 -176099,143501 -61298,57755 -126258,131809 -194878,220272l0 949471c119998,147163 234681,259011 343813,335781 109250,76652 223815,115510 342159,115510 109132,0 202083,-26220 279798,-79487 77597,-53149 140785,-123541 189445,-211177 48779,-86573 83975,-184957 105589,-293262 22559,-109250 33425,-219327 33425,-330348z"/>\r
-  <path id="3" class="fil1" d="M72488379 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>\r
-  <path id="4" class="fil1" d="M74369369 56185444c0,51495 -3661,92124 -10866,121888 -6260,29763 -17126,52322 -31535,65904 -13582,14409 -35196,27992 -63188,39684 -27992,12638 -60471,22559 -96612,30708 -36141,8149 -74054,14409 -114565,19842 -40629,5433 -80432,8149 -120943,8149 -123659,0 -229248,-16299 -316884,-48779 -87518,-32480 -159682,-82085 -216610,-147989 -55983,-65904 -96494,-149879 -122714,-250980 -25275,-100982 -37913,-220154 -37913,-357395l0 -1388125 -334836 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-27992 -23385,-74054 -23385,-138068 0,-33425 1772,-61416 6260,-83975 4488,-23504 10866,-42401 17126,-57755 7205,-14409 17126,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332120 0 0 -565029c0,-12638 2716,-24330 8976,-34251 6378,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27874,-3661 63188,-5433 106415,-5433 44291,0 80314,1772 108305,5433 28936,3543 50550,8976 66849,17126 16181,8149 27047,17126 34251,27992 7205,9921 10866,21614 10866,34251l0 565029 606485 0c14527,0 26220,2716 37086,9094 9921,6260 19842,17126 27047,31535 8149,15354 13464,34251 17126,57755 3661,22559 5433,50550 5433,83975 0,64015 -8149,110077 -23504,138068 -16181,27992 -36968,42401 -63188,42401l-606485 0 0 1324110c0,163344 24330,287003 72164,370033 47834,83975 134525,125431 259011,125431 39802,0 75825,-3543 107478,-11693 31535,-8149 59526,-16299 83975,-25275 24330,-9094 45117,-17126 63070,-25275 17244,-8149 33425,-11811 47007,-11811 8976,0 17126,1890 25275,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28818 11693,50550 3661,20787 5433,47834 5433,79369z"/>\r
-  <path id="5" class="fil1" d="M78399217 56354221c0,14527 -3661,27165 -9921,38858 -5433,11693 -18071,20787 -35196,27992 -18071,6260 -41574,12638 -71337,17126 -29763,4488 -68621,6378 -116455,6378 -61298,0 -111848,-2716 -150706,-8149 -38858,-5433 -67676,-14409 -87518,-28936 -19015,-14409 -35196,-29763 -47007,-47834l-1259032 -1711268 0 1711268c0,12638 -3661,24448 -10866,36141 -7205,10866 -18897,19842 -36968,26220 -17126,6260 -40629,11693 -69448,16181 -29881,4488 -65904,6378 -110195,6378 -42401,0 -78542,-1890 -108305,-6378 -29763,-4488 -54094,-9921 -71219,-16181 -18071,-6378 -29881,-15354 -37086,-26220 -7205,-11693 -10866,-23504 -10866,-36141l0 -3285295c0,-14409 3661,-27047 10866,-36968 7205,-10866 19015,-19015 37086,-25275 17126,-6378 41456,-11811 71219,-16299 29763,-4488 65904,-6260 108305,-6260 44291,0 80314,1772 110195,6260 28818,4488 52322,9921 69448,16299 18071,6260 29763,14409 36968,25275 7205,9921 10866,22559 10866,36968l0 1520760 1211199 -1520760c10866,-16299 22559,-28936 37086,-39684 13464,-10866 30590,-19015 51377,-25275 19842,-6378 45117,-10866 74054,-14527 28818,-3543 66731,-5315 112793,-5315 45117,0 82085,1772 111022,6260 27992,4488 50550,10866 66849,17126 17126,7205 28818,16299 34251,27165 6260,9921 9921,21614 9921,34251 0,22559 -6378,46062 -17126,68621 -11811,22559 -33425,55038 -64959,95668l-1134546 1356472 1221120 1624695c30708,45944 48779,76652 54212,93778 6260,16299 9921,30708 9921,40629z"/>\r
-  <path id="6" class="fil1" d="M80859527 55068142c0,68621 -17126,117281 -51377,147045 -34369,28936 -74054,43346 -118344,43346l-1563161 0c0,132754 13464,251806 39684,357395 26220,106534 70392,197713 132635,273538 61416,75825 141730,133580 240114,174209 99329,40629 220272,61298 362828,61298 112793,0 213894,-8976 301412,-27992 88463,-17952 165233,-38739 229366,-61298 64015,-22559 117281,-43346 158737,-61416 41574,-18897 72282,-27992 93896,-27992 12638,0 23504,2716 33425,9094 8976,6260 17126,15354 21614,27992 5433,11693 9921,28818 12638,50550 2716,22559 3661,48661 3661,80314 0,22559 -945,42401 -2716,59526 -1772,16299 -3661,31535 -6260,44172 -2716,13582 -7323,25275 -13582,36141 -6378,9921 -13582,19842 -23504,29763 -9921,9921 -38739,25275 -85746,47007 -47834,22559 -109132,43228 -184957,64959 -75825,20787 -163462,39684 -262672,55983 -99329,17126 -204918,25275 -317711,25275 -195823,0 -366489,-27165 -513534,-82203 -147163,-54094 -270822,-135352 -370978,-242712 -100156,-108305 -175981,-242830 -226531,-405347 -51495,-161454 -76770,-350191 -76770,-565856 0,-203973 26220,-388103 79487,-551447 52322,-162517 129092,-301530 228303,-415150 99329,-113738 220272,-200429 361056,-261846 140785,-60471 298695,-91061 472905,-91061 186847,0 345702,29763 476566,90235 131809,59526 239169,140785 324089,241885 83857,101101 146100,220154 185902,357395 39684,136297 59526,282515 59526,437709l0 79487zm-438654 -129092c5433,-229248 -45117,-409717 -152478,-540581 -107478,-130982 -265389,-195941 -475739,-195941 -108305,0 -203028,19842 -284286,60471 -81140,40629 -148934,94841 -203973,162517 -55038,66731 -97439,145273 -127202,233736 -29763,89408 -47007,182359 -50550,279798l1294229 0z"/>\r
-  <path id="7" class="fil1" d="M82576111 56428275l-316766 876362c-10866,27992 -37913,49724 -81258,64959 -42401,15354 -108305,22559 -196768,22559 -45944,0 -83030,-1772 -111022,-6260 -27874,-4488 -49605,-12638 -64959,-22559 -14409,-10866 -22559,-25275 -24330,-42401 -1772,-18071 2716,-38858 12638,-64133l328577 -828528c-16299,-7205 -31653,-18897 -45235,-34251 -14409,-16299 -24330,-32480 -28818,-50550l-849315 -2274526c-14409,-36968 -20787,-66731 -20787,-87518 0,-21614 6378,-37913 20787,-50550 14409,-12638 36968,-20787 68621,-25275 31535,-4488 73936,-6260 127202,-6260 52322,0 93896,827 124604,3543 29763,2716 53267,8149 71337,15354 17126,6378 29763,17126 37795,29763 8149,13582 16299,31653 25275,54212l679712 1909808 8149 0 655146 -1919729c10866,-34369 23504,-55983 38858,-65078 14409,-9921 36968,-17126 66849,-21614 30590,-4488 73936,-6260 129919,-6260 49605,0 90235,1772 121888,6260 31535,4488 55038,12638 69448,25275 15354,12638 22559,28936 22559,50550 0,20787 -5433,47834 -15354,79369l-854748 2367477z"/>\r
-  <path id="8" class="fil1" d="M87293821 53975996c0,12638 -1772,27047 -5433,45117 -3543,17126 -9921,39684 -18897,65904l-700381 2261888c-5433,19842 -13582,36023 -25275,47834 -10866,12638 -27047,22559 -46889,28818 -20787,7205 -48779,12638 -83975,15354 -35196,2716 -79487,3661 -131809,3661 -55038,0 -101101,-1890 -138068,-5433 -36968,-3661 -65904,-9094 -88463,-15354 -21614,-7205 -37913,-17126 -48779,-29763 -10748,-11811 -17952,-27165 -23385,-45117l-500070 -1727567 -5433 -23504 -5433 23504 -462984 1727567c-4488,19842 -13464,36023 -24330,47834 -11811,12638 -28936,22559 -51495,28818 -23385,7205 -53267,12638 -89290,15354 -36141,2716 -80314,3661 -133580,3661 -54212,0 -98384,-1890 -133580,-5433 -34369,-3661 -62361,-9094 -83975,-15354 -22559,-7205 -38858,-17126 -48779,-29763 -10748,-11811 -18897,-27165 -24330,-45117l-694948 -2261888c-9094,-26220 -15354,-48779 -19015,-65904 -3543,-18071 -5433,-32480 -5433,-45117 0,-16181 3661,-28818 10866,-38739 7205,-9094 19015,-17244 36141,-23504 16181,-6378 38739,-9921 66731,-11693 28936,-1890 63188,-2716 103817,-2716 48779,0 88463,827 118226,3543 30708,2716 53267,7205 69566,13582 15354,6260 27047,15354 34251,26102 6378,11811 12638,25275 18071,41574l574005 1965791 5433 23504 5433 -23504 526172 -1965791c3661,-16299 8976,-29763 17126,-41574 7205,-10748 19842,-19842 35196,-26102 16299,-6378 37913,-10866 64959,-13582 27165,-2716 63188,-3543 107478,-3543 42401,0 76652,827 103817,3543 27992,2716 49605,7205 64959,13582 16181,6260 27047,14409 34251,25275 7205,10748 12638,22559 16299,36968l568572 1971224 5433 23504 2716 -23504 565856 -1965791c2716,-16299 9094,-29763 17244,-41574 7205,-10748 19842,-19842 36968,-26102 16181,-6378 38739,-10866 68621,-13582 28818,-2716 65786,-3543 111848,-3543 42401,0 76770,827 102045,2716 25275,1772 45944,6260 60471,13464 15354,6378 26102,14409 32480,23504 5433,8976 8976,20787 8976,36968z"/>\r
-  <path id="9" class="fil1" d="M89996134 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>\r
-  <path id="10" class="fil1" d="M92034208 54135796c0,38739 -945,71219 -2716,97439 -1890,26220 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11693 -32480,11693 -14527,0 -31653,-3543 -51495,-11693 -20787,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54094,-15354 -85746,-22559 -31535,-7205 -65904,-10866 -102872,-10866 -44172,0 -87518,9094 -129919,26220 -41574,18071 -86691,46889 -132754,88463 -46889,40629 -95668,94723 -147045,161572 -50550,67676 -107478,149761 -168776,247318l0 1565877c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 346529c64959,-95668 126258,-173265 183186,-233736 57755,-59526 111848,-107360 162399,-141730 51495,-34251 102045,-57755 151651,-71219 50550,-13582 101101,-19842 152596,-19842 22559,0 48661,827 77597,3543 28818,2716 59526,8149 91179,14409 31535,7323 60471,15354 85746,24448 25275,8976 43346,17126 54094,26102 10866,9094 18071,17244 20787,25275 3661,8149 7205,18071 9921,29881 2716,12638 4488,30590 5433,54094 945,24330 945,55983 945,96612z"/>\r
-  <path id="11" class="fil1" d="M94492746 56362370c0,14409 -2716,26220 -9094,36968 -6260,10866 -17126,19015 -31535,25275 -15354,6378 -35196,10866 -59526,14527 -25275,3543 -55156,5433 -90353,5433 -36968,0 -67676,-1890 -92006,-5433 -25275,-3661 -45117,-8149 -61416,-14527 -15354,-6260 -27047,-14409 -34251,-25275 -6378,-10748 -9921,-23385 -9921,-36968l0 -316766c-125431,136297 -255468,241885 -389875,317711 -135470,75825 -282515,113738 -443260,113738 -174091,0 -323026,-34369 -445858,-102045 -123659,-67676 -223815,-159682 -300467,-275310 -75825,-115510 -131809,-250862 -167005,-407001 -35196,-156139 -53267,-320427 -53267,-492865 0,-204799 21614,-389875 65904,-554163 44172,-165115 109250,-305900 195823,-422355 85746,-116455 193107,-205744 321372,-268105 127202,-62243 274365,-93778 442197,-93778 139013,0 266216,30590 381844,91061 115510,61416 229248,150824 342041,269050l0 -1380093c0,-12638 2716,-24330 8976,-36023 6378,-11811 18071,-19842 36141,-26220 17126,-6260 39684,-11693 66731,-16181 27992,-4606 62361,-6378 104762,-6378 44172,0 80314,1772 108305,6378 27992,4488 50550,9921 65904,16181 16181,6378 27992,14409 36023,26220 8149,11693 11811,23385 11811,36023l0 3520921zm-438654 -1676072c-117399,-147045 -231019,-259011 -341214,-335781 -110077,-76652 -224760,-115510 -343813,-115510 -111022,0 -204918,26220 -282515,79487 -77597,53267 -139958,122714 -188619,209406 -47834,85746 -83030,184131 -104762,293262 -22559,109250 -33425,220272 -33425,333065 0,120116 9094,237397 27992,351962 18071,114683 50550,216728 95668,306018 46062,89408 106534,160627 182359,214839 74881,53267 170548,80314 284286,80314 57755,0 113738,-8149 167950,-23504 53149,-16181 108305,-42401 164170,-79369 55983,-37086 115628,-84920 176926,-144446 61416,-58700 126376,-130864 194996,-217555l0 -952188z"/>\r
-  <path id="12" class="fil1" d="M97028882 56359654c0,14409 -3661,27047 -10866,37086 -7205,10748 -18897,18897 -36968,25275 -17126,6260 -40629,11693 -69448,16181 -29881,4488 -65904,6378 -110195,6378 -42401,0 -78542,-1890 -108305,-6378 -29763,-4488 -54094,-9921 -71219,-16181 -18071,-6378 -29881,-14527 -37086,-25275 -7205,-10039 -10866,-22677 -10866,-37086l0 -3285295c0,-14409 3661,-27047 11811,-36968 8149,-10866 21614,-19015 39684,-25275 19015,-6378 42401,-11811 71337,-16299 28818,-4488 64015,-6260 104644,-6260 44291,0 80314,1772 110195,6260 28818,4488 52322,9921 69448,16299 18071,6260 29763,14409 36968,25275 7205,9921 10866,22559 10866,36968l0 3285295z"/>\r
-  <path id="13" class="fil1" d="M99882846 56362370c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34369,25275 -16181,6260 -37913,11693 -66731,15354 -27992,3543 -63188,5433 -105589,5433 -45117,0 -81258,-1890 -109250,-5433 -28818,-3661 -50550,-9094 -66731,-15354 -16299,-7205 -27165,-16299 -34369,-25275 -7205,-9921 -10748,-21732 -10748,-36141l0 -1394384c0,-135470 -10866,-245547 -31653,-327632 -20787,-83148 -51377,-154367 -92006,-214839 -40629,-59645 -92124,-105589 -156139,-137242 -64133,-31535 -138186,-47834 -222043,-47834 -109250,0 -217555,38858 -325860,116455 -109250,77597 -222988,191335 -342041,341214l0 1664261c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 314994c133580,-150706 266216,-260901 399796,-330348 132635,-69448 266216,-104644 401686,-104644 157911,0 291491,27047 399796,80314 108305,54094 195823,126376 262672,215665 66731,90235 114565,195823 143501,316766 28818,120943 43346,266334 43346,435110l0 1453084z"/>\r
-  <path id="14" class="fil1" d="M102594962 53975996c0,7205 0,14409 -827,22559 -945,8149 -2716,16299 -3661,25275 -1772,9094 -4488,18071 -7205,28936 -2716,10748 -5433,21614 -9094,34251l-811403 2261888c-7205,19842 -17126,36023 -27874,47834 -11811,12638 -28936,22559 -51495,28818 -23504,7205 -52322,12638 -87518,15354 -35196,2716 -79487,3661 -132754,3661 -52322,0 -96494,-1890 -131691,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22559,-7205 -39802,-17126 -51495,-29763 -12638,-11811 -22559,-27165 -29763,-45117l-808686 -2261888c-7205,-20787 -12638,-39684 -17126,-55038 -4606,-16299 -7323,-27992 -8149,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14409 3661,-26102 9921,-36968 7205,-10866 19015,-19015 36141,-25275 16181,-6378 38858,-9921 65904,-11693 27047,-1890 61298,-2716 101927,-2716 51495,0 92124,827 122832,3543 30590,2716 55038,8149 71219,15354 17126,6378 29763,15354 37086,26220 8031,10748 15354,23385 22559,39684l671445 1963075 10866 31535 8149 -31535 663295 -1963075c3661,-16299 9921,-28936 19015,-39684 8149,-10866 21614,-19842 37913,-26220 17126,-7205 39684,-12638 68621,-15354 29763,-2716 67676,-3543 115510,-3543 40629,0 73936,827 100156,2716 26220,1772 46889,6260 62243,13464 15354,6378 25275,15354 31653,24330 6260,10039 8976,21732 8976,36141z"/>\r
-  <path id="15" class="fil1" d="M105009446 55068142c0,68621 -17126,117281 -51377,147045 -34369,28936 -74054,43346 -118344,43346l-1563161 0c0,132754 13464,251806 39684,357395 26220,106534 70392,197713 132635,273538 61416,75825 141730,133580 240114,174209 99329,40629 220272,61298 362828,61298 112793,0 213894,-8976 301412,-27992 88463,-17952 165233,-38739 229366,-61298 64015,-22559 117281,-43346 158737,-61416 41574,-18897 72282,-27992 93896,-27992 12638,0 23504,2716 33425,9094 8976,6260 17126,15354 21614,27992 5433,11693 9921,28818 12638,50550 2716,22559 3661,48661 3661,80314 0,22559 -945,42401 -2716,59526 -1772,16299 -3661,31535 -6260,44172 -2716,13582 -7323,25275 -13582,36141 -6378,9921 -13582,19842 -23504,29763 -9921,9921 -38739,25275 -85746,47007 -47834,22559 -109132,43228 -184957,64959 -75825,20787 -163462,39684 -262672,55983 -99329,17126 -204918,25275 -317711,25275 -195823,0 -366489,-27165 -513534,-82203 -147163,-54094 -270822,-135352 -370978,-242712 -100156,-108305 -175981,-242830 -226531,-405347 -51495,-161454 -76770,-350191 -76770,-565856 0,-203973 26220,-388103 79487,-551447 52322,-162517 129092,-301530 228303,-415150 99329,-113738 220272,-200429 361056,-261846 140785,-60471 298695,-91061 472905,-91061 186847,0 345702,29763 476566,90235 131809,59526 239169,140785 324089,241885 83857,101101 146100,220154 185902,357395 39684,136297 59526,282515 59526,437709l0 79487zm-438654 -129092c5433,-229248 -45117,-409717 -152478,-540581 -107478,-130982 -265389,-195941 -475739,-195941 -108305,0 -203028,19842 -284286,60471 -81140,40629 -148934,94841 -203973,162517 -55038,66731 -97439,145273 -127202,233736 -29763,89408 -47007,182359 -50550,279798l1294229 0z"/>\r
-  <path id="16" class="fil1" d="M107725342 56362370c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34369,25275 -16181,6260 -37913,11693 -66731,15354 -27992,3543 -63188,5433 -105589,5433 -45117,0 -81258,-1890 -109250,-5433 -28818,-3661 -50550,-9094 -66731,-15354 -16299,-7205 -27165,-16299 -34369,-25275 -7205,-9921 -10748,-21732 -10748,-36141l0 -1394384c0,-135470 -10866,-245547 -31653,-327632 -20787,-83148 -51377,-154367 -92006,-214839 -40629,-59645 -92124,-105589 -156139,-137242 -64133,-31535 -138186,-47834 -222043,-47834 -109250,0 -217555,38858 -325860,116455 -109250,77597 -222988,191335 -342041,341214l0 1664261c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 314994c133580,-150706 266216,-260901 399796,-330348 132635,-69448 266216,-104644 401686,-104644 157911,0 291491,27047 399796,80314 108305,54094 195823,126376 262672,215665 66731,90235 114565,195823 143501,316766 28818,120943 43346,266334 43346,435110l0 1453084z"/>\r
-  <path id="17" class="fil1" d="M109708259 56185444c0,51495 -3661,92124 -10866,121888 -6260,29763 -17126,52322 -31535,65904 -13582,14409 -35196,27992 -63188,39684 -27992,12638 -60471,22559 -96612,30708 -36141,8149 -74054,14409 -114565,19842 -40629,5433 -80432,8149 -120943,8149 -123659,0 -229248,-16299 -316884,-48779 -87518,-32480 -159682,-82085 -216610,-147989 -55983,-65904 -96494,-149879 -122714,-250980 -25275,-100982 -37913,-220154 -37913,-357395l0 -1388125 -334836 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-27992 -23385,-74054 -23385,-138068 0,-33425 1772,-61416 6260,-83975 4488,-23504 10866,-42401 17126,-57755 7205,-14409 17126,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332120 0 0 -565029c0,-12638 2716,-24330 8976,-34251 6378,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27874,-3661 63188,-5433 106415,-5433 44291,0 80314,1772 108305,5433 28936,3543 50550,8976 66849,17126 16181,8149 27047,17126 34251,27992 7205,9921 10866,21614 10866,34251l0 565029 606485 0c14527,0 26220,2716 37086,9094 9921,6260 19842,17126 27047,31535 8149,15354 13464,34251 17126,57755 3661,22559 5433,50550 5433,83975 0,64015 -8149,110077 -23504,138068 -16181,27992 -36968,42401 -63188,42401l-606485 0 0 1324110c0,163344 24330,287003 72164,370033 47834,83975 134525,125431 259011,125431 39802,0 75825,-3543 107478,-11693 31535,-8149 59526,-16299 83975,-25275 24330,-9094 45117,-17126 63070,-25275 17244,-8149 33425,-11811 47007,-11811 8976,0 17126,1890 25275,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28818 11693,50550 3661,20787 5433,47834 5433,79369z"/>\r
-  <path id="18" class="fil1" d="M112443879 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>\r
-  <path id="19" class="fil1" d="M114481953 54135796c0,38739 -945,71219 -2716,97439 -1890,26220 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11693 -32480,11693 -14527,0 -31653,-3543 -51495,-11693 -20787,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54094,-15354 -85746,-22559 -31535,-7205 -65904,-10866 -102872,-10866 -44172,0 -87518,9094 -129919,26220 -41574,18071 -86691,46889 -132754,88463 -46889,40629 -95668,94723 -147045,161572 -50550,67676 -107478,149761 -168776,247318l0 1565877c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 346529c64959,-95668 126258,-173265 183186,-233736 57755,-59526 111848,-107360 162399,-141730 51495,-34251 102045,-57755 151651,-71219 50550,-13582 101101,-19842 152596,-19842 22559,0 48661,827 77597,3543 28818,2716 59526,8149 91179,14409 31535,7323 60471,15354 85746,24448 25275,8976 43346,17126 54094,26102 10866,9094 18071,17244 20787,25275 3661,8149 7205,18071 9921,29881 2716,12638 4488,30590 5433,54094 945,24330 945,55983 945,96612z"/>\r
-  <path id="20" class="fil1" d="M116086570 56428275l-316766 876362c-10866,27992 -37913,49724 -81258,64959 -42401,15354 -108305,22559 -196768,22559 -45944,0 -83030,-1772 -111022,-6260 -27874,-4488 -49605,-12638 -64959,-22559 -14409,-10866 -22559,-25275 -24330,-42401 -1772,-18071 2716,-38858 12638,-64133l328577 -828528c-16299,-7205 -31653,-18897 -45235,-34251 -14409,-16299 -24330,-32480 -28818,-50550l-849315 -2274526c-14409,-36968 -20787,-66731 -20787,-87518 0,-21614 6378,-37913 20787,-50550 14409,-12638 36968,-20787 68621,-25275 31535,-4488 73936,-6260 127202,-6260 52322,0 93896,827 124604,3543 29763,2716 53267,8149 71337,15354 17126,6378 29763,17126 37795,29763 8149,13582 16299,31653 25275,54212l679712 1909808 8149 0 655146 -1919729c10866,-34369 23504,-55983 38858,-65078 14409,-9921 36968,-17126 66849,-21614 30590,-4488 73936,-6260 129919,-6260 49605,0 90235,1772 121888,6260 31535,4488 55038,12638 69448,25275 15354,12638 22559,28936 22559,50550 0,20787 -5433,47834 -15354,79369l-854748 2367477z"/>\r
-  <polygon class="fil3" points="21934802,43025248 141045293,43025248 141045293,31680138 21934802,31680138 "/>\r
-  <path class="fil1" d="M50514484 36008446c0,33425 -1772,62361 -5433,86691 -3543,24448 -8976,44291 -17126,59645 -8149,14527 -17126,26220 -28936,32598 -11693,7205 -24330,10748 -37913,10748l-962109 0 0 2972309c0,14409 -3661,26102 -10866,36968 -7205,10866 -19015,19015 -37086,25275 -17126,6378 -40629,11811 -69566,16299 -29763,4488 -65904,6378 -110195,6378 -42401,0 -78542,-1890 -108423,-6378 -29763,-4488 -54212,-9921 -71337,-16299 -18071,-6260 -29763,-14409 -37086,-25275 -7205,-10866 -10748,-22559 -10748,-36968l0 -2972309 -962227 0c-13464,0 -26102,-3543 -37913,-10748 -11693,-6378 -20787,-18071 -27992,-32598 -6378,-15354 -12638,-35196 -17126,-59645 -4606,-24330 -6378,-53267 -6378,-86691 0,-33425 1772,-63188 6378,-88463 4488,-25393 10748,-46180 17126,-61534 7205,-16181 16299,-27992 27992,-34251 11811,-7205 24448,-10866 37913,-10866l2379642 0c13582,0 26220,3661 37913,10866 11811,6260 20787,18071 28936,34251 8149,15354 13582,36141 17126,61534 3661,25275 5433,55038 5433,88463z"/>\r
-  <path id="1" class="fil1" d="M52506495 37877625c0,68621 -17126,117399 -51495,147281 -34251,28936 -74054,43346 -118344,43346l-1564696 0c0,132754 13582,252043 39802,357749 26220,106534 70511,197831 132754,273775 61416,75825 141848,133698 240350,174328 99329,40629 220390,61416 363182,61416 112911,0 214130,-9094 301766,-27992 88463,-18071 165233,-38858 229366,-61416 64251,-22677 117518,-43346 159092,-61416 41574,-19015 72282,-28110 93896,-28110 12638,0 23504,2716 33425,9094 9094,6260 17126,15354 21732,27992 5433,11693 9921,28936 12638,50550 2716,22677 3543,48779 3543,80432 0,22559 -827,42519 -2716,59645 -1772,16299 -3543,31653 -6260,44291 -2716,13582 -7205,25275 -13582,36141 -6260,9921 -13582,19842 -23504,29763 -9921,9921 -38858,25275 -85746,47007 -47952,22559 -109368,43346 -185194,65078 -75944,20787 -163580,39684 -262909,55983 -99447,17126 -205154,25275 -318065,25275 -196059,0 -366726,-27047 -514006,-82203 -147281,-54212 -271058,-135470 -371332,-243066 -100274,-108305 -176099,-242948 -226768,-405583 -51495,-161690 -76770,-350545 -76770,-566446 0,-204209 26220,-388458 79487,-551919 52440,-162635 129210,-301766 228657,-415622 99329,-113856 220390,-200548 361293,-261964 140903,-60589 299050,-91298 473377,-91298 187083,0 346057,29881 477039,90353 131927,59645 239405,140903 324325,242122 83975,101219 146336,220390 186138,357749 39684,136415 59526,282751 59526,438181l0 79487zm-439008 -129210c5433,-229484 -45117,-410071 -152714,-541171 -107478,-130982 -265507,-195941 -476094,-195941 -108423,0 -203264,19842 -284522,60471 -81376,40629 -149052,94841 -204209,162635 -55038,66849 -97557,145391 -127321,233972 -29881,89408 -47007,182477 -50668,280034l1295528 0z"/>\r
-  <path id="2" class="fil1" d="M54672007 38522613c0,122006 -22559,230429 -67794,326215 -45117,94841 -108423,175272 -191453,240232 -83148,65078 -181650,114801 -296333,148226 -114801,33425 -241295,50550 -378536,50550 -84920,0 -165351,-6260 -242122,-19842 -76770,-12638 -145509,-28936 -206925,-49724 -60471,-19842 -111966,-40629 -154485,-62361 -42401,-21614 -73109,-41574 -92124,-58700 -19842,-17126 -34369,-42401 -42519,-74054 -8976,-31653 -13464,-74999 -13464,-130155 0,-33425 1772,-61416 5433,-83975 3543,-23504 8031,-41574 12638,-55983 5433,-14527 13464,-24448 22559,-30708 9921,-6378 20787,-9094 33425,-9094 19015,0 47834,11811 85865,36141 37913,23504 84920,49724 139958,77715 55156,27992 121061,54212 197004,77715 75825,24330 162635,36141 261019,36141 74054,0 141021,-8149 200548,-24448 60589,-15354 112085,-38858 156375,-70392 44172,-30708 77597,-70511 102045,-118344 23504,-47952 35196,-104880 35196,-170784 0,-66849 -17126,-123777 -51495,-168895 -34251,-46062 -79487,-86809 -135470,-122006 -56928,-35196 -120116,-66849 -190626,-93896 -70511,-27165 -142793,-56101 -217673,-85865 -74172,-30708 -147281,-64133 -218618,-102045 -71455,-38031 -134643,-84093 -191571,-139131 -55983,-55156 -101219,-120234 -135470,-196059 -34369,-75944 -51495,-166296 -51495,-272830 0,-93069 18071,-182477 54212,-268342 36023,-85865 90235,-160863 162517,-224996 73227,-64133 163580,-116455 272003,-155312 108423,-38858 234799,-57873 380308,-57873 63188,0 126494,5433 190626,16299 63188,10866 120116,25275 171611,41574 51495,16181 94841,34251 130982,53267 36141,19842 64133,36141 82203,51495 19015,14409 30708,27165 37086,37086 6260,10748 10866,22559 13582,36141 2716,12638 5433,28818 8149,47834 2598,19842 3543,43346 3543,71337 0,29881 -945,56101 -3543,77715 -2716,21732 -7323,39802 -13582,53267 -6378,14527 -13582,24448 -22559,30708 -9094,6378 -19015,9094 -28936,9094 -16299,0 -38858,-9921 -69566,-29763 -29881,-19015 -68621,-39802 -116573,-62361 -47834,-22559 -103935,-43346 -168068,-62361 -64133,-19842 -138186,-29763 -221335,-29763 -74054,0 -139958,8031 -195941,25275 -56928,16181 -102990,39684 -139131,70392 -36141,30708 -64133,66849 -82203,109368 -19015,41574 -28110,87636 -28110,136415 0,68621 18071,126494 53385,173383 35196,47007 80314,87636 137242,122951 56101,35196 121061,66849 193343,95786 72282,27992 145509,56810 220508,86691 74881,30708 149052,64133 222161,101219 73227,36968 138305,82203 194288,134525 56928,53385 102045,116573 136415,190626 34251,74054 51495,162635 51495,264680z"/>\r
-  <path id="3" class="fil1" d="M56470675 38995990c0,51495 -3661,92242 -10866,122006 -6260,29763 -17126,52440 -31653,65904 -13464,14527 -35196,28110 -63188,39802 -27992,12638 -60589,22559 -96612,30708 -36141,8149 -74172,14409 -114801,19842 -40629,5433 -80432,8149 -121061,8149 -123777,0 -229484,-16299 -317120,-48779 -87636,-32480 -159918,-82203 -216728,-148108 -56101,-66022 -96731,-149997 -122951,-251216 -25275,-101101 -37913,-220390 -37913,-357749l0 -1389424 -335191 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-28110 -23504,-74172 -23504,-138305 0,-33425 1890,-61416 6378,-83975 4488,-23504 10866,-42519 17126,-57873 7205,-14409 17244,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332474 0 0 -565502c0,-12638 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27992,-3661 63188,-5433 106534,-5433 44291,0 80432,1772 108423,5433 28936,3543 50550,8976 66849,17126 16299,8149 27047,17126 34369,27992 7205,9921 10748,21732 10748,34369l0 565502 607194 0c14409,0 26102,2716 36968,9094 9921,6260 19842,17126 27165,31535 8031,15354 13464,34369 17126,57873 3661,22559 5433,50550 5433,83975 0,64133 -8149,110195 -23504,138305 -16299,27992 -37086,42401 -63188,42401l-607194 0 0 1325291c0,163580 24448,287357 72282,370387 47952,84093 134643,125549 259365,125549 39684,0 75825,-3543 107478,-11693 31653,-8149 59645,-16299 83975,-25275 24448,-9094 45235,-17126 63306,-25275 17126,-8149 33425,-11811 46889,-11811 9094,0 17244,1890 25393,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28936 11693,50550 3661,20787 5433,47952 5433,79487z"/>\r
-  <path id="4" class="fil1" d="M58546662 38522613c0,122006 -22559,230429 -67794,326215 -45117,94841 -108423,175272 -191453,240232 -83148,65078 -181650,114801 -296333,148226 -114801,33425 -241295,50550 -378536,50550 -84920,0 -165351,-6260 -242122,-19842 -76770,-12638 -145509,-28936 -206925,-49724 -60471,-19842 -111966,-40629 -154485,-62361 -42401,-21614 -73109,-41574 -92124,-58700 -19842,-17126 -34369,-42401 -42519,-74054 -8976,-31653 -13464,-74999 -13464,-130155 0,-33425 1772,-61416 5433,-83975 3543,-23504 8031,-41574 12638,-55983 5433,-14527 13464,-24448 22559,-30708 9921,-6378 20787,-9094 33425,-9094 19015,0 47834,11811 85865,36141 37913,23504 84920,49724 139958,77715 55156,27992 121061,54212 197004,77715 75825,24330 162635,36141 261019,36141 74054,0 141021,-8149 200548,-24448 60589,-15354 112085,-38858 156375,-70392 44172,-30708 77597,-70511 102045,-118344 23504,-47952 35196,-104880 35196,-170784 0,-66849 -17126,-123777 -51495,-168895 -34251,-46062 -79487,-86809 -135470,-122006 -56928,-35196 -120116,-66849 -190626,-93896 -70511,-27165 -142793,-56101 -217673,-85865 -74172,-30708 -147281,-64133 -218618,-102045 -71455,-38031 -134643,-84093 -191571,-139131 -55983,-55156 -101219,-120234 -135470,-196059 -34369,-75944 -51495,-166296 -51495,-272830 0,-93069 18071,-182477 54212,-268342 36023,-85865 90235,-160863 162517,-224996 73227,-64133 163580,-116455 272003,-155312 108423,-38858 234799,-57873 380308,-57873 63188,0 126494,5433 190626,16299 63188,10866 120116,25275 171611,41574 51495,16181 94841,34251 130982,53267 36141,19842 64133,36141 82203,51495 19015,14409 30708,27165 37086,37086 6260,10748 10866,22559 13582,36141 2716,12638 5433,28818 8149,47834 2598,19842 3543,43346 3543,71337 0,29881 -945,56101 -3543,77715 -2716,21732 -7323,39802 -13582,53267 -6378,14527 -13582,24448 -22559,30708 -9094,6378 -19015,9094 -28936,9094 -16299,0 -38858,-9921 -69566,-29763 -29881,-19015 -68621,-39802 -116573,-62361 -47834,-22559 -103935,-43346 -168068,-62361 -64133,-19842 -138186,-29763 -221335,-29763 -74054,0 -139958,8031 -195941,25275 -56928,16181 -102990,39684 -139131,70392 -36141,30708 -64133,66849 -82203,109368 -19015,41574 -28110,87636 -28110,136415 0,68621 18071,126494 53385,173383 35196,47007 80314,87636 137242,122951 56101,35196 121061,66849 193343,95786 72282,27992 145509,56810 220508,86691 74881,30708 149052,64133 222161,101219 73227,36968 138305,82203 194288,134525 56928,53385 102045,116573 136415,190626 34251,74054 51495,162635 51495,264680z"/>\r
-  <path id="5" class="fil1" d="M61300234 35591052c-168068,355033 -292790,718215 -374993,1091319 -82203,373104 -122832,748097 -122832,1125688 0,379481 41574,755301 125549,1127460 84093,372159 205981,737231 366844,1094980 8976,21614 13582,39684 14409,54094 945,15354 -5433,27165 -17126,37086 -12638,9921 -31653,17126 -56928,21732 -26220,4488 -60589,6260 -104762,6260 -31653,0 -58700,-827 -82203,-2716 -22677,-1772 -42519,-5433 -59645,-10866 -16299,-5315 -29881,-10748 -40629,-18071 -10866,-7205 -19015,-15354 -23504,-23385 -95786,-180705 -179761,-362356 -252043,-546604 -72282,-184249 -132872,-372159 -182477,-562785 -49724,-189800 -86809,-383143 -111140,-577312 -24448,-195115 -37086,-392119 -37086,-591722 0,-199721 13582,-395662 40629,-589950 27992,-194288 66849,-386686 116573,-578139 50550,-191571 112085,-379481 184249,-564675 72282,-185194 153659,-368615 244011,-550148 827,-7205 6260,-13582 14409,-19015 7205,-5433 19015,-10866 32480,-15354 14527,-5433 33425,-9921 58818,-12638 24330,-2716 55983,-3661 94841,-3661 40629,0 73109,2716 98384,8149 24448,5433 43464,11811 57873,20787 14409,9094 21732,20787 23504,34369 1772,14409 -945,29763 -7205,45117z"/>\r
-  <path id="6" class="fil1" d="M63990619 36784534c0,7205 0,14409 -945,22559 -827,8149 -2716,16299 -3543,25275 -1890,9094 -4606,18071 -7323,28936 -2598,10866 -5315,21614 -8976,34251l-812111 2264014c-7323,19842 -17244,36141 -28110,47834 -11693,12638 -28818,22677 -51495,28936 -23385,7205 -52322,12638 -87636,15354 -35196,2716 -79487,3661 -132754,3661 -52440,0 -96612,-1890 -131927,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22677,-7205 -39802,-17244 -51495,-29881 -12638,-11693 -22677,-27047 -29881,-45117l-809395 -2264014c-7205,-20669 -12638,-39684 -17244,-55038 -4488,-16299 -7205,-27992 -8031,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14527 3543,-26220 9921,-37086 7205,-10866 19015,-19015 36141,-25275 16299,-6378 38858,-9921 65904,-11811 27165,-1772 61534,-2598 102164,-2598 51495,0 92124,827 122832,3543 30708,2716 55156,8149 71337,15354 17244,6378 29881,15354 37086,26220 8149,10866 15354,23504 22559,39802l672153 1964846 10866 31653 8149 -31653 664004 -1964846c3543,-16299 9921,-28936 18897,-39802 8149,-10866 21732,-19842 37913,-26220 17244,-7205 39802,-12638 68739,-15354 29763,-2716 67676,-3543 115628,-3543 40629,0 74054,827 100274,2598 26220,1890 47007,6378 62361,13582 15354,6378 25275,15354 31535,24448 6378,9921 9094,21614 9094,36141z"/>\r
-  <path id="7" class="fil1" d="M66677342 37942702c0,208697 -22559,395662 -67676,561840 -44291,165351 -110313,306254 -197949,421882 -86691,115746 -195115,205154 -323380,267515 -128265,62243 -275546,93896 -440898,93896 -70392,0 -135470,-7205 -195115,-20787 -60471,-14409 -118344,-36141 -176099,-66849 -56928,-29763 -113856,-67794 -169839,-113856 -56928,-45117 -116573,-99329 -179879,-160745l0 1193364c0,14527 -3543,26220 -10748,37086 -7323,10866 -18071,19842 -34369,27047 -16299,6378 -37913,11811 -66849,15354 -27992,3661 -64133,5433 -108423,5433 -43346,0 -78542,-1772 -106534,-5433 -28936,-3543 -51495,-8976 -67794,-15354 -17126,-7205 -28936,-16181 -35196,-27047 -6378,-10866 -9094,-22559 -9094,-37086l0 -3328995c0,-16299 2716,-28936 8149,-38858 5433,-9094 16299,-18071 31653,-24448 16181,-7205 36141,-12638 61416,-15354 24330,-2716 55038,-3543 90353,-3543 36968,0 67676,827 92124,3543 23504,2716 43346,8149 59645,14409 16181,7323 27047,16299 33425,25393 6260,9921 8976,22559 8976,38858l0 318892c72282,-74172 141848,-138305 208697,-193343 66849,-54212 134643,-99447 202319,-135588 67794,-36141 137360,-64133 208697,-82203 71455,-18897 146454,-27992 225941,-27992 172556,0 318892,33425 440779,100274 121061,67794 220508,159092 297278,275546 76770,116573 132754,252043 168068,406528 35196,154485 52322,318065 52322,490621zm-455307 50550c0,-122006 -8976,-240350 -27992,-354088 -18071,-113856 -50550,-215075 -94841,-303538 -45235,-88581 -105707,-159092 -181650,-212358 -75825,-53267 -170666,-79487 -283578,-79487 -56928,0 -112085,8149 -167123,25275 -54212,17126 -110313,43346 -167123,79487 -56101,36141 -115746,84093 -177162,143619 -61416,59645 -127321,132872 -196059,219563l0 947699c120234,147281 234090,259247 341569,337907 108423,77597 221335,116455 339679,116455 109250,0 203264,-26102 281806,-79487 78660,-53267 141848,-123777 190626,-212240 48779,-88581 84093,-187083 107478,-297278 22677,-109250 34369,-220390 34369,-331529z"/>\r
-  <path id="8" class="fil1" d="M69524928 37942702c0,208697 -22559,395662 -67676,561840 -44291,165351 -110313,306254 -197949,421882 -86691,115746 -195115,205154 -323380,267515 -128265,62243 -275546,93896 -440898,93896 -70392,0 -135470,-7205 -195115,-20787 -60471,-14409 -118344,-36141 -176099,-66849 -56928,-29763 -113856,-67794 -169839,-113856 -56928,-45117 -116573,-99329 -179879,-160745l0 1193364c0,14527 -3543,26220 -10748,37086 -7323,10866 -18071,19842 -34369,27047 -16299,6378 -37913,11811 -66849,15354 -27992,3661 -64133,5433 -108423,5433 -43346,0 -78542,-1772 -106534,-5433 -28936,-3543 -51495,-8976 -67794,-15354 -17126,-7205 -28936,-16181 -35196,-27047 -6378,-10866 -9094,-22559 -9094,-37086l0 -3328995c0,-16299 2716,-28936 8149,-38858 5433,-9094 16299,-18071 31653,-24448 16181,-7205 36141,-12638 61416,-15354 24330,-2716 55038,-3543 90353,-3543 36968,0 67676,827 92124,3543 23504,2716 43346,8149 59645,14409 16181,7323 27047,16299 33425,25393 6260,9921 8976,22559 8976,38858l0 318892c72282,-74172 141848,-138305 208697,-193343 66849,-54212 134643,-99447 202319,-135588 67794,-36141 137360,-64133 208697,-82203 71455,-18897 146454,-27992 225941,-27992 172556,0 318892,33425 440779,100274 121061,67794 220508,159092 297278,275546 76770,116573 132754,252043 168068,406528 35196,154485 52322,318065 52322,490621zm-455307 50550c0,-122006 -8976,-240350 -27992,-354088 -18071,-113856 -50550,-215075 -94841,-303538 -45235,-88581 -105707,-159092 -181650,-212358 -75825,-53267 -170666,-79487 -283578,-79487 -56928,0 -112085,8149 -167123,25275 -54212,17126 -110313,43346 -167123,79487 -56101,36141 -115746,84093 -177162,143619 -61416,59645 -127321,132872 -196059,219563l0 947699c120234,147281 234090,259247 341569,337907 108423,77597 221335,116455 339679,116455 109250,0 203264,-26102 281806,-79487 78660,-53267 141848,-123777 190626,-212240 48779,-88581 84093,-187083 107478,-297278 22677,-109250 34369,-220390 34369,-331529z"/>\r
-  <path class="fil1" d="M71247889 37901128c0,69566 -8149,117399 -23504,143619 -16181,26220 -38858,39802 -69566,39802l-1106673 0c-32480,0 -55983,-13582 -72282,-40747 -15354,-27992 -23504,-74881 -23504,-142675 0,-66849 8149,-113856 23504,-140076 16299,-26220 39802,-39684 72282,-39684l1106673 0c14527,0 27165,2716 38858,8149 11811,5315 20787,15354 28936,30708 8149,14409 14409,33425 19015,56810 4488,22677 6260,50668 6260,84093z"/>\r
-  <path class="fil1" d="M73777647 36784534c0,7205 0,14409 -945,22559 -827,8149 -2716,16299 -3543,25275 -1890,9094 -4606,18071 -7323,28936 -2598,10866 -5315,21614 -8976,34251l-812111 2264014c-7323,19842 -17244,36141 -28110,47834 -11693,12638 -28818,22677 -51495,28936 -23385,7205 -52322,12638 -87636,15354 -35196,2716 -79487,3661 -132754,3661 -52440,0 -96612,-1890 -131927,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22677,-7205 -39802,-17244 -51495,-29881 -12638,-11693 -22677,-27047 -29881,-45117l-809395 -2264014c-7205,-20669 -12638,-39684 -17244,-55038 -4488,-16299 -7205,-27992 -8031,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14527 3543,-26220 9921,-37086 7205,-10866 19015,-19015 36141,-25275 16299,-6378 38858,-9921 65904,-11811 27165,-1772 61534,-2598 102164,-2598 51495,0 92124,827 122832,3543 30708,2716 55156,8149 71337,15354 17244,6378 29881,15354 37086,26220 8149,10866 15354,23504 22559,39802l672153 1964846 10866 31653 8149 -31653 664004 -1964846c3543,-16299 9921,-28936 18897,-39802 8149,-10866 21732,-19842 37913,-26220 17244,-7205 39802,-12638 68739,-15354 29763,-2716 67676,-3543 115628,-3543 40629,0 74054,827 100274,2598 26220,1890 47007,6378 62361,13582 15354,6378 25275,15354 31535,24448 6378,9921 9094,21614 9094,36141z"/>\r
-  <path id="1" class="fil1" d="M76248351 37877625c0,68621 -17126,117399 -51495,147281 -34251,28936 -74054,43346 -118344,43346l-1564696 0c0,132754 13582,252043 39802,357749 26220,106534 70511,197831 132754,273775 61416,75825 141848,133698 240350,174328 99329,40629 220390,61416 363182,61416 112911,0 214130,-9094 301766,-27992 88463,-18071 165233,-38858 229366,-61416 64251,-22677 117518,-43346 159092,-61416 41574,-19015 72282,-28110 93896,-28110 12638,0 23504,2716 33425,9094 9094,6260 17126,15354 21732,27992 5433,11693 9921,28936 12638,50550 2716,22677 3543,48779 3543,80432 0,22559 -827,42519 -2716,59645 -1772,16299 -3543,31653 -6260,44291 -2716,13582 -7205,25275 -13582,36141 -6260,9921 -13582,19842 -23504,29763 -9921,9921 -38858,25275 -85746,47007 -47952,22559 -109368,43346 -185194,65078 -75944,20787 -163580,39684 -262909,55983 -99447,17126 -205154,25275 -318065,25275 -196059,0 -366726,-27047 -514006,-82203 -147281,-54212 -271058,-135470 -371332,-243066 -100274,-108305 -176099,-242948 -226768,-405583 -51495,-161690 -76770,-350545 -76770,-566446 0,-204209 26220,-388458 79487,-551919 52440,-162635 129210,-301766 228657,-415622 99329,-113856 220390,-200548 361293,-261964 140903,-60589 299050,-91298 473377,-91298 187083,0 346057,29881 477039,90353 131927,59645 239405,140903 324325,242122 83975,101219 146336,220390 186138,357749 39684,136415 59526,282751 59526,438181l0 79487zm-439008 -129210c5433,-229484 -45117,-410071 -152714,-541171 -107478,-130982 -265507,-195941 -476094,-195941 -108423,0 -203264,19842 -284522,60471 -81376,40629 -149052,94841 -204209,162635 -55038,66849 -97557,145391 -127321,233972 -29881,89408 -47007,182477 -50668,280034l1295528 0z"/>\r
-  <path id="2" class="fil1" d="M78310872 36944452c0,38739 -945,71337 -2716,97557 -1772,26102 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11811 -32598,11811 -14409,0 -31535,-3661 -51495,-11811 -20669,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54212,-15354 -85865,-22559 -31535,-7205 -65904,-10866 -102990,-10866 -44172,0 -87518,9094 -130037,26220 -41574,18071 -86691,47007 -132754,88581 -47007,40629 -95786,94841 -147281,161690 -50668,67676 -107478,149997 -169013,247555l0 1567413c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-14527 2716,-26220 8149,-36141 5433,-9094 15354,-18071 31653,-26220 16181,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38858,0 71455,827 96731,3543 26220,2716 46062,8149 60471,16299 13582,8149 24448,17126 30708,26220 5433,9921 9094,21614 9094,36141l0 346884c65078,-95786 126494,-173501 183422,-233972 57755,-59645 111966,-107596 162635,-141848 51495,-34369 102045,-57873 151769,-71337 50550,-13582 101101,-19960 152596,-19960 22559,0 48779,945 77715,3661 28936,2716 59645,8149 91298,14409 31535,7205 60471,15354 85746,24448 25275,8976 43346,17126 54212,26220 10866,8976 18071,17126 20787,25275 3661,8149 7205,18071 9921,29763 2716,12638 4606,30708 5433,54212 945,24448 945,55983 945,96731z"/>\r
-  <path id="3" class="fil1" d="M79246761 39173152c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-12756 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27165 16299,-6260 38858,-11693 67794,-15354 27992,-3543 63188,-5315 106534,-5315 44291,0 80432,1772 108423,5315 28936,3661 50550,9094 66849,15354 16299,7323 27047,16299 34369,27165 7205,9921 10748,21614 10748,34369l0 2383185zm48897 -3186321c0,102990 -19960,172556 -58818,209524 -38858,37086 -110195,55983 -214957,55983 -102990,0 -173501,-18071 -211414,-54212 -37913,-36023 -56928,-104762 -56928,-205981 0,-102872 19842,-172438 58700,-209524 38858,-37086 110195,-55983 215075,-55983 102990,0 173383,18071 211414,54212 37913,36141 56928,104762 56928,205981z"/>\r
-  <path id="4" class="fil1" d="M81358180 35809670c0,33425 -1890,60589 -5433,81376 -3661,19842 -7323,36141 -11811,48779 -4488,11693 -9921,20787 -17126,25275 -7205,3661 -16299,6378 -26220,6378 -12638,0 -27992,-3661 -47007,-11811 -18897,-8149 -40629,-17126 -67676,-27047 -26220,-9094 -57873,-18071 -94014,-26220 -36141,-8149 -78542,-11811 -126494,-11811 -64959,0 -121061,10866 -167123,31653 -45117,21732 -83148,55156 -111140,100274 -27992,45235 -48779,102990 -60471,175272 -12638,71337 -19015,158974 -19015,261964l0 260192 531250 0c13582,0 25275,2716 35196,9094 9921,6260 18071,17126 26220,31535 8149,15354 14409,34369 19015,57873 4488,22559 6260,50550 6260,83975 0,64133 -8149,110195 -23504,138305 -16181,27992 -36968,42401 -63188,42401l-531250 0 0 2086025c0,14409 -3543,26102 -10866,36141 -7205,8976 -18897,18071 -35196,25275 -17126,6260 -39684,11693 -67794,15354 -27992,3543 -63188,5433 -105589,5433 -42519,0 -77715,-1890 -105707,-5433 -28110,-3661 -50668,-9094 -67794,-15354 -16299,-7205 -27992,-16299 -35196,-25275 -7323,-10039 -10866,-21732 -10866,-36141l0 -2086025 -337907 0c-27992,0 -49724,-14409 -63188,-42401 -14527,-28110 -21732,-74172 -21732,-138305 0,-33425 1772,-61416 5433,-83975 3661,-23504 8976,-42519 16299,-57873 6260,-14409 15354,-25275 26102,-31535 10866,-6378 23504,-9094 37086,-9094l337907 0 0 -246610c0,-167123 15354,-309916 46062,-429087 31653,-119289 78542,-217791 141848,-293617 64133,-75944 143619,-132872 240232,-169013 95786,-36141 209642,-54094 340624,-54094 61416,0 122006,5315 179761,17126 58700,11693 103935,23504 135588,36968 31535,13582 52322,25393 63188,36141 10866,10039 19842,24448 26220,40747 7205,17126 12638,36968 15354,61416 2716,23504 3661,52322 3661,85746z"/>\r
-  <path id="5" class="fil1" d="M82815279 39239057l-317120 877189c-10748,27992 -37913,49724 -81258,65078 -42519,15354 -108423,22559 -196886,22559 -46180,0 -83148,-1772 -111140,-6260 -27992,-4606 -49724,-12638 -65078,-22677 -14409,-10748 -22559,-25275 -24448,-42401 -1772,-18071 2716,-38858 12756,-64133l328813 -829355c-16299,-7205 -31653,-19015 -45235,-34369 -14409,-16181 -24330,-32480 -28818,-50550l-850142 -2276534c-14527,-37086 -20787,-66967 -20787,-87636 0,-21732 6260,-38031 20787,-50668 14409,-12638 36968,-20787 68621,-25275 31653,-4488 74054,-6260 127439,-6260 52322,0 93896,827 124604,3543 29881,2716 53385,8149 71337,15354 17244,6378 29881,17126 38031,29881 8149,13464 16181,31535 25275,54094l680303 1911698 8031 0 655972 -1921619c10748,-34251 23504,-55983 38858,-64959 14409,-10039 36968,-17244 66849,-21732 30708,-4488 74054,-6260 130037,-6260 49724,0 90353,1772 122006,6260 31535,4488 55038,12638 69566,25275 15354,12638 22559,28936 22559,50668 0,20669 -5433,47834 -15354,79487l-855575 2369603z"/>\r
-  <path id="6" class="fil1" d="M84374543 38862292c0,55156 -2598,105707 -8031,150942 -5433,46062 -14527,89408 -26220,130037 -12638,40629 -28936,80432 -48779,120234 -20787,39684 -46062,82203 -75944,125549l-362238 545659c-8976,12638 -19015,22559 -30708,31535 -11811,9094 -25275,17244 -42519,23504 -16181,7323 -36141,12638 -57755,15354 -22559,2716 -49724,3661 -83975,3661 -29881,0 -55156,-945 -74999,-3661 -20787,-2716 -35314,-7205 -43346,-13464 -9094,-6378 -13582,-14527 -14527,-25393 -945,-10748 1772,-22559 9094,-36968l351372 -728136 0 -338852c0,-46889 5433,-84920 15354,-113738 9094,-28110 24448,-48779 46062,-63306 20787,-14409 47952,-23504 79487,-28936 31653,-5315 70511,-8031 116573,-8031 43346,0 81258,2716 113856,8031 31653,5433 57755,14527 77715,28936 19842,14527 35196,35196 45117,63306 9921,28818 14409,66849 14409,113738z"/>\r
-  <path id="7" class="fil1" d="M88089515 38806309c0,29881 -945,55983 -2716,77715 -1890,22559 -4606,40629 -9094,55983 -4488,15354 -9921,27992 -16299,39802 -6260,11693 -19842,28936 -42401,50550 -21732,22559 -59645,49724 -112085,83148 -53267,32480 -112911,62361 -178816,87636 -66849,26220 -138186,46889 -215902,62361 -77715,16181 -158147,24330 -241177,24330 -171729,0 -323498,-27992 -455425,-84920 -132754,-55983 -243893,-138186 -332356,-246610 -89526,-108423 -157202,-242122 -204209,-399324 -47007,-158147 -70511,-339679 -70511,-546604 0,-233972 28936,-435346 85865,-604359 57873,-168068 136415,-306254 235744,-413733 100274,-107478 217791,-186965 352316,-239405 135588,-51495 281924,-77715 439126,-77715 75825,0 149052,7205 220390,21732 72282,13464 137360,32480 197831,55038 59645,23504 113856,49724 159918,80432 47007,29763 81376,55983 102164,76770 21614,21732 36141,38858 44172,50668 7323,12638 14527,27047 19960,44172 4488,16299 8149,35314 9921,56928 1772,20787 2716,47952 2716,79487 0,68739 -8149,116573 -23504,144564 -16299,27165 -35196,40629 -58700,40629 -26220,0 -56928,-14409 -91298,-44172 -34369,-28936 -77715,-61534 -130982,-96731 -53267,-35196 -117399,-67794 -192398,-96612 -74999,-29881 -163580,-44291 -265625,-44291 -210469,0 -372159,80432 -484243,242122 -111966,160745 -168068,394717 -168068,700972 0,152714 14527,287357 43464,402985 29763,114683 72282,211414 129092,289129 56101,76770 125667,134525 207870,172556 82203,37913 176099,56810 281806,56810 101219,0 189682,-16181 265625,-47834 75825,-31653 140903,-66849 196886,-105707 56101,-37913 102990,-72282 141021,-102990 37913,-31653 66849,-47007 88463,-47007 11811,0 22677,3661 31653,10866 8976,7205 16299,19015 22559,35314 6378,17126 10866,37913 13582,64133 2716,25275 3661,55983 3661,91179z"/>\r
-  <path id="8" class="fil1" d="M90164675 38522613c0,122006 -22559,230429 -67794,326215 -45117,94841 -108423,175272 -191453,240232 -83148,65078 -181650,114801 -296333,148226 -114801,33425 -241295,50550 -378536,50550 -84920,0 -165351,-6260 -242122,-19842 -76770,-12638 -145509,-28936 -206925,-49724 -60471,-19842 -111966,-40629 -154485,-62361 -42401,-21614 -73109,-41574 -92124,-58700 -19842,-17126 -34369,-42401 -42519,-74054 -8976,-31653 -13464,-74999 -13464,-130155 0,-33425 1772,-61416 5433,-83975 3543,-23504 8031,-41574 12638,-55983 5433,-14527 13464,-24448 22559,-30708 9921,-6378 20787,-9094 33425,-9094 19015,0 47834,11811 85865,36141 37913,23504 84920,49724 139958,77715 55156,27992 121061,54212 197004,77715 75825,24330 162635,36141 261019,36141 74054,0 141021,-8149 200548,-24448 60589,-15354 112085,-38858 156375,-70392 44172,-30708 77597,-70511 102045,-118344 23504,-47952 35196,-104880 35196,-170784 0,-66849 -17126,-123777 -51495,-168895 -34251,-46062 -79487,-86809 -135470,-122006 -56928,-35196 -120116,-66849 -190626,-93896 -70511,-27165 -142793,-56101 -217673,-85865 -74172,-30708 -147281,-64133 -218618,-102045 -71455,-38031 -134643,-84093 -191571,-139131 -55983,-55156 -101219,-120234 -135470,-196059 -34369,-75944 -51495,-166296 -51495,-272830 0,-93069 18071,-182477 54212,-268342 36023,-85865 90235,-160863 162517,-224996 73227,-64133 163580,-116455 272003,-155312 108423,-38858 234799,-57873 380308,-57873 63188,0 126494,5433 190626,16299 63188,10866 120116,25275 171611,41574 51495,16181 94841,34251 130982,53267 36141,19842 64133,36141 82203,51495 19015,14409 30708,27165 37086,37086 6260,10748 10866,22559 13582,36141 2716,12638 5433,28818 8149,47834 2598,19842 3543,43346 3543,71337 0,29881 -945,56101 -3543,77715 -2716,21732 -7323,39802 -13582,53267 -6378,14527 -13582,24448 -22559,30708 -9094,6378 -19015,9094 -28936,9094 -16299,0 -38858,-9921 -69566,-29763 -29881,-19015 -68621,-39802 -116573,-62361 -47834,-22559 -103935,-43346 -168068,-62361 -64133,-19842 -138186,-29763 -221335,-29763 -74054,0 -139958,8031 -195941,25275 -56928,16181 -102990,39684 -139131,70392 -36141,30708 -64133,66849 -82203,109368 -19015,41574 -28110,87636 -28110,136415 0,68621 18071,126494 53385,173383 35196,47007 80314,87636 137242,122951 56101,35196 121061,66849 193343,95786 72282,27992 145509,56810 220508,86691 74881,30708 149052,64133 222161,101219 73227,36968 138305,82203 194288,134525 56928,53385 102045,116573 136415,190626 34251,74054 51495,162635 51495,264680z"/>\r
-  <path id="9" class="fil1" d="M91227884 39173152c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-12756 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27165 16299,-6260 38858,-11693 67794,-15354 27992,-3543 63188,-5315 106534,-5315 44291,0 80432,1772 108423,5315 28936,3661 50550,9094 66849,15354 16299,7323 27047,16299 34369,27165 7205,9921 10748,21614 10748,34369l0 2383185zm48897 -3186321c0,102990 -19960,172556 -58818,209524 -38858,37086 -110195,55983 -214957,55983 -102990,0 -173501,-18071 -211414,-54212 -37913,-36023 -56928,-104762 -56928,-205981 0,-102872 19842,-172438 58700,-209524 38858,-37086 110195,-55983 215075,-55983 102990,0 173383,18071 211414,54212 37913,36141 56928,104762 56928,205981z"/>\r
-  <path id="10" class="fil1" d="M93268792 38995990c0,51495 -3661,92242 -10866,122006 -6260,29763 -17126,52440 -31653,65904 -13464,14527 -35196,28110 -63188,39802 -27992,12638 -60589,22559 -96612,30708 -36141,8149 -74172,14409 -114801,19842 -40629,5433 -80432,8149 -121061,8149 -123777,0 -229484,-16299 -317120,-48779 -87636,-32480 -159918,-82203 -216728,-148108 -56101,-66022 -96731,-149997 -122951,-251216 -25275,-101101 -37913,-220390 -37913,-357749l0 -1389424 -335191 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-28110 -23504,-74172 -23504,-138305 0,-33425 1890,-61416 6378,-83975 4488,-23504 10866,-42519 17126,-57873 7205,-14409 17244,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332474 0 0 -565502c0,-12638 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27992,-3661 63188,-5433 106534,-5433 44291,0 80432,1772 108423,5433 28936,3543 50550,8976 66849,17126 16299,8149 27047,17126 34369,27992 7205,9921 10748,21732 10748,34369l0 565502 607194 0c14409,0 26102,2716 36968,9094 9921,6260 19842,17126 27165,31535 8031,15354 13464,34369 17126,57873 3661,22559 5433,50550 5433,83975 0,64133 -8149,110195 -23504,138305 -16299,27992 -37086,42401 -63188,42401l-607194 0 0 1325291c0,163580 24448,287357 72282,370387 47952,84093 134643,125549 259365,125549 39684,0 75825,-3543 107478,-11693 31653,-8149 59645,-16299 83975,-25275 24448,-9094 45235,-17126 63306,-25275 17126,-8149 33425,-11811 46889,-11811 9094,0 17244,1890 25393,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28936 11693,50550 3661,20787 5433,47952 5433,79487z"/>\r
-  <path class="fil1" d="M94940022 37901128c0,69566 -8149,117399 -23504,143619 -16181,26220 -38858,39802 -69566,39802l-1106673 0c-32480,0 -55983,-13582 -72282,-40747 -15354,-27992 -23504,-74881 -23504,-142675 0,-66849 8149,-113856 23504,-140076 16299,-26220 39802,-39684 72282,-39684l1106673 0c14527,0 27165,2716 38858,8149 11811,5315 20787,15354 28936,30708 8149,14409 14409,33425 19015,56810 4488,22677 6260,50668 6260,84093z"/>\r
-  <path class="fil1" d="M97476511 36784534c0,7205 0,14409 -945,22559 -827,8149 -2716,16299 -3543,25275 -1890,9094 -4606,18071 -7323,28936 -2598,10866 -5315,21614 -8976,34251l-812111 2264014c-7323,19842 -17244,36141 -28110,47834 -11693,12638 -28818,22677 -51495,28936 -23385,7205 -52322,12638 -87636,15354 -35196,2716 -79487,3661 -132754,3661 -52440,0 -96612,-1890 -131927,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22677,-7205 -39802,-17244 -51495,-29881 -12638,-11693 -22677,-27047 -29881,-45117l-809395 -2264014c-7205,-20669 -12638,-39684 -17244,-55038 -4488,-16299 -7205,-27992 -8031,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14527 3543,-26220 9921,-37086 7205,-10866 19015,-19015 36141,-25275 16299,-6378 38858,-9921 65904,-11811 27165,-1772 61534,-2598 102164,-2598 51495,0 92124,827 122832,3543 30708,2716 55156,8149 71337,15354 17244,6378 29881,15354 37086,26220 8149,10866 15354,23504 22559,39802l672153 1964846 10866 31653 8149 -31653 664004 -1964846c3543,-16299 9921,-28936 18897,-39802 8149,-10866 21732,-19842 37913,-26220 17244,-7205 39802,-12638 68739,-15354 29763,-2716 67676,-3543 115628,-3543 40629,0 74054,827 100274,2598 26220,1890 47007,6378 62361,13582 15354,6378 25275,15354 31535,24448 6378,9921 9094,21614 9094,36141z"/>\r
-  <path id="1" class="fil1" d="M99947215 37877625c0,68621 -17126,117399 -51495,147281 -34251,28936 -74054,43346 -118344,43346l-1564696 0c0,132754 13582,252043 39802,357749 26220,106534 70511,197831 132754,273775 61416,75825 141848,133698 240350,174328 99329,40629 220390,61416 363182,61416 112911,0 214130,-9094 301766,-27992 88463,-18071 165233,-38858 229366,-61416 64251,-22677 117518,-43346 159092,-61416 41574,-19015 72282,-28110 93896,-28110 12638,0 23504,2716 33425,9094 9094,6260 17126,15354 21732,27992 5433,11693 9921,28936 12638,50550 2716,22677 3543,48779 3543,80432 0,22559 -827,42519 -2716,59645 -1772,16299 -3543,31653 -6260,44291 -2716,13582 -7205,25275 -13582,36141 -6260,9921 -13582,19842 -23504,29763 -9921,9921 -38858,25275 -85746,47007 -47952,22559 -109368,43346 -185194,65078 -75944,20787 -163580,39684 -262909,55983 -99447,17126 -205154,25275 -318065,25275 -196059,0 -366726,-27047 -514006,-82203 -147281,-54212 -271058,-135470 -371332,-243066 -100274,-108305 -176099,-242948 -226768,-405583 -51495,-161690 -76770,-350545 -76770,-566446 0,-204209 26220,-388458 79487,-551919 52440,-162635 129210,-301766 228657,-415622 99329,-113856 220390,-200548 361293,-261964 140903,-60589 299050,-91298 473377,-91298 187083,0 346057,29881 477039,90353 131927,59645 239405,140903 324325,242122 83975,101219 146336,220390 186138,357749 39684,136415 59526,282751 59526,438181l0 79487zm-439008 -129210c5433,-229484 -45117,-410071 -152714,-541171 -107478,-130982 -265507,-195941 -476094,-195941 -108423,0 -203264,19842 -284522,60471 -81376,40629 -149052,94841 -204209,162635 -55038,66849 -97557,145391 -127321,233972 -29881,89408 -47007,182477 -50668,280034l1295528 0z"/>\r
-  <path id="2" class="fil1" d="M102009737 36944452c0,38739 -945,71337 -2716,97557 -1772,26102 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11811 -32598,11811 -14409,0 -31535,-3661 -51495,-11811 -20669,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54212,-15354 -85865,-22559 -31535,-7205 -65904,-10866 -102990,-10866 -44172,0 -87518,9094 -130037,26220 -41574,18071 -86691,47007 -132754,88581 -47007,40629 -95786,94841 -147281,161690 -50668,67676 -107478,149997 -169013,247555l0 1567413c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-14527 2716,-26220 8149,-36141 5433,-9094 15354,-18071 31653,-26220 16181,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38858,0 71455,827 96731,3543 26220,2716 46062,8149 60471,16299 13582,8149 24448,17126 30708,26220 5433,9921 9094,21614 9094,36141l0 346884c65078,-95786 126494,-173501 183422,-233972 57755,-59645 111966,-107596 162635,-141848 51495,-34369 102045,-57873 151769,-71337 50550,-13582 101101,-19960 152596,-19960 22559,0 48779,945 77715,3661 28936,2716 59645,8149 91298,14409 31535,7205 60471,15354 85746,24448 25275,8976 43346,17126 54212,26220 10866,8976 18071,17126 20787,25275 3661,8149 7205,18071 9921,29763 2716,12638 4606,30708 5433,54212 945,24448 945,55983 945,96731z"/>\r
-  <path id="3" class="fil1" d="M102945625 39173152c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-12756 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27165 16299,-6260 38858,-11693 67794,-15354 27992,-3543 63188,-5315 106534,-5315 44291,0 80432,1772 108423,5315 28936,3661 50550,9094 66849,15354 16299,7323 27047,16299 34369,27165 7205,9921 10748,21614 10748,34369l0 2383185zm48897 -3186321c0,102990 -19960,172556 -58818,209524 -38858,37086 -110195,55983 -214957,55983 -102990,0 -173501,-18071 -211414,-54212 -37913,-36023 -56928,-104762 -56928,-205981 0,-102872 19842,-172438 58700,-209524 38858,-37086 110195,-55983 215075,-55983 102990,0 173383,18071 211414,54212 37913,36141 56928,104762 56928,205981z"/>\r
-  <path id="4" class="fil1" d="M105057044 35809670c0,33425 -1890,60589 -5433,81376 -3661,19842 -7323,36141 -11811,48779 -4488,11693 -9921,20787 -17126,25275 -7205,3661 -16299,6378 -26220,6378 -12638,0 -27992,-3661 -47007,-11811 -18897,-8149 -40629,-17126 -67676,-27047 -26220,-9094 -57873,-18071 -94014,-26220 -36141,-8149 -78542,-11811 -126494,-11811 -64959,0 -121061,10866 -167123,31653 -45117,21732 -83148,55156 -111140,100274 -27992,45235 -48779,102990 -60471,175272 -12638,71337 -19015,158974 -19015,261964l0 260192 531250 0c13582,0 25275,2716 35196,9094 9921,6260 18071,17126 26220,31535 8149,15354 14409,34369 19015,57873 4488,22559 6260,50550 6260,83975 0,64133 -8149,110195 -23504,138305 -16181,27992 -36968,42401 -63188,42401l-531250 0 0 2086025c0,14409 -3543,26102 -10866,36141 -7205,8976 -18897,18071 -35196,25275 -17126,6260 -39684,11693 -67794,15354 -27992,3543 -63188,5433 -105589,5433 -42519,0 -77715,-1890 -105707,-5433 -28110,-3661 -50668,-9094 -67794,-15354 -16299,-7205 -27992,-16299 -35196,-25275 -7323,-10039 -10866,-21732 -10866,-36141l0 -2086025 -337907 0c-27992,0 -49724,-14409 -63188,-42401 -14527,-28110 -21732,-74172 -21732,-138305 0,-33425 1772,-61416 5433,-83975 3661,-23504 8976,-42519 16299,-57873 6260,-14409 15354,-25275 26102,-31535 10866,-6378 23504,-9094 37086,-9094l337907 0 0 -246610c0,-167123 15354,-309916 46062,-429087 31653,-119289 78542,-217791 141848,-293617 64133,-75944 143619,-132872 240232,-169013 95786,-36141 209642,-54094 340624,-54094 61416,0 122006,5315 179761,17126 58700,11693 103935,23504 135588,36968 31535,13582 52322,25393 63188,36141 10866,10039 19842,24448 26220,40747 7205,17126 12638,36968 15354,61416 2716,23504 3661,52322 3661,85746z"/>\r
-  <path id="5" class="fil1" d="M106514144 39239057l-317120 877189c-10748,27992 -37913,49724 -81258,65078 -42519,15354 -108423,22559 -196886,22559 -46180,0 -83148,-1772 -111140,-6260 -27992,-4606 -49724,-12638 -65078,-22677 -14409,-10748 -22559,-25275 -24448,-42401 -1772,-18071 2716,-38858 12756,-64133l328813 -829355c-16299,-7205 -31653,-19015 -45235,-34369 -14409,-16181 -24330,-32480 -28818,-50550l-850142 -2276534c-14527,-37086 -20787,-66967 -20787,-87636 0,-21732 6260,-38031 20787,-50668 14409,-12638 36968,-20787 68621,-25275 31653,-4488 74054,-6260 127439,-6260 52322,0 93896,827 124604,3543 29881,2716 53385,8149 71337,15354 17244,6378 29881,17126 38031,29881 8149,13464 16181,31535 25275,54094l680303 1911698 8031 0 655972 -1921619c10748,-34251 23504,-55983 38858,-64959 14409,-10039 36968,-17244 66849,-21732 30708,-4488 74054,-6260 130037,-6260 49724,0 90353,1772 122006,6260 31535,4488 55038,12638 69566,25275 15354,12638 22559,28936 22559,50668 0,20669 -5433,47834 -15354,79487l-855575 2369603z"/>\r
-  <path id="6" class="fil1" d="M108073407 38862292c0,55156 -2598,105707 -8031,150942 -5433,46062 -14527,89408 -26220,130037 -12638,40629 -28936,80432 -48779,120234 -20787,39684 -46062,82203 -75944,125549l-362238 545659c-8976,12638 -19015,22559 -30708,31535 -11811,9094 -25275,17244 -42519,23504 -16181,7323 -36141,12638 -57755,15354 -22559,2716 -49724,3661 -83975,3661 -29881,0 -55156,-945 -74999,-3661 -20787,-2716 -35314,-7205 -43346,-13464 -9094,-6378 -13582,-14527 -14527,-25393 -945,-10748 1772,-22559 9094,-36968l351372 -728136 0 -338852c0,-46889 5433,-84920 15354,-113738 9094,-28110 24448,-48779 46062,-63306 20787,-14409 47952,-23504 79487,-28936 31653,-5315 70511,-8031 116573,-8031 43346,0 81258,2716 113856,8031 31653,5433 57755,14527 77715,28936 19842,14527 35196,35196 45117,63306 9921,28818 14409,66849 14409,113738z"/>\r
-  <path class="fil1" d="M110639896 38950873c0,123777 -20787,205981 -62243,247555 -41574,41574 -114801,62361 -220508,62361 -102990,0 -174328,-20787 -214957,-61534 -40629,-40629 -60589,-121061 -60589,-241177 0,-123777 20787,-205981 62361,-247555 41574,-41574 114683,-62243 220390,-62243 102990,0 174446,19842 215075,60471 40629,40629 60471,122006 60471,242122zm1197971 0c0,123777 -20787,205981 -61416,247555 -40629,41574 -113856,62361 -220508,62361 -102990,0 -174328,-20787 -214957,-61534 -40629,-40629 -61416,-121061 -61416,-241177 0,-123777 20787,-205981 62361,-247555 41456,-41574 114683,-62243 219445,-62243 104880,0 177162,19842 216846,60471 39802,40629 59645,122006 59645,242122zm1192538 0c0,123777 -20787,205981 -62361,247555 -41574,41574 -114801,62361 -220508,62361 -102990,0 -174328,-20787 -214957,-61534 -40629,-40629 -60471,-121061 -60471,-241177 0,-123777 20669,-205981 62243,-247555 41574,-41574 114801,-62243 220508,-62243 102990,0 174328,19842 214957,60471 40629,40629 60589,122006 60589,242122z"/>\r
-  <path id="1" class="fil1" d="M114715098 37816208c0,199603 -12638,396607 -37086,591722 -24330,194170 -61416,387513 -111140,577312 -49605,190626 -110195,378536 -181532,562785 -71337,184249 -154485,365899 -250271,546604 -4488,8031 -12638,16181 -23504,23385 -10866,7323 -24330,12756 -40629,18071 -17126,5433 -37086,9094 -59645,10866 -23504,1890 -50550,2716 -82203,2716 -46062,0 -81258,-1772 -107478,-6260 -25275,-4606 -44291,-11811 -55156,-21732 -11693,-9921 -17126,-21732 -16181,-37086 827,-14409 5433,-32480 14409,-54094 162635,-355978 285467,-720932 367671,-1094035 83148,-373104 124722,-748924 124722,-1128405 0,-377592 -41574,-752585 -124722,-1125688 -82203,-373104 -206807,-736286 -373104,-1091319 -6260,-15354 -8976,-30708 -7205,-45117 1772,-13582 8976,-25275 23504,-34369 14409,-8976 33425,-15354 57755,-20787 25393,-5433 57873,-8149 98502,-8149 37086,0 67794,945 92124,3661 25275,2716 45235,7205 59645,12638 15354,4488 26220,9921 33425,15354 7205,5433 12638,11811 15354,19015 182477,361293 324325,732625 428260,1114822 102990,382080 154485,771482 154485,1168089z"/>\r
-  <polygon class="fil4" points="142453378,97611863 157507910,97611863 157507910,31680138 142453378,31680138 "/>\r
-  <path class="fil1" d="M146255869 68181331c38976,0 72636,2126 100982,6378 28464,4134 51613,10512 69448,19960 16889,9449 30590,19960 37913,33661 8386,13701 12638,28464 12638,44172l0 1120728 3462221 0c16771,0 30472,4252 43109,12638 12638,8504 22086,22086 29527,43228 7323,19960 13582,47361 18897,81022 5315,34724 7323,76770 7323,128384 0,49487 -2008,91534 -7323,126258 -5315,34724 -11575,63188 -18897,83148 -7441,21023 -16889,34724 -29527,43109 -12638,8386 -26338,12638 -43109,12638l-3462221 0 0 1120728c0,15826 -4252,30590 -12638,44172 -7323,13701 -21023,24212 -37913,32716 -17834,7323 -40984,14645 -69448,19960 -28346,5197 -62007,7323 -100982,7323 -38976,0 -73699,-2126 -103108,-7323 -29527,-5315 -53739,-12638 -71574,-19960 -19015,-8504 -32598,-19015 -40039,-32716 -8386,-13582 -12638,-28346 -12638,-44172l0 -2771879c0,-15708 4252,-30472 12638,-44172 7441,-13701 21023,-24212 40039,-33661 17834,-9449 42046,-15826 71574,-19960 29409,-4252 64133,-6378 103108,-6378z"/>\r
-  <path id="1" class="fil1" d="M148521536 65646258c226295,0 434638,29409 625146,89408 189327,58936 353498,148344 491448,266216 137832,117872 245192,266334 321963,443142 76770,177753 115746,384088 115746,617705 0,228303 -33661,427197 -102045,596682 -67322,169367 -166296,310388 -295743,422945 -129446,112675 -286176,196886 -471488,252633 -185194,55747 -394599,83148 -629280,83148 -226177,0 -434638,-29527 -623965,-87400 -190508,-58936 -354679,-147281 -492511,-265153 -137832,-117872 -244129,-265153 -321018,-441961 -75707,-176808 -113620,-383143 -113620,-618768 0,-228421 33661,-427315 102045,-596682 67322,-169485 166296,-310506 295743,-423063 129446,-112675 287239,-197831 471488,-254641 185194,-55865 393536,-84211 626091,-84211zm32598 530305c-150470,0 -292554,13701 -426134,42165 -133698,27401 -250507,73699 -351490,137832 -101101,63188 -181060,150470 -238933,259956 -58936,108423 -88345,245192 -88345,408300 0,150470 26338,279916 79959,388339 53621,108305 129446,196768 227240,267279 97912,70511 213658,122006 347356,155785 133580,34724 279916,51495 437709,51495 152596,0 295743,-13701 429441,-42046 133580,-27401 250389,-73699 350427,-138895 98856,-65314 178816,-152596 236689,-261019 58936,-109486 88463,-246255 88463,-409363 0,-148344 -26338,-276727 -79959,-386214 -53739,-109486 -128384,-198894 -225232,-269405 -96849,-70511 -212595,-122124 -346175,-154722 -133698,-32598 -280979,-49487 -441016,-49487z"/>\r
-  <path id="2" class="fil1" d="M148521536 62316672c226295,0 434638,29409 625146,89408 189327,58936 353498,148344 491448,266216 137832,117872 245192,266334 321963,443142 76770,177753 115746,384088 115746,617705 0,228303 -33661,427197 -102045,596682 -67322,169367 -166296,310388 -295743,422945 -129446,112675 -286176,196886 -471488,252633 -185194,55747 -394599,83148 -629280,83148 -226177,0 -434638,-29527 -623965,-87400 -190508,-58936 -354679,-147281 -492511,-265153 -137832,-117872 -244129,-265153 -321018,-441961 -75707,-176808 -113620,-383143 -113620,-618768 0,-228421 33661,-427315 102045,-596682 67322,-169485 166296,-310506 295743,-423063 129446,-112675 287239,-197831 471488,-254641 185194,-55865 393536,-84211 626091,-84211zm32598 530305c-150470,0 -292554,13701 -426134,42165 -133698,27401 -250507,73699 -351490,137832 -101101,63188 -181060,150470 -238933,259956 -58936,108423 -88345,245192 -88345,408300 0,150470 26338,279916 79959,388339 53621,108305 129446,196768 227240,267279 97912,70511 213658,122006 347356,155785 133580,34724 279916,51495 437709,51495 152596,0 295743,-13701 429441,-42046 133580,-27401 250389,-73699 350427,-138895 98856,-65314 178816,-152596 236689,-261019 58936,-109486 88463,-246255 88463,-409363 0,-148344 -26338,-276727 -79959,-386214 -53739,-109486 -128384,-198894 -225232,-269405 -96849,-70511 -212595,-122124 -346175,-154722 -133698,-32598 -280979,-49487 -441016,-49487z"/>\r
-  <path id="3" class="fil1" d="M149942259 61051735c16771,0 30472,4252 42046,12638 10512,8386 21023,21023 29409,40039 7441,18897 13701,44172 17952,77833 4252,32598 6260,74762 6260,126258 0,50550 -2008,91534 -6260,124250 -4252,33661 -10512,59999 -17952,78896 -8386,19960 -18897,33661 -29409,40984 -11575,7441 -25275,10512 -42046,10512l-4117839 0c-16889,0 -31653,-3071 -43228,-10512 -12519,-7323 -23149,-21023 -31535,-40984 -7323,-18897 -13701,-45235 -17834,-78896 -4252,-32716 -6378,-73699 -6378,-124250 0,-51495 2126,-93660 6378,-126258 4134,-33661 10512,-58936 17834,-77833 8386,-19015 19015,-31653 31535,-40039 11575,-8386 26338,-12638 43228,-12638l4117839 0z"/>\r
-  <path id="4" class="fil1" d="M149184477 58371507c142084,0 268342,26220 379954,78896 110431,52558 204091,126258 279916,223106 75707,96731 133698,211532 172556,345112 38976,133698 58936,280979 58936,440898 0,98975 -7323,192634 -23149,282042 -14764,89526 -33661,169485 -57873,241059 -23149,70511 -47361,130509 -72636,179879 -25275,49487 -48424,85274 -68385,107360 -19960,23149 -49487,40039 -86219,49487 -36850,10512 -87400,15826 -151651,15826 -38858,0 -71455,-2126 -97794,-6378 -27401,-4252 -48424,-9449 -65314,-14764 -16771,-6260 -28346,-15708 -35787,-26220 -7323,-11575 -10512,-24212 -10512,-38976 0,-22086 13701,-55747 42165,-99919 27283,-44291 57873,-98975 90471,-163225 32598,-64133 63188,-140903 90471,-229366 28464,-88345 42165,-189445 42165,-304128 0,-86337 -9449,-164170 -28464,-233618 -17834,-70511 -45235,-130509 -82085,-182005 -35787,-51613 -82085,-90589 -137832,-118935 -55747,-27401 -122124,-41102 -198894,-41102 -77833,0 -144210,20078 -196768,59999 -53739,40039 -101101,92597 -142084,157911 -41102,66259 -77833,139958 -109486,222043 -31535,82085 -65196,166178 -99919,253578 -35787,86337 -74762,171493 -118935,254641 -44172,83148 -97912,156848 -162044,223106 -64251,65314 -139958,117872 -228421,157911 -88345,39921 -193579,59999 -317711,59999 -108423,0 -212595,-21141 -312632,-63188 -99919,-42046 -187319,-105234 -261964,-189445 -74762,-85274 -135824,-190508 -181060,-316766 -45235,-126258 -67322,-273538 -67322,-443024 0,-73699 6260,-147281 18897,-222043 12638,-73699 29527,-139958 48424,-199957 19015,-59999 40039,-110431 62125,-152596 23149,-42046 42046,-74644 59999,-95786 16771,-22086 31535,-35669 43109,-43109 12638,-7323 26338,-12638 42046,-15826 14764,-3071 33779,-6260 55865,-9449 23149,-3071 50432,-4134 83148,-4134 34724,0 65196,1063 90471,4134 25275,3189 46298,8504 62125,15826 16771,7323 28346,15826 35669,26338 7441,10512 10630,22086 10630,33661 0,18897 -11575,45235 -34724,81022 -22204,34724 -46298,79959 -72636,135706 -26338,55865 -50550,121061 -72636,195823 -23149,74644 -34724,160981 -34724,257712 0,86337 9449,163225 29409,228421 19015,66259 46298,119998 82085,162044 35787,42046 77951,74762 127439,95786 48306,22086 102045,32598 158855,32598 79959,0 147281,-21023 202083,-62125 54684,-40984 102045,-93660 143029,-159918 41102,-65196 77951,-141021 111612,-225232 32598,-84093 66259,-169367 100982,-256767 35787,-87282 74762,-173619 117872,-258893 43109,-85156 95786,-160981 156848,-226177 62007,-66377 135706,-118935 222043,-158974 86219,-39921 189445,-59881 308262,-59881z"/>\r
-  <path class="fil1" d="M153333969 77675569c207516,98148 419756,171021 637784,219091 218146,48070 437236,71810 657862,71810 221807,0 441370,-24330 658925,-73463 217555,-49015 430858,-120352 639910,-214248 12638,-5315 23267,-7913 31653,-8504 8976,-472 16417,3189 21614,10039 5905,7441 10039,18425 12756,33306 2598,15236 3661,35314 3661,61180 0,18543 -591,34369 -1535,48070 -1063,13228 -3189,24803 -6378,34842 -2598,9449 -6378,17480 -10630,23740 -4134,6378 -8976,11102 -13701,13701 -105589,55983 -211650,105116 -319364,147399 -107715,42165 -217555,77597 -328931,106652 -110904,28936 -223815,50668 -337435,64841 -113974,14291 -229130,21732 -345821,21732 -116573,0 -231138,-7913 -344758,-23858 -113502,-16299 -225941,-38976 -337789,-68030 -111966,-29645 -221807,-65432 -329994,-107715 -108305,-42283 -215429,-89762 -321608,-142556 -4134,-591 -7913,-3661 -10984,-8504 -3189,-4134 -6378,-10984 -8976,-18897 -3189,-8504 -5905,-19606 -7441,-34369 -1535,-14291 -2126,-32716 -2126,-55393 0,-23858 1535,-42755 4724,-57637 3189,-14173 6850,-25275 12165,-33779 5315,-8386 12165,-12638 20078,-13701 8386,-1063 17362,472 26338,4252z"/>\r
-  <path id="1" class="fil1" d="M154124939 76429528c22677,0 41692,591 57046,1654 15236,1063 27401,3189 36377,6260 8976,2716 15354,6968 20078,11693 4724,4252 6850,10512 6850,19015 0,8386 -2126,18425 -6850,30118 -4724,12047 -9567,25275 -13701,40039 -4842,14764 -8976,31653 -13228,50196 -4252,18425 -6378,38503 -6378,60235 0,25866 5315,51141 15354,75944 10512,24330 27401,50668 51731,77597 23740,27519 55393,55983 94486,86101 39566,29527 87636,62834 144682,98738l916046 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l202792 0c-55983,-38031 -101337,-73936 -136769,-107124 -34842,-33897 -62834,-65550 -82912,-95077 -20078,-30118 -33779,-59645 -41692,-88699 -7913,-29527 -11575,-59172 -11575,-89172 0,-13228 472,-28582 2126,-45472 1535,-16889 4724,-34842 8386,-53267 4252,-18543 8976,-35432 14291,-50196 5315,-14764 10039,-25393 15354,-31653 5197,-6378 10039,-10630 14764,-12165 4724,-2126 10512,-4252 17362,-5787 7441,-1654 17952,-2716 31653,-3189 14291,-591 32834,-591 56574,-591z"/>\r
-  <path id="2" class="fil1" d="M154670245 75027821c40157,0 68739,10039 86101,30118 16889,20078 25393,43346 25393,69211l0 914393c77597,0 147281,-7913 209051,-23267 62243,-15236 115628,-41102 159918,-77597 44409,-35905 78660,-82912 102518,-140431 23740,-57991 35314,-128738 35314,-212240 0,-66022 -5315,-125076 -16417,-176335 -10512,-51731 -22677,-96612 -35905,-134053 -13110,-37558 -25275,-68621 -35787,-92951 -11102,-24330 -16417,-42283 -16417,-54920 0,-7323 1535,-13701 5315,-19488 3661,-5315 8976,-10039 16299,-12756 6850,-3071 16889,-5787 30118,-7323 12638,-1654 27992,-2126 46416,-2126 13228,0 24803,472 34842,1535 9567,1063 18543,2126 25866,3779 8031,1535 14882,4134 21141,7913 5787,3661 11693,7913 17480,13701 5787,5787 14764,22677 27401,50196 13228,27992 25393,63896 38031,108187 12165,44291 23267,95549 32716,153659 10039,58109 14764,119880 14764,185784 0,114565 -15826,214366 -47952,300467 -31771,85983 -79251,158383 -142084,216965 -63306,58582 -141966,102990 -237043,132517 -94486,30118 -204799,44881 -331057,44881 -119289,0 -227004,-15354 -322553,-46416 -95077,-30708 -176335,-75589 -242830,-133580 -66613,-58109 -117281,-128856 -153186,-211177 -35314,-82439 -53267,-174800 -53267,-276727 0,-109250 17362,-202201 52794,-278735 34842,-77125 82321,-139958 141494,-189564 59172,-49015 128856,-85510 209051,-108778 79723,-23149 165233,-34842 256058,-34842l46416 0zm-75471 256649c-134053,-3189 -239641,26338 -316175,89172 -76652,62834 -114565,155312 -114565,278263 0,63424 12047,118817 35905,166296 23740,47598 54802,87164 94486,119289 38976,32244 84920,57046 136651,74526 52322,17362 106652,27401 163698,29527l0 -757073z"/>\r
-  <path id="3" class="fil1" d="M154708275 73356946c122006,0 231256,13110 328459,39566 96612,25866 178934,64369 246492,115628 67676,50668 119880,114092 156257,188973 36495,74999 54920,161099 54920,257712 0,41102 -4134,79132 -12047,113974 -8504,35432 -21141,69211 -39094,102990 -17480,33306 -39566,66495 -66495,99211 -26456,33306 -58109,68148 -94014,105116l697428 0c8386,0 15354,2126 21614,6378 6378,4134 11693,10512 15826,19960 3779,9567 6850,22204 8976,39094 2126,16417 3189,37558 3189,63424 0,25275 -1063,45944 -3189,62243 -2126,16889 -5197,30118 -8976,39566 -4134,10039 -9449,16889 -15826,20669 -6260,3661 -13228,5197 -21614,5197l-1945595 0c-9449,0 -16889,-1535 -22677,-4724 -5315,-3189 -10512,-9449 -14291,-18425 -4134,-9567 -7323,-21141 -8976,-35905 -1535,-14291 -2008,-32244 -2008,-52794 0,-21732 472,-39684 2008,-53857 1654,-13701 4842,-25393 8504,-34842 4252,-9567 9449,-15826 14764,-19606 5787,-3661 13228,-5197 22677,-5197l186375 0c-43228,-42283 -80786,-82912 -112911,-122006 -31653,-39094 -58109,-78660 -79251,-118226 -21141,-39684 -37440,-80314 -48070,-122006 -10984,-41692 -16299,-85510 -16299,-131927 0,-100864 19488,-186375 58582,-257712 39566,-70747 92951,-128856 160981,-173737 68148,-44881 147399,-77597 237634,-98148 90235,-20551 185902,-30590 286648,-30590zm29645 266098c-71337,0 -140431,5197 -207044,16299 -66495,10630 -125667,29645 -177398,55511 -51731,26338 -92833,61771 -124014,106061 -31181,44409 -46535,99801 -46535,165824 0,33188 4842,65432 14882,97675 10039,31653 25275,64369 46416,97675 21141,32716 49133,67558 83975,103463 34842,35905 77597,74408 128265,114565l553809 0c86101,-70274 151533,-136769 197477,-199603 45472,-63306 68148,-129328 68148,-198540 0,-63778 -15354,-118699 -46535,-164643 -31062,-45944 -72282,-82912 -124014,-111376 -51731,-28582 -109250,-49133 -173737,-62834 -63896,-13228 -128856,-20078 -193697,-20078z"/>\r
-  <path id="4" class="fil1" d="M154714653 71680047c113502,0 218028,14882 313577,44881 95077,29645 177398,74526 246610,133580 69093,59172 122951,133580 161572,222279 38503,89290 57991,192752 57991,309916 0,114565 -16889,214366 -51141,299404 -33779,85038 -83502,155785 -148344,212240 -64959,56456 -143619,98738 -236571,126730 -92951,27992 -197949,41692 -315703,41692 -113502,0 -218028,-14764 -313105,-43818 -95549,-29527 -177871,-73936 -247082,-133108 -69211,-59054 -122478,-132990 -160981,-221689 -38031,-88699 -57046,-192162 -57046,-310506 0,-114565 16889,-214248 51141,-299286 33897,-85038 83502,-155785 148462,-212240 64841,-56456 144092,-99329 236452,-127793 92951,-27992 197477,-42283 314168,-42283zm16417 266098c-75589,0 -146808,6968 -213894,21141 -67085,13701 -125667,36968 -176335,69211 -50668,31653 -90825,75471 -119880,130391 -29527,54330 -44291,122951 -44291,204799 0,75589 13228,140431 40157,194878 26929,54330 64841,98738 113974,134053 49133,35432 107242,61298 174209,78188 67085,17362 140431,25866 219681,25866 76534,0 148344,-6850 215429,-21141 66967,-13701 125667,-36968 175745,-69684 49605,-32716 89762,-76534 118817,-130982 29527,-54802 44409,-123541 44409,-205272 0,-74526 -13228,-138895 -40157,-193815 -26929,-54920 -64487,-99801 -113029,-135116 -48542,-35432 -106652,-61298 -173619,-77597 -67085,-16417 -141021,-24921 -221216,-24921z"/>\r
-  <path id="5" class="fil1" d="M154124939 70487864c22677,0 41692,591 57046,1654 15236,1063 27401,3189 36377,6260 8976,2716 15354,6968 20078,11693 4724,4252 6850,10512 6850,19015 0,8386 -2126,18425 -6850,30118 -4724,12047 -9567,25275 -13701,40039 -4842,14764 -8976,31653 -13228,50196 -4252,18425 -6378,38503 -6378,60235 0,25866 5315,51141 15354,75944 10512,24330 27401,50668 51731,77597 23740,27519 55393,55983 94486,86101 39566,29527 87636,62834 144682,98738l916046 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l202792 0c-55983,-38031 -101337,-73936 -136769,-107124 -34842,-33897 -62834,-65550 -82912,-95077 -20078,-30118 -33779,-59645 -41692,-88699 -7913,-29527 -11575,-59172 -11575,-89172 0,-13228 472,-28582 2126,-45472 1535,-16889 4724,-34842 8386,-53267 4252,-18543 8976,-35432 14291,-50196 5315,-14764 10039,-25393 15354,-31653 5197,-6378 10039,-10630 14764,-12165 4724,-2126 10512,-4252 17362,-5787 7441,-1654 17952,-2716 31653,-3189 14291,-591 32834,-591 56574,-591z"/>\r
-  <path id="6" class="fil1" d="M155323973 69475205c29999,0 53739,2126 71219,6378 17480,3661 30590,10039 38503,18425 8504,7913 16417,20669 23267,36968 7441,16417 13228,35432 17952,56574 4724,21023 8504,43228 11575,66967 3189,23740 4842,47007 4842,70747 0,72400 -9567,134171 -28582,185312 -19015,51259 -48070,93542 -86573,126730 -38503,32716 -87636,56456 -146808,71810 -59054,14764 -128738,22204 -209051,22204l-811993 0 0 195823c0,15354 -8386,27992 -24803,37558 -16417,8976 -43346,13701 -80786,13701 -19488,0 -35905,-1063 -49133,-3661 -13701,-2716 -24803,-6378 -33779,-10039 -8386,-4252 -14764,-10039 -18425,-16417 -3779,-6850 -5315,-14291 -5315,-22677l0 -194288 -330466 0c-7441,0 -14291,-1654 -20078,-5315 -6378,-3661 -11575,-10512 -16417,-20551 -4724,-9567 -7913,-22677 -10039,-39566 -2126,-16417 -3071,-36968 -3071,-62361 0,-25866 945,-47007 3071,-63306 2126,-16889 5315,-29645 10039,-39094 4842,-9567 10039,-15826 16417,-20078 5787,-4252 12638,-6378 20078,-6378l330466 0 0 -354797c0,-8386 1535,-15236 5315,-21614 3661,-5787 10039,-11575 18425,-15826 8976,-4724 20078,-7913 33779,-10039 13228,-2126 29645,-3189 49133,-3189 37440,0 64369,4724 80786,13701 16417,9567 24803,21732 24803,36968l0 354797 774553 0c95549,0 167832,-14173 216492,-42165 49015,-27992 73345,-78660 73345,-151533 0,-23267 -2126,-44409 -6850,-62834 -4724,-18543 -9567,-34842 -14764,-49133 -5315,-14291 -10039,-26338 -14882,-36968 -4724,-10039 -6850,-19488 -6850,-27401 0,-5315 1063,-10039 3779,-14764 2598,-4252 7323,-7913 14764,-10630 7323,-2598 16889,-4724 29527,-6850 12165,-2126 27992,-3189 46535,-3189z"/>\r
-  <path class="fil1" d="M154684063 68506128c40629,0 68621,4724 83857,13701 15354,9567 23267,22677 23267,40629l0 646760c0,19015 -7913,32716 -23740,42283 -16417,8976 -43818,13701 -83384,13701 -39094,0 -66613,-4724 -81849,-13701 -15354,-9567 -23267,-23267 -23267,-42283l0 -646760c0,-8386 1654,-15826 4724,-22677 3189,-6850 8976,-12165 17952,-16889 8504,-4724 19606,-8386 33306,-11102 13228,-2598 29527,-3661 49133,-3661z"/>\r
-  <path class="fil1" d="M154099546 66995998c36495,0 62361,4724 78660,14764 15826,9567 23740,22204 23740,38031l0 200075c36968,-36377 77715,-61771 122006,-75944 44409,-14291 90825,-21732 138895,-21732 80195,0 151533,12756 213303,38621 61771,25866 113974,62834 157320,110785 42755,48070 75471,105116 98148,171139 22677,66022 33779,139368 33779,219563 0,56574 -7323,110904 -22086,161572 -15354,51259 -33897,90825 -56574,118817 18543,17480 39566,31653 63424,43346 24212,10984 51731,16889 82321,16889 36377,0 66495,-16889 90235,-50196 24330,-33306 36968,-78188 39094,-133580l15354 -362710c2126,-68621 11575,-132045 28464,-189564 17480,-57519 41220,-107715 72873,-149879 31181,-42283 70274,-74999 115628,-98738 45944,-23740 99211,-35432 160036,-35432 63778,0 124486,13228 182123,40157 57519,26929 108187,67558 152005,123069 43818,54802 78660,125549 103463,211177 25393,85510 38031,186375 38031,302947 0,112557 -9449,208106 -28464,286766 -19015,78660 -45472,143619 -78188,194288 -33188,50078 -72282,87046 -118226,109841 -45944,22677 -96140,33779 -149407,33779 -34369,0 -67085,-4252 -99329,-12165 -31653,-8504 -62243,-21141 -91298,-38031 -28464,-16889 -56456,-38031 -82321,-63306 -26456,-25393 -52322,-54448 -78188,-87636 -25866,50078 -58582,87046 -97675,111376 -39094,23740 -81258,35905 -126730,35905 -62834,0 -119289,-12756 -168895,-38031 -49133,-25393 -93424,-56456 -133108,-94014 -37913,31653 -80786,57046 -128738,75471 -48070,18543 -106179,27992 -174328,27992 -79132,0 -150470,-13110 -213185,-40039 -62834,-26929 -116218,-63896 -159446,-111494 -43346,-47479 -76652,-104526 -99801,-171021 -23267,-66495 -34842,-139368 -34842,-217555 0,-42755 2598,-81849 7323,-118699 5315,-36495 12165,-70747 21141,-102990l0 -420819c0,-17952 8504,-30590 25393,-39566 17362,-8976 43228,-13228 78069,-13228zm365426 399205c-94605,0 -168422,25866 -221216,78069 -53385,52322 -79723,126258 -79723,221807 0,49605 8386,92833 24803,129328 16299,36377 38976,67085 67558,91298 29055,24330 62243,42283 99801,53857 37440,12165 77006,17952 118226,17952 91298,0 163107,-25866 215902,-78069 52322,-52322 78660,-125195 78660,-219209 0,-50078 -7913,-93896 -23740,-131454 -16299,-36968 -38031,-67558 -66495,-91770 -28464,-24330 -61298,-42283 -98148,-53857 -36968,-12165 -75589,-17952 -115628,-17952zm1101831 -126730c-59645,0 -105589,24212 -138305,73345 -32244,48542 -49724,115155 -51731,198540l-12165 359521c25866,32716 50078,60235 73345,81258 23267,21141 44881,37558 66022,50196 21141,12165 42165,20551 62834,25393 20551,4724 41692,6850 62834,6850 66967,0 117754,-33779 152005,-101927 34369,-68148 51731,-162635 51731,-284050 0,-77125 -7323,-141966 -22204,-193697 -15236,-52322 -34842,-94014 -59645,-125667 -24803,-32244 -52794,-54920 -84447,-69211 -32244,-13701 -65432,-20551 -100274,-20551z"/>\r
-  <path id="1" class="fil1" d="M154670245 65509253c40157,0 68739,10039 86101,30118 16889,20078 25393,43346 25393,69211l0 914393c77597,0 147281,-7913 209051,-23267 62243,-15236 115628,-41102 159918,-77597 44409,-35905 78660,-82912 102518,-140431 23740,-57991 35314,-128738 35314,-212240 0,-66022 -5315,-125076 -16417,-176335 -10512,-51731 -22677,-96612 -35905,-134053 -13110,-37558 -25275,-68621 -35787,-92951 -11102,-24330 -16417,-42283 -16417,-54920 0,-7323 1535,-13701 5315,-19488 3661,-5315 8976,-10039 16299,-12756 6850,-3071 16889,-5787 30118,-7323 12638,-1654 27992,-2126 46416,-2126 13228,0 24803,472 34842,1535 9567,1063 18543,2126 25866,3779 8031,1535 14882,4134 21141,7913 5787,3661 11693,7913 17480,13701 5787,5787 14764,22677 27401,50196 13228,27992 25393,63896 38031,108187 12165,44291 23267,95549 32716,153659 10039,58109 14764,119880 14764,185784 0,114565 -15826,214366 -47952,300467 -31771,85983 -79251,158383 -142084,216965 -63306,58582 -141966,102990 -237043,132517 -94486,30118 -204799,44881 -331057,44881 -119289,0 -227004,-15354 -322553,-46416 -95077,-30708 -176335,-75589 -242830,-133580 -66613,-58109 -117281,-128856 -153186,-211177 -35314,-82439 -53267,-174800 -53267,-276727 0,-109250 17362,-202201 52794,-278735 34842,-77125 82321,-139958 141494,-189564 59172,-49015 128856,-85510 209051,-108778 79723,-23149 165233,-34842 256058,-34842l46416 0zm-75471 256649c-134053,-3189 -239641,26338 -316175,89172 -76652,62834 -114565,155312 -114565,278263 0,63424 12047,118817 35905,166296 23740,47598 54802,87164 94486,119289 38976,32244 84920,57046 136651,74526 52322,17362 106652,27401 163698,29527l0 -757073z"/>\r
-  <path id="2" class="fil1" d="M155427436 63920699c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,20078 3661,9449 6850,22086 8976,38976 2126,16417 3071,36968 3071,61771 0,26456 -945,47598 -3071,63896 -2126,16889 -5315,29645 -8976,39094 -4252,9567 -9567,15826 -14882,20078 -5787,4252 -12638,6378 -21023,6378l-815773 0c-79132,0 -143619,6260 -191571,18425 -48661,12165 -90353,30118 -125667,53857 -34842,23740 -61771,53857 -80314,91298 -18425,37558 -27992,80786 -27992,129919 0,63896 22795,127202 68148,190626 45354,63896 111966,130391 199603,200075l973565 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l184249 0c-88109,-78188 -152478,-155785 -193225,-233854 -40629,-77597 -61180,-155785 -61180,-234917 0,-92479 15826,-170548 47007,-233972 31653,-63306 73936,-114565 126139,-153659 52794,-38976 114565,-66967 185312,-83857 70747,-16889 155785,-25393 254523,-25393l850024 0z"/>\r
-  <path id="3" class="fil1" d="M155245785 63149335c32244,0 61771,1535 88109,4724 26929,3189 52322,8504 76062,15354 23740,7323 47007,16889 70274,28464 23149,12165 47952,26929 73345,44409l318892 211650c7441,5315 13228,11102 18425,17952 5315,6850 10039,14764 13819,24803 4134,9567 7323,21141 8976,33779 1535,13228 2126,29055 2126,49133 0,17480 -591,32244 -2126,43818 -1654,12165 -4252,20551 -7913,25393 -3779,5197 -8504,7913 -14882,8386 -6260,591 -13110,-1063 -21614,-5197l-425544 -205390 -197949 0c-27519,0 -49605,-3189 -66495,-8976 -16417,-5315 -28582,-14291 -36968,-26929 -8504,-12165 -13701,-27992 -16889,-46535 -3189,-18425 -4724,-41102 -4724,-68030 0,-25393 1535,-47598 4724,-66613 3189,-18425 8386,-33779 16889,-45354 8386,-11575 20551,-20551 36968,-26456 16889,-5787 38976,-8386 66495,-8386z"/>\r
-  <path id="4" class="fil1" d="M155427436 60756582c8386,0 15236,1535 21614,5197 6378,3779 11102,10039 14764,18543 3661,8976 6378,20551 8504,34842 2126,14764 3071,32244 3071,52794 0,21614 -945,39566 -3071,53857 -2126,14764 -4842,26338 -8504,35905 -3661,8976 -8386,15826 -14764,20078 -6378,3661 -13701,5787 -21614,5787l-185312 0c79723,73345 141494,149407 185784,228067 44409,79251 66495,165233 66495,259247 0,101927 -19960,188973 -59645,260783 -39566,72400 -93424,130982 -160981,175863 -67085,44291 -146808,77006 -238106,97675 -91416,20551 -187438,31062 -288302,31062 -119880,0 -228067,-12638 -324207,-38503 -96612,-25866 -178934,-63896 -247082,-114565 -67558,-50196 -120352,-113029 -156729,-187910 -36495,-74526 -54920,-160509 -54920,-258775 0,-81258 17952,-155666 53267,-223342 35905,-67558 88227,-134053 157320,-200075l-807151 0c-7441,0 -14291,-1535 -21141,-5197 -6850,-3779 -11693,-10630 -15354,-21141 -3661,-10039 -6850,-23267 -9449,-39094 -2716,-16417 -3779,-36495 -3779,-61298 0,-25866 1063,-46889 3779,-63306 2598,-16417 5787,-29527 9449,-38503 3661,-9567 8976,-16417 15354,-21141 6850,-4724 13701,-6850 21141,-6850l2059569 0zm-980415 256531c-86101,68621 -151533,135234 -196414,199603 -44881,64369 -67676,131454 -67676,201138 0,64959 15354,119880 46535,165233 31181,45472 71810,81849 122478,110431 50196,27874 107715,48542 171611,61180 63896,13228 128738,19488 194760,19488 70274,0 138895,-5197 205981,-16299 66967,-10630 126612,-29527 178934,-55983 52322,-26929 94014,-62243 125667,-106652 31181,-43818 47007,-99801 47007,-166296 0,-33779 -4724,-66495 -13701,-98148 -9567,-31181 -24921,-63424 -46535,-96140 -21614,-32716 -49605,-67558 -84447,-103463 -34369,-35905 -76534,-73936 -127202,-114092l-556998 0z"/>\r
-  <path id="5" class="fil1" d="M154714653 58990984c113502,0 218028,14882 313577,44881 95077,29645 177398,74526 246610,133580 69093,59172 122951,133580 161572,222279 38503,89290 57991,192752 57991,309916 0,114565 -16889,214366 -51141,299404 -33779,85038 -83502,155785 -148344,212240 -64959,56456 -143619,98738 -236571,126730 -92951,27992 -197949,41692 -315703,41692 -113502,0 -218028,-14764 -313105,-43818 -95549,-29527 -177871,-73936 -247082,-133108 -69211,-59054 -122478,-132990 -160981,-221689 -38031,-88699 -57046,-192162 -57046,-310506 0,-114565 16889,-214248 51141,-299286 33897,-85038 83502,-155785 148462,-212240 64841,-56456 144092,-99329 236452,-127793 92951,-27992 197477,-42283 314168,-42283zm16417 266098c-75589,0 -146808,6968 -213894,21141 -67085,13701 -125667,36968 -176335,69211 -50668,31653 -90825,75471 -119880,130391 -29527,54330 -44291,122951 -44291,204799 0,75589 13228,140431 40157,194878 26929,54330 64841,98738 113974,134053 49133,35432 107242,61298 174209,78188 67085,17362 140431,25866 219681,25866 76534,0 148344,-6850 215429,-21141 66967,-13701 125667,-36968 175745,-69684 49605,-32716 89762,-76534 118817,-130982 29527,-54802 44409,-123541 44409,-205272 0,-74526 -13228,-138895 -40157,-193815 -26929,-54920 -64487,-99801 -113029,-135116 -48542,-35432 -106652,-61298 -173619,-77597 -67085,-16417 -141021,-24921 -221216,-24921z"/>\r
-  <path id="6" class="fil1" d="M155213069 57611954c17362,0 32716,472 45354,1535 13228,1063 23740,2716 32716,5315 8976,2598 16417,5787 23267,9567 6850,3661 16889,11575 29527,24803 13228,12638 29055,34842 48661,65432 19015,31181 36377,66022 51141,104526 15354,39094 27519,80786 36495,126139 9449,45472 14173,92479 14173,141021 0,100274 -16299,188973 -49605,266098 -32716,77597 -80786,142556 -144092,194288 -63424,52204 -141494,91888 -233382,119289 -92361,27519 -198540,41220 -319364,41220 -136769,0 -254523,-16889 -353261,-50196 -98148,-33779 -178934,-79723 -241767,-137832 -62834,-58582 -109368,-127202 -139958,-205862 -30118,-79132 -45354,-164761 -45354,-256531 0,-44409 4134,-87164 12638,-128856 7913,-42283 19015,-80314 32244,-115628 13701,-34842 28936,-66495 46889,-93424 17480,-27519 32834,-47598 44881,-59645 12756,-12756 22795,-21141 29645,-25866 7323,-4252 15826,-8504 25866,-11693 9449,-2598 20551,-4724 33188,-5787 12165,-1063 27992,-1535 46535,-1535 40157,0 68030,4724 84447,13701 15826,9449 23740,20551 23740,34251 0,15354 -8386,33306 -25866,53385 -16889,20078 -35905,45354 -56456,76534 -20551,31181 -39566,68621 -56456,112439 -17480,43818 -25984,95549 -25984,155194 0,123069 47007,217555 141494,282987 94014,65550 230783,98266 409717,98266 89290,0 167950,-8504 235508,-25393 67085,-17362 123541,-42165 168895,-75471 44881,-32716 78778,-73345 100864,-121415 22204,-48070 33306,-102990 33306,-164761 0,-59054 -9567,-110785 -27992,-155194 -18425,-44291 -39094,-82321 -61298,-115037 -22677,-32834 -42755,-60235 -60708,-82439 -18425,-22204 -27401,-39094 -27401,-51731 0,-6850 2126,-13228 6378,-18425 4134,-5315 10984,-9567 20551,-13228 10039,-3661 22204,-6378 37440,-7913 14764,-1654 32716,-2126 53385,-2126z"/>\r
-  <path class="fil1" d="M154684063 56641932c40629,0 68621,4724 83857,13701 15354,9567 23267,22677 23267,40629l0 646760c0,19015 -7913,32716 -23740,42283 -16417,8976 -43818,13701 -83384,13701 -39094,0 -66613,-4724 -81849,-13701 -15354,-9567 -23267,-23267 -23267,-42283l0 -646760c0,-8386 1654,-15826 4724,-22677 3189,-6850 8976,-12165 17952,-16889 8504,-4724 19606,-8386 33306,-11102 13228,-2598 29527,-3661 49133,-3661z"/>\r
-  <path class="fil1" d="M154099546 55131802c36495,0 62361,4724 78660,14764 15826,9567 23740,22204 23740,38031l0 200075c36968,-36377 77715,-61771 122006,-75944 44409,-14291 90825,-21732 138895,-21732 80195,0 151533,12756 213303,38621 61771,25866 113974,62834 157320,110785 42755,48070 75471,105116 98148,171139 22677,66022 33779,139368 33779,219563 0,56574 -7323,110904 -22086,161572 -15354,51259 -33897,90825 -56574,118817 18543,17480 39566,31653 63424,43346 24212,10984 51731,16889 82321,16889 36377,0 66495,-16889 90235,-50196 24330,-33306 36968,-78188 39094,-133580l15354 -362710c2126,-68621 11575,-132045 28464,-189564 17480,-57519 41220,-107715 72873,-149879 31181,-42283 70274,-74999 115628,-98738 45944,-23740 99211,-35432 160036,-35432 63778,0 124486,13228 182123,40157 57519,26929 108187,67558 152005,123069 43818,54802 78660,125549 103463,211177 25393,85510 38031,186375 38031,302947 0,112557 -9449,208106 -28464,286766 -19015,78660 -45472,143619 -78188,194288 -33188,50078 -72282,87046 -118226,109841 -45944,22677 -96140,33779 -149407,33779 -34369,0 -67085,-4252 -99329,-12165 -31653,-8504 -62243,-21141 -91298,-38031 -28464,-16889 -56456,-38031 -82321,-63306 -26456,-25393 -52322,-54448 -78188,-87636 -25866,50078 -58582,87046 -97675,111376 -39094,23740 -81258,35905 -126730,35905 -62834,0 -119289,-12756 -168895,-38031 -49133,-25393 -93424,-56456 -133108,-94014 -37913,31653 -80786,57046 -128738,75471 -48070,18543 -106179,27992 -174328,27992 -79132,0 -150470,-13110 -213185,-40039 -62834,-26929 -116218,-63896 -159446,-111494 -43346,-47479 -76652,-104526 -99801,-171021 -23267,-66495 -34842,-139368 -34842,-217555 0,-42755 2598,-81849 7323,-118699 5315,-36495 12165,-70747 21141,-102990l0 -420819c0,-17952 8504,-30590 25393,-39566 17362,-8976 43228,-13228 78069,-13228zm365426 399205c-94605,0 -168422,25866 -221216,78069 -53385,52322 -79723,126258 -79723,221807 0,49605 8386,92833 24803,129328 16299,36377 38976,67085 67558,91298 29055,24330 62243,42283 99801,53857 37440,12165 77006,17952 118226,17952 91298,0 163107,-25866 215902,-78069 52322,-52322 78660,-125195 78660,-219209 0,-50078 -7913,-93896 -23740,-131454 -16299,-36968 -38031,-67558 -66495,-91770 -28464,-24330 -61298,-42283 -98148,-53857 -36968,-12165 -75589,-17952 -115628,-17952zm1101831 -126730c-59645,0 -105589,24212 -138305,73345 -32244,48542 -49724,115155 -51731,198540l-12165 359521c25866,32716 50078,60235 73345,81258 23267,21141 44881,37558 66022,50196 21141,12165 42165,20551 62834,25393 20551,4724 41692,6850 62834,6850 66967,0 117754,-33779 152005,-101927 34369,-68148 51731,-162635 51731,-284050 0,-77125 -7323,-141966 -22204,-193697 -15236,-52322 -34842,-94014 -59645,-125667 -24803,-32244 -52794,-54920 -84447,-69211 -32244,-13701 -65432,-20551 -100274,-20551z"/>\r
-  <path id="1" class="fil1" d="M154670245 53645057c40157,0 68739,10039 86101,30118 16889,20078 25393,43346 25393,69211l0 914393c77597,0 147281,-7913 209051,-23267 62243,-15236 115628,-41102 159918,-77597 44409,-35905 78660,-82912 102518,-140431 23740,-57991 35314,-128738 35314,-212240 0,-66022 -5315,-125076 -16417,-176335 -10512,-51731 -22677,-96612 -35905,-134053 -13110,-37558 -25275,-68621 -35787,-92951 -11102,-24330 -16417,-42283 -16417,-54920 0,-7323 1535,-13701 5315,-19488 3661,-5315 8976,-10039 16299,-12756 6850,-3071 16889,-5787 30118,-7323 12638,-1654 27992,-2126 46416,-2126 13228,0 24803,472 34842,1535 9567,1063 18543,2126 25866,3779 8031,1535 14882,4134 21141,7913 5787,3661 11693,7913 17480,13701 5787,5787 14764,22677 27401,50196 13228,27992 25393,63896 38031,108187 12165,44291 23267,95549 32716,153659 10039,58109 14764,119880 14764,185784 0,114565 -15826,214366 -47952,300467 -31771,85983 -79251,158383 -142084,216965 -63306,58582 -141966,102990 -237043,132517 -94486,30118 -204799,44881 -331057,44881 -119289,0 -227004,-15354 -322553,-46416 -95077,-30708 -176335,-75589 -242830,-133580 -66613,-58109 -117281,-128856 -153186,-211177 -35314,-82439 -53267,-174800 -53267,-276727 0,-109250 17362,-202201 52794,-278735 34842,-77125 82321,-139958 141494,-189564 59172,-49015 128856,-85510 209051,-108778 79723,-23149 165233,-34842 256058,-34842l46416 0zm-75471 256649c-134053,-3189 -239641,26338 -316175,89172 -76652,62834 -114565,155312 -114565,278263 0,63424 12047,118817 35905,166296 23740,47598 54802,87164 94486,119289 38976,32244 84920,57046 136651,74526 52322,17362 106652,27401 163698,29527l0 -757073z"/>\r
-  <path id="2" class="fil1" d="M155427436 52056503c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,20078 3661,9449 6850,22086 8976,38976 2126,16417 3071,36968 3071,61771 0,26456 -945,47598 -3071,63896 -2126,16889 -5315,29645 -8976,39094 -4252,9567 -9567,15826 -14882,20078 -5787,4252 -12638,6378 -21023,6378l-815773 0c-79132,0 -143619,6260 -191571,18425 -48661,12165 -90353,30118 -125667,53857 -34842,23740 -61771,53857 -80314,91298 -18425,37558 -27992,80786 -27992,129919 0,63896 22795,127202 68148,190626 45354,63896 111966,130391 199603,200075l973565 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l184249 0c-88109,-78188 -152478,-155785 -193225,-233854 -40629,-77597 -61180,-155785 -61180,-234917 0,-92479 15826,-170548 47007,-233972 31653,-63306 73936,-114565 126139,-153659 52794,-38976 114565,-66967 185312,-83857 70747,-16889 155785,-25393 254523,-25393l850024 0z"/>\r
-  <path id="3" class="fil1" d="M154634340 51105142c116691,0 231846,7323 345821,21614 113620,14291 226531,35905 337435,64959 111376,29055 221216,64369 328931,106061 107715,41692 213776,90353 319364,146218 4724,2716 9567,7441 13701,13819 4252,6260 8031,14173 10630,23740 3189,10039 5315,21614 6378,34842 945,13701 1535,29527 1535,48070 0,26929 -1063,47479 -3661,62834 -2716,14764 -6850,25866 -12756,32125 -5197,6850 -12638,10039 -21614,9567 -8386,-591 -19015,-3189 -31653,-8504 -207988,-94959 -421292,-166769 -639437,-214839 -218028,-48542 -437591,-72873 -659398,-72873 -220626,0 -439716,24330 -657862,72873 -218028,48070 -430268,120943 -637784,218028 -8976,3661 -17952,5315 -26338,4252 -7913,-1063 -14764,-5315 -20078,-13701 -5315,-8504 -8976,-19606 -12165,-33897 -3189,-14764 -4724,-33779 -4724,-57519 0,-21614 591,-39566 2126,-53857 1535,-14764 4252,-26338 7441,-34842 2598,-8976 5787,-15236 8976,-19488 3071,-4252 6850,-7441 10984,-8976 211177,-106652 428260,-189564 651602,-250271 223224,-60235 450819,-90235 682547,-90235z"/>\r
-  <polygon class="fil0" points="81611876,94362709 101404905,94362709 101404905,83938133 81611876,83938133 "/>\r
-  <polygon class="fil5 str0" points="81611876,94362709 101404905,94362709 101404905,83938133 81611876,83938133 "/>\r
-  <path class="fil1" d="M88769464 85784872c0,22204 -1181,41456 -3543,57637 -2480,16299 -6024,29527 -11456,39684 -5433,9685 -11456,17480 -19252,21614 -7795,4842 -16181,7205 -25157,7205l-640146 0 0 1977484c0,9685 -2480,17480 -7205,24685 -4842,7205 -12638,12638 -24685,16771 -11456,4252 -27047,7913 -46298,10866 -19842,2953 -43818,4252 -73345,4252 -28228,0 -52204,-1299 -72046,-4252 -19842,-2953 -36141,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24685,-16771 -4842,-7205 -7205,-15000 -7205,-24685l0 -1977484 -640146 0c-8976,0 -17362,-2362 -25275,-7205 -7795,-4134 -13819,-11929 -18543,-21614 -4252,-10157 -8504,-23385 -11456,-39684 -3071,-16181 -4252,-35432 -4252,-57637 0,-22322 1181,-42046 4252,-58936 2953,-16771 7205,-30708 11456,-40865 4724,-10866 10748,-18661 18543,-22795 7913,-4842 16299,-7205 25275,-7205l1583239 0c8976,0 17362,2362 25157,7205 7795,4134 13819,11929 19252,22795 5433,10157 8976,24094 11456,40865 2362,16889 3543,36614 3543,58936z"/>\r
-  <path id="1" class="fil1" d="M89769603 86407538c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>\r
-  <path id="2" class="fil1" d="M91219971 87892156c0,13819 -4842,24566 -13819,31771 -9685,7323 -22322,12047 -39094,15708 -16181,3543 -40275,5433 -72164,5433 -29999,0 -54684,-1890 -72636,-5433 -18071,-3661 -31299,-8386 -39684,-15708 -8504,-7205 -12638,-17362 -12638,-31771l0 -158737c-69093,73936 -146100,131691 -231374,172556 -85392,40275 -175509,60708 -270586,60708 -83502,0 -159210,-10866 -226531,-32480 -67322,-21614 -125076,-53503 -172556,-94368 -47479,-40865 -84684,-92006 -111140,-151415 -26456,-60117 -39684,-128029 -39684,-204445 0,-89526 18071,-167005 54684,-232555 36023,-66141 88345,-120825 156848,-164052 67912,-43346 151533,-76416 250035,-98030 98620,-21614 209760,-32480 333065,-32480l218736 0 0 -123777c0,-60708 -6614,-114801 -19252,-162281 -13228,-46889 -33661,-85983 -62479,-117163 -28818,-31299 -66141,-54802 -111848,-70392 -45590,-16181 -102164,-23976 -168895,-23976 -71455,0 -135824,8386 -192280,25748 -57164,17480 -107006,36141 -149643,57164 -42755,21023 -78778,39684 -107596,57046 -28228,17480 -49960,25866 -63778,25866 -9567,0 -17952,-2362 -24566,-7205 -7205,-4252 -13228,-11456 -18661,-21023 -5433,-8976 -8976,-21023 -11456,-35432 -2362,-15118 -3543,-30708 -3543,-48661 0,-28936 1772,-52322 6024,-69211 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43346,-33070 81731,-54094 38503,-20433 83621,-39684 134053,-57046 49842,-16889 105234,-31299 165351,-42755 59408,-11338 120116,-16771 180824,-16771 113620,0 210351,12638 290310,38503 79959,25748 144328,64251 193579,114092 49251,49960 84802,111848 107006,185784 22204,73936 33661,160509 33661,259011l0 1069941zm-288538 -726129l-248263 0c-79251,0 -148462,6614 -207280,20433 -58345,13228 -107006,33661 -146100,60117 -38503,26456 -66731,57755 -85392,94959 -17952,37322 -27047,79959 -27047,128029 0,82321 25866,147871 78188,196532 52322,48779 124958,73345 219327,73345 75825,0 146690,-19252 211650,-58227 64841,-38503 133344,-98030 204918,-177989l0 -337199z"/>\r
-  <path id="3" class="fil1" d="M94141729 85772234c0,33070 -2480,60708 -7795,82912 -5433,22204 -15118,40275 -28346,54094 -13819,13228 -31771,22913 -54684,28818 -23385,6024 -52204,9094 -87754,9094 -34251,0 -62479,-3071 -85865,-9094 -22913,-5905 -40865,-15590 -54684,-28818 -13228,-13819 -22913,-31889 -28936,-54094 -6024,-22204 -8976,-49842 -8976,-82912 0,-33070 2953,-60117 8976,-82321 6024,-21732 15708,-39684 28936,-54684 13819,-14527 31771,-24685 54684,-30118 23385,-5433 51613,-7795 85865,-7795 35551,0 64369,2362 87754,7795 22913,5433 40865,15590 54684,30118 13228,15000 22913,32952 28346,54684 5315,22204 7795,49251 7795,82321zm-32480 2118151c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42755,3661 -72164,3661 -27047,0 -49842,-1299 -69684,-3661 -19252,-2362 -34251,-6024 -45708,-10157 -10866,-4842 -18661,-10866 -22795,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1387888 -714082 0 0 1387888c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42046,3661 -70392,3661 -28228,0 -51613,-1299 -70274,-3661 -18661,-2362 -33661,-6024 -45117,-10157 -10748,-4842 -18661,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1387888 -710420 0 0 1387888c0,9567 -2480,17362 -7323,23976 -4724,6024 -12519,12047 -23385,16889 -11456,4134 -26456,7795 -45117,10157 -18543,2362 -42046,3661 -70274,3661 -28228,0 -51731,-1299 -70392,-3661 -18543,-2362 -33661,-6024 -44999,-10157 -10866,-4842 -18661,-10866 -23504,-16889 -4724,-6614 -7205,-14409 -7205,-23976l0 -1387888 -224760 0c-18661,0 -33070,-9567 -42046,-28228 -9685,-18661 -14409,-49251 -14409,-92006 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38503 4134,-9567 10157,-16771 17362,-21023 7205,-4252 15708,-6024 24685,-6024l224760 0 0 -149643c0,-109368 10866,-203146 31889,-281334 21023,-78069 52322,-142438 94368,-192871 42046,-50550 94368,-87754 157438,-111848 62597,-23976 135234,-36023 218264,-36023 51613,0 96731,4252 135234,13228 38385,8976 66613,16771 85274,24685 18071,7795 30708,15000 37322,22204 7205,6614 13228,16181 17952,27047 4252,11456 7913,24685 9685,40865 1772,15590 2362,34842 2362,57046 0,37913 -2953,64959 -8976,81731 -5433,17480 -16299,25866 -31299,25866 -9567,0 -20433,-2362 -32480,-7795 -11929,-5433 -27637,-11456 -46180,-18071 -18661,-5905 -40275,-11929 -64369,-17362 -23385,-5433 -50432,-7795 -79369,-7795 -86455,0 -147163,29999 -182713,89526 -34842,60117 -52204,155666 -52204,287357l0 153186 710420 0 0 -171257c0,-108778 10748,-202555 32480,-280743 21614,-78069 53385,-142438 94250,-193461 40984,-50550 92597,-87754 153895,-111848 61889,-23976 132872,-36023 212831,-36023 25866,0 51613,1181 78069,3543 26456,2480 49960,6024 70392,10275 20433,4842 39094,10157 54684,15000 15590,5433 26456,10866 32480,16889 6024,5905 10748,11929 14409,18543 3543,6614 6614,14409 9567,24094 3071,8976 4842,21023 6024,34842 1181,14409 1772,31299 1772,51731 0,37204 -2953,64251 -8976,80550 -5433,16771 -16181,24566 -31299,24566 -8386,0 -17952,-1772 -28228,-6024 -10748,-4134 -23385,-8386 -37795,-13228 -15118,-4724 -33661,-8976 -55983,-13228 -22204,-4134 -49251,-5905 -81140,-5905 -81140,0 -138777,29999 -173619,90116 -34251,59526 -51731,155666 -51731,287239l0 174328 914747 0c30118,0 52912,7795 68621,24094 15000,15590 22795,37204 22795,65432l0 1540012z"/>\r
-  <path id="4" class="fil1" d="M95820990 87646255c0,19842 -591,37322 -1772,51731 -1299,15000 -3071,27047 -6024,37322 -3071,10157 -6614,18543 -10866,26338 -4252,7913 -13228,19252 -28228,33661 -14409,15118 -39684,33070 -74526,55393 -35432,21614 -75117,41456 -119053,58227 -44409,17480 -91888,31299 -143619,41456 -51731,10866 -105234,16299 -160509,16299 -114211,0 -215193,-18661 -302947,-56574 -88345,-37204 -162281,-91888 -221098,-164052 -59526,-72164 -104644,-161099 -135942,-265625 -31181,-105234 -46889,-226059 -46889,-363655 0,-155666 19252,-289719 57164,-402158 38503,-111730 90707,-203736 156848,-275192 66731,-71574 144919,-124486 234445,-159328 90116,-34251 187556,-51731 292081,-51731 50550,0 99211,4842 146690,14527 48070,8976 91298,21614 131572,36614 39684,15590 75825,33070 106415,53503 31299,19842 54094,37204 67912,51023 14409,14527 24094,25866 29527,33661 4724,8504 9567,18071 13110,29527 3071,10748 5433,23385 6614,37795 1299,13819 1890,31889 1890,52912 0,45708 -5433,77597 -15708,96140 -10748,18071 -23385,27047 -38976,27047 -17480,0 -37913,-9567 -60708,-29409 -22913,-19252 -51731,-40865 -87164,-64251 -35551,-23504 -78188,-45117 -128029,-64369 -49960,-19842 -108778,-29409 -176690,-29409 -140076,0 -247673,53503 -322199,161099 -74526,106888 -111848,262554 -111848,466409 0,101573 9685,191099 28936,267987 19842,76416 48070,140667 85865,192398 37322,51023 83621,89526 138305,114801 54684,25275 117163,37795 187556,37795 67322,0 126139,-10748 176690,-31771 50432,-21023 93778,-44527 130982,-70392 37322,-25157 68503,-48070 93778,-68503 25275,-21023 44527,-31181 58936,-31181 7795,0 15000,2362 21023,7205 6024,4724 10748,12519 15000,23385 4252,11456 7205,25275 8976,42637 1890,16889 2480,37322 2480,60708z"/>\r
-  <path class="fil1" d="M87736372 91313985c0,114092 -18661,216728 -56456,308498 -37204,91298 -90589,169249 -160863,234090 -69566,64251 -154840,114092 -256176,149407 -101455,35432 -222161,52912 -363182,52912l-258066 0 0 818607c0,9567 -2362,17952 -7795,24566 -5433,7205 -13819,12638 -24566,16771 -11456,4252 -26456,7795 -45590,10866 -19842,2953 -43818,4134 -73227,4134 -29409,0 -53503,-1181 -73227,-4134 -19252,-3071 -34842,-6614 -46298,-10866 -11929,-4134 -19724,-9567 -24566,-16771 -4842,-6614 -7205,-15000 -7205,-24566l0 -2099962c0,-46889 12638,-80432 37204,-100274 24566,-19842 51613,-29999 82203,-29999l486724 0c49251,0 96731,1772 141730,6024 44999,4134 98384,13228 159564,26338 61889,13819 124250,39094 188501,75707 63660,37204 117636,82794 162635,136769 44409,54094 78660,116455 102636,187319 23976,70747 36023,149407 36023,234563zm-316884 24094c0,-93069 -17480,-170430 -51613,-232909 -34842,-61771 -77479,-108659 -129092,-139249 -51023,-29999 -103817,-49842 -157792,-57637 -54684,-8386 -108069,-12519 -159682,-12519l-279680 0 0 914629 273066 0c91298,0 167477,-12047 227476,-35432 60589,-23385 111022,-55747 152478,-97794 40747,-41456 72046,-91298 92951,-149407 21023,-58227 31889,-121297 31889,-189682z"/>\r
-  <path id="1" class="fil1" d="M89092725 91398668c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>\r
-  <path id="2" class="fil1" d="M90833875 92069050c0,129092 -16771,247909 -51023,356450 -33543,108069 -84565,201729 -151769,280271 -67204,78660 -151887,139840 -252751,183658 -101337,43818 -218972,66022 -352316,66022 -130155,0 -243657,-19134 -340269,-58227 -96612,-38385 -177044,-94723 -241177,-168540 -64251,-73818 -112321,-163934 -144092,-268932 -31771,-105589 -47361,-224996 -47361,-358931 0,-128974 16771,-247791 49724,-355860 33661,-108659 84093,-202201 151296,-280861 67204,-78660 151178,-139249 252043,-183068 100864,-43228 218500,-64841 352907,-64841 130273,0 243657,19252 340269,58227 96612,38385 177044,94841 241295,168658 64251,73818 112793,163225 145273,268932 31771,105589 47952,224405 47952,357041zm-302475 18661c0,-85865 -7795,-166887 -23976,-243066 -15590,-76298 -42046,-142911 -78660,-200548 -36023,-57637 -85746,-103226 -148226,-136179 -61771,-33661 -139840,-50432 -232909,-50432 -85746,0 -159564,15000 -221453,45590 -61771,30590 -112203,73818 -152359,129683 -40275,55747 -69684,121769 -88817,198067 -19842,76180 -29409,159564 -29409,249681 0,86928 7795,168540 23976,244838 15590,76180 42046,142793 79251,199839 37204,56456 86928,102045 148816,134998 62361,33661 140431,50432 233500,50432 84565,0 157792,-15000 220154,-45590 62479,-30590 113502,-73227 153659,-128384 40275,-55275 69684,-121297 88227,-197477 18661,-76298 28228,-160273 28228,-251452z"/>\r
-  <path id="3" class="fil1" d="M92664433 90764309c0,32952 -2362,60589 -7795,82794 -5433,22204 -14409,40275 -27047,53975 -13228,13228 -31181,22913 -53975,28818 -22795,6024 -51613,9094 -86455,9094 -34251,0 -62361,-3071 -85156,-9094 -22913,-5905 -41456,-15590 -54684,-28818 -13819,-13701 -23385,-31771 -28818,-53975 -6024,-22204 -8976,-49842 -8976,-82794 0,-33070 2953,-59999 8976,-82203 5433,-21614 15000,-39684 28818,-54684 13228,-14409 31771,-24566 54684,-29999 22795,-5433 50905,-7795 85156,-7795 34842,0 63660,2362 86455,7795 22795,5433 40747,15590 53975,29999 12638,15000 21614,33070 27047,54684 5433,22204 7795,49133 7795,82203zm-32480 2114962c0,9567 -2362,17362 -7086,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -709357 0 0 1385762c0,9567 -2480,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -224524 0c-18543,0 -32952,-9567 -41928,-28228 -9685,-18543 -14409,-49251 -14409,-91770 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38385 4134,-9685 10157,-16889 17362,-21023 7205,-4252 15590,-6024 24566,-6024l224524 0 0 -171021c0,-108659 10748,-202319 31771,-280271 21023,-78069 52204,-142202 93660,-193225 41456,-50432 93069,-87636 154249,-111730 61771,-23976 132045,-35905 211886,-35905 25157,0 51023,1181 76770,3543 25866,2362 49251,6024 70274,10157 21023,4842 39566,10275 55156,15000 16181,5433 27047,10866 32480,16889 5905,6024 10748,11929 14409,18543 3543,6614 5905,14409 8386,24094 2362,8976 4134,20905 5315,34724 1299,14409 1890,31181 1890,51613 0,37204 -3071,64251 -9094,80432 -5315,16771 -15590,24685 -29409,24685 -9567,0 -19134,-1890 -28700,-6024 -10275,-4252 -22913,-8386 -37913,-13228 -15590,-4842 -33543,-8976 -55156,-13228 -21614,-4134 -49251,-6024 -81613,-6024 -80432,0 -138068,29999 -171729,90116 -34133,59408 -50905,155430 -50905,286766l0 174091 911558 0c30708,0 52912,7795 67204,23976 15118,15590 22204,37204 22204,65432l0 1537649z"/>\r
-  <path id="4" class="fil1" d="M93497449 92879271c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -2348462c0,-9567 1772,-17952 5905,-24566 4252,-7205 12047,-13228 23504,-18071 10748,-4134 25748,-7795 44999,-10157 18543,-2362 41928,-3661 70747,-3661 29409,0 53503,1299 72046,3661 19252,2362 33661,6024 44409,10157 10866,4842 18071,10866 22795,18071 4842,6614 7205,15000 7205,24566l0 2348462z"/>\r
-  <path id="5" class="fil1" d="M95379029 92018618c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>\r
-  <path id="6" class="fil1" d="M96817586 92447114c0,81022 -15000,153068 -44999,216728 -30118,62952 -72046,116455 -127321,159564 -55156,43228 -120588,76298 -196768,98502 -76298,22204 -160273,33543 -251570,33543 -56338,0 -109841,-4134 -160745,-13110 -51023,-8504 -96731,-19252 -137478,-33070 -40275,-13228 -74408,-27047 -102636,-41338 -28228,-14409 -48661,-27637 -61180,-39094 -13228,-11338 -22795,-28228 -28228,-49133 -6024,-21023 -8976,-49842 -8976,-86455 0,-22204 1181,-40865 3543,-55865 2362,-15590 5433,-27637 8386,-37204 3661,-9567 8976,-16181 15000,-20433 6614,-4134 13819,-5905 22204,-5905 12638,0 31889,7795 57046,23976 25157,15590 56456,32952 93069,51613 36614,18543 80432,36023 130746,51613 50432,16181 108069,23976 173501,23976 49251,0 93660,-5433 133226,-16181 40157,-10157 74408,-25866 103817,-46771 29409,-20433 51613,-46889 67794,-78660 15590,-31771 23504,-69684 23504,-113502 0,-44409 -11456,-82203 -34251,-112203 -22795,-30590 -52794,-57637 -89998,-81022 -37795,-23385 -79841,-44409 -126730,-62361 -46771,-18071 -94723,-37204 -144564,-57046 -49251,-20433 -97794,-42637 -145273,-67794 -47361,-25275 -89408,-55865 -127202,-92479 -37204,-36614 -67204,-79841 -89998,-130155 -22913,-50432 -34251,-110431 -34251,-181296 0,-61771 12047,-121297 36023,-178225 23976,-57046 59999,-106888 107951,-149525 48661,-42519 108659,-77361 180705,-103226 72046,-25748 156021,-38385 252633,-38385 42046,0 84093,3661 126730,10866 41928,7205 79723,16771 113974,27519 34251,10866 63070,22913 87046,35432 23976,13228 42637,23976 54566,34251 12638,9567 20433,17952 24685,24566 4134,7205 7205,15000 8976,23976 1772,8504 3543,19252 5433,31889 1772,13228 2362,28818 2362,47361 0,19842 -591,37204 -2362,51613 -1890,14409 -4842,26456 -9094,35432 -4134,9567 -8976,16181 -15000,20433 -6024,4134 -12519,6024 -19134,6024 -10866,0 -25866,-6614 -46298,-19842 -19724,-12638 -45590,-26456 -77361,-41456 -31771,-15000 -68975,-28818 -111612,-41338 -42637,-13228 -91888,-19842 -147045,-19842 -49251,0 -93069,5433 -130273,16771 -37795,10866 -68385,26456 -92361,46889 -24094,20315 -42637,44409 -54684,72636 -12638,27519 -18543,58109 -18543,90589 0,45590 11929,83975 35314,115155 23504,31299 53503,58227 91298,81731 37204,23385 80432,44409 128384,63542 48070,18661 96612,37795 146454,57637 49842,20433 99093,42637 147635,67204 48661,24566 91888,54684 129092,89408 37795,35432 67794,77479 90589,126612 22795,49251 34251,108069 34251,175863z"/>\r
-  <path class="fil6" d="M10188832 52785702c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>\r
-  <path id="1" class="fil6" d="M12046200 51915246c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="2" class="fil6" d="M13990260 51096284c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>\r
-  <path id="3" class="fil6" d="M15841486 51915246c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="4" class="fil6" d="M16672022 52885976c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>\r
-  <path class="fil6" d="M18099241 51932844c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>\r
-  <path class="fil6" d="M20071764 52789128c0,23740 -1299,44645 -4724,62952 -3307,19015 -8031,34488 -14173,46771 -6142,12756 -13582,21614 -23740,27637 -10157,6142 -20905,8858 -32480,8858l-1420014 0c-18307,0 -34606,-2008 -48779,-6732 -13582,-4724 -25748,-12165 -35196,-23031 -10157,-10157 -17598,-25748 -22322,-45354 -4724,-19606 -6732,-44054 -6732,-73109 0,-26456 1299,-49369 3307,-69093 2008,-19606 6142,-37204 12874,-52794 6732,-14882 15590,-29763 25748,-45354 10157,-14882 23740,-31062 39921,-48070l513062 -527943c119171,-121769 213894,-230783 285704,-327632 71692,-96022 126494,-184012 165824,-263972 38503,-79132 64251,-150942 76416,-215902 12283,-64959 18307,-125903 18307,-182713 0,-56928 -9449,-111022 -28464,-161808 -19606,-50786 -46653,-95431 -83266,-134053 -35787,-38503 -81140,-68975 -135942,-91298 -54212,-22322 -117163,-33897 -188264,-33897 -83266,0 -157674,11575 -224051,33897 -65668,22322 -123777,47361 -173973,73699 -49369,26456 -91298,51495 -124486,73818 -33188,22322 -58227,33897 -74408,33897 -9567,0 -18307,-2716 -25748,-8149 -7441,-5433 -13582,-13582 -18307,-25748 -4724,-11456 -8740,-27755 -11456,-47361 -2716,-20315 -4134,-44054 -4134,-71810 0,-19606 709,-36495 2008,-51377 1417,-14291 3425,-27047 6850,-37913 3307,-10157 7441,-20315 12874,-29763 5315,-8858 16181,-20315 31771,-34606 16299,-13464 43346,-32480 82558,-56101 38621,-24448 87991,-47361 146926,-70392 58227,-23740 123187,-42637 194288,-58936 70392,-15590 144801,-23622 222634,-23622 124604,0 233500,17598 326215,52794 93424,34488 170666,82558 232201,143501 61652,60826 107596,131218 138068,211768 30472,80550 45354,166532 45354,257948 0,81849 -7441,163816 -21614,244956 -14882,81258 -45354,169249 -92124,264090 -47361,94723 -115037,199603 -203736,315349 -87991,115746 -205744,249090 -352553,400032l-406174 424481 1116830 0c10157,0 20315,2716 30472,8740 10157,6142 19015,14882 25748,26456 7441,12165 12874,27047 16181,44645 3425,17598 4724,38621 4724,62243z"/>\r
-  <path class="fil6" d="M10191076 57659315c0,27047 -1417,49487 -4134,67085 -2716,17598 -6732,33188 -12874,46062 -6142,12165 -12874,21732 -21732,27755 -8740,6142 -18897,8858 -31062,8858l-1136672 0c-30472,0 -59645,-10157 -86691,-30472 -27165,-21023 -40747,-56928 -40747,-108423l0 -2379642c0,-10866 2716,-20315 8149,-27874 5433,-8031 14291,-14173 27755,-18897 12874,-4724 31181,-8858 53621,-12283 22322,-3307 49487,-4724 81258,-4724 33188,0 60353,1417 82676,4724 21732,3425 39330,7559 52204,12283 13582,4724 22441,10866 27874,18897 5315,7559 8031,17008 8031,27874l0 2221732 922542 0c12165,0 22322,2598 31062,8740 8149,6142 15590,14882 21732,25748 6142,11575 10157,26456 12874,45472 2716,18307 4134,40629 4134,67085z"/>\r
-  <path id="1" class="fil6" d="M10859214 57759589c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-9449 2126,-18307 6850,-25748 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,16299 8149,25748l0 1787921zm36614 -2390508c0,77361 -14882,129446 -44054,157320 -29173,27755 -82676,42046 -161336,42046 -77243,0 -130037,-13582 -158501,-40747 -28464,-27047 -42755,-78542 -42755,-154485 0,-77243 14882,-129446 44054,-157320 29173,-27755 82676,-41928 161336,-41928 77243,0 130155,13464 158619,40629 28464,27165 42637,78660 42637,154485z"/>\r
-  <path id="2" class="fil6" d="M13105984 56840590c0,155194 -16889,294089 -50786,418103 -33188,124014 -82676,229838 -148462,316530 -65078,87400 -145627,154604 -240586,200666 -94841,46771 -203973,69802 -326687,69802 -56928,0 -109722,-5433 -157911,-17008 -48070,-10748 -95549,-29055 -141612,-54212 -46062,-25748 -92242,-56928 -139013,-95549 -46062,-38621 -94841,-84684 -146336,-138895l0 219563c0,10157 -2716,19724 -8149,27755 -5433,8149 -13582,14291 -25748,19015 -12165,4724 -27165,8149 -44763,10866 -18307,2716 -41338,4016 -69093,4016 -26456,0 -49487,-1299 -67794,-4016 -19015,-2716 -33897,-6142 -46062,-10866 -11575,-4724 -19724,-10866 -23740,-19015 -4016,-8031 -6142,-16889 -6142,-27755l0 -2652118c0,-10748 2126,-20315 6850,-27755 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,17008 8149,27755l0 1068170c52912,-54212 103699,-100274 153895,-137596 49487,-36614 97557,-67085 145037,-90116 48070,-23031 95549,-39921 143029,-50786 47361,-10157 97557,-15590 150470,-15590 129446,0 239878,25748 332120,77243 91416,51495 165942,121297 223579,207398 57637,86691 99683,188382 126139,304955 26338,116573 39212,239996 39212,369442zm-341569 37913c0,-91534 -6732,-180233 -21023,-266334 -13464,-86809 -37913,-162635 -72518,-229130 -34488,-66377 -79959,-119998 -136887,-159918 -56928,-40629 -128029,-61062 -212831,-61062 -42046,0 -83975,6142 -125313,17716 -40747,12165 -82676,32480 -124722,60235 -42755,27874 -86809,63778 -132163,107833 -46062,43346 -94959,98975 -146454,165351l0 713019c90116,110431 176217,194524 258302,252161 81967,57519 168068,86691 256767,86691 82085,0 151887,-19606 210114,-59645 58345,-39921 105825,-92833 142438,-158619 36495,-65078 62952,-138895 79251,-220272 16889,-81967 25039,-164643 25039,-248027z"/>\r
-  <path id="3" class="fil6" d="M14644579 56087533c0,29173 -709,53621 -2008,73227 -1417,19606 -4134,35196 -8149,46771 -3425,11456 -8858,19606 -14882,25748 -5433,6142 -13582,8858 -24448,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6142 -32480,-12165 -51495,-17598 -19015,-6142 -40629,-11575 -64369,-17008 -23740,-5433 -49487,-8149 -77243,-8149 -33306,0 -65786,6850 -97675,19724 -31181,13582 -65078,35196 -99565,66377 -35314,30472 -71928,71219 -110549,121297 -37913,50905 -80668,112557 -126730,185784l0 1175884c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-10866 2126,-19606 6142,-27165 4016,-6732 11575,-13464 23740,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73936,-2716 29055,0 53503,591 72518,2716 19606,2008 34488,6024 45354,12165 10157,6142 18307,12874 23031,19606 4134,7559 6850,16299 6850,27165l0 260310c48779,-71928 94841,-130155 137478,-175627 43464,-44763 84093,-80668 122006,-106415 38621,-25748 76652,-43346 113856,-53503 38031,-10157 75944,-14882 114565,-14882 17008,0 36614,591 58345,2716 21614,2008 44645,6024 68385,10748 23740,5433 45472,11575 64487,18307 18897,6850 32480,12874 40629,19724 8149,6732 13582,12874 15590,19015 2716,6024 5433,13464 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,42046 709,72518z"/>\r
-  <path id="4" class="fil6" d="M16239392 57761597c0,15590 -5433,27874 -15590,35905 -10866,8149 -25039,13582 -44054,17716 -18307,4016 -45354,6024 -81376,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44763,-17716 -9449,-8031 -14173,-19606 -14173,-35905l0 -178934c-77951,83384 -164761,148462 -261019,194524 -96140,45472 -197831,68503 -304955,68503 -94250,0 -179642,-12165 -255468,-36614 -75944,-24448 -141021,-60353 -194524,-106415 -53621,-46062 -95549,-103699 -125431,-170784 -29763,-67794 -44763,-144328 -44763,-230429 0,-100982 20433,-188382 61771,-262318 40629,-74526 99565,-136179 176808,-185075 76652,-48779 170784,-85983 282042,-110431 111140,-24448 236452,-36614 375466,-36614l246728 0 0 -139604c0,-68503 -7559,-129446 -21732,-182949 -14882,-52912 -37913,-96967 -70511,-132163 -32480,-35314 -74526,-61771 -126021,-79369 -51495,-18307 -115274,-27047 -190508,-27047 -80668,0 -153186,9449 -216846,29055 -64369,19724 -120706,40747 -168776,64487 -48070,23622 -88817,44645 -121297,64369 -31889,19606 -56338,29173 -71810,29173 -10866,0 -20433,-2716 -27874,-8149 -8149,-4724 -14882,-12874 -21023,-23740 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54920 0,-32480 2008,-58936 6732,-77833 4724,-19015 16299,-37322 33897,-54330 17598,-16889 48779,-37204 92242,-60944 43346,-23031 94132,-44763 151060,-64369 56338,-19015 118699,-35314 186375,-48188 67204,-12874 135588,-18897 204091,-18897 128029,0 237161,14173 327278,43346 90235,29173 162753,72518 218264,128738 55629,56338 95549,126139 120706,209406 25039,83384 37913,181060 37913,292199l0 1206356zm-325270 -818725l-279916 0c-89526,0 -167477,7441 -233854,23031 -65786,15000 -120706,38031 -164761,67794 -43346,29881 -75235,65078 -96258,107124 -20315,42046 -30472,90116 -30472,144328 0,92833 29173,166769 88109,221689 58936,54802 141021,82676 247436,82676 85392,0 165351,-21732 238578,-65786 73109,-43346 150470,-110431 231138,-200666l0 -380190z"/>\r
-  <path id="5" class="fil6" d="M17886292 56087533c0,29173 -709,53621 -2008,73227 -1417,19606 -4134,35196 -8149,46771 -3425,11456 -8858,19606 -14882,25748 -5433,6142 -13582,8858 -24448,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6142 -32480,-12165 -51495,-17598 -19015,-6142 -40629,-11575 -64369,-17008 -23740,-5433 -49487,-8149 -77243,-8149 -33306,0 -65786,6850 -97675,19724 -31181,13582 -65078,35196 -99565,66377 -35314,30472 -71928,71219 -110549,121297 -37913,50905 -80668,112557 -126730,185784l0 1175884c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-10866 2126,-19606 6142,-27165 4016,-6732 11575,-13464 23740,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73936,-2716 29055,0 53503,591 72518,2716 19606,2008 34488,6024 45354,12165 10157,6142 18307,12874 23031,19606 4134,7559 6850,16299 6850,27165l0 260310c48779,-71928 94841,-130155 137478,-175627 43464,-44763 84093,-80668 122006,-106415 38621,-25748 76652,-43346 113856,-53503 38031,-10157 75944,-14882 114565,-14882 17008,0 36614,591 58345,2716 21614,2008 44645,6024 68385,10748 23740,5433 45472,11575 64487,18307 18897,6850 32480,12874 40629,19724 8149,6732 13582,12874 15590,19015 2716,6024 5433,13464 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,42046 709,72518z"/>\r
-  <path id="6" class="fil6" d="M19091349 57809076l-237870 658098c-8149,21023 -28464,37322 -61062,48779 -31889,11575 -81376,17008 -147753,17008 -34606,0 -62361,-1417 -83384,-4724 -21023,-3425 -37204,-9567 -48779,-17008 -10866,-8149 -16889,-19015 -18307,-31889 -1299,-13464 2008,-29055 9567,-48070l246610 -622194c-12165,-5433 -23740,-14291 -33897,-25748 -10748,-12165 -18307,-24448 -21614,-37913l-637784 -1707961c-10866,-27874 -15590,-50196 -15590,-65786 0,-16299 4724,-28464 15590,-37913 10866,-9567 27755,-15590 51495,-19015 23740,-3425 55629,-4724 95549,-4724 39330,0 70511,591 93542,2716 22322,2008 40039,6024 53503,11456 12874,4724 22441,12874 28464,22441 6142,10157 12283,23622 19015,40629l510345 1434187 6142 0 492038 -1441628c8149,-25748 17598,-42046 29173,-48779 10748,-7559 27755,-12874 50078,-16299 23031,-3425 55629,-4724 97675,-4724 37204,0 67794,1299 91416,4724 23740,3425 41338,9449 52204,19015 11575,9449 17008,21614 17008,37913 0,15590 -4134,35905 -11575,59645l-641799 1777763z"/>\r
-  <path class="fil6" d="M10188832 89930466c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>\r
-  <path id="1" class="fil6" d="M12046200 89060009c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="2" class="fil6" d="M13990260 88241048c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>\r
-  <path id="3" class="fil6" d="M15841486 89060009c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="4" class="fil6" d="M16672022 90030740c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>\r
-  <path class="fil6" d="M18099241 89077608c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>\r
-  <path class="fil6" d="M20075898 89946056c0,25039 -2008,46062 -6142,62952 -4016,17008 -8740,31181 -15590,41338 -6732,10866 -14173,18307 -22913,23031 -8858,4724 -17598,6732 -26456,6732l-1340173 0c-8858,0 -17598,-2008 -25748,-6732 -7441,-4724 -15590,-12165 -22322,-23031 -7441,-10157 -12874,-24330 -16889,-41338 -4134,-16889 -6142,-37913 -6142,-62952 0,-23622 2008,-43936 6142,-60944 4016,-17598 8740,-31771 14882,-42637 5315,-11456 12874,-19606 21614,-25629 8858,-6142 18307,-8858 28464,-8858l533967 0 0 -1953508 -496054 296569c-25039,12874 -45354,20905 -60944,23622 -14882,2716 -27047,0 -36614,-8740 -9449,-8858 -15472,-23031 -18897,-42637 -3425,-19724 -4724,-44763 -4724,-75117 0,-22441 709,-42046 2716,-57637 2008,-16181 5433,-29055 9449,-39921 4016,-10157 9449,-19606 16889,-27755 6850,-7441 16299,-15590 28464,-23622l591604 -378418c5433,-4016 11456,-7441 19606,-10157 8149,-2008 18307,-4724 29763,-7441 12165,-2716 25748,-4724 42046,-5433 15472,-591 35196,-591 59526,-591 31062,0 58227,1299 79132,4016 21023,2716 37322,6024 49487,10866 12165,4724 19606,10748 23622,17598 4134,7441 6142,14882 6142,22913l0 2255392 464283 0c10866,0 21023,2716 29881,8858 9449,6024 16889,14173 22913,25629 6142,10866 10866,25039 14291,42637 3307,17008 4724,37322 4724,60944z"/>\r
-  <path class="fil6" d="M10188832 94803371c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>\r
-  <path id="1" class="fil6" d="M10856261 94903644c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-9449 2008,-18189 6732,-25748 4724,-8031 13582,-14882 26456,-20196 12165,-4842 29055,-8858 50786,-11575 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11575 12165,5315 20315,12165 25629,20196 5433,7559 8149,16299 8149,25748l0 1785676zm36614 -2387437c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28464,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28346,27047 42637,78542 42637,154249z"/>\r
-  <path id="2" class="fil6" d="M13100197 93985708c0,155076 -16889,293853 -50786,417630 -33188,123895 -82558,229484 -148226,316175 -64959,87282 -145509,154249 -240350,200311 -94723,46771 -203736,69684 -326215,69684 -56810,0 -109604,-5315 -157674,-16889 -48070,-10748 -95431,-29055 -141494,-54094 -46062,-25748 -92006,-56928 -138777,-95431 -46062,-38621 -94723,-84684 -146218,-138777l0 219327c0,10157 -2716,19606 -8031,27755 -5433,8031 -13582,14173 -25748,18897 -12165,4724 -27165,8149 -44763,10866 -18189,2716 -41220,4016 -68975,4016 -26456,0 -49369,-1299 -67676,-4016 -19015,-2716 -33897,-6142 -46062,-10866 -11456,-4724 -19606,-10866 -23622,-18897 -4134,-8149 -6142,-17008 -6142,-27755l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 1066752c52794,-54094 103581,-100156 153659,-137360 49487,-36614 97439,-66967 144919,-89998 47952,-23031 95431,-39921 142793,-50786 47361,-10157 97439,-15590 150234,-15590 129328,0 239641,25748 331648,77125 91416,51495 165824,121179 223461,207162 57519,86691 99447,188146 125785,304601 26456,116455 39330,239641 39330,368852zm-341214 37913c0,-91298 -6732,-179997 -20905,-265979 -13582,-86691 -37913,-162399 -72400,-228775 -34606,-66377 -79959,-119762 -136769,-159800 -56810,-40511 -127911,-60826 -212595,-60826 -41928,0 -83857,6024 -125195,17598 -40629,12165 -82558,32480 -124486,60235 -42637,27755 -86691,63542 -132045,107596 -46062,43346 -94723,98856 -146218,165115l0 712074c89998,110313 175981,194288 257948,251806 81849,57519 167832,86691 256531,86691 81849,0 151651,-19606 209760,-59526 58227,-40039 105589,-92833 142202,-158501 36495,-64959 62952,-138659 79132,-219917 17008,-81967 25039,-164525 25039,-247791z"/>\r
-  <path id="3" class="fil6" d="M14636665 93233714c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>\r
-  <path id="4" class="fil6" d="M16269982 94905652c0,15590 -5433,27755 -15590,35905 -10866,8031 -25039,13464 -44054,17598 -18189,4016 -45354,6024 -81140,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44645,-17598 -9449,-8149 -14173,-19724 -14173,-35905l0 -178698c-77833,83266 -164525,148226 -260665,194288 -96140,45354 -197595,68266 -304601,68266 -94014,0 -179288,-12165 -255114,-36495 -75825,-24330 -140785,-60235 -194288,-106297 -53503,-45944 -95431,-103581 -125195,-170548 -29881,-67676 -44763,-144210 -44763,-230193 0,-100746 20315,-188146 61652,-261846 40629,-74526 99447,-136061 176690,-184839 76416,-48779 170548,-85983 281570,-110313 111022,-24330 236216,-36614 374993,-36614l246374 0 0 -139368c0,-68385 -7441,-129328 -21732,-182831 -14882,-52794 -37795,-96731 -70392,-131927 -32480,-35196 -74408,-61652 -125903,-79251 -51377,-18189 -115037,-27047 -190154,-27047 -80550,0 -152950,9449 -216610,29173 -64251,19606 -120470,40511 -168540,64251 -48070,23740 -88699,44645 -121179,64251 -31771,19724 -56101,29173 -71692,29173 -10866,0 -20315,-2716 -27755,-8149 -8149,-4724 -14882,-12874 -21023,-23622 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54802 0,-32480 2008,-58818 6732,-77833 4724,-18897 16299,-37204 33897,-54094 17598,-17008 48661,-37322 92006,-60944 43346,-23031 94132,-44645 150942,-64369 56219,-18897 118462,-35196 186138,-47952 67085,-12874 135352,-19015 203736,-19015 127911,0 236925,14173 326923,43346 90116,29055 162517,72400 218028,128620 55511,56101 95431,125903 120470,209169 25039,83266 37913,180705 37913,291727l0 1204821zm-324915 -817662l-279562 0c-89408,0 -167241,7441 -233500,23031 -65668,14882 -120470,37913 -164525,67676 -43346,29763 -75117,64959 -96140,106888 -20315,42046 -30472,89998 -30472,144210 0,92715 29173,166532 87991,221335 58936,54802 140785,82558 247082,82558 85274,0 165233,-21614 238342,-65668 73109,-43346 150234,-110313 230783,-200311l0 -379718z"/>\r
-  <path id="5" class="fil6" d="M17914756 93233714c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>\r
-  <path id="6" class="fil6" d="M19118159 94953014l-237515 657272c-8149,20905 -28464,37204 -60944,48661 -31771,11575 -81258,17008 -147517,17008 -34606,0 -62361,-1417 -83266,-4724 -21023,-3425 -37204,-9567 -48779,-17008 -10866,-8031 -16889,-18897 -18307,-31771 -1299,-13582 2126,-29055 9567,-48070l246374 -621367c-12165,-5433 -23740,-14173 -33897,-25748 -10866,-12165 -18307,-24330 -21614,-37913l-636957 -1705717c-10866,-27755 -15590,-50078 -15590,-65668 0,-16181 4724,-28346 15590,-37913 10866,-9449 27755,-15472 51377,-18897 23740,-3425 55511,-4724 95549,-4724 39212,0 70392,591 93305,2716 22441,2008 40039,6024 53503,11456 12874,4724 22322,12874 28464,22322 6024,10157 12165,23740 18897,40629l509755 1432297 6024 0 491448 -1439738c8149,-25748 17598,-41928 29055,-48779 10866,-7441 27755,-12756 50196,-16181 22913,-3425 55511,-4724 97439,-4724 37204,0 67676,1299 91416,4724 23622,3425 41220,9449 52086,18897 11456,9567 16889,21732 16889,37913 0,15590 -4016,35905 -11456,59645l-641091 1775401z"/>\r
-  <polygon class="fil7" points="23044900,114832734 99130497,114832734 99130497,104597722 23044900,104597722 "/>\r
-  <path class="fil6" d="M26466255 110392105c0,119880 -22322,226768 -66377,320900 -44645,93424 -106297,173265 -184839,238933 -78424,64959 -171139,114329 -277436,147517 -107006,33188 -221335,49369 -344521,49369 -85983,0 -165824,-7441 -238933,-21614 -73818,-14882 -139486,-33188 -197004,-54094 -57519,-21023 -105589,-43346 -144919,-65668 -38503,-23031 -66259,-42046 -81140,-58227 -15590,-15590 -26456,-35905 -33897,-60235 -7441,-24448 -10748,-56928 -10748,-97439 0,-29173 1299,-53503 4016,-72518 2716,-18897 6732,-34488 11456,-45944 5433,-12283 12165,-20315 20315,-25039 8149,-4842 17008,-6850 27755,-6850 18307,0 44645,11575 78542,33897 33188,22322 76534,46653 129919,73109 52794,25629 116455,50786 191571,73699 74526,23031 161099,34606 258539,34606 74526,0 142202,-10157 203855,-29763 61534,-19724 114329,-47479 158383,-83975 44645,-35905 78424,-80550 102164,-133344 23740,-52794 35905,-113029 35905,-180115 0,-72400 -16299,-134643 -49487,-186138 -33070,-51377 -76416,-96731 -130628,-136061 -54802,-38503 -116336,-74408 -185430,-106888 -69684,-32480 -140785,-64959 -213185,-98856 -72518,-33779 -143501,-71101 -211886,-112321 -69093,-40629 -130628,-88699 -184839,-144210 -54094,-55511 -98148,-120470 -131218,-195587 -33897,-74408 -50786,-163816 -50786,-268105 0,-107596 19606,-203028 58227,-286885 39212,-83266 93305,-153659 162399,-210587 69684,-56810 152241,-100156 247791,-129919 96022,-29763 198894,-44645 309916,-44645 56928,0 113738,4724 171257,14882 57519,10157 111730,23031 162517,39921 50786,16181 96140,35196 136061,55511 39212,20315 65668,37204 77833,49369 12874,12874 20905,22322 25039,29763 4016,7441 6732,17008 9449,27755 2716,11575 4724,25039 6142,41338 1299,15590 2008,35905 2008,61534 0,23740 -709,44763 -2716,63660 -2008,18307 -5433,33897 -9449,46653 -3425,12283 -9567,21732 -16299,27755 -7441,6142 -15590,8858 -25039,8858 -14882,0 -37204,-9449 -68385,-27755 -31062,-18897 -68975,-39212 -114329,-62952 -44763,-23031 -98148,-44054 -159800,-62952 -60944,-19606 -129919,-29055 -207162,-29055 -70983,0 -133344,9449 -186138,28346 -52794,19606 -96731,44763 -131218,76534 -33897,31771 -59645,68975 -77243,112321 -16889,44054 -25748,89998 -25748,138777 0,71101 16299,132635 49487,184131 33188,51377 77125,96731 131927,136769 55511,39921 117872,75707 188264,108896 69684,33188 141375,66377 214484,100156 72518,33897 144210,70392 213894,111022 70392,39921 132754,87991 188264,142911 54802,54802 98738,119053 132635,194170 33779,74526 50786,162517 50786,264680z"/>\r
-  <path id="1" class="fil6" d="M29039004 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>\r
-  <path id="2" class="fil6" d="M31482425 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <polygon class="fil8" points="32954997,113560119 43839840,113560119 43839840,105897383 32954997,105897383 "/>\r
-  <path class="fil6" d="M37255785 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>\r
-  <path id="1" class="fil6" d="M39861841 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>\r
-  <path id="2" class="fil6" d="M42298529 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <polygon class="fil8" points="55157904,113560119 66015700,113560119 66015700,105897383 55157904,105897383 "/>\r
-  <path class="fil6" d="M59451960 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>\r
-  <path id="1" class="fil6" d="M62058016 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>\r
-  <path id="2" class="fil6" d="M64494704 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <polygon class="fil8" points="86052505,113560119 96910183,113560119 96910183,105897383 86052505,105897383 "/>\r
-  <path class="fil6" d="M91287410 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <path id="1" class="fil6" d="M93520362 108896266c0,25039 -1299,47361 -4016,66259 -2716,19015 -6732,35196 -11456,48070 -5433,12165 -12283,21023 -20315,26456 -7441,5433 -16299,8149 -25748,8149 -15590,0 -41928,-12874 -79251,-37913 -37204,-25039 -86573,-53503 -148816,-83975 -62361,-30472 -136769,-58936 -223461,-83975 -86573,-25039 -189445,-37913 -307908,-37913 -142202,0 -268814,25748 -381135,77243 -112321,52086 -207752,123187 -285585,214484 -78542,91416 -138068,199721 -180115,325624 -41220,125903 -62243,261964 -62243,408890 0,164406 23031,309916 68385,437236 45944,126494 108896,234208 190154,321490 80550,87282 176690,153659 289011,198304 111730,45354 234917,67676 368261,67676 79841,0 160391,-9449 241649,-29055 81258,-19015 157084,-48070 227476,-85983l0 -749986 -594320 0c-23031,0 -39921,-11456 -50786,-33779 -11456,-22441 -16889,-57637 -16889,-105707 0,-25039 1299,-46653 4016,-64251 2716,-17598 6732,-32480 12874,-43936 6142,-10866 12874,-19015 21023,-24448 7441,-5433 17598,-8149 29763,-8149l814237 0c14882,0 29173,2716 44054,8149 14173,5433 27755,12874 39212,23740 12165,10748 21614,25039 27755,43346 6732,18897 10157,39921 10157,63542l0 979471c0,34488 -6142,64369 -17598,89408 -12165,25039 -37204,47361 -75825,66259 -37913,19015 -87991,39921 -148934,62243 -60826,23031 -123187,42046 -188146,58227 -64959,15590 -130628,27755 -196296,35196 -66377,8149 -131927,12165 -196296,12165 -199012,0 -376292,-30354 -531959,-92006 -156375,-61534 -288420,-149525 -396016,-263263 -107596,-113738 -190272,-249799 -247082,-408890 -56810,-159092 -85274,-335663 -85274,-531959 0,-203736 30472,-388576 92006,-553691 61652,-165233 148226,-306018 259956,-423063 111730,-116455 245665,-206453 402040,-270822 157084,-64251 330348,-96022 520502,-96022 98148,0 189564,8740 275546,25629 85983,17598 162399,37913 229484,60944 66259,23740 122478,48779 168540,76534 45354,27047 76416,49369 94014,66967 17008,16889 29173,37204 35196,59526 6850,22441 10157,54920 10157,97557z"/>\r
-  <polygon class="fil9" points="22395069,25479462 157697474,25479462 157697474,9937498 22395069,9937498 "/>\r
-  <path class="fil1" d="M71745833 12730282c0,128620 -20905,244366 -63660,347946 -41928,102872 -102164,190863 -181296,263972 -78542,72400 -174682,128620 -289129,168540 -114329,39921 -250389,59526 -409481,59526l-291018 0 0 923251c0,10866 -2716,20315 -8858,27755 -6024,8149 -15472,14291 -27755,19015 -12874,4724 -29763,8740 -51377,12165 -22322,3425 -49487,4724 -82558,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39212,-7441 -52086,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2368304c0,-52794 14291,-90707 42046,-113029 27755,-22441 58227,-33897 92715,-33897l548966 0c55511,0 108896,2008 159682,6732 50786,4724 111022,14882 180115,29881 69684,15472 140076,43936 212476,85274 71810,41928 132754,93424 183422,154249 50078,60944 88699,131336 115746,211177 27165,79959 40629,168540 40629,264680zm-357395 27047c0,-104880 -19606,-192162 -58227,-262554 -39212,-69684 -87282,-122596 -145509,-157084 -57519,-33779 -117045,-56101 -177989,-64959 -61652,-9449 -121888,-14173 -180115,-14173l-315349 0 0 1031556 307908 0c102990,0 188855,-13582 256649,-39921 68266,-26456 125195,-62952 171847,-110431 46062,-46653 81258,-102872 104880,-168540 23740,-65550 35905,-136651 35905,-213894z"/>\r
-  <path id="1" class="fil1" d="M73275569 12825714c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>\r
-  <path id="2" class="fil1" d="M75113332 13524914c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="3" class="fil1" d="M76735783 14008212c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>\r
-  <path id="4" class="fil1" d="M78722479 13524914c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="5" class="fil1" d="M80759254 14495644c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>\r
-  <path id="6" class="fil1" d="M82286982 14362891c0,38621 -2716,69093 -8149,91416 -4724,22322 -12874,39212 -23622,49369 -10157,10866 -26456,21023 -47479,29881 -20905,9449 -45354,16889 -72400,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -60235,6024 -90707,6024 -92715,0 -171847,-12165 -237515,-36495 -65668,-24448 -119880,-61652 -162517,-111022 -41928,-49487 -72400,-112439 -92006,-188146 -18897,-75825 -28464,-165233 -28464,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 454834 0c10748,0 19606,2008 27755,6732 7441,4724 14882,12874 20315,23740 6024,11456 10157,25748 12874,43346 2598,16889 4016,37913 4016,62952 0,47952 -6142,82558 -17598,103463 -12165,21023 -27755,31889 -47361,31889l-454834 0 0 992935c0,122478 18189,215311 54094,277554 35905,62952 100864,94014 194288,94014 29763,0 56810,-2598 80550,-8740 23622,-6142 44645,-12165 62952,-19015 18307,-6732 33779,-12756 47361,-18897 12874,-6142 25039,-8740 35196,-8740 6732,0 12874,1299 18897,4724 5433,3307 10157,9449 13582,18897 3425,9449 6142,21614 8858,37913 2598,15590 4016,35905 4016,59526z"/>\r
-  <path id="7" class="fil1" d="M84016439 14497652c0,15590 -5433,27755 -15590,35905 -10866,8031 -25039,13464 -44054,17598 -18189,4016 -45354,6024 -81140,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44645,-17598 -9449,-8149 -14173,-19724 -14173,-35905l0 -178698c-77833,83266 -164525,148226 -260665,194288 -96140,45354 -197595,68266 -304601,68266 -94014,0 -179288,-12165 -255114,-36495 -75825,-24330 -140785,-60235 -194288,-106297 -53503,-45944 -95431,-103581 -125195,-170548 -29881,-67676 -44763,-144210 -44763,-230193 0,-100746 20315,-188146 61652,-261846 40629,-74526 99447,-136061 176690,-184839 76416,-48779 170548,-85983 281570,-110313 111022,-24330 236216,-36614 374993,-36614l246374 0 0 -139368c0,-68385 -7441,-129328 -21732,-182831 -14882,-52794 -37795,-96731 -70392,-131927 -32480,-35196 -74408,-61652 -125903,-79251 -51377,-18189 -115037,-27047 -190154,-27047 -80550,0 -152950,9449 -216610,29173 -64251,19606 -120470,40511 -168540,64251 -48070,23740 -88699,44645 -121179,64251 -31771,19724 -56101,29173 -71692,29173 -10866,0 -20315,-2716 -27755,-8149 -8149,-4724 -14882,-12874 -21023,-23622 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54802 0,-32480 2008,-58818 6732,-77833 4724,-18897 16299,-37204 33897,-54094 17598,-17008 48661,-37322 92006,-60944 43346,-23031 94132,-44645 150942,-64369 56219,-18897 118462,-35196 186138,-47952 67085,-12874 135352,-19015 203736,-19015 127911,0 236925,14173 326923,43346 90116,29055 162517,72400 218028,128620 55511,56101 95431,125903 120470,209169 25039,83266 37913,180705 37913,291727l0 1204821zm-324915 -817662l-279562 0c-89408,0 -167241,7441 -233500,23031 -65668,14882 -120470,37913 -164525,67676 -43346,29763 -75117,64959 -96140,106888 -20315,42046 -30472,89998 -30472,144210 0,92715 29173,166532 87991,221335 58936,54802 140785,82558 247082,82558 85274,0 165233,-21614 238342,-65668 73109,-43346 150234,-110313 230783,-200311l0 -379718z"/>\r
-  <path id="8" class="fil1" d="M86133645 12660599c39330,0 66377,8740 81258,27047 14173,17598 21614,43346 21614,77833l0 1730166c0,10748 -2598,19606 -8031,27047 -5433,6732 -14291,13464 -26456,18897 -12874,4724 -29763,8858 -50786,11575 -20905,2716 -46653,4016 -77125,4016 -33188,0 -60235,-1299 -81258,-4016 -20905,-2716 -37913,-6850 -50786,-11575 -12165,-5433 -20905,-12165 -26338,-18897 -5433,-7441 -8149,-16299 -8149,-27047l0 -1562925 -921834 0 0 992935c0,122478 18189,215311 54802,277554 35905,62952 101455,94014 194878,94014 30472,0 57519,-2598 81967,-8740 23622,-6142 44645,-12165 62952,-19015 18897,-6732 34488,-12756 48070,-18897 12874,-6142 25039,-8740 35787,-8740 6142,0 12874,1299 18307,4724 6142,3307 10866,9449 14173,18897 3425,9449 6142,21614 8858,37913 2716,15590 4016,35905 4016,59526 0,38621 -2716,68385 -8031,90116 -5433,22322 -12874,38503 -23740,50078 -10866,11456 -26456,21614 -47361,30472 -21732,9449 -46062,16889 -73109,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -61534,6024 -92006,6024 -92833,0 -171965,-12165 -238342,-36495 -66259,-24448 -120470,-61652 -163107,-111022 -41928,-49487 -73109,-112439 -92006,-188146 -19606,-75825 -29173,-165233 -29173,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 1147893 0zm139486 -552392c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28346,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28464,27047 42637,78542 42637,154249z"/>\r
-  <path id="9" class="fil1" d="M88499350 13581842c0,145509 -18897,279562 -57519,402040 -37913,121888 -95431,227476 -171257,316057 -75825,88699 -171257,157792 -284877,207162 -114447,49369 -247082,74408 -397316,74408 -146926,0 -274838,-21614 -383851,-65550 -109014,-43346 -199721,-107006 -272121,-190272 -72400,-83266 -126612,-184721 -162399,-303184 -35905,-119171 -53503,-253814 -53503,-404756 0,-145627 18897,-279562 56219,-401449 37913,-122478 94723,-228067 170548,-316766 75825,-88699 170548,-157084 284286,-206453 113738,-48779 246374,-73109 398024,-73109 146808,0 274838,21614 383733,65668 109014,43346 199721,106888 272121,190154 72400,83266 127202,184131 163816,303302 35905,119053 54094,253106 54094,402749zm-341096 20905c0,-96731 -8740,-188146 -27047,-274129 -17598,-85865 -47361,-161099 -88699,-226059 -40629,-64959 -96849,-116336 -167241,-153659 -69684,-37913 -157674,-56810 -262554,-56810 -96849,0 -180115,16889 -249799,51377 -69684,34606 -126612,83266 -171965,146218 -45354,62952 -78424,137478 -100156,223461 -22322,85865 -33188,179997 -33188,281570 0,98148 8858,190154 27165,276137 17598,85983 47361,161099 89290,225350 41928,63660 98148,115155 167832,152359 70392,37913 158383,56810 263381,56810 95431,0 177989,-16889 248381,-51377 70392,-34606 127911,-82676 173265,-144919 45354,-62243 78542,-136651 99565,-222634 20905,-85983 31771,-180705 31771,-283696z"/>\r
-  <path id="10" class="fil1" d="M90519235 14495644c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>\r
-  <path id="11" class="fil1" d="M91944682 13869435c0,-72400 10157,-141375 29763,-207044 20315,-65668 51495,-129328 93424,-190272 42637,-61534 97439,-121061 165824,-178698 67676,-57519 150234,-115746 246374,-173265 -52794,-71692 -98148,-136651 -135352,-194878 -37913,-58227 -69093,-112439 -93424,-162517 -24330,-50078 -41928,-98148 -52794,-143501 -10157,-45944 -15590,-92006 -15590,-138068 0,-81849 13582,-160391 42046,-234799 27755,-74526 71692,-140903 133344,-198422 61534,-57519 140785,-102872 236807,-136651 96849,-33897 213894,-50786 351372,-50786 116455,0 217319,12874 302593,37913 85274,25039 155666,60944 211768,106888 56219,46062 98856,102282 127321,167241 28464,65668 42637,138777 42637,219327 0,77833 -12874,149525 -37913,214484 -25039,64369 -65668,127321 -121179,188264 -55511,60826 -126612,121061 -213185,181414 -86691,60235 -190863,123187 -314049,189445 44645,54212 94014,111022 146808,169249 52794,58936 107715,118462 165233,177989 57519,59645 116336,117754 176572,175391 60353,57519 119171,113029 177398,165824 26338,-35905 50786,-76534 71692,-122596 21023,-45354 39330,-93424 55511,-144092 15590,-51495 27755,-102872 35905,-156375 7441,-52794 11575,-106297 11575,-160391l0 -71810c0,-12874 2716,-23740 6732,-32480 4724,-8858 12874,-15590 23031,-21614 10748,-6142 26338,-10157 46653,-12874 20315,-2716 47361,-4134 80550,-4134 29173,0 53503,709 73818,2008 21023,1417 37913,4134 50786,8858 13464,4724 23031,12165 29055,21614 5433,10157 8858,23740 8858,40629l0 50078c0,73818 -6142,146926 -19015,218028 -12874,71692 -29763,141375 -51377,209169 -21732,68266 -48779,133344 -81258,195587 -32480,62243 -68385,119762 -108305,172556 59526,46771 111730,85983 155666,117754 44645,31181 81849,56928 113029,76534 31181,19606 56928,33188 77125,41338 21023,7441 37322,11456 50786,11456 13582,0 25748,-709 37913,-2008 11575,-1417 21023,709 28464,6024 7441,5433 12874,15590 16889,31889 4134,15590 6142,40629 6142,73699 0,32598 -709,59645 -2008,79251 -1417,19606 -3425,34488 -6850,44645 -3307,10157 -9449,18307 -16889,25039 -8149,6850 -22322,12165 -44054,17598 -20905,5433 -48661,8149 -83148,8149 -26456,0 -55511,-4724 -87400,-13582 -31062,-9449 -68385,-25629 -111022,-48661 -41928,-23031 -91298,-54212 -147517,-93424 -56219,-39212 -121888,-89408 -197004,-149643 -55511,44763 -114329,86691 -175981,125313 -61534,37913 -126494,70983 -196296,98148 -68975,27047 -142084,48070 -217909,62952 -75825,15472 -158383,22913 -247082,22913 -83266,0 -162399,-7441 -236925,-21614 -74408,-14882 -143501,-35905 -207044,-62952 -63660,-27047 -120588,-60944 -170666,-101573 -50078,-41220 -92715,-87991 -127911,-140076 -35196,-52086 -62243,-111022 -81258,-175272 -18897,-64959 -29055,-135352 -29055,-210587zm585462 -1415289c0,35905 4724,72400 14882,109604 9567,37322 25039,75825 45354,116455 20315,39921 45354,83266 75235,129919 29763,46062 65550,98148 106179,155076 96849,-54212 177398,-104289 243066,-150234 65668,-45354 117754,-89408 157674,-132045 39212,-42637 68385,-84565 85983,-127202 18307,-42046 27047,-87400 27047,-134761 0,-38621 -6732,-75825 -21023,-110313 -13464,-35196 -35787,-66377 -66259,-93424 -30472,-27047 -69093,-48779 -115037,-64959 -46062,-15590 -101573,-23740 -166532,-23740 -70392,0 -129328,8858 -177398,27165 -48661,17598 -87991,41220 -119053,70983 -31181,29763 -54212,65078 -68385,104289 -14882,39921 -21732,81258 -21732,123187zm-230075 1382219c0,68975 11456,131927 34488,188855 23031,56810 57519,106179 102164,148226 44763,41220 100864,73699 168540,97439 67794,23031 145627,34488 234208,34488 54212,0 107006,-5433 158383,-16889 51495,-11456 100864,-26456 147635,-46062 47361,-18897 92006,-42637 134053,-69684 42637,-27047 81140,-56219 117045,-86691 -69093,-59526 -137360,-121769 -205154,-185430 -68266,-64251 -133935,-128620 -197595,-193579 -63660,-64959 -124486,-129328 -183422,-193579 -58936,-64251 -112321,-126612 -161808,-187556 -65668,42755 -121179,84684 -165115,126612 -44645,41338 -79841,83266 -107006,124604 -27047,41928 -46653,83857 -58818,126494 -11575,42046 -17598,86691 -17598,132754z"/>\r
-  <path id="12" class="fil1" d="M97722531 14424543c10157,29055 16181,52086 16889,70392 709,17598 -4724,31181 -14882,40629 -10866,8740 -28464,14882 -52794,17598 -24330,2716 -56810,4016 -98148,4016 -40629,0 -73818,-709 -98148,-2716 -24330,-2008 -42637,-5433 -55511,-10157 -12874,-4724 -21614,-10748 -27755,-18897 -6142,-8149 -11456,-17598 -16889,-29763l-220035 -624792 -1066752 0 -210469 616642c-4134,12165 -8858,22322 -15590,31062 -6732,8858 -16299,15590 -29055,21732 -12283,6024 -30472,10157 -53503,12874 -23031,2716 -52794,4016 -89998,4016 -38621,0 -69802,-1299 -94132,-4724 -24330,-3425 -41928,-9449 -51495,-18897 -10157,-9567 -14882,-23031 -14173,-40629 709,-18307 6142,-41338 16889,-70392l860299 -2384721c5433,-14882 12874,-27047 21023,-35787 8858,-9567 21023,-17008 37913,-21732 16299,-5433 37204,-9449 63660,-11456 25629,-2008 58227,-2716 98148,-2716 41928,0 77125,709 104880,2716 27755,2008 50078,6024 66967,11456 17598,4724 30472,12874 40039,22322 9449,10157 16889,22322 21614,36614l861008 2385311zm-1104665 -2105159l-2008 0 -442079 1279347 892189 0 -448102 -1279347z"/>\r
-  <path id="13" class="fil1" d="M99649582 14495644c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>\r
-  <path id="14" class="fil1" d="M101592225 14497652c0,15590 -5433,27755 -15590,35905 -10866,8031 -25039,13464 -44054,17598 -18189,4016 -45354,6024 -81140,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44645,-17598 -9449,-8149 -14173,-19724 -14173,-35905l0 -178698c-77833,83266 -164525,148226 -260665,194288 -96140,45354 -197595,68266 -304601,68266 -94014,0 -179288,-12165 -255114,-36495 -75825,-24330 -140785,-60235 -194288,-106297 -53503,-45944 -95431,-103581 -125195,-170548 -29881,-67676 -44763,-144210 -44763,-230193 0,-100746 20315,-188146 61652,-261846 40629,-74526 99447,-136061 176690,-184839 76416,-48779 170548,-85983 281570,-110313 111022,-24330 236216,-36614 374993,-36614l246374 0 0 -139368c0,-68385 -7441,-129328 -21732,-182831 -14882,-52794 -37795,-96731 -70392,-131927 -32480,-35196 -74408,-61652 -125903,-79251 -51377,-18189 -115037,-27047 -190154,-27047 -80550,0 -152950,9449 -216610,29173 -64251,19606 -120470,40511 -168540,64251 -48070,23740 -88699,44645 -121179,64251 -31771,19724 -56101,29173 -71692,29173 -10866,0 -20315,-2716 -27755,-8149 -8149,-4724 -14882,-12874 -21023,-23622 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54802 0,-32480 2008,-58818 6732,-77833 4724,-18897 16299,-37204 33897,-54094 17598,-17008 48661,-37322 92006,-60944 43346,-23031 94132,-44645 150942,-64369 56219,-18897 118462,-35196 186138,-47952 67085,-12874 135352,-19015 203736,-19015 127911,0 236925,14173 326923,43346 90116,29055 162517,72400 218028,128620 55511,56101 95431,125903 120470,209169 25039,83266 37913,180705 37913,291727l0 1204821zm-324915 -817662l-279562 0c-89408,0 -167241,7441 -233500,23031 -65668,14882 -120470,37913 -164525,67676 -43346,29763 -75117,64959 -96140,106888 -20315,42046 -30472,89998 -30472,144210 0,92715 29173,166532 87991,221335 58936,54802 140785,82558 247082,82558 85274,0 165233,-21614 238342,-65668 73109,-43346 150234,-110313 230783,-200311l0 -379718z"/>\r
-  <path id="15" class="fil1" d="M102522208 14495644c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>\r
-  <path id="16" class="fil1" d="M103936907 14545014l-237515 657272c-8149,20905 -28464,37204 -60944,48661 -31771,11575 -81258,17008 -147517,17008 -34606,0 -62361,-1417 -83266,-4724 -21023,-3425 -37204,-9567 -48779,-17008 -10866,-8031 -16889,-18897 -18307,-31771 -1299,-13582 2126,-29055 9567,-48070l246374 -621367c-12165,-5433 -23740,-14173 -33897,-25748 -10866,-12165 -18307,-24330 -21614,-37913l-636957 -1705717c-10866,-27755 -15590,-50078 -15590,-65668 0,-16181 4724,-28346 15590,-37913 10866,-9449 27755,-15472 51377,-18897 23740,-3425 55511,-4724 95549,-4724 39212,0 70392,591 93305,2716 22441,2008 40039,6024 53503,11456 12874,4724 22322,12874 28464,22322 6024,10157 12165,23740 18897,40629l509755 1432297 6024 0 491448 -1439738c8149,-25748 17598,-41928 29055,-48779 10866,-7441 27755,-12756 50196,-16181 22913,-3425 55511,-4724 97439,-4724 37204,0 67676,1299 91416,4724 23622,3425 41220,9449 52086,18897 11456,9567 16889,21732 16889,37913 0,15590 -4016,35905 -11456,59645l-641091 1775401z"/>\r
-  <path id="17" class="fil1" d="M106537529 12660599c39330,0 66377,8740 81258,27047 14173,17598 21614,43346 21614,77833l0 1730166c0,10748 -2598,19606 -8031,27047 -5433,6732 -14291,13464 -26456,18897 -12874,4724 -29763,8858 -50786,11575 -20905,2716 -46653,4016 -77125,4016 -33188,0 -60235,-1299 -81258,-4016 -20905,-2716 -37913,-6850 -50786,-11575 -12165,-5433 -20905,-12165 -26338,-18897 -5433,-7441 -8149,-16299 -8149,-27047l0 -1562925 -921834 0 0 992935c0,122478 18189,215311 54802,277554 35905,62952 101455,94014 194878,94014 30472,0 57519,-2598 81967,-8740 23622,-6142 44645,-12165 62952,-19015 18897,-6732 34488,-12756 48070,-18897 12874,-6142 25039,-8740 35787,-8740 6142,0 12874,1299 18307,4724 6142,3307 10866,9449 14173,18897 3425,9449 6142,21614 8858,37913 2716,15590 4016,35905 4016,59526 0,38621 -2716,68385 -8031,90116 -5433,22322 -12874,38503 -23740,50078 -10866,11456 -26456,21614 -47361,30472 -21732,9449 -46062,16889 -73109,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -61534,6024 -92006,6024 -92833,0 -171965,-12165 -238342,-36495 -66259,-24448 -120470,-61652 -163107,-111022 -41928,-49487 -73109,-112439 -92006,-188146 -19606,-75825 -29173,-165233 -29173,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 1147893 0zm139486 -552392c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28346,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28464,27047 42637,78542 42637,154249z"/>\r
-  <path id="18" class="fil1" d="M108529659 14220807c0,22322 -709,41928 -2008,58227 -1417,16889 -3425,30472 -6850,41928 -3307,11456 -7441,21023 -12165,29763 -4724,8858 -14882,21732 -31771,37913 -16299,16889 -44645,37204 -83975,62243 -39921,24448 -84565,46771 -133935,65668 -50196,19606 -103581,35196 -161808,46771 -58227,12165 -118462,18189 -180705,18189 -128620,0 -242358,-20905 -341214,-63542 -99447,-42046 -182713,-103581 -249090,-184839 -66967,-81258 -117754,-181414 -152950,-299168 -35196,-118462 -52794,-254523 -52794,-409481 0,-175272 21614,-326333 64251,-452826 43346,-125903 102282,-229484 176690,-310034 75117,-80550 163107,-140076 263972,-179406 101573,-38503 211177,-58227 329049,-58227 56810,0 111612,5433 165115,16299 54094,10157 102872,24330 148226,41338 44645,17598 85274,37204 119762,60235 35196,22322 60944,41928 76534,57519 16299,16181 27047,29055 33188,37913 5433,9449 10866,20315 14882,33188 3425,12165 6024,26338 7441,42637 1299,15472 2008,35787 2008,59526 0,51377 -6024,87282 -17598,108305 -12165,20315 -26338,30472 -43936,30472 -19724,0 -42637,-10866 -68385,-33188 -25748,-21614 -58227,-46062 -98148,-72400 -39921,-26456 -87991,-50786 -144210,-72518 -56219,-22322 -122478,-33070 -199012,-33070 -157674,0 -278853,60235 -362828,181414 -83857,120470 -125903,295743 -125903,525227 0,114329 10866,215193 32480,301884 22441,85983 54212,158383 96849,216610 41928,57519 94132,100864 155666,129210 61652,28464 132045,42637 211177,42637 75825,0 142202,-12165 199012,-35787 56928,-23740 105589,-50078 147635,-79251 41928,-28464 77125,-54094 105589,-77125 28346,-23740 50078,-35196 66259,-35196 8858,0 16889,2716 23740,8149 6732,5315 12165,14173 16889,26338 4724,12874 8149,28464 10157,48070 2008,18897 2716,41928 2716,68385z"/>\r
-  <path id="19" class="fil1" d="M110084434 14008212c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>\r
-  <polygon class="fil9" points="104139698,24017402 154989845,24017402 154989845,16327619 104139698,16327619 "/>\r
-  <polygon class="fil5 str0" points="104139698,24017402 154989845,24017402 154989845,16327619 104139698,16327619 "/>\r
-  <path class="fil1" d="M109511846 19107175c0,25039 -1299,46771 -4016,65078 -2716,18307 -7441,33188 -13582,44763 -6732,10866 -14173,19606 -23031,24330 -8858,5433 -17598,8149 -27165,8149l-940731 0 0 874354 889236 0c9567,0 18307,2008 27165,6732 8740,4724 16299,12283 23031,23031 6142,10866 10866,25157 13582,42755 2716,18307 4016,40629 4016,68385 0,25866 -1299,47479 -4016,65078 -2716,17716 -7441,32598 -13582,44054 -6732,10866 -14291,19724 -23031,25748 -8858,6142 -17598,8858 -27165,8858l-889236 0 0 1070886c0,9449 -2716,18307 -8031,27047 -5433,8149 -14291,15000 -27874,19724 -12874,4724 -30472,8740 -51495,12165 -21023,3425 -48779,4724 -83384,4724 -31771,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13464,-4724 -22322,-11575 -27755,-19724 -5433,-8740 -8149,-17598 -8149,-27047l0 -2379642c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l1154861 0c9567,0 18307,2716 27165,8031 8858,4842 16299,13582 23031,25866 6142,11456 10866,27047 13582,46062 2716,18897 4016,41338 4016,66377z"/>\r
-  <path id="1" class="fil1" d="M112165381 20207825c0,222398 -28464,416922 -85392,582982 -56928,166651 -140312,304246 -249444,413378 -109132,109132 -243303,191099 -401922,245311 -159328,54212 -348419,81376 -567982,81376l-544242 0c-30472,0 -59645,-10157 -86691,-30472 -27165,-21023 -40747,-56928 -40747,-108423l0 -2292242c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l581564 0c222988,0 410662,28464 564557,85983 153186,57637 281924,141021 386332,248736 103699,107833 182241,238578 235862,392473 53503,153186 80668,326687 80668,519794zm-357868 15000c0,-139013 -17008,-268460 -51495,-388339 -34606,-119998 -88817,-223697 -162044,-311097 -73818,-87518 -166769,-155312 -279916,-204681 -112439,-48897 -257594,-73227 -435110,-73227l-348419 0 0 2000751 351844 0c164643,0 302947,-20315 416095,-61652 112557,-40747 206689,-103699 281924,-188501 75944,-84684 132872,-191099 170194,-319246 37913,-127321 56928,-279208 56928,-454008z"/>\r
-  <path id="2" class="fil1" d="M113061349 21312608c0,94250 -15590,156611 -46771,187792 -31181,31181 -87400,46771 -169367,46771 -80077,0 -134879,-15590 -165469,-46062 -30472,-30590 -45354,-91534 -45354,-183068 0,-94250 15590,-156493 46771,-187674 31181,-31181 87400,-46771 169367,-46771 80077,0 134879,14882 165469,45354 29763,30472 45354,92242 45354,183658z"/>\r
-  <path id="3" class="fil1" d="M113994639 21481385c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-9449 2126,-18307 6850,-25748 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,16299 8149,25748l0 1787921zm36614 -2390508c0,77361 -14882,129446 -44054,157320 -29173,27755 -82676,42046 -161336,42046 -77243,0 -130037,-13582 -158501,-40747 -28464,-27047 -42755,-78542 -42755,-154485 0,-77243 14882,-129446 44054,-157320 29173,-27755 82676,-41928 161336,-41928 77243,0 130155,13464 158619,40629 28464,27165 42637,78660 42637,154485z"/>\r
-  <path id="4" class="fil1" d="M116257708 20566401c0,145745 -19015,279916 -57637,402631 -37913,122006 -95549,227712 -171375,316530 -75944,88699 -171493,157911 -285349,207398 -114565,49487 -247436,74526 -397906,74526 -147045,0 -275192,-21732 -384324,-65786 -109014,-43346 -199839,-107006 -272357,-190390 -72518,-83384 -126848,-185075 -162753,-303656 -35905,-119289 -53503,-254169 -53503,-405347 0,-145745 19015,-279916 56219,-401922 38031,-122596 94959,-228421 170784,-317120 75944,-88817 170784,-157320 284759,-206807 113856,-48779 246610,-73109 398497,-73109 147045,0 275192,21614 384206,65668 109132,43464 199957,107124 272475,190508 72518,83384 127439,184367 164052,303656 35905,119289 54212,253460 54212,403221zm-341569 21023c0,-96967 -8858,-188382 -27165,-274483 -17598,-86101 -47361,-161336 -88699,-226413 -40747,-65078 -96967,-116573 -167477,-153777 -69802,-38031 -157911,-56928 -262909,-56928 -96967,0 -180351,16889 -250153,51495 -69802,34488 -126730,83384 -172084,146336 -45472,63070 -78660,137596 -100392,223697 -22322,86101 -33188,180233 -33188,281924 0,98266 8858,190508 27165,276491 17598,86101 47361,161336 89408,225705 42046,63778 98266,115274 168068,152596 70511,37913 158619,56928 263735,56928 95549,0 178225,-17008 248736,-51613 70392,-34488 128029,-82676 173501,-145037 45354,-62361 78542,-136887 99565,-222988 21023,-85983 31889,-180942 31889,-283932z"/>\r
-  <path id="5" class="fil1" d="M119493989 21168989c0,21023 -709,39212 -2008,55511 -1417,15590 -3425,29173 -6850,41338 -3307,11575 -7441,22441 -12874,31889 -5315,8858 -14882,20315 -27755,33188 -13582,13582 -41338,33897 -83384,61062 -42637,27047 -95549,53503 -158501,79251 -63070,25748 -134879,47479 -216256,65078 -81967,18307 -170784,27047 -267751,27047 -166651,0 -317829,-27755 -452000,-83266 -134289,-55629 -249444,-137596 -343695,-246728 -94841,-108423 -168068,-242712 -218854,-401922 -50905,-159918 -76652,-343695 -76652,-551683 0,-213539 27874,-403339 82676,-570698 54920,-166769 132163,-308380 231846,-424244 99565,-115982 218264,-204091 357159,-265035 138305,-61062 292081,-91534 460267,-91534 74526,0 147045,6850 216846,20315 70511,14291 135588,31181 195233,52204 59645,21023 112439,45472 159210,73227 46062,27047 78660,50196 96258,67794 18307,17598 29763,31181 35196,40629 5433,8858 9567,19724 12874,32598 3425,12874 6142,27755 8149,44645 2008,17598 2716,38031 2716,61652 0,27165 -1299,49487 -4016,67794 -2716,19015 -6850,34606 -12283,47479 -4724,12165 -11456,21732 -18897,27755 -6850,6142 -16299,8858 -26456,8858 -19015,0 -44763,-12874 -78660,-38621 -33188,-25748 -75825,-54212 -128738,-85392 -52912,-31181 -116573,-59645 -191808,-85392 -75944,-25748 -166060,-38621 -271058,-38621 -115274,0 -219681,23031 -313223,68385 -94132,46062 -174800,113266 -241177,201965 -66495,88817 -118699,197241 -155312,325388 -36495,128029 -54802,274483 -54802,438535 0,163344 17598,307672 52794,432984 35314,125431 86101,230547 151887,314522 65668,84093 147045,147753 242594,191099 96258,42755 204681,64487 325978,64487 102400,0 192516,-12874 269050,-38031 76652,-25039 141730,-52794 195233,-83975 54212,-31181 98266,-59054 132872,-84093 35196,-25039 62361,-37913 81967,-37913 9567,0 17598,2008 24448,6024 6732,4134 11456,11575 15590,22441 4016,11456 7441,27047 9449,46771 2008,19606 2716,44645 2716,75235z"/>\r
-  <path id="6" class="fil1" d="M121488008 20809704c0,119998 -22441,227122 -66495,321254 -44645,93542 -106415,173501 -184957,239287 -78660,65078 -171493,114565 -277908,147753 -107124,33188 -221689,49487 -344994,49487 -86101,0 -166060,-7441 -239287,-21732 -73818,-14882 -139604,-33188 -197241,-54212 -57519,-21023 -105707,-43346 -145037,-65668 -38621,-23149 -66377,-42046 -81258,-58345 -15590,-15590 -26456,-35905 -33897,-60353 -7441,-24330 -10866,-56928 -10866,-97557 0,-29173 1417,-53503 4134,-72518 2598,-19015 6732,-34606 11456,-46062 5433,-12283 12165,-20315 20315,-25157 8149,-4724 17008,-6732 27874,-6732 18189,0 44645,11575 78542,33897 33188,22322 76652,46771 130155,73227 52912,25748 116573,50786 191808,73818 74526,23031 161336,34606 258893,34606 74526,0 142320,-10157 203973,-29881 61771,-19606 114565,-47361 158619,-83975 44763,-35905 78660,-80668 102400,-133580 23740,-52794 35905,-113148 35905,-180233 0,-72518 -16299,-134879 -49487,-186375 -33188,-51495 -76652,-96967 -130864,-136297 -54802,-38621 -116573,-74526 -185666,-107006 -69802,-32598 -141021,-65078 -213539,-98975 -72518,-33897 -143619,-71219 -212122,-112557 -69093,-40629 -130746,-88817 -184957,-144328 -54212,-55629 -98266,-120706 -131572,-195823 -33897,-74644 -50786,-164052 -50786,-268460 0,-107715 19606,-203264 58227,-287357 39330,-83384 93542,-153895 162753,-210823 69802,-56928 152478,-100274 248027,-130155 96258,-29763 199248,-44645 310388,-44645 56928,0 113856,4724 171493,14882 57637,10157 111848,23031 162635,40039 50905,16181 96258,35196 136297,55511 39330,20315 65668,37322 77951,49487 12874,12874 21023,22322 25039,29881 4016,7441 6732,16889 9449,27755 2716,11456 4842,25039 6142,41338 1299,15590 2008,35905 2008,61652 0,23740 -709,44763 -2716,63660 -2008,18307 -5433,33897 -9449,46771 -3425,12283 -9449,21732 -16299,27874 -7441,6024 -15590,8740 -25039,8740 -14882,0 -37322,-9449 -68503,-27755 -31181,-19015 -69093,-39330 -114565,-63070 -44645,-23031 -98266,-44054 -159918,-62952 -60944,-19724 -130155,-29173 -207398,-29173 -71101,0 -133462,9449 -186375,28464 -52794,19606 -96849,44763 -131454,76534 -33897,31889 -59645,69211 -77243,112557 -17008,44054 -25748,90116 -25748,138895 0,71219 16181,132872 49487,184367 33188,51495 77243,96967 132163,136887 55511,40039 117872,75944 188382,109132 69802,33188 141612,66495 214839,100392 72518,33897 144328,70392 214130,111140 70511,39921 132872,88109 188501,143029 54802,54802 98856,119289 132754,194406 33897,74644 50905,162753 50905,265035z"/>\r
-  <path id="7" class="fil1" d="M122474092 21479377c0,10866 -2716,20315 -8031,27755 -5433,8149 -14291,14291 -27874,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49487,4724 -82676,4724 -31771,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2467042c0,-10866 2716,-20315 8858,-27874 6024,-8031 16299,-14173 29763,-18897 14291,-4724 31889,-8858 53621,-12283 21614,-3307 48070,-4724 78542,-4724 33188,0 60353,1417 82676,4724 21732,3425 39330,7559 52204,12283 13582,4724 22441,10866 27874,18897 5315,7559 8031,17008 8031,27874l0 2467042z"/>\r
-  <path id="8" class="fil1" d="M124926253 19107175c0,25039 -1417,46771 -4134,65078 -2716,18307 -6732,33188 -12874,44763 -6024,10866 -12874,19606 -21614,24330 -8858,5433 -18307,8149 -28464,8149l-721877 0 0 2229881c0,10866 -2716,19606 -8149,27755 -5433,8149 -14173,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49487,4724 -82676,4724 -31889,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8149 -8149,-16889 -8149,-27755l0 -2229881 -721759 0c-10275,0 -19724,-2716 -28464,-8149 -8858,-4724 -15590,-13464 -21023,-24330 -4842,-11575 -9567,-26456 -12874,-44763 -3425,-18307 -4842,-40039 -4842,-65078 0,-25039 1417,-47479 4842,-66377 3307,-19015 8031,-34606 12874,-46062 5433,-12283 12165,-21023 21023,-25866 8740,-5315 18189,-8031 28464,-8031l1785204 0c10157,0 19606,2716 28464,8031 8740,4842 15590,13582 21614,25866 6142,11456 10157,27047 12874,46062 2716,18897 4134,41338 4134,66377z"/>\r
-  <path id="9" class="fil1" d="M128010056 21479377c0,10866 -2008,19606 -6142,27755 -4016,8149 -12165,14882 -25748,20315 -12874,4724 -31889,8858 -55511,11575 -23740,2716 -55629,4016 -94959,4016 -34488,0 -62952,-1299 -84684,-4016 -21732,-2716 -39330,-6850 -52912,-12874 -12874,-6142 -23031,-14291 -30472,-25039 -7441,-10275 -13582,-23740 -19015,-39330l-235862 -606603c-27755,-69211 -56928,-132163 -86691,-189800 -29881,-57637 -65078,-107124 -106415,-149171 -40629,-41928 -89526,-73818 -145037,-97557 -55629,-23031 -122714,-34606 -200666,-34606l-228421 0 0 1095335c0,10866 -2716,19606 -8740,27755 -6142,8149 -15590,14291 -27755,19015 -12992,4724 -29881,8740 -51613,12165 -22322,3425 -49487,4724 -82676,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39330,-7441 -52204,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2379642c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l546250 0c65078,0 118699,1299 162044,4724 42637,3307 81258,7441 115864,10866 99683,17598 187083,44645 263617,81258 75944,37322 139604,84093 191217,141021 52086,56928 90825,122006 116573,195823 25748,73227 38621,154604 38621,243303 0,85392 -11575,162753 -34606,231138 -23740,67794 -56928,128147 -100274,180351 -44054,52204 -96258,97557 -157320,136179 -60944,37913 -128738,70511 -204681,96967 42755,18897 80668,41928 115274,70392 34606,28582 66377,63070 96258,102400 29763,40039 58227,86101 84684,137596 26456,51495 52912,109841 79369,174800l230429 566683c18307,47479 30472,81258 35196,100274 5433,19015 8149,33897 8149,44763zm-514479 -1806936c0,-100274 -22322,-185666 -67794,-255468 -44645,-69211 -119880,-119289 -226295,-149879 -33188,-9449 -70511,-15590 -111848,-19606 -42046,-4016 -96258,-6142 -164052,-6142l-288066 0 0 866205 333537 0c90116,0 168068,-10866 233854,-32480 64959,-22441 119880,-52912 163344,-91534 44054,-39330 75825,-85392 96849,-138305 20315,-52794 30472,-110431 30472,-172792z"/>\r
-  <path id="10" class="fil1" d="M129876046 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>\r
-  <path id="11" class="fil1" d="M130707527 21481385c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -2652118c0,-10748 2126,-20315 6850,-27755 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,17008 8149,27755l0 2652118z"/>\r
-  <path id="12" class="fil1" d="M132832410 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>\r
-  <path id="13" class="fil1" d="M134680565 21483392c0,15590 -5433,27874 -15590,35905 -10866,8149 -25039,13582 -44054,17716 -18307,4016 -45354,6024 -81376,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44763,-17716 -9449,-8031 -14173,-19606 -14173,-35905l0 -178934c-77951,83384 -164761,148462 -261019,194524 -96140,45472 -197831,68503 -304955,68503 -94250,0 -179642,-12165 -255468,-36614 -75944,-24448 -141021,-60353 -194524,-106415 -53621,-46062 -95549,-103699 -125431,-170784 -29763,-67794 -44763,-144328 -44763,-230429 0,-100982 20433,-188382 61771,-262318 40629,-74526 99565,-136179 176808,-185075 76652,-48779 170784,-85983 282042,-110431 111140,-24448 236452,-36614 375466,-36614l246728 0 0 -139604c0,-68503 -7559,-129446 -21732,-182949 -14882,-52912 -37913,-96967 -70511,-132163 -32480,-35314 -74526,-61771 -126021,-79369 -51495,-18307 -115274,-27047 -190508,-27047 -80668,0 -153186,9449 -216846,29055 -64369,19724 -120706,40747 -168776,64487 -48070,23622 -88817,44645 -121297,64369 -31889,19606 -56338,29173 -71810,29173 -10866,0 -20433,-2716 -27874,-8149 -8149,-4724 -14882,-12874 -21023,-23740 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54920 0,-32480 2008,-58936 6732,-77833 4724,-19015 16299,-37322 33897,-54330 17598,-16889 48779,-37204 92242,-60944 43346,-23031 94132,-44763 151060,-64369 56338,-19015 118699,-35314 186375,-48188 67204,-12874 135588,-18897 204091,-18897 128029,0 237161,14173 327278,43346 90235,29173 162753,72518 218264,128738 55629,56338 95549,126139 120706,209406 25039,83384 37913,181060 37913,292199l0 1206356zm-325270 -818725l-279916 0c-89526,0 -167477,7441 -233854,23031 -65786,15000 -120706,38031 -164761,67794 -43346,29881 -75235,65078 -96258,107124 -20315,42046 -30472,90116 -30472,144328 0,92833 29173,166769 88109,221689 58936,54802 141021,82676 247436,82676 85392,0 165351,-21732 238578,-65786 73109,-43346 150470,-110431 231138,-200666l0 -380190z"/>\r
-  <path id="14" class="fil1" d="M136404708 20993362c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>\r
-  <path id="15" class="fil1" d="M138394002 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>\r
-  <path id="16" class="fil1" d="M141606425 21479377c0,10866 -2008,19606 -6142,27755 -4016,8149 -12165,14882 -25748,20315 -12874,4724 -31889,8858 -55511,11575 -23740,2716 -55629,4016 -94959,4016 -34488,0 -62952,-1299 -84684,-4016 -21732,-2716 -39330,-6850 -52912,-12874 -12874,-6142 -23031,-14291 -30472,-25039 -7441,-10275 -13582,-23740 -19015,-39330l-235862 -606603c-27755,-69211 -56928,-132163 -86691,-189800 -29881,-57637 -65078,-107124 -106415,-149171 -40629,-41928 -89526,-73818 -145037,-97557 -55629,-23031 -122714,-34606 -200666,-34606l-228421 0 0 1095335c0,10866 -2716,19606 -8740,27755 -6142,8149 -15590,14291 -27755,19015 -12992,4724 -29881,8740 -51613,12165 -22322,3425 -49487,4724 -82676,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39330,-7441 -52204,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2379642c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l546250 0c65078,0 118699,1299 162044,4724 42637,3307 81258,7441 115864,10866 99683,17598 187083,44645 263617,81258 75944,37322 139604,84093 191217,141021 52086,56928 90825,122006 116573,195823 25748,73227 38621,154604 38621,243303 0,85392 -11575,162753 -34606,231138 -23740,67794 -56928,128147 -100274,180351 -44054,52204 -96258,97557 -157320,136179 -60944,37913 -128738,70511 -204681,96967 42755,18897 80668,41928 115274,70392 34606,28582 66377,63070 96258,102400 29763,40039 58227,86101 84684,137596 26456,51495 52912,109841 79369,174800l230429 566683c18307,47479 30472,81258 35196,100274 5433,19015 8149,33897 8149,44763zm-514479 -1806936c0,-100274 -22322,-185666 -67794,-255468 -44645,-69211 -119880,-119289 -226295,-149879 -33188,-9449 -70511,-15590 -111848,-19606 -42046,-4016 -96258,-6142 -164052,-6142l-288066 0 0 866205 333537 0c90116,0 168068,-10866 233854,-32480 64959,-22441 119880,-52912 163344,-91534 44054,-39330 75825,-85392 96849,-138305 20315,-52794 30472,-110431 30472,-172792z"/>\r
-  <path id="17" class="fil1" d="M143472415 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>\r
-  <path id="18" class="fil1" d="M145617376 20558252c0,156611 -16889,296924 -50786,421646 -33188,124014 -82676,229720 -148462,316412 -65078,86809 -146336,153895 -242594,200666 -96258,46771 -206689,70511 -330703,70511 -52912,0 -101691,-5433 -146454,-15590 -45354,-10866 -88817,-27165 -132163,-50196 -42637,-22322 -85392,-50786 -127439,-85392 -42637,-33897 -87400,-74526 -134879,-120588l0 895259c0,10866 -2716,19724 -8149,27874 -5433,8031 -13464,14882 -25748,20315 -12165,4724 -28464,8740 -50078,11456 -21023,2716 -48188,4134 -81376,4134 -32480,0 -58936,-1417 -79959,-4134 -21732,-2716 -38621,-6732 -50786,-11456 -12992,-5433 -21732,-12283 -26456,-20315 -4724,-8149 -6850,-17008 -6850,-27874l0 -2497514c0,-12165 2126,-21732 6142,-29173 4016,-6732 12165,-13582 23740,-18307 12165,-5433 27047,-9449 46062,-11456 18307,-2126 41338,-2716 67794,-2716 27755,0 50786,591 69093,2716 17598,2008 32598,6024 44763,10748 12165,5433 20315,12283 25039,19015 4724,7441 6850,17008 6850,29173l0 239287c54212,-55629 106415,-103699 156493,-145037 50196,-40747 100982,-74644 151887,-101691 50786,-27165 102990,-48188 156493,-61652 53621,-14291 109841,-21023 169485,-21023 129446,0 239287,25039 330703,75235 90825,50786 165351,119289 222988,206689 57637,87400 99683,189091 126139,304955 26338,115982 39212,238578 39212,368025zm-341569 38031c0,-91534 -6732,-180351 -21023,-265743 -13464,-85392 -37913,-161336 -71101,-227712 -33897,-66377 -79369,-119289 -136297,-159328 -56928,-39921 -128029,-59645 -212831,-59645 -42637,0 -83975,6142 -125313,19015 -40629,12874 -82676,32598 -125431,59645 -42046,27165 -86691,63070 -132872,107833 -46062,44645 -95549,99565 -147045,164643l0 711011c90116,110431 175627,194524 256176,253460 81376,58227 166060,87400 254877,87400 81967,0 152478,-19606 211414,-59645 59054,-39921 106415,-92833 143029,-159210 36614,-66495 63070,-140312 80668,-222988 17008,-82085 25748,-165469 25748,-248736z"/>\r
-  <path id="19" class="fil1" d="M147770015 20566401c0,145745 -19015,279916 -57637,402631 -37913,122006 -95549,227712 -171375,316530 -75944,88699 -171493,157911 -285349,207398 -114565,49487 -247436,74526 -397906,74526 -147045,0 -275192,-21732 -384324,-65786 -109014,-43346 -199839,-107006 -272357,-190390 -72518,-83384 -126848,-185075 -162753,-303656 -35905,-119289 -53503,-254169 -53503,-405347 0,-145745 19015,-279916 56219,-401922 38031,-122596 94959,-228421 170784,-317120 75944,-88817 170784,-157320 284759,-206807 113856,-48779 246610,-73109 398497,-73109 147045,0 275192,21614 384206,65668 109132,43464 199957,107124 272475,190508 72518,83384 127439,184367 164052,303656 35905,119289 54212,253460 54212,403221zm-341569 21023c0,-96967 -8858,-188382 -27165,-274483 -17598,-86101 -47361,-161336 -88699,-226413 -40747,-65078 -96967,-116573 -167477,-153777 -69802,-38031 -157911,-56928 -262909,-56928 -96967,0 -180351,16889 -250153,51495 -69802,34488 -126730,83384 -172084,146336 -45472,63070 -78660,137596 -100392,223697 -22322,86101 -33188,180233 -33188,281924 0,98266 8858,190508 27165,276491 17598,86101 47361,161336 89408,225705 42046,63778 98266,115274 168068,152596 70511,37913 158619,56928 263735,56928 95549,0 178225,-17008 248736,-51613 70392,-34488 128029,-82676 173501,-145037 45354,-62361 78542,-136887 99565,-222988 21023,-85983 31889,-180942 31889,-283932z"/>\r
-  <path id="20" class="fil1" d="M149300459 19809328c0,29173 -709,53621 -2008,73227 -1417,19606 -4134,35196 -8149,46771 -3425,11456 -8858,19606 -14882,25748 -5433,6142 -13582,8858 -24448,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6142 -32480,-12165 -51495,-17598 -19015,-6142 -40629,-11575 -64369,-17008 -23740,-5433 -49487,-8149 -77243,-8149 -33306,0 -65786,6850 -97675,19724 -31181,13582 -65078,35196 -99565,66377 -35314,30472 -71928,71219 -110549,121297 -37913,50905 -80668,112557 -126730,185784l0 1175884c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-10866 2126,-19606 6142,-27165 4016,-6732 11575,-13464 23740,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73936,-2716 29055,0 53503,591 72518,2716 19606,2008 34488,6024 45354,12165 10157,6142 18307,12874 23031,19606 4134,7559 6850,16299 6850,27165l0 260310c48779,-71928 94841,-130155 137478,-175627 43464,-44763 84093,-80668 122006,-106415 38621,-25748 76652,-43346 113856,-53503 38031,-10157 75944,-14882 114565,-14882 17008,0 36614,591 58345,2716 21614,2008 44645,6024 68385,10748 23740,5433 45472,11575 64487,18307 18897,6850 32480,12874 40629,19724 8149,6732 13582,12874 15590,19015 2716,6024 5433,13464 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,42046 709,72518z"/>\r
-  <path id="21" class="fil1" d="M150600475 21348513c0,38621 -2716,69211 -8149,91534 -4724,22322 -12874,39330 -23740,49487 -10157,10866 -26456,21023 -47479,29763 -21023,9567 -45354,17008 -72518,23149 -27047,6024 -55511,10748 -86101,14882 -30472,4016 -60235,6024 -90825,6024 -92833,0 -172084,-12165 -237870,-36495 -65668,-24448 -119998,-61771 -162635,-111258 -42046,-49369 -72518,-112439 -92124,-188382 -19015,-75944 -28464,-165351 -28464,-268342l0 -1042422 -251452 0c-19724,0 -36023,-10866 -48188,-31889 -11456,-21023 -17598,-55511 -17598,-103699 0,-25039 1299,-46062 4724,-62952 3425,-17716 8149,-31889 12874,-43464 5433,-10866 12874,-18897 21023,-23740 8858,-4724 18307,-6732 29173,-6732l249444 0 0 -424244c0,-9567 2008,-18307 6732,-25748 4724,-8149 13582,-15000 26456,-21023 12165,-6142 29055,-10157 50786,-12874 21023,-2716 47479,-4134 79959,-4134 33188,0 60353,1417 81376,4134 21614,2716 37913,6732 50078,12874 12283,6024 20433,12874 25866,21023 5315,7441 8031,16181 8031,25748l0 424244 455543 0c10866,0 19606,2008 27755,6732 7441,4842 14882,12874 20315,23740 6142,11575 10157,25748 12874,43464 2716,16889 4134,37913 4134,62952 0,48188 -6142,82676 -17716,103699 -12165,21023 -27755,31889 -47361,31889l-455543 0 0 994234c0,122714 18307,215547 54330,277908 35905,63070 100982,94250 194406,94250 29881,0 56928,-2716 80668,-8858 23740,-6142 44763,-12165 63070,-19015 18307,-6732 33897,-12874 47479,-18897 12874,-6142 25039,-8858 35196,-8858 6732,0 12874,1417 19015,4724 5433,3425 10157,9567 13582,19015 3307,9449 6024,21732 8740,37913 2716,15590 4134,35905 4134,59645z"/>\r
-  <path id="22" class="fil1" d="M152157849 20993362c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>\r
-  <polygon class="fil9" points="64472382,24206965 77279552,24206965 77279552,16517065 64472382,16517065 "/>\r
-  <polygon class="fil5 str0" points="64472382,24206965 77279552,24206965 77279552,16517065 64472382,16517065 "/>\r
-  <path class="fil1" d="M69224107 20399042c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>\r
-  <path id="1" class="fil1" d="M71369068 20757146c0,145509 -18897,279562 -57519,402040 -37913,121888 -95431,227476 -171257,316057 -75825,88699 -171257,157792 -284877,207162 -114447,49369 -247082,74408 -397316,74408 -146926,0 -274838,-21614 -383851,-65550 -109014,-43346 -199721,-107006 -272121,-190272 -72400,-83266 -126612,-184721 -162399,-303184 -35905,-119171 -53503,-253814 -53503,-404756 0,-145627 18897,-279562 56219,-401449 37913,-122478 94723,-228067 170548,-316766 75825,-88699 170548,-157084 284286,-206453 113738,-48779 246374,-73109 398024,-73109 146808,0 274838,21614 383733,65668 109014,43346 199721,106888 272121,190154 72400,83266 127202,184131 163816,303302 35905,119053 54094,253106 54094,402749zm-341096 20905c0,-96731 -8740,-188146 -27047,-274129 -17598,-85865 -47361,-161099 -88699,-226059 -40629,-64959 -96849,-116336 -167241,-153659 -69684,-37913 -157674,-56810 -262554,-56810 -96849,0 -180115,16889 -249799,51377 -69684,34606 -126612,83266 -171965,146218 -45354,62952 -78424,137478 -100156,223461 -22322,85865 -33188,179997 -33188,281570 0,98148 8858,190154 27165,276137 17598,85983 47361,161099 89290,225350 41928,63660 98148,115155 167832,152359 70392,37913 158383,56810 263381,56810 95431,0 177989,-16889 248381,-51377 70392,-34606 127911,-82676 173265,-144919 45354,-62243 78542,-136651 99565,-222634 20905,-85983 31771,-180705 31771,-283696z"/>\r
-  <path id="2" class="fil1" d="M73137147 21396111c0,22322 -709,41928 -2008,58227 -1417,16889 -3425,30472 -6850,41928 -3307,11456 -7441,21023 -12165,29763 -4724,8858 -14882,21732 -31771,37913 -16299,16889 -44645,37204 -83975,62243 -39921,24448 -84565,46771 -133935,65668 -50196,19606 -103581,35196 -161808,46771 -58227,12165 -118462,18189 -180705,18189 -128620,0 -242358,-20905 -341214,-63542 -99447,-42046 -182713,-103581 -249090,-184839 -66967,-81258 -117754,-181414 -152950,-299168 -35196,-118462 -52794,-254523 -52794,-409481 0,-175272 21614,-326333 64251,-452826 43346,-125903 102282,-229484 176690,-310034 75117,-80550 163107,-140076 263972,-179406 101573,-38503 211177,-58227 329049,-58227 56810,0 111612,5433 165115,16299 54094,10157 102872,24330 148226,41338 44645,17598 85274,37204 119762,60235 35196,22322 60944,41928 76534,57519 16299,16181 27047,29055 33188,37913 5433,9449 10866,20315 14882,33188 3425,12165 6024,26338 7441,42637 1299,15472 2008,35787 2008,59526 0,51377 -6024,87282 -17598,108305 -12165,20315 -26338,30472 -43936,30472 -19724,0 -42637,-10866 -68385,-33188 -25748,-21614 -58227,-46062 -98148,-72400 -39921,-26456 -87991,-50786 -144210,-72518 -56219,-22322 -122478,-33070 -199012,-33070 -157674,0 -278853,60235 -362828,181414 -83857,120470 -125903,295743 -125903,525227 0,114329 10866,215193 32480,301884 22441,85983 54212,158383 96849,216610 41928,57519 94132,100864 155666,129210 61652,28464 132045,42637 211177,42637 75825,0 142202,-12165 199012,-35787 56928,-23740 105589,-50078 147635,-79251 41928,-28464 77125,-54094 105589,-77125 28346,-23740 50078,-35196 66259,-35196 8858,0 16889,2716 23740,8149 6732,5315 12165,14173 16889,26338 4724,12874 8149,28464 10157,48070 2008,18897 2716,41928 2716,68385z"/>\r
-  <path id="3" class="fil1" d="M74691922 21183516c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>\r
-  <polygon class="fil9" points="82397059,24206965 100294807,24206965 100294807,16517065 82397059,16517065 "/>\r
-  <polygon class="fil5 str0" points="82397059,24206965 100294807,24206965 100294807,16517065 82397059,16517065 "/>\r
-  <path class="fil1" d="M86133527 19299810c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <path id="1" class="fil1" d="M87259924 20001018c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>\r
-  <path id="2" class="fil1" d="M89097686 20700218c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="3" class="fil1" d="M91134460 21670948c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>\r
-  <path id="4" class="fil1" d="M93259816 21670948c0,10748 -2008,19606 -6732,27755 -4724,8031 -12874,14173 -23740,18897 -11456,4724 -26338,8149 -44645,10866 -19015,2716 -41338,4016 -67676,4016 -27755,0 -50786,-1299 -69093,-4016 -18897,-2716 -33779,-6142 -45944,-10866 -11575,-4724 -20315,-10866 -25748,-18897 -4724,-8149 -7441,-17598 -7441,-27755l0 -237634c-94132,102164 -191571,181414 -292436,238224 -101573,56928 -211886,85274 -332356,85274 -130628,0 -242358,-25629 -334364,-76416 -92715,-50786 -167832,-119880 -225350,-206453 -56928,-86691 -98856,-188146 -125313,-305309 -26338,-117045 -39921,-240232 -39921,-369560 0,-153659 16299,-292436 49487,-415622 33070,-123777 81849,-229484 146808,-316766 64369,-87282 144919,-154367 240941,-201020 95431,-46653 205862,-70392 331766,-70392 104171,0 199603,23031 286294,68385 86573,46062 171847,113029 256531,201729l0 -1034981c0,-9449 2008,-18307 6732,-27047 4724,-8858 13582,-14882 27047,-19606 12874,-4842 29881,-8858 50078,-12283 21023,-3307 46771,-4724 78542,-4724 33188,0 60235,1417 81258,4724 21023,3425 37913,7441 49369,12283 12283,4724 21023,10748 27165,19606 6024,8740 8740,17598 8740,27047l0 2640543zm-328931 -1257025c-87991,-110313 -173265,-194288 -255822,-251806 -82676,-57519 -168658,-86573 -257948,-86573 -83266,0 -153659,19606 -211886,59526 -58227,39921 -104880,92006 -141494,157084 -35787,64251 -62243,138068 -78424,219917 -17008,81967 -25039,165233 -25039,249799 0,89998 6732,177989 20905,263972 13582,85983 37913,162399 71810,229484 34488,66967 79841,120470 136651,161099 56219,39921 128029,60235 213303,60235 43228,0 85274,-6142 125903,-17598 39921,-12165 81140,-31889 123187,-59526 41928,-27755 86573,-63660 132635,-108305 46062,-44054 94723,-98148 146218,-163225l0 -714082z"/>\r
-  <path id="5" class="fil1" d="M94195232 21670948c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-9449 2008,-18189 6732,-25748 4724,-8031 13582,-14882 26456,-20196 12165,-4842 29055,-8858 50786,-11575 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11575 12165,5315 20315,12165 25629,20196 5433,7559 8149,16299 8149,25748l0 1785676zm36614 -2387437c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28464,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28346,27047 42637,78542 42637,154249z"/>\r
-  <path id="6" class="fil1" d="M96333579 21670948c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>\r
-  <path id="7" class="fil1" d="M98422439 19968538c0,46771 -6142,79841 -19015,100864 -12165,20315 -28464,30472 -48661,30472l-256649 0c46771,47361 79251,99447 97557,156375 18189,56810 27755,116455 27755,177989 0,102872 -16299,194288 -49487,273420 -33070,79251 -80550,146218 -142084,201138 -61652,55393 -134761,97439 -219327,126494 -84565,29173 -178698,43346 -281570,43346 -72400,0 -142202,-9449 -207162,-28464 -65668,-19606 -116455,-43228 -152241,-72400 -22322,23740 -40629,50786 -55511,81258 -14291,31062 -21732,66259 -21732,105589 0,46653 21732,85274 64369,115746 42637,31062 100156,47361 171257,50078l464992 19606c87991,2716 169249,14882 242948,36614 73818,22322 138186,52794 192280,93305 54094,40039 96140,90116 126612,148344 30472,58818 45354,127202 45354,205036 0,81967 -17008,159800 -51495,233500 -34488,73818 -86573,138777 -157674,194996 -70392,56101 -161099,100864 -270822,132635 -109604,32480 -238933,48779 -388458,48779 -144210,0 -266688,-12165 -367552,-36614 -100864,-24330 -184131,-58227 -249090,-100156 -64369,-42637 -111730,-92715 -140785,-151651 -29173,-58818 -43346,-123187 -43346,-191571 0,-43936 5433,-85865 15590,-127202 10866,-40629 27047,-79841 48661,-117045 21732,-36614 48779,-72518 81258,-105589 32480,-33897 69684,-67085 112439,-100274 -64369,-33188 -111730,-75117 -142911,-125195 -30472,-50078 -45944,-104171 -45944,-162399 0,-80550 16181,-153068 48661,-216610 32480,-62952 72400,-119880 120470,-170548 -40629,-48779 -73109,-103581 -96731,-165233 -23740,-61534 -35905,-136061 -35905,-223342 0,-101573 16889,-192871 51495,-273420 34488,-80550 81849,-148934 142793,-204445 60944,-55511 134053,-98148 219327,-127911 85274,-29763 178698,-44763 278853,-44763 54802,0 104880,3425 152241,9567 46771,6732 90707,15472 132045,27047l539518 0c22913,0 39212,10866 50668,32480 11575,22322 17008,55511 17008,100156zm-511762 468417c0,-121179 -33188,-215902 -100156,-283578 -67085,-68385 -161808,-102282 -284286,-102282 -63660,0 -119171,10866 -165824,31889 -46771,20905 -85983,50078 -117163,86573 -31062,37204 -54094,79959 -68975,127911 -15590,48070 -23031,98856 -23031,151651 0,117163 33188,209169 100156,276845 66967,67085 160391,100864 280861,100864 64369,0 120470,-10157 168540,-30472 47479,-20905 86691,-48661 117872,-85274 31062,-36495 54094,-78542 68975,-125903 15590,-47361 23031,-96731 23031,-148226zm162399 1412691c0,-76534 -31062,-135470 -94014,-177398 -62243,-41220 -147635,-63660 -254523,-66377l-460976 -15472c-41928,33070 -77125,64251 -104171,94014 -27165,29763 -48070,57519 -64369,84684 -15590,27047 -26338,54094 -32480,80550 -6142,26338 -8740,53385 -8740,80550 0,85865 43228,150942 130628,194878 87282,44054 208461,66377 364127,66377 98856,0 182123,-9449 248381,-28464 67085,-19606 120470,-44645 161099,-76534 41338,-31771 70392,-67676 88699,-108187 17598,-41338 26338,-83975 26338,-128620z"/>\r
-  <polygon class="fil9" points="24831994,24179801 58082261,24179801 58082261,16517065 24831994,16517065 "/>\r
-  <polygon class="fil5 str0" points="24831994,24179801 58082261,24179801 58082261,16517065 24831994,16517065 "/>\r
-  <path class="fil1" d="M29581121 21058912c0,101455 -9449,194878 -27755,279562 -18307,84565 -50078,156257 -95431,215902 -44645,59526 -104289,105589 -177280,138068 -73109,32480 -164525,48661 -272830,48661 -37204,0 -73818,-2598 -110313,-8740 -35905,-5433 -69802,-12874 -100156,-22322 -30472,-9449 -56928,-19606 -79251,-29763 -22322,-10866 -37204,-20315 -44645,-28464 -7441,-7441 -12874,-15590 -17598,-23740 -4724,-8031 -8858,-17598 -12165,-29055 -3425,-10866 -5433,-25039 -6850,-41338 -1299,-16889 -2008,-37204 -2008,-60826 0,-29173 709,-53503 2716,-73109 2008,-19015 6142,-34606 11575,-45354 4724,-11575 11456,-19724 18189,-24448 7441,-4724 16299,-6732 27047,-6732 10866,0 24448,4724 40629,14882 16299,9449 36614,20315 59645,31771 23031,11575 50078,22441 80550,31889 30472,10157 65668,14882 106888,14882 44645,0 83266,-5433 115037,-16889 31889,-11575 58227,-31889 79251,-62361 21023,-30472 37204,-72400 48070,-126494 10157,-53503 15590,-123187 15590,-209169l0 -1838471c0,-9449 2716,-17598 8031,-25629 5433,-8149 14291,-14882 27755,-20315 12874,-4724 30472,-8858 52204,-11575 22322,-2716 49369,-4016 82558,-4016 31771,0 58818,1299 81258,4016 22322,2716 39921,6850 52794,11575 12165,5433 21614,12165 27755,20315 6024,8031 8740,16181 8740,25629l0 1871659z"/>\r
-  <path id="1" class="fil1" d="M31740964 20684509c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="2" class="fil1" d="M33777738 21655240c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>\r
-  <path id="3" class="fil1" d="M35842149 21653114c0,10866 -2716,20315 -8031,27755 -5433,8149 -14291,14882 -26456,20315 -12874,4724 -30472,8858 -52794,11575 -22322,2716 -50786,4016 -85274,4016 -35196,0 -64959,-709 -87991,-2716 -23031,-2008 -42637,-5433 -58227,-10157 -16299,-4724 -29055,-11456 -38621,-19606 -10157,-8740 -18897,-18897 -27047,-31181l-752703 -988211 0 990336c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 1613002 672153 -741837c10866,-13582 22322,-24330 33897,-33188 12165,-8149 26338,-15590 42637,-21614 16181,-6142 35787,-10157 58227,-12165 22322,-2126 49369,-2716 81140,-2716 33188,0 60944,591 83266,2716 22322,2008 40629,5433 54212,10157 13464,4724 23622,10748 29763,17598 6024,7441 8740,16889 8740,29055 0,15590 -4016,31771 -12874,47361 -8740,16299 -22322,34606 -42637,55511l-642981 647114 724239 942266c16889,22913 29173,40511 36614,54802 7441,14173 10748,27047 10748,38503z"/>\r
-  <path id="4" class="fil1" d="M36551507 21655240c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-9449 2008,-18189 6732,-25748 4724,-8031 13582,-14882 26456,-20196 12165,-4842 29055,-8858 50786,-11575 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11575 12165,5315 20315,12165 25629,20196 5433,7559 8149,16299 8149,25748l0 1785676zm36614 -2387437c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28464,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28346,27047 42637,78542 42637,154249z"/>\r
-  <path id="5" class="fil1" d="M38689854 21655240c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>\r
-  <path id="6" class="fil1" d="M40409036 21167808c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>\r
-  <path id="7" class="fil1" d="M43543034 21653114c0,10866 -2008,19724 -6024,27755 -4134,8149 -12283,14882 -25748,20315 -12874,4724 -31889,8858 -55511,11575 -23740,2716 -55511,4016 -94841,4016 -34488,0 -62834,-1299 -84565,-4016 -21614,-2716 -39212,-6850 -52794,-12874 -12874,-6142 -23031,-14173 -30472,-25039 -7441,-10157 -13464,-23740 -18897,-39330l-235626 -605776c-27755,-68975 -56810,-131927 -86573,-189445 -29763,-57637 -64959,-107006 -106297,-148934 -40629,-42046 -89290,-73818 -144801,-97557 -55511,-22913 -122596,-34488 -200429,-34488l-228067 0 0 1093799c0,10866 -2716,19724 -8858,27755 -6024,8149 -15472,14291 -27755,19015 -12874,4724 -29763,8740 -51377,12165 -22322,3425 -49487,4724 -82558,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39212,-7441 -52086,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2376453c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l545541 0c64959,0 118462,1417 161808,4724 42637,3425 81140,7441 115746,10866 99447,17598 186847,44645 263263,81258 75825,37204 139486,83857 190863,140785 52204,56810 90707,121769 116455,195587 25748,73109 38621,154367 38621,242948 0,85274 -11575,162517 -34606,230901 -23622,67676 -56810,127911 -100156,179997 -43936,52086 -96140,97439 -156966,136061 -60944,37913 -128620,70392 -204445,96731 42637,19015 80550,42046 115037,70511 34488,28346 66377,62952 96140,102164 29763,39921 58227,85983 84565,137360 26456,51495 52794,109722 79251,174682l230075 565856c18307,47361 30472,81258 35196,100156 5433,19015 8149,33897 8149,44645zm-513770 -1804456c0,-100274 -22322,-185548 -67676,-255232 -44645,-69093 -119762,-119171 -226059,-149643 -33188,-9449 -70392,-15472 -111730,-19606 -41928,-4016 -96022,-6024 -163698,-6024l-287711 0 0 865024 333065 0c89998,0 167832,-10866 233500,-32480 64959,-22322 119762,-52794 163107,-91416 43936,-39212 75825,-85274 96731,-138068 20315,-52794 30472,-110313 30472,-172556z"/>\r
-  <path id="8" class="fil1" d="M45447055 20684509c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="9" class="fil1" d="M47589418 20733288c0,156375 -16889,296451 -50786,421055 -33188,123777 -82558,229484 -148226,316057 -64959,86691 -146218,153659 -242358,200311 -96140,46771 -206453,70392 -330230,70392 -52794,0 -101573,-5315 -146218,-15472 -45354,-10866 -88699,-27165 -132045,-50078 -42637,-22441 -85274,-50786 -127202,-85392 -42637,-33779 -87400,-74408 -134761,-120470l0 894196c0,10866 -2716,19606 -8149,27755 -5315,8149 -13464,14882 -25629,20315 -12165,4724 -28464,8740 -50078,11456 -21023,2716 -48070,4134 -81258,4134 -32480,0 -58936,-1417 -79841,-4134 -21732,-2716 -38621,-6732 -50786,-11456 -12874,-5433 -21732,-12165 -26456,-20315 -4724,-8149 -6732,-16889 -6732,-27755l0 -2494325c0,-12165 2008,-21614 6142,-29055 4016,-6732 12165,-13582 23622,-18307 12165,-5433 27047,-9449 46062,-11456 18307,-2126 41220,-2716 67676,-2716 27755,0 50786,591 68975,2716 17598,2008 32598,6024 44763,10748 12165,5433 20315,12283 25039,19015 4724,7441 6732,16889 6732,29055l0 238933c54212,-55511 106297,-103581 156375,-144801 50078,-40629 100864,-74526 151651,-101573 50786,-27047 102872,-48070 156375,-61534 53385,-14291 109604,-21023 169131,-21023 129328,0 238933,25039 330348,75117 90707,50786 165115,119171 222752,206453 57519,87282 99447,188855 125785,304601 26456,115746 39330,238224 39330,367552zm-341214 37913c0,-91416 -6732,-179997 -20905,-265389 -13582,-85274 -37913,-161099 -71101,-227358 -33779,-66377 -79132,-119171 -136061,-159092 -56810,-39921 -127911,-59526 -212476,-59526 -42637,0 -83975,6024 -125313,18897 -40629,12874 -82558,32480 -125195,59526 -41928,27165 -86573,62952 -132635,107715 -46062,44645 -95431,99447 -146926,164406l0 710066c89998,110313 175391,194288 255940,253224 81140,58109 165824,87282 254405,87282 81967,0 152359,-19606 211177,-59526 58936,-40039 106297,-92833 142911,-159092 36495,-66377 62952,-140194 80550,-222752 16889,-81849 25629,-165115 25629,-248381z"/>\r
-  <path id="10" class="fil1" d="M49739104 20741437c0,145509 -18897,279562 -57519,402040 -37913,121888 -95431,227476 -171257,316057 -75825,88699 -171257,157792 -284877,207162 -114447,49369 -247082,74408 -397316,74408 -146926,0 -274838,-21614 -383851,-65550 -109014,-43346 -199721,-107006 -272121,-190272 -72400,-83266 -126612,-184721 -162399,-303184 -35905,-119171 -53503,-253814 -53503,-404756 0,-145627 18897,-279562 56219,-401449 37913,-122478 94723,-228067 170548,-316766 75825,-88699 170548,-157084 284286,-206453 113738,-48779 246374,-73109 398024,-73109 146808,0 274838,21614 383733,65668 109014,43346 199721,106888 272121,190154 72400,83266 127202,184131 163816,303302 35905,119053 54094,253106 54094,402749zm-341096 20905c0,-96731 -8740,-188146 -27047,-274129 -17598,-85865 -47361,-161099 -88699,-226059 -40629,-64959 -96849,-116336 -167241,-153659 -69684,-37913 -157674,-56810 -262554,-56810 -96849,0 -180115,16889 -249799,51377 -69684,34606 -126612,83266 -171965,146218 -45354,62952 -78424,137478 -100156,223461 -22322,85865 -33188,179997 -33188,281570 0,98148 8858,190154 27165,276137 17598,85983 47361,161099 89290,225350 41928,63660 98148,115155 167832,152359 70392,37913 158383,56810 263381,56810 95431,0 177989,-16889 248381,-51377 70392,-34606 127911,-82676 173265,-144919 45354,-62243 78542,-136651 99565,-222634 20905,-85983 31771,-180705 31771,-283696z"/>\r
-  <path id="11" class="fil1" d="M51267541 19985309c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>\r
-  <path id="12" class="fil1" d="M52565785 21522486c0,38621 -2716,69093 -8149,91416 -4724,22322 -12874,39212 -23622,49369 -10157,10866 -26456,21023 -47479,29881 -20905,9449 -45354,16889 -72400,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -60235,6024 -90707,6024 -92715,0 -171847,-12165 -237515,-36495 -65668,-24448 -119880,-61652 -162517,-111022 -41928,-49487 -72400,-112439 -92006,-188146 -18897,-75825 -28464,-165233 -28464,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 454834 0c10748,0 19606,2008 27755,6732 7441,4724 14882,12874 20315,23740 6024,11456 10157,25748 12874,43346 2598,16889 4016,37913 4016,62952 0,47952 -6142,82558 -17598,103463 -12165,21023 -27755,31889 -47361,31889l-454834 0 0 992935c0,122478 18189,215311 54094,277554 35905,62952 100864,94014 194288,94014 29763,0 56810,-2598 80550,-8740 23622,-6142 44645,-12165 62952,-19015 18307,-6732 33779,-12756 47361,-18897 12874,-6142 25039,-8740 35196,-8740 6732,0 12874,1299 18897,4724 5433,3307 10157,9449 13582,18897 3425,9449 6142,21614 8858,37913 2598,15590 4016,35905 4016,59526z"/>\r
-  <path id="13" class="fil1" d="M54121151 21167808c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>\r
-  <polygon class="fil7" points="107795026,114832734 156722727,114832734 156722727,104760120 107795026,104760120 "/>\r
-  <path class="fil6" d="M111236696 110462616c0,119880 -22322,226768 -66377,320900 -44645,93424 -106297,173265 -184839,238933 -78424,64959 -171139,114329 -277436,147517 -107006,33188 -221335,49369 -344521,49369 -85983,0 -165824,-7441 -238933,-21614 -73818,-14882 -139486,-33188 -197004,-54094 -57519,-21023 -105589,-43346 -144919,-65668 -38503,-23031 -66259,-42046 -81140,-58227 -15590,-15590 -26456,-35905 -33897,-60235 -7441,-24448 -10748,-56928 -10748,-97439 0,-29173 1299,-53503 4016,-72518 2716,-18897 6732,-34488 11456,-45944 5433,-12283 12165,-20315 20315,-25039 8149,-4842 17008,-6850 27755,-6850 18307,0 44645,11575 78542,33897 33188,22322 76534,46653 129919,73109 52794,25629 116455,50786 191571,73699 74526,23031 161099,34606 258539,34606 74526,0 142202,-10157 203855,-29763 61534,-19724 114329,-47479 158383,-83975 44645,-35905 78424,-80550 102164,-133344 23740,-52794 35905,-113029 35905,-180115 0,-72400 -16299,-134643 -49487,-186138 -33070,-51377 -76416,-96731 -130628,-136061 -54802,-38503 -116336,-74408 -185430,-106888 -69684,-32480 -140785,-64959 -213185,-98856 -72518,-33779 -143501,-71101 -211886,-112321 -69093,-40629 -130628,-88699 -184839,-144210 -54094,-55511 -98148,-120470 -131218,-195587 -33897,-74408 -50786,-163816 -50786,-268105 0,-107596 19606,-203028 58227,-286885 39212,-83266 93305,-153659 162399,-210587 69684,-56810 152241,-100156 247791,-129919 96022,-29763 198894,-44645 309916,-44645 56928,0 113738,4724 171257,14882 57519,10157 111730,23031 162517,39921 50786,16181 96140,35196 136061,55511 39212,20315 65668,37204 77833,49369 12874,12874 20905,22322 25039,29763 4016,7441 6732,17008 9449,27755 2716,11575 4724,25039 6142,41338 1299,15590 2008,35905 2008,61534 0,23740 -709,44763 -2716,63660 -2008,18307 -5433,33897 -9449,46653 -3425,12283 -9567,21732 -16299,27755 -7441,6142 -15590,8858 -25039,8858 -14882,0 -37204,-9449 -68385,-27755 -31062,-18897 -68975,-39212 -114329,-62952 -44763,-23031 -98148,-44054 -159800,-62952 -60944,-19606 -129919,-29055 -207162,-29055 -70983,0 -133344,9449 -186138,28346 -52794,19606 -96731,44763 -131218,76534 -33897,31771 -59645,68975 -77243,112321 -16889,44054 -25748,89998 -25748,138777 0,71101 16299,132635 49487,184131 33188,51377 77125,96731 131927,136769 55511,39921 117872,75707 188264,108896 69684,33188 141375,66377 214484,100156 72518,33897 144210,70392 213894,111022 70392,39921 132754,87991 188264,142911 54802,54802 98738,119053 132635,194170 33779,74526 50786,162517 50786,264680z"/>\r
-  <path id="1" class="fil6" d="M113809445 110233841c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>\r
-  <path id="2" class="fil6" d="M116252866 108762332c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <polygon class="fil8" points="119627687,113560119 130512530,113560119 130512530,105897383 119627687,105897383 "/>\r
-  <path class="fil6" d="M123944184 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>\r
-  <path id="1" class="fil6" d="M126550239 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>\r
-  <path id="2" class="fil6" d="M128986928 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <polygon class="fil8" points="131595582,113560119 142453378,113560119 142453378,105897383 131595582,105897383 "/>\r
-  <path class="fil6" d="M135907591 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>\r
-  <path id="1" class="fil6" d="M138513646 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>\r
-  <path id="2" class="fil6" d="M140950334 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <polygon class="fil8" points="143563476,113560119 154421273,113560119 154421273,105897383 143563476,105897383 "/>\r
-  <path class="fil6" d="M148802870 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <path id="1" class="fil6" d="M151035822 108896266c0,25039 -1299,47361 -4016,66259 -2716,19015 -6732,35196 -11456,48070 -5433,12165 -12283,21023 -20315,26456 -7441,5433 -16299,8149 -25748,8149 -15590,0 -41928,-12874 -79251,-37913 -37204,-25039 -86573,-53503 -148816,-83975 -62361,-30472 -136769,-58936 -223461,-83975 -86573,-25039 -189445,-37913 -307908,-37913 -142202,0 -268814,25748 -381135,77243 -112321,52086 -207752,123187 -285585,214484 -78542,91416 -138068,199721 -180115,325624 -41220,125903 -62243,261964 -62243,408890 0,164406 23031,309916 68385,437236 45944,126494 108896,234208 190154,321490 80550,87282 176690,153659 289011,198304 111730,45354 234917,67676 368261,67676 79841,0 160391,-9449 241649,-29055 81258,-19015 157084,-48070 227476,-85983l0 -749986 -594320 0c-23031,0 -39921,-11456 -50786,-33779 -11456,-22441 -16889,-57637 -16889,-105707 0,-25039 1299,-46653 4016,-64251 2716,-17598 6732,-32480 12874,-43936 6142,-10866 12874,-19015 21023,-24448 7441,-5433 17598,-8149 29763,-8149l814237 0c14882,0 29173,2716 44054,8149 14173,5433 27755,12874 39212,23740 12165,10748 21614,25039 27755,43346 6732,18897 10157,39921 10157,63542l0 979471c0,34488 -6142,64369 -17598,89408 -12165,25039 -37204,47361 -75825,66259 -37913,19015 -87991,39921 -148934,62243 -60826,23031 -123187,42046 -188146,58227 -64959,15590 -130628,27755 -196296,35196 -66377,8149 -131927,12165 -196296,12165 -199012,0 -376292,-30354 -531959,-92006 -156375,-61534 -288420,-149525 -396016,-263263 -107596,-113738 -190272,-249799 -247082,-408890 -56810,-159092 -85274,-335663 -85274,-531959 0,-203736 30472,-388576 92006,-553691 61652,-165233 148226,-306018 259956,-423063 111730,-116455 245665,-206453 402040,-270822 157084,-64251 330348,-96022 520502,-96022 98148,0 189564,8740 275546,25629 85983,17598 162399,37913 229484,60944 66259,23740 122478,48779 168540,76534 45354,27047 76416,49369 94014,66967 17008,16889 29173,37204 35196,59526 6850,22441 10157,54920 10157,97557z"/>\r
-  <path class="fil6" d="M102770589 109710149c0,92951 -15590,154604 -46771,185784 -31181,31181 -86101,46771 -165351,46771 -77243,0 -130864,-15590 -161336,-46062 -30472,-30590 -45472,-90825 -45472,-181060 0,-92833 15590,-154485 46771,-185666 31181,-31181 86101,-46771 165469,-46771 77243,0 130746,14882 161218,45472 30590,30472 45472,91416 45472,181532zm898685 0c0,92951 -15590,154604 -46062,185784 -30472,31181 -85392,46771 -165351,46771 -77243,0 -130864,-15590 -161336,-46062 -30472,-30590 -46062,-90825 -46062,-181060 0,-92833 15590,-154485 46771,-185666 31181,-31181 85983,-46771 164643,-46771 78660,0 132872,14882 162635,45472 29881,30472 44763,91416 44763,181532zm894669 0c0,92951 -15590,154604 -46771,185784 -31181,31181 -86101,46771 -165351,46771 -77243,0 -130864,-15590 -161336,-46062 -30472,-30590 -45354,-90825 -45354,-181060 0,-92833 15590,-154485 46653,-185666 31181,-31181 86101,-46771 165469,-46771 77243,0 130746,14882 161218,45472 30590,30472 45472,91416 45472,181532z"/>\r
-  <path class="fil6" d="M10275405 107843451c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>\r
-  <path id="1" class="fil6" d="M12132774 106972994c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="2" class="fil6" d="M14076833 106154032c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>\r
-  <path id="3" class="fil6" d="M15928059 106972994c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="4" class="fil6" d="M16758596 107943724c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>\r
-  <path class="fil6" d="M18185932 106990592c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>\r
-  <path class="fil6" d="M20239596 106703589c0,197004 -15590,377119 -46653,539518 -31181,162399 -82558,301884 -154367,419048 -72400,117045 -166532,207044 -282869,271412 -116455,64251 -259956,96022 -430504,96022 -161099,0 -296569,-28346 -407473,-85865 -110431,-57519 -199012,-142202 -266688,-253814 -67085,-111730 -115155,-249090 -143501,-412315 -28464,-163107 -42637,-350545 -42637,-561722 0,-195705 15472,-374993 47361,-538219 31771,-163107 83266,-303184 154958,-420229 71101,-117163 165115,-207162 281570,-271531 116455,-64251 259247,-96022 428496,-96022 162399,0 298459,28346 409481,85865 110313,57637 199012,142202 266688,253932 67085,111612 115037,249090 143501,412197 28464,163107 42637,350545 42637,561722zm-349246 23740c0,-127911 -4724,-242948 -13582,-344521 -9449,-101573 -22913,-191571 -41220,-269405 -17598,-77833 -40629,-144801 -69093,-201020 -28346,-55511 -62243,-102164 -102164,-138068 -39330,-36614 -84684,-62952 -135352,-79251 -51495,-16889 -108305,-25039 -171965,-25039 -112321,0 -203028,26456 -273420,79251 -69802,52794 -125313,125195 -165233,217909 -40629,92124 -67676,200311 -82558,324915 -14173,123895 -21614,257239 -21614,400032 0,190863 10157,353970 29763,488023 19606,134053 51377,242948 94014,327632 42755,84565 97557,146218 164525,184131 66967,38503 147517,57519 243066,57519 73699,0 138659,-12165 194878,-35905 56219,-23622 104289,-57519 144919,-101573 39921,-44645 73699,-97439 100156,-159682 26338,-62243 47361,-130628 63542,-205744 15590,-75117 26456,-157084 32480,-244366 6142,-87991 8858,-179406 8858,-274838z"/>\r
-  <path class="fil6" d="M12314306 112779661c10748,18897 16181,34488 16181,46653 0,12874 -6732,23031 -18897,31181 -12874,7441 -31889,13464 -57519,16889 -25748,3425 -59645,4724 -100274,4724 -39921,0 -70983,-709 -94014,-2716 -23740,-2008 -42046,-5433 -55511,-10157 -14291,-4724 -25039,-10748 -31889,-17598 -7441,-7441 -13464,-15590 -18897,-25039l-428496 -708649 -426370 708649c-5433,9449 -11575,17598 -19015,25039 -6732,6850 -17598,12874 -31771,17598 -13582,4724 -31771,8149 -54212,10157 -22322,2008 -52086,2716 -89290,2716 -38621,0 -69684,-1299 -94132,-4724 -24330,-3425 -42637,-9449 -53385,-16889 -11575,-8149 -17008,-18307 -16299,-31181 709,-12165 7441,-27755 18897,-46653l555817 -870457 -525935 -839394c-10157,-18897 -16299,-34488 -17008,-46653 -591,-12874 5433,-23031 18307,-31889 12165,-8740 31181,-14173 57519,-16889 25748,-2716 59645,-4016 101573,-4016 38621,0 68975,591 92715,2716 23031,2008 41338,5433 54094,9449 13582,3425 23031,8740 29881,15590 6732,6732 12874,14882 18189,23622l406174 664712 412906 -664712c4724,-8031 10866,-14882 17598,-21614 6732,-6732 15590,-12165 26338,-16889 11575,-4724 27165,-8149 48070,-10157 20315,-2126 48779,-2716 83975,-2716 38621,0 69684,1299 94132,4016 25039,2716 42637,7441 54802,14882 12165,7441 16889,17598 15590,30472 -1417,13582 -7441,29763 -19724,50078l-521093 829237 550974 880614z"/>\r
-  <path id="1" class="fil6" d="M14768710 111917944c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>\r
-  <path id="2" class="fil6" d="M17212131 110446435c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>\r
-  <path id="3" class="fil6" d="M18443290 112330141c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>\r
-  <path class="fil6" d="M10275405 36149231c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>\r
-  <path id="1" class="fil6" d="M12132774 35278774c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="2" class="fil6" d="M14076833 34459812c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>\r
-  <path id="3" class="fil6" d="M15928059 35278774c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="4" class="fil6" d="M16758596 36249504c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>\r
-  <path class="fil6" d="M18185932 35296372c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>\r
-  <path class="fil6" d="M20134007 35564477c0,117045 -20315,223342 -61534,318065 -40629,94132 -99565,175391 -176690,243066 -76534,66967 -171257,119171 -283578,154958 -112439,36614 -238933,54802 -380426,54802 -85983,0 -166532,-6732 -241059,-20905 -74408,-13582 -140785,-29763 -198894,-48779 -58227,-19606 -107006,-39212 -144919,-59526 -38621,-20315 -62952,-35196 -72400,-44054 -10157,-9449 -17598,-18897 -23031,-27755 -5433,-9449 -10157,-20315 -13582,-33779 -4016,-12874 -7441,-29173 -9449,-48070 -2008,-19015 -2716,-42637 -2716,-70392 0,-46771 4724,-79841 14291,-98148 9449,-18307 23031,-27755 40629,-27755 12165,0 36495,10866 72400,31771 35787,21023 81849,43346 138068,67676 56219,24448 121769,46771 197595,67676 75117,21023 159092,31889 251216,31889 89290,0 167832,-11575 235508,-33897 67676,-22322 125195,-54094 171257,-95431 46062,-41220 80550,-89998 103581,-146218 23031,-56101 34488,-117045 34488,-183422 0,-73109 -14882,-138777 -44054,-196886 -29055,-58227 -72400,-109014 -129210,-151060 -56219,-42637 -125903,-75117 -208461,-97439 -82676,-22322 -176690,-33779 -281570,-33779l-251806 0c-10866,0 -21732,-2126 -31889,-6850 -10157,-4724 -18897,-12165 -26338,-22913 -7441,-10157 -13582,-24448 -18307,-41338 -4724,-16889 -7441,-39212 -7441,-66967 0,-25039 2008,-45354 6142,-62361 4016,-16181 9449,-29055 16889,-39212 7441,-9449 15590,-16889 24330,-21614 9449,-4842 20315,-6850 31889,-6850l224642 0c86691,0 165233,-11456 234917,-33779 68975,-22322 127911,-54920 176690,-97557 48070,-41928 85274,-92715 111022,-151533 25629,-58936 38503,-124604 38503,-197713 0,-52794 -8740,-102872 -25748,-151651 -16889,-47952 -42637,-89998 -77125,-125903 -34488,-35787 -78542,-63542 -131927,-84565 -53503,-20315 -115155,-30472 -184839,-30472 -77125,0 -146926,11575 -211177,35196 -64369,23031 -121179,48070 -171257,74526 -50078,26338 -92006,51377 -125195,74408 -32480,23740 -56219,35196 -69093,35196 -9449,0 -17598,-1299 -25039,-4724 -6732,-3425 -12874,-10157 -17598,-20315 -4724,-9449 -8149,-23740 -10157,-41338 -2008,-17598 -2716,-41220 -2716,-70392 0,-19606 709,-37204 2008,-52794 1417,-14882 4134,-28346 8149,-39212 4134,-11456 8149,-21614 13582,-31181 5433,-8740 14173,-19606 27047,-32480 12165,-12165 37913,-30472 75825,-54094 38621,-24448 85983,-47361 142084,-70392 56219,-23740 121179,-42637 194288,-58936 73109,-15590 152359,-23622 236925,-23622 119171,0 223342,14882 313459,45354 89290,30354 164406,73699 224642,129210 60235,54802 104998,121179 134761,199012 29763,77125 44645,162517 44645,256531 0,80550 -10866,155076 -31771,224760 -21023,68975 -52204,130628 -93424,184131 -40629,53385 -91416,98738 -150942,136651 -59645,37913 -127911,63660 -205862,77833l0 4134c88109,9449 169249,31771 242358,66259 73109,35196 136061,79251 188855,132045 52794,52794 94132,115037 123895,185430 29763,71101 44645,146218 44645,227476z"/>\r
-  <path class="fil6" d="M12368281 38749026c0,25039 -1417,46771 -4134,65078 -2716,18307 -6732,33188 -12874,44763 -6024,10866 -12874,19606 -21614,24330 -8858,5433 -18307,8149 -28464,8149l-721877 0 0 2229881c0,10866 -2716,19606 -8149,27755 -5433,8149 -14173,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49487,4724 -82676,4724 -31889,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8149 -8149,-16889 -8149,-27755l0 -2229881 -721759 0c-10275,0 -19724,-2716 -28464,-8149 -8858,-4724 -15590,-13464 -21023,-24330 -4842,-11575 -9567,-26456 -12874,-44763 -3425,-18307 -4842,-40039 -4842,-65078 0,-25039 1417,-47479 4842,-66377 3307,-19015 8031,-34606 12874,-46062 5433,-12283 12165,-21023 21023,-25866 8740,-5315 18189,-8031 28464,-8031l1785204 0c10157,0 19606,2716 28464,8031 8740,4842 15590,13582 21614,25866 6142,11456 10157,27047 12874,46062 2716,18897 4134,41338 4134,66377z"/>\r
-  <path id="1" class="fil6" d="M13862821 40151324c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>\r
-  <path id="2" class="fil6" d="M15487280 40635213c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>\r
-  <path id="3" class="fil6" d="M16836783 40990364c0,38621 -2716,69211 -8149,91534 -4724,22322 -12874,39330 -23740,49487 -10157,10866 -26456,21023 -47479,29763 -21023,9567 -45354,17008 -72518,23149 -27047,6024 -55511,10748 -86101,14882 -30472,4016 -60235,6024 -90825,6024 -92833,0 -172084,-12165 -237870,-36495 -65668,-24448 -119998,-61771 -162635,-111258 -42046,-49369 -72518,-112439 -92124,-188382 -19015,-75944 -28464,-165351 -28464,-268342l0 -1042422 -251452 0c-19724,0 -36023,-10866 -48188,-31889 -11456,-21023 -17598,-55511 -17598,-103699 0,-25039 1299,-46062 4724,-62952 3425,-17716 8149,-31889 12874,-43464 5433,-10866 12874,-18897 21023,-23740 8858,-4724 18307,-6732 29173,-6732l249444 0 0 -424244c0,-9567 2008,-18307 6732,-25748 4724,-8149 13582,-15000 26456,-21023 12165,-6142 29055,-10157 50786,-12874 21023,-2716 47479,-4134 79959,-4134 33188,0 60353,1417 81376,4134 21614,2716 37913,6732 50078,12874 12283,6024 20433,12874 25866,21023 5315,7441 8031,16181 8031,25748l0 424244 455543 0c10866,0 19606,2008 27755,6732 7441,4842 14882,12874 20315,23740 6142,11575 10157,25748 12874,43464 2716,16889 4134,37913 4134,62952 0,48188 -6142,82676 -17716,103699 -12165,21023 -27755,31889 -47361,31889l-455543 0 0 994234c0,122714 18307,215547 54330,277908 35905,63070 100982,94250 194406,94250 29881,0 56928,-2716 80668,-8858 23740,-6142 44763,-12165 63070,-19015 18307,-6732 33897,-12874 47479,-18897 12874,-6142 25039,-8858 35196,-8858 6732,0 12874,1417 19015,4724 5433,3425 10157,9567 13582,19015 3307,9449 6024,21732 8740,37913 2716,15590 4134,35905 4134,59645z"/>\r
-  <path id="4" class="fil6" d="M18394157 40635213c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>\r
-  <path class="fil6" d="M10113007 23190763c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>\r
-  <path id="1" class="fil6" d="M11970375 22320306c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="2" class="fil6" d="M13914434 21501345c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>\r
-  <path id="3" class="fil6" d="M15765661 22320306c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>\r
-  <path id="4" class="fil6" d="M16596197 23291037c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>\r
-  <path class="fil6" d="M18023415 22337905c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>\r
-  <path class="fil6" d="M20100937 22611443c0,43228 -6850,77833 -19606,102872 -13582,25039 -31889,37204 -55511,37204l-289719 0 0 539518c0,10748 -2716,19606 -8149,27047 -5433,6732 -14882,13464 -28464,18897 -13464,4724 -31771,8858 -53385,11575 -21732,2716 -49487,4016 -83266,4016 -33188,0 -60235,-1299 -81967,-4016 -21614,-2716 -39212,-6850 -52086,-11575 -12874,-5433 -21614,-12165 -26456,-18897 -4724,-7441 -7441,-16299 -7441,-27047l0 -539518 -1050454 0c-16299,0 -29173,-2008 -39330,-6142 -10748,-4016 -20196,-10748 -29055,-21614 -8149,-10157 -14173,-25748 -17598,-45354 -3425,-19606 -4724,-45354 -4724,-77125 0,-25039 709,-47361 2008,-67085 1417,-19606 4016,-37913 8149,-54094 3307,-16889 8740,-32480 15590,-47361 6024,-15590 14173,-31889 23622,-48779l915220 -1560917c6732,-10748 16889,-19606 29763,-27755 12874,-8031 29055,-14882 49369,-19606 20315,-5433 45354,-9449 74408,-11456 29881,-2008 65078,-2716 105707,-2716 43936,0 83148,1299 115746,4724 33070,3425 60235,8149 79841,12874 20315,5433 35905,12874 46653,21023 10866,8740 16299,18897 16299,31062l0 1640049 289719 0c22322,0 40511,11575 54094,34606 14173,23031 21023,58227 21023,105589zm-706050 -1550051l-4016 0 -825812 1409856 829828 0 0 -1409856z"/>\r
-  <polygon class="fil0" points="123851587,97693122 135927787,97693122 135927787,66229948 123851587,66229948 "/>\r
-  <path class="fil1" d="M126525082 90255972c22204,0 41338,1181 57519,3661 16299,2362 29409,6024 39684,11338 9567,5433 17362,11456 21614,19252 4724,7795 7205,16181 7205,25157l0 639201 1974531 0c9567,0 17362,2362 24566,7205 7205,4842 12638,12638 16771,24566 4252,11456 7795,27047 10866,46298 2953,19724 4134,43818 4134,73227 0,28228 -1181,52204 -4134,71928 -3071,19842 -6614,36023 -10866,47479 -4134,12047 -9567,19842 -16771,24566 -7205,4842 -15000,7205 -24566,7205l-1974531 0 0 639201c0,8976 -2480,17362 -7205,25157 -4252,7913 -12047,13819 -21614,18661 -10275,4252 -23385,8386 -39684,11456 -16181,2953 -35314,4134 -57519,4134 -22204,0 -42046,-1181 -58818,-4134 -16889,-3071 -30708,-7205 -40865,-11456 -10748,-4842 -18543,-10748 -22795,-18661 -4842,-7795 -7205,-16181 -7205,-25157l0 -1580877c0,-8976 2362,-17362 7205,-25157 4252,-7795 12047,-13819 22795,-19252 10157,-5315 23976,-8976 40865,-11338 16771,-2480 36614,-3661 58818,-3661z"/>\r
-  <path id="1" class="fil1" d="M127817185 88810211c129092,0 247909,16771 356450,51023 108069,33543 201729,84565 280271,151769 78660,67204 139840,151887 183658,252751 43818,101337 66022,218972 66022,352316 0,130155 -19134,243657 -58227,340269 -38385,96612 -94723,177044 -168540,241177 -73818,64251 -163344,112321 -268932,144092 -105589,31771 -224996,47361 -358931,47361 -128974,0 -247791,-16771 -355860,-49724 -108659,-33661 -202201,-84093 -280861,-151296 -78660,-67204 -139249,-151178 -183068,-252043 -43228,-100864 -64841,-218500 -64841,-352907 0,-130273 19252,-243657 58227,-340269 38385,-96612 94841,-177044 168658,-241295 73818,-64251 163816,-112793 268932,-145273 105589,-31771 224405,-47952 357041,-47952zm18661 302475c-85865,0 -166887,7795 -243066,23976 -76298,15590 -142911,42046 -200548,78660 -57637,36023 -103226,85746 -136179,148226 -33661,61771 -50432,139840 -50432,232909 0,85746 15000,159564 45590,221453 30590,61771 73818,112203 129683,152359 55747,40275 121769,69684 198067,88817 76180,19842 159564,29409 249681,29409 86928,0 168540,-7795 244838,-23976 76180,-15590 142793,-42046 199839,-79251 56456,-37204 102045,-86928 134998,-148816 33661,-62361 50432,-140431 50432,-233500 0,-84565 -15000,-157792 -45590,-220154 -30590,-62479 -73227,-113502 -128384,-153659 -55275,-40275 -121297,-69684 -197477,-88227 -76298,-18661 -160273,-28228 -251452,-28228z"/>\r
-  <path id="2" class="fil1" d="M127809981 86925678c138659,0 262909,15000 373340,44999 109841,29409 203382,73227 280271,131454 76770,57637 136179,129565 177635,214839 41456,85156 62361,183068 62361,292908 0,46771 -4724,89998 -13701,129565 -9685,40275 -24094,78660 -44527,117045 -19724,37795 -44999,75589 -75589,112793 -29999,37913 -66022,77479 -106770,119525l792742 0c9685,0 17480,2362 24685,7205 7205,4724 13228,11929 17952,22795 4252,10748 7795,25157 10275,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2480,19252 -6024,34251 -10275,44999 -4724,11456 -10748,19252 -17952,23504 -7205,4134 -15000,5905 -24685,5905l-2211574 0c-10748,0 -19252,-1772 -25748,-5315 -6024,-3661 -12047,-10866 -16299,-21023 -4724,-10866 -8386,-24094 -10157,-40865 -1772,-16181 -2362,-36614 -2362,-59999 0,-24566 591,-44999 2362,-61180 1772,-15590 5433,-28818 9567,-39684 4842,-10748 10866,-17952 16889,-22204 6496,-4134 15000,-5905 25748,-5905l211886 0c-49251,-48070 -91888,-94250 -128502,-138659 -36023,-44409 -66022,-89408 -89998,-134525 -23976,-44999 -42637,-91179 -54566,-138541 -12638,-47479 -18661,-97321 -18661,-150115 0,-114565 22204,-211886 66613,-292908 44999,-80314 105707,-146336 183068,-197359 77479,-51023 167477,-88227 270113,-111730 102636,-23385 211177,-34724 325860,-34724zm33661 302475c-81022,0 -159682,6024 -235271,18543 -75707,12047 -142911,33661 -201729,63070 -58818,29999 -105589,70156 -141021,120588 -35432,50432 -52794,113502 -52794,188501 0,37795 5433,74408 16771,111022 11456,36023 28818,73227 52794,111022 24094,37204 55865,76770 95431,117636 39684,40865 88227,84684 145864,130273l629634 0c97794,-79841 172202,-155430 224405,-226886 51613,-72046 77479,-147045 77479,-225705 0,-72636 -17480,-134998 -52912,-187201 -35314,-52204 -82203,-94250 -141021,-126612 -58818,-32480 -124250,-55865 -197359,-71455 -72636,-15000 -146454,-22795 -220272,-22795z"/>\r
-  <path id="3" class="fil1" d="M127817185 85019531c129092,0 247909,16771 356450,51023 108069,33543 201729,84565 280271,151769 78660,67204 139840,151887 183658,252751 43818,101337 66022,218972 66022,352316 0,130155 -19134,243657 -58227,340269 -38385,96612 -94723,177044 -168540,241177 -73818,64251 -163344,112321 -268932,144092 -105589,31771 -224996,47361 -358931,47361 -128974,0 -247791,-16771 -355860,-49724 -108659,-33661 -202201,-84093 -280861,-151296 -78660,-67204 -139249,-151178 -183068,-252043 -43228,-100864 -64841,-218500 -64841,-352907 0,-130273 19252,-243657 58227,-340269 38385,-96612 94841,-177044 168658,-241295 73818,-64251 163816,-112793 268932,-145273 105589,-31771 224405,-47952 357041,-47952zm18661 302475c-85865,0 -166887,7795 -243066,23976 -76298,15590 -142911,42046 -200548,78660 -57637,36023 -103226,85746 -136179,148226 -33661,61771 -50432,139840 -50432,232909 0,85746 15000,159564 45590,221453 30590,61771 73818,112203 129683,152359 55747,40275 121769,69684 198067,88817 76180,19842 159564,29409 249681,29409 86928,0 168540,-7795 244838,-23976 76180,-15590 142793,-42046 199839,-79251 56456,-37204 102045,-86928 134998,-148816 33661,-62361 50432,-140431 50432,-233500 0,-84565 -15000,-157792 -45590,-220154 -30590,-62479 -73227,-113502 -128384,-153659 -55275,-40275 -121297,-69684 -197477,-88227 -76298,-18661 -160273,-28228 -251452,-28228z"/>\r
-  <path id="4" class="fil1" d="M128627407 84298127c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-2348462 0c-9567,0 -17952,-1772 -24566,-5905 -7205,-4252 -13228,-12047 -18071,-23504 -4134,-10748 -7795,-25748 -10157,-44999 -2362,-18543 -3661,-41928 -3661,-70747 0,-29409 1299,-53503 3661,-72046 2362,-19252 6024,-33661 10157,-44409 4842,-10866 10866,-18071 18071,-22795 6614,-4842 15000,-7205 24566,-7205l2348462 0z"/>\r
-  <path id="5" class="fil1" d="M127817185 82294186c129092,0 247909,16771 356450,51023 108069,33543 201729,84565 280271,151769 78660,67204 139840,151887 183658,252751 43818,101337 66022,218972 66022,352316 0,130155 -19134,243657 -58227,340269 -38385,96612 -94723,177044 -168540,241177 -73818,64251 -163344,112321 -268932,144092 -105589,31771 -224996,47361 -358931,47361 -128974,0 -247791,-16771 -355860,-49724 -108659,-33661 -202201,-84093 -280861,-151296 -78660,-67204 -139249,-151178 -183068,-252043 -43228,-100864 -64841,-218500 -64841,-352907 0,-130273 19252,-243657 58227,-340269 38385,-96612 94841,-177044 168658,-241295 73818,-64251 163816,-112793 268932,-145273 105589,-31771 224405,-47952 357041,-47952zm18661 302475c-85865,0 -166887,7795 -243066,23976 -76298,15590 -142911,42046 -200548,78660 -57637,36023 -103226,85746 -136179,148226 -33661,61771 -50432,139840 -50432,232909 0,85746 15000,159564 45590,221453 30590,61771 73818,112203 129683,152359 55747,40275 121769,69684 198067,88817 76180,19842 159564,29409 249681,29409 86928,0 168540,-7795 244838,-23976 76180,-15590 142793,-42046 199839,-79251 56456,-37204 102045,-86928 134998,-148816 33661,-62361 50432,-140431 50432,-233500 0,-84565 -15000,-157792 -45590,-220154 -30590,-62479 -73227,-113502 -128384,-153659 -55275,-40275 -121297,-69684 -197477,-88227 -76298,-18661 -160273,-28228 -251452,-28228z"/>\r
-  <path id="6" class="fil1" d="M127117985 80542879c41456,0 70865,5433 89408,16771 18071,10866 27047,25275 27047,43228l0 227476c42046,-41456 88227,-70274 138659,-86455 50432,-16181 103226,-24566 157792,-24566 91298,0 172320,14409 242476,43818 70274,29409 129683,71337 178816,126021 48661,54566 85865,119407 111730,194406 25748,74999 38385,158501 38385,249681 0,64251 -8386,126021 -25275,183658 -17362,58227 -38385,103226 -64133,134998 20905,19842 44999,36023 71928,49251 27637,12638 58818,19252 93660,19252 41456,0 75589,-19252 102636,-57046 27637,-37795 42046,-88817 44409,-151887l17362 -412315c2480,-77951 13228,-149997 32480,-215429 19842,-65432 46771,-122360 82794,-170430 35432,-48070 79841,-85274 131454,-112203 52204,-27047 112793,-40275 181886,-40275 72518,0 141612,15000 207044,45708 65432,30590 122951,76770 172792,139722 49842,62479 89408,142911 117636,240114 28818,97203 43228,211886 43228,344521 0,127793 -10748,236452 -32362,325860 -21614,89408 -51613,163225 -88817,220862 -37913,57046 -82321,99093 -134525,124840 -52204,25866 -109250,38385 -169839,38385 -38976,0 -76180,-4724 -112793,-13819 -36023,-9567 -70865,-23976 -103817,-43109 -32480,-19252 -64251,-43228 -93660,-72046 -29999,-28818 -59408,-61889 -88817,-99683 -29409,57046 -66613,99093 -111022,126612 -44409,27047 -92479,40865 -144092,40865 -71337,0 -135588,-14409 -192044,-43228 -55747,-28818 -106179,-64251 -151178,-106770 -43228,35905 -91888,64723 -146454,85746 -54566,21023 -120588,31889 -198067,31889 -89998,0 -171021,-15000 -242476,-45708 -71455,-30590 -132045,-72518 -181296,-126612 -49133,-53975 -86928,-118817 -113384,-194406 -26456,-75589 -39566,-158501 -39566,-247318 0,-48542 2953,-92951 8386,-134998 6024,-41456 13819,-80432 23976,-117045l0 -478338c0,-20433 9567,-34842 28818,-44999 19842,-10157 49251,-15000 88817,-15000zm415268 453653c-107360,0 -191453,29409 -251452,88935 -60589,59408 -90589,143383 -90589,252043 0,56338 9567,105589 28228,147045 18543,41338 44409,76180 76770,103817 33070,27637 70865,47952 113502,61180 42519,13819 87636,20433 134407,20433 103817,0 185430,-29409 245429,-88817 59408,-59408 89408,-142202 89408,-249090 0,-57046 -8976,-106770 -26929,-149407 -18661,-42046 -43228,-76888 -75707,-104408 -32362,-27637 -69566,-48070 -111612,-61298 -41928,-13819 -85746,-20433 -131454,-20433zm1252655 -143974c-67912,0 -120116,27637 -157320,83384 -36614,55275 -56338,130864 -58818,225705l-13819 408654c29409,37204 57046,68503 83502,92479 26338,23976 51023,42637 74999,57046 23976,13819 47952,23385 71455,28818 23385,5315 47361,7795 71337,7795 76298,0 133816,-38503 172910,-115864 38976,-77479 58818,-184839 58818,-322908 0,-87636 -8386,-161454 -25275,-220272 -17362,-59408 -39566,-106770 -67794,-142793 -28228,-36614 -59999,-62479 -96022,-78660 -36614,-15590 -74408,-23385 -113974,-23385z"/>\r
-  <path id="7" class="fil1" d="M128671225 79450025l582745 210587c18661,7205 33070,25275 43228,54094 10157,28110 15000,71928 15000,130746 0,30590 -1181,55275 -4252,73818 -2953,18661 -7795,33070 -15000,43228 -7205,9685 -16771,15000 -28110,16181 -12047,1299 -25866,-1772 -42637,-8386l-550974 -218382c-4842,10748 -12638,20905 -22795,29999 -10866,9567 -21614,16181 -33661,19134l-1512374 564793c-24566,9567 -44409,13819 -58227,13819 -14409,0 -25157,-4252 -33661,-13819 -8386,-9567 -13701,-24566 -16771,-45590 -2953,-21023 -4134,-49251 -4134,-84684 0,-34724 591,-62361 2362,-82794 1772,-19842 5433,-35432 10157,-47361 4252,-11456 11456,-19842 19842,-25275 8976,-5433 21023,-10748 36023,-16771l1269898 -451882 0 -5433 -1276512 -435701c-22795,-7205 -36614,-15590 -43228,-25866 -6614,-9567 -11338,-24566 -14409,-44409 -2953,-20433 -4134,-49251 -4134,-86455 0,-32952 1181,-59999 4134,-81022 3071,-20905 8386,-36614 16771,-46180 8504,-10157 19252,-15000 33661,-15000 13819,0 31771,3661 52794,10157l1574263 568454z"/>\r
-  <path id="8" class="fil1" d="M126512445 76288862c32952,0 60589,2362 82794,7795 22204,5433 40275,14409 53975,27047 13228,13228 22913,31181 28818,53975 6024,22795 9094,51613 9094,86455 0,34251 -3071,62361 -9094,85156 -5905,22913 -15590,41456 -28818,54684 -13701,13819 -31771,23385 -53975,28818 -22204,6024 -49842,8976 -82794,8976 -33070,0 -59999,-2953 -82203,-8976 -21614,-5433 -39684,-15000 -54684,-28818 -14409,-13228 -24566,-31771 -29999,-54684 -5433,-22795 -7795,-50905 -7795,-85156 0,-34842 2362,-63660 7795,-86455 5433,-22795 15590,-40747 29999,-53975 15000,-12638 33070,-21614 54684,-27047 22204,-5433 49133,-7795 82203,-7795zm2114962 32480c9567,0 17362,2362 23976,7086 6024,4842 12047,12638 16889,23504 4134,11338 7795,26338 10157,44999 2362,18543 3543,41928 3543,70156 0,28228 -1181,51613 -3543,70274 -2362,18543 -6024,33543 -10157,44999 -4842,10748 -10866,18543 -16889,23385 -6614,4842 -14409,7205 -23976,7205l-1385762 0 0 709357 1385762 0c9567,0 17362,2480 23976,7205 6024,4842 12047,12638 16889,23504 4134,11338 7795,26338 10157,44999 2362,18543 3543,41928 3543,70156 0,28228 -1181,51613 -3543,70274 -2362,18543 -6024,33543 -10157,44999 -4842,10748 -10866,18543 -16889,23385 -6614,4842 -14409,7205 -23976,7205l-1385762 0 0 224524c0,18543 -9567,32952 -28228,41928 -18543,9685 -49251,14409 -91770,14409 -22204,0 -40865,-1181 -55865,-3543 -15590,-2480 -28228,-6024 -38385,-10866 -9685,-4134 -16889,-10157 -21023,-17362 -4252,-7205 -6024,-15590 -6024,-24566l0 -224524 -171021 0c-108659,0 -202319,-10748 -280271,-31771 -78069,-21023 -142202,-52204 -193225,-93660 -50432,-41456 -87636,-93069 -111730,-154249 -23976,-61771 -35905,-132045 -35905,-211886 0,-25157 1181,-51023 3543,-76770 2362,-25866 6024,-49251 10157,-70274 4842,-21023 10275,-39566 15000,-55156 5433,-16181 10866,-27047 16889,-32480 6024,-5905 11929,-10748 18543,-14409 6614,-3543 14409,-5905 24094,-8386 8976,-2362 20905,-4134 34724,-5315 14409,-1299 31181,-1890 51613,-1890 37204,0 64251,3071 80432,9094 16771,5315 24685,15590 24685,29409 0,9567 -1890,19134 -6024,28700 -4252,10275 -8386,22913 -13228,37913 -4842,15590 -8976,33543 -13228,55156 -4134,21614 -6024,49251 -6024,81613 0,80432 29999,138068 90116,171729 59408,34133 155430,50905 286766,50905l174091 0 0 -911558c0,-30708 7795,-52912 23976,-67204 15590,-15118 37204,-22204 65432,-22204l1537649 0z"/>\r
-  <path id="9" class="fil1" d="M128627407 75491868c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-2348462 0c-9567,0 -17952,-1772 -24566,-5905 -7205,-4252 -13228,-12047 -18071,-23504 -4134,-10748 -7795,-25748 -10157,-44999 -2362,-18543 -3661,-41928 -3661,-70747 0,-29409 1299,-53503 3661,-72046 2362,-19252 6024,-33661 10157,-44409 4842,-10866 10866,-18071 18071,-22795 6614,-4842 15000,-7205 24566,-7205l2348462 0z"/>\r
-  <path id="10" class="fil1" d="M127766753 73610288c45590,0 78069,11456 97794,34251 19252,22795 28818,49251 28818,78660l0 1039469c88227,0 167477,-8976 237752,-26456 70747,-17362 131336,-46771 181768,-88227 50432,-40747 89408,-94132 116455,-159564 27047,-66022 40275,-146454 40275,-241295 0,-74999 -6024,-142202 -18661,-200429 -12047,-58818 -25748,-109841 -40747,-152478 -15000,-42637 -28818,-78069 -40865,-105589 -12638,-27637 -18661,-48070 -18661,-62479 0,-8386 1890,-15590 6024,-22204 4252,-6024 10275,-11338 18661,-14409 7795,-3543 19134,-6614 34133,-8386 14409,-1772 31889,-2362 52912,-2362 15000,0 28110,591 39566,1772 10748,1181 21023,2362 29409,4252 8976,1772 16771,4724 23976,8976 6614,4134 13228,8976 19842,15590 6614,6614 16771,25748 31181,57046 15000,31771 28818,72518 43228,122951 13819,50432 26456,108659 37204,174682 11456,66022 16771,136297 16771,211295 0,130155 -17952,243657 -54566,341451 -36023,97794 -89998,180115 -161454,246728 -72046,66613 -161454,117045 -269523,150588 -107360,34251 -232791,51023 -376292,51023 -135588,0 -258066,-17362 -366608,-52794 -108069,-34842 -200548,-85865 -276137,-151887 -75589,-66022 -133226,-146454 -174091,-239996 -40157,-93660 -60589,-198658 -60589,-314522 0,-124250 19842,-229838 59999,-316884 39684,-87636 93660,-159092 160863,-215429 67204,-55865 146454,-97321 237634,-123659 90707,-26456 187910,-39684 291136,-39684l52794 0zm-85746 291727c-152478,-3543 -272475,29999 -359521,101455 -87046,71455 -130273,176454 -130273,316294 0,72046 13819,134998 40865,188973 26929,54094 62361,99093 107360,135706 44409,36614 96612,64841 155430,84565 59408,19842 121297,31299 186138,33661l0 -860654z"/>\r
-  <path id="11" class="fil1" d="M128195249 72171731c81022,0 153068,15000 216728,44999 62952,30118 116455,72046 159564,127321 43228,55156 76298,120588 98502,196768 22204,76298 33543,160273 33543,251570 0,56338 -4134,109841 -13110,160745 -8504,51023 -19252,96731 -33070,137478 -13228,40275 -27047,74408 -41338,102636 -14409,28228 -27637,48661 -39094,61180 -11338,13228 -28228,22795 -49133,28228 -21023,6024 -49842,8976 -86455,8976 -22204,0 -40865,-1181 -55865,-3543 -15590,-2362 -27637,-5433 -37204,-8386 -9567,-3661 -16181,-8976 -20433,-15000 -4134,-6614 -5905,-13819 -5905,-22204 0,-12638 7795,-31889 23976,-57046 15590,-25157 32952,-56456 51613,-93069 18543,-36614 36023,-80432 51613,-130746 16181,-50432 23976,-108069 23976,-173501 0,-49251 -5433,-93660 -16181,-133226 -10157,-40157 -25866,-74408 -46771,-103817 -20433,-29409 -46889,-51613 -78660,-67794 -31771,-15590 -69684,-23504 -113502,-23504 -44409,0 -82203,11456 -112203,34251 -30590,22795 -57637,52794 -81022,89998 -23385,37795 -44409,79841 -62361,126730 -18071,46771 -37204,94723 -57046,144564 -20433,49251 -42637,97794 -67794,145273 -25275,47361 -55865,89408 -92479,127202 -36614,37204 -79841,67204 -130155,89998 -50432,22913 -110431,34251 -181296,34251 -61771,0 -121297,-12047 -178225,-36023 -57046,-23976 -106888,-59999 -149525,-107951 -42519,-48661 -77361,-108659 -103226,-180705 -25748,-72046 -38385,-156021 -38385,-252633 0,-42046 3661,-84093 10866,-126730 7205,-41928 16771,-79723 27519,-113974 10866,-34251 22913,-63070 35432,-87046 13228,-23976 23976,-42637 34251,-54566 9567,-12638 17952,-20433 24566,-24685 7205,-4134 15000,-7205 23976,-8976 8504,-1772 19252,-3543 31889,-5433 13228,-1772 28818,-2362 47361,-2362 19842,0 37204,591 51613,2362 14409,1890 26456,4842 35432,9094 9567,4134 16181,8976 20433,15000 4134,6024 6024,12519 6024,19134 0,10866 -6614,25866 -19842,46298 -12638,19724 -26456,45590 -41456,77361 -15000,31771 -28818,68975 -41338,111612 -13228,42637 -19842,91888 -19842,147045 0,49251 5433,93069 16771,130273 10866,37795 26456,68385 46889,92361 20315,24094 44409,42637 72636,54684 27519,12638 58109,18543 90589,18543 45590,0 83975,-11929 115155,-35314 31299,-23504 58227,-53503 81731,-91298 23385,-37204 44409,-80432 63542,-128384 18661,-48070 37795,-96612 57637,-146454 20433,-49842 42637,-99093 67204,-147635 24566,-48661 54684,-91888 89408,-129092 35432,-37795 77479,-67794 126612,-90589 49251,-22795 108069,-34251 175863,-34251z"/>\r
-  <path class="fil1" d="M131229919 85698298c235862,111612 477157,194406 724948,249090 247909,54566 496999,81613 747861,81613 252043,0 501723,-27637 749042,-83502 247200,-55747 489676,-136769 727310,-243657 14409,-6024 26456,-8976 36023,-9567 10275,-591 18661,3543 24685,11338 6614,8504 11338,21023 14409,37913 2953,17362 4134,40157 4134,69566 0,21023 -591,38976 -1772,54566 -1181,15118 -3661,28228 -7205,39684 -2953,10748 -7205,19842 -12047,27047 -4724,7205 -10157,12519 -15590,15590 -119998,63542 -240704,119407 -363064,167359 -122478,48070 -247318,88227 -373930,121297 -126021,32952 -254405,57637 -383497,73818 -129683,16181 -260428,24566 -393064,24566 -132635,0 -262909,-8976 -392001,-26929 -128974,-18661 -256767,-44409 -384088,-77479 -127202,-33661 -252043,-74408 -375111,-122478 -122951,-47952 -244838,-101927 -365426,-162044 -4842,-591 -9094,-4134 -12638,-9567 -3661,-4842 -7205,-12638 -10157,-21614 -3661,-9567 -6614,-22204 -8504,-38976 -1772,-16181 -2362,-37204 -2362,-63070 0,-26929 1772,-48542 5433,-65432 3543,-16181 7795,-28700 13819,-38385 6024,-9567 13819,-14409 22795,-15590 9567,-1181 19842,591 29999,4842z"/>\r
-  <path class="fil1" d="M133653379 84496430l582745 210587c18661,7205 33070,25275 43228,54094 10157,28110 15000,71928 15000,130746 0,30590 -1181,55275 -4252,73818 -2953,18661 -7795,33070 -15000,43228 -7205,9685 -16771,15000 -28110,16181 -12047,1299 -25866,-1772 -42637,-8386l-550974 -218382c-4842,10748 -12638,20905 -22795,29999 -10866,9567 -21614,16181 -33661,19134l-1512374 564793c-24566,9567 -44409,13819 -58227,13819 -14409,0 -25157,-4252 -33661,-13819 -8386,-9567 -13701,-24566 -16771,-45590 -2953,-21023 -4134,-49251 -4134,-84684 0,-34724 591,-62361 2362,-82794 1772,-19842 5433,-35432 10157,-47361 4252,-11456 11456,-19842 19842,-25275 8976,-5433 21023,-10748 36023,-16771l1269898 -451882 0 -5433 -1276512 -435701c-22795,-7205 -36614,-15590 -43228,-25866 -6614,-9567 -11338,-24566 -14409,-44409 -2953,-20433 -4134,-49251 -4134,-86455 0,-32952 1181,-59999 4134,-81022 3071,-20905 8386,-36614 16771,-46180 8504,-10157 19252,-15000 33661,-15000 13819,0 31771,3661 52794,10157l1574263 568454z"/>\r
-  <path id="1" class="fil1" d="M133611333 82448554c14409,0 24685,4842 31889,13819 7205,9685 11929,22204 15590,39094 3543,16181 5315,40157 5315,71928 0,29999 -1772,54684 -5315,72636 -3661,18071 -8386,31299 -15590,39684 -7205,8386 -17480,12519 -31889,12519l-158383 0c74408,69093 131454,145864 172202,231138 40275,85156 60589,175272 60589,269995 0,83502 -10748,159092 -32362,226295 -21614,67204 -53385,124840 -94250,172320 -40747,47361 -91770,84565 -151178,111022 -59999,26338 -127911,39566 -204091,39566 -89408,0 -166887,-17952 -232319,-54566 -66022,-36023 -120588,-88227 -163816,-156729 -43228,-67794 -76180,-151178 -97794,-249681 -21614,-98384 -32480,-209406 -32480,-332474l0 -218382 -123541 0c-60708,0 -114683,6496 -162044,19134 -46889,13228 -85865,33661 -117045,62479 -31181,28818 -54684,66022 -70274,111612 -16181,45590 -23976,102045 -23976,168658 0,71337 8386,135588 25866,192044 17362,57046 35905,106770 56928,149407 21023,42637 39684,78660 57046,107478 17362,28228 25748,49724 25748,63542 0,9685 -2362,18071 -7086,24685 -4252,7205 -11456,13110 -21023,18543 -9094,5433 -21023,8976 -35432,11456 -15000,2362 -30590,3543 -48661,3543 -28818,0 -52204,-1772 -68975,-6024 -16771,-4134 -33070,-14409 -48070,-29999 -15000,-15590 -32952,-43228 -53975,-81613 -20433,-38385 -39566,-83384 -57046,-133816 -16771,-49842 -31181,-104998 -42637,-164997 -11338,-59408 -16771,-120116 -16771,-180705 0,-113384 13228,-209996 39094,-289837 25748,-79841 63542,-144092 113384,-193225 49842,-49251 111612,-84684 185430,-106888 73818,-22204 160273,-33661 258657,-33661l1068288 0zm-724948 288184l0 247791c0,79251 6614,148226 20433,207044 13110,58227 33543,106888 59999,145864 26338,38385 57637,66613 94841,85274 37204,17952 79723,26929 127793,26929 82203,0 147635,-25748 196296,-77951 48542,-52204 73227,-124840 73227,-219091 0,-75589 -19252,-146454 -58227,-211295 -38503,-64723 -97912,-133226 -177635,-204563l-336726 0z"/>\r
-  <path id="2" class="fil1" d="M133609561 79567779c9567,0 17362,2480 23976,7205 6024,4842 12047,12047 16889,22913 4134,10157 7795,25157 10157,43818 2362,18543 3543,41928 3543,70156 0,29409 -1181,53385 -3543,72046 -2362,18543 -6024,33543 -10157,44999 -4842,10748 -10866,18543 -16889,23385 -6614,4842 -14409,7205 -23976,7205l-962109 0c-67204,0 -128384,6024 -182949,17362 -55275,12047 -102636,30708 -142911,56456 -39566,25866 -70156,58227 -91179,97794 -21023,39684 -31889,86455 -31889,140431 0,66731 25866,133935 77479,200548 51613,67204 127202,141612 226886,222043l1106673 0c9567,0 17362,2362 23976,7205 6024,4724 12047,12638 16889,23976 4134,10866 7795,25866 10157,44999 2362,18661 3543,42046 3543,70274 0,27519 -1181,50432 -3543,70156 -2362,19252 -6024,34842 -10157,45590 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-962109 0c-67204,0 -128384,6614 -182949,19252 -55275,13228 -102636,32362 -142911,58227 -39566,25748 -70156,58227 -91179,97203 -21023,39684 -31889,85865 -31889,139840 0,66613 25866,134407 77479,202319 51613,67794 127202,141612 226886,221453l1106673 0c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-1583239 0c-9567,0 -17362,-1772 -23976,-5315 -6024,-3661 -12047,-10275 -17480,-21023 -5315,-10866 -8976,-24094 -10748,-40865 -1772,-16181 -2362,-38385 -2362,-65432 0,-25748 591,-47361 2362,-64133 1772,-17480 5433,-30708 10748,-40275 5433,-8976 11456,-16181 17480,-20433 6614,-3543 14409,-5905 23976,-5905l209406 0c-100156,-88935 -173383,-175863 -219563,-259956 -46298,-83384 -69684,-168658 -69684,-253814 0,-66022 7795,-124840 22795,-177044 15590,-52204 36614,-98502 64251,-138068 27637,-40157 60589,-74408 98975,-102045 37913,-28228 80432,-51613 127911,-70747 -57637,-52912 -106297,-102636 -146454,-150115 -40275,-47361 -72046,-92951 -97203,-136769 -24685,-43818 -42637,-86455 -53503,-127911 -11338,-41928 -16771,-83384 -16771,-125431 0,-102045 18071,-187201 53385,-256295 36023,-68975 84093,-124840 143501,-167950 59999,-42637 130273,-72636 210705,-91298 80314,-17952 164997,-27047 254405,-27047l1001084 0z"/>\r
-  <path id="3" class="fil1" d="M133609561 78747400c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-2348462 0c-9567,0 -17952,-1772 -24566,-5905 -7205,-4252 -13228,-12047 -18071,-23504 -4134,-10748 -7795,-25748 -10157,-44999 -2362,-18543 -3661,-41928 -3661,-70747 0,-29409 1299,-53503 3661,-72046 2362,-19252 6024,-33661 10157,-44409 4842,-10866 10866,-18071 18071,-22795 6614,-4842 15000,-7205 24566,-7205l2348462 0z"/>\r
-  <path class="fil1" d="M132708160 77611672c132635,0 263381,8386 393064,24566 129092,16181 257476,40865 383497,73818 126612,32952 251452,73227 373930,120588 122360,47479 243066,102636 363064,166296 5433,2953 10866,8386 15590,15590 4842,7205 9094,16181 12047,27047 3543,11338 6024,24566 7205,39566 1181,15590 1772,33661 1772,54684 0,30590 -1181,53975 -4134,71337 -3071,16889 -7795,29409 -14409,36614 -6024,7795 -14409,11456 -24685,10866 -9567,-591 -21614,-3661 -36023,-9685 -236452,-107951 -478928,-189564 -726719,-244248 -247909,-55156 -497589,-82794 -749632,-82794 -250862,0 -499952,27637 -747861,82794 -247791,54684 -489086,137478 -724948,247909 -10157,4134 -20433,6024 -29999,4724 -8976,-1181 -16771,-5905 -22795,-15590 -6024,-9567 -10275,-22204 -13819,-38385 -3661,-16771 -5433,-38385 -5433,-65432 0,-24566 591,-44999 2362,-61180 1890,-16771 4842,-29999 8504,-39566 2953,-10275 6496,-17480 10157,-22204 3543,-4842 7795,-8504 12638,-10275 239996,-121179 486724,-215429 740538,-284404 253932,-68503 512589,-102636 776088,-102636z"/>\r
-  <polygon class="fil0" points="21907755,97693122 35283616,97693122 35283616,49659026 21907755,49659026 "/>\r
-  <path class="fil1" d="M27415608 70295702c0,22204 -1181,41338 -3661,57519 -2362,16299 -6024,29409 -11338,39684 -5433,9567 -11456,17362 -19252,21614 -7795,4724 -16181,7205 -25157,7205l-639201 0 0 1974531c0,9567 -2362,17362 -7205,24566 -4842,7205 -12638,12638 -24566,16771 -11456,4252 -27047,7795 -46298,10866 -19724,2953 -43818,4134 -73227,4134 -28228,0 -52204,-1181 -71928,-4134 -19842,-3071 -36023,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24566,-16771 -4842,-7205 -7205,-15000 -7205,-24566l0 -1974531 -639201 0c-8976,0 -17362,-2480 -25157,-7205 -7913,-4252 -13819,-12047 -18661,-21614 -4252,-10275 -8386,-23385 -11456,-39684 -2953,-16181 -4134,-35314 -4134,-57519 0,-22204 1181,-42046 4134,-58818 3071,-16889 7205,-30708 11456,-40865 4842,-10748 10748,-18543 18661,-22795 7795,-4842 16181,-7205 25157,-7205l1580877 0c8976,0 17362,2362 25157,7205 7795,4252 13819,12047 19252,22795 5315,10157 8976,23976 11338,40865 2480,16771 3661,36614 3661,58818z"/>\r
-  <path id="1" class="fil1" d="M28739010 71537372c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>\r
-  <path id="2" class="fil1" d="M30177566 71965869c0,81022 -15000,153068 -44999,216728 -30118,62952 -72046,116455 -127321,159564 -55156,43228 -120588,76298 -196768,98502 -76298,22204 -160273,33543 -251570,33543 -56338,0 -109841,-4134 -160745,-13110 -51023,-8504 -96731,-19252 -137478,-33070 -40275,-13228 -74408,-27047 -102636,-41338 -28228,-14409 -48661,-27637 -61180,-39094 -13228,-11338 -22795,-28228 -28228,-49133 -6024,-21023 -8976,-49842 -8976,-86455 0,-22204 1181,-40865 3543,-55865 2362,-15590 5433,-27637 8386,-37204 3661,-9567 8976,-16181 15000,-20433 6614,-4134 13819,-5905 22204,-5905 12638,0 31889,7795 57046,23976 25157,15590 56456,32952 93069,51613 36614,18543 80432,36023 130746,51613 50432,16181 108069,23976 173501,23976 49251,0 93660,-5433 133226,-16181 40157,-10157 74408,-25866 103817,-46771 29409,-20433 51613,-46889 67794,-78660 15590,-31771 23504,-69684 23504,-113502 0,-44409 -11456,-82203 -34251,-112203 -22795,-30590 -52794,-57637 -89998,-81022 -37795,-23385 -79841,-44409 -126730,-62361 -46771,-18071 -94723,-37204 -144564,-57046 -49251,-20433 -97794,-42637 -145273,-67794 -47361,-25275 -89408,-55865 -127202,-92479 -37204,-36614 -67204,-79841 -89998,-130155 -22913,-50432 -34251,-110431 -34251,-181296 0,-61771 12047,-121297 36023,-178225 23976,-57046 59999,-106888 107951,-149525 48661,-42519 108659,-77361 180705,-103226 72046,-25748 156021,-38385 252633,-38385 42046,0 84093,3661 126730,10866 41928,7205 79723,16771 113974,27519 34251,10866 63070,22913 87046,35432 23976,13228 42637,23976 54566,34251 12638,9567 20433,17952 24685,24566 4134,7205 7205,15000 8976,23976 1772,8504 3543,19252 5433,31889 1772,13228 2362,28818 2362,47361 0,19842 -591,37204 -2362,51613 -1890,14409 -4842,26456 -9094,35432 -4134,9567 -8976,16181 -15000,20433 -6024,4134 -12519,6024 -19134,6024 -10866,0 -25866,-6614 -46298,-19842 -19724,-12638 -45590,-26456 -77361,-41456 -31771,-15000 -68975,-28818 -111612,-41338 -42637,-13228 -91888,-19842 -147045,-19842 -49251,0 -93069,5433 -130273,16771 -37795,10866 -68385,26456 -92361,46889 -24094,20315 -42637,44409 -54684,72636 -12638,27519 -18543,58109 -18543,90589 0,45590 11929,83975 35314,115155 23504,31299 53503,58227 91298,81731 37204,23385 80432,44409 128384,63542 48070,18661 96612,37795 146454,57637 49842,20433 99093,42637 147635,67204 48661,24566 91888,54684 129092,89408 37795,35432 67794,77479 90589,126612 22795,49251 34251,108069 34251,175863z"/>\r
-  <path id="3" class="fil1" d="M31372466 72280391c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>\r
-  <path class="fil1" d="M26959239 77380181c0,9567 -1890,17362 -6024,24566 -4252,7205 -11456,12638 -21023,16889 -10275,4134 -23385,7205 -39684,9567 -16771,2362 -36495,3543 -59999,3543 -24566,0 -44999,-1181 -61180,-3543 -16771,-2362 -29999,-5433 -40865,-9567 -10157,-4252 -17952,-9685 -22795,-16889 -4134,-7205 -6614,-15590 -6614,-24566l0 -210705c-83384,90707 -169839,160863 -259247,211295 -89998,50432 -187792,75589 -294680,75589 -115746,0 -214839,-22795 -296451,-67794 -82203,-44999 -148816,-106179 -199839,-183068 -50432,-76770 -87636,-166769 -111022,-270586 -23385,-103935 -35432,-213067 -35432,-327750 0,-136179 14409,-259247 43818,-368497 29409,-109841 72636,-203500 130273,-280861 56928,-77479 128384,-136887 213658,-178225 84565,-41456 182359,-62479 294089,-62479 92361,0 177044,20433 253814,60589 76770,40865 152478,100274 227476,178934l0 -917700c0,-8386 1772,-16181 6024,-23976 4134,-7795 11929,-13228 23976,-17480 11456,-4134 26456,-7795 44409,-10748 18661,-2953 41456,-4252 69566,-4252 29409,0 53503,1299 72046,4252 18661,2953 33661,6614 43818,10748 10866,4252 18661,9685 23976,17480 5433,7795 7913,15590 7913,23976l0 2341257zm-291727 -1114468c-78069,-97912 -153659,-172320 -226886,-223342 -73227,-51023 -149407,-76770 -228657,-76770 -73818,0 -136179,17362 -187792,52794 -51613,35432 -93069,81613 -125431,139249 -31889,57046 -55275,122478 -69684,195115 -15000,72518 -22204,146336 -22204,221453 0,79723 6024,157792 18661,233972 11929,76298 33543,144092 63542,203500 30590,59408 70865,106888 121297,142793 49724,35432 113384,53503 188973,53503 38503,0 75707,-5433 111730,-15590 35314,-10866 71928,-28228 109132,-52912 37204,-24566 76888,-56338 117636,-96022 40865,-38976 84093,-86928 129683,-144564l0 -633178z"/>\r
-  <path id="1" class="fil1" d="M28688932 77381952c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>\r
-  <path id="2" class="fil1" d="M30045285 77262545c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>\r
-  <path id="3" class="fil1" d="M31578801 77381952c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>\r
-  <path class="fil10" d="M28812237 43255441l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381253 -309089,690460 -690460,690460 -381253,0 -690460,-309207 -690460,-690460zm1380920 6396853c0,381253 -309089,690460 -690460,690460 -381253,0 -690460,-309207 -690460,-690460 0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>\r
-  <path class="fil10" d="M89464057 43038831l0 6396735 -460149 0 0 -6396735 460149 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381253 -309089,690342 -690460,690342 -381371,0 -690460,-309089 -690460,-690342zm1380920 6396735c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>\r
-  <path class="fil10" d="M80230956 25493045l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460 0,-381253 309207,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>\r
-  <path class="fil10" d="M150224301 25493045l0 6396853 -460267 0 0 -6396853 460267 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381253,0 690342,309089 690342,690460 0,381371 -309089,690460 -690342,690460 -381371,0 -690460,-309089 -690460,-690460zm1380802 6396853c0,381371 -309089,690460 -690342,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381253,0 690342,309207 690342,690460z"/>\r
-  <path class="fil10" d="M42242310 59501448l0 6396853 -460267 0 0 -6396853 460267 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381253,0 690460,309089 690460,690460 0,381371 -309207,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309207,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381253,0 690460,309089 690460,690460z"/>\r
-  <path class="fil10" d="M59815143 59501448l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>\r
-  <path class="fil10" d="M59815143 76288980l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>\r
-  <path class="fil10" d="M91494926 59501448l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>\r
-  <path class="fil10" d="M114428922 59501448l0 6396853 -460385 0 0 -6396853 460385 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>\r
-  <path class="fil10" d="M142466842 81690772l-6525473 0 0 460385 6525473 0 0 -460385zm0 920653c381253,0 690460,-309089 690460,-690460 0,-381371 -309207,-690460 -690460,-690460 -381371,0 -690460,309089 -690460,690460 0,381371 309089,690460 690460,690460zm-6525473 -1380920c-381371,0 -690460,309089 -690460,690460 0,381371 309089,690460 690460,690460 381253,0 690460,-309089 690460,-690460 0,-381371 -309207,-690460 -690460,-690460z"/>\r
-  <path class="fil10" d="M78204693 88947452l-7166328 0 0 460149 7166328 0 0 -460149zm0 920535c381371,0 690460,-309089 690460,-690460 0,-381371 -309089,-690460 -690460,-690460 -381371,0 -690460,309089 -690460,690460 0,381371 309089,690460 690460,690460zm-7166328 -1380920c-381253,0 -690460,309089 -690460,690460 0,381371 309207,690460 690460,690460 381371,0 690460,-309089 690460,-690460 0,-381371 -309089,-690460 -690460,-690460z"/>\r
-  <path class="fil10" d="M60708631 97625446l0 8269221 -460267 0 0 -8269221 460267 0zm-920535 0c0,-381371 309089,-690460 690342,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381253,0 -690342,-309089 -690342,-690460zm1380802 8269221c0,381371 -309089,690460 -690460,690460 -381253,0 -690342,-309089 -690342,-690460 0,-381253 309089,-690460 690342,-690460 381371,0 690460,309207 690460,690460z"/>\r
-  <path class="fil10" d="M149764034 97728436l-162399 7038062 460149 10630 162517 -7038180 -460267 -10512zm920535 21378c9094,-381371 -293262,-697546 -674634,-706286 -381253,-8858 -697192,293144 -706168,674279 -9094,381253 293262,697428 674634,706168 381253,8858 697192,-293144 706168,-674161zm-1543319 7006055c-8976,381371 293381,697546 674634,706286 381371,8858 697310,-293144 706286,-674279 8976,-381253 -293381,-697428 -674634,-706168 -381371,-8858 -697310,293144 -706286,674161z"/>\r
-  <path class="fil6" d="M30214416 45111982c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M30804484 45922440l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M31667146 45841064c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M32528863 45900354c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M33536089 45492291c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M34420010 45900354c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M30112843 47007499c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M31009756 48066457c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M31966314 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M32806771 47943742c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M33676283 47246905c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M34714689 47658393c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M35598611 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M37075789 47927089c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M37879514 48067402c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M38294901 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M38693043 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M39444683 47848784c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M43752794 61570111c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M44342862 62380569l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M45205524 62299192c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M46067241 62358483c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M47074467 61950419c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M47958388 62358483c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M43651221 63465628c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M44548134 64524585c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M45504692 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M46345149 64401871c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M47214661 63705033c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M48253068 64116522c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M49136989 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M50614167 64385218c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M51417892 64525530c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M51833279 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M52231421 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M52983061 64306912c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M60926304 78308038c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M61516372 79118496l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M62379034 79037119c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M63240750 79096409c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M64247976 78688346c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M65131897 79096409c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M60824731 80203555c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M61721644 81262512c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M62678201 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M63518659 81139798c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M64388171 80442960c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M65426577 80854449c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M66328687 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M67787676 81123145c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M68591402 81263457c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M69006788 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M69404931 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M70156571 81044839c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M45411268 99471239c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M46001336 100281697l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M46863998 100200321c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M47725715 100259611c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M48732941 99851547c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M49616862 100259611c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M45309695 101366756c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M46206608 102425714c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M47163166 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M48003623 102302999c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M48873135 101606161c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M49911542 102017650c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M50813651 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M52272641 102286346c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M53076366 102426658c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M53491753 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M53889895 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M54641535 102208040c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M92915176 61849909c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M93505244 62660367l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M94367906 62578991c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M95229623 62638281c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M96236849 62230217c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M97120770 62638281c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M92813603 63745426c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M93710516 64804384c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M94667074 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M95507531 64681669c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M96377043 63984831c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M97415449 64396320c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M98299371 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M99776549 64665016c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M100580274 64805328c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M100995661 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M101393803 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M102145443 64586710c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M115946139 61497947c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M116536207 62308405l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M117398869 62227028c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M118260586 62286319c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M119267812 61878255c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M120151733 62286319c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M115844566 63393464c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M116741479 64452421c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M117698037 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M118538494 64329707c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M119408006 63632869c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M120446412 64044358c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M121330334 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M122807512 64313054c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M123611237 64453366c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M124026624 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M124424766 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M125176406 64234748c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M151735731 100756137c0,53503 -9921,101219 -29527,143265 -19960,41692 -47479,77361 -82558,106652 -35078,29055 -76534,51141 -124014,65904 -47716,14882 -98856,22086 -153777,22086 -38385,0 -74054,-3307 -106770,-9685 -32952,-6614 -62243,-14764 -87991,-24094 -25629,-9449 -47125,-19370 -64605,-29409 -17244,-10275 -29645,-18661 -36377,-25984 -6850,-6968 -11693,-15945 -15118,-26929 -3307,-10866 -4842,-25393 -4842,-43464 0,-12992 709,-23858 1890,-32362 1181,-8504 2953,-15472 5079,-20551 2480,-5433 5433,-9094 9094,-11220 3661,-2126 7559,-2953 12401,-2953 8149,0 19960,5079 35078,15118 14764,9921 34133,20787 57991,32598 23622,11456 52086,22677 85628,32952 33188,10275 71928,15472 115392,15472 33306,0 63542,-4606 91061,-13346 27519,-8740 51023,-21141 70747,-37440 19960,-16063 35078,-36023 45590,-59645 10630,-23504 16063,-50432 16063,-80432 0,-32244 -7205,-60117 -22086,-83030 -14764,-23031 -34133,-43228 -58345,-60826 -24448,-17244 -51968,-33188 -82794,-47716 -31181,-14527 -62952,-29055 -95195,-44172 -32362,-15118 -64133,-31771 -94723,-50196 -30826,-18071 -58345,-39566 -82439,-64369 -24212,-24803 -43818,-53857 -58700,-87400 -15118,-33188 -22677,-73109 -22677,-119644 0,-48070 8740,-90707 25984,-128147 17598,-37204 41810,-68621 72636,-94014 31062,-25393 67912,-44763 110549,-58109 42991,-13346 88935,-19960 138541,-19960 25393,0 50786,2126 76416,6614 25748,4606 49960,10275 72518,17834 22677,7323 42991,15826 60826,24803 17480,9094 29291,16653 34724,22086 5787,5787 9449,10039 11220,13346 1772,3307 3071,7559 4252,12401 1181,5079 2126,11102 2716,18425 591,6968 945,16063 945,27519 0,10512 -354,19960 -1299,28346 -827,8268 -2362,15118 -4252,20905 -1417,5433 -4134,9685 -7205,12401 -3307,2716 -6968,3898 -11220,3898 -6614,0 -16535,-4252 -30472,-12401 -13937,-8386 -30826,-17480 -51141,-28110 -19960,-10275 -43818,-19606 -71337,-28110 -27165,-8740 -57991,-12992 -92479,-12992 -31771,0 -59526,4252 -83148,12756 -23622,8740 -43228,19960 -58582,34133 -15118,14173 -26692,30826 -34488,50196 -7559,19606 -11456,40157 -11456,61889 0,31771 7205,59290 21968,82321 14882,22913 34488,43228 58936,61062 24803,17834 52676,33779 84093,48661 31181,14764 63188,29645 95786,44763 32362,15118 64487,31417 95549,49487 31417,17834 59290,39330 84093,63778 24448,24566 44054,53267 59172,86809 15118,33188 22677,72518 22677,118226z"/>\r
-  <path id="1" class="fil6" d="M152621896 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="2" class="fil6" d="M153567469 100622203c0,22913 -5669,39330 -17244,49251 -11456,9685 -24685,14527 -39566,14527l-523573 0c0,44409 4488,84329 13346,119644 8740,35669 23504,66259 44409,91652 20551,25393 47479,44763 80432,58345 33188,13582 73699,20551 121533,20551 37795,0 71574,-3071 100982,-9331 29527,-6142 55275,-12992 76770,-20551 21378,-7559 39212,-14527 53149,-20551 13937,-6378 24212,-9449 31417,-9449 4252,0 7913,945 11220,3071 3071,2126 5787,5079 7205,9331 1890,3898 3425,9685 4252,16889 945,7559 1299,16417 1299,26929 0,7559 -354,14291 -945,19960 -591,5433 -1181,10630 -2126,14882 -945,4488 -2480,8386 -4488,12047 -2126,3307 -4606,6614 -7913,9921 -3307,3425 -12992,8504 -28700,15826 -16063,7559 -36614,14409 -62007,21732 -25393,6968 -54684,13228 -87991,18779 -33188,5669 -68621,8386 -106415,8386 -65550,0 -122714,-9094 -171965,-27519 -49251,-18071 -90707,-45354 -124250,-81258 -33543,-36259 -58936,-81376 -75825,-135706 -17244,-54212 -25748,-117399 -25748,-189564 0,-68385 8740,-130037 26574,-184721 17598,-54448 43228,-100982 76534,-139013 33188,-38149 73699,-67204 120943,-87754 47125,-20196 100038,-30472 158383,-30472 62597,0 115746,9921 159564,30236 44172,19960 80195,47125 108541,81022 28110,33779 49015,73699 62243,119644 13346,45708 19960,94605 19960,146690l0 26574zm-146926 -43228c1890,-76770 -15118,-137242 -51023,-181060 -36023,-43818 -88935,-65668 -159328,-65668 -36259,0 -68030,6732 -95195,20315 -27283,13582 -49960,31771 -68385,54330 -18425,22441 -32598,48779 -42637,78306 -9921,29999 -15708,61062 -16889,93778l433457 0z"/>\r
-  <path id="3" class="fil6" d="M153938447 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="4" class="fil6" d="M154336471 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="5" class="fil6" d="M155534442 100837986c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path id="6" class="fil6" d="M156316554 100932945c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="7" class="fil6" d="M156958235 100309925c0,12992 -354,23858 -945,32598 -591,8858 -1890,15708 -3661,20905 -1535,5079 -3898,8740 -6614,11456 -2480,2716 -6024,3898 -10866,3898 -4842,0 -10630,-1181 -17244,-3898 -6968,-2716 -14527,-5433 -23031,-7795 -8386,-2716 -18071,-5197 -28700,-7559 -10512,-2480 -22086,-3661 -34488,-3661 -14764,0 -29291,3071 -43464,8740 -13937,6024 -29055,15708 -44409,29645 -15826,13582 -32125,31771 -49369,54094 -16889,22677 -35905,50196 -56456,82794l0 524518c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 116100c21850,-32007 42401,-57991 61416,-78306 19370,-19960 37440,-35905 54448,-47479 17244,-11456 34133,-19370 50786,-23858 16889,-4488 33779,-6614 51023,-6614 7559,0 16299,236 25984,1181 9685,945 19960,2716 30590,4842 10512,2362 20196,5079 28700,8149 8504,3071 14527,5787 18189,8740 3543,3071 6024,5787 6850,8504 1299,2716 2480,6024 3425,9921 827,4252 1417,10275 1772,18189 354,8149 354,18779 354,32362z"/>\r
-  <path id="8" class="fil6" d="M157253269 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4252 827,-8149 2953,-11456 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7205 3661,11456l0 797466zm16299 -1066162c0,34488 -6614,57755 -19606,70156 -13110,12401 -36968,18661 -72046,18661 -34369,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6732,-57755 19724,-70156 12992,-12401 36850,-18661 71928,-18661 34488,0 57991,6024 70747,18071 12638,12165 19015,35078 19015,68975z"/>\r
-  <path id="9" class="fil6" d="M158255298 100643935c0,69802 -7559,132399 -22677,188028 -14764,55393 -36850,102518 -66141,141139 -29055,38739 -65314,68621 -108305,89526 -42873,20905 -92124,31417 -147517,31417 -23504,0 -45354,-2362 -65314,-6968 -20196,-4842 -39566,-12047 -58936,-22322 -19015,-10039 -38031,-22677 -56810,-38149 -19015,-15118 -38976,-33188 -60117,-53739l0 399324c0,4842 -1299,8740 -3661,12401 -2362,3661 -6024,6614 -11456,9094 -5433,2126 -12756,3898 -22441,5079 -9331,1181 -21378,1890 -36259,1890 -14527,0 -26338,-709 -35669,-1890 -9685,-1181 -17244,-2953 -22677,-5079 -5669,-2480 -9685,-5433 -11811,-9094 -2126,-3661 -2953,-7559 -2953,-12401l0 -1113996c0,-5433 827,-9685 2716,-12992 1772,-2953 5433,-6024 10512,-8149 5433,-2362 12165,-4252 20551,-5079 8268,-945 18543,-1299 30236,-1299 12401,0 22677,354 30826,1299 7913,827 14527,2716 19960,4724 5433,2480 9094,5551 11220,8504 2126,3307 3071,7559 3071,12992l0 106770c24094,-24803 47479,-46298 69802,-64723 22322,-18189 44999,-33306 67676,-45354 22677,-12047 45944,-21496 69802,-27519 23976,-6378 49015,-9331 75589,-9331 57755,0 106770,11102 147517,33543 40511,22677 73818,53149 99447,92242 25748,38976 44527,84329 56338,135942 11693,51731 17480,106415 17480,164170zm-152359 16889c0,-40747 -3071,-80314 -9331,-118462 -6142,-38031 -17008,-71928 -31771,-101573 -15118,-29645 -35432,-53149 -60826,-70983 -25393,-17834 -57046,-26692 -94841,-26692 -19015,0 -37558,2716 -55983,8504 -18071,5787 -36850,14527 -55865,26574 -18779,12165 -38739,28110 -59290,48070 -20551,19960 -42637,44527 -65550,73463l0 317120c40157,49251 78306,86809 114211,113029 36259,26102 74054,39094 113738,39094 36495,0 67912,-8858 94250,-26692 26338,-17834 47479,-41338 63778,-70983 16299,-29645 28110,-62597 36023,-99447 7559,-36614 11456,-73818 11456,-111022z"/>\r
-  <path id="10" class="fil6" d="M158881035 100996369c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="11" class="fil6" d="M159557558 100837986c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M60987011 62698280c0,4842 -945,8858 -2716,12401 -1772,3661 -5433,6732 -11456,9094 -5787,2126 -14291,3898 -24803,5197 -10630,1181 -24803,1772 -42401,1772 -15354,0 -28110,-591 -37676,-1772 -9685,-1299 -17598,-3071 -23622,-5787 -5787,-2716 -10275,-6378 -13582,-11220 -3307,-4488 -6024,-10512 -8504,-17480l-105234 -270586c-12401,-30826 -25393,-58936 -38621,-84565 -13346,-25748 -29055,-47834 -47479,-66613 -18189,-18661 -39921,-32952 -64723,-43464 -24803,-10275 -54684,-15472 -89408,-15472l-101927 0 0 488495c0,4842 -1181,8858 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l243657 0c29055,0 52912,591 72282,2126 19015,1535 36259,3307 51731,4842 44409,7913 83384,19960 117518,36259 33897,16653 62243,37558 85274,62952 23267,25393 40511,54330 51968,87282 11456,32716 17244,68975 17244,108541 0,38149 -5079,72636 -15354,103108 -10630,30236 -25393,57164 -44763,80432 -19724,23267 -42991,43582 -70156,60708 -27165,17008 -57401,31535 -91298,43228 19015,8504 36023,18779 51377,31535 15472,12638 29645,28110 42991,45590 13228,17834 25984,38385 37676,61416 11811,22913 23622,48897 35432,77951l102754 252751c8149,21141 13582,36259 15708,44763 2480,8386 3661,15118 3661,19842zm-229484 -805852c0,-44763 -9921,-82794 -30236,-113974 -19960,-30826 -53503,-53267 -100982,-66849 -14764,-4252 -31417,-6968 -49842,-8740 -18779,-1772 -42873,-2716 -73109,-2716l-128502 0 0 386332 148698 0c40275,0 74999,-4842 104289,-14527 29055,-9921 53503,-23504 72873,-40747 19606,-17598 33897,-38149 43228,-61652 9094,-23622 13582,-49369 13582,-77125z"/>\r
-  <path id="1" class="fil6" d="M61912034 62291161c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="2" class="fil6" d="M62861269 62289271c0,69329 -7559,131218 -22677,186611 -14764,55275 -36850,102400 -66141,141139 -29055,38976 -65078,68975 -107360,89526 -42283,20787 -91061,31062 -145745,31062 -25393,0 -48897,-2362 -70392,-7559 -21496,-4842 -42637,-12992 -63188,-24212 -20551,-11456 -41102,-25393 -62007,-42519 -20551,-17244 -42283,-37795 -65314,-62007l0 97912c0,4606 -1181,8740 -3543,12401 -2480,3661 -6142,6378 -11575,8504 -5433,2126 -12047,3543 -19960,4842 -8149,1181 -18425,1772 -30826,1772 -11693,0 -21968,-591 -30236,-1772 -8386,-1299 -15118,-2716 -20551,-4842 -5079,-2126 -8740,-4842 -10512,-8504 -1890,-3661 -2716,-7559 -2716,-12401l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c23504,-24212 46180,-44763 68621,-61416 22086,-16299 43464,-29881 64605,-40157 21496,-10275 42637,-17834 63778,-22677 21259,-4606 43582,-6968 67204,-6968 57755,0 107006,11456 148108,34488 40747,22913 74054,54094 99683,92479 25748,38621 44527,83975 56338,136061 11693,51968 17480,107006 17480,164643zm-152359 17008c0,-40865 -3071,-80432 -9331,-118817 -6142,-38739 -17008,-72518 -32362,-102164 -15472,-29645 -35669,-53503 -61062,-71337 -25393,-18189 -57164,-27283 -94959,-27283 -18779,0 -37440,2716 -55865,7913 -18189,5433 -36968,14527 -55629,26929 -19134,12401 -38739,28346 -58936,48070 -20669,19370 -42401,44054 -65314,73699l0 318065c40157,49251 78542,86691 115155,112439 36614,25748 74999,38739 114565,38739 36614,0 67676,-8858 93660,-26692 25984,-17834 47243,-41338 63542,-70747 16299,-28936 28110,-61889 35314,-98148 7559,-36614 11220,-73463 11220,-110667z"/>\r
-  <path id="3" class="fil6" d="M63821370 62291161c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="4" class="fil6" d="M64433170 62639934c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path class="fil6" d="M60824731 63806370c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M61721644 64865327c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M62678201 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M63518659 64742613c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M64388171 64045775c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M65426577 64457264c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M66328687 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M67787676 64725960c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M68591402 64866272c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M69006788 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M69404931 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M70156571 64647654c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M91161743 46061926c0,4842 -945,8858 -2716,12401 -1772,3661 -5433,6732 -11456,9094 -5787,2126 -14291,3898 -24803,5197 -10630,1181 -24803,1772 -42401,1772 -15354,0 -28110,-591 -37676,-1772 -9685,-1299 -17598,-3071 -23622,-5787 -5787,-2716 -10275,-6378 -13582,-11220 -3307,-4488 -6024,-10512 -8504,-17480l-105234 -270586c-12401,-30826 -25393,-58936 -38621,-84565 -13346,-25748 -29055,-47834 -47479,-66613 -18189,-18661 -39921,-32952 -64723,-43464 -24803,-10275 -54684,-15472 -89408,-15472l-101927 0 0 488495c0,4842 -1181,8858 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l243657 0c29055,0 52912,591 72282,2126 19015,1535 36259,3307 51731,4842 44409,7913 83384,19960 117518,36259 33897,16653 62243,37558 85274,62952 23267,25393 40511,54330 51968,87282 11456,32716 17244,68975 17244,108541 0,38149 -5079,72636 -15354,103108 -10630,30236 -25393,57164 -44763,80432 -19724,23267 -42991,43582 -70156,60708 -27165,17008 -57401,31535 -91298,43228 19015,8504 36023,18779 51377,31535 15472,12638 29645,28110 42991,45590 13228,17834 25984,38385 37676,61416 11811,22913 23622,48897 35432,77951l102754 252751c8149,21141 13582,36259 15708,44763 2480,8386 3661,15118 3661,19842zm-229484 -805852c0,-44763 -9921,-82794 -30236,-113974 -19960,-30826 -53503,-53267 -100982,-66849 -14764,-4252 -31417,-6968 -49842,-8740 -18779,-1772 -42873,-2716 -73109,-2716l-128502 0 0 386332 148698 0c40275,0 74999,-4842 104289,-14527 29055,-9921 53503,-23504 72873,-40747 19606,-17598 33897,-38149 43228,-61652 9094,-23622 13582,-49369 13582,-77125z"/>\r
-  <path id="1" class="fil6" d="M92086766 45654807c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="2" class="fil6" d="M93036001 45652918c0,69329 -7559,131218 -22677,186611 -14764,55275 -36850,102400 -66141,141139 -29055,38976 -65078,68975 -107360,89526 -42283,20787 -91061,31062 -145745,31062 -25393,0 -48897,-2362 -70392,-7559 -21496,-4842 -42637,-12992 -63188,-24212 -20551,-11456 -41102,-25393 -62007,-42519 -20551,-17244 -42283,-37795 -65314,-62007l0 97912c0,4606 -1181,8740 -3543,12401 -2480,3661 -6142,6378 -11575,8504 -5433,2126 -12047,3543 -19960,4842 -8149,1181 -18425,1772 -30826,1772 -11693,0 -21968,-591 -30236,-1772 -8386,-1299 -15118,-2716 -20551,-4842 -5079,-2126 -8740,-4842 -10512,-8504 -1890,-3661 -2716,-7559 -2716,-12401l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c23504,-24212 46180,-44763 68621,-61416 22086,-16299 43464,-29881 64605,-40157 21496,-10275 42637,-17834 63778,-22677 21259,-4606 43582,-6968 67204,-6968 57755,0 107006,11456 148108,34488 40747,22913 74054,54094 99683,92479 25748,38621 44527,83975 56338,136061 11693,51968 17480,107006 17480,164643zm-152359 17008c0,-40865 -3071,-80432 -9331,-118817 -6142,-38739 -17008,-72518 -32362,-102164 -15472,-29645 -35669,-53503 -61062,-71337 -25393,-18189 -57164,-27283 -94959,-27283 -18779,0 -37440,2716 -55865,7913 -18189,5433 -36968,14527 -55629,26929 -19134,12401 -38739,28346 -58936,48070 -20669,19370 -42401,44054 -65314,73699l0 318065c40157,49251 78542,86691 115155,112439 36614,25748 74999,38739 114565,38739 36614,0 67676,-8858 93660,-26692 25984,-17834 47243,-41338 63542,-70747 16299,-28936 28110,-61889 35314,-98148 7559,-36614 11220,-73463 11220,-110667z"/>\r
-  <path id="3" class="fil6" d="M93996102 45654807c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="4" class="fil6" d="M94607902 46003581c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path class="fil6" d="M91001707 47166709c0,11220 -591,20905 -1772,29173 -1299,8149 -3425,14764 -6142,19960 -2953,4842 -6378,8858 -10275,10984 -3898,2362 -7913,3543 -12165,3543l-420819 0 0 391174 397788 0c4252,0 8268,945 12165,3071 3898,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19134 1181,8149 1772,18189 1772,30590 0,11575 -591,21259 -1772,29173 -1299,7795 -3425,14527 -6142,19724 -2953,4842 -6378,8740 -10275,11456 -3898,2716 -7913,3898 -12165,3898l-397788 0 0 479165c0,4252 -1181,8149 -3661,12165 -2362,3543 -6378,6614 -12401,8740 -5787,2126 -13701,3898 -23031,5433 -9449,1535 -21850,2126 -37322,2126 -14291,0 -26338,-591 -36377,-2126 -10039,-1535 -18189,-3307 -23976,-5433 -6024,-2126 -10039,-5197 -12401,-8740 -2480,-4016 -3661,-7913 -3661,-12165l0 -1064626c0,-23031 6024,-39094 18189,-48542 12165,-9094 25157,-13582 38858,-13582l516605 0c4252,0 8268,1181 12165,3543 3898,2126 7323,6142 10275,11575 2716,5197 4842,12165 6142,20669 1181,8504 1772,18425 1772,29645z"/>\r
-  <path id="1" class="fil6" d="M91901336 48228974c0,4842 -827,8740 -2953,12047 -2126,3071 -5787,6142 -11220,8504 -5197,2126 -12165,4016 -21023,5197 -8386,1181 -19015,1772 -31535,1772 -13346,0 -24566,-591 -32952,-1772 -8858,-1181 -15472,-3071 -20669,-5197 -4842,-2362 -8504,-5433 -10039,-8504 -1772,-3307 -2716,-7205 -2716,-12047l0 -105825c-45826,50314 -90589,86691 -135234,109722 -44291,23031 -89408,34606 -134879,34606 -53385,0 -98266,-8858 -134643,-26692 -36377,-17598 -66141,-41928 -88581,-72518 -22441,-30354 -38503,-65786 -48542,-106415 -9685,-40629 -14527,-90116 -14527,-147989l0 -484834c0,-4842 945,-8740 3071,-12165 2126,-2953 6024,-6024 12047,-8740 5787,-2716 13701,-4606 23149,-5433 9331,-945 21141,-1299 35432,-1299 14291,0 26102,354 35432,1299 9449,827 17008,2716 22795,5433 5433,2716 9331,5787 11811,8740 2480,3425 3661,7323 3661,12165l0 465700c0,46771 3307,84329 10275,112557 6732,28228 17008,52086 30944,71810 13937,20078 31889,35551 53031,46416 21259,10984 46062,16417 74644,16417 36614,0 73345,-13110 109722,-39094 36732,-26102 75235,-64369 116100,-114683l0 -559124c0,-4842 945,-8740 3071,-12165 2126,-2953 6024,-6024 12165,-8740 5787,-2716 13346,-4606 22441,-5433 9331,-945 21259,-1299 36023,-1299 14291,0 26102,354 35551,1299 9331,827 16889,2716 22086,5433 5433,2716 9449,5787 12165,8740 2716,3425 3898,7323 3898,12165l0 799946z"/>\r
-  <path id="2" class="fil6" d="M92860728 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21259,1772 -35551,1772 -15118,0 -27283,-591 -36614,-1772 -9803,-1181 -17008,-3071 -22441,-5197 -5551,-2362 -9094,-5433 -11575,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -468535c0,-45472 -3661,-82439 -10630,-110077 -6968,-27874 -17244,-51849 -30826,-72164 -13701,-19960 -30944,-35432 -52558,-46062 -21496,-10630 -46298,-16063 -74526,-16063 -36732,0 -73109,12992 -109486,39094 -36732,26102 -74881,64251 -114919,114565l0 559242c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4842 945,-8740 2716,-12165 1890,-2953 5197,-6024 10630,-8740 5433,-2716 12165,-4606 20669,-5433 8149,-945 19370,-1299 33070,-1299 12992,0 23858,354 32362,1299 8858,827 15472,2716 20315,5433 4606,2716 8268,5787 10394,8740 1772,3425 2953,7323 2953,12165l0 105825c44881,-50668 89526,-87636 134407,-111022 44527,-23267 89408,-35078 134879,-35078 53031,0 97912,9094 134289,26929 36495,18189 65904,42401 88345,72518 22441,30236 38503,65786 48188,106415 9685,40629 14527,89408 14527,146100l0 488259z"/>\r
-  <path id="3" class="fil6" d="M93685477 48105787c0,10039 -354,18779 -945,26102 -591,7559 -1535,13701 -2953,18779 -1535,5197 -3425,9449 -5551,13346 -2126,4016 -6614,9685 -14173,17008 -7323,7559 -20078,16653 -37676,27874 -17834,10984 -37913,20905 -59999,29409 -22441,8858 -46416,15826 -72518,20905 -25984,5551 -53031,8268 -80904,8268 -57637,0 -108541,-9449 -152832,-28582 -44527,-18779 -81849,-46298 -111612,-82794 -29999,-36377 -52676,-81258 -68503,-133935 -15708,-53149 -23622,-114092 -23622,-183540 0,-78542 9685,-146100 28818,-202792 19370,-56456 45708,-102754 79132,-138895 33661,-36023 72991,-62715 118226,-80314 45472,-17362 94605,-26102 147399,-26102 25393,0 49960,2362 73936,7323 24330,4488 46062,10866 66377,18425 20078,7913 38267,16653 53739,27047 15708,9921 27283,18779 34251,25748 7323,7205 12165,12992 14882,17008 2362,4252 4842,9094 6614,14764 1535,5551 2716,11929 3307,19134 709,6968 945,16063 945,26692 0,23031 -2716,39094 -7913,48542 -5433,9094 -11811,13582 -19606,13582 -8858,0 -19134,-4842 -30708,-14764 -11456,-9803 -26102,-20669 -43936,-32480 -17952,-11811 -39448,-22795 -64605,-32480 -25157,-10039 -54920,-14882 -89172,-14882 -70629,0 -124840,27047 -162517,81258 -37558,53975 -56338,132517 -56338,235389 0,51259 4842,96376 14527,135234 10039,38503 24212,70865 43346,96967 18779,25748 42165,45235 69802,57991 27519,12638 59054,19015 94605,19015 33897,0 63660,-5433 89054,-16063 25511,-10630 47361,-22441 66141,-35432 18779,-12756 34606,-24212 47361,-34606 12638,-10630 22441,-15708 29645,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6260 7559,11811 2126,5669 3661,12638 4606,21496 827,8504 1181,18779 1181,30590z"/>\r
-  <path id="4" class="fil6" d="M94576012 47406941c17598,0 29645,3898 36377,12047 6378,7913 9685,19488 9685,34842l0 775144c0,4842 -1181,8740 -3661,12047 -2362,3071 -6378,6142 -11811,8504 -5787,2126 -13346,4016 -22677,5197 -9449,1181 -20905,1772 -34606,1772 -14882,0 -27047,-591 -36377,-1772 -9449,-1181 -17008,-3071 -22795,-5197 -5433,-2362 -9331,-5433 -11811,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -700145 -412906 0 0 444795c0,54920 8149,96376 24566,124250 16063,28228 45472,42165 87282,42165 13701,0 25748,-1181 36732,-3898 10630,-2716 19960,-5433 28110,-8504 8504,-3071 15472,-5787 21614,-8504 5787,-2716 11220,-3898 16063,-3898 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1299,7086 1890,16181 1890,26692 0,17362 -1181,30708 -3661,40393 -2480,10039 -5787,17244 -10630,22441 -4842,5079 -11811,9685 -21259,13582 -9685,4252 -20551,7677 -32716,10394 -12165,2716 -24803,4842 -38503,6614 -13582,1890 -27637,2716 -41220,2716 -41574,0 -77006,-5433 -106770,-16299 -29645,-10984 -53975,-27637 -72991,-49724 -18897,-22204 -32834,-50432 -41338,-84329 -8740,-34015 -12992,-74054 -12992,-120116l0 -466291 -112557 0c-8740,0 -16063,-4842 -21496,-14291 -5079,-9449 -7913,-24921 -7913,-46416 0,-11220 709,-20551 2126,-28228 1535,-7795 3661,-14173 5787,-19370 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-2953 12992,-2953l111612 0 0 -189918c0,-4252 945,-8149 3071,-11456 2126,-3661 6024,-6732 11811,-9449 5433,-2716 12992,-4488 22677,-5787 9449,-1181 21259,-1772 35787,-1772 14882,0 27047,591 36377,1772 9803,1299 17008,3071 22441,5787 5551,2716 9094,5787 11575,9449 2362,3307 3661,7205 3661,11456l0 189918 514243 0zm62479 -247436c0,34488 -6732,57873 -19724,70274 -13110,12401 -36968,18779 -72164,18779 -34606,0 -58227,-6024 -70983,-18189 -12756,-12047 -19134,-35078 -19134,-69093 0,-34606 6732,-57873 19724,-70392 13110,-12401 36968,-18779 72164,-18779 34606,0 58227,6142 70983,18189 12756,12165 19134,35196 19134,69211z"/>\r
-  <path id="5" class="fil6" d="M95599419 47819611c0,65196 -8504,125195 -25748,180115 -17008,54566 -42755,101809 -76770,141612 -33897,39684 -76652,70629 -127557,92715 -51259,22204 -110785,33425 -177989,33425 -65904,0 -123187,-9803 -171965,-29409 -48897,-19488 -89526,-47952 -121888,-85274 -32480,-37322 -56692,-82794 -72755,-135824 -16063,-53385 -23976,-113738 -23976,-181296 0,-65196 8504,-125313 25157,-179879 17008,-54802 42401,-102164 76416,-141848 33897,-39802 76416,-70392 127321,-92479 50905,-21850 110431,-32716 178343,-32716 65786,0 123069,9685 171847,29409 48897,19370 89526,47834 121888,85156 32480,37322 57046,82439 73463,135824 16063,53385 24212,113384 24212,180469zm-152832 9331c0,-43346 -3898,-84211 -12047,-122714 -7913,-38621 -21259,-72282 -39802,-101337 -18189,-29055 -43346,-52204 -74881,-68857 -31181,-17008 -70629,-25393 -117636,-25393 -43346,0 -80668,7559 -111848,23031 -31299,15472 -56810,37204 -77125,65432 -20315,28228 -35078,61534 -44763,100038 -10039,38621 -14882,80668 -14882,126139 0,44054 3898,85274 12047,123777 7913,38503 21259,72164 40039,100982 18779,28464 44054,51495 75235,68266 31535,16889 70983,25393 117990,25393 42755,0 79723,-7559 111258,-23031 31535,-15472 57282,-36968 77597,-64841 20315,-27992 35196,-61298 44645,-99801 9331,-38503 14173,-80904 14173,-127084z"/>\r
-  <path id="6" class="fil6" d="M96504245 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21259,1772 -35551,1772 -15118,0 -27283,-591 -36614,-1772 -9803,-1181 -17008,-3071 -22441,-5197 -5551,-2362 -9094,-5433 -11575,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -468535c0,-45472 -3661,-82439 -10630,-110077 -6968,-27874 -17244,-51849 -30826,-72164 -13701,-19960 -30944,-35432 -52558,-46062 -21496,-10630 -46298,-16063 -74526,-16063 -36732,0 -73109,12992 -109486,39094 -36732,26102 -74881,64251 -114919,114565l0 559242c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4842 945,-8740 2716,-12165 1890,-2953 5197,-6024 10630,-8740 5433,-2716 12165,-4606 20669,-5433 8149,-945 19370,-1299 33070,-1299 12992,0 23858,354 32362,1299 8858,827 15472,2716 20315,5433 4606,2716 8268,5787 10394,8740 1772,3425 2953,7323 2953,12165l0 105825c44881,-50668 89526,-87636 134407,-111022 44527,-23267 89408,-35078 134879,-35078 53031,0 97912,9094 134289,26929 36495,18189 65904,42401 88345,72518 22441,30236 38503,65786 48188,106415 9685,40629 14527,89408 14527,146100l0 488259z"/>\r
-  <path id="7" class="fil6" d="M97967487 48089134c0,9449 -236,17598 -827,24921 -591,6968 -1535,12992 -3071,18425 -1535,5197 -3307,10039 -5787,14291 -2362,3898 -6614,9094 -12401,14882 -6024,6024 -18543,15118 -37322,27283 -19134,12047 -42755,23976 -70983,35432 -28110,11575 -60235,21259 -96731,29173 -36614,8149 -76298,12047 -119762,12047 -74526,0 -142202,-12401 -202201,-37322 -59999,-24803 -111612,-61534 -153777,-110313 -42401,-48542 -75117,-108541 -97912,-179761 -22677,-71574 -34251,-153777 -34251,-246846 0,-95549 12401,-180469 36968,-255350 24566,-74644 59172,-137950 103699,-189800 44645,-51849 97675,-91298 159800,-118581 61889,-27283 130746,-40984 205862,-40984 33425,0 65904,3071 97085,9094 31535,6378 60589,14055 87282,23385 26692,9449 50432,20315 71337,32716 20551,12165 35196,22441 42991,30354 8268,7913 13346,13937 15826,18189 2362,4016 4252,8858 5787,14527 1417,5787 2716,12519 3543,20078 945,7913 1299,17008 1299,27519 0,12165 -709,22204 -1890,30354 -1181,8504 -2953,15472 -5433,21259 -2126,5433 -5197,9685 -8504,12401 -3071,2716 -7323,4016 -11811,4016 -8504,0 -19960,-5787 -35196,-17362 -14882,-11456 -33897,-24212 -57637,-38149 -23622,-13937 -52086,-26692 -85746,-38267 -34015,-11456 -74290,-17244 -121297,-17244 -51613,0 -98266,10275 -140076,30590 -42165,20669 -78306,50668 -107951,90353 -29763,39802 -53031,88227 -69448,145627 -16417,57282 -24566,122714 -24566,196178 0,72991 7913,137596 23622,193697 15826,56101 38503,103108 67912,140667 29409,37676 65786,66141 108541,85510 43109,19134 91652,28818 145864,28818 45826,0 86101,-5669 120470,-16889 34251,-11220 63306,-23740 87282,-37676 24212,-13937 43936,-26338 59408,-37558 15826,-11220 27874,-17008 36732,-17008 4252,0 7795,945 10866,2716 3071,1890 5197,5197 6968,10039 1890,5197 3307,12165 4252,20905 945,8858 1181,20078 1181,33661z"/>\r
-  <path id="8" class="fil6" d="M98755622 48229800c0,6968 -2480,12519 -6968,16063 -4842,3661 -11220,6142 -19724,7913 -8149,1890 -20315,2716 -36377,2716 -15118,0 -27637,-827 -36732,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-16063l0 -79959c-34842,37204 -73699,66377 -116691,86928 -43109,20315 -88581,30708 -136533,30708 -42165,0 -80314,-5551 -114329,-16417 -33897,-10866 -63070,-26929 -86928,-47598 -23976,-20669 -42755,-46416 -56101,-76416 -13346,-30354 -20078,-64605 -20078,-103108 0,-45117 9094,-84329 27637,-117281 18189,-33425 44527,-61062 79132,-82794 34251,-21850 76416,-38503 126139,-49487 49724,-10866 105825,-16299 167950,-16299l110431 0 0 -62479c0,-30708 -3425,-57991 -9685,-81967 -6732,-23622 -17008,-43346 -31535,-59054 -14645,-15826 -33425,-27637 -56456,-35551 -23031,-8149 -51495,-12047 -85156,-12047 -36141,0 -68621,4252 -97085,12992 -28818,8858 -53975,18189 -75471,28818 -21496,10630 -39802,20078 -54330,28818 -14173,8740 -25157,12992 -32125,12992 -4842,0 -9094,-1181 -12401,-3543 -3661,-2126 -6732,-5787 -9449,-10630 -2716,-4606 -4488,-10630 -5787,-17952 -1181,-7559 -1772,-15472 -1772,-24566 0,-14527 945,-26338 3071,-34842 2126,-8504 7205,-16653 15118,-24212 7913,-7677 21850,-16771 41220,-27283 19488,-10394 42165,-20078 67676,-28818 25157,-8504 53031,-15826 83384,-21614 29999,-5669 60589,-8386 91298,-8386 57282,0 106061,6260 146454,19370 40275,12992 72755,32480 97557,57637 24921,25157 42755,56338 53975,93660 11220,37322 17008,80904 17008,130628l0 539754zm-145509 -366253l-125313 0c-39921,0 -74881,3307 -104526,10275 -29409,6732 -53975,17008 -73699,30354 -19488,13346 -33661,29055 -43109,47952 -9094,18779 -13582,40275 -13582,64487 0,41574 12992,74644 39330,99211 26456,24566 63070,36968 110785,36968 38149,0 73936,-9685 106652,-29409 32834,-19370 67322,-49369 103463,-89762l0 -170076z"/>\r
-  <path id="9" class="fil6" d="M99172308 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>\r
-  <path id="10" class="fil6" d="M99589820 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>\r
-  <path id="11" class="fil6" d="M100343940 48010592c0,40984 -7559,77361 -22795,109486 -15118,31771 -36377,58818 -64251,80668 -27874,21850 -60944,38503 -99447,49724 -38503,11220 -81022,17008 -127084,17008 -28464,0 -55511,-2126 -81258,-6732 -25748,-4252 -48779,-9685 -69448,-16653 -20315,-6732 -37558,-13701 -51849,-20905 -14173,-7323 -24566,-13937 -30944,-19724 -6614,-5787 -11456,-14291 -14173,-24921 -3071,-10512 -4606,-25157 -4606,-43582 0,-11220 591,-20669 1890,-28228 1181,-7913 2716,-13937 4252,-18779 1772,-4842 4488,-8268 7559,-10394 3307,-2008 6968,-2953 11220,-2953 6378,0 16063,3898 28818,12165 12638,7795 28464,16653 47007,25984 18425,9449 40629,18189 66022,26102 25511,8149 54566,12165 87636,12165 24921,0 47361,-2716 67322,-8268 20315,-5079 37558,-12992 52440,-23622 14882,-10275 26102,-23622 34251,-39684 7913,-16063 11811,-35196 11811,-57282 0,-22441 -5669,-41574 -17244,-56692 -11456,-15472 -26692,-29173 -45472,-40984 -19134,-11811 -40275,-22441 -64015,-31535 -23622,-9094 -47834,-18779 -72991,-28818 -24921,-10275 -49487,-21496 -73463,-34251 -23976,-12756 -45117,-28228 -64251,-46653 -18779,-18543 -33897,-40393 -45472,-65904 -11575,-25393 -17244,-55747 -17244,-91534 0,-31181 6024,-61180 18189,-89998 12047,-28818 30236,-53975 54566,-75589 24566,-21496 54802,-39094 91298,-52086 36377,-13110 78778,-19370 127557,-19370 21259,0 42519,1772 64015,5433 21259,3661 40393,8504 57637,13937 17244,5433 31771,11456 43936,17834 12165,6732 21496,12165 27637,17362 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4606,12165 827,4252 1772,9685 2716,16063 827,6614 1181,14527 1181,23858 0,10039 -354,18897 -1181,26102 -945,7323 -2480,13346 -4606,17952 -2126,4842 -4488,8149 -7559,10275 -3071,2126 -6378,3071 -9685,3071 -5433,0 -13110,-3425 -23385,-10039 -10039,-6378 -23031,-13346 -39094,-20905 -16063,-7559 -34842,-14527 -56456,-20905 -21496,-6732 -46298,-10039 -74290,-10039 -24803,0 -47007,2716 -65786,8504 -19015,5433 -34488,13346 -46653,23622 -12165,10275 -21496,22441 -27637,36732 -6378,13937 -9331,29409 -9331,45708 0,23149 6024,42519 17834,58227 11811,15826 27047,29409 46062,41220 18897,11929 40629,22441 64959,32244 24212,9331 48779,19015 73936,29055 25157,10275 50078,21496 74644,34015 24566,12401 46416,27519 65196,45117 19134,17952 34251,39094 45708,64015 11575,24803 17362,54566 17362,88817z"/>\r
-  <path class="fil6" d="M72445151 82759887c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M73035219 83570345l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M73897881 83488968c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M74759598 83548258c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M75766824 83140195c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M76650745 83548258c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M72343578 84655522c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M73240491 85714479c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M74197049 85714479c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M75037506 85591765c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M75907018 84894927c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M76945425 85306416c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M77847534 85714479c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M72506804 87741214c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="1" class="fil6" d="M73292459 87881527c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="2" class="fil6" d="M73707845 87880582c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="3" class="fil6" d="M74124058 87880582c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="4" class="fil6" d="M74875698 87662909c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil6" d="M137163080 75604898c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M137753148 76415355l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M138615809 76333979c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M139477526 76393269c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M140484752 75985206c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M141368673 76393269c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M137061507 77500415c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M137958420 78559372c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M138914977 78559372c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M139755435 78436658c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M140624946 77739820c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M141663353 78151308c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M142547274 78559372c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M137224732 80586225c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="1" class="fil6" d="M138010387 80726538c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="2" class="fil6" d="M138425774 80725593c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="3" class="fil6" d="M138841986 80725593c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="4" class="fil6" d="M139593626 80507919c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <polygon class="fil11 str1" points="21907755,116132396 157697474,116132396 157697474,103325107 21907755,103325107 "/>\r
-  <path class="fil6" d="M151738093 28827945c0,53739 -9921,101573 -29645,143738 -20078,41928 -47598,77715 -82794,107124 -35196,29055 -76770,51141 -124368,66022 -47834,14882 -99093,22204 -154367,22204 -38503,0 -74290,-3425 -107006,-9803 -33070,-6614 -62479,-14764 -88227,-24212 -25748,-9331 -47243,-19370 -64841,-29409 -17362,-10275 -29763,-18779 -36377,-26102 -6968,-6968 -11929,-16063 -15236,-26929 -3307,-10984 -4842,-25511 -4842,-43700 0,-12992 591,-23976 1890,-32480 1181,-8504 2953,-15472 5079,-20551 2480,-5433 5433,-9094 9094,-11220 3661,-2126 7559,-3071 12401,-3071 8268,0 20078,5197 35196,15236 14882,9921 34251,20905 58227,32716 23622,11456 52204,22677 85865,33070 33306,10275 72164,15472 115746,15472 33425,0 63778,-4606 91298,-13346 27637,-8858 51259,-21259 70983,-37676 19960,-16063 35196,-36023 45826,-59763 10630,-23622 16063,-50550 16063,-80550 0,-32480 -7323,-60353 -22204,-83384 -14764,-23149 -34251,-43464 -58464,-60944 -24566,-17362 -52204,-33425 -83148,-47952 -31181,-14527 -63070,-29173 -95431,-44291 -32480,-15118 -64369,-31889 -94959,-50314 -30944,-18189 -58464,-39684 -82794,-64605 -24212,-24803 -43936,-53975 -58818,-87636 -15118,-33306 -22677,-73345 -22677,-120116 0,-48188 8740,-90943 25984,-128502 17598,-37322 41928,-68857 72873,-94368 31181,-25393 68148,-44881 110904,-58227 43109,-13228 89172,-19960 138895,-19960 25511,0 50905,2126 76770,6732 25748,4488 49960,10275 72755,17834 22677,7323 42991,15708 60944,24921 17598,9094 29409,16653 34842,22086 5787,5787 9449,10039 11220,13346 1772,3307 3071,7559 4252,12401 1181,5197 2126,11220 2716,18543 591,6968 945,16063 945,27519 0,10630 -354,20078 -1299,28582 -827,8149 -2362,15118 -4134,20905 -1535,5433 -4252,9685 -7323,12401 -3307,2716 -6968,3898 -11220,3898 -6732,0 -16653,-4134 -30590,-12401 -13937,-8504 -30944,-17598 -51259,-28228 -20078,-10275 -44054,-19606 -71574,-28110 -27283,-8858 -58227,-13110 -92833,-13110 -31771,0 -59763,4252 -83384,12756 -23622,8858 -43346,20078 -58818,34251 -15118,14291 -26692,30944 -34488,50314 -7677,19724 -11575,40393 -11575,62243 0,31771 7323,59408 22086,82439 14882,23031 34606,43346 59172,61298 24921,17834 52794,33897 84329,48779 31181,14882 63306,29763 96140,44881 32362,15118 64487,31535 95786,49724 31535,17834 59408,39448 84329,64015 24566,24566 44172,53385 59408,87046 15118,33306 22677,72755 22677,118462z"/>\r
-  <path id="1" class="fil6" d="M152626856 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21259,1772 -35551,1772 -15118,0 -27283,-591 -36614,-1772 -9803,-1181 -17008,-3071 -22441,-5197 -5551,-2362 -9094,-5433 -11575,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -468535c0,-45472 -3661,-82439 -10630,-110077 -6968,-27874 -17244,-51849 -30826,-72164 -13701,-19960 -30944,-35432 -52558,-46062 -21496,-10630 -46298,-16063 -74526,-16063 -36732,0 -73109,12992 -109486,39094 -36732,26102 -74881,64251 -114919,114565l0 559242c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 477865c41810,-44645 84329,-77715 126730,-99211 42519,-21496 85274,-32362 128265,-32362 53385,0 97912,9094 134289,26929 36495,18189 65904,42401 88345,72518 22441,30236 38503,65786 48188,106415 9685,40629 14527,89762 14527,147045l0 487314z"/>\r
-  <path id="2" class="fil6" d="M153575264 28693656c0,23031 -5669,39448 -17244,49487 -11575,9685 -24803,14527 -39684,14527l-525227 0c0,44527 4606,84565 13346,119998 8858,35787 23622,66495 44527,91888 20669,25511 47716,44881 80668,58582 33425,13582 74054,20551 121888,20551 37913,0 71928,-2953 101337,-9331 29763,-6142 55511,-13110 77006,-20669 21496,-7559 39448,-14527 53385,-20551 13937,-6378 24212,-9449 31535,-9449 4252,0 7913,945 11220,3071 3071,2126 5787,5079 7323,9331 1772,4016 3307,9685 4134,17008 945,7559 1299,16417 1299,27047 0,7559 -354,14173 -945,19960 -591,5433 -1181,10630 -2126,14882 -945,4488 -2362,8504 -4488,12165 -2126,3307 -4606,6614 -7913,9921 -3307,3307 -13110,8504 -28818,15826 -16063,7559 -36732,14527 -62125,21850 -25511,6968 -54920,13346 -88345,18779 -33306,5787 -68739,8504 -106652,8504 -65786,0 -123187,-9094 -172556,-27637 -49369,-18189 -90943,-45472 -124604,-81613 -33661,-36377 -59172,-81495 -76180,-136061 -17244,-54330 -25748,-117636 -25748,-190154 0,-68503 8858,-130391 26692,-185312 17598,-54566 43346,-101219 76770,-139486 33306,-38149 73936,-67322 121297,-87872 47243,-20315 100274,-30590 158855,-30590 62715,0 116100,9921 160036,30236 44291,20078 80432,47361 108896,81258 28228,34015 49133,74054 62479,120116 13346,45826 19960,94959 19960,147045l0 26692zm-147281 -43346c1772,-77006 -15236,-137714 -51259,-181650 -36141,-43936 -89172,-65786 -159800,-65786 -36377,0 -68266,6614 -95549,20315 -27283,13582 -50078,31889 -68503,54566 -18543,22441 -32716,48779 -42755,78542 -10039,29999 -15826,61298 -17008,94014l434874 0z"/>\r
-  <path id="3" class="fil6" d="M153929116 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>\r
-  <path id="4" class="fil6" d="M154328440 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>\r
-  <path id="5" class="fil6" d="M155530072 28910148c0,40984 -7559,77361 -22795,109486 -15118,31771 -36377,58818 -64251,80668 -27874,21850 -60944,38503 -99447,49724 -38503,11220 -81022,17008 -127084,17008 -28464,0 -55511,-2126 -81258,-6732 -25748,-4252 -48779,-9685 -69448,-16653 -20315,-6732 -37558,-13701 -51849,-20905 -14173,-7323 -24566,-13937 -30944,-19724 -6614,-5787 -11456,-14291 -14173,-24921 -3071,-10512 -4606,-25157 -4606,-43582 0,-11220 591,-20669 1890,-28228 1181,-7913 2716,-13937 4252,-18779 1772,-4842 4488,-8268 7559,-10394 3307,-2008 6968,-2953 11220,-2953 6378,0 16063,3898 28818,12165 12638,7795 28464,16653 47007,25984 18425,9449 40629,18189 66022,26102 25511,8149 54566,12165 87636,12165 24921,0 47361,-2716 67322,-8268 20315,-5079 37558,-12992 52440,-23622 14882,-10275 26102,-23622 34251,-39684 7913,-16063 11811,-35196 11811,-57282 0,-22441 -5669,-41574 -17244,-56692 -11456,-15472 -26692,-29173 -45472,-40984 -19134,-11811 -40275,-22441 -64015,-31535 -23622,-9094 -47834,-18779 -72991,-28818 -24921,-10275 -49487,-21496 -73463,-34251 -23976,-12756 -45117,-28228 -64251,-46653 -18779,-18543 -33897,-40393 -45472,-65904 -11575,-25393 -17244,-55747 -17244,-91534 0,-31181 6024,-61180 18189,-89998 12047,-28818 30236,-53975 54566,-75589 24566,-21496 54802,-39094 91298,-52086 36377,-13110 78778,-19370 127557,-19370 21259,0 42519,1772 64015,5433 21259,3661 40393,8504 57637,13937 17244,5433 31771,11456 43936,17834 12165,6732 21496,12165 27637,17362 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4606,12165 827,4252 1772,9685 2716,16063 827,6614 1181,14527 1181,23858 0,10039 -354,18897 -1181,26102 -945,7323 -2480,13346 -4606,17952 -2126,4842 -4488,8149 -7559,10275 -3071,2126 -6378,3071 -9685,3071 -5433,0 -13110,-3425 -23385,-10039 -10039,-6378 -23031,-13346 -39094,-20905 -16063,-7559 -34842,-14527 -56456,-20905 -21496,-6732 -46298,-10039 -74290,-10039 -24803,0 -47007,2716 -65786,8504 -19015,5433 -34488,13346 -46653,23622 -12165,10275 -21496,22441 -27637,36732 -6378,13937 -9331,29409 -9331,45708 0,23149 6024,42519 17834,58227 11811,15826 27047,29409 46062,41220 18897,11929 40629,22441 64959,32244 24212,9331 48779,19015 73936,29055 25157,10275 50078,21496 74644,34015 24566,12401 46416,27519 65196,45117 19134,17952 34251,39094 45708,64015 11575,24803 17362,54566 17362,88817z"/>\r
-  <path id="6" class="fil6" d="M156296357 29005344c0,10039 -354,18779 -945,26102 -591,7559 -1535,13701 -2953,18779 -1535,5197 -3425,9449 -5551,13346 -2126,4016 -6614,9685 -14173,17008 -7323,7559 -20078,16653 -37676,27874 -17834,10984 -37913,20905 -59999,29409 -22441,8858 -46416,15826 -72518,20905 -25984,5551 -53031,8268 -80904,8268 -57637,0 -108541,-9449 -152832,-28582 -44527,-18779 -81849,-46298 -111612,-82794 -29999,-36377 -52676,-81258 -68503,-133935 -15708,-53149 -23622,-114092 -23622,-183540 0,-78542 9685,-146100 28818,-202792 19370,-56456 45708,-102754 79132,-138895 33661,-36023 72991,-62715 118226,-80314 45472,-17362 94605,-26102 147399,-26102 25393,0 49960,2362 73936,7323 24330,4488 46062,10866 66377,18425 20078,7913 38267,16653 53739,27047 15708,9921 27283,18779 34251,25748 7323,7205 12165,12992 14882,17008 2362,4252 4842,9094 6614,14764 1535,5551 2716,11929 3307,19134 709,6968 945,16063 945,26692 0,23031 -2716,39094 -7913,48542 -5433,9094 -11811,13582 -19606,13582 -8858,0 -19134,-4842 -30708,-14764 -11456,-9803 -26102,-20669 -43936,-32480 -17952,-11811 -39448,-22795 -64605,-32480 -25157,-10039 -54920,-14882 -89172,-14882 -70629,0 -124840,27047 -162517,81258 -37558,53975 -56338,132517 -56338,235389 0,51259 4842,96376 14527,135234 10039,38503 24212,70865 43346,96967 18779,25748 42165,45235 69802,57991 27519,12638 59054,19015 94605,19015 33897,0 63660,-5433 89054,-16063 25511,-10630 47361,-22441 66141,-35432 18779,-12756 34606,-24212 47361,-34606 12638,-10630 22441,-15708 29645,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6260 7559,11811 2126,5669 3661,12638 4606,21496 827,8504 1181,18779 1181,30590z"/>\r
-  <path id="7" class="fil6" d="M156958235 28380434c0,12992 -236,23976 -945,32716 -591,8858 -1772,15826 -3543,20905 -1535,5197 -4016,8858 -6732,11575 -2362,2716 -6024,3898 -10866,3898 -4842,0 -10630,-1181 -17362,-3898 -6968,-2716 -14527,-5433 -23031,-7913 -8504,-2716 -18189,-5079 -28818,-7559 -10512,-2480 -22086,-3661 -34488,-3661 -14882,0 -29409,3071 -43700,8858 -13937,6024 -29055,15708 -44527,29645 -15826,13701 -32244,31889 -49487,54330 -17008,22677 -36023,50314 -56692,83030l0 526172c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4842 945,-8740 2716,-12165 1890,-2953 5197,-6024 10630,-8740 5433,-2716 12165,-4606 20669,-5433 8149,-945 19370,-1299 33070,-1299 12992,0 23858,354 32362,1299 8858,827 15472,2716 20315,5433 4606,2716 8268,5787 10394,8740 1772,3425 2953,7323 2953,12165l0 116455c21850,-32125 42519,-58227 61652,-78542 19370,-20078 37558,-36141 54566,-47598 17244,-11575 34251,-19488 50905,-23976 17008,-4606 34015,-6614 51259,-6614 7559,0 16299,236 26102,1181 9685,827 19960,2716 30590,4842 10630,2362 20315,5079 28818,8149 8504,3071 14527,5787 18189,8858 3661,2953 6024,5669 6968,8504 1181,2716 2362,6024 3307,9921 945,4252 1535,10394 1890,18189 236,8268 236,18779 236,32480z"/>\r
-  <path id="8" class="fil6" d="M157254214 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4252 945,-8149 3071,-11575 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7323 3661,11575l0 799946zm16417 -1069469c0,34488 -6732,57873 -19724,70274 -13110,12401 -36968,18779 -72164,18779 -34606,0 -58227,-6024 -70983,-18189 -12756,-12047 -19134,-35078 -19134,-69093 0,-34606 6732,-57873 19724,-70392 13110,-12401 36968,-18779 72164,-18779 34606,0 58227,6142 70983,18189 12756,12165 19134,35196 19134,69211z"/>\r
-  <path id="9" class="fil6" d="M158241243 28715506c0,70038 -7677,132754 -22795,188619 -14882,55511 -36968,102754 -66377,141612 -29173,38739 -65550,68739 -108541,89762 -43109,20905 -92479,31535 -147989,31535 -23622,0 -45472,-2480 -65550,-6968 -20315,-4842 -39684,-12165 -59054,-22441 -19134,-10039 -38267,-22795 -57046,-38267 -19134,-15118 -39094,-33306 -60353,-53975l0 400623c0,4842 -1181,8740 -3661,12401 -2362,3661 -6024,6614 -11456,9094 -5551,2126 -12756,3898 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1299 -17362,-3071 -22795,-5197 -5787,-2480 -9685,-5433 -11811,-9094 -2126,-3661 -3071,-7559 -3071,-12401l0 -1117421c0,-5433 945,-9685 2716,-12992 1890,-3071 5551,-6142 10630,-8268 5433,-2362 12165,-4252 20669,-5079 8149,-945 18425,-1299 30354,-1299 12401,0 22677,354 30826,1299 7913,827 14645,2716 20078,4842 5433,2362 9094,5433 11220,8504 2126,3307 3071,7559 3071,12992l0 107006c24212,-24803 47598,-46416 70038,-64841 22441,-18189 45117,-33425 67912,-45472 22677,-12165 46062,-21614 70038,-27637 23976,-6378 49133,-9331 75825,-9331 57873,0 107006,11102 147871,33543 40629,22795 74054,53385 99801,92597 25748,39094 44527,84565 56456,136415 11811,51849 17598,106770 17598,164643zm-152832 17008c0,-40984 -3071,-80668 -9449,-118935 -6024,-38149 -17008,-72164 -31889,-101809 -15118,-29763 -35432,-53385 -60944,-71337 -25393,-17834 -57282,-26692 -95195,-26692 -19015,0 -37558,2716 -56101,8504 -18189,5787 -36968,14527 -56101,26692 -18779,12165 -38739,28228 -59408,48188 -20551,20078 -42755,44645 -65786,73699l0 318065c40275,49487 78542,87046 114565,113502 36495,25984 74290,39094 114092,39094 36614,0 68148,-8858 94605,-26692 26338,-17952 47598,-41574 64015,-71219 16299,-29763 28110,-62834 36023,-99801 7559,-36732 11575,-74054 11575,-111258z"/>\r
-  <path id="10" class="fil6" d="M158868752 29069004c0,17362 -1181,30944 -3543,40984 -2126,10039 -5787,17598 -10630,22086 -4606,4842 -11811,9449 -21259,13346 -9449,4252 -20315,7677 -32480,10394 -12047,2716 -24803,4842 -38503,6614 -13582,1890 -26929,2716 -40629,2716 -41456,0 -77006,-5433 -106415,-16299 -29409,-10984 -53621,-27637 -72755,-49724 -18779,-22204 -32480,-50432 -41220,-84329 -8504,-34015 -12756,-74054 -12756,-120116l0 -466291 -112557 0c-8740,0 -16063,-4842 -21496,-14291 -5079,-9449 -7913,-24921 -7913,-46416 0,-11220 709,-20551 2126,-28228 1535,-7795 3661,-14173 5787,-19370 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-2953 12992,-2953l111612 0 0 -189918c0,-4252 945,-8149 3071,-11456 2126,-3661 6024,-6732 11811,-9449 5433,-2716 12992,-4488 22677,-5787 9449,-1181 21259,-1772 35787,-1772 14882,0 27047,591 36377,1772 9803,1299 17008,3071 22441,5787 5551,2716 9094,5787 11575,9449 2362,3307 3661,7205 3661,11456l0 189918 203736 0c4842,0 8740,827 12401,2953 3307,2126 6732,5787 9094,10630 2716,5197 4606,11575 5787,19370 1181,7677 1772,17008 1772,28228 0,21496 -2716,36968 -7795,46416 -5551,9449 -12519,14291 -21259,14291l-203736 0 0 444795c0,54920 8149,96376 24212,124250 16063,28228 45235,42165 87046,42165 13346,0 25511,-1181 36023,-3898 10630,-2716 20078,-5433 28228,-8504 8268,-3071 15236,-5787 21259,-8504 5787,-2716 11220,-3898 15708,-3898 3071,0 5787,591 8504,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,7086 1772,16181 1772,26692z"/>\r
-  <path id="11" class="fil6" d="M159565589 28910148c0,40984 -7559,77361 -22795,109486 -15118,31771 -36377,58818 -64251,80668 -27874,21850 -60944,38503 -99447,49724 -38503,11220 -81022,17008 -127084,17008 -28464,0 -55511,-2126 -81258,-6732 -25748,-4252 -48779,-9685 -69448,-16653 -20315,-6732 -37558,-13701 -51849,-20905 -14173,-7323 -24566,-13937 -30944,-19724 -6614,-5787 -11456,-14291 -14173,-24921 -3071,-10512 -4606,-25157 -4606,-43582 0,-11220 591,-20669 1890,-28228 1181,-7913 2716,-13937 4252,-18779 1772,-4842 4488,-8268 7559,-10394 3307,-2008 6968,-2953 11220,-2953 6378,0 16063,3898 28818,12165 12638,7795 28464,16653 47007,25984 18425,9449 40629,18189 66022,26102 25511,8149 54566,12165 87636,12165 24921,0 47361,-2716 67322,-8268 20315,-5079 37558,-12992 52440,-23622 14882,-10275 26102,-23622 34251,-39684 7913,-16063 11811,-35196 11811,-57282 0,-22441 -5669,-41574 -17244,-56692 -11456,-15472 -26692,-29173 -45472,-40984 -19134,-11811 -40275,-22441 -64015,-31535 -23622,-9094 -47834,-18779 -72991,-28818 -24921,-10275 -49487,-21496 -73463,-34251 -23976,-12756 -45117,-28228 -64251,-46653 -18779,-18543 -33897,-40393 -45472,-65904 -11575,-25393 -17244,-55747 -17244,-91534 0,-31181 6024,-61180 18189,-89998 12047,-28818 30236,-53975 54566,-75589 24566,-21496 54802,-39094 91298,-52086 36377,-13110 78778,-19370 127557,-19370 21259,0 42519,1772 64015,5433 21259,3661 40393,8504 57637,13937 17244,5433 31771,11456 43936,17834 12165,6732 21496,12165 27637,17362 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4606,12165 827,4252 1772,9685 2716,16063 827,6614 1181,14527 1181,23858 0,10039 -354,18897 -1181,26102 -945,7323 -2480,13346 -4606,17952 -2126,4842 -4488,8149 -7559,10275 -3071,2126 -6378,3071 -9685,3071 -5433,0 -13110,-3425 -23385,-10039 -10039,-6378 -23031,-13346 -39094,-20905 -16063,-7559 -34842,-14527 -56456,-20905 -21496,-6732 -46298,-10039 -74290,-10039 -24803,0 -47007,2716 -65786,8504 -19015,5433 -34488,13346 -46653,23622 -12165,10275 -21496,22441 -27637,36732 -6378,13937 -9331,29409 -9331,45708 0,23149 6024,42519 17834,58227 11811,15826 27047,29409 46062,41220 18897,11929 40629,22441 64959,32244 24212,9331 48779,19015 73936,29055 25157,10275 50078,21496 74644,34015 24566,12401 46416,27519 65196,45117 19134,17952 34251,39094 45708,64015 11575,24803 17362,54566 17362,88817z"/>\r
-  <path class="fil6" d="M82203834 28148351c0,4842 -945,8858 -2716,12401 -1772,3661 -5433,6732 -11456,9094 -5787,2126 -14291,3898 -24803,5197 -10630,1181 -24803,1772 -42401,1772 -15354,0 -28110,-591 -37676,-1772 -9685,-1299 -17598,-3071 -23622,-5787 -5787,-2716 -10275,-6378 -13582,-11220 -3307,-4488 -6024,-10512 -8504,-17480l-105234 -270586c-12401,-30826 -25393,-58936 -38621,-84565 -13346,-25748 -29055,-47834 -47479,-66613 -18189,-18661 -39921,-32952 -64723,-43464 -24803,-10275 -54684,-15472 -89408,-15472l-101927 0 0 488495c0,4842 -1181,8858 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l243657 0c29055,0 52912,591 72282,2126 19015,1535 36259,3307 51731,4842 44409,7913 83384,19960 117518,36259 33897,16653 62243,37558 85274,62952 23267,25393 40511,54330 51968,87282 11456,32716 17244,68975 17244,108541 0,38149 -5079,72636 -15354,103108 -10630,30236 -25393,57164 -44763,80432 -19724,23267 -42991,43582 -70156,60708 -27165,17008 -57401,31535 -91298,43228 19015,8504 36023,18779 51377,31535 15472,12638 29645,28110 42991,45590 13228,17834 25984,38385 37676,61416 11811,22913 23622,48897 35432,77951l102754 252751c8149,21141 13582,36259 15708,44763 2480,8386 3661,15118 3661,19842zm-229484 -805852c0,-44763 -9921,-82794 -30236,-113974 -19960,-30826 -53503,-53267 -100982,-66849 -14764,-4252 -31417,-6968 -49842,-8740 -18779,-1772 -42873,-2716 -73109,-2716l-128502 0 0 386332 148698 0c40275,0 74999,-4842 104289,-14527 29055,-9921 53503,-23504 72873,-40747 19606,-17598 33897,-38149 43228,-61652 9094,-23622 13582,-49369 13582,-77125z"/>\r
-  <path id="1" class="fil6" d="M83128856 27741232c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="2" class="fil6" d="M84078091 27739343c0,69329 -7559,131218 -22677,186611 -14764,55275 -36850,102400 -66141,141139 -29055,38976 -65078,68975 -107360,89526 -42283,20787 -91061,31062 -145745,31062 -25393,0 -48897,-2362 -70392,-7559 -21496,-4842 -42637,-12992 -63188,-24212 -20551,-11456 -41102,-25393 -62007,-42519 -20551,-17244 -42283,-37795 -65314,-62007l0 97912c0,4606 -1181,8740 -3543,12401 -2480,3661 -6142,6378 -11575,8504 -5433,2126 -12047,3543 -19960,4842 -8149,1181 -18425,1772 -30826,1772 -11693,0 -21968,-591 -30236,-1772 -8386,-1299 -15118,-2716 -20551,-4842 -5079,-2126 -8740,-4842 -10512,-8504 -1890,-3661 -2716,-7559 -2716,-12401l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c23504,-24212 46180,-44763 68621,-61416 22086,-16299 43464,-29881 64605,-40157 21496,-10275 42637,-17834 63778,-22677 21259,-4606 43582,-6968 67204,-6968 57755,0 107006,11456 148108,34488 40747,22913 74054,54094 99683,92479 25748,38621 44527,83975 56338,136061 11693,51968 17480,107006 17480,164643zm-152359 17008c0,-40865 -3071,-80432 -9331,-118817 -6142,-38739 -17008,-72518 -32362,-102164 -15472,-29645 -35669,-53503 -61062,-71337 -25393,-18189 -57164,-27283 -94959,-27283 -18779,0 -37440,2716 -55865,7913 -18189,5433 -36968,14527 -55629,26929 -19134,12401 -38739,28346 -58936,48070 -20669,19370 -42401,44054 -65314,73699l0 318065c40157,49251 78542,86691 115155,112439 36614,25748 74999,38739 114565,38739 36614,0 67676,-8858 93660,-26692 25984,-17834 47243,-41338 63542,-70747 16299,-28936 28110,-61889 35314,-98148 7559,-36614 11220,-73463 11220,-110667z"/>\r
-  <path id="3" class="fil6" d="M85038192 27741232c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="4" class="fil6" d="M85649992 28090006c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path class="fil6" d="M82041553 29256441c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>\r
-  <path id="1" class="fil6" d="M82938466 30315399c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>\r
-  <path id="2" class="fil6" d="M83895024 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="3" class="fil6" d="M84735481 30192684c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>\r
-  <path id="4" class="fil6" d="M85604993 29495846c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>\r
-  <path id="5" class="fil6" d="M86643399 29907335c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="6" class="fil6" d="M87545509 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path id="7" class="fil6" d="M89004499 30176031c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="8" class="fil6" d="M89808224 30316344c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>\r
-  <path id="9" class="fil6" d="M90223611 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="10" class="fil6" d="M90621753 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>\r
-  <path id="11" class="fil6" d="M91373393 30097725c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path class="fil10" d="M43541971 97625446l0 6989874 -460267 0 0 -6989874 460267 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381253,0 690460,309089 690460,690460 0,381371 -309207,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6989874c0,381253 -309207,690460 -690460,690460 -381371,0 -690460,-309207 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381253,0 690460,309207 690460,690460z"/>\r
-  <path class="fil10" d="M91305363 97625446l0 8269221 -460385 0 0 -8269221 460385 0zm-920653 0c0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460zm1380920 8269221c0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460 0,-381253 309207,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>\r
-  <path class="fil6" d="M92881279 100619250c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="1" class="fil6" d="M93471347 101429708l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>\r
-  <path id="2" class="fil6" d="M94334009 101348331c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="3" class="fil6" d="M95195726 101407622c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>\r
-  <path id="4" class="fil6" d="M96202952 100999558c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>\r
-  <path id="5" class="fil6" d="M97086873 101407622c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>\r
-  <path class="fil6" d="M98675899 101375851c4606,12992 7323,23267 7559,31535 354,7795 -2126,13819 -6614,18071 -4842,3898 -12638,6614 -23622,7913 -10866,1181 -25393,1772 -43818,1772 -18071,0 -32952,-236 -43818,-1181 -10866,-945 -19015,-2480 -24803,-4606 -5669,-2008 -9685,-4842 -12401,-8386 -2716,-3661 -5079,-7913 -7559,-13346l-98148 -278971 -476448 0 -94014 275310c-1890,5551 -4016,10039 -6968,13937 -3071,3898 -7323,6968 -12992,9685 -5433,2716 -13582,4488 -23858,5787 -10275,1181 -23622,1772 -40275,1772 -17244,0 -31062,-591 -42046,-2126 -10866,-1535 -18661,-4252 -22913,-8504 -4488,-4134 -6614,-10275 -6378,-18071 354,-8149 2716,-18425 7559,-31417l384206 -1064981c2480,-6732 5787,-12165 9449,-16063 3898,-4252 9331,-7559 16889,-9685 7205,-2362 16653,-4252 28464,-5079 11456,-945 25984,-1299 43818,-1299 18661,0 34369,354 46771,1299 12401,827 22441,2716 29999,5079 7795,2126 13582,5787 17834,10039 4252,4488 7559,9921 9685,16299l384442 1065217zm-493338 -940141l-827 0 -197477 571407 398497 0 -200193 -571407z"/>\r
-  <path id="1" class="fil6" d="M99641905 100619250c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="2" class="fil6" d="M100116464 101406677c0,4842 -1181,9094 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -22086,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1100295c0,-4842 1181,-9094 3898,-12401 2716,-3661 7323,-6378 13346,-8504 6378,-2126 14173,-3898 23858,-5433 9685,-1535 21496,-2126 35078,-2126 14764,0 26929,591 36850,2126 9685,1535 17598,3307 23267,5433 6142,2126 10039,4842 12401,8504 2480,3307 3661,7559 3661,12401l0 1100295z"/>\r
-  <path class="fil6" d="M61998017 100704642c-2362,6614 -5669,12047 -9921,15945 -4016,4252 -9685,7559 -17244,9685 -7323,2480 -16653,4252 -28464,5197 -11456,945 -25984,1181 -43818,1181 -12992,0 -24212,0 -33897,-236 -9921,-354 -18071,-1299 -25393,-2480 -6850,-1181 -12992,-2362 -18071,-3898 -5197,-1535 -9449,-3307 -12756,-5787 -3543,-2362 -6260,-5079 -8386,-8504 -2126,-3307 -4016,-7205 -5787,-11693l-374875 -1065335c-4488,-12992 -6968,-23267 -7205,-31417 -354,-7913 2126,-13937 7205,-18189 5433,-3898 13937,-6614 25748,-7795 11811,-1299 27755,-1890 48070,-1890 16299,0 29645,354 39330,1299 9567,827 17126,2716 22559,5079 5197,2126 9094,5433 11811,9094 2716,3898 5197,8740 7559,14764l328577 964943 1890 0 319837 -963054c1535,-6732 3543,-12165 6024,-16063 2362,-4252 6614,-7559 12401,-9685 6024,-2362 14173,-4252 24803,-5079 10512,-945 24803,-1299 42637,-1299 18071,0 32598,591 43228,2126 10512,1535 17834,4252 21732,8504 3898,4252 5433,10275 4488,18071 -827,8268 -3543,18543 -8386,31535l-373694 1064981z"/>\r
-  <path id="1" class="fil6" d="M63338780 99920759c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="2" class="fil6" d="M64346596 99920759c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>\r
-  <path id="3" class="fil6" d="M64832966 100022332c0,19015 -1181,35078 -3898,48070 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29055 -4016,-48070 0,-19960 1299,-36614 4016,-49842 2716,-13346 7559,-24212 14764,-32125 6968,-8149 16653,-13582 28464,-16889 11811,-3307 27165,-4842 46180,-4842 18543,0 33543,1535 45354,4842 11811,3307 21496,8740 29055,16889 7205,7913 12401,18779 15118,32125 2716,13228 3898,29881 3898,49842zm0 613926c0,19724 -1181,36023 -3898,49015 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29291 -4016,-49015 0,-19252 1299,-35669 4016,-48897 2716,-13346 7559,-23976 14764,-31771 6968,-7559 16653,-13346 28464,-16653 11811,-3661 27165,-5433 46180,-5433 18543,0 33543,1772 45354,5433 11811,3307 21496,9094 29055,16653 7205,7795 12401,18425 15118,31771 2716,13228 3898,29645 3898,48897z"/>\r
-  <path id="4" class="fil6" d="M65972591 100704642c-2362,6614 -5669,12047 -9921,15945 -4016,4252 -9685,7559 -17244,9685 -7323,2480 -16653,4252 -28464,5197 -11456,945 -25984,1181 -43818,1181 -12992,0 -24212,0 -33897,-236 -9921,-354 -18071,-1299 -25393,-2480 -6850,-1181 -12992,-2362 -18071,-3898 -5197,-1535 -9449,-3307 -12756,-5787 -3543,-2362 -6260,-5079 -8386,-8504 -2126,-3307 -4016,-7205 -5787,-11693l-374875 -1065335c-4488,-12992 -6968,-23267 -7205,-31417 -354,-7913 2126,-13937 7205,-18189 5433,-3898 13937,-6614 25748,-7795 11811,-1299 27755,-1890 48070,-1890 16299,0 29645,354 39330,1299 9567,827 17126,2716 22559,5079 5197,2126 9094,5433 11811,9094 2716,3898 5197,8740 7559,14764l328577 964943 1890 0 319837 -963054c1535,-6732 3543,-12165 6024,-16063 2362,-4252 6614,-7559 12401,-9685 6024,-2362 14173,-4252 24803,-5079 10512,-945 24803,-1299 42637,-1299 18071,0 32598,591 43228,2126 10512,1535 17834,4252 21732,8504 3898,4252 5433,10275 4488,18071 -827,8268 -3543,18543 -8386,31535l-373694 1064981z"/>\r
-  <path id="5" class="fil6" d="M67382447 100677359c4606,12992 7323,23267 7559,31535 354,7795 -2126,13819 -6614,18071 -4842,3898 -12638,6614 -23622,7913 -10866,1181 -25393,1772 -43818,1772 -18071,0 -32952,-236 -43818,-1181 -10866,-945 -19015,-2480 -24803,-4606 -5669,-2008 -9685,-4842 -12401,-8386 -2716,-3661 -5079,-7913 -7559,-13346l-98148 -278971 -476448 0 -94014 275310c-1890,5551 -4016,10039 -6968,13937 -3071,3898 -7323,6968 -12992,9685 -5433,2716 -13582,4488 -23858,5787 -10275,1181 -23622,1772 -40275,1772 -17244,0 -31062,-591 -42046,-2126 -10866,-1535 -18661,-4252 -22913,-8504 -4488,-4134 -6614,-10275 -6378,-18071 354,-8149 2716,-18425 7559,-31417l384206 -1064981c2480,-6732 5787,-12165 9449,-16063 3898,-4252 9331,-7559 16889,-9685 7205,-2362 16653,-4252 28464,-5079 11456,-945 25984,-1299 43818,-1299 18661,0 34369,354 46771,1299 12401,827 22441,2716 29999,5079 7795,2126 13582,5787 17834,10039 4252,4488 7559,9921 9685,16299l384442 1065217zm-493338 -940141l-827 0 -197477 571407 398497 0 -200193 -571407z"/>\r
-  <path id="6" class="fil6" d="M68366052 99650173c0,11220 -591,20905 -1772,29055 -1181,8149 -3071,14764 -5787,19960 -2716,4842 -5669,8740 -9685,10866 -3898,2362 -8149,3661 -12638,3661l-321963 0 0 994470c0,4842 -1181,8858 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -21968,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -9921,-1535 -18189,-3307 -23858,-5433 -6024,-2126 -10039,-4842 -12401,-8504 -2480,-3543 -3661,-7559 -3661,-12401l0 -994470 -321963 0c-4488,0 -8740,-1299 -12638,-3661 -4016,-2126 -6968,-6024 -9449,-10866 -2126,-5197 -4134,-11811 -5669,-19960 -1535,-8149 -2126,-17834 -2126,-29055 0,-11102 591,-21141 2126,-29645 1535,-8386 3543,-15354 5669,-20551 2480,-5433 5433,-9331 9449,-11456 3898,-2362 8149,-3661 12638,-3661l796285 0c4488,0 8740,1299 12638,3661 4016,2126 6968,6024 9685,11456 2716,5197 4606,12165 5787,20551 1181,8504 1772,18543 1772,29645z"/>\r
-  <path class="fil6" d="M62217816 101816276c0,11220 -591,20905 -1772,29055 -1181,8149 -3071,14764 -5787,19960 -2716,4842 -5669,8740 -9685,10866 -3898,2362 -8149,3661 -12638,3661l-321963 0 0 994470c0,4842 -1181,8858 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -21968,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -9921,-1535 -18189,-3307 -23858,-5433 -6024,-2126 -10039,-4842 -12401,-8504 -2480,-3543 -3661,-7559 -3661,-12401l0 -994470 -321963 0c-4488,0 -8740,-1299 -12638,-3661 -4016,-2126 -6968,-6024 -9449,-10866 -2126,-5197 -4134,-11811 -5669,-19960 -1535,-8149 -2126,-17834 -2126,-29055 0,-11102 591,-21141 2126,-29645 1535,-8386 3543,-15354 5669,-20551 2480,-5433 5433,-9331 9449,-11456 3898,-2362 8149,-3661 12638,-3661l796285 0c4488,0 8740,1299 12638,3661 4016,2126 6968,6024 9685,11456 2716,5197 4606,12165 5787,20551 1181,8504 1772,18543 1772,29645z"/>\r
-  <path id="1" class="fil6" d="M63047644 102441776c0,22913 -5669,39330 -17244,49251 -11456,9685 -24685,14527 -39566,14527l-523573 0c0,44409 4488,84329 13346,119644 8740,35669 23504,66259 44409,91652 20551,25393 47479,44763 80432,58345 33188,13582 73699,20551 121533,20551 37795,0 71574,-3071 100982,-9331 29527,-6142 55275,-12992 76770,-20551 21378,-7559 39212,-14527 53149,-20551 13937,-6378 24212,-9449 31417,-9449 4252,0 7913,945 11220,3071 3071,2126 5787,5079 7205,9331 1890,3898 3425,9685 4252,16889 945,7559 1299,16417 1299,26929 0,7559 -354,14291 -945,19960 -591,5433 -1181,10630 -2126,14882 -945,4488 -2480,8386 -4488,12047 -2126,3307 -4606,6614 -7913,9921 -3307,3425 -12992,8504 -28700,15826 -16063,7559 -36614,14409 -62007,21732 -25393,6968 -54684,13228 -87991,18779 -33188,5669 -68621,8386 -106415,8386 -65550,0 -122714,-9094 -171965,-27519 -49251,-18071 -90707,-45354 -124250,-81258 -33543,-36259 -58936,-81376 -75825,-135706 -17244,-54212 -25748,-117399 -25748,-189564 0,-68385 8740,-130037 26574,-184721 17598,-54448 43228,-100982 76534,-139013 33188,-38149 73699,-67204 120943,-87754 47125,-20196 100038,-30472 158383,-30472 62597,0 115746,9921 159564,30236 44172,19960 80195,47125 108541,81022 28110,33779 49015,73699 62243,119644 13346,45708 19960,94605 19960,146690l0 26574zm-146926 -43228c1890,-76770 -15118,-137242 -51023,-181060 -36023,-43818 -88935,-65668 -159328,-65668 -36259,0 -68030,6732 -95195,20315 -27283,13582 -49960,31771 -68385,54330 -18425,22441 -32598,48779 -42637,78306 -9921,29999 -15708,61062 -16889,93778l433457 0z"/>\r
-  <path id="2" class="fil6" d="M63772237 102657560c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>\r
-  <path id="3" class="fil6" d="M64374116 102815943c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>\r
-  <path id="4" class="fil6" d="M65282958 102463508c0,69802 -7559,132399 -22677,188028 -14764,55393 -36850,102518 -66141,141139 -29055,38739 -65314,68621 -108305,89526 -42873,20905 -92124,31417 -147517,31417 -23504,0 -45354,-2362 -65314,-6968 -20196,-4842 -39566,-12047 -58936,-22322 -19015,-10039 -38031,-22677 -56810,-38149 -19015,-15118 -38976,-33188 -60117,-53739l0 399324c0,4842 -1299,8740 -3661,12401 -2362,3661 -6024,6614 -11456,9094 -5433,2126 -12756,3898 -22441,5079 -9331,1181 -21378,1890 -36259,1890 -14527,0 -26338,-709 -35669,-1890 -9685,-1181 -17244,-2953 -22677,-5079 -5669,-2480 -9685,-5433 -11811,-9094 -2126,-3661 -2953,-7559 -2953,-12401l0 -1113996c0,-5433 827,-9685 2716,-12992 1772,-2953 5433,-6024 10512,-8149 5433,-2362 12165,-4252 20551,-5079 8268,-945 18543,-1299 30236,-1299 12401,0 22677,354 30826,1299 7913,827 14527,2716 19960,4724 5433,2480 9094,5551 11220,8504 2126,3307 3071,7559 3071,12992l0 106770c24094,-24803 47479,-46298 69802,-64723 22322,-18189 44999,-33306 67676,-45354 22677,-12047 45944,-21496 69802,-27519 23976,-6378 49015,-9331 75589,-9331 57755,0 106770,11102 147517,33543 40511,22677 73818,53149 99447,92242 25748,38976 44527,84329 56338,135942 11693,51731 17480,106415 17480,164170zm-152359 16889c0,-40747 -3071,-80314 -9331,-118462 -6142,-38031 -17008,-71928 -31771,-101573 -15118,-29645 -35432,-53149 -60826,-70983 -25393,-17834 -57046,-26692 -94841,-26692 -19015,0 -37558,2716 -55983,8504 -18071,5787 -36850,14527 -55865,26574 -18779,12165 -38739,28110 -59290,48070 -20551,19960 -42637,44527 -65550,73463l0 317120c40157,49251 78306,86809 114211,113029 36259,26102 74054,39094 113738,39094 36495,0 67912,-8858 94250,-26692 26338,-17834 47479,-41338 63778,-70983 16299,-29645 28110,-62597 36023,-99447 7559,-36614 11456,-73818 11456,-111022z"/>\r
-  <path id="5" class="fil6" d="M66685728 102875233c0,4842 -1299,8740 -3661,12165 -2480,2953 -6024,6024 -11456,8386 -5197,2126 -12756,3898 -22086,5197 -9449,1181 -21141,1772 -35432,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -484598c0,-33779 -3071,-64605 -8858,-92124 -6024,-27874 -15354,-51731 -28346,-72046 -12992,-19842 -29291,-35314 -49251,-45944 -19960,-10512 -43582,-15945 -70747,-15945 -33543,0 -67440,12992 -100982,38976 -33897,25984 -71337,64133 -111848,114211l0 557470c0,4842 -1181,8740 -3661,12165 -2362,2953 -6378,6024 -12047,8386 -5433,2126 -12992,3898 -22677,5197 -9449,1181 -21141,1772 -35432,1772 -13819,0 -25393,-591 -35314,-1772 -9685,-1299 -17598,-3071 -23031,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2008,-3425 -2953,-7323 -2953,-12165l0 -484598c0,-33779 -3307,-64605 -9685,-92124 -6614,-27874 -16299,-51731 -29291,-72046 -12992,-19842 -29409,-35314 -49015,-45944 -19960,-10512 -43228,-15945 -70392,-15945 -33543,0 -67794,12992 -101927,38976 -34133,25984 -71337,64133 -111494,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 88581,-87282 130982,-110549 41928,-23267 84920,-35078 127793,-35078 33306,0 62952,3898 89172,11456 26338,7913 49605,18425 69566,32362 20315,13937 37440,30472 51377,49842 14173,19015 25984,40511 35669,64369 26574,-28936 51731,-53503 75589,-73699 23858,-20315 46889,-36259 68975,-49015 21968,-12401 43464,-21378 64369,-26929 21141,-5669 42046,-8386 63188,-8386 51377,0 94250,9094 129092,26929 34724,18071 62834,42283 84565,72164 21496,30236 36614,65668 45944,106179 9094,40511 13701,83148 13701,128147l0 504204z"/>\r
-  <path id="6" class="fil6" d="M67634018 102875233c0,4842 -945,8740 -3071,12401 -2126,3661 -5669,6378 -10512,8504 -5197,2126 -11811,3543 -19960,4842 -8504,1181 -18425,1772 -30236,1772 -12401,0 -22677,-591 -30826,-1772 -8504,-1299 -15118,-2716 -20551,-4842 -5197,-2126 -9094,-4842 -11456,-8504 -2126,-3661 -3425,-7795 -3425,-12401l0 -106061c-41928,45590 -85510,81022 -130509,106415 -45354,25393 -94605,38031 -148462,38031 -58345,0 -108187,-11456 -149289,-34133 -41456,-22677 -74999,-53503 -100746,-92242 -25393,-38621 -44054,-83975 -55865,-136297 -11811,-52322 -17834,-107360 -17834,-164997 0,-68621 7205,-130628 22086,-185666 14764,-55275 36495,-102518 65550,-141494 28700,-38976 64723,-68857 107596,-89762 42637,-20905 91888,-31417 148108,-31417 46653,0 89172,10275 127911,30472 38739,20551 76770,50550 114565,90116l0 -462157c0,-4252 945,-8268 3071,-12165 2126,-3898 6024,-6614 12047,-8740 5787,-2126 13346,-3898 22322,-5433 9449,-1535 20905,-2126 35078,-2126 14882,0 26929,591 36377,2126 9331,1535 16889,3307 21968,5433 5433,2126 9449,4842 12165,8740 2716,3898 3898,7913 3898,12165l0 1179191zm-146926 -561368c-39330,-49251 -77361,-86691 -114211,-112439 -36968,-25748 -75353,-38739 -115274,-38739 -37086,0 -68621,8858 -94605,26692 -25984,17834 -46771,41102 -63188,70038 -15945,28818 -27755,61771 -35078,98266 -7559,36614 -11102,73818 -11102,111612 0,40157 2953,79487 9331,117872 6024,38385 16889,72518 32007,102518 15472,29881 35669,53739 61062,71928 25157,17834 57164,26929 95313,26929 19252,0 38031,-2716 56219,-7913 17834,-5433 36259,-14173 55038,-26574 18661,-12401 38621,-28464 59172,-48424 20551,-19606 42401,-43818 65314,-72873l0 -318892z"/>\r
-  <path id="7" class="fil6" d="M68120741 102188434c0,19015 -1181,35078 -3898,48070 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29055 -4016,-48070 0,-19960 1299,-36614 4016,-49842 2716,-13346 7559,-24212 14764,-32125 6968,-8149 16653,-13582 28464,-16889 11811,-3307 27165,-4842 46180,-4842 18543,0 33543,1535 45354,4842 11811,3307 21496,8740 29055,16889 7205,7913 12401,18779 15118,32125 2716,13228 3898,29881 3898,49842zm0 613926c0,19724 -1181,36023 -3898,49015 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29291 -4016,-49015 0,-19252 1299,-35669 4016,-48897 2716,-13346 7559,-23976 14764,-31771 6968,-7559 16653,-13346 28464,-16653 11811,-3661 27165,-5433 46180,-5433 18543,0 33543,1772 45354,5433 11811,3307 21496,9094 29055,16653 7205,7795 12401,18425 15118,31771 2716,13228 3898,29645 3898,48897z"/>\r
-  <path id="8" class="fil6" d="M69580794 102735865c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>\r
-  <path id="9" class="fil6" d="M70466486 102830470c0,12165 -591,22086 -1772,29999 -1299,7795 -3071,14764 -5787,20551 -2716,5433 -5787,9685 -9685,12401 -3898,2716 -8386,3898 -13937,3898l-506920 0c-13582,0 -26574,-4488 -38621,-13582 -12165,-9449 -18189,-25393 -18189,-48424l0 -1061319c0,-4842 1181,-9094 3661,-12401 2362,-3661 6260,-6378 12401,-8504 5669,-2126 13819,-3898 23858,-5433 9921,-1535 22086,-2126 36259,-2126 14764,0 26929,591 36850,2126 9685,1535 17598,3307 23267,5433 6142,2126 10039,4842 12401,8504 2480,3307 3661,7559 3661,12401l0 990927 411371 0c5551,0 10039,1181 13937,3898 3661,2716 6968,6732 9685,11456 2716,5197 4488,11811 5787,20315 1181,8149 1772,18189 1772,29881z"/>\r
-  <path id="10" class="fil6" d="M70857424 102874288c0,4842 -1181,9094 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -22086,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1100295c0,-4842 1181,-9094 3898,-12401 2716,-3661 7323,-6378 13346,-8504 6378,-2126 14173,-3898 23858,-5433 9685,-1535 21496,-2126 35078,-2126 14764,0 26929,591 36850,2126 9685,1535 17598,3307 23267,5433 6142,2126 10039,4842 12401,8504 2480,3307 3661,7559 3661,12401l0 1100295z"/>\r
- </g>\r
-</svg>\r
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.1//EN" "http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd">
+<svg xmlns="http://www.w3.org/2000/svg" xml:space="preserve" width="1748px" height="1240px" version="1.1" style="shape-rendering:geometricPrecision; text-rendering:geometricPrecision; image-rendering:optimizeQuality; fill-rule:evenodd; clip-rule:evenodd"
+viewBox="0 0 174800000 124013514"
+ xmlns:xlink="http://www.w3.org/1999/xlink">
+ <defs>
+  <style type="text/css">
+   <![CDATA[
+    .str1 {stroke:black;stroke-width:214839;stroke-linejoin:round}
+    .str0 {stroke:white;stroke-width:286412;stroke-linejoin:round}
+    .fil5 {fill:none}
+    .fil11 {fill:none;fill-rule:nonzero}
+    .fil3 {fill:#4BACC6}
+    .fil0 {fill:#4F81BD}
+    .fil2 {fill:#9BBB59}
+    .fil9 {fill:#C0504D}
+    .fil4 {fill:#F79646}
+    .fil7 {fill:#E5E5E6}
+    .fil8 {fill:#F7F7F7}
+    .fil6 {fill:black;fill-rule:nonzero}
+    .fil10 {fill:#9F9FA0;fill-rule:nonzero}
+    .fil1 {fill:white;fill-rule:nonzero}
+   ]]>
+  </style>
+ </defs>
+ <g id="Layer_x0020_1">
+  <polygon class="fil0" points="37422672,97611863 71024901,97611863 71024901,82665518 37422672,82665518 "/>
+  <path class="fil1" d="M43018162 89715864c0,143147 -23385,272003 -70865,387276 -46771,114565 -113856,212595 -201965,293971 -87400,80668 -194406,143147 -321845,187674 -127321,44409 -278735,66259 -455897,66259l-323971 0 0 1027895c0,12047 -3071,22559 -9803,30944 -6850,8976 -17362,15826 -30944,21023 -14291,5315 -33188,9803 -57282,13582 -24803,3779 -55038,5315 -91888,5315 -36968,0 -67085,-1535 -92006,-5315 -24094,-3779 -43700,-8268 -57991,-13582 -15118,-5197 -24921,-12047 -30944,-21023 -6024,-8386 -8976,-18897 -8976,-30944l0 -2636764c0,-58818 15826,-100982 46653,-125903 30944,-24803 64841,-37676 103226,-37676l611209 0c61771,0 121297,2244 177871,7559 56456,5315 123541,16535 200429,33188 77597,17244 156021,48897 236689,94959 79841,46653 147635,103935 204209,171729 55747,67912 98738,146218 128856,235153 30118,88935 45235,187674 45235,294680zm-397906 30118c0,-116809 -21850,-214012 -64841,-292436 -43700,-77597 -97203,-136297 -162044,-174800 -64015,-37676 -130391,-62479 -198185,-72282 -68621,-10630 -135588,-15826 -200429,-15826l-351135 0 0 1148483 342868 0c114565,0 210232,-15118 285585,-44527 76062,-29409 139368,-70038 191453,-122832 51141,-51968 90353,-114565 116809,-187674 26338,-73109 39921,-152241 39921,-238106z"/>
+  <path id="1" class="fil1" d="M44489080 91736221l-264444 731680c-9094,23385 -31653,41456 -67794,54330 -35432,12756 -90471,18779 -164288,18779 -38503,0 -69329,-1417 -92715,-5197 -23385,-3779 -41456,-10630 -54330,-18897 -12047,-8976 -18779,-21023 -20315,-35432 -1535,-15000 2244,-32362 10630,-53503l274247 -691759c-13582,-6024 -26338,-15826 -37676,-28582 -12047,-13582 -20315,-27165 -24094,-42283l-709121 -1899060c-12047,-30826 -17362,-55747 -17362,-73109 0,-18071 5315,-31653 17362,-42165 12047,-10512 30826,-17362 57282,-21023 26338,-3779 61771,-5315 106179,-5315 43700,0 78424,709 104053,2953 24803,2362 44409,6850 59526,12874 14291,5197 24803,14291 31653,24803 6732,11338 13582,26456 21141,45235l567391 1594578 6850 0 547077 -1602845c8976,-28582 19606,-46771 32362,-54212 12047,-8386 30944,-14409 55747,-18071 25629,-3779 61771,-5315 108541,-5315 41456,0 75353,1535 101691,5315 26456,3661 46062,10512 58109,21023 12756,10512 18779,24094 18779,42165 0,17362 -4488,40039 -12756,66377l-713727 1976657z"/>
+  <path id="2" class="fil1" d="M46685064 91533548c0,42873 -3071,76770 -9094,101691 -5197,24921 -14291,43700 -26338,55038 -11338,12047 -29409,23385 -52794,33188 -23385,10512 -50432,18779 -80550,25511 -30236,6850 -61889,12165 -95786,16653 -33897,4488 -67085,6732 -100982,6732 -103226,0 -191335,-13582 -264444,-40629 -73109,-27165 -133462,-68621 -180942,-123659 -46653,-54920 -80550,-125076 -102400,-209406 -21141,-84447 -31653,-183894 -31653,-298459l0 -1158995 -279680 0c-21850,0 -39921,-12047 -53503,-35432 -12756,-23385 -19488,-61771 -19488,-115274 0,-27992 1417,-51259 5197,-70156 3779,-19606 9094,-35432 14291,-48188 6024,-12047 14409,-21141 23385,-26456 9803,-5197 20315,-7441 32480,-7441l277318 0 0 -471842c0,-10512 2244,-20315 7441,-28582 5315,-9094 15118,-16535 29409,-23385 13582,-6732 32480,-11220 56574,-14291 23385,-3071 52676,-4488 88935,-4488 36850,0 67085,1417 90353,4488 24212,3071 42283,7559 55865,14291 13464,6850 22559,14291 28582,23385 6024,8268 9094,18071 9094,28582l0 471842 506329 0c12047,0 21850,2244 30944,7441 8268,5315 16535,14409 22559,26456 6850,12756 11338,28582 14291,48188 3071,18897 4606,42165 4606,70156 0,53503 -6850,91888 -19606,115274 -13582,23385 -30944,35432 -52794,35432l-506329 0 0 1105492c0,136415 20315,239641 60235,308971 39921,70038 112321,104762 216256,104762 33188,0 63306,-3071 89644,-9803 26456,-6850 49842,-13582 70156,-21141 20315,-7559 37676,-14291 52676,-21141 14409,-6732 27992,-9685 39212,-9685 7559,0 14291,1417 21141,5197 6024,3779 11338,10630 15118,21141 3661,10512 6732,24094 9685,42165 3071,17362 4606,39921 4606,66377z"/>
+  <path id="3" class="fil1" d="M48877978 91681183c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -52794,4488 -88227,4488 -37676,0 -67794,-1535 -91179,-4488 -24094,-3071 -42165,-7559 -55747,-12874 -13582,-6024 -22559,-13582 -28582,-21141 -6024,-8268 -9094,-18071 -9094,-30118l0 -1164310c0,-113029 -8976,-204918 -26338,-273538 -17362,-69329 -42991,-128856 -76888,-179288 -33897,-49724 -76888,-88227 -130391,-114565 -53503,-26338 -115274,-39921 -185312,-39921 -91179,0 -181650,32362 -272121,97203 -91179,64723 -186138,159682 -285585,284877l0 1389542c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -2948805c0,-12047 2244,-22559 7559,-30826 5315,-9094 15118,-16653 29409,-22677 13582,-5197 32362,-9803 56456,-12756 23385,-3071 52794,-4488 88935,-4488 36968,0 67085,1417 90471,4488 24094,2953 42165,7559 55747,12756 13582,6024 22677,13582 28700,22677 6024,8268 8976,18779 8976,30826l0 1187695c104053,-110785 209524,-192871 314994,-246374 105471,-53503 211768,-80668 318774,-80668 132635,0 243421,22559 333892,67085 90353,45235 163462,105471 219209,180115 55865,75353 95786,163462 119880,264444 24094,100982 36141,223106 36141,365545l0 1210962z"/>
+  <path id="4" class="fil1" d="M51388956 90663918c0,161926 -21141,311215 -64133,447630 -42165,135588 -106179,253106 -190626,351844 -84447,98738 -190626,175627 -317238,230665 -127321,54920 -275074,82912 -442315,82912 -163580,0 -306018,-24212 -427315,-73109 -121297,-48306 -222279,-119053 -302947,-211768 -80668,-92715 -140903,-205744 -180824,-337671 -40039,-132635 -59645,-282515 -59645,-450582 0,-162044 21141,-311215 62597,-446921 42165,-136415 105471,-253932 189918,-352671 84447,-98738 189918,-174800 316530,-229838 126612,-54212 274247,-81376 443024,-81376 163580,0 306018,24094 427315,73109 121297,48188 222279,119053 302947,211768 80668,92597 141730,204918 182359,337553 39921,132635 60353,281806 60353,448456zm-379836 23267c0,-107715 -9803,-209406 -30118,-305191 -19606,-95668 -52794,-179288 -98738,-251688 -45235,-72282 -107833,-129565 -186138,-171021 -77597,-42283 -175627,-63306 -292436,-63306 -107715,0 -200429,18779 -278026,57282 -77597,38385 -140903,92715 -191453,162753 -50432,70038 -87400,152950 -111494,248618 -24921,95786 -36968,200548 -36968,313577 0,109250 9803,211768 30118,307435 19606,95668 52794,179406 99565,250980 46653,70747 109250,128029 186847,169485 78424,42283 176335,63306 293144,63306 106297,0 198185,-18779 276609,-57282 78306,-38385 142438,-91888 192871,-161218 50550,-69329 87400,-152241 110785,-247909 23385,-95786 35432,-201256 35432,-315821z"/>
+  <path id="5" class="fil1" d="M53637616 91681183c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -52794,4488 -88227,4488 -37676,0 -67794,-1535 -91179,-4488 -24094,-3071 -42165,-7559 -55747,-12874 -13582,-6024 -22559,-13582 -28582,-21141 -6024,-8268 -9094,-18071 -9094,-30118l0 -1164310c0,-113029 -8976,-204918 -26338,-273538 -17362,-69329 -42991,-128856 -76888,-179288 -33897,-49724 -76888,-88227 -130391,-114565 -53503,-26338 -115274,-39921 -185312,-39921 -91179,0 -181650,32362 -272121,97203 -91179,64723 -186138,159682 -285585,284877l0 1389542c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-12047 2244,-21850 6850,-30118 4488,-7559 12756,-15000 26338,-21850 13582,-6732 30118,-11220 51259,-13582 20315,-2244 48188,-2953 82085,-2953 32480,0 59526,709 80668,2953 21850,2362 38385,6850 50550,13582 11220,6850 20315,14291 25511,21850 4606,8268 7559,18071 7559,30118l0 263027c111612,-125785 222398,-217791 333892,-275782 110785,-57991 222279,-87400 335309,-87400 131927,0 243421,22559 333892,67085 90353,45235 163462,105471 219209,180115 55865,75353 95786,163462 119880,264444 24094,100982 36141,222279 36141,363301l0 1213206z"/>
+  <path id="6" class="fil1" d="M56804213 91569689c0,30118 -1535,55038 -4606,74644 -2953,19488 -7441,36850 -14291,51141 -6732,13582 -14291,24212 -24094,30944 -9803,6732 -21141,9803 -34724,9803l-1263757 0c-33897,0 -66259,-11338 -96376,-33897 -30236,-23385 -45235,-63306 -45235,-120588l0 -2645858c0,-12047 2953,-22559 8976,-30944 6024,-8976 15826,-15826 30944,-21023 14291,-5315 34606,-9803 59526,-13582 24921,-3779 55038,-5315 90471,-5315 36850,0 67085,1535 91888,5315 24094,3779 43700,8268 57991,13582 15118,5197 24921,12047 30944,21023 6024,8386 9094,18897 9094,30944l0 2470231 1025533 0c13582,0 24921,3071 34724,9803 8976,6850 17362,16653 24094,28700 6850,12756 11338,29409 14291,50432 3071,20433 4606,45235 4606,74644z"/>
+  <path id="7" class="fil1" d="M57547231 91681183c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-10512 2244,-20315 7559,-28582 5315,-9094 15118,-16535 29409,-22559 13582,-5315 32362,-9803 56456,-12874 23385,-2953 52794,-4488 88935,-4488 36968,0 67085,1535 90471,4488 24094,3071 42165,7559 55747,12874 13582,6024 22677,13464 28700,22559 6024,8268 8976,18071 8976,28582l0 1987996zm40747 -2657905c0,85983 -16653,143974 -49015,174800 -32362,30944 -91888,46771 -179406,46771 -85865,0 -144682,-15118 -176335,-45235 -31653,-30118 -47479,-87400 -47479,-171847 0,-85865 16653,-143856 49015,-174800 32362,-30826 92006,-46653 179406,-46653 85865,0 144682,15000 176335,45117 31653,30236 47479,87518 47479,171847z"/>
+  <path id="8" class="fil1" d="M60000218 90659311c0,172556 -18897,327041 -56574,464992 -36968,137950 -91888,255468 -164997,351962 -72400,97203 -162044,171729 -267515,222988 -105589,52086 -226886,77715 -363301,77715 -63306,0 -122006,-6024 -175509,-18897 -53503,-12047 -106297,-32362 -157556,-60235 -51259,-28700 -102518,-63306 -154485,-106297 -51259,-42991 -105471,-94250 -162753,-154485l0 244129c0,11338 -3071,21850 -9094,30944 -6024,8976 -15000,15826 -28582,21023 -13582,5315 -30118,9094 -49724,12165 -20433,2953 -46062,4488 -76888,4488 -29409,0 -55038,-1535 -75353,-4488 -21141,-3071 -37676,-6850 -51259,-12165 -12874,-5197 -21850,-12047 -26338,-21023 -4606,-9094 -6850,-18897 -6850,-30944l0 -2948805c0,-12047 2244,-22559 7559,-30826 5315,-9094 15118,-16653 29409,-22677 13582,-5197 32362,-9803 56456,-12756 23385,-3071 52794,-4488 88935,-4488 36968,0 67085,1417 90471,4488 24094,2953 42165,7559 55747,12756 13582,6024 22677,13582 28700,22677 6024,8268 8976,18779 8976,30826l0 1187695c58818,-60235 115274,-111494 171139,-152950 54920,-40747 108423,-74644 161218,-100274 53503,-25629 106297,-44409 158974,-56456 52794,-11338 108541,-17362 167359,-17362 143856,0 266688,28582 369206,85865 101809,57282 184603,134879 248736,230665 64015,96376 110785,209406 140076,339088 29409,129565 43818,266806 43818,410662zm-379836 42283c0,-101809 -7559,-200548 -23385,-296215 -15118,-96494 -42165,-180824 -80668,-254759 -38385,-73818 -88935,-133344 -152241,-177753 -63306,-45235 -142320,-67912 -236571,-67912 -46771,0 -93424,6850 -139368,19606 -45235,13582 -92006,36259 -138659,67085 -47479,30944 -96494,70865 -147045,119880 -51259,48188 -105471,109959 -162753,183776l0 792860c100274,122832 195941,216256 287121,280271 91179,64133 186847,96494 285585,96494 91179,0 168895,-21850 233618,-66259 64841,-44527 117636,-103345 158265,-176454 40747,-72282 70156,-154485 88227,-244838 18779,-91179 27874,-183186 27874,-275782z"/>
+  <path id="9" class="fil1" d="M61710778 89822161c0,32362 -709,59526 -2244,81376 -1535,21850 -4488,39094 -9094,51968 -3779,12756 -9803,21850 -16535,28582 -6024,6850 -15118,9803 -27165,9803 -12047,0 -26338,-2953 -42991,-9803 -17244,-6732 -36141,-13582 -57164,-19606 -21141,-6732 -45235,-12756 -71692,-18779 -26338,-6024 -54920,-9094 -85865,-9094 -36968,0 -73109,7559 -108541,21850 -34606,15118 -72282,39212 -110785,73936 -39094,33897 -79841,79132 -122832,134879 -42165,56456 -89644,125076 -140903,206453l0 1307457c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-12047 2244,-21850 6850,-30118 4488,-7559 12756,-15000 26338,-21850 13582,-6732 30118,-11220 51259,-13582 20315,-2244 48188,-2953 82085,-2953 32480,0 59526,709 80668,2953 21850,2362 38385,6850 50550,13582 11220,6850 20315,14291 25511,21850 4606,8268 7559,18071 7559,30118l0 289483c54330,-79959 105589,-144682 153068,-195233 48188,-49724 93424,-89644 135588,-118344 42991,-28582 85156,-48188 126612,-59526 42165,-11220 84447,-16535 127321,-16535 18897,0 40747,709 64841,2953 24094,2362 49724,6850 76062,12047 26456,6142 50550,12874 71692,20433 21023,7559 36141,14291 45117,21850 9094,7559 15118,14291 17362,21023 3071,6850 6024,15118 8268,24921 2244,10512 3779,25629 4606,45235 709,20315 709,46653 709,80668z"/>
+  <path id="10" class="fil1" d="M63574406 91683427c0,17362 -6024,30944 -17362,40039 -12047,8976 -27874,15000 -49015,19488 -20315,4606 -50432,6850 -90353,6850 -37676,0 -68621,-2244 -91179,-6850 -22677,-4488 -39212,-10512 -49724,-19488 -10630,-9094 -15826,-21968 -15826,-40039l0 -198894c-86691,92715 -183186,164997 -290192,216256 -107006,50550 -220035,76180 -339088,76180 -104762,0 -199721,-13582 -284168,-40747 -84329,-27165 -156729,-67085 -216256,-118344 -59526,-51259 -106179,-115274 -139368,-189918 -33188,-75353 -49724,-160509 -49724,-256176 0,-112321 22559,-209524 68503,-291609 45235,-82912 110785,-151533 196768,-205744 85156,-54330 189918,-95668 313459,-122832 123541,-27165 263027,-40747 417512,-40747l274247 0 0 -155194c0,-76180 -8268,-143974 -24094,-203500 -16535,-58700 -42165,-107715 -78306,-146926 -36259,-39212 -82912,-68621 -140194,-88227 -57282,-20315 -128147,-30118 -211768,-30118 -89644,0 -170312,10630 -241177,32480 -71574,21850 -134171,45117 -187674,71574 -53503,26338 -98738,49724 -134879,71574 -35432,21850 -62479,32362 -79841,32362 -12047,0 -22677,-2953 -30944,-8976 -8976,-5315 -16535,-14409 -23385,-26456 -6732,-11220 -11220,-26338 -14291,-44409 -2953,-18897 -4488,-38385 -4488,-61062 0,-36141 2244,-65550 7559,-86691 5197,-21023 18071,-41456 37676,-60235 19606,-18897 54212,-41456 102518,-67794 48188,-25629 104644,-49724 167950,-71574 62597,-21141 131927,-39212 207280,-53503 74644,-14409 150706,-21141 226886,-21141 142320,0 263735,15826 363891,48188 100274,32480 180942,80668 242712,143265 61771,62479 106297,140076 134171,232791 27874,92715 42165,201256 42165,324797l0 1341354zm-361765 -910259l-311215 0c-99447,0 -186138,8268 -259956,25629 -73109,16535 -134171,42165 -183186,75353 -48188,33070 -83621,72282 -107006,119053 -22559,46653 -33897,100156 -33897,160509 0,103226 32480,185312 98030,246374 65550,61062 156729,92006 275074,92006 94959,0 183776,-24094 265271,-73109 81376,-48306 167241,-122832 256885,-223106l0 -422709z"/>
+  <path id="11" class="fil1" d="M65405672 89822161c0,32362 -709,59526 -2244,81376 -1535,21850 -4488,39094 -9094,51968 -3779,12756 -9803,21850 -16535,28582 -6024,6850 -15118,9803 -27165,9803 -12047,0 -26338,-2953 -42991,-9803 -17244,-6732 -36141,-13582 -57164,-19606 -21141,-6732 -45235,-12756 -71692,-18779 -26338,-6024 -54920,-9094 -85865,-9094 -36968,0 -73109,7559 -108541,21850 -34606,15118 -72282,39212 -110785,73936 -39094,33897 -79841,79132 -122832,134879 -42165,56456 -89644,125076 -140903,206453l0 1307457c0,12047 -2953,21850 -8976,30118 -6024,7559 -15118,15118 -28700,21141 -13582,5315 -31653,9803 -55747,12874 -23385,2953 -53503,4488 -90471,4488 -36141,0 -65550,-1535 -88935,-4488 -24094,-3071 -42873,-7559 -56456,-12874 -14291,-6024 -24094,-13582 -29409,-21141 -5315,-8268 -7559,-18071 -7559,-30118l0 -1987996c0,-12047 2244,-21850 6850,-30118 4488,-7559 12756,-15000 26338,-21850 13582,-6732 30118,-11220 51259,-13582 20315,-2244 48188,-2953 82085,-2953 32480,0 59526,709 80668,2953 21850,2362 38385,6850 50550,13582 11220,6850 20315,14291 25511,21850 4606,8268 7559,18071 7559,30118l0 289483c54330,-79959 105589,-144682 153068,-195233 48188,-49724 93424,-89644 135588,-118344 42991,-28582 85156,-48188 126612,-59526 42165,-11220 84447,-16535 127321,-16535 18897,0 40747,709 64841,2953 24094,2362 49724,6850 76062,12047 26456,6142 50550,12874 71692,20433 21023,7559 36141,14291 45117,21850 9094,7559 15118,14291 17362,21023 3071,6850 6024,15118 8268,24921 2244,10512 3779,25629 4606,45235 709,20315 709,46653 709,80668z"/>
+  <path id="12" class="fil1" d="M66700255 91736221l-264444 731680c-9094,23385 -31653,41456 -67794,54330 -35432,12756 -90471,18779 -164288,18779 -38503,0 -69329,-1417 -92715,-5197 -23385,-3779 -41456,-10630 -54330,-18897 -12047,-8976 -18779,-21023 -20315,-35432 -1535,-15000 2244,-32362 10630,-53503l274247 -691759c-13582,-6024 -26338,-15826 -37676,-28582 -12047,-13582 -20315,-27165 -24094,-42283l-709121 -1899060c-12047,-30826 -17362,-55747 -17362,-73109 0,-18071 5315,-31653 17362,-42165 12047,-10512 30826,-17362 57282,-21023 26338,-3779 61771,-5315 106179,-5315 43700,0 78424,709 104053,2953 24803,2362 44409,6850 59526,12874 14291,5197 24803,14291 31653,24803 6732,11338 13582,26456 21141,45235l567391 1594578 6850 0 547077 -1602845c8976,-28582 19606,-46771 32362,-54212 12047,-8386 30944,-14409 55747,-18071 25629,-3779 61771,-5315 108541,-5315 41456,0 75353,1535 101691,5315 26456,3661 46062,10512 58109,21023 12756,10512 18779,24094 18779,42165 0,17362 -4488,40039 -12756,66377l-713727 1976657z"/>
+  <polygon class="fil0" points="37449719,82665518 46574515,82665518 46574515,66175855 37449719,66175855 "/>
+  <polygon class="fil0" points="48090905,76464961 71024901,76464961 71024901,66229948 48090905,66229948 "/>
+  <path class="fil1" d="M57003461 70072005c0,9685 -1772,17480 -5433,24685 -3543,7205 -10748,13228 -22795,18071 -11456,4134 -28228,7795 -49369,10157 -21023,2362 -49251,3661 -84093,3661 -30708,0 -55865,-1299 -75117,-3661 -19252,-2362 -34842,-6024 -46889,-11456 -11456,-5315 -20433,-12519 -27047,-22204 -6614,-8976 -12047,-21023 -16889,-34842l-209169 -537982c-24566,-61298 -50432,-117163 -76888,-168304 -26456,-51023 -57637,-94959 -94368,-132163 -36023,-37322 -79369,-65550 -128620,-86573 -49251,-20433 -108778,-30708 -177871,-30708l-202555 0 0 971321c0,9685 -2480,17480 -7795,24685 -5433,7205 -13819,12638 -24685,16771 -11456,4252 -26456,7913 -45708,10866 -19842,2953 -43818,4252 -73345,4252 -29409,0 -53503,-1299 -73345,-4252 -19134,-2953 -34842,-6614 -46180,-10866 -12047,-4134 -19842,-9567 -24685,-16771 -4842,-6614 -7205,-15000 -7205,-24685l0 -2110238c0,-45708 12047,-77597 36023,-96140 24094,-18071 49960,-27047 77006,-27047l484361 0c57755,0 105234,1181 143738,4134 37795,3071 72046,6614 102754,9685 88345,15590 165824,39566 233736,72046 67322,33070 123895,74526 169603,125076 46180,50432 80432,108187 103345,173619 22795,64959 34251,137124 34251,215784 0,75825 -10275,144328 -30708,205036 -21023,60117 -50432,113620 -88935,159800 -39094,46298 -85274,86573 -139368,120825 -54094,33661 -114211,62597 -181532,85983 37795,16889 71455,37322 102164,62479 30590,25275 58936,55983 85274,90825 26456,35432 51731,76298 75235,122006 23385,45708 46889,97321 70274,155076l204327 502432c16299,42046 27047,72164 31299,88935 4842,16889 7205,30118 7205,39684zm-456252 -1602373c0,-88935 -19842,-164643 -60117,-226649 -39566,-61298 -106297,-105707 -200666,-132754 -29527,-8504 -62479,-13819 -99211,-17480 -37204,-3543 -85392,-5433 -145391,-5433l-255468 0 0 768175 295743 0c79841,0 149052,-9567 207280,-28818 57755,-19842 106415,-46889 144919,-81140 38976,-34842 67322,-75707 85865,-122596 18071,-46889 27047,-98030 27047,-153304z"/>
+  <path id="1" class="fil1" d="M58806618 69262374c0,129210 -16889,248263 -51141,357041 -33661,108187 -84684,201965 -152005,280743 -67322,78660 -152123,140076 -253106,183894 -101573,43936 -219327,66141 -352789,66141 -130391,0 -244011,-19252 -340742,-58345 -96849,-38503 -177398,-94959 -241649,-168895 -64369,-73936 -112439,-164052 -144210,-269286 -31889,-105707 -47598,-225350 -47598,-359403 0,-129210 16889,-248263 49960,-356450 33661,-108778 84093,-202555 151415,-281215 67322,-78778 151533,-139486 252515,-183422 100982,-43228 218736,-64841 353379,-64841 130391,0 244011,19252 340742,58345 96849,38385 177398,94959 241649,168895 64369,73818 113029,163462 145509,269168 31889,105825 48070,224878 48070,357631zm-302947 18661c0,-85983 -7795,-167123 -23976,-243421 -15708,-76298 -42165,-143029 -78778,-200784 -36023,-57637 -85983,-103345 -148462,-136415 -61889,-33661 -140076,-50432 -233264,-50432 -85865,0 -159800,15000 -221807,45590 -61889,30708 -112321,73936 -152596,129919 -40275,55865 -69684,122006 -88935,198304 -19842,76298 -29527,159918 -29527,250035 0,87164 7913,168895 24094,245192 15590,76416 42046,143147 79369,200193 37204,56456 87164,102164 149052,135234 62479,33661 140667,50432 233736,50432 84802,0 158147,-15000 220626,-45590 62479,-30708 113620,-73345 153895,-128620 40275,-55393 69684,-121415 88345,-197831 18661,-76298 28228,-160391 28228,-251806z"/>
+  <path id="2" class="fil1" d="M60693985 69258831c0,137596 -15000,260783 -45117,370859 -29409,109959 -73345,203736 -131572,280625 -57755,77597 -129328,137124 -213421,177989 -84093,41456 -180942,61889 -289719,61889 -50432,0 -97321,-4842 -140076,-15000 -42637,-9685 -84684,-25866 -125549,-48188 -40865,-22795 -81731,-50432 -123187,-84684 -40984,-34251 -84211,-75117 -129919,-123187l0 194760c0,8976 -2362,17362 -7205,24566 -4724,7205 -12047,12638 -22795,16889 -10866,4134 -24094,7205 -39684,9567 -16181,2362 -36614,3661 -61298,3661 -23504,0 -43936,-1299 -60117,-3661 -16771,-2362 -29999,-5433 -40865,-9567 -10275,-4252 -17480,-9685 -21023,-16889 -3661,-7205 -5433,-15000 -5433,-24566l0 -2352005c0,-9567 1772,-17952 6024,-24566 4252,-7205 12047,-13228 23385,-18071 10866,-4252 25866,-7795 45117,-10275 18661,-2362 42046,-3543 70983,-3543 29409,0 53503,1181 72046,3543 19252,2480 33661,6024 44527,10275 10748,4842 18071,10866 22795,18071 4842,6614 7205,15000 7205,24566l0 947345c46889,-48188 92006,-89054 136533,-122124 43818,-32362 86455,-59408 128620,-79841 42637,-20433 84684,-35551 126730,-45117 42165,-8976 86573,-13819 133462,-13819 114801,0 212831,22795 294562,68503 81140,45708 147281,107596 198304,183894 51141,77006 88345,167123 111848,270468 23385,103463 34842,212831 34842,327632zm-302947 33661c0,-81140 -6024,-159918 -18661,-236216 -12047,-77006 -33661,-144328 -64251,-203146 -30708,-58936 -70983,-106415 -121415,-141848 -50550,-36141 -113620,-54094 -188737,-54094 -37322,0 -74526,5433 -111258,15590 -36023,10866 -73345,28818 -110549,53503 -37913,24685 -77006,56456 -117163,95549 -40984,38503 -84211,87754 -129919,146690l0 632233c79959,98030 156257,172556 229012,223697 72755,51023 149052,76888 227831,76888 72755,0 134643,-17480 186375,-52912 51613,-35432 93660,-82321 126139,-140667 32480,-57637 55983,-123187 70392,-195351 15000,-72636 22204,-145982 22204,-219917z"/>
+  <path id="3" class="fil1" d="M62602966 69262374c0,129210 -16889,248263 -51141,357041 -33661,108187 -84684,201965 -152005,280743 -67322,78660 -152123,140076 -253106,183894 -101573,43936 -219327,66141 -352789,66141 -130391,0 -244011,-19252 -340742,-58345 -96849,-38503 -177398,-94959 -241649,-168895 -64369,-73936 -112439,-164052 -144210,-269286 -31889,-105707 -47598,-225350 -47598,-359403 0,-129210 16889,-248263 49960,-356450 33661,-108778 84093,-202555 151415,-281215 67322,-78778 151533,-139486 252515,-183422 100982,-43228 218736,-64841 353379,-64841 130391,0 244011,19252 340742,58345 96849,38385 177398,94959 241649,168895 64369,73818 113029,163462 145509,269168 31889,105825 48070,224878 48070,357631zm-302947 18661c0,-85983 -7795,-167123 -23976,-243421 -15708,-76298 -42165,-143029 -78778,-200784 -36023,-57637 -85983,-103345 -148462,-136415 -61889,-33661 -140076,-50432 -233264,-50432 -85865,0 -159800,15000 -221807,45590 -61889,30708 -112321,73936 -152596,129919 -40275,55865 -69684,122006 -88935,198304 -19842,76298 -29527,159918 -29527,250035 0,87164 7913,168895 24094,245192 15590,76416 42046,143147 79369,200193 37204,56456 87164,102164 149052,135234 62479,33661 140667,50432 233736,50432 84802,0 158147,-15000 220626,-45590 62479,-30708 113620,-73345 153895,-128620 40275,-55393 69684,-121415 88345,-197831 18661,-76298 28228,-160391 28228,-251806z"/>
+  <path id="4" class="fil1" d="M63855621 69956023c0,34251 -2480,61298 -7205,81140 -4252,19842 -11456,34842 -21023,43936 -9094,9567 -23504,18543 -42165,26338 -18543,8504 -40275,15118 -64251,20551 -24094,5315 -49251,9567 -76298,13110 -27047,3661 -53503,5433 -80550,5433 -82439,0 -152714,-10748 -211059,-32480 -58227,-21614 -106297,-54684 -144210,-98502 -37204,-43936 -64251,-99801 -81731,-167123 -16889,-67322 -25275,-146690 -25275,-237988l0 -924432 -222988 0c-17362,0 -31889,-9567 -42637,-28228 -10275,-18661 -15590,-49251 -15590,-92006 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38503 4842,-9567 11456,-16771 18661,-21023 7795,-4252 16181,-6024 25748,-6024l221216 0 0 -376174c0,-8504 1772,-16299 6024,-22913 4252,-7205 12047,-13228 23504,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2480 42046,-3661 70983,-3661 29409,0 53503,1181 72046,3661 19252,2362 33661,6024 44527,11338 10866,5433 18071,11456 22795,18661 4842,6614 7205,14409 7205,22913l0 376174 403930 0c9685,0 17480,1772 24685,6024 6614,4252 13228,11456 18071,21023 5315,10275 8976,22913 11338,38503 2480,15000 3661,33661 3661,55865 0,42755 -5433,73345 -15708,92006 -10748,18661 -24566,28228 -42046,28228l-403930 0 0 881795c0,108778 16299,191099 48188,246374 31771,55865 89526,83502 172438,83502 26456,0 50550,-2362 71574,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 42046,-16889 11456,-5433 22322,-7795 31299,-7795 6024,0 11456,1181 16771,4252 4842,2953 9094,8386 12047,16771 3071,8386 5433,19252 7795,33661 2480,13819 3661,31889 3661,52912z"/>
+  <path class="fil1" d="M56014188 74973964c0,23976 -1181,43818 -3543,59408 -2362,15590 -6024,29409 -11456,40865 -5315,10748 -11338,19134 -19134,24566 -7795,5433 -16771,7795 -27637,7795l-1006517 0c-26929,0 -52794,-8976 -76770,-27047 -23976,-18543 -36023,-50432 -36023,-96022l0 -2107167c0,-9567 2362,-17952 7205,-24566 4842,-7205 12638,-12638 24566,-16771 11456,-4252 27637,-7913 47479,-10866 19842,-2953 43818,-4252 72046,-4252 29409,0 53385,1299 73227,4252 19134,2953 34724,6614 46180,10866 11929,4134 19842,9567 24566,16771 4842,6614 7205,15000 7205,24566l0 1967327 816836 0c10866,0 19842,2480 27637,7795 7205,5433 13819,13228 19134,22795 5433,10275 9094,23504 11456,40275 2362,16181 3543,36023 3543,59408z"/>
+  <path id="1" class="fil1" d="M56606027 75062781c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-8386 1772,-16181 5905,-22795 4252,-7205 12047,-13228 23504,-17952 10748,-4252 25748,-7913 44999,-10275 18543,-2362 41928,-3543 70747,-3543 29409,0 53503,1181 72046,3543 19252,2362 33661,6024 44409,10275 10866,4724 18071,10748 22795,17952 4842,6614 7205,14409 7205,22795l0 1583239zm32480 -2116734c0,68385 -13228,114565 -39094,139249 -25748,24566 -73227,37204 -142793,37204 -68385,0 -115274,-12047 -140431,-36023 -25275,-24094 -37795,-69684 -37795,-136887 0,-68385 13228,-114565 38976,-139249 25866,-24566 73227,-37204 142793,-37204 68503,0 115274,12047 140549,36023 25157,23976 37795,69566 37795,136887z"/>
+  <path id="2" class="fil1" d="M58595558 74249016c0,137360 -15000,260428 -44999,370269 -29409,109841 -73227,203382 -131454,280271 -57637,77361 -128974,136769 -213067,177635 -83975,41456 -180587,61771 -289247,61771 -50432,0 -97203,-4724 -139840,-15000 -42637,-9567 -84565,-25748 -125431,-47952 -40865,-22795 -81613,-50432 -123069,-84684 -40747,-34133 -83975,-74999 -129565,-122951l0 194406c0,8976 -2480,17362 -7205,24566 -4842,7205 -12047,12638 -22795,16889 -10866,4134 -24094,7205 -39684,9567 -16181,2362 -36614,3543 -61180,3543 -23385,0 -43818,-1181 -59999,-3543 -16771,-2362 -29999,-5433 -40865,-9567 -10157,-4252 -17362,-9685 -21023,-16889 -3543,-7205 -5315,-15000 -5315,-24566l0 -2348462c0,-9567 1772,-17952 5905,-24566 4252,-7205 12047,-13228 23504,-18071 10748,-4134 25748,-7795 44999,-10157 18543,-2362 41928,-3661 70747,-3661 29409,0 53503,1299 72046,3661 19252,2362 33661,6024 44409,10157 10866,4842 18071,10866 22795,18071 4842,6614 7205,15000 7205,24566l0 945928c46889,-48070 91888,-88817 136297,-121888 43818,-32362 86455,-59408 128384,-79841 42637,-20433 84684,-35432 126612,-44999 42046,-8976 86455,-13819 133344,-13819 114565,0 212358,22795 293971,68503 81022,45590 147045,107360 198067,183540 51023,76888 88227,166887 111730,270113 23385,103226 34724,212476 34724,327159zm-302475 33543c0,-81022 -6024,-159682 -18543,-235862 -12047,-76770 -33661,-143974 -64251,-202792 -30590,-58818 -70865,-106297 -121297,-141730 -50314,-36023 -113384,-53975 -188382,-53975 -37204,0 -74408,5433 -111022,15590 -36023,10866 -73227,28818 -110431,53385 -37795,24685 -76888,56456 -117045,95431 -40865,38503 -84093,87636 -129683,146454l0 631406c79841,97794 156021,172202 228657,223224 72636,51023 148934,76888 227476,76888 72636,0 134407,-17480 186020,-52912 51613,-35314 93660,-82203 126139,-140431 32362,-57519 55747,-122951 70156,-194996 15000,-72636 22204,-145864 22204,-219681z"/>
+  <path id="3" class="fil1" d="M59957935 73582178c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>
+  <path id="4" class="fil1" d="M61406177 75064553c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>
+  <path id="5" class="fil1" d="M62864458 73582178c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>
+  <path id="6" class="fil1" d="M63931565 75106599l-210587 582745c-7205,18661 -25275,33070 -54094,43228 -28110,10157 -71928,15000 -130746,15000 -30590,0 -55275,-1181 -73818,-4252 -18661,-2953 -33070,-8386 -43228,-15000 -9685,-7205 -15000,-16771 -16181,-28110 -1299,-12047 1772,-25866 8386,-42637l218382 -550974c-10748,-4842 -20905,-12638 -29999,-22795 -9567,-10866 -16181,-21614 -19134,-33661l-564793 -1512374c-9567,-24566 -13819,-44409 -13819,-58227 0,-14409 4252,-25157 13819,-33661 9567,-8386 24566,-13701 45590,-16771 21023,-2953 49251,-4134 84684,-4134 34724,0 62361,591 82794,2362 19842,1772 35432,5433 47361,10157 11456,4252 19842,11456 25275,19842 5433,8976 10748,21023 16771,36023l451882 1269898 5433 0 435701 -1276512c7205,-22795 15590,-37204 25866,-43228 9567,-6614 24566,-11338 44409,-14409 20433,-2953 49251,-4134 86455,-4134 32952,0 59999,1181 81022,4134 20905,3071 36614,8386 46180,16771 10157,8504 15000,19252 15000,33661 0,13819 -3661,31771 -10157,52794l-568454 1574263z"/>
+  <polygon class="fil0" points="78173158,97611863 103950253,97611863 103950253,66175855 78173158,66175855 "/>
+  <path class="fil1" d="M88327031 68589866c0,22204 -1181,41338 -3661,57519 -2362,16299 -6024,29409 -11338,39684 -5433,9567 -11456,17362 -19252,21614 -7795,4724 -16181,7205 -25157,7205l-639201 0 0 1974531c0,9567 -2362,17362 -7205,24566 -4842,7205 -12638,12638 -24566,16771 -11456,4252 -27047,7795 -46298,10866 -19724,2953 -43818,4134 -73227,4134 -28228,0 -52204,-1181 -71928,-4134 -19842,-3071 -36023,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24566,-16771 -4842,-7205 -7205,-15000 -7205,-24566l0 -1974531 -639201 0c-8976,0 -17362,-2480 -25157,-7205 -7913,-4252 -13819,-12047 -18661,-21614 -4252,-10275 -8386,-23385 -11456,-39684 -2953,-16181 -4134,-35314 -4134,-57519 0,-22204 1181,-42046 4134,-58818 3071,-16889 7205,-30708 11456,-40865 4842,-10748 10748,-18543 18661,-22795 7795,-4842 16181,-7205 25157,-7205l1580877 0c8976,0 17362,2362 25157,7205 7795,4252 13819,12047 19252,22795 5315,10157 8976,23976 11338,40865 2480,16771 3661,36614 3661,58818z"/>
+  <path id="1" class="fil1" d="M89325635 69211588c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>
+  <path id="2" class="fil1" d="M90773876 70693962c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>
+  <path id="3" class="fil1" d="M93691146 68577229c0,32952 -2362,60589 -7795,82794 -5315,22204 -15000,40275 -28228,53975 -13701,13228 -31771,22913 -54566,28818 -23385,6024 -52204,9094 -87636,9094 -34251,0 -62361,-3071 -85865,-9094 -22795,-5905 -40747,-15590 -54566,-28818 -13228,-13701 -22795,-31771 -28818,-53975 -6024,-22204 -8976,-49842 -8976,-82794 0,-33070 2953,-59999 8976,-82203 6024,-21614 15590,-39684 28818,-54684 13819,-14409 31771,-24566 54566,-29999 23504,-5433 51613,-7795 85865,-7795 35432,0 64251,2362 87636,7795 22795,5433 40865,15590 54566,29999 13228,15000 22913,33070 28228,54684 5433,22204 7795,49133 7795,82203zm-32362 2114962c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23385,16889 -11456,4134 -26456,7795 -44999,10157 -18661,2362 -42637,3543 -72046,3543 -27047,0 -49842,-1181 -69684,-3543 -19134,-2362 -34133,-6024 -45590,-10157 -10748,-4842 -18543,-10866 -22795,-16889 -4134,-6614 -6024,-14409 -6024,-23976l0 -1385762 -713019 0 0 1385762c0,9567 -2362,17362 -7086,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -709357 0 0 1385762c0,9567 -2480,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -224524 0c-18543,0 -32952,-9567 -41928,-28228 -9685,-18543 -14409,-49251 -14409,-91770 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38385 4134,-9685 10157,-16889 17362,-21023 7205,-4252 15590,-6024 24566,-6024l224524 0 0 -149407c0,-109250 10748,-202910 31771,-280861 21023,-78069 52204,-142320 94250,-192634 42046,-50432 94250,-87636 157202,-111730 62479,-23976 135116,-36023 217909,-36023 51613,0 96612,4252 134998,13228 38503,8976 66613,16889 85274,24685 17952,7795 30590,15000 37204,22204 7205,6614 13228,16181 17952,26929 4252,11456 7795,24685 9685,40865 1772,15590 2362,34842 2362,57046 0,37795 -2953,64723 -8976,81613 -5433,17362 -16181,25748 -31181,25748 -9685,0 -20433,-2362 -32480,-7795 -11929,-5433 -27637,-11338 -46180,-17952 -18661,-6024 -40275,-12047 -64251,-17480 -23385,-5315 -50432,-7795 -79251,-7795 -86337,0 -147045,29999 -182359,89408 -34842,60117 -52204,155430 -52204,286885l0 153068 709357 0 0 -171021c0,-108659 10748,-202319 32362,-280271 21614,-78069 53503,-142202 94250,-193225 40865,-50432 92479,-87636 153659,-111730 61771,-23976 132635,-35905 212476,-35905 25748,0 51613,1181 77951,3543 26456,2362 49842,6024 70274,10157 20433,4842 38976,10275 54566,15000 15590,5433 26456,10866 32480,16889 6024,6024 10748,11929 14409,18543 3543,6614 6614,14409 9567,24094 2953,8976 4842,20905 6024,34724 1181,14409 1772,31181 1772,51613 0,37204 -2953,64251 -8976,80432 -5433,16771 -16181,24685 -31181,24685 -8504,0 -18071,-1890 -28228,-6024 -10866,-4252 -23385,-8386 -37795,-13228 -15000,-4842 -33661,-8976 -55865,-13228 -22204,-4134 -49251,-6024 -81022,-6024 -81022,0 -138659,29999 -173383,90116 -34251,59408 -51731,155430 -51731,286766l0 174091 913566 0c29999,0 52794,7795 68385,23976 15000,15590 22795,37204 22795,65432l0 1537649z"/>
+  <path id="4" class="fil1" d="M95368045 70448534c0,19842 -591,37204 -1772,51613 -1181,15000 -2953,27047 -6024,37204 -2953,10157 -6614,18661 -10748,26456 -4252,7795 -13228,19134 -28228,33543 -14409,15000 -39684,33070 -74408,55275 -35432,21614 -74999,41338 -118817,58227 -44409,17362 -91888,31181 -143501,41338 -51613,10866 -104998,16181 -160273,16181 -113974,0 -214839,-18543 -302475,-56338 -88227,-37204 -162044,-91888 -220862,-163934 -59408,-71928 -104408,-160745 -135588,-265271 -31181,-104998 -46771,-225586 -46771,-363064 0,-155430 19134,-289247 56928,-401449 38385,-111730 90707,-203500 156729,-274956 66613,-71337 144564,-124250 233972,-158974 90116,-34251 187319,-51613 291727,-51613 50432,0 98975,4724 146454,14409 47952,8976 91179,21614 131454,36614 39566,15590 75589,32952 106179,53385 31181,19842 53975,37204 67794,51023 14409,14409 24094,25748 29409,33543 4842,8504 9685,18071 13228,29409 2953,10866 5433,23504 6614,37913 1181,13701 1772,31771 1772,52794 0,45590 -5433,77361 -15590,96022 -10748,17952 -23385,26929 -38976,26929 -17480,0 -37795,-9567 -60589,-29409 -22913,-19134 -51613,-40747 -87046,-64133 -35432,-23504 -78069,-44999 -127911,-64251 -49724,-19842 -108541,-29409 -176454,-29409 -139840,0 -247200,53385 -321608,160863 -74408,106770 -111612,262200 -111612,465700 0,101455 9567,190863 28818,267633 19724,76298 47952,140431 85746,192044 37204,51023 83384,89526 138068,114683 54566,25157 117045,37795 187201,37795 67204,0 126021,-10748 176454,-31771 50432,-21023 93660,-44409 130864,-70274 37204,-25157 68385,-47952 93660,-68385 25157,-21023 44409,-31181 58818,-31181 7795,0 15000,2362 21023,7205 5905,4724 10748,12519 15000,23385 4134,11338 7205,25157 8976,42637 1772,16771 2362,37204 2362,60589z"/>
+  <path class="fil1" d="M85602395 73753199c0,22204 -1181,42046 -3661,58818 -2362,16771 -5905,31181 -10157,42637 -4842,10748 -10748,18543 -17952,23385 -6614,4842 -14409,7205 -22913,7205 -13701,0 -37204,-11338 -70156,-33543 -33070,-22204 -76888,-47479 -132045,-74526 -55275,-26929 -121179,-52204 -198067,-74408 -76770,-22204 -168068,-33543 -273066,-33543 -126021,0 -238224,22795 -337907,68385 -99565,46180 -184249,109250 -253224,190272 -69684,81022 -122478,177044 -159682,288656 -36614,111612 -55156,232319 -55156,362474 0,145864 20315,274956 60589,387749 40747,112203 96612,207634 168658,285113 71337,77361 156611,136179 256176,175863 99093,40157 208343,59999 326569,59999 70747,0 142202,-8386 214248,-25866 72046,-16771 139249,-42637 201611,-76180l0 -664949 -526880 0c-20433,0 -35432,-10275 -44999,-30118 -10275,-19724 -15000,-50905 -15000,-93542 0,-22204 1181,-41456 3543,-57046 2362,-15590 6024,-28818 11456,-38976 5315,-9685 11338,-16889 18543,-21614 6614,-4842 15590,-7205 26456,-7205l721995 0c13228,0 25748,2362 38976,7205 12638,4724 24566,11338 34842,21023 10748,9567 19134,22204 24566,38385 6024,16771 8976,35432 8976,56456l0 868331c0,30708 -5315,57046 -15590,79251 -10748,22204 -32952,42046 -67204,58818 -33543,16771 -77951,35432 -132045,55275 -53975,20315 -109250,37204 -166769,51613 -57637,13819 -115864,24566 -174091,31181 -58818,7205 -117045,10748 -174091,10748 -176454,0 -333655,-26929 -471724,-81613 -138659,-54566 -255704,-132635 -351017,-233382 -95431,-100864 -168658,-221453 -219091,-362592 -50432,-141021 -75589,-297632 -75589,-471724 0,-180587 26929,-344403 81613,-490857 54566,-146454 131336,-271294 230429,-375111 98975,-103226 217791,-183068 356450,-240114 139249,-57046 292908,-85156 461566,-85156 87046,0 168068,7795 244248,22795 76298,15590 144092,33543 203500,53975 58818,21023 108659,43228 149407,67794 40275,23976 67794,43818 83384,59408 15000,15000 25866,33070 31299,52794 5905,19842 8976,48661 8976,86455z"/>
+  <path id="1" class="fil1" d="M87481495 74813691c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>
+  <path id="2" class="fil1" d="M89287368 75674345c0,9567 -2480,17362 -7205,23976 -4842,6024 -12047,12047 -22913,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -41928,3543 -70156,3543 -29999,0 -53975,-1181 -72636,-3543 -19252,-2362 -33661,-6024 -44409,-10157 -10748,-4842 -17952,-10866 -22795,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -927267c0,-89998 -7205,-163225 -21023,-217791 -13819,-55275 -34251,-102636 -61180,-142911 -27047,-39566 -61298,-70156 -103817,-91179 -42637,-21023 -91888,-31889 -147635,-31889 -72636,0 -144682,25866 -216728,77479 -72636,51613 -148226,127202 -227476,226886l0 1106673c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 209406c88935,-100156 177044,-173383 265979,-219563 88227,-46298 177044,-69684 267042,-69684 104998,0 193815,18071 265861,53385 72046,36023 130273,84093 174682,143501 44409,59999 76180,130273 95431,210705 19134,80314 28818,177044 28818,289247l0 966242z"/>
+  <path id="3" class="fil1" d="M91164696 74813691c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>
+  <path id="4" class="fil1" d="M92534750 74193742c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>
+  <path id="5" class="fil1" d="M93946969 75676117c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>
+  <path id="6" class="fil1" d="M95303322 75556709c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>
+  <path id="7" class="fil1" d="M97122423 74864124c0,129092 -16771,247909 -51023,356450 -33543,108069 -84565,201729 -151769,280271 -67204,78660 -151887,139840 -252751,183658 -101337,43818 -218972,66022 -352316,66022 -130155,0 -243657,-19134 -340269,-58227 -96612,-38385 -177044,-94723 -241177,-168540 -64251,-73818 -112321,-163934 -144092,-268932 -31771,-105589 -47361,-224996 -47361,-358931 0,-128974 16771,-247791 49724,-355860 33661,-108659 84093,-202201 151296,-280861 67204,-78660 151178,-139249 252043,-183068 100864,-43228 218500,-64841 352907,-64841 130273,0 243657,19252 340269,58227 96612,38385 177044,94841 241295,168658 64251,73818 112793,163225 145273,268932 31771,105589 47952,224405 47952,357041zm-302475 18661c0,-85865 -7795,-166887 -23976,-243066 -15590,-76298 -42046,-142911 -78660,-200548 -36023,-57637 -85746,-103226 -148226,-136179 -61771,-33661 -139840,-50432 -232909,-50432 -85746,0 -159564,15000 -221453,45590 -61771,30590 -112203,73818 -152359,129683 -40275,55747 -69684,121769 -88817,198067 -19842,76180 -29409,159564 -29409,249681 0,86928 7795,168540 23976,244838 15590,76180 42046,142793 79251,199839 37204,56456 86928,102045 148816,134998 62361,33661 140431,50432 233500,50432 84565,0 157792,-15000 220154,-45590 62479,-30590 113502,-73227 153659,-128384 40275,-55275 69684,-121297 88227,-197477 18661,-76298 28228,-160273 28228,-251452z"/>
+  <path id="8" class="fil1" d="M98477596 74193742c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>
+  <path class="fil1" d="M87977194 79526914c0,197122 -25157,369678 -75707,516959 -50432,147871 -124368,269877 -221216,366608 -96731,96731 -215784,169485 -356332,217555 -141257,48070 -308971,72164 -503731,72164l-482590 0c-27047,0 -52912,-8976 -77006,-27047 -23976,-18661 -36023,-50432 -36023,-96140l0 -2032759c0,-45708 12047,-77597 36023,-96140 24094,-18071 49960,-27047 77006,-27047l515660 0c197713,0 364245,25157 500660,76298 135824,51023 250035,124958 342632,220508 91888,95668 161690,211650 209169,348065 47479,135824 71455,289719 71455,460976zm-317356 13228c0,-123187 -15000,-237988 -45590,-344403 -30708,-106415 -78778,-198304 -143738,-275901 -65432,-77479 -147871,-137596 -248145,-181414 -99801,-43346 -228421,-64959 -385977,-64959l-308853 0 0 1774338 311924 0c146100,0 268696,-18071 369088,-54684 99683,-36141 183304,-92006 250035,-167123 67322,-75117 117754,-169485 150824,-283105 33661,-113029 50432,-247673 50432,-402749z"/>
+  <path id="1" class="fil1" d="M89337327 79173534c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>
+  <path id="2" class="fil1" d="M89959993 80656381c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-8504 1772,-16299 6024,-22913 4252,-7205 12047,-13228 23385,-17952 10866,-4252 25866,-7795 45117,-10275 18661,-2362 42046,-3543 70983,-3543 29409,0 53503,1181 72046,3543 19252,2480 33661,6024 44527,10275 10748,4724 18071,10748 22795,17952 4842,6614 7205,14409 7205,22913l0 1585601zm32480 -2119922c0,68503 -13228,114801 -39094,139368 -25866,24685 -73345,37322 -143029,37322 -68503,0 -115392,-12047 -140667,-36141 -25157,-23976 -37795,-69684 -37795,-137005 0,-68503 13228,-114801 38976,-139486 25866,-24566 73345,-37204 143147,-37204 68503,0 115392,12047 140667,36023 25157,24094 37795,69802 37795,137124z"/>
+  <path id="3" class="fil1" d="M91793858 79067119c0,4842 0,9685 -591,15000 -591,5433 -1772,10866 -2362,16889 -1181,6024 -3071,12047 -4842,19252 -1772,7205 -3543,14409 -6024,22795l-540345 1506233c-4724,13228 -11338,24094 -18661,31889 -7795,8386 -19134,15000 -34251,19252 -15590,4724 -34842,8386 -58227,10157 -23504,1890 -52912,2480 -88345,2480 -34842,0 -64369,-1299 -87754,-3661 -23504,-2362 -42755,-6024 -57164,-10157 -15000,-4842 -26456,-11456 -34251,-19842 -8386,-7913 -15000,-18071 -19842,-30118l-538573 -1506233c-4724,-13819 -8386,-26456 -11338,-36614 -3071,-10866 -4842,-18661 -5433,-24094 -591,-5433 -591,-9567 -591,-13228 0,-9567 2362,-17362 6614,-24566 4842,-7323 12638,-12638 23976,-16889 10866,-4252 25866,-6614 43936,-7795 18071,-1181 40865,-1772 67912,-1772 34251,0 61298,591 81731,2362 20433,1772 36732,5433 47479,10157 11456,4252 19842,10275 24685,17480 5433,7205 10157,15590 15000,26456l447157 1307339 7205 21023 5433 -21023 441842 -1307339c2362,-10866 6496,-19252 12519,-26456 5433,-7205 14527,-13228 25275,-17480 11456,-4724 26456,-8386 45708,-10157 19842,-1772 45117,-2362 76888,-2362 27047,0 49369,591 66731,1772 17480,1181 31299,4252 41456,8976 10275,4252 16889,10275 21023,16299 4252,6614 6024,14409 6024,23976z"/>
+  <path id="4" class="fil1" d="M93437805 79794428c0,45708 -11456,78069 -34251,97912 -22913,19252 -49369,28936 -78778,28936l-1041005 0c0,88345 8976,167595 26456,237988 17362,70865 46889,131572 88345,182123 40865,50432 94368,88935 159918,115982 66022,27047 146572,40865 241531,40865 75117,0 142438,-6024 200784,-18661 58936,-11929 109959,-25748 152714,-40865 42637,-15000 78069,-28818 105707,-40865 27637,-12638 48070,-18661 62597,-18661 8386,0 15590,1890 22204,6024 6024,4252 11456,10275 14409,18661 3661,7795 6614,19252 8386,33661 1890,15000 2480,32480 2480,53503 0,15000 -591,28228 -1890,39684 -1181,10866 -2362,21023 -4134,29409 -1890,9094 -4842,16889 -9094,24094 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25866,16771 -57046,31181 -31889,15118 -72755,28936 -123305,43346 -50432,13819 -108778,26456 -174918,37204 -66022,11456 -136415,16889 -211532,16889 -130391,0 -244011,-18071 -341923,-54684 -98030,-36141 -180351,-90235 -247082,-161690 -66731,-72164 -117163,-161690 -150824,-269877 -34251,-107596 -51141,-233264 -51141,-376883 0,-135824 17480,-258421 52912,-367198 34842,-108187 85983,-200784 152005,-276491 66141,-75825 146690,-133462 240468,-174328 93778,-40275 198894,-60708 314994,-60708 124368,0 230193,19842 317356,60117 87754,39684 159210,93778 215784,161099 55865,67322 97321,146572 123777,237988 26456,90707 39684,188146 39684,291491l0 52912zm-292081 -85983c3543,-152596 -30118,-272830 -101691,-359994 -71455,-87164 -176690,-130391 -316648,-130391 -72164,0 -135234,13110 -189327,40157 -54094,27047 -99211,63188 -135942,108305 -36614,44409 -64841,96731 -84684,155666 -19842,59408 -31299,121415 -33661,186256l861953 0z"/>
+  <path id="5" class="fil1" d="M94809985 79173534c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>
+  <path id="6" class="fil1" d="M96073978 80223515c0,81140 -15000,153304 -44999,217083 -30118,63070 -72164,116573 -127439,159800 -55275,43346 -120825,76416 -197122,98620 -76416,22204 -160509,33661 -251925,33661 -56456,0 -109959,-4252 -160981,-13228 -51141,-8386 -96849,-19252 -137714,-33070 -40275,-13228 -74526,-27047 -102754,-41456 -28228,-14409 -48661,-27637 -61298,-39094 -13228,-11456 -22913,-28228 -28228,-49251 -6024,-21023 -9094,-49960 -9094,-86573 0,-22204 1299,-40865 3661,-55865 2362,-15708 5433,-27637 8386,-37322 3661,-9567 8976,-16181 15000,-20433 6614,-4252 13819,-6024 22322,-6024 12638,0 31771,7795 57046,24094 25275,15590 56456,33070 93187,51613 36614,18661 80550,36141 130982,51731 50550,16181 108187,24094 173737,24094 49251,0 93778,-5433 133462,-16299 40275,-10157 74526,-25866 103935,-46889 29527,-20433 51731,-46889 67912,-78660 15708,-31889 23504,-69802 23504,-113620 0,-44527 -11456,-82321 -34251,-112439 -22913,-30590 -52912,-57637 -90235,-81140 -37795,-23385 -79959,-44409 -126730,-62479 -46889,-18071 -95077,-37322 -144919,-57164 -49251,-20433 -97912,-42637 -145391,-67912 -47598,-25157 -89644,-55865 -127439,-92479 -37322,-36732 -67322,-79959 -90235,-130509 -22795,-50432 -34251,-110549 -34251,-181532 0,-61889 12047,-121297 36141,-178461 23976,-57046 59999,-107006 108187,-149643 48661,-42637 108778,-77597 180824,-103345 72164,-25866 156375,-38503 253106,-38503 42046,0 84093,3543 126848,10748 42046,7323 79841,16889 114211,27755 34251,10748 63070,22795 87046,35432 24094,13228 42755,23976 54802,34251 12519,9567 20433,18071 24566,24685 4252,7205 7205,15000 9094,23976 1772,8386 3543,19252 5315,31889 1890,13228 2480,28818 2480,47479 0,19842 -591,37204 -2480,51731 -1772,14409 -4724,26338 -8976,35432 -4252,9567 -8976,16181 -15000,20433 -6024,4134 -12638,6024 -19252,6024 -10866,0 -25866,-6614 -46298,-19842 -19842,-12638 -45708,-26456 -77479,-41456 -31889,-15118 -69211,-28936 -111848,-41574 -42637,-13110 -92006,-19724 -147281,-19724 -49251,0 -93187,5315 -130391,16771 -37913,10866 -68503,26456 -92597,46889 -23976,20433 -42637,44527 -54684,72755 -12638,27637 -18661,58227 -18661,90707 0,45708 12047,84211 35551,115392 23385,31299 53503,58345 91298,81731 37322,23504 80550,44527 128620,63778 48070,18661 96849,37795 146690,57637 49842,20433 99211,42755 147871,67322 48661,24685 91888,54684 129210,89644 37913,35432 67912,77479 90707,126730 22913,49369 34251,108187 34251,176099z"/>
+  <polygon class="fil0" points="106522411,97611863 121874930,97611863 121874930,66175855 106522411,66175855 "/>
+  <path class="fil1" d="M111459803 76026071c0,22204 -1181,41456 -3543,57637 -2480,16299 -6024,29527 -11456,39684 -5433,9685 -11456,17480 -19252,21614 -7795,4842 -16181,7205 -25157,7205l-640146 0 0 1977484c0,9685 -2480,17480 -7205,24685 -4842,7205 -12638,12638 -24685,16771 -11456,4252 -27047,7913 -46298,10866 -19842,2953 -43818,4252 -73345,4252 -28228,0 -52204,-1299 -72046,-4252 -19842,-2953 -36141,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24685,-16771 -4842,-7205 -7205,-15000 -7205,-24685l0 -1977484 -640146 0c-8976,0 -17362,-2362 -25275,-7205 -7795,-4134 -13819,-11929 -18543,-21614 -4252,-10157 -8504,-23385 -11456,-39684 -3071,-16181 -4252,-35432 -4252,-57637 0,-22322 1181,-42046 4252,-58936 2953,-16771 7205,-30708 11456,-40865 4724,-10866 10748,-18661 18543,-22795 7913,-4842 16299,-7205 25275,-7205l1583239 0c8976,0 17362,2362 25157,7205 7795,4134 13819,11929 19252,22795 5433,10157 8976,24094 11456,40865 2362,16889 3543,36614 3543,58936z"/>
+  <path id="1" class="fil1" d="M112459942 76648737c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>
+  <path id="2" class="fil1" d="M113910310 78133356c0,13819 -4842,24566 -13819,31771 -9685,7323 -22322,12047 -39094,15708 -16181,3543 -40275,5433 -72164,5433 -29999,0 -54684,-1890 -72636,-5433 -18071,-3661 -31299,-8386 -39684,-15708 -8504,-7205 -12638,-17362 -12638,-31771l0 -158737c-69093,73936 -146100,131691 -231374,172556 -85392,40275 -175509,60708 -270586,60708 -83502,0 -159210,-10866 -226531,-32480 -67322,-21614 -125076,-53503 -172556,-94368 -47479,-40865 -84684,-92006 -111140,-151415 -26456,-60117 -39684,-128029 -39684,-204445 0,-89526 18071,-167005 54684,-232555 36023,-66141 88345,-120825 156848,-164052 67912,-43346 151533,-76416 250035,-98030 98620,-21614 209760,-32480 333065,-32480l218736 0 0 -123777c0,-60708 -6614,-114801 -19252,-162281 -13228,-46889 -33661,-85983 -62479,-117163 -28818,-31299 -66141,-54802 -111848,-70392 -45590,-16181 -102164,-23976 -168895,-23976 -71455,0 -135824,8386 -192280,25748 -57164,17480 -107006,36141 -149643,57164 -42755,21023 -78778,39684 -107596,57046 -28228,17480 -49960,25866 -63778,25866 -9567,0 -17952,-2362 -24566,-7205 -7205,-4252 -13228,-11456 -18661,-21023 -5433,-8976 -8976,-21023 -11456,-35432 -2362,-15118 -3543,-30708 -3543,-48661 0,-28936 1772,-52322 6024,-69211 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43346,-33070 81731,-54094 38503,-20433 83621,-39684 134053,-57046 49842,-16889 105234,-31299 165351,-42755 59408,-11338 120116,-16771 180824,-16771 113620,0 210351,12638 290310,38503 79959,25748 144328,64251 193579,114092 49251,49960 84802,111848 107006,185784 22204,73936 33661,160509 33661,259011l0 1069941zm-288538 -726129l-248263 0c-79251,0 -148462,6614 -207280,20433 -58345,13228 -107006,33661 -146100,60117 -38503,26456 -66731,57755 -85392,94959 -17952,37322 -27047,79959 -27047,128029 0,82321 25866,147871 78188,196532 52322,48779 124958,73345 219327,73345 75825,0 146690,-19252 211650,-58227 64841,-38503 133344,-98030 204918,-177989l0 -337199z"/>
+  <path id="3" class="fil1" d="M116832068 76013434c0,33070 -2480,60708 -7795,82912 -5433,22204 -15118,40275 -28346,54094 -13819,13228 -31771,22913 -54684,28818 -23385,6024 -52204,9094 -87754,9094 -34251,0 -62479,-3071 -85865,-9094 -22913,-5905 -40865,-15590 -54684,-28818 -13228,-13819 -22913,-31889 -28936,-54094 -6024,-22204 -8976,-49842 -8976,-82912 0,-33070 2953,-60117 8976,-82321 6024,-21732 15708,-39684 28936,-54684 13819,-14527 31771,-24685 54684,-30118 23385,-5433 51613,-7795 85865,-7795 35551,0 64369,2362 87754,7795 22913,5433 40865,15590 54684,30118 13228,15000 22913,32952 28346,54684 5315,22204 7795,49251 7795,82321zm-32480 2118151c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42755,3661 -72164,3661 -27047,0 -49842,-1299 -69684,-3661 -19252,-2362 -34251,-6024 -45708,-10157 -10866,-4842 -18661,-10866 -22795,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1387888 -714082 0 0 1387888c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42046,3661 -70392,3661 -28228,0 -51613,-1299 -70274,-3661 -18661,-2362 -33661,-6024 -45117,-10157 -10748,-4842 -18661,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1387888 -710420 0 0 1387888c0,9567 -2480,17362 -7323,23976 -4724,6024 -12519,12047 -23385,16889 -11456,4134 -26456,7795 -45117,10157 -18543,2362 -42046,3661 -70274,3661 -28228,0 -51731,-1299 -70392,-3661 -18543,-2362 -33661,-6024 -44999,-10157 -10866,-4842 -18661,-10866 -23504,-16889 -4724,-6614 -7205,-14409 -7205,-23976l0 -1387888 -224760 0c-18661,0 -33070,-9567 -42046,-28228 -9685,-18661 -14409,-49251 -14409,-92006 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38503 4134,-9567 10157,-16771 17362,-21023 7205,-4252 15708,-6024 24685,-6024l224760 0 0 -149643c0,-109368 10866,-203146 31889,-281334 21023,-78069 52322,-142438 94368,-192871 42046,-50550 94368,-87754 157438,-111848 62597,-23976 135234,-36023 218264,-36023 51613,0 96731,4252 135234,13228 38385,8976 66613,16771 85274,24685 18071,7795 30708,15000 37322,22204 7205,6614 13228,16181 17952,27047 4252,11456 7913,24685 9685,40865 1772,15590 2362,34842 2362,57046 0,37913 -2953,64959 -8976,81731 -5433,17480 -16299,25866 -31299,25866 -9567,0 -20433,-2362 -32480,-7795 -11929,-5433 -27637,-11456 -46180,-18071 -18661,-5905 -40275,-11929 -64369,-17362 -23385,-5433 -50432,-7795 -79369,-7795 -86455,0 -147163,29999 -182713,89526 -34842,60117 -52204,155666 -52204,287357l0 153186 710420 0 0 -171257c0,-108778 10748,-202555 32480,-280743 21614,-78069 53385,-142438 94250,-193461 40984,-50550 92597,-87754 153895,-111848 61889,-23976 132872,-36023 212831,-36023 25866,0 51613,1181 78069,3543 26456,2480 49960,6024 70392,10275 20433,4842 39094,10157 54684,15000 15590,5433 26456,10866 32480,16889 6024,5905 10748,11929 14409,18543 3543,6614 6614,14409 9567,24094 3071,8976 4842,21023 6024,34842 1181,14409 1772,31299 1772,51731 0,37204 -2953,64251 -8976,80550 -5433,16771 -16181,24566 -31299,24566 -8386,0 -17952,-1772 -28228,-6024 -10748,-4134 -23385,-8386 -37795,-13228 -15118,-4724 -33661,-8976 -55983,-13228 -22204,-4134 -49251,-5905 -81140,-5905 -81140,0 -138777,29999 -173619,90116 -34251,59526 -51731,155666 -51731,287239l0 174328 914747 0c30118,0 52912,7795 68621,24094 15000,15590 22795,37204 22795,65432l0 1540012z"/>
+  <path id="4" class="fil1" d="M118511329 77887455c0,19842 -591,37322 -1772,51731 -1299,15000 -3071,27047 -6024,37322 -3071,10157 -6614,18543 -10866,26338 -4252,7913 -13228,19252 -28228,33661 -14409,15118 -39684,33070 -74526,55393 -35432,21614 -75117,41456 -119053,58227 -44409,17480 -91888,31299 -143619,41456 -51731,10866 -105234,16299 -160509,16299 -114211,0 -215193,-18661 -302947,-56574 -88345,-37204 -162281,-91888 -221098,-164052 -59526,-72164 -104644,-161099 -135942,-265625 -31181,-105234 -46889,-226059 -46889,-363655 0,-155666 19252,-289719 57164,-402158 38503,-111730 90707,-203736 156848,-275192 66731,-71574 144919,-124486 234445,-159328 90116,-34251 187556,-51731 292081,-51731 50550,0 99211,4842 146690,14527 48070,8976 91298,21614 131572,36614 39684,15590 75825,33070 106415,53503 31299,19842 54094,37204 67912,51023 14409,14527 24094,25866 29527,33661 4724,8504 9567,18071 13110,29527 3071,10748 5433,23385 6614,37795 1299,13819 1890,31889 1890,52912 0,45708 -5433,77597 -15708,96140 -10748,18071 -23385,27047 -38976,27047 -17480,0 -37913,-9567 -60708,-29409 -22913,-19252 -51731,-40865 -87164,-64251 -35551,-23504 -78188,-45117 -128029,-64369 -49960,-19842 -108778,-29409 -176690,-29409 -140076,0 -247673,53503 -322199,161099 -74526,106888 -111848,262554 -111848,466409 0,101573 9685,191099 28936,267987 19842,76416 48070,140667 85865,192398 37322,51023 83621,89526 138305,114801 54684,25275 117163,37795 187556,37795 67322,0 126139,-10748 176690,-31771 50432,-21023 93778,-44527 130982,-70392 37322,-25157 68503,-48070 93778,-68503 25275,-21023 44527,-31181 58936,-31181 7795,0 15000,2362 21023,7205 6024,4724 10748,12519 15000,23385 4252,11456 7205,25275 8976,42637 1890,16889 2480,37322 2480,60708z"/>
+  <path class="fil1" d="M110849420 82525678c0,106297 -19724,201138 -58818,284522 -39566,82794 -94132,153659 -163816,211886 -69566,57637 -151887,101337 -246019,130746 -94841,29409 -196296,43818 -305546,43818 -76180,0 -147045,-6496 -211886,-19134 -65314,-13228 -123541,-29409 -174564,-48070 -51023,-18543 -93660,-38385 -128502,-58227 -34133,-20315 -58818,-37204 -72046,-51613 -13701,-13819 -23385,-31771 -29999,-53385 -6496,-21614 -9567,-50432 -9567,-86455 0,-25748 1181,-47361 3661,-64133 2362,-16889 5905,-30708 10157,-40865 4842,-10748 10748,-17952 17952,-22204 7205,-4134 15000,-6024 24685,-6024 16181,0 39566,10275 69566,29999 29409,19842 67794,41456 115274,64841 46771,22795 103226,44999 169839,65432 66022,20433 142793,30590 229248,30590 66022,0 126021,-8976 180705,-26338 54566,-17480 101337,-42046 140431,-74408 39566,-31889 69566,-71455 90589,-118344 21023,-46771 31771,-100156 31771,-159564 0,-64251 -14409,-119407 -43818,-165115 -29409,-45590 -67794,-85746 -115746,-120588 -48661,-34251 -103226,-66022 -164525,-94841 -61771,-28818 -124840,-57637 -188973,-87636 -64251,-29999 -127321,-62952 -187910,-99565 -61180,-36023 -115864,-78660 -163816,-127911 -48070,-49133 -87046,-106770 -116455,-173383 -29999,-66022 -44999,-145273 -44999,-237752 0,-95313 17362,-179997 51613,-254405 34842,-73818 82794,-136297 144092,-186611 61771,-50432 134998,-88817 219563,-115274 85274,-26456 176454,-39566 274956,-39566 50432,0 100746,4134 151769,13110 51023,9094 99093,20433 144092,35432 44999,14409 85156,31181 120588,49251 34842,17952 58227,32952 69093,43818 11338,11338 18543,19724 22204,26338 3543,6614 5905,15000 8386,24685 2362,10157 4134,22204 5315,36614 1299,13819 1890,31771 1890,54566 0,21023 -591,39566 -2480,56456 -1772,16181 -4724,29999 -8386,41338 -2953,10866 -8386,19252 -14409,24685 -6614,5315 -13819,7795 -22204,7795 -13110,0 -32952,-8386 -60589,-24685 -27637,-16771 -61180,-34724 -101455,-55747 -39566,-20433 -87046,-38976 -141612,-55865 -53975,-17362 -115274,-25748 -183658,-25748 -62952,0 -118226,8386 -164997,25157 -46889,17480 -85865,39684 -116455,67794 -29999,28228 -52794,61298 -68385,99683 -15000,38976 -22795,79841 -22795,123069 0,62952 14291,117636 43700,163225 29409,45590 68503,85746 117045,121179 49251,35432 104526,67204 166887,96612 61771,29409 125431,58818 190272,88817 64251,30118 127793,62479 189682,98502 62361,35432 117636,77951 166769,126612 48661,48661 87636,105589 117636,172202 29999,66022 44999,144092 44999,234681z"/>
+  <path id="1" class="fil1" d="M112385298 82876814c0,19842 -591,37204 -1772,51613 -1181,15000 -2953,27047 -6024,37204 -2953,10157 -6614,18661 -10748,26456 -4252,7795 -13228,19134 -28228,33543 -14409,15000 -39684,33070 -74408,55275 -35432,21614 -74999,41338 -118817,58227 -44409,17362 -91888,31181 -143501,41338 -51613,10866 -104998,16181 -160273,16181 -113974,0 -214839,-18543 -302475,-56338 -88227,-37204 -162044,-91888 -220862,-163934 -59408,-71928 -104408,-160745 -135588,-265271 -31181,-104998 -46771,-225586 -46771,-363064 0,-155430 19134,-289247 56928,-401449 38385,-111730 90707,-203500 156729,-274956 66613,-71337 144564,-124250 233972,-158974 90116,-34251 187319,-51613 291727,-51613 50432,0 98975,4724 146454,14409 47952,8976 91179,21614 131454,36614 39566,15590 75589,32952 106179,53385 31181,19842 53975,37204 67794,51023 14409,14409 24094,25748 29409,33543 4842,8504 9685,18071 13228,29409 2953,10866 5433,23504 6614,37913 1181,13701 1772,31771 1772,52794 0,45590 -5433,77361 -15590,96022 -10748,17952 -23385,26929 -38976,26929 -17480,0 -37795,-9567 -60589,-29409 -22913,-19134 -51613,-40747 -87046,-64133 -35432,-23504 -78069,-44999 -127911,-64251 -49724,-19842 -108541,-29409 -176454,-29409 -139840,0 -247200,53385 -321608,160863 -74408,106770 -111612,262200 -111612,465700 0,101455 9567,190863 28818,267633 19724,76298 47952,140431 85746,192044 37204,51023 83384,89526 138068,114683 54566,25157 117045,37795 187201,37795 67204,0 126021,-10748 176454,-31771 50432,-21023 93660,-44409 130864,-70274 37204,-25157 68385,-47952 93660,-68385 25157,-21023 44409,-31181 58818,-31181 7795,0 15000,2362 21023,7205 5905,4724 10748,12519 15000,23385 4134,11338 7205,25157 8976,42637 1772,16771 2362,37204 2362,60589z"/>
+  <path id="2" class="fil1" d="M113695471 81639868c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>
+  <path id="3" class="fil1" d="M114317192 83120471c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-8386 1772,-16181 5905,-22795 4252,-7205 12047,-13228 23504,-17952 10748,-4252 25748,-7913 44999,-10275 18543,-2362 41928,-3543 70747,-3543 29409,0 53503,1181 72046,3543 19252,2362 33661,6024 44409,10275 10866,4724 18071,10748 22795,17952 4842,6614 7205,14409 7205,22795l0 1583239zm32480 -2116734c0,68385 -13228,114565 -39094,139249 -25748,24566 -73227,37204 -142793,37204 -68385,0 -115274,-12047 -140431,-36023 -25275,-24094 -37795,-69684 -37795,-136887 0,-68385 13228,-114565 38976,-139249 25866,-24566 73227,-37204 142793,-37204 68503,0 115274,12047 140549,36023 25157,23976 37795,69566 37795,136887z"/>
+  <path id="4" class="fil1" d="M116306723 82303045c0,138659 -15000,262909 -44999,373340 -29409,109841 -73227,203382 -131454,280271 -57637,76770 -129565,136179 -214839,177635 -85156,41456 -183068,62361 -292908,62361 -46771,0 -89998,-4724 -129565,-13701 -40275,-9685 -78660,-24094 -117045,-44527 -37795,-19724 -75589,-44999 -112793,-75589 -37913,-29999 -77479,-66022 -119525,-106770l0 792742c0,9685 -2362,17480 -7205,24685 -4724,7205 -11929,13228 -22795,17952 -10748,4252 -25157,7795 -44409,10275 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2480 -34251,-6024 -44999,-10275 -11456,-4724 -19252,-10748 -23504,-17952 -4134,-7205 -5905,-15000 -5905,-24685l0 -2211574c0,-10748 1772,-19252 5315,-25748 3661,-6024 10866,-12047 21023,-16299 10866,-4724 24094,-8386 40865,-10157 16181,-1772 36614,-2362 59999,-2362 24566,0 44999,591 61180,2362 15590,1772 28818,5433 39684,9567 10748,4842 17952,10866 22204,16889 4134,6496 5905,15000 5905,25748l0 211886c48070,-49251 94250,-91888 138659,-128502 44409,-36023 89408,-66022 134525,-89998 44999,-23976 91179,-42637 138541,-54566 47479,-12638 97321,-18661 150115,-18661 114565,0 211886,22204 292908,66613 80314,44999 146336,105707 197359,183068 51023,77479 88227,167477 111730,270113 23385,102636 34724,211177 34724,325860zm-302475 33661c0,-81022 -6024,-159682 -18543,-235271 -12047,-75707 -33661,-142911 -63070,-201729 -29999,-58818 -70156,-105589 -120588,-141021 -50432,-35432 -113502,-52794 -188501,-52794 -37795,0 -74408,5433 -111022,16771 -36023,11456 -73227,28818 -111022,52794 -37204,24094 -76770,55865 -117636,95431 -40865,39684 -84684,88227 -130273,145864l0 629634c79841,97794 155430,172202 226886,224405 72046,51613 147045,77479 225705,77479 72636,0 134998,-17480 187201,-52912 52204,-35314 94250,-82203 126612,-141021 32480,-58818 55865,-124250 71455,-197359 15000,-72636 22795,-146454 22795,-220272z"/>
+  <path id="5" class="fil1" d="M117549102 83002835c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>
+  <path id="6" class="fil1" d="M118928369 82688313c0,81022 -15000,153068 -44999,216728 -30118,62952 -72046,116455 -127321,159564 -55156,43228 -120588,76298 -196768,98502 -76298,22204 -160273,33543 -251570,33543 -56338,0 -109841,-4134 -160745,-13110 -51023,-8504 -96731,-19252 -137478,-33070 -40275,-13228 -74408,-27047 -102636,-41338 -28228,-14409 -48661,-27637 -61180,-39094 -13228,-11338 -22795,-28228 -28228,-49133 -6024,-21023 -8976,-49842 -8976,-86455 0,-22204 1181,-40865 3543,-55865 2362,-15590 5433,-27637 8386,-37204 3661,-9567 8976,-16181 15000,-20433 6614,-4134 13819,-5905 22204,-5905 12638,0 31889,7795 57046,23976 25157,15590 56456,32952 93069,51613 36614,18543 80432,36023 130746,51613 50432,16181 108069,23976 173501,23976 49251,0 93660,-5433 133226,-16181 40157,-10157 74408,-25866 103817,-46771 29409,-20433 51613,-46889 67794,-78660 15590,-31771 23504,-69684 23504,-113502 0,-44409 -11456,-82203 -34251,-112203 -22795,-30590 -52794,-57637 -89998,-81022 -37795,-23385 -79841,-44409 -126730,-62361 -46771,-18071 -94723,-37204 -144564,-57046 -49251,-20433 -97794,-42637 -145273,-67794 -47361,-25275 -89408,-55865 -127202,-92479 -37204,-36614 -67204,-79841 -89998,-130155 -22913,-50432 -34251,-110431 -34251,-181296 0,-61771 12047,-121297 36023,-178225 23976,-57046 59999,-106888 107951,-149525 48661,-42519 108659,-77361 180705,-103226 72046,-25748 156021,-38385 252633,-38385 42046,0 84093,3661 126730,10866 41928,7205 79723,16771 113974,27519 34251,10866 63070,22913 87046,35432 23976,13228 42637,23976 54566,34251 12638,9567 20433,17952 24685,24566 4134,7205 7205,15000 8976,23976 1772,8504 3543,19252 5433,31889 1772,13228 2362,28818 2362,47361 0,19842 -591,37204 -2362,51613 -1890,14409 -4842,26456 -9094,35432 -4134,9567 -8976,16181 -15000,20433 -6024,4134 -12519,6024 -19134,6024 -10866,0 -25866,-6614 -46298,-19842 -19724,-12638 -45590,-26456 -77361,-41456 -31771,-15000 -68975,-28818 -111612,-41338 -42637,-13228 -91888,-19842 -147045,-19842 -49251,0 -93069,5433 -130273,16771 -37795,10866 -68385,26456 -92361,46889 -24094,20315 -42637,44409 -54684,72636 -12638,27519 -18543,58109 -18543,90589 0,45590 11929,83975 35314,115155 23504,31299 53503,58227 91298,81731 37204,23385 80432,44409 128384,63542 48070,18661 96612,37795 146454,57637 49842,20433 99093,42637 147635,67204 48661,24566 91888,54684 129092,89408 37795,35432 67794,77479 90589,126612 22795,49251 34251,108069 34251,175863z"/>
+  <path class="fil1" d="M109814439 85722865c-111612,235862 -194406,477157 -249090,724948 -54566,247909 -81613,496999 -81613,747861 0,252043 27637,501723 83502,749042 55747,247200 136769,489676 243657,727310 6024,14409 8976,26456 9567,36023 591,10275 -3543,18071 -11338,24685 -8504,6614 -21023,11338 -37913,14409 -17362,2953 -40157,4134 -69566,4134 -21023,0 -38976,-591 -54566,-1772 -15118,-1181 -28228,-3661 -39684,-7205 -10748,-3661 -19842,-7205 -27047,-12047 -7205,-4724 -12519,-10157 -15590,-15590 -63542,-119998 -119407,-240704 -167359,-363064 -48070,-122478 -88227,-247318 -121297,-373930 -32952,-126021 -57637,-254405 -73818,-383497 -16181,-129683 -24566,-260428 -24566,-393064 0,-132635 8976,-262909 26929,-392001 18661,-128974 44409,-256767 77479,-384088 33661,-127202 74408,-252043 122478,-375111 47952,-122951 101927,-244838 162044,-365426 591,-4842 4134,-9094 9567,-12638 4842,-3661 12638,-7205 21614,-10157 9567,-3661 22204,-6614 38976,-8504 16181,-1772 37204,-2362 63070,-2362 26929,0 48542,1772 65432,5433 16181,3543 28700,7795 38385,13819 9567,6024 14409,13819 15590,22795 1181,9567 -591,19842 -4842,29999z"/>
+  <path class="fil1" d="M111553462 87507715c0,106297 -19724,201138 -58818,284522 -39566,82794 -94132,153659 -163816,211886 -69566,57637 -151887,101337 -246019,130746 -94841,29409 -196296,43818 -305546,43818 -76180,0 -147045,-6496 -211886,-19134 -65314,-13228 -123541,-29409 -174564,-48070 -51023,-18543 -93660,-38385 -128502,-58227 -34133,-20315 -58818,-37204 -72046,-51613 -13701,-13819 -23385,-31771 -29999,-53385 -6496,-21614 -9567,-50432 -9567,-86455 0,-25748 1181,-47361 3661,-64133 2362,-16889 5905,-30708 10157,-40865 4842,-10748 10748,-17952 17952,-22204 7205,-4134 15000,-6024 24685,-6024 16181,0 39566,10275 69566,29999 29409,19842 67794,41456 115274,64841 46771,22795 103226,44999 169839,65432 66022,20433 142793,30590 229248,30590 66022,0 126021,-8976 180705,-26338 54566,-17480 101337,-42046 140431,-74408 39566,-31889 69566,-71455 90589,-118344 21023,-46771 31771,-100156 31771,-159564 0,-64251 -14409,-119407 -43818,-165115 -29409,-45590 -67794,-85746 -115746,-120588 -48661,-34251 -103226,-66022 -164525,-94841 -61771,-28818 -124840,-57637 -188973,-87636 -64251,-29999 -127321,-62952 -187910,-99565 -61180,-36023 -115864,-78660 -163816,-127911 -48070,-49133 -87046,-106770 -116455,-173383 -29999,-66022 -44999,-145273 -44999,-237752 0,-95313 17362,-179997 51613,-254405 34842,-73818 82794,-136297 144092,-186611 61771,-50432 134998,-88817 219563,-115274 85274,-26456 176454,-39566 274956,-39566 50432,0 100746,4134 151769,13110 51023,9094 99093,20433 144092,35432 44999,14409 85156,31181 120588,49251 34842,17952 58227,32952 69093,43818 11338,11338 18543,19724 22204,26338 3543,6614 5905,15000 8386,24685 2362,10157 4134,22204 5315,36614 1299,13819 1890,31771 1890,54566 0,21023 -591,39566 -2480,56456 -1772,16181 -4724,29999 -8386,41338 -2953,10866 -8386,19252 -14409,24685 -6614,5315 -13819,7795 -22204,7795 -13110,0 -32952,-8386 -60589,-24685 -27637,-16771 -61180,-34724 -101455,-55747 -39566,-20433 -87046,-38976 -141612,-55865 -53975,-17362 -115274,-25748 -183658,-25748 -62952,0 -118226,8386 -164997,25157 -46889,17480 -85865,39684 -116455,67794 -29999,28228 -52794,61298 -68385,99683 -15000,38976 -22795,79841 -22795,123069 0,62952 14291,117636 43700,163225 29409,45590 68503,85746 117045,121179 49251,35432 104526,67204 166887,96612 61771,29409 125431,58818 190272,88817 64251,30118 127793,62479 189682,98502 62361,35432 117636,77951 166769,126612 48661,48661 87636,105589 117636,172202 29999,66022 44999,144092 44999,234681z"/>
+  <path id="1" class="fil1" d="M113089340 87858850c0,19842 -591,37204 -1772,51613 -1181,15000 -2953,27047 -6024,37204 -2953,10157 -6614,18661 -10748,26456 -4252,7795 -13228,19134 -28228,33543 -14409,15000 -39684,33070 -74408,55275 -35432,21614 -74999,41338 -118817,58227 -44409,17362 -91888,31181 -143501,41338 -51613,10866 -104998,16181 -160273,16181 -113974,0 -214839,-18543 -302475,-56338 -88227,-37204 -162044,-91888 -220862,-163934 -59408,-71928 -104408,-160745 -135588,-265271 -31181,-104998 -46771,-225586 -46771,-363064 0,-155430 19134,-289247 56928,-401449 38385,-111730 90707,-203500 156729,-274956 66613,-71337 144564,-124250 233972,-158974 90116,-34251 187319,-51613 291727,-51613 50432,0 98975,4724 146454,14409 47952,8976 91179,21614 131454,36614 39566,15590 75589,32952 106179,53385 31181,19842 53975,37204 67794,51023 14409,14409 24094,25748 29409,33543 4842,8504 9685,18071 13228,29409 2953,10866 5433,23504 6614,37913 1181,13701 1772,31771 1772,52794 0,45590 -5433,77361 -15590,96022 -10748,17952 -23385,26929 -38976,26929 -17480,0 -37795,-9567 -60589,-29409 -22913,-19134 -51613,-40747 -87046,-64133 -35432,-23504 -78069,-44999 -127911,-64251 -49724,-19842 -108541,-29409 -176454,-29409 -139840,0 -247200,53385 -321608,160863 -74408,106770 -111612,262200 -111612,465700 0,101455 9567,190863 28818,267633 19724,76298 47952,140431 85746,192044 37204,51023 83384,89526 138068,114683 54566,25157 117045,37795 187201,37795 67204,0 126021,-10748 176454,-31771 50432,-21023 93660,-44409 130864,-70274 37204,-25157 68385,-47952 93660,-68385 25157,-21023 44409,-31181 58818,-31181 7795,0 15000,2362 21023,7205 5905,4724 10748,12519 15000,23385 4134,11338 7205,25157 8976,42637 1772,16771 2362,37204 2362,60589z"/>
+  <path id="2" class="fil1" d="M114636084 88104279c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>
+  <path id="3" class="fil1" d="M116623725 87285081c0,138659 -15000,262909 -44999,373340 -29409,109841 -73227,203382 -131454,280271 -57637,76770 -129565,136179 -214839,177635 -85156,41456 -183068,62361 -292908,62361 -46771,0 -89998,-4724 -129565,-13701 -40275,-9685 -78660,-24094 -117045,-44527 -37795,-19724 -75589,-44999 -112793,-75589 -37913,-29999 -77479,-66022 -119525,-106770l0 792742c0,9685 -2362,17480 -7205,24685 -4724,7205 -11929,13228 -22795,17952 -10748,4252 -25157,7795 -44409,10275 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2480 -34251,-6024 -44999,-10275 -11456,-4724 -19252,-10748 -23504,-17952 -4134,-7205 -5905,-15000 -5905,-24685l0 -2211574c0,-10748 1772,-19252 5315,-25748 3661,-6024 10866,-12047 21023,-16299 10866,-4724 24094,-8386 40865,-10157 16181,-1772 36614,-2362 59999,-2362 24566,0 44999,591 61180,2362 15590,1772 28818,5433 39684,9567 10748,4842 17952,10866 22204,16889 4134,6496 5905,15000 5905,25748l0 211886c48070,-49251 94250,-91888 138659,-128502 44409,-36023 89408,-66022 134525,-89998 44999,-23976 91179,-42637 138541,-54566 47479,-12638 97321,-18661 150115,-18661 114565,0 211886,22204 292908,66613 80314,44999 146336,105707 197359,183068 51023,77479 88227,167477 111730,270113 23385,102636 34724,211177 34724,325860zm-302475 33661c0,-81022 -6024,-159682 -18543,-235271 -12047,-75707 -33661,-142911 -63070,-201729 -29999,-58818 -70156,-105589 -120588,-141021 -50432,-35432 -113502,-52794 -188501,-52794 -37795,0 -74408,5433 -111022,16771 -36023,11456 -73227,28818 -111022,52794 -37204,24094 -76770,55865 -117636,95431 -40865,39684 -84684,88227 -130273,145864l0 629634c79841,97794 155430,172202 226886,224405 72046,51613 147045,77479 225705,77479 72636,0 134998,-17480 187201,-52912 52204,-35314 94250,-82203 126612,-141021 32480,-58818 55865,-124250 71455,-197359 15000,-72636 22795,-146454 22795,-220272z"/>
+  <path id="4" class="fil1" d="M117762878 88146325l-210587 582745c-7205,18661 -25275,33070 -54094,43228 -28110,10157 -71928,15000 -130746,15000 -30590,0 -55275,-1181 -73818,-4252 -18661,-2953 -33070,-8386 -43228,-15000 -9685,-7205 -15000,-16771 -16181,-28110 -1299,-12047 1772,-25866 8386,-42637l218382 -550974c-10748,-4842 -20905,-12638 -29999,-22795 -9567,-10866 -16181,-21614 -19134,-33661l-564793 -1512374c-9567,-24566 -13819,-44409 -13819,-58227 0,-14409 4252,-25157 13819,-33661 9567,-8386 24566,-13701 45590,-16771 21023,-2953 49251,-4134 84684,-4134 34724,0 62361,591 82794,2362 19842,1772 35432,5433 47361,10157 11456,4252 19842,11456 25275,19842 5433,8976 10748,21023 16771,36023l451882 1269898 5433 0 435701 -1276512c7205,-22795 15590,-37204 25866,-43228 9567,-6614 24566,-11338 44409,-14409 20433,-2953 49251,-4134 86455,-4134 32952,0 59999,1181 81022,4134 20905,3071 36614,8386 46180,16771 10157,8504 15000,19252 15000,33661 0,13819 -3661,31771 -10157,52794l-568454 1574263z"/>
+  <path class="fil1" d="M119254820 87201106c0,132635 -8386,263381 -24566,393064 -16181,129092 -40865,257476 -73818,383497 -32952,126612 -73227,251452 -120588,373930 -47479,122360 -102636,243066 -166296,363064 -2953,5433 -8386,10866 -15590,15590 -7205,4842 -16181,8386 -27047,12047 -11338,3543 -24566,6024 -39566,7205 -15590,1181 -33661,1772 -54684,1772 -30590,0 -53975,-1181 -71337,-4134 -16889,-3071 -29409,-7795 -36614,-14409 -7795,-6614 -11456,-14409 -10866,-24685 591,-9567 3661,-21614 9685,-36023 107951,-236452 189564,-478928 244248,-726719 55156,-247909 82794,-497589 82794,-749632 0,-250862 -27637,-499952 -82794,-747861 -54684,-247791 -137478,-489086 -247909,-724948 -4134,-10157 -6024,-20433 -4724,-29999 1181,-8976 5905,-16771 15590,-22795 9567,-6024 22204,-10275 38385,-13819 16771,-3661 38385,-5433 65432,-5433 24566,0 44999,591 61180,2362 16771,1890 29999,4842 39566,8504 10275,2953 17480,6496 22204,10157 4842,3543 8504,7795 10275,12638 121179,239996 215429,486724 284404,740538 68503,253932 102636,512589 102636,776088z"/>
+  <polygon class="fil2" points="37395507,59487865 141045293,59487865 141045293,49604815 37395507,49604815 "/>
+  <path class="fil1" d="M64080145 56359654c0,14409 -2716,26220 -8149,37086 -5433,10748 -16299,19842 -34251,27047 -17244,6260 -42519,11693 -74054,15354 -31653,3543 -74054,5433 -126376,5433 -46062,0 -83975,-1890 -112793,-5433 -28936,-3661 -52322,-9094 -70392,-17126 -17126,-8149 -30708,-19015 -40629,-33425 -9921,-13582 -18071,-31653 -25275,-52322l-314049 -807859c-37086,-92006 -75825,-175981 -115628,-252751 -39684,-76652 -86573,-142556 -141612,-198540 -54212,-55983 -119171,-98384 -193225,-129919 -73936,-30708 -163344,-46062 -267161,-46062l-304128 0 0 1458517c0,14409 -3661,26220 -11693,37086 -8149,10748 -20787,18897 -37086,25275 -17126,6260 -39684,11693 -68503,16181 -29881,4488 -65904,6378 -110195,6378 -44172,0 -80314,-1890 -110077,-6378 -28936,-4488 -52322,-9921 -69448,-16181 -18071,-6378 -29881,-14527 -37086,-25275 -7205,-10039 -10866,-22677 -10866,-37086l0 -3168841c0,-68621 18071,-116455 54212,-144446 36141,-27047 74881,-40629 115510,-40629l727428 0c86691,0 158029,1772 215784,6378 56810,4488 108305,9921 154367,14409 132635,23504 249090,59526 351017,108305 101101,49605 186020,111966 254523,187674 69566,75825 120943,162517 155312,260901 34251,97439 51377,205744 51377,323971 0,113738 -15354,216610 -45944,307790 -31653,90235 -75825,170666 -133580,240114 -58700,69448 -128265,129919 -209406,181414 -81258,50550 -171493,93896 -272594,129092 56810,25275 107360,55983 153422,93778 46062,37913 88463,83975 128147,136297 39684,53267 77597,114683 112793,183304 35196,68503 70392,146218 105589,232791l306963 754593c24330,63188 40511,108305 46889,133580 7205,25275 10866,45117 10866,59526zm-685027 -2406216c0,-133580 -29881,-247318 -90353,-340269 -59526,-92006 -159682,-158855 -301412,-199485 -44172,-12638 -93896,-20669 -148934,-26102 -55983,-5433 -128147,-8149 -218382,-8149l-383615 0 0 1153444 444086 0c119998,0 223815,-14409 311333,-43346 86691,-29763 159800,-70392 217555,-121769 58700,-52440 101101,-113738 129092,-184131 27047,-70392 40629,-147163 40629,-230193z"/>
+  <path id="1" class="fil1" d="M66787773 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>
+  <path id="2" class="fil1" d="M69621895 55138534c0,206689 -22559,391646 -67794,556880 -44172,165115 -110077,305900 -197595,421528 -86691,116336 -194052,205744 -320427,267161 -126376,62243 -271649,92951 -434992,92951 -75825,0 -146218,-7205 -210351,-22559 -64015,-14527 -127202,-38858 -188619,-72282 -61416,-34251 -122714,-75825 -185075,-127202 -61298,-51495 -126258,-112793 -194878,-185075l0 292436c0,13582 -3661,26220 -10866,36968 -7205,10866 -18071,19015 -34251,25275 -16299,6378 -36141,10866 -59645,14527 -24330,3543 -55038,5433 -92006,5433 -35196,0 -65904,-1890 -90235,-5433 -25275,-3661 -45117,-8149 -61416,-14527 -15354,-6260 -26220,-14409 -31535,-25275 -5433,-10748 -8149,-22559 -8149,-36968l0 -3531669c0,-14527 2716,-27165 8976,-37086 6378,-10748 18071,-19842 35196,-27047 16299,-6260 38858,-11693 67676,-15354 27992,-3543 63188,-5433 106534,-5433 44291,0 80314,1890 108305,5433 28936,3661 50550,9094 66849,15354 16181,7205 27047,16299 34251,27047 7205,9921 10866,22559 10866,37086l0 1422376c70392,-72164 138068,-133580 204799,-183186 65904,-48779 130037,-89408 193225,-119998 64015,-30708 127202,-53267 190390,-67794 63188,-13464 130037,-20669 200429,-20669 172320,0 319482,34251 442197,102872 121888,68621 221098,161572 297869,276137 76770,115510 132635,250980 167832,406174 35196,155194 52440,319482 52440,491920zm-454952 50550c0,-121888 -8976,-240114 -27992,-354679 -18071,-115628 -50550,-216728 -96494,-305073 -46062,-88463 -106534,-159800 -182359,-213067 -75825,-54094 -170548,-81258 -283459,-81258 -55865,0 -111848,8149 -166887,23504 -54212,16299 -110195,43346 -166060,80314 -56928,36968 -115628,84802 -176099,143501 -61298,57755 -126258,131809 -194878,220272l0 949471c119998,147163 234681,259011 343813,335781 109250,76652 223815,115510 342159,115510 109132,0 202083,-26220 279798,-79487 77597,-53149 140785,-123541 189445,-211177 48779,-86573 83975,-184957 105589,-293262 22559,-109250 33425,-219327 33425,-330348z"/>
+  <path id="3" class="fil1" d="M72488379 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>
+  <path id="4" class="fil1" d="M74369369 56185444c0,51495 -3661,92124 -10866,121888 -6260,29763 -17126,52322 -31535,65904 -13582,14409 -35196,27992 -63188,39684 -27992,12638 -60471,22559 -96612,30708 -36141,8149 -74054,14409 -114565,19842 -40629,5433 -80432,8149 -120943,8149 -123659,0 -229248,-16299 -316884,-48779 -87518,-32480 -159682,-82085 -216610,-147989 -55983,-65904 -96494,-149879 -122714,-250980 -25275,-100982 -37913,-220154 -37913,-357395l0 -1388125 -334836 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-27992 -23385,-74054 -23385,-138068 0,-33425 1772,-61416 6260,-83975 4488,-23504 10866,-42401 17126,-57755 7205,-14409 17126,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332120 0 0 -565029c0,-12638 2716,-24330 8976,-34251 6378,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27874,-3661 63188,-5433 106415,-5433 44291,0 80314,1772 108305,5433 28936,3543 50550,8976 66849,17126 16181,8149 27047,17126 34251,27992 7205,9921 10866,21614 10866,34251l0 565029 606485 0c14527,0 26220,2716 37086,9094 9921,6260 19842,17126 27047,31535 8149,15354 13464,34251 17126,57755 3661,22559 5433,50550 5433,83975 0,64015 -8149,110077 -23504,138068 -16181,27992 -36968,42401 -63188,42401l-606485 0 0 1324110c0,163344 24330,287003 72164,370033 47834,83975 134525,125431 259011,125431 39802,0 75825,-3543 107478,-11693 31535,-8149 59526,-16299 83975,-25275 24330,-9094 45117,-17126 63070,-25275 17244,-8149 33425,-11811 47007,-11811 8976,0 17126,1890 25275,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28818 11693,50550 3661,20787 5433,47834 5433,79369z"/>
+  <path id="5" class="fil1" d="M78399217 56354221c0,14527 -3661,27165 -9921,38858 -5433,11693 -18071,20787 -35196,27992 -18071,6260 -41574,12638 -71337,17126 -29763,4488 -68621,6378 -116455,6378 -61298,0 -111848,-2716 -150706,-8149 -38858,-5433 -67676,-14409 -87518,-28936 -19015,-14409 -35196,-29763 -47007,-47834l-1259032 -1711268 0 1711268c0,12638 -3661,24448 -10866,36141 -7205,10866 -18897,19842 -36968,26220 -17126,6260 -40629,11693 -69448,16181 -29881,4488 -65904,6378 -110195,6378 -42401,0 -78542,-1890 -108305,-6378 -29763,-4488 -54094,-9921 -71219,-16181 -18071,-6378 -29881,-15354 -37086,-26220 -7205,-11693 -10866,-23504 -10866,-36141l0 -3285295c0,-14409 3661,-27047 10866,-36968 7205,-10866 19015,-19015 37086,-25275 17126,-6378 41456,-11811 71219,-16299 29763,-4488 65904,-6260 108305,-6260 44291,0 80314,1772 110195,6260 28818,4488 52322,9921 69448,16299 18071,6260 29763,14409 36968,25275 7205,9921 10866,22559 10866,36968l0 1520760 1211199 -1520760c10866,-16299 22559,-28936 37086,-39684 13464,-10866 30590,-19015 51377,-25275 19842,-6378 45117,-10866 74054,-14527 28818,-3543 66731,-5315 112793,-5315 45117,0 82085,1772 111022,6260 27992,4488 50550,10866 66849,17126 17126,7205 28818,16299 34251,27165 6260,9921 9921,21614 9921,34251 0,22559 -6378,46062 -17126,68621 -11811,22559 -33425,55038 -64959,95668l-1134546 1356472 1221120 1624695c30708,45944 48779,76652 54212,93778 6260,16299 9921,30708 9921,40629z"/>
+  <path id="6" class="fil1" d="M80859527 55068142c0,68621 -17126,117281 -51377,147045 -34369,28936 -74054,43346 -118344,43346l-1563161 0c0,132754 13464,251806 39684,357395 26220,106534 70392,197713 132635,273538 61416,75825 141730,133580 240114,174209 99329,40629 220272,61298 362828,61298 112793,0 213894,-8976 301412,-27992 88463,-17952 165233,-38739 229366,-61298 64015,-22559 117281,-43346 158737,-61416 41574,-18897 72282,-27992 93896,-27992 12638,0 23504,2716 33425,9094 8976,6260 17126,15354 21614,27992 5433,11693 9921,28818 12638,50550 2716,22559 3661,48661 3661,80314 0,22559 -945,42401 -2716,59526 -1772,16299 -3661,31535 -6260,44172 -2716,13582 -7323,25275 -13582,36141 -6378,9921 -13582,19842 -23504,29763 -9921,9921 -38739,25275 -85746,47007 -47834,22559 -109132,43228 -184957,64959 -75825,20787 -163462,39684 -262672,55983 -99329,17126 -204918,25275 -317711,25275 -195823,0 -366489,-27165 -513534,-82203 -147163,-54094 -270822,-135352 -370978,-242712 -100156,-108305 -175981,-242830 -226531,-405347 -51495,-161454 -76770,-350191 -76770,-565856 0,-203973 26220,-388103 79487,-551447 52322,-162517 129092,-301530 228303,-415150 99329,-113738 220272,-200429 361056,-261846 140785,-60471 298695,-91061 472905,-91061 186847,0 345702,29763 476566,90235 131809,59526 239169,140785 324089,241885 83857,101101 146100,220154 185902,357395 39684,136297 59526,282515 59526,437709l0 79487zm-438654 -129092c5433,-229248 -45117,-409717 -152478,-540581 -107478,-130982 -265389,-195941 -475739,-195941 -108305,0 -203028,19842 -284286,60471 -81140,40629 -148934,94841 -203973,162517 -55038,66731 -97439,145273 -127202,233736 -29763,89408 -47007,182359 -50550,279798l1294229 0z"/>
+  <path id="7" class="fil1" d="M82576111 56428275l-316766 876362c-10866,27992 -37913,49724 -81258,64959 -42401,15354 -108305,22559 -196768,22559 -45944,0 -83030,-1772 -111022,-6260 -27874,-4488 -49605,-12638 -64959,-22559 -14409,-10866 -22559,-25275 -24330,-42401 -1772,-18071 2716,-38858 12638,-64133l328577 -828528c-16299,-7205 -31653,-18897 -45235,-34251 -14409,-16299 -24330,-32480 -28818,-50550l-849315 -2274526c-14409,-36968 -20787,-66731 -20787,-87518 0,-21614 6378,-37913 20787,-50550 14409,-12638 36968,-20787 68621,-25275 31535,-4488 73936,-6260 127202,-6260 52322,0 93896,827 124604,3543 29763,2716 53267,8149 71337,15354 17126,6378 29763,17126 37795,29763 8149,13582 16299,31653 25275,54212l679712 1909808 8149 0 655146 -1919729c10866,-34369 23504,-55983 38858,-65078 14409,-9921 36968,-17126 66849,-21614 30590,-4488 73936,-6260 129919,-6260 49605,0 90235,1772 121888,6260 31535,4488 55038,12638 69448,25275 15354,12638 22559,28936 22559,50550 0,20787 -5433,47834 -15354,79369l-854748 2367477z"/>
+  <path id="8" class="fil1" d="M87293821 53975996c0,12638 -1772,27047 -5433,45117 -3543,17126 -9921,39684 -18897,65904l-700381 2261888c-5433,19842 -13582,36023 -25275,47834 -10866,12638 -27047,22559 -46889,28818 -20787,7205 -48779,12638 -83975,15354 -35196,2716 -79487,3661 -131809,3661 -55038,0 -101101,-1890 -138068,-5433 -36968,-3661 -65904,-9094 -88463,-15354 -21614,-7205 -37913,-17126 -48779,-29763 -10748,-11811 -17952,-27165 -23385,-45117l-500070 -1727567 -5433 -23504 -5433 23504 -462984 1727567c-4488,19842 -13464,36023 -24330,47834 -11811,12638 -28936,22559 -51495,28818 -23385,7205 -53267,12638 -89290,15354 -36141,2716 -80314,3661 -133580,3661 -54212,0 -98384,-1890 -133580,-5433 -34369,-3661 -62361,-9094 -83975,-15354 -22559,-7205 -38858,-17126 -48779,-29763 -10748,-11811 -18897,-27165 -24330,-45117l-694948 -2261888c-9094,-26220 -15354,-48779 -19015,-65904 -3543,-18071 -5433,-32480 -5433,-45117 0,-16181 3661,-28818 10866,-38739 7205,-9094 19015,-17244 36141,-23504 16181,-6378 38739,-9921 66731,-11693 28936,-1890 63188,-2716 103817,-2716 48779,0 88463,827 118226,3543 30708,2716 53267,7205 69566,13582 15354,6260 27047,15354 34251,26102 6378,11811 12638,25275 18071,41574l574005 1965791 5433 23504 5433 -23504 526172 -1965791c3661,-16299 8976,-29763 17126,-41574 7205,-10748 19842,-19842 35196,-26102 16299,-6378 37913,-10866 64959,-13582 27165,-2716 63188,-3543 107478,-3543 42401,0 76652,827 103817,3543 27992,2716 49605,7205 64959,13582 16181,6260 27047,14409 34251,25275 7205,10748 12638,22559 16299,36968l568572 1971224 5433 23504 2716 -23504 565856 -1965791c2716,-16299 9094,-29763 17244,-41574 7205,-10748 19842,-19842 36968,-26102 16181,-6378 38739,-10866 68621,-13582 28818,-2716 65786,-3543 111848,-3543 42401,0 76770,827 102045,2716 25275,1772 45944,6260 60471,13464 15354,6378 26102,14409 32480,23504 5433,8976 8976,20787 8976,36968z"/>
+  <path id="9" class="fil1" d="M89996134 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>
+  <path id="10" class="fil1" d="M92034208 54135796c0,38739 -945,71219 -2716,97439 -1890,26220 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11693 -32480,11693 -14527,0 -31653,-3543 -51495,-11693 -20787,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54094,-15354 -85746,-22559 -31535,-7205 -65904,-10866 -102872,-10866 -44172,0 -87518,9094 -129919,26220 -41574,18071 -86691,46889 -132754,88463 -46889,40629 -95668,94723 -147045,161572 -50550,67676 -107478,149761 -168776,247318l0 1565877c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 346529c64959,-95668 126258,-173265 183186,-233736 57755,-59526 111848,-107360 162399,-141730 51495,-34251 102045,-57755 151651,-71219 50550,-13582 101101,-19842 152596,-19842 22559,0 48661,827 77597,3543 28818,2716 59526,8149 91179,14409 31535,7323 60471,15354 85746,24448 25275,8976 43346,17126 54094,26102 10866,9094 18071,17244 20787,25275 3661,8149 7205,18071 9921,29881 2716,12638 4488,30590 5433,54094 945,24330 945,55983 945,96612z"/>
+  <path id="11" class="fil1" d="M94492746 56362370c0,14409 -2716,26220 -9094,36968 -6260,10866 -17126,19015 -31535,25275 -15354,6378 -35196,10866 -59526,14527 -25275,3543 -55156,5433 -90353,5433 -36968,0 -67676,-1890 -92006,-5433 -25275,-3661 -45117,-8149 -61416,-14527 -15354,-6260 -27047,-14409 -34251,-25275 -6378,-10748 -9921,-23385 -9921,-36968l0 -316766c-125431,136297 -255468,241885 -389875,317711 -135470,75825 -282515,113738 -443260,113738 -174091,0 -323026,-34369 -445858,-102045 -123659,-67676 -223815,-159682 -300467,-275310 -75825,-115510 -131809,-250862 -167005,-407001 -35196,-156139 -53267,-320427 -53267,-492865 0,-204799 21614,-389875 65904,-554163 44172,-165115 109250,-305900 195823,-422355 85746,-116455 193107,-205744 321372,-268105 127202,-62243 274365,-93778 442197,-93778 139013,0 266216,30590 381844,91061 115510,61416 229248,150824 342041,269050l0 -1380093c0,-12638 2716,-24330 8976,-36023 6378,-11811 18071,-19842 36141,-26220 17126,-6260 39684,-11693 66731,-16181 27992,-4606 62361,-6378 104762,-6378 44172,0 80314,1772 108305,6378 27992,4488 50550,9921 65904,16181 16181,6378 27992,14409 36023,26220 8149,11693 11811,23385 11811,36023l0 3520921zm-438654 -1676072c-117399,-147045 -231019,-259011 -341214,-335781 -110077,-76652 -224760,-115510 -343813,-115510 -111022,0 -204918,26220 -282515,79487 -77597,53267 -139958,122714 -188619,209406 -47834,85746 -83030,184131 -104762,293262 -22559,109250 -33425,220272 -33425,333065 0,120116 9094,237397 27992,351962 18071,114683 50550,216728 95668,306018 46062,89408 106534,160627 182359,214839 74881,53267 170548,80314 284286,80314 57755,0 113738,-8149 167950,-23504 53149,-16181 108305,-42401 164170,-79369 55983,-37086 115628,-84920 176926,-144446 61416,-58700 126376,-130864 194996,-217555l0 -952188z"/>
+  <path id="12" class="fil1" d="M97028882 56359654c0,14409 -3661,27047 -10866,37086 -7205,10748 -18897,18897 -36968,25275 -17126,6260 -40629,11693 -69448,16181 -29881,4488 -65904,6378 -110195,6378 -42401,0 -78542,-1890 -108305,-6378 -29763,-4488 -54094,-9921 -71219,-16181 -18071,-6378 -29881,-14527 -37086,-25275 -7205,-10039 -10866,-22677 -10866,-37086l0 -3285295c0,-14409 3661,-27047 11811,-36968 8149,-10866 21614,-19015 39684,-25275 19015,-6378 42401,-11811 71337,-16299 28818,-4488 64015,-6260 104644,-6260 44291,0 80314,1772 110195,6260 28818,4488 52322,9921 69448,16299 18071,6260 29763,14409 36968,25275 7205,9921 10866,22559 10866,36968l0 3285295z"/>
+  <path id="13" class="fil1" d="M99882846 56362370c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34369,25275 -16181,6260 -37913,11693 -66731,15354 -27992,3543 -63188,5433 -105589,5433 -45117,0 -81258,-1890 -109250,-5433 -28818,-3661 -50550,-9094 -66731,-15354 -16299,-7205 -27165,-16299 -34369,-25275 -7205,-9921 -10748,-21732 -10748,-36141l0 -1394384c0,-135470 -10866,-245547 -31653,-327632 -20787,-83148 -51377,-154367 -92006,-214839 -40629,-59645 -92124,-105589 -156139,-137242 -64133,-31535 -138186,-47834 -222043,-47834 -109250,0 -217555,38858 -325860,116455 -109250,77597 -222988,191335 -342041,341214l0 1664261c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 314994c133580,-150706 266216,-260901 399796,-330348 132635,-69448 266216,-104644 401686,-104644 157911,0 291491,27047 399796,80314 108305,54094 195823,126376 262672,215665 66731,90235 114565,195823 143501,316766 28818,120943 43346,266334 43346,435110l0 1453084z"/>
+  <path id="14" class="fil1" d="M102594962 53975996c0,7205 0,14409 -827,22559 -945,8149 -2716,16299 -3661,25275 -1772,9094 -4488,18071 -7205,28936 -2716,10748 -5433,21614 -9094,34251l-811403 2261888c-7205,19842 -17126,36023 -27874,47834 -11811,12638 -28936,22559 -51495,28818 -23504,7205 -52322,12638 -87518,15354 -35196,2716 -79487,3661 -132754,3661 -52322,0 -96494,-1890 -131691,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22559,-7205 -39802,-17126 -51495,-29763 -12638,-11811 -22559,-27165 -29763,-45117l-808686 -2261888c-7205,-20787 -12638,-39684 -17126,-55038 -4606,-16299 -7323,-27992 -8149,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14409 3661,-26102 9921,-36968 7205,-10866 19015,-19015 36141,-25275 16181,-6378 38858,-9921 65904,-11693 27047,-1890 61298,-2716 101927,-2716 51495,0 92124,827 122832,3543 30590,2716 55038,8149 71219,15354 17126,6378 29763,15354 37086,26220 8031,10748 15354,23385 22559,39684l671445 1963075 10866 31535 8149 -31535 663295 -1963075c3661,-16299 9921,-28936 19015,-39684 8149,-10866 21614,-19842 37913,-26220 17126,-7205 39684,-12638 68621,-15354 29763,-2716 67676,-3543 115510,-3543 40629,0 73936,827 100156,2716 26220,1772 46889,6260 62243,13464 15354,6378 25275,15354 31653,24330 6260,10039 8976,21732 8976,36141z"/>
+  <path id="15" class="fil1" d="M105009446 55068142c0,68621 -17126,117281 -51377,147045 -34369,28936 -74054,43346 -118344,43346l-1563161 0c0,132754 13464,251806 39684,357395 26220,106534 70392,197713 132635,273538 61416,75825 141730,133580 240114,174209 99329,40629 220272,61298 362828,61298 112793,0 213894,-8976 301412,-27992 88463,-17952 165233,-38739 229366,-61298 64015,-22559 117281,-43346 158737,-61416 41574,-18897 72282,-27992 93896,-27992 12638,0 23504,2716 33425,9094 8976,6260 17126,15354 21614,27992 5433,11693 9921,28818 12638,50550 2716,22559 3661,48661 3661,80314 0,22559 -945,42401 -2716,59526 -1772,16299 -3661,31535 -6260,44172 -2716,13582 -7323,25275 -13582,36141 -6378,9921 -13582,19842 -23504,29763 -9921,9921 -38739,25275 -85746,47007 -47834,22559 -109132,43228 -184957,64959 -75825,20787 -163462,39684 -262672,55983 -99329,17126 -204918,25275 -317711,25275 -195823,0 -366489,-27165 -513534,-82203 -147163,-54094 -270822,-135352 -370978,-242712 -100156,-108305 -175981,-242830 -226531,-405347 -51495,-161454 -76770,-350191 -76770,-565856 0,-203973 26220,-388103 79487,-551447 52322,-162517 129092,-301530 228303,-415150 99329,-113738 220272,-200429 361056,-261846 140785,-60471 298695,-91061 472905,-91061 186847,0 345702,29763 476566,90235 131809,59526 239169,140785 324089,241885 83857,101101 146100,220154 185902,357395 39684,136297 59526,282515 59526,437709l0 79487zm-438654 -129092c5433,-229248 -45117,-409717 -152478,-540581 -107478,-130982 -265389,-195941 -475739,-195941 -108305,0 -203028,19842 -284286,60471 -81140,40629 -148934,94841 -203973,162517 -55038,66731 -97439,145273 -127202,233736 -29763,89408 -47007,182359 -50550,279798l1294229 0z"/>
+  <path id="16" class="fil1" d="M107725342 56362370c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34369,25275 -16181,6260 -37913,11693 -66731,15354 -27992,3543 -63188,5433 -105589,5433 -45117,0 -81258,-1890 -109250,-5433 -28818,-3661 -50550,-9094 -66731,-15354 -16299,-7205 -27165,-16299 -34369,-25275 -7205,-9921 -10748,-21732 -10748,-36141l0 -1394384c0,-135470 -10866,-245547 -31653,-327632 -20787,-83148 -51377,-154367 -92006,-214839 -40629,-59645 -92124,-105589 -156139,-137242 -64133,-31535 -138186,-47834 -222043,-47834 -109250,0 -217555,38858 -325860,116455 -109250,77597 -222988,191335 -342041,341214l0 1664261c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 314994c133580,-150706 266216,-260901 399796,-330348 132635,-69448 266216,-104644 401686,-104644 157911,0 291491,27047 399796,80314 108305,54094 195823,126376 262672,215665 66731,90235 114565,195823 143501,316766 28818,120943 43346,266334 43346,435110l0 1453084z"/>
+  <path id="17" class="fil1" d="M109708259 56185444c0,51495 -3661,92124 -10866,121888 -6260,29763 -17126,52322 -31535,65904 -13582,14409 -35196,27992 -63188,39684 -27992,12638 -60471,22559 -96612,30708 -36141,8149 -74054,14409 -114565,19842 -40629,5433 -80432,8149 -120943,8149 -123659,0 -229248,-16299 -316884,-48779 -87518,-32480 -159682,-82085 -216610,-147989 -55983,-65904 -96494,-149879 -122714,-250980 -25275,-100982 -37913,-220154 -37913,-357395l0 -1388125 -334836 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-27992 -23385,-74054 -23385,-138068 0,-33425 1772,-61416 6260,-83975 4488,-23504 10866,-42401 17126,-57755 7205,-14409 17126,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332120 0 0 -565029c0,-12638 2716,-24330 8976,-34251 6378,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27874,-3661 63188,-5433 106415,-5433 44291,0 80314,1772 108305,5433 28936,3543 50550,8976 66849,17126 16181,8149 27047,17126 34251,27992 7205,9921 10866,21614 10866,34251l0 565029 606485 0c14527,0 26220,2716 37086,9094 9921,6260 19842,17126 27047,31535 8149,15354 13464,34251 17126,57755 3661,22559 5433,50550 5433,83975 0,64015 -8149,110077 -23504,138068 -16181,27992 -36968,42401 -63188,42401l-606485 0 0 1324110c0,163344 24330,287003 72164,370033 47834,83975 134525,125431 259011,125431 39802,0 75825,-3543 107478,-11693 31535,-8149 59526,-16299 83975,-25275 24330,-9094 45117,-17126 63070,-25275 17244,-8149 33425,-11811 47007,-11811 8976,0 17126,1890 25275,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28818 11693,50550 3661,20787 5433,47834 5433,79369z"/>
+  <path id="18" class="fil1" d="M112443879 55143967c0,194052 -25275,372749 -76770,536093 -50432,162399 -127202,303302 -228303,421528 -101101,118226 -228303,210232 -379954,276137 -152596,65904 -329404,99329 -529833,99329 -195823,0 -366371,-28936 -511762,-87636 -145273,-57755 -266216,-142556 -362828,-253578 -96494,-111022 -168776,-246374 -216610,-404284 -47834,-158855 -71337,-338498 -71337,-539754 0,-194052 25275,-372749 74999,-535266 50550,-163344 126376,-304128 227358,-422355 101101,-118226 227476,-209406 379127,-275310 151651,-64959 328577,-97439 530660,-97439 195941,0 366489,28818 511762,87518 145391,57755 266334,142556 362828,253578 96612,111022 169721,245547 218500,404402 47834,158855 72164,337553 72164,537038zm-454834 27992c0,-129092 -11811,-250980 -36141,-365545 -23504,-114683 -63188,-214839 -118226,-301530 -54212,-86573 -129092,-155194 -222988,-204799 -92951,-50550 -210232,-75825 -350191,-75825 -129092,0 -239996,22559 -333065,68503 -92951,46062 -168776,111022 -229248,194996 -60471,83975 -104644,183186 -133580,297869 -29763,114565 -44172,240114 -44172,375466 0,130864 11693,253578 36141,368261 23385,114565 63188,214721 119053,300467 55983,84920 130864,153541 223815,203146 93896,50550 211295,75825 351135,75825 127321,0 237397,-22559 331293,-68621 93778,-46062 170548,-110077 231019,-193107 60471,-83030 104644,-182359 132635,-297042 27992,-114565 42519,-240941 42519,-378064z"/>
+  <path id="19" class="fil1" d="M114481953 54135796c0,38739 -945,71219 -2716,97439 -1890,26220 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11693 -32480,11693 -14527,0 -31653,-3543 -51495,-11693 -20787,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54094,-15354 -85746,-22559 -31535,-7205 -65904,-10866 -102872,-10866 -44172,0 -87518,9094 -129919,26220 -41574,18071 -86691,46889 -132754,88463 -46889,40629 -95668,94723 -147045,161572 -50550,67676 -107478,149761 -168776,247318l0 1565877c0,14409 -3661,26220 -10866,36141 -7205,8976 -18071,18071 -34251,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64015,5433 -108305,5433 -43346,0 -78542,-1890 -106534,-5433 -28818,-3661 -51377,-9094 -67676,-15354 -17126,-7205 -28818,-16299 -35196,-25275 -6260,-9921 -8976,-21732 -8976,-36141l0 -2380941c0,-14409 2716,-26220 8149,-36141 5315,-8976 15354,-18071 31535,-26102 16299,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38739,0 71219,827 96494,3543 26220,2716 46062,8149 60471,16299 13582,8031 24448,17126 30708,26102 5433,9921 9094,21732 9094,36141l0 346529c64959,-95668 126258,-173265 183186,-233736 57755,-59526 111848,-107360 162399,-141730 51495,-34251 102045,-57755 151651,-71219 50550,-13582 101101,-19842 152596,-19842 22559,0 48661,827 77597,3543 28818,2716 59526,8149 91179,14409 31535,7323 60471,15354 85746,24448 25275,8976 43346,17126 54094,26102 10866,9094 18071,17244 20787,25275 3661,8149 7205,18071 9921,29881 2716,12638 4488,30590 5433,54094 945,24330 945,55983 945,96612z"/>
+  <path id="20" class="fil1" d="M116086570 56428275l-316766 876362c-10866,27992 -37913,49724 -81258,64959 -42401,15354 -108305,22559 -196768,22559 -45944,0 -83030,-1772 -111022,-6260 -27874,-4488 -49605,-12638 -64959,-22559 -14409,-10866 -22559,-25275 -24330,-42401 -1772,-18071 2716,-38858 12638,-64133l328577 -828528c-16299,-7205 -31653,-18897 -45235,-34251 -14409,-16299 -24330,-32480 -28818,-50550l-849315 -2274526c-14409,-36968 -20787,-66731 -20787,-87518 0,-21614 6378,-37913 20787,-50550 14409,-12638 36968,-20787 68621,-25275 31535,-4488 73936,-6260 127202,-6260 52322,0 93896,827 124604,3543 29763,2716 53267,8149 71337,15354 17126,6378 29763,17126 37795,29763 8149,13582 16299,31653 25275,54212l679712 1909808 8149 0 655146 -1919729c10866,-34369 23504,-55983 38858,-65078 14409,-9921 36968,-17126 66849,-21614 30590,-4488 73936,-6260 129919,-6260 49605,0 90235,1772 121888,6260 31535,4488 55038,12638 69448,25275 15354,12638 22559,28936 22559,50550 0,20787 -5433,47834 -15354,79369l-854748 2367477z"/>
+  <polygon class="fil3" points="21934802,43025248 141045293,43025248 141045293,31680138 21934802,31680138 "/>
+  <path class="fil1" d="M50514484 36008446c0,33425 -1772,62361 -5433,86691 -3543,24448 -8976,44291 -17126,59645 -8149,14527 -17126,26220 -28936,32598 -11693,7205 -24330,10748 -37913,10748l-962109 0 0 2972309c0,14409 -3661,26102 -10866,36968 -7205,10866 -19015,19015 -37086,25275 -17126,6378 -40629,11811 -69566,16299 -29763,4488 -65904,6378 -110195,6378 -42401,0 -78542,-1890 -108423,-6378 -29763,-4488 -54212,-9921 -71337,-16299 -18071,-6260 -29763,-14409 -37086,-25275 -7205,-10866 -10748,-22559 -10748,-36968l0 -2972309 -962227 0c-13464,0 -26102,-3543 -37913,-10748 -11693,-6378 -20787,-18071 -27992,-32598 -6378,-15354 -12638,-35196 -17126,-59645 -4606,-24330 -6378,-53267 -6378,-86691 0,-33425 1772,-63188 6378,-88463 4488,-25393 10748,-46180 17126,-61534 7205,-16181 16299,-27992 27992,-34251 11811,-7205 24448,-10866 37913,-10866l2379642 0c13582,0 26220,3661 37913,10866 11811,6260 20787,18071 28936,34251 8149,15354 13582,36141 17126,61534 3661,25275 5433,55038 5433,88463z"/>
+  <path id="1" class="fil1" d="M52506495 37877625c0,68621 -17126,117399 -51495,147281 -34251,28936 -74054,43346 -118344,43346l-1564696 0c0,132754 13582,252043 39802,357749 26220,106534 70511,197831 132754,273775 61416,75825 141848,133698 240350,174328 99329,40629 220390,61416 363182,61416 112911,0 214130,-9094 301766,-27992 88463,-18071 165233,-38858 229366,-61416 64251,-22677 117518,-43346 159092,-61416 41574,-19015 72282,-28110 93896,-28110 12638,0 23504,2716 33425,9094 9094,6260 17126,15354 21732,27992 5433,11693 9921,28936 12638,50550 2716,22677 3543,48779 3543,80432 0,22559 -827,42519 -2716,59645 -1772,16299 -3543,31653 -6260,44291 -2716,13582 -7205,25275 -13582,36141 -6260,9921 -13582,19842 -23504,29763 -9921,9921 -38858,25275 -85746,47007 -47952,22559 -109368,43346 -185194,65078 -75944,20787 -163580,39684 -262909,55983 -99447,17126 -205154,25275 -318065,25275 -196059,0 -366726,-27047 -514006,-82203 -147281,-54212 -271058,-135470 -371332,-243066 -100274,-108305 -176099,-242948 -226768,-405583 -51495,-161690 -76770,-350545 -76770,-566446 0,-204209 26220,-388458 79487,-551919 52440,-162635 129210,-301766 228657,-415622 99329,-113856 220390,-200548 361293,-261964 140903,-60589 299050,-91298 473377,-91298 187083,0 346057,29881 477039,90353 131927,59645 239405,140903 324325,242122 83975,101219 146336,220390 186138,357749 39684,136415 59526,282751 59526,438181l0 79487zm-439008 -129210c5433,-229484 -45117,-410071 -152714,-541171 -107478,-130982 -265507,-195941 -476094,-195941 -108423,0 -203264,19842 -284522,60471 -81376,40629 -149052,94841 -204209,162635 -55038,66849 -97557,145391 -127321,233972 -29881,89408 -47007,182477 -50668,280034l1295528 0z"/>
+  <path id="2" class="fil1" d="M54672007 38522613c0,122006 -22559,230429 -67794,326215 -45117,94841 -108423,175272 -191453,240232 -83148,65078 -181650,114801 -296333,148226 -114801,33425 -241295,50550 -378536,50550 -84920,0 -165351,-6260 -242122,-19842 -76770,-12638 -145509,-28936 -206925,-49724 -60471,-19842 -111966,-40629 -154485,-62361 -42401,-21614 -73109,-41574 -92124,-58700 -19842,-17126 -34369,-42401 -42519,-74054 -8976,-31653 -13464,-74999 -13464,-130155 0,-33425 1772,-61416 5433,-83975 3543,-23504 8031,-41574 12638,-55983 5433,-14527 13464,-24448 22559,-30708 9921,-6378 20787,-9094 33425,-9094 19015,0 47834,11811 85865,36141 37913,23504 84920,49724 139958,77715 55156,27992 121061,54212 197004,77715 75825,24330 162635,36141 261019,36141 74054,0 141021,-8149 200548,-24448 60589,-15354 112085,-38858 156375,-70392 44172,-30708 77597,-70511 102045,-118344 23504,-47952 35196,-104880 35196,-170784 0,-66849 -17126,-123777 -51495,-168895 -34251,-46062 -79487,-86809 -135470,-122006 -56928,-35196 -120116,-66849 -190626,-93896 -70511,-27165 -142793,-56101 -217673,-85865 -74172,-30708 -147281,-64133 -218618,-102045 -71455,-38031 -134643,-84093 -191571,-139131 -55983,-55156 -101219,-120234 -135470,-196059 -34369,-75944 -51495,-166296 -51495,-272830 0,-93069 18071,-182477 54212,-268342 36023,-85865 90235,-160863 162517,-224996 73227,-64133 163580,-116455 272003,-155312 108423,-38858 234799,-57873 380308,-57873 63188,0 126494,5433 190626,16299 63188,10866 120116,25275 171611,41574 51495,16181 94841,34251 130982,53267 36141,19842 64133,36141 82203,51495 19015,14409 30708,27165 37086,37086 6260,10748 10866,22559 13582,36141 2716,12638 5433,28818 8149,47834 2598,19842 3543,43346 3543,71337 0,29881 -945,56101 -3543,77715 -2716,21732 -7323,39802 -13582,53267 -6378,14527 -13582,24448 -22559,30708 -9094,6378 -19015,9094 -28936,9094 -16299,0 -38858,-9921 -69566,-29763 -29881,-19015 -68621,-39802 -116573,-62361 -47834,-22559 -103935,-43346 -168068,-62361 -64133,-19842 -138186,-29763 -221335,-29763 -74054,0 -139958,8031 -195941,25275 -56928,16181 -102990,39684 -139131,70392 -36141,30708 -64133,66849 -82203,109368 -19015,41574 -28110,87636 -28110,136415 0,68621 18071,126494 53385,173383 35196,47007 80314,87636 137242,122951 56101,35196 121061,66849 193343,95786 72282,27992 145509,56810 220508,86691 74881,30708 149052,64133 222161,101219 73227,36968 138305,82203 194288,134525 56928,53385 102045,116573 136415,190626 34251,74054 51495,162635 51495,264680z"/>
+  <path id="3" class="fil1" d="M56470675 38995990c0,51495 -3661,92242 -10866,122006 -6260,29763 -17126,52440 -31653,65904 -13464,14527 -35196,28110 -63188,39802 -27992,12638 -60589,22559 -96612,30708 -36141,8149 -74172,14409 -114801,19842 -40629,5433 -80432,8149 -121061,8149 -123777,0 -229484,-16299 -317120,-48779 -87636,-32480 -159918,-82203 -216728,-148108 -56101,-66022 -96731,-149997 -122951,-251216 -25275,-101101 -37913,-220390 -37913,-357749l0 -1389424 -335191 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-28110 -23504,-74172 -23504,-138305 0,-33425 1890,-61416 6378,-83975 4488,-23504 10866,-42519 17126,-57873 7205,-14409 17244,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332474 0 0 -565502c0,-12638 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27992,-3661 63188,-5433 106534,-5433 44291,0 80432,1772 108423,5433 28936,3543 50550,8976 66849,17126 16299,8149 27047,17126 34369,27992 7205,9921 10748,21732 10748,34369l0 565502 607194 0c14409,0 26102,2716 36968,9094 9921,6260 19842,17126 27165,31535 8031,15354 13464,34369 17126,57873 3661,22559 5433,50550 5433,83975 0,64133 -8149,110195 -23504,138305 -16299,27992 -37086,42401 -63188,42401l-607194 0 0 1325291c0,163580 24448,287357 72282,370387 47952,84093 134643,125549 259365,125549 39684,0 75825,-3543 107478,-11693 31653,-8149 59645,-16299 83975,-25275 24448,-9094 45235,-17126 63306,-25275 17126,-8149 33425,-11811 46889,-11811 9094,0 17244,1890 25393,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28936 11693,50550 3661,20787 5433,47952 5433,79487z"/>
+  <path id="4" class="fil1" d="M58546662 38522613c0,122006 -22559,230429 -67794,326215 -45117,94841 -108423,175272 -191453,240232 -83148,65078 -181650,114801 -296333,148226 -114801,33425 -241295,50550 -378536,50550 -84920,0 -165351,-6260 -242122,-19842 -76770,-12638 -145509,-28936 -206925,-49724 -60471,-19842 -111966,-40629 -154485,-62361 -42401,-21614 -73109,-41574 -92124,-58700 -19842,-17126 -34369,-42401 -42519,-74054 -8976,-31653 -13464,-74999 -13464,-130155 0,-33425 1772,-61416 5433,-83975 3543,-23504 8031,-41574 12638,-55983 5433,-14527 13464,-24448 22559,-30708 9921,-6378 20787,-9094 33425,-9094 19015,0 47834,11811 85865,36141 37913,23504 84920,49724 139958,77715 55156,27992 121061,54212 197004,77715 75825,24330 162635,36141 261019,36141 74054,0 141021,-8149 200548,-24448 60589,-15354 112085,-38858 156375,-70392 44172,-30708 77597,-70511 102045,-118344 23504,-47952 35196,-104880 35196,-170784 0,-66849 -17126,-123777 -51495,-168895 -34251,-46062 -79487,-86809 -135470,-122006 -56928,-35196 -120116,-66849 -190626,-93896 -70511,-27165 -142793,-56101 -217673,-85865 -74172,-30708 -147281,-64133 -218618,-102045 -71455,-38031 -134643,-84093 -191571,-139131 -55983,-55156 -101219,-120234 -135470,-196059 -34369,-75944 -51495,-166296 -51495,-272830 0,-93069 18071,-182477 54212,-268342 36023,-85865 90235,-160863 162517,-224996 73227,-64133 163580,-116455 272003,-155312 108423,-38858 234799,-57873 380308,-57873 63188,0 126494,5433 190626,16299 63188,10866 120116,25275 171611,41574 51495,16181 94841,34251 130982,53267 36141,19842 64133,36141 82203,51495 19015,14409 30708,27165 37086,37086 6260,10748 10866,22559 13582,36141 2716,12638 5433,28818 8149,47834 2598,19842 3543,43346 3543,71337 0,29881 -945,56101 -3543,77715 -2716,21732 -7323,39802 -13582,53267 -6378,14527 -13582,24448 -22559,30708 -9094,6378 -19015,9094 -28936,9094 -16299,0 -38858,-9921 -69566,-29763 -29881,-19015 -68621,-39802 -116573,-62361 -47834,-22559 -103935,-43346 -168068,-62361 -64133,-19842 -138186,-29763 -221335,-29763 -74054,0 -139958,8031 -195941,25275 -56928,16181 -102990,39684 -139131,70392 -36141,30708 -64133,66849 -82203,109368 -19015,41574 -28110,87636 -28110,136415 0,68621 18071,126494 53385,173383 35196,47007 80314,87636 137242,122951 56101,35196 121061,66849 193343,95786 72282,27992 145509,56810 220508,86691 74881,30708 149052,64133 222161,101219 73227,36968 138305,82203 194288,134525 56928,53385 102045,116573 136415,190626 34251,74054 51495,162635 51495,264680z"/>
+  <path id="5" class="fil1" d="M61300234 35591052c-168068,355033 -292790,718215 -374993,1091319 -82203,373104 -122832,748097 -122832,1125688 0,379481 41574,755301 125549,1127460 84093,372159 205981,737231 366844,1094980 8976,21614 13582,39684 14409,54094 945,15354 -5433,27165 -17126,37086 -12638,9921 -31653,17126 -56928,21732 -26220,4488 -60589,6260 -104762,6260 -31653,0 -58700,-827 -82203,-2716 -22677,-1772 -42519,-5433 -59645,-10866 -16299,-5315 -29881,-10748 -40629,-18071 -10866,-7205 -19015,-15354 -23504,-23385 -95786,-180705 -179761,-362356 -252043,-546604 -72282,-184249 -132872,-372159 -182477,-562785 -49724,-189800 -86809,-383143 -111140,-577312 -24448,-195115 -37086,-392119 -37086,-591722 0,-199721 13582,-395662 40629,-589950 27992,-194288 66849,-386686 116573,-578139 50550,-191571 112085,-379481 184249,-564675 72282,-185194 153659,-368615 244011,-550148 827,-7205 6260,-13582 14409,-19015 7205,-5433 19015,-10866 32480,-15354 14527,-5433 33425,-9921 58818,-12638 24330,-2716 55983,-3661 94841,-3661 40629,0 73109,2716 98384,8149 24448,5433 43464,11811 57873,20787 14409,9094 21732,20787 23504,34369 1772,14409 -945,29763 -7205,45117z"/>
+  <path id="6" class="fil1" d="M63990619 36784534c0,7205 0,14409 -945,22559 -827,8149 -2716,16299 -3543,25275 -1890,9094 -4606,18071 -7323,28936 -2598,10866 -5315,21614 -8976,34251l-812111 2264014c-7323,19842 -17244,36141 -28110,47834 -11693,12638 -28818,22677 -51495,28936 -23385,7205 -52322,12638 -87636,15354 -35196,2716 -79487,3661 -132754,3661 -52440,0 -96612,-1890 -131927,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22677,-7205 -39802,-17244 -51495,-29881 -12638,-11693 -22677,-27047 -29881,-45117l-809395 -2264014c-7205,-20669 -12638,-39684 -17244,-55038 -4488,-16299 -7205,-27992 -8031,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14527 3543,-26220 9921,-37086 7205,-10866 19015,-19015 36141,-25275 16299,-6378 38858,-9921 65904,-11811 27165,-1772 61534,-2598 102164,-2598 51495,0 92124,827 122832,3543 30708,2716 55156,8149 71337,15354 17244,6378 29881,15354 37086,26220 8149,10866 15354,23504 22559,39802l672153 1964846 10866 31653 8149 -31653 664004 -1964846c3543,-16299 9921,-28936 18897,-39802 8149,-10866 21732,-19842 37913,-26220 17244,-7205 39802,-12638 68739,-15354 29763,-2716 67676,-3543 115628,-3543 40629,0 74054,827 100274,2598 26220,1890 47007,6378 62361,13582 15354,6378 25275,15354 31535,24448 6378,9921 9094,21614 9094,36141z"/>
+  <path id="7" class="fil1" d="M66677342 37942702c0,208697 -22559,395662 -67676,561840 -44291,165351 -110313,306254 -197949,421882 -86691,115746 -195115,205154 -323380,267515 -128265,62243 -275546,93896 -440898,93896 -70392,0 -135470,-7205 -195115,-20787 -60471,-14409 -118344,-36141 -176099,-66849 -56928,-29763 -113856,-67794 -169839,-113856 -56928,-45117 -116573,-99329 -179879,-160745l0 1193364c0,14527 -3543,26220 -10748,37086 -7323,10866 -18071,19842 -34369,27047 -16299,6378 -37913,11811 -66849,15354 -27992,3661 -64133,5433 -108423,5433 -43346,0 -78542,-1772 -106534,-5433 -28936,-3543 -51495,-8976 -67794,-15354 -17126,-7205 -28936,-16181 -35196,-27047 -6378,-10866 -9094,-22559 -9094,-37086l0 -3328995c0,-16299 2716,-28936 8149,-38858 5433,-9094 16299,-18071 31653,-24448 16181,-7205 36141,-12638 61416,-15354 24330,-2716 55038,-3543 90353,-3543 36968,0 67676,827 92124,3543 23504,2716 43346,8149 59645,14409 16181,7323 27047,16299 33425,25393 6260,9921 8976,22559 8976,38858l0 318892c72282,-74172 141848,-138305 208697,-193343 66849,-54212 134643,-99447 202319,-135588 67794,-36141 137360,-64133 208697,-82203 71455,-18897 146454,-27992 225941,-27992 172556,0 318892,33425 440779,100274 121061,67794 220508,159092 297278,275546 76770,116573 132754,252043 168068,406528 35196,154485 52322,318065 52322,490621zm-455307 50550c0,-122006 -8976,-240350 -27992,-354088 -18071,-113856 -50550,-215075 -94841,-303538 -45235,-88581 -105707,-159092 -181650,-212358 -75825,-53267 -170666,-79487 -283578,-79487 -56928,0 -112085,8149 -167123,25275 -54212,17126 -110313,43346 -167123,79487 -56101,36141 -115746,84093 -177162,143619 -61416,59645 -127321,132872 -196059,219563l0 947699c120234,147281 234090,259247 341569,337907 108423,77597 221335,116455 339679,116455 109250,0 203264,-26102 281806,-79487 78660,-53267 141848,-123777 190626,-212240 48779,-88581 84093,-187083 107478,-297278 22677,-109250 34369,-220390 34369,-331529z"/>
+  <path id="8" class="fil1" d="M69524928 37942702c0,208697 -22559,395662 -67676,561840 -44291,165351 -110313,306254 -197949,421882 -86691,115746 -195115,205154 -323380,267515 -128265,62243 -275546,93896 -440898,93896 -70392,0 -135470,-7205 -195115,-20787 -60471,-14409 -118344,-36141 -176099,-66849 -56928,-29763 -113856,-67794 -169839,-113856 -56928,-45117 -116573,-99329 -179879,-160745l0 1193364c0,14527 -3543,26220 -10748,37086 -7323,10866 -18071,19842 -34369,27047 -16299,6378 -37913,11811 -66849,15354 -27992,3661 -64133,5433 -108423,5433 -43346,0 -78542,-1772 -106534,-5433 -28936,-3543 -51495,-8976 -67794,-15354 -17126,-7205 -28936,-16181 -35196,-27047 -6378,-10866 -9094,-22559 -9094,-37086l0 -3328995c0,-16299 2716,-28936 8149,-38858 5433,-9094 16299,-18071 31653,-24448 16181,-7205 36141,-12638 61416,-15354 24330,-2716 55038,-3543 90353,-3543 36968,0 67676,827 92124,3543 23504,2716 43346,8149 59645,14409 16181,7323 27047,16299 33425,25393 6260,9921 8976,22559 8976,38858l0 318892c72282,-74172 141848,-138305 208697,-193343 66849,-54212 134643,-99447 202319,-135588 67794,-36141 137360,-64133 208697,-82203 71455,-18897 146454,-27992 225941,-27992 172556,0 318892,33425 440779,100274 121061,67794 220508,159092 297278,275546 76770,116573 132754,252043 168068,406528 35196,154485 52322,318065 52322,490621zm-455307 50550c0,-122006 -8976,-240350 -27992,-354088 -18071,-113856 -50550,-215075 -94841,-303538 -45235,-88581 -105707,-159092 -181650,-212358 -75825,-53267 -170666,-79487 -283578,-79487 -56928,0 -112085,8149 -167123,25275 -54212,17126 -110313,43346 -167123,79487 -56101,36141 -115746,84093 -177162,143619 -61416,59645 -127321,132872 -196059,219563l0 947699c120234,147281 234090,259247 341569,337907 108423,77597 221335,116455 339679,116455 109250,0 203264,-26102 281806,-79487 78660,-53267 141848,-123777 190626,-212240 48779,-88581 84093,-187083 107478,-297278 22677,-109250 34369,-220390 34369,-331529z"/>
+  <path class="fil1" d="M71247889 37901128c0,69566 -8149,117399 -23504,143619 -16181,26220 -38858,39802 -69566,39802l-1106673 0c-32480,0 -55983,-13582 -72282,-40747 -15354,-27992 -23504,-74881 -23504,-142675 0,-66849 8149,-113856 23504,-140076 16299,-26220 39802,-39684 72282,-39684l1106673 0c14527,0 27165,2716 38858,8149 11811,5315 20787,15354 28936,30708 8149,14409 14409,33425 19015,56810 4488,22677 6260,50668 6260,84093z"/>
+  <path class="fil1" d="M73777647 36784534c0,7205 0,14409 -945,22559 -827,8149 -2716,16299 -3543,25275 -1890,9094 -4606,18071 -7323,28936 -2598,10866 -5315,21614 -8976,34251l-812111 2264014c-7323,19842 -17244,36141 -28110,47834 -11693,12638 -28818,22677 -51495,28936 -23385,7205 -52322,12638 -87636,15354 -35196,2716 -79487,3661 -132754,3661 -52440,0 -96612,-1890 -131927,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22677,-7205 -39802,-17244 -51495,-29881 -12638,-11693 -22677,-27047 -29881,-45117l-809395 -2264014c-7205,-20669 -12638,-39684 -17244,-55038 -4488,-16299 -7205,-27992 -8031,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14527 3543,-26220 9921,-37086 7205,-10866 19015,-19015 36141,-25275 16299,-6378 38858,-9921 65904,-11811 27165,-1772 61534,-2598 102164,-2598 51495,0 92124,827 122832,3543 30708,2716 55156,8149 71337,15354 17244,6378 29881,15354 37086,26220 8149,10866 15354,23504 22559,39802l672153 1964846 10866 31653 8149 -31653 664004 -1964846c3543,-16299 9921,-28936 18897,-39802 8149,-10866 21732,-19842 37913,-26220 17244,-7205 39802,-12638 68739,-15354 29763,-2716 67676,-3543 115628,-3543 40629,0 74054,827 100274,2598 26220,1890 47007,6378 62361,13582 15354,6378 25275,15354 31535,24448 6378,9921 9094,21614 9094,36141z"/>
+  <path id="1" class="fil1" d="M76248351 37877625c0,68621 -17126,117399 -51495,147281 -34251,28936 -74054,43346 -118344,43346l-1564696 0c0,132754 13582,252043 39802,357749 26220,106534 70511,197831 132754,273775 61416,75825 141848,133698 240350,174328 99329,40629 220390,61416 363182,61416 112911,0 214130,-9094 301766,-27992 88463,-18071 165233,-38858 229366,-61416 64251,-22677 117518,-43346 159092,-61416 41574,-19015 72282,-28110 93896,-28110 12638,0 23504,2716 33425,9094 9094,6260 17126,15354 21732,27992 5433,11693 9921,28936 12638,50550 2716,22677 3543,48779 3543,80432 0,22559 -827,42519 -2716,59645 -1772,16299 -3543,31653 -6260,44291 -2716,13582 -7205,25275 -13582,36141 -6260,9921 -13582,19842 -23504,29763 -9921,9921 -38858,25275 -85746,47007 -47952,22559 -109368,43346 -185194,65078 -75944,20787 -163580,39684 -262909,55983 -99447,17126 -205154,25275 -318065,25275 -196059,0 -366726,-27047 -514006,-82203 -147281,-54212 -271058,-135470 -371332,-243066 -100274,-108305 -176099,-242948 -226768,-405583 -51495,-161690 -76770,-350545 -76770,-566446 0,-204209 26220,-388458 79487,-551919 52440,-162635 129210,-301766 228657,-415622 99329,-113856 220390,-200548 361293,-261964 140903,-60589 299050,-91298 473377,-91298 187083,0 346057,29881 477039,90353 131927,59645 239405,140903 324325,242122 83975,101219 146336,220390 186138,357749 39684,136415 59526,282751 59526,438181l0 79487zm-439008 -129210c5433,-229484 -45117,-410071 -152714,-541171 -107478,-130982 -265507,-195941 -476094,-195941 -108423,0 -203264,19842 -284522,60471 -81376,40629 -149052,94841 -204209,162635 -55038,66849 -97557,145391 -127321,233972 -29881,89408 -47007,182477 -50668,280034l1295528 0z"/>
+  <path id="2" class="fil1" d="M78310872 36944452c0,38739 -945,71337 -2716,97557 -1772,26102 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11811 -32598,11811 -14409,0 -31535,-3661 -51495,-11811 -20669,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54212,-15354 -85865,-22559 -31535,-7205 -65904,-10866 -102990,-10866 -44172,0 -87518,9094 -130037,26220 -41574,18071 -86691,47007 -132754,88581 -47007,40629 -95786,94841 -147281,161690 -50668,67676 -107478,149997 -169013,247555l0 1567413c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-14527 2716,-26220 8149,-36141 5433,-9094 15354,-18071 31653,-26220 16181,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38858,0 71455,827 96731,3543 26220,2716 46062,8149 60471,16299 13582,8149 24448,17126 30708,26220 5433,9921 9094,21614 9094,36141l0 346884c65078,-95786 126494,-173501 183422,-233972 57755,-59645 111966,-107596 162635,-141848 51495,-34369 102045,-57873 151769,-71337 50550,-13582 101101,-19960 152596,-19960 22559,0 48779,945 77715,3661 28936,2716 59645,8149 91298,14409 31535,7205 60471,15354 85746,24448 25275,8976 43346,17126 54212,26220 10866,8976 18071,17126 20787,25275 3661,8149 7205,18071 9921,29763 2716,12638 4606,30708 5433,54212 945,24448 945,55983 945,96731z"/>
+  <path id="3" class="fil1" d="M79246761 39173152c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-12756 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27165 16299,-6260 38858,-11693 67794,-15354 27992,-3543 63188,-5315 106534,-5315 44291,0 80432,1772 108423,5315 28936,3661 50550,9094 66849,15354 16299,7323 27047,16299 34369,27165 7205,9921 10748,21614 10748,34369l0 2383185zm48897 -3186321c0,102990 -19960,172556 -58818,209524 -38858,37086 -110195,55983 -214957,55983 -102990,0 -173501,-18071 -211414,-54212 -37913,-36023 -56928,-104762 -56928,-205981 0,-102872 19842,-172438 58700,-209524 38858,-37086 110195,-55983 215075,-55983 102990,0 173383,18071 211414,54212 37913,36141 56928,104762 56928,205981z"/>
+  <path id="4" class="fil1" d="M81358180 35809670c0,33425 -1890,60589 -5433,81376 -3661,19842 -7323,36141 -11811,48779 -4488,11693 -9921,20787 -17126,25275 -7205,3661 -16299,6378 -26220,6378 -12638,0 -27992,-3661 -47007,-11811 -18897,-8149 -40629,-17126 -67676,-27047 -26220,-9094 -57873,-18071 -94014,-26220 -36141,-8149 -78542,-11811 -126494,-11811 -64959,0 -121061,10866 -167123,31653 -45117,21732 -83148,55156 -111140,100274 -27992,45235 -48779,102990 -60471,175272 -12638,71337 -19015,158974 -19015,261964l0 260192 531250 0c13582,0 25275,2716 35196,9094 9921,6260 18071,17126 26220,31535 8149,15354 14409,34369 19015,57873 4488,22559 6260,50550 6260,83975 0,64133 -8149,110195 -23504,138305 -16181,27992 -36968,42401 -63188,42401l-531250 0 0 2086025c0,14409 -3543,26102 -10866,36141 -7205,8976 -18897,18071 -35196,25275 -17126,6260 -39684,11693 -67794,15354 -27992,3543 -63188,5433 -105589,5433 -42519,0 -77715,-1890 -105707,-5433 -28110,-3661 -50668,-9094 -67794,-15354 -16299,-7205 -27992,-16299 -35196,-25275 -7323,-10039 -10866,-21732 -10866,-36141l0 -2086025 -337907 0c-27992,0 -49724,-14409 -63188,-42401 -14527,-28110 -21732,-74172 -21732,-138305 0,-33425 1772,-61416 5433,-83975 3661,-23504 8976,-42519 16299,-57873 6260,-14409 15354,-25275 26102,-31535 10866,-6378 23504,-9094 37086,-9094l337907 0 0 -246610c0,-167123 15354,-309916 46062,-429087 31653,-119289 78542,-217791 141848,-293617 64133,-75944 143619,-132872 240232,-169013 95786,-36141 209642,-54094 340624,-54094 61416,0 122006,5315 179761,17126 58700,11693 103935,23504 135588,36968 31535,13582 52322,25393 63188,36141 10866,10039 19842,24448 26220,40747 7205,17126 12638,36968 15354,61416 2716,23504 3661,52322 3661,85746z"/>
+  <path id="5" class="fil1" d="M82815279 39239057l-317120 877189c-10748,27992 -37913,49724 -81258,65078 -42519,15354 -108423,22559 -196886,22559 -46180,0 -83148,-1772 -111140,-6260 -27992,-4606 -49724,-12638 -65078,-22677 -14409,-10748 -22559,-25275 -24448,-42401 -1772,-18071 2716,-38858 12756,-64133l328813 -829355c-16299,-7205 -31653,-19015 -45235,-34369 -14409,-16181 -24330,-32480 -28818,-50550l-850142 -2276534c-14527,-37086 -20787,-66967 -20787,-87636 0,-21732 6260,-38031 20787,-50668 14409,-12638 36968,-20787 68621,-25275 31653,-4488 74054,-6260 127439,-6260 52322,0 93896,827 124604,3543 29881,2716 53385,8149 71337,15354 17244,6378 29881,17126 38031,29881 8149,13464 16181,31535 25275,54094l680303 1911698 8031 0 655972 -1921619c10748,-34251 23504,-55983 38858,-64959 14409,-10039 36968,-17244 66849,-21732 30708,-4488 74054,-6260 130037,-6260 49724,0 90353,1772 122006,6260 31535,4488 55038,12638 69566,25275 15354,12638 22559,28936 22559,50668 0,20669 -5433,47834 -15354,79487l-855575 2369603z"/>
+  <path id="6" class="fil1" d="M84374543 38862292c0,55156 -2598,105707 -8031,150942 -5433,46062 -14527,89408 -26220,130037 -12638,40629 -28936,80432 -48779,120234 -20787,39684 -46062,82203 -75944,125549l-362238 545659c-8976,12638 -19015,22559 -30708,31535 -11811,9094 -25275,17244 -42519,23504 -16181,7323 -36141,12638 -57755,15354 -22559,2716 -49724,3661 -83975,3661 -29881,0 -55156,-945 -74999,-3661 -20787,-2716 -35314,-7205 -43346,-13464 -9094,-6378 -13582,-14527 -14527,-25393 -945,-10748 1772,-22559 9094,-36968l351372 -728136 0 -338852c0,-46889 5433,-84920 15354,-113738 9094,-28110 24448,-48779 46062,-63306 20787,-14409 47952,-23504 79487,-28936 31653,-5315 70511,-8031 116573,-8031 43346,0 81258,2716 113856,8031 31653,5433 57755,14527 77715,28936 19842,14527 35196,35196 45117,63306 9921,28818 14409,66849 14409,113738z"/>
+  <path id="7" class="fil1" d="M88089515 38806309c0,29881 -945,55983 -2716,77715 -1890,22559 -4606,40629 -9094,55983 -4488,15354 -9921,27992 -16299,39802 -6260,11693 -19842,28936 -42401,50550 -21732,22559 -59645,49724 -112085,83148 -53267,32480 -112911,62361 -178816,87636 -66849,26220 -138186,46889 -215902,62361 -77715,16181 -158147,24330 -241177,24330 -171729,0 -323498,-27992 -455425,-84920 -132754,-55983 -243893,-138186 -332356,-246610 -89526,-108423 -157202,-242122 -204209,-399324 -47007,-158147 -70511,-339679 -70511,-546604 0,-233972 28936,-435346 85865,-604359 57873,-168068 136415,-306254 235744,-413733 100274,-107478 217791,-186965 352316,-239405 135588,-51495 281924,-77715 439126,-77715 75825,0 149052,7205 220390,21732 72282,13464 137360,32480 197831,55038 59645,23504 113856,49724 159918,80432 47007,29763 81376,55983 102164,76770 21614,21732 36141,38858 44172,50668 7323,12638 14527,27047 19960,44172 4488,16299 8149,35314 9921,56928 1772,20787 2716,47952 2716,79487 0,68739 -8149,116573 -23504,144564 -16299,27165 -35196,40629 -58700,40629 -26220,0 -56928,-14409 -91298,-44172 -34369,-28936 -77715,-61534 -130982,-96731 -53267,-35196 -117399,-67794 -192398,-96612 -74999,-29881 -163580,-44291 -265625,-44291 -210469,0 -372159,80432 -484243,242122 -111966,160745 -168068,394717 -168068,700972 0,152714 14527,287357 43464,402985 29763,114683 72282,211414 129092,289129 56101,76770 125667,134525 207870,172556 82203,37913 176099,56810 281806,56810 101219,0 189682,-16181 265625,-47834 75825,-31653 140903,-66849 196886,-105707 56101,-37913 102990,-72282 141021,-102990 37913,-31653 66849,-47007 88463,-47007 11811,0 22677,3661 31653,10866 8976,7205 16299,19015 22559,35314 6378,17126 10866,37913 13582,64133 2716,25275 3661,55983 3661,91179z"/>
+  <path id="8" class="fil1" d="M90164675 38522613c0,122006 -22559,230429 -67794,326215 -45117,94841 -108423,175272 -191453,240232 -83148,65078 -181650,114801 -296333,148226 -114801,33425 -241295,50550 -378536,50550 -84920,0 -165351,-6260 -242122,-19842 -76770,-12638 -145509,-28936 -206925,-49724 -60471,-19842 -111966,-40629 -154485,-62361 -42401,-21614 -73109,-41574 -92124,-58700 -19842,-17126 -34369,-42401 -42519,-74054 -8976,-31653 -13464,-74999 -13464,-130155 0,-33425 1772,-61416 5433,-83975 3543,-23504 8031,-41574 12638,-55983 5433,-14527 13464,-24448 22559,-30708 9921,-6378 20787,-9094 33425,-9094 19015,0 47834,11811 85865,36141 37913,23504 84920,49724 139958,77715 55156,27992 121061,54212 197004,77715 75825,24330 162635,36141 261019,36141 74054,0 141021,-8149 200548,-24448 60589,-15354 112085,-38858 156375,-70392 44172,-30708 77597,-70511 102045,-118344 23504,-47952 35196,-104880 35196,-170784 0,-66849 -17126,-123777 -51495,-168895 -34251,-46062 -79487,-86809 -135470,-122006 -56928,-35196 -120116,-66849 -190626,-93896 -70511,-27165 -142793,-56101 -217673,-85865 -74172,-30708 -147281,-64133 -218618,-102045 -71455,-38031 -134643,-84093 -191571,-139131 -55983,-55156 -101219,-120234 -135470,-196059 -34369,-75944 -51495,-166296 -51495,-272830 0,-93069 18071,-182477 54212,-268342 36023,-85865 90235,-160863 162517,-224996 73227,-64133 163580,-116455 272003,-155312 108423,-38858 234799,-57873 380308,-57873 63188,0 126494,5433 190626,16299 63188,10866 120116,25275 171611,41574 51495,16181 94841,34251 130982,53267 36141,19842 64133,36141 82203,51495 19015,14409 30708,27165 37086,37086 6260,10748 10866,22559 13582,36141 2716,12638 5433,28818 8149,47834 2598,19842 3543,43346 3543,71337 0,29881 -945,56101 -3543,77715 -2716,21732 -7323,39802 -13582,53267 -6378,14527 -13582,24448 -22559,30708 -9094,6378 -19015,9094 -28936,9094 -16299,0 -38858,-9921 -69566,-29763 -29881,-19015 -68621,-39802 -116573,-62361 -47834,-22559 -103935,-43346 -168068,-62361 -64133,-19842 -138186,-29763 -221335,-29763 -74054,0 -139958,8031 -195941,25275 -56928,16181 -102990,39684 -139131,70392 -36141,30708 -64133,66849 -82203,109368 -19015,41574 -28110,87636 -28110,136415 0,68621 18071,126494 53385,173383 35196,47007 80314,87636 137242,122951 56101,35196 121061,66849 193343,95786 72282,27992 145509,56810 220508,86691 74881,30708 149052,64133 222161,101219 73227,36968 138305,82203 194288,134525 56928,53385 102045,116573 136415,190626 34251,74054 51495,162635 51495,264680z"/>
+  <path id="9" class="fil1" d="M91227884 39173152c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-12756 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27165 16299,-6260 38858,-11693 67794,-15354 27992,-3543 63188,-5315 106534,-5315 44291,0 80432,1772 108423,5315 28936,3661 50550,9094 66849,15354 16299,7323 27047,16299 34369,27165 7205,9921 10748,21614 10748,34369l0 2383185zm48897 -3186321c0,102990 -19960,172556 -58818,209524 -38858,37086 -110195,55983 -214957,55983 -102990,0 -173501,-18071 -211414,-54212 -37913,-36023 -56928,-104762 -56928,-205981 0,-102872 19842,-172438 58700,-209524 38858,-37086 110195,-55983 215075,-55983 102990,0 173383,18071 211414,54212 37913,36141 56928,104762 56928,205981z"/>
+  <path id="10" class="fil1" d="M93268792 38995990c0,51495 -3661,92242 -10866,122006 -6260,29763 -17126,52440 -31653,65904 -13464,14527 -35196,28110 -63188,39802 -27992,12638 -60589,22559 -96612,30708 -36141,8149 -74172,14409 -114801,19842 -40629,5433 -80432,8149 -121061,8149 -123777,0 -229484,-16299 -317120,-48779 -87636,-32480 -159918,-82203 -216728,-148108 -56101,-66022 -96731,-149997 -122951,-251216 -25275,-101101 -37913,-220390 -37913,-357749l0 -1389424 -335191 0c-26220,0 -47834,-14409 -64133,-42401 -15354,-28110 -23504,-74172 -23504,-138305 0,-33425 1890,-61416 6378,-83975 4488,-23504 10866,-42519 17126,-57873 7205,-14409 17244,-25275 27992,-31535 11811,-6378 24448,-9094 38858,-9094l332474 0 0 -565502c0,-12638 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27992 16299,-8149 38858,-13582 67794,-17126 27992,-3661 63188,-5433 106534,-5433 44291,0 80432,1772 108423,5433 28936,3543 50550,8976 66849,17126 16299,8149 27047,17126 34369,27992 7205,9921 10748,21732 10748,34369l0 565502 607194 0c14409,0 26102,2716 36968,9094 9921,6260 19842,17126 27165,31535 8031,15354 13464,34369 17126,57873 3661,22559 5433,50550 5433,83975 0,64133 -8149,110195 -23504,138305 -16299,27992 -37086,42401 -63188,42401l-607194 0 0 1325291c0,163580 24448,287357 72282,370387 47952,84093 134643,125549 259365,125549 39684,0 75825,-3543 107478,-11693 31653,-8149 59645,-16299 83975,-25275 24448,-9094 45235,-17126 63306,-25275 17126,-8149 33425,-11811 46889,-11811 9094,0 17244,1890 25393,6378 7205,4488 13464,12638 18071,25275 4488,12638 8031,28936 11693,50550 3661,20787 5433,47952 5433,79487z"/>
+  <path class="fil1" d="M94940022 37901128c0,69566 -8149,117399 -23504,143619 -16181,26220 -38858,39802 -69566,39802l-1106673 0c-32480,0 -55983,-13582 -72282,-40747 -15354,-27992 -23504,-74881 -23504,-142675 0,-66849 8149,-113856 23504,-140076 16299,-26220 39802,-39684 72282,-39684l1106673 0c14527,0 27165,2716 38858,8149 11811,5315 20787,15354 28936,30708 8149,14409 14409,33425 19015,56810 4488,22677 6260,50668 6260,84093z"/>
+  <path class="fil1" d="M97476511 36784534c0,7205 0,14409 -945,22559 -827,8149 -2716,16299 -3543,25275 -1890,9094 -4606,18071 -7323,28936 -2598,10866 -5315,21614 -8976,34251l-812111 2264014c-7323,19842 -17244,36141 -28110,47834 -11693,12638 -28818,22677 -51495,28936 -23385,7205 -52322,12638 -87636,15354 -35196,2716 -79487,3661 -132754,3661 -52440,0 -96612,-1890 -131927,-5433 -35196,-3661 -64133,-9094 -85746,-15354 -22677,-7205 -39802,-17244 -51495,-29881 -12638,-11693 -22677,-27047 -29881,-45117l-809395 -2264014c-7205,-20669 -12638,-39684 -17244,-55038 -4488,-16299 -7205,-27992 -8031,-36141 -945,-8149 -945,-14409 -945,-19842 0,-14527 3543,-26220 9921,-37086 7205,-10866 19015,-19015 36141,-25275 16299,-6378 38858,-9921 65904,-11811 27165,-1772 61534,-2598 102164,-2598 51495,0 92124,827 122832,3543 30708,2716 55156,8149 71337,15354 17244,6378 29881,15354 37086,26220 8149,10866 15354,23504 22559,39802l672153 1964846 10866 31653 8149 -31653 664004 -1964846c3543,-16299 9921,-28936 18897,-39802 8149,-10866 21732,-19842 37913,-26220 17244,-7205 39802,-12638 68739,-15354 29763,-2716 67676,-3543 115628,-3543 40629,0 74054,827 100274,2598 26220,1890 47007,6378 62361,13582 15354,6378 25275,15354 31535,24448 6378,9921 9094,21614 9094,36141z"/>
+  <path id="1" class="fil1" d="M99947215 37877625c0,68621 -17126,117399 -51495,147281 -34251,28936 -74054,43346 -118344,43346l-1564696 0c0,132754 13582,252043 39802,357749 26220,106534 70511,197831 132754,273775 61416,75825 141848,133698 240350,174328 99329,40629 220390,61416 363182,61416 112911,0 214130,-9094 301766,-27992 88463,-18071 165233,-38858 229366,-61416 64251,-22677 117518,-43346 159092,-61416 41574,-19015 72282,-28110 93896,-28110 12638,0 23504,2716 33425,9094 9094,6260 17126,15354 21732,27992 5433,11693 9921,28936 12638,50550 2716,22677 3543,48779 3543,80432 0,22559 -827,42519 -2716,59645 -1772,16299 -3543,31653 -6260,44291 -2716,13582 -7205,25275 -13582,36141 -6260,9921 -13582,19842 -23504,29763 -9921,9921 -38858,25275 -85746,47007 -47952,22559 -109368,43346 -185194,65078 -75944,20787 -163580,39684 -262909,55983 -99447,17126 -205154,25275 -318065,25275 -196059,0 -366726,-27047 -514006,-82203 -147281,-54212 -271058,-135470 -371332,-243066 -100274,-108305 -176099,-242948 -226768,-405583 -51495,-161690 -76770,-350545 -76770,-566446 0,-204209 26220,-388458 79487,-551919 52440,-162635 129210,-301766 228657,-415622 99329,-113856 220390,-200548 361293,-261964 140903,-60589 299050,-91298 473377,-91298 187083,0 346057,29881 477039,90353 131927,59645 239405,140903 324325,242122 83975,101219 146336,220390 186138,357749 39684,136415 59526,282751 59526,438181l0 79487zm-439008 -129210c5433,-229484 -45117,-410071 -152714,-541171 -107478,-130982 -265507,-195941 -476094,-195941 -108423,0 -203264,19842 -284522,60471 -81376,40629 -149052,94841 -204209,162635 -55038,66849 -97557,145391 -127321,233972 -29881,89408 -47007,182477 -50668,280034l1295528 0z"/>
+  <path id="2" class="fil1" d="M102009737 36944452c0,38739 -945,71337 -2716,97557 -1772,26102 -5433,46889 -10866,62243 -4488,15354 -11693,26220 -19842,34369 -7205,8149 -18071,11811 -32598,11811 -14409,0 -31535,-3661 -51495,-11811 -20669,-8149 -43346,-16299 -68621,-23504 -25275,-8149 -54212,-15354 -85865,-22559 -31535,-7205 -65904,-10866 -102990,-10866 -44172,0 -87518,9094 -130037,26220 -41574,18071 -86691,47007 -132754,88581 -47007,40629 -95786,94841 -147281,161690 -50668,67676 -107478,149997 -169013,247555l0 1567413c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-14527 2716,-26220 8149,-36141 5433,-9094 15354,-18071 31653,-26220 16181,-8149 36141,-13582 61416,-16299 24330,-2716 57755,-3543 98384,-3543 38858,0 71455,827 96731,3543 26220,2716 46062,8149 60471,16299 13582,8149 24448,17126 30708,26220 5433,9921 9094,21614 9094,36141l0 346884c65078,-95786 126494,-173501 183422,-233972 57755,-59645 111966,-107596 162635,-141848 51495,-34369 102045,-57873 151769,-71337 50550,-13582 101101,-19960 152596,-19960 22559,0 48779,945 77715,3661 28936,2716 59645,8149 91298,14409 31535,7205 60471,15354 85746,24448 25275,8976 43346,17126 54212,26220 10866,8976 18071,17126 20787,25275 3661,8149 7205,18071 9921,29763 2716,12638 4606,30708 5433,54212 945,24448 945,55983 945,96731z"/>
+  <path id="3" class="fil1" d="M102945625 39173152c0,14409 -3543,26102 -10748,36141 -7323,8976 -18071,18071 -34369,25275 -16299,6260 -37913,11693 -66849,15354 -27992,3543 -64133,5433 -108423,5433 -43346,0 -78542,-1890 -106534,-5433 -28936,-3661 -51495,-9094 -67794,-15354 -17126,-7205 -28936,-16299 -35196,-25275 -6378,-10039 -9094,-21732 -9094,-36141l0 -2383185c0,-12756 2716,-24448 9094,-34369 6260,-10866 18071,-19842 35196,-27165 16299,-6260 38858,-11693 67794,-15354 27992,-3543 63188,-5315 106534,-5315 44291,0 80432,1772 108423,5315 28936,3661 50550,9094 66849,15354 16299,7323 27047,16299 34369,27165 7205,9921 10748,21614 10748,34369l0 2383185zm48897 -3186321c0,102990 -19960,172556 -58818,209524 -38858,37086 -110195,55983 -214957,55983 -102990,0 -173501,-18071 -211414,-54212 -37913,-36023 -56928,-104762 -56928,-205981 0,-102872 19842,-172438 58700,-209524 38858,-37086 110195,-55983 215075,-55983 102990,0 173383,18071 211414,54212 37913,36141 56928,104762 56928,205981z"/>
+  <path id="4" class="fil1" d="M105057044 35809670c0,33425 -1890,60589 -5433,81376 -3661,19842 -7323,36141 -11811,48779 -4488,11693 -9921,20787 -17126,25275 -7205,3661 -16299,6378 -26220,6378 -12638,0 -27992,-3661 -47007,-11811 -18897,-8149 -40629,-17126 -67676,-27047 -26220,-9094 -57873,-18071 -94014,-26220 -36141,-8149 -78542,-11811 -126494,-11811 -64959,0 -121061,10866 -167123,31653 -45117,21732 -83148,55156 -111140,100274 -27992,45235 -48779,102990 -60471,175272 -12638,71337 -19015,158974 -19015,261964l0 260192 531250 0c13582,0 25275,2716 35196,9094 9921,6260 18071,17126 26220,31535 8149,15354 14409,34369 19015,57873 4488,22559 6260,50550 6260,83975 0,64133 -8149,110195 -23504,138305 -16181,27992 -36968,42401 -63188,42401l-531250 0 0 2086025c0,14409 -3543,26102 -10866,36141 -7205,8976 -18897,18071 -35196,25275 -17126,6260 -39684,11693 -67794,15354 -27992,3543 -63188,5433 -105589,5433 -42519,0 -77715,-1890 -105707,-5433 -28110,-3661 -50668,-9094 -67794,-15354 -16299,-7205 -27992,-16299 -35196,-25275 -7323,-10039 -10866,-21732 -10866,-36141l0 -2086025 -337907 0c-27992,0 -49724,-14409 -63188,-42401 -14527,-28110 -21732,-74172 -21732,-138305 0,-33425 1772,-61416 5433,-83975 3661,-23504 8976,-42519 16299,-57873 6260,-14409 15354,-25275 26102,-31535 10866,-6378 23504,-9094 37086,-9094l337907 0 0 -246610c0,-167123 15354,-309916 46062,-429087 31653,-119289 78542,-217791 141848,-293617 64133,-75944 143619,-132872 240232,-169013 95786,-36141 209642,-54094 340624,-54094 61416,0 122006,5315 179761,17126 58700,11693 103935,23504 135588,36968 31535,13582 52322,25393 63188,36141 10866,10039 19842,24448 26220,40747 7205,17126 12638,36968 15354,61416 2716,23504 3661,52322 3661,85746z"/>
+  <path id="5" class="fil1" d="M106514144 39239057l-317120 877189c-10748,27992 -37913,49724 -81258,65078 -42519,15354 -108423,22559 -196886,22559 -46180,0 -83148,-1772 -111140,-6260 -27992,-4606 -49724,-12638 -65078,-22677 -14409,-10748 -22559,-25275 -24448,-42401 -1772,-18071 2716,-38858 12756,-64133l328813 -829355c-16299,-7205 -31653,-19015 -45235,-34369 -14409,-16181 -24330,-32480 -28818,-50550l-850142 -2276534c-14527,-37086 -20787,-66967 -20787,-87636 0,-21732 6260,-38031 20787,-50668 14409,-12638 36968,-20787 68621,-25275 31653,-4488 74054,-6260 127439,-6260 52322,0 93896,827 124604,3543 29881,2716 53385,8149 71337,15354 17244,6378 29881,17126 38031,29881 8149,13464 16181,31535 25275,54094l680303 1911698 8031 0 655972 -1921619c10748,-34251 23504,-55983 38858,-64959 14409,-10039 36968,-17244 66849,-21732 30708,-4488 74054,-6260 130037,-6260 49724,0 90353,1772 122006,6260 31535,4488 55038,12638 69566,25275 15354,12638 22559,28936 22559,50668 0,20669 -5433,47834 -15354,79487l-855575 2369603z"/>
+  <path id="6" class="fil1" d="M108073407 38862292c0,55156 -2598,105707 -8031,150942 -5433,46062 -14527,89408 -26220,130037 -12638,40629 -28936,80432 -48779,120234 -20787,39684 -46062,82203 -75944,125549l-362238 545659c-8976,12638 -19015,22559 -30708,31535 -11811,9094 -25275,17244 -42519,23504 -16181,7323 -36141,12638 -57755,15354 -22559,2716 -49724,3661 -83975,3661 -29881,0 -55156,-945 -74999,-3661 -20787,-2716 -35314,-7205 -43346,-13464 -9094,-6378 -13582,-14527 -14527,-25393 -945,-10748 1772,-22559 9094,-36968l351372 -728136 0 -338852c0,-46889 5433,-84920 15354,-113738 9094,-28110 24448,-48779 46062,-63306 20787,-14409 47952,-23504 79487,-28936 31653,-5315 70511,-8031 116573,-8031 43346,0 81258,2716 113856,8031 31653,5433 57755,14527 77715,28936 19842,14527 35196,35196 45117,63306 9921,28818 14409,66849 14409,113738z"/>
+  <path class="fil1" d="M110639896 38950873c0,123777 -20787,205981 -62243,247555 -41574,41574 -114801,62361 -220508,62361 -102990,0 -174328,-20787 -214957,-61534 -40629,-40629 -60589,-121061 -60589,-241177 0,-123777 20787,-205981 62361,-247555 41574,-41574 114683,-62243 220390,-62243 102990,0 174446,19842 215075,60471 40629,40629 60471,122006 60471,242122zm1197971 0c0,123777 -20787,205981 -61416,247555 -40629,41574 -113856,62361 -220508,62361 -102990,0 -174328,-20787 -214957,-61534 -40629,-40629 -61416,-121061 -61416,-241177 0,-123777 20787,-205981 62361,-247555 41456,-41574 114683,-62243 219445,-62243 104880,0 177162,19842 216846,60471 39802,40629 59645,122006 59645,242122zm1192538 0c0,123777 -20787,205981 -62361,247555 -41574,41574 -114801,62361 -220508,62361 -102990,0 -174328,-20787 -214957,-61534 -40629,-40629 -60471,-121061 -60471,-241177 0,-123777 20669,-205981 62243,-247555 41574,-41574 114801,-62243 220508,-62243 102990,0 174328,19842 214957,60471 40629,40629 60589,122006 60589,242122z"/>
+  <path id="1" class="fil1" d="M114715098 37816208c0,199603 -12638,396607 -37086,591722 -24330,194170 -61416,387513 -111140,577312 -49605,190626 -110195,378536 -181532,562785 -71337,184249 -154485,365899 -250271,546604 -4488,8031 -12638,16181 -23504,23385 -10866,7323 -24330,12756 -40629,18071 -17126,5433 -37086,9094 -59645,10866 -23504,1890 -50550,2716 -82203,2716 -46062,0 -81258,-1772 -107478,-6260 -25275,-4606 -44291,-11811 -55156,-21732 -11693,-9921 -17126,-21732 -16181,-37086 827,-14409 5433,-32480 14409,-54094 162635,-355978 285467,-720932 367671,-1094035 83148,-373104 124722,-748924 124722,-1128405 0,-377592 -41574,-752585 -124722,-1125688 -82203,-373104 -206807,-736286 -373104,-1091319 -6260,-15354 -8976,-30708 -7205,-45117 1772,-13582 8976,-25275 23504,-34369 14409,-8976 33425,-15354 57755,-20787 25393,-5433 57873,-8149 98502,-8149 37086,0 67794,945 92124,3661 25275,2716 45235,7205 59645,12638 15354,4488 26220,9921 33425,15354 7205,5433 12638,11811 15354,19015 182477,361293 324325,732625 428260,1114822 102990,382080 154485,771482 154485,1168089z"/>
+  <polygon class="fil4" points="142453378,97611863 157507910,97611863 157507910,31680138 142453378,31680138 "/>
+  <path class="fil1" d="M146255869 68181331c38976,0 72636,2126 100982,6378 28464,4134 51613,10512 69448,19960 16889,9449 30590,19960 37913,33661 8386,13701 12638,28464 12638,44172l0 1120728 3462221 0c16771,0 30472,4252 43109,12638 12638,8504 22086,22086 29527,43228 7323,19960 13582,47361 18897,81022 5315,34724 7323,76770 7323,128384 0,49487 -2008,91534 -7323,126258 -5315,34724 -11575,63188 -18897,83148 -7441,21023 -16889,34724 -29527,43109 -12638,8386 -26338,12638 -43109,12638l-3462221 0 0 1120728c0,15826 -4252,30590 -12638,44172 -7323,13701 -21023,24212 -37913,32716 -17834,7323 -40984,14645 -69448,19960 -28346,5197 -62007,7323 -100982,7323 -38976,0 -73699,-2126 -103108,-7323 -29527,-5315 -53739,-12638 -71574,-19960 -19015,-8504 -32598,-19015 -40039,-32716 -8386,-13582 -12638,-28346 -12638,-44172l0 -2771879c0,-15708 4252,-30472 12638,-44172 7441,-13701 21023,-24212 40039,-33661 17834,-9449 42046,-15826 71574,-19960 29409,-4252 64133,-6378 103108,-6378z"/>
+  <path id="1" class="fil1" d="M148521536 65646258c226295,0 434638,29409 625146,89408 189327,58936 353498,148344 491448,266216 137832,117872 245192,266334 321963,443142 76770,177753 115746,384088 115746,617705 0,228303 -33661,427197 -102045,596682 -67322,169367 -166296,310388 -295743,422945 -129446,112675 -286176,196886 -471488,252633 -185194,55747 -394599,83148 -629280,83148 -226177,0 -434638,-29527 -623965,-87400 -190508,-58936 -354679,-147281 -492511,-265153 -137832,-117872 -244129,-265153 -321018,-441961 -75707,-176808 -113620,-383143 -113620,-618768 0,-228421 33661,-427315 102045,-596682 67322,-169485 166296,-310506 295743,-423063 129446,-112675 287239,-197831 471488,-254641 185194,-55865 393536,-84211 626091,-84211zm32598 530305c-150470,0 -292554,13701 -426134,42165 -133698,27401 -250507,73699 -351490,137832 -101101,63188 -181060,150470 -238933,259956 -58936,108423 -88345,245192 -88345,408300 0,150470 26338,279916 79959,388339 53621,108305 129446,196768 227240,267279 97912,70511 213658,122006 347356,155785 133580,34724 279916,51495 437709,51495 152596,0 295743,-13701 429441,-42046 133580,-27401 250389,-73699 350427,-138895 98856,-65314 178816,-152596 236689,-261019 58936,-109486 88463,-246255 88463,-409363 0,-148344 -26338,-276727 -79959,-386214 -53739,-109486 -128384,-198894 -225232,-269405 -96849,-70511 -212595,-122124 -346175,-154722 -133698,-32598 -280979,-49487 -441016,-49487z"/>
+  <path id="2" class="fil1" d="M148521536 62316672c226295,0 434638,29409 625146,89408 189327,58936 353498,148344 491448,266216 137832,117872 245192,266334 321963,443142 76770,177753 115746,384088 115746,617705 0,228303 -33661,427197 -102045,596682 -67322,169367 -166296,310388 -295743,422945 -129446,112675 -286176,196886 -471488,252633 -185194,55747 -394599,83148 -629280,83148 -226177,0 -434638,-29527 -623965,-87400 -190508,-58936 -354679,-147281 -492511,-265153 -137832,-117872 -244129,-265153 -321018,-441961 -75707,-176808 -113620,-383143 -113620,-618768 0,-228421 33661,-427315 102045,-596682 67322,-169485 166296,-310506 295743,-423063 129446,-112675 287239,-197831 471488,-254641 185194,-55865 393536,-84211 626091,-84211zm32598 530305c-150470,0 -292554,13701 -426134,42165 -133698,27401 -250507,73699 -351490,137832 -101101,63188 -181060,150470 -238933,259956 -58936,108423 -88345,245192 -88345,408300 0,150470 26338,279916 79959,388339 53621,108305 129446,196768 227240,267279 97912,70511 213658,122006 347356,155785 133580,34724 279916,51495 437709,51495 152596,0 295743,-13701 429441,-42046 133580,-27401 250389,-73699 350427,-138895 98856,-65314 178816,-152596 236689,-261019 58936,-109486 88463,-246255 88463,-409363 0,-148344 -26338,-276727 -79959,-386214 -53739,-109486 -128384,-198894 -225232,-269405 -96849,-70511 -212595,-122124 -346175,-154722 -133698,-32598 -280979,-49487 -441016,-49487z"/>
+  <path id="3" class="fil1" d="M149942259 61051735c16771,0 30472,4252 42046,12638 10512,8386 21023,21023 29409,40039 7441,18897 13701,44172 17952,77833 4252,32598 6260,74762 6260,126258 0,50550 -2008,91534 -6260,124250 -4252,33661 -10512,59999 -17952,78896 -8386,19960 -18897,33661 -29409,40984 -11575,7441 -25275,10512 -42046,10512l-4117839 0c-16889,0 -31653,-3071 -43228,-10512 -12519,-7323 -23149,-21023 -31535,-40984 -7323,-18897 -13701,-45235 -17834,-78896 -4252,-32716 -6378,-73699 -6378,-124250 0,-51495 2126,-93660 6378,-126258 4134,-33661 10512,-58936 17834,-77833 8386,-19015 19015,-31653 31535,-40039 11575,-8386 26338,-12638 43228,-12638l4117839 0z"/>
+  <path id="4" class="fil1" d="M149184477 58371507c142084,0 268342,26220 379954,78896 110431,52558 204091,126258 279916,223106 75707,96731 133698,211532 172556,345112 38976,133698 58936,280979 58936,440898 0,98975 -7323,192634 -23149,282042 -14764,89526 -33661,169485 -57873,241059 -23149,70511 -47361,130509 -72636,179879 -25275,49487 -48424,85274 -68385,107360 -19960,23149 -49487,40039 -86219,49487 -36850,10512 -87400,15826 -151651,15826 -38858,0 -71455,-2126 -97794,-6378 -27401,-4252 -48424,-9449 -65314,-14764 -16771,-6260 -28346,-15708 -35787,-26220 -7323,-11575 -10512,-24212 -10512,-38976 0,-22086 13701,-55747 42165,-99919 27283,-44291 57873,-98975 90471,-163225 32598,-64133 63188,-140903 90471,-229366 28464,-88345 42165,-189445 42165,-304128 0,-86337 -9449,-164170 -28464,-233618 -17834,-70511 -45235,-130509 -82085,-182005 -35787,-51613 -82085,-90589 -137832,-118935 -55747,-27401 -122124,-41102 -198894,-41102 -77833,0 -144210,20078 -196768,59999 -53739,40039 -101101,92597 -142084,157911 -41102,66259 -77833,139958 -109486,222043 -31535,82085 -65196,166178 -99919,253578 -35787,86337 -74762,171493 -118935,254641 -44172,83148 -97912,156848 -162044,223106 -64251,65314 -139958,117872 -228421,157911 -88345,39921 -193579,59999 -317711,59999 -108423,0 -212595,-21141 -312632,-63188 -99919,-42046 -187319,-105234 -261964,-189445 -74762,-85274 -135824,-190508 -181060,-316766 -45235,-126258 -67322,-273538 -67322,-443024 0,-73699 6260,-147281 18897,-222043 12638,-73699 29527,-139958 48424,-199957 19015,-59999 40039,-110431 62125,-152596 23149,-42046 42046,-74644 59999,-95786 16771,-22086 31535,-35669 43109,-43109 12638,-7323 26338,-12638 42046,-15826 14764,-3071 33779,-6260 55865,-9449 23149,-3071 50432,-4134 83148,-4134 34724,0 65196,1063 90471,4134 25275,3189 46298,8504 62125,15826 16771,7323 28346,15826 35669,26338 7441,10512 10630,22086 10630,33661 0,18897 -11575,45235 -34724,81022 -22204,34724 -46298,79959 -72636,135706 -26338,55865 -50550,121061 -72636,195823 -23149,74644 -34724,160981 -34724,257712 0,86337 9449,163225 29409,228421 19015,66259 46298,119998 82085,162044 35787,42046 77951,74762 127439,95786 48306,22086 102045,32598 158855,32598 79959,0 147281,-21023 202083,-62125 54684,-40984 102045,-93660 143029,-159918 41102,-65196 77951,-141021 111612,-225232 32598,-84093 66259,-169367 100982,-256767 35787,-87282 74762,-173619 117872,-258893 43109,-85156 95786,-160981 156848,-226177 62007,-66377 135706,-118935 222043,-158974 86219,-39921 189445,-59881 308262,-59881z"/>
+  <path class="fil1" d="M153333969 77675569c207516,98148 419756,171021 637784,219091 218146,48070 437236,71810 657862,71810 221807,0 441370,-24330 658925,-73463 217555,-49015 430858,-120352 639910,-214248 12638,-5315 23267,-7913 31653,-8504 8976,-472 16417,3189 21614,10039 5905,7441 10039,18425 12756,33306 2598,15236 3661,35314 3661,61180 0,18543 -591,34369 -1535,48070 -1063,13228 -3189,24803 -6378,34842 -2598,9449 -6378,17480 -10630,23740 -4134,6378 -8976,11102 -13701,13701 -105589,55983 -211650,105116 -319364,147399 -107715,42165 -217555,77597 -328931,106652 -110904,28936 -223815,50668 -337435,64841 -113974,14291 -229130,21732 -345821,21732 -116573,0 -231138,-7913 -344758,-23858 -113502,-16299 -225941,-38976 -337789,-68030 -111966,-29645 -221807,-65432 -329994,-107715 -108305,-42283 -215429,-89762 -321608,-142556 -4134,-591 -7913,-3661 -10984,-8504 -3189,-4134 -6378,-10984 -8976,-18897 -3189,-8504 -5905,-19606 -7441,-34369 -1535,-14291 -2126,-32716 -2126,-55393 0,-23858 1535,-42755 4724,-57637 3189,-14173 6850,-25275 12165,-33779 5315,-8386 12165,-12638 20078,-13701 8386,-1063 17362,472 26338,4252z"/>
+  <path id="1" class="fil1" d="M154124939 76429528c22677,0 41692,591 57046,1654 15236,1063 27401,3189 36377,6260 8976,2716 15354,6968 20078,11693 4724,4252 6850,10512 6850,19015 0,8386 -2126,18425 -6850,30118 -4724,12047 -9567,25275 -13701,40039 -4842,14764 -8976,31653 -13228,50196 -4252,18425 -6378,38503 -6378,60235 0,25866 5315,51141 15354,75944 10512,24330 27401,50668 51731,77597 23740,27519 55393,55983 94486,86101 39566,29527 87636,62834 144682,98738l916046 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l202792 0c-55983,-38031 -101337,-73936 -136769,-107124 -34842,-33897 -62834,-65550 -82912,-95077 -20078,-30118 -33779,-59645 -41692,-88699 -7913,-29527 -11575,-59172 -11575,-89172 0,-13228 472,-28582 2126,-45472 1535,-16889 4724,-34842 8386,-53267 4252,-18543 8976,-35432 14291,-50196 5315,-14764 10039,-25393 15354,-31653 5197,-6378 10039,-10630 14764,-12165 4724,-2126 10512,-4252 17362,-5787 7441,-1654 17952,-2716 31653,-3189 14291,-591 32834,-591 56574,-591z"/>
+  <path id="2" class="fil1" d="M154670245 75027821c40157,0 68739,10039 86101,30118 16889,20078 25393,43346 25393,69211l0 914393c77597,0 147281,-7913 209051,-23267 62243,-15236 115628,-41102 159918,-77597 44409,-35905 78660,-82912 102518,-140431 23740,-57991 35314,-128738 35314,-212240 0,-66022 -5315,-125076 -16417,-176335 -10512,-51731 -22677,-96612 -35905,-134053 -13110,-37558 -25275,-68621 -35787,-92951 -11102,-24330 -16417,-42283 -16417,-54920 0,-7323 1535,-13701 5315,-19488 3661,-5315 8976,-10039 16299,-12756 6850,-3071 16889,-5787 30118,-7323 12638,-1654 27992,-2126 46416,-2126 13228,0 24803,472 34842,1535 9567,1063 18543,2126 25866,3779 8031,1535 14882,4134 21141,7913 5787,3661 11693,7913 17480,13701 5787,5787 14764,22677 27401,50196 13228,27992 25393,63896 38031,108187 12165,44291 23267,95549 32716,153659 10039,58109 14764,119880 14764,185784 0,114565 -15826,214366 -47952,300467 -31771,85983 -79251,158383 -142084,216965 -63306,58582 -141966,102990 -237043,132517 -94486,30118 -204799,44881 -331057,44881 -119289,0 -227004,-15354 -322553,-46416 -95077,-30708 -176335,-75589 -242830,-133580 -66613,-58109 -117281,-128856 -153186,-211177 -35314,-82439 -53267,-174800 -53267,-276727 0,-109250 17362,-202201 52794,-278735 34842,-77125 82321,-139958 141494,-189564 59172,-49015 128856,-85510 209051,-108778 79723,-23149 165233,-34842 256058,-34842l46416 0zm-75471 256649c-134053,-3189 -239641,26338 -316175,89172 -76652,62834 -114565,155312 -114565,278263 0,63424 12047,118817 35905,166296 23740,47598 54802,87164 94486,119289 38976,32244 84920,57046 136651,74526 52322,17362 106652,27401 163698,29527l0 -757073z"/>
+  <path id="3" class="fil1" d="M154708275 73356946c122006,0 231256,13110 328459,39566 96612,25866 178934,64369 246492,115628 67676,50668 119880,114092 156257,188973 36495,74999 54920,161099 54920,257712 0,41102 -4134,79132 -12047,113974 -8504,35432 -21141,69211 -39094,102990 -17480,33306 -39566,66495 -66495,99211 -26456,33306 -58109,68148 -94014,105116l697428 0c8386,0 15354,2126 21614,6378 6378,4134 11693,10512 15826,19960 3779,9567 6850,22204 8976,39094 2126,16417 3189,37558 3189,63424 0,25275 -1063,45944 -3189,62243 -2126,16889 -5197,30118 -8976,39566 -4134,10039 -9449,16889 -15826,20669 -6260,3661 -13228,5197 -21614,5197l-1945595 0c-9449,0 -16889,-1535 -22677,-4724 -5315,-3189 -10512,-9449 -14291,-18425 -4134,-9567 -7323,-21141 -8976,-35905 -1535,-14291 -2008,-32244 -2008,-52794 0,-21732 472,-39684 2008,-53857 1654,-13701 4842,-25393 8504,-34842 4252,-9567 9449,-15826 14764,-19606 5787,-3661 13228,-5197 22677,-5197l186375 0c-43228,-42283 -80786,-82912 -112911,-122006 -31653,-39094 -58109,-78660 -79251,-118226 -21141,-39684 -37440,-80314 -48070,-122006 -10984,-41692 -16299,-85510 -16299,-131927 0,-100864 19488,-186375 58582,-257712 39566,-70747 92951,-128856 160981,-173737 68148,-44881 147399,-77597 237634,-98148 90235,-20551 185902,-30590 286648,-30590zm29645 266098c-71337,0 -140431,5197 -207044,16299 -66495,10630 -125667,29645 -177398,55511 -51731,26338 -92833,61771 -124014,106061 -31181,44409 -46535,99801 -46535,165824 0,33188 4842,65432 14882,97675 10039,31653 25275,64369 46416,97675 21141,32716 49133,67558 83975,103463 34842,35905 77597,74408 128265,114565l553809 0c86101,-70274 151533,-136769 197477,-199603 45472,-63306 68148,-129328 68148,-198540 0,-63778 -15354,-118699 -46535,-164643 -31062,-45944 -72282,-82912 -124014,-111376 -51731,-28582 -109250,-49133 -173737,-62834 -63896,-13228 -128856,-20078 -193697,-20078z"/>
+  <path id="4" class="fil1" d="M154714653 71680047c113502,0 218028,14882 313577,44881 95077,29645 177398,74526 246610,133580 69093,59172 122951,133580 161572,222279 38503,89290 57991,192752 57991,309916 0,114565 -16889,214366 -51141,299404 -33779,85038 -83502,155785 -148344,212240 -64959,56456 -143619,98738 -236571,126730 -92951,27992 -197949,41692 -315703,41692 -113502,0 -218028,-14764 -313105,-43818 -95549,-29527 -177871,-73936 -247082,-133108 -69211,-59054 -122478,-132990 -160981,-221689 -38031,-88699 -57046,-192162 -57046,-310506 0,-114565 16889,-214248 51141,-299286 33897,-85038 83502,-155785 148462,-212240 64841,-56456 144092,-99329 236452,-127793 92951,-27992 197477,-42283 314168,-42283zm16417 266098c-75589,0 -146808,6968 -213894,21141 -67085,13701 -125667,36968 -176335,69211 -50668,31653 -90825,75471 -119880,130391 -29527,54330 -44291,122951 -44291,204799 0,75589 13228,140431 40157,194878 26929,54330 64841,98738 113974,134053 49133,35432 107242,61298 174209,78188 67085,17362 140431,25866 219681,25866 76534,0 148344,-6850 215429,-21141 66967,-13701 125667,-36968 175745,-69684 49605,-32716 89762,-76534 118817,-130982 29527,-54802 44409,-123541 44409,-205272 0,-74526 -13228,-138895 -40157,-193815 -26929,-54920 -64487,-99801 -113029,-135116 -48542,-35432 -106652,-61298 -173619,-77597 -67085,-16417 -141021,-24921 -221216,-24921z"/>
+  <path id="5" class="fil1" d="M154124939 70487864c22677,0 41692,591 57046,1654 15236,1063 27401,3189 36377,6260 8976,2716 15354,6968 20078,11693 4724,4252 6850,10512 6850,19015 0,8386 -2126,18425 -6850,30118 -4724,12047 -9567,25275 -13701,40039 -4842,14764 -8976,31653 -13228,50196 -4252,18425 -6378,38503 -6378,60235 0,25866 5315,51141 15354,75944 10512,24330 27401,50668 51731,77597 23740,27519 55393,55983 94486,86101 39566,29527 87636,62834 144682,98738l916046 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l202792 0c-55983,-38031 -101337,-73936 -136769,-107124 -34842,-33897 -62834,-65550 -82912,-95077 -20078,-30118 -33779,-59645 -41692,-88699 -7913,-29527 -11575,-59172 -11575,-89172 0,-13228 472,-28582 2126,-45472 1535,-16889 4724,-34842 8386,-53267 4252,-18543 8976,-35432 14291,-50196 5315,-14764 10039,-25393 15354,-31653 5197,-6378 10039,-10630 14764,-12165 4724,-2126 10512,-4252 17362,-5787 7441,-1654 17952,-2716 31653,-3189 14291,-591 32834,-591 56574,-591z"/>
+  <path id="6" class="fil1" d="M155323973 69475205c29999,0 53739,2126 71219,6378 17480,3661 30590,10039 38503,18425 8504,7913 16417,20669 23267,36968 7441,16417 13228,35432 17952,56574 4724,21023 8504,43228 11575,66967 3189,23740 4842,47007 4842,70747 0,72400 -9567,134171 -28582,185312 -19015,51259 -48070,93542 -86573,126730 -38503,32716 -87636,56456 -146808,71810 -59054,14764 -128738,22204 -209051,22204l-811993 0 0 195823c0,15354 -8386,27992 -24803,37558 -16417,8976 -43346,13701 -80786,13701 -19488,0 -35905,-1063 -49133,-3661 -13701,-2716 -24803,-6378 -33779,-10039 -8386,-4252 -14764,-10039 -18425,-16417 -3779,-6850 -5315,-14291 -5315,-22677l0 -194288 -330466 0c-7441,0 -14291,-1654 -20078,-5315 -6378,-3661 -11575,-10512 -16417,-20551 -4724,-9567 -7913,-22677 -10039,-39566 -2126,-16417 -3071,-36968 -3071,-62361 0,-25866 945,-47007 3071,-63306 2126,-16889 5315,-29645 10039,-39094 4842,-9567 10039,-15826 16417,-20078 5787,-4252 12638,-6378 20078,-6378l330466 0 0 -354797c0,-8386 1535,-15236 5315,-21614 3661,-5787 10039,-11575 18425,-15826 8976,-4724 20078,-7913 33779,-10039 13228,-2126 29645,-3189 49133,-3189 37440,0 64369,4724 80786,13701 16417,9567 24803,21732 24803,36968l0 354797 774553 0c95549,0 167832,-14173 216492,-42165 49015,-27992 73345,-78660 73345,-151533 0,-23267 -2126,-44409 -6850,-62834 -4724,-18543 -9567,-34842 -14764,-49133 -5315,-14291 -10039,-26338 -14882,-36968 -4724,-10039 -6850,-19488 -6850,-27401 0,-5315 1063,-10039 3779,-14764 2598,-4252 7323,-7913 14764,-10630 7323,-2598 16889,-4724 29527,-6850 12165,-2126 27992,-3189 46535,-3189z"/>
+  <path class="fil1" d="M154684063 68506128c40629,0 68621,4724 83857,13701 15354,9567 23267,22677 23267,40629l0 646760c0,19015 -7913,32716 -23740,42283 -16417,8976 -43818,13701 -83384,13701 -39094,0 -66613,-4724 -81849,-13701 -15354,-9567 -23267,-23267 -23267,-42283l0 -646760c0,-8386 1654,-15826 4724,-22677 3189,-6850 8976,-12165 17952,-16889 8504,-4724 19606,-8386 33306,-11102 13228,-2598 29527,-3661 49133,-3661z"/>
+  <path class="fil1" d="M154099546 66995998c36495,0 62361,4724 78660,14764 15826,9567 23740,22204 23740,38031l0 200075c36968,-36377 77715,-61771 122006,-75944 44409,-14291 90825,-21732 138895,-21732 80195,0 151533,12756 213303,38621 61771,25866 113974,62834 157320,110785 42755,48070 75471,105116 98148,171139 22677,66022 33779,139368 33779,219563 0,56574 -7323,110904 -22086,161572 -15354,51259 -33897,90825 -56574,118817 18543,17480 39566,31653 63424,43346 24212,10984 51731,16889 82321,16889 36377,0 66495,-16889 90235,-50196 24330,-33306 36968,-78188 39094,-133580l15354 -362710c2126,-68621 11575,-132045 28464,-189564 17480,-57519 41220,-107715 72873,-149879 31181,-42283 70274,-74999 115628,-98738 45944,-23740 99211,-35432 160036,-35432 63778,0 124486,13228 182123,40157 57519,26929 108187,67558 152005,123069 43818,54802 78660,125549 103463,211177 25393,85510 38031,186375 38031,302947 0,112557 -9449,208106 -28464,286766 -19015,78660 -45472,143619 -78188,194288 -33188,50078 -72282,87046 -118226,109841 -45944,22677 -96140,33779 -149407,33779 -34369,0 -67085,-4252 -99329,-12165 -31653,-8504 -62243,-21141 -91298,-38031 -28464,-16889 -56456,-38031 -82321,-63306 -26456,-25393 -52322,-54448 -78188,-87636 -25866,50078 -58582,87046 -97675,111376 -39094,23740 -81258,35905 -126730,35905 -62834,0 -119289,-12756 -168895,-38031 -49133,-25393 -93424,-56456 -133108,-94014 -37913,31653 -80786,57046 -128738,75471 -48070,18543 -106179,27992 -174328,27992 -79132,0 -150470,-13110 -213185,-40039 -62834,-26929 -116218,-63896 -159446,-111494 -43346,-47479 -76652,-104526 -99801,-171021 -23267,-66495 -34842,-139368 -34842,-217555 0,-42755 2598,-81849 7323,-118699 5315,-36495 12165,-70747 21141,-102990l0 -420819c0,-17952 8504,-30590 25393,-39566 17362,-8976 43228,-13228 78069,-13228zm365426 399205c-94605,0 -168422,25866 -221216,78069 -53385,52322 -79723,126258 -79723,221807 0,49605 8386,92833 24803,129328 16299,36377 38976,67085 67558,91298 29055,24330 62243,42283 99801,53857 37440,12165 77006,17952 118226,17952 91298,0 163107,-25866 215902,-78069 52322,-52322 78660,-125195 78660,-219209 0,-50078 -7913,-93896 -23740,-131454 -16299,-36968 -38031,-67558 -66495,-91770 -28464,-24330 -61298,-42283 -98148,-53857 -36968,-12165 -75589,-17952 -115628,-17952zm1101831 -126730c-59645,0 -105589,24212 -138305,73345 -32244,48542 -49724,115155 -51731,198540l-12165 359521c25866,32716 50078,60235 73345,81258 23267,21141 44881,37558 66022,50196 21141,12165 42165,20551 62834,25393 20551,4724 41692,6850 62834,6850 66967,0 117754,-33779 152005,-101927 34369,-68148 51731,-162635 51731,-284050 0,-77125 -7323,-141966 -22204,-193697 -15236,-52322 -34842,-94014 -59645,-125667 -24803,-32244 -52794,-54920 -84447,-69211 -32244,-13701 -65432,-20551 -100274,-20551z"/>
+  <path id="1" class="fil1" d="M154670245 65509253c40157,0 68739,10039 86101,30118 16889,20078 25393,43346 25393,69211l0 914393c77597,0 147281,-7913 209051,-23267 62243,-15236 115628,-41102 159918,-77597 44409,-35905 78660,-82912 102518,-140431 23740,-57991 35314,-128738 35314,-212240 0,-66022 -5315,-125076 -16417,-176335 -10512,-51731 -22677,-96612 -35905,-134053 -13110,-37558 -25275,-68621 -35787,-92951 -11102,-24330 -16417,-42283 -16417,-54920 0,-7323 1535,-13701 5315,-19488 3661,-5315 8976,-10039 16299,-12756 6850,-3071 16889,-5787 30118,-7323 12638,-1654 27992,-2126 46416,-2126 13228,0 24803,472 34842,1535 9567,1063 18543,2126 25866,3779 8031,1535 14882,4134 21141,7913 5787,3661 11693,7913 17480,13701 5787,5787 14764,22677 27401,50196 13228,27992 25393,63896 38031,108187 12165,44291 23267,95549 32716,153659 10039,58109 14764,119880 14764,185784 0,114565 -15826,214366 -47952,300467 -31771,85983 -79251,158383 -142084,216965 -63306,58582 -141966,102990 -237043,132517 -94486,30118 -204799,44881 -331057,44881 -119289,0 -227004,-15354 -322553,-46416 -95077,-30708 -176335,-75589 -242830,-133580 -66613,-58109 -117281,-128856 -153186,-211177 -35314,-82439 -53267,-174800 -53267,-276727 0,-109250 17362,-202201 52794,-278735 34842,-77125 82321,-139958 141494,-189564 59172,-49015 128856,-85510 209051,-108778 79723,-23149 165233,-34842 256058,-34842l46416 0zm-75471 256649c-134053,-3189 -239641,26338 -316175,89172 -76652,62834 -114565,155312 -114565,278263 0,63424 12047,118817 35905,166296 23740,47598 54802,87164 94486,119289 38976,32244 84920,57046 136651,74526 52322,17362 106652,27401 163698,29527l0 -757073z"/>
+  <path id="2" class="fil1" d="M155427436 63920699c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,20078 3661,9449 6850,22086 8976,38976 2126,16417 3071,36968 3071,61771 0,26456 -945,47598 -3071,63896 -2126,16889 -5315,29645 -8976,39094 -4252,9567 -9567,15826 -14882,20078 -5787,4252 -12638,6378 -21023,6378l-815773 0c-79132,0 -143619,6260 -191571,18425 -48661,12165 -90353,30118 -125667,53857 -34842,23740 -61771,53857 -80314,91298 -18425,37558 -27992,80786 -27992,129919 0,63896 22795,127202 68148,190626 45354,63896 111966,130391 199603,200075l973565 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l184249 0c-88109,-78188 -152478,-155785 -193225,-233854 -40629,-77597 -61180,-155785 -61180,-234917 0,-92479 15826,-170548 47007,-233972 31653,-63306 73936,-114565 126139,-153659 52794,-38976 114565,-66967 185312,-83857 70747,-16889 155785,-25393 254523,-25393l850024 0z"/>
+  <path id="3" class="fil1" d="M155245785 63149335c32244,0 61771,1535 88109,4724 26929,3189 52322,8504 76062,15354 23740,7323 47007,16889 70274,28464 23149,12165 47952,26929 73345,44409l318892 211650c7441,5315 13228,11102 18425,17952 5315,6850 10039,14764 13819,24803 4134,9567 7323,21141 8976,33779 1535,13228 2126,29055 2126,49133 0,17480 -591,32244 -2126,43818 -1654,12165 -4252,20551 -7913,25393 -3779,5197 -8504,7913 -14882,8386 -6260,591 -13110,-1063 -21614,-5197l-425544 -205390 -197949 0c-27519,0 -49605,-3189 -66495,-8976 -16417,-5315 -28582,-14291 -36968,-26929 -8504,-12165 -13701,-27992 -16889,-46535 -3189,-18425 -4724,-41102 -4724,-68030 0,-25393 1535,-47598 4724,-66613 3189,-18425 8386,-33779 16889,-45354 8386,-11575 20551,-20551 36968,-26456 16889,-5787 38976,-8386 66495,-8386z"/>
+  <path id="4" class="fil1" d="M155427436 60756582c8386,0 15236,1535 21614,5197 6378,3779 11102,10039 14764,18543 3661,8976 6378,20551 8504,34842 2126,14764 3071,32244 3071,52794 0,21614 -945,39566 -3071,53857 -2126,14764 -4842,26338 -8504,35905 -3661,8976 -8386,15826 -14764,20078 -6378,3661 -13701,5787 -21614,5787l-185312 0c79723,73345 141494,149407 185784,228067 44409,79251 66495,165233 66495,259247 0,101927 -19960,188973 -59645,260783 -39566,72400 -93424,130982 -160981,175863 -67085,44291 -146808,77006 -238106,97675 -91416,20551 -187438,31062 -288302,31062 -119880,0 -228067,-12638 -324207,-38503 -96612,-25866 -178934,-63896 -247082,-114565 -67558,-50196 -120352,-113029 -156729,-187910 -36495,-74526 -54920,-160509 -54920,-258775 0,-81258 17952,-155666 53267,-223342 35905,-67558 88227,-134053 157320,-200075l-807151 0c-7441,0 -14291,-1535 -21141,-5197 -6850,-3779 -11693,-10630 -15354,-21141 -3661,-10039 -6850,-23267 -9449,-39094 -2716,-16417 -3779,-36495 -3779,-61298 0,-25866 1063,-46889 3779,-63306 2598,-16417 5787,-29527 9449,-38503 3661,-9567 8976,-16417 15354,-21141 6850,-4724 13701,-6850 21141,-6850l2059569 0zm-980415 256531c-86101,68621 -151533,135234 -196414,199603 -44881,64369 -67676,131454 -67676,201138 0,64959 15354,119880 46535,165233 31181,45472 71810,81849 122478,110431 50196,27874 107715,48542 171611,61180 63896,13228 128738,19488 194760,19488 70274,0 138895,-5197 205981,-16299 66967,-10630 126612,-29527 178934,-55983 52322,-26929 94014,-62243 125667,-106652 31181,-43818 47007,-99801 47007,-166296 0,-33779 -4724,-66495 -13701,-98148 -9567,-31181 -24921,-63424 -46535,-96140 -21614,-32716 -49605,-67558 -84447,-103463 -34369,-35905 -76534,-73936 -127202,-114092l-556998 0z"/>
+  <path id="5" class="fil1" d="M154714653 58990984c113502,0 218028,14882 313577,44881 95077,29645 177398,74526 246610,133580 69093,59172 122951,133580 161572,222279 38503,89290 57991,192752 57991,309916 0,114565 -16889,214366 -51141,299404 -33779,85038 -83502,155785 -148344,212240 -64959,56456 -143619,98738 -236571,126730 -92951,27992 -197949,41692 -315703,41692 -113502,0 -218028,-14764 -313105,-43818 -95549,-29527 -177871,-73936 -247082,-133108 -69211,-59054 -122478,-132990 -160981,-221689 -38031,-88699 -57046,-192162 -57046,-310506 0,-114565 16889,-214248 51141,-299286 33897,-85038 83502,-155785 148462,-212240 64841,-56456 144092,-99329 236452,-127793 92951,-27992 197477,-42283 314168,-42283zm16417 266098c-75589,0 -146808,6968 -213894,21141 -67085,13701 -125667,36968 -176335,69211 -50668,31653 -90825,75471 -119880,130391 -29527,54330 -44291,122951 -44291,204799 0,75589 13228,140431 40157,194878 26929,54330 64841,98738 113974,134053 49133,35432 107242,61298 174209,78188 67085,17362 140431,25866 219681,25866 76534,0 148344,-6850 215429,-21141 66967,-13701 125667,-36968 175745,-69684 49605,-32716 89762,-76534 118817,-130982 29527,-54802 44409,-123541 44409,-205272 0,-74526 -13228,-138895 -40157,-193815 -26929,-54920 -64487,-99801 -113029,-135116 -48542,-35432 -106652,-61298 -173619,-77597 -67085,-16417 -141021,-24921 -221216,-24921z"/>
+  <path id="6" class="fil1" d="M155213069 57611954c17362,0 32716,472 45354,1535 13228,1063 23740,2716 32716,5315 8976,2598 16417,5787 23267,9567 6850,3661 16889,11575 29527,24803 13228,12638 29055,34842 48661,65432 19015,31181 36377,66022 51141,104526 15354,39094 27519,80786 36495,126139 9449,45472 14173,92479 14173,141021 0,100274 -16299,188973 -49605,266098 -32716,77597 -80786,142556 -144092,194288 -63424,52204 -141494,91888 -233382,119289 -92361,27519 -198540,41220 -319364,41220 -136769,0 -254523,-16889 -353261,-50196 -98148,-33779 -178934,-79723 -241767,-137832 -62834,-58582 -109368,-127202 -139958,-205862 -30118,-79132 -45354,-164761 -45354,-256531 0,-44409 4134,-87164 12638,-128856 7913,-42283 19015,-80314 32244,-115628 13701,-34842 28936,-66495 46889,-93424 17480,-27519 32834,-47598 44881,-59645 12756,-12756 22795,-21141 29645,-25866 7323,-4252 15826,-8504 25866,-11693 9449,-2598 20551,-4724 33188,-5787 12165,-1063 27992,-1535 46535,-1535 40157,0 68030,4724 84447,13701 15826,9449 23740,20551 23740,34251 0,15354 -8386,33306 -25866,53385 -16889,20078 -35905,45354 -56456,76534 -20551,31181 -39566,68621 -56456,112439 -17480,43818 -25984,95549 -25984,155194 0,123069 47007,217555 141494,282987 94014,65550 230783,98266 409717,98266 89290,0 167950,-8504 235508,-25393 67085,-17362 123541,-42165 168895,-75471 44881,-32716 78778,-73345 100864,-121415 22204,-48070 33306,-102990 33306,-164761 0,-59054 -9567,-110785 -27992,-155194 -18425,-44291 -39094,-82321 -61298,-115037 -22677,-32834 -42755,-60235 -60708,-82439 -18425,-22204 -27401,-39094 -27401,-51731 0,-6850 2126,-13228 6378,-18425 4134,-5315 10984,-9567 20551,-13228 10039,-3661 22204,-6378 37440,-7913 14764,-1654 32716,-2126 53385,-2126z"/>
+  <path class="fil1" d="M154684063 56641932c40629,0 68621,4724 83857,13701 15354,9567 23267,22677 23267,40629l0 646760c0,19015 -7913,32716 -23740,42283 -16417,8976 -43818,13701 -83384,13701 -39094,0 -66613,-4724 -81849,-13701 -15354,-9567 -23267,-23267 -23267,-42283l0 -646760c0,-8386 1654,-15826 4724,-22677 3189,-6850 8976,-12165 17952,-16889 8504,-4724 19606,-8386 33306,-11102 13228,-2598 29527,-3661 49133,-3661z"/>
+  <path class="fil1" d="M154099546 55131802c36495,0 62361,4724 78660,14764 15826,9567 23740,22204 23740,38031l0 200075c36968,-36377 77715,-61771 122006,-75944 44409,-14291 90825,-21732 138895,-21732 80195,0 151533,12756 213303,38621 61771,25866 113974,62834 157320,110785 42755,48070 75471,105116 98148,171139 22677,66022 33779,139368 33779,219563 0,56574 -7323,110904 -22086,161572 -15354,51259 -33897,90825 -56574,118817 18543,17480 39566,31653 63424,43346 24212,10984 51731,16889 82321,16889 36377,0 66495,-16889 90235,-50196 24330,-33306 36968,-78188 39094,-133580l15354 -362710c2126,-68621 11575,-132045 28464,-189564 17480,-57519 41220,-107715 72873,-149879 31181,-42283 70274,-74999 115628,-98738 45944,-23740 99211,-35432 160036,-35432 63778,0 124486,13228 182123,40157 57519,26929 108187,67558 152005,123069 43818,54802 78660,125549 103463,211177 25393,85510 38031,186375 38031,302947 0,112557 -9449,208106 -28464,286766 -19015,78660 -45472,143619 -78188,194288 -33188,50078 -72282,87046 -118226,109841 -45944,22677 -96140,33779 -149407,33779 -34369,0 -67085,-4252 -99329,-12165 -31653,-8504 -62243,-21141 -91298,-38031 -28464,-16889 -56456,-38031 -82321,-63306 -26456,-25393 -52322,-54448 -78188,-87636 -25866,50078 -58582,87046 -97675,111376 -39094,23740 -81258,35905 -126730,35905 -62834,0 -119289,-12756 -168895,-38031 -49133,-25393 -93424,-56456 -133108,-94014 -37913,31653 -80786,57046 -128738,75471 -48070,18543 -106179,27992 -174328,27992 -79132,0 -150470,-13110 -213185,-40039 -62834,-26929 -116218,-63896 -159446,-111494 -43346,-47479 -76652,-104526 -99801,-171021 -23267,-66495 -34842,-139368 -34842,-217555 0,-42755 2598,-81849 7323,-118699 5315,-36495 12165,-70747 21141,-102990l0 -420819c0,-17952 8504,-30590 25393,-39566 17362,-8976 43228,-13228 78069,-13228zm365426 399205c-94605,0 -168422,25866 -221216,78069 -53385,52322 -79723,126258 -79723,221807 0,49605 8386,92833 24803,129328 16299,36377 38976,67085 67558,91298 29055,24330 62243,42283 99801,53857 37440,12165 77006,17952 118226,17952 91298,0 163107,-25866 215902,-78069 52322,-52322 78660,-125195 78660,-219209 0,-50078 -7913,-93896 -23740,-131454 -16299,-36968 -38031,-67558 -66495,-91770 -28464,-24330 -61298,-42283 -98148,-53857 -36968,-12165 -75589,-17952 -115628,-17952zm1101831 -126730c-59645,0 -105589,24212 -138305,73345 -32244,48542 -49724,115155 -51731,198540l-12165 359521c25866,32716 50078,60235 73345,81258 23267,21141 44881,37558 66022,50196 21141,12165 42165,20551 62834,25393 20551,4724 41692,6850 62834,6850 66967,0 117754,-33779 152005,-101927 34369,-68148 51731,-162635 51731,-284050 0,-77125 -7323,-141966 -22204,-193697 -15236,-52322 -34842,-94014 -59645,-125667 -24803,-32244 -52794,-54920 -84447,-69211 -32244,-13701 -65432,-20551 -100274,-20551z"/>
+  <path id="1" class="fil1" d="M154670245 53645057c40157,0 68739,10039 86101,30118 16889,20078 25393,43346 25393,69211l0 914393c77597,0 147281,-7913 209051,-23267 62243,-15236 115628,-41102 159918,-77597 44409,-35905 78660,-82912 102518,-140431 23740,-57991 35314,-128738 35314,-212240 0,-66022 -5315,-125076 -16417,-176335 -10512,-51731 -22677,-96612 -35905,-134053 -13110,-37558 -25275,-68621 -35787,-92951 -11102,-24330 -16417,-42283 -16417,-54920 0,-7323 1535,-13701 5315,-19488 3661,-5315 8976,-10039 16299,-12756 6850,-3071 16889,-5787 30118,-7323 12638,-1654 27992,-2126 46416,-2126 13228,0 24803,472 34842,1535 9567,1063 18543,2126 25866,3779 8031,1535 14882,4134 21141,7913 5787,3661 11693,7913 17480,13701 5787,5787 14764,22677 27401,50196 13228,27992 25393,63896 38031,108187 12165,44291 23267,95549 32716,153659 10039,58109 14764,119880 14764,185784 0,114565 -15826,214366 -47952,300467 -31771,85983 -79251,158383 -142084,216965 -63306,58582 -141966,102990 -237043,132517 -94486,30118 -204799,44881 -331057,44881 -119289,0 -227004,-15354 -322553,-46416 -95077,-30708 -176335,-75589 -242830,-133580 -66613,-58109 -117281,-128856 -153186,-211177 -35314,-82439 -53267,-174800 -53267,-276727 0,-109250 17362,-202201 52794,-278735 34842,-77125 82321,-139958 141494,-189564 59172,-49015 128856,-85510 209051,-108778 79723,-23149 165233,-34842 256058,-34842l46416 0zm-75471 256649c-134053,-3189 -239641,26338 -316175,89172 -76652,62834 -114565,155312 -114565,278263 0,63424 12047,118817 35905,166296 23740,47598 54802,87164 94486,119289 38976,32244 84920,57046 136651,74526 52322,17362 106652,27401 163698,29527l0 -757073z"/>
+  <path id="2" class="fil1" d="M155427436 52056503c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,20078 3661,9449 6850,22086 8976,38976 2126,16417 3071,36968 3071,61771 0,26456 -945,47598 -3071,63896 -2126,16889 -5315,29645 -8976,39094 -4252,9567 -9567,15826 -14882,20078 -5787,4252 -12638,6378 -21023,6378l-815773 0c-79132,0 -143619,6260 -191571,18425 -48661,12165 -90353,30118 -125667,53857 -34842,23740 -61771,53857 -80314,91298 -18425,37558 -27992,80786 -27992,129919 0,63896 22795,127202 68148,190626 45354,63896 111966,130391 199603,200075l973565 0c8386,0 15236,2126 21023,6378 5315,4134 10630,10512 14882,19960 3661,9567 6850,22204 8976,39094 2126,16417 3071,37558 3071,63424 0,25275 -945,45944 -3071,62243 -2126,16889 -5315,30118 -8976,39566 -4252,10039 -9567,16889 -14882,20669 -5787,3661 -12638,5197 -21023,5197l-1392849 0c-8386,0 -15236,-1535 -21023,-4724 -5315,-3189 -10630,-8976 -15354,-18425 -4724,-9567 -7913,-21141 -9567,-35905 -1535,-14291 -2008,-33779 -2008,-57519 0,-22795 472,-41810 2008,-56574 1654,-15236 4842,-26929 9567,-35314 4724,-7913 10039,-14291 15354,-17952 5787,-3189 12638,-5315 21023,-5315l184249 0c-88109,-78188 -152478,-155785 -193225,-233854 -40629,-77597 -61180,-155785 -61180,-234917 0,-92479 15826,-170548 47007,-233972 31653,-63306 73936,-114565 126139,-153659 52794,-38976 114565,-66967 185312,-83857 70747,-16889 155785,-25393 254523,-25393l850024 0z"/>
+  <path id="3" class="fil1" d="M154634340 51105142c116691,0 231846,7323 345821,21614 113620,14291 226531,35905 337435,64959 111376,29055 221216,64369 328931,106061 107715,41692 213776,90353 319364,146218 4724,2716 9567,7441 13701,13819 4252,6260 8031,14173 10630,23740 3189,10039 5315,21614 6378,34842 945,13701 1535,29527 1535,48070 0,26929 -1063,47479 -3661,62834 -2716,14764 -6850,25866 -12756,32125 -5197,6850 -12638,10039 -21614,9567 -8386,-591 -19015,-3189 -31653,-8504 -207988,-94959 -421292,-166769 -639437,-214839 -218028,-48542 -437591,-72873 -659398,-72873 -220626,0 -439716,24330 -657862,72873 -218028,48070 -430268,120943 -637784,218028 -8976,3661 -17952,5315 -26338,4252 -7913,-1063 -14764,-5315 -20078,-13701 -5315,-8504 -8976,-19606 -12165,-33897 -3189,-14764 -4724,-33779 -4724,-57519 0,-21614 591,-39566 2126,-53857 1535,-14764 4252,-26338 7441,-34842 2598,-8976 5787,-15236 8976,-19488 3071,-4252 6850,-7441 10984,-8976 211177,-106652 428260,-189564 651602,-250271 223224,-60235 450819,-90235 682547,-90235z"/>
+  <polygon class="fil0" points="81611876,94362709 101404905,94362709 101404905,83938133 81611876,83938133 "/>
+  <polygon class="fil5 str0" points="81611876,94362709 101404905,94362709 101404905,83938133 81611876,83938133 "/>
+  <path class="fil1" d="M88769464 85784872c0,22204 -1181,41456 -3543,57637 -2480,16299 -6024,29527 -11456,39684 -5433,9685 -11456,17480 -19252,21614 -7795,4842 -16181,7205 -25157,7205l-640146 0 0 1977484c0,9685 -2480,17480 -7205,24685 -4842,7205 -12638,12638 -24685,16771 -11456,4252 -27047,7913 -46298,10866 -19842,2953 -43818,4252 -73345,4252 -28228,0 -52204,-1299 -72046,-4252 -19842,-2953 -36141,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24685,-16771 -4842,-7205 -7205,-15000 -7205,-24685l0 -1977484 -640146 0c-8976,0 -17362,-2362 -25275,-7205 -7795,-4134 -13819,-11929 -18543,-21614 -4252,-10157 -8504,-23385 -11456,-39684 -3071,-16181 -4252,-35432 -4252,-57637 0,-22322 1181,-42046 4252,-58936 2953,-16771 7205,-30708 11456,-40865 4724,-10866 10748,-18661 18543,-22795 7913,-4842 16299,-7205 25275,-7205l1583239 0c8976,0 17362,2362 25157,7205 7795,4134 13819,11929 19252,22795 5433,10157 8976,24094 11456,40865 2362,16889 3543,36614 3543,58936z"/>
+  <path id="1" class="fil1" d="M89769603 86407538c0,25866 -591,47479 -1772,64959 -1181,17362 -3661,31181 -7205,41456 -2953,10157 -7795,17362 -13228,22795 -4842,5433 -12047,7795 -21614,7795 -9685,0 -21023,-2362 -34251,-7795 -13819,-5433 -28936,-10866 -45708,-15590 -16889,-5433 -36023,-10275 -57164,-15000 -21023,-4842 -43818,-7323 -68503,-7323 -29409,0 -58227,6024 -86455,17480 -27755,12047 -57755,31299 -88463,58936 -31181,27047 -63660,63070 -97912,107596 -33661,44999 -71574,99683 -112439,164643l0 1042895c0,9567 -2362,17362 -7205,23976 -4724,6024 -12047,12047 -22795,16889 -10866,4134 -25275,7795 -44527,10157 -18543,2362 -42637,3661 -72046,3661 -28936,0 -52322,-1299 -70983,-3661 -19252,-2362 -34251,-6024 -45117,-10157 -11338,-4842 -19134,-10866 -23385,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1585601c0,-9685 1772,-17480 5433,-24094 3543,-6024 10157,-12047 21023,-17362 10866,-5433 24094,-9094 40865,-10866 16181,-1772 38503,-2362 65550,-2362 25866,0 47479,591 64251,2362 17480,1772 30708,5433 40275,10866 9094,5315 16299,11338 20433,17362 3661,6614 6024,14409 6024,24094l0 230783c43346,-63778 84211,-115392 122006,-155666 38503,-39684 74526,-71574 108187,-94368 34251,-22913 67912,-38503 100982,-47479 33661,-8976 67322,-13228 101573,-13228 15000,0 32480,591 51731,2362 19252,1890 39684,5433 60708,9685 21023,4724 40275,10157 57046,16181 16889,6024 28936,11456 36141,17480 7205,6024 11929,11338 13819,16771 2362,5433 4724,12047 6614,19842 1772,8386 2953,20433 3543,36023 591,16299 591,37322 591,64369z"/>
+  <path id="2" class="fil1" d="M91219971 87892156c0,13819 -4842,24566 -13819,31771 -9685,7323 -22322,12047 -39094,15708 -16181,3543 -40275,5433 -72164,5433 -29999,0 -54684,-1890 -72636,-5433 -18071,-3661 -31299,-8386 -39684,-15708 -8504,-7205 -12638,-17362 -12638,-31771l0 -158737c-69093,73936 -146100,131691 -231374,172556 -85392,40275 -175509,60708 -270586,60708 -83502,0 -159210,-10866 -226531,-32480 -67322,-21614 -125076,-53503 -172556,-94368 -47479,-40865 -84684,-92006 -111140,-151415 -26456,-60117 -39684,-128029 -39684,-204445 0,-89526 18071,-167005 54684,-232555 36023,-66141 88345,-120825 156848,-164052 67912,-43346 151533,-76416 250035,-98030 98620,-21614 209760,-32480 333065,-32480l218736 0 0 -123777c0,-60708 -6614,-114801 -19252,-162281 -13228,-46889 -33661,-85983 -62479,-117163 -28818,-31299 -66141,-54802 -111848,-70392 -45590,-16181 -102164,-23976 -168895,-23976 -71455,0 -135824,8386 -192280,25748 -57164,17480 -107006,36141 -149643,57164 -42755,21023 -78778,39684 -107596,57046 -28228,17480 -49960,25866 -63778,25866 -9567,0 -17952,-2362 -24566,-7205 -7205,-4252 -13228,-11456 -18661,-21023 -5433,-8976 -8976,-21023 -11456,-35432 -2362,-15118 -3543,-30708 -3543,-48661 0,-28936 1772,-52322 6024,-69211 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43346,-33070 81731,-54094 38503,-20433 83621,-39684 134053,-57046 49842,-16889 105234,-31299 165351,-42755 59408,-11338 120116,-16771 180824,-16771 113620,0 210351,12638 290310,38503 79959,25748 144328,64251 193579,114092 49251,49960 84802,111848 107006,185784 22204,73936 33661,160509 33661,259011l0 1069941zm-288538 -726129l-248263 0c-79251,0 -148462,6614 -207280,20433 -58345,13228 -107006,33661 -146100,60117 -38503,26456 -66731,57755 -85392,94959 -17952,37322 -27047,79959 -27047,128029 0,82321 25866,147871 78188,196532 52322,48779 124958,73345 219327,73345 75825,0 146690,-19252 211650,-58227 64841,-38503 133344,-98030 204918,-177989l0 -337199z"/>
+  <path id="3" class="fil1" d="M94141729 85772234c0,33070 -2480,60708 -7795,82912 -5433,22204 -15118,40275 -28346,54094 -13819,13228 -31771,22913 -54684,28818 -23385,6024 -52204,9094 -87754,9094 -34251,0 -62479,-3071 -85865,-9094 -22913,-5905 -40865,-15590 -54684,-28818 -13228,-13819 -22913,-31889 -28936,-54094 -6024,-22204 -8976,-49842 -8976,-82912 0,-33070 2953,-60117 8976,-82321 6024,-21732 15708,-39684 28936,-54684 13819,-14527 31771,-24685 54684,-30118 23385,-5433 51613,-7795 85865,-7795 35551,0 64369,2362 87754,7795 22913,5433 40865,15590 54684,30118 13228,15000 22913,32952 28346,54684 5315,22204 7795,49251 7795,82321zm-32480 2118151c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42755,3661 -72164,3661 -27047,0 -49842,-1299 -69684,-3661 -19252,-2362 -34251,-6024 -45708,-10157 -10866,-4842 -18661,-10866 -22795,-16889 -4252,-6614 -6024,-14409 -6024,-23976l0 -1387888 -714082 0 0 1387888c0,9567 -2362,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18661,2362 -42046,3661 -70392,3661 -28228,0 -51613,-1299 -70274,-3661 -18661,-2362 -33661,-6024 -45117,-10157 -10748,-4842 -18661,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1387888 -710420 0 0 1387888c0,9567 -2480,17362 -7323,23976 -4724,6024 -12519,12047 -23385,16889 -11456,4134 -26456,7795 -45117,10157 -18543,2362 -42046,3661 -70274,3661 -28228,0 -51731,-1299 -70392,-3661 -18543,-2362 -33661,-6024 -44999,-10157 -10866,-4842 -18661,-10866 -23504,-16889 -4724,-6614 -7205,-14409 -7205,-23976l0 -1387888 -224760 0c-18661,0 -33070,-9567 -42046,-28228 -9685,-18661 -14409,-49251 -14409,-92006 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38503 4134,-9567 10157,-16771 17362,-21023 7205,-4252 15708,-6024 24685,-6024l224760 0 0 -149643c0,-109368 10866,-203146 31889,-281334 21023,-78069 52322,-142438 94368,-192871 42046,-50550 94368,-87754 157438,-111848 62597,-23976 135234,-36023 218264,-36023 51613,0 96731,4252 135234,13228 38385,8976 66613,16771 85274,24685 18071,7795 30708,15000 37322,22204 7205,6614 13228,16181 17952,27047 4252,11456 7913,24685 9685,40865 1772,15590 2362,34842 2362,57046 0,37913 -2953,64959 -8976,81731 -5433,17480 -16299,25866 -31299,25866 -9567,0 -20433,-2362 -32480,-7795 -11929,-5433 -27637,-11456 -46180,-18071 -18661,-5905 -40275,-11929 -64369,-17362 -23385,-5433 -50432,-7795 -79369,-7795 -86455,0 -147163,29999 -182713,89526 -34842,60117 -52204,155666 -52204,287357l0 153186 710420 0 0 -171257c0,-108778 10748,-202555 32480,-280743 21614,-78069 53385,-142438 94250,-193461 40984,-50550 92597,-87754 153895,-111848 61889,-23976 132872,-36023 212831,-36023 25866,0 51613,1181 78069,3543 26456,2480 49960,6024 70392,10275 20433,4842 39094,10157 54684,15000 15590,5433 26456,10866 32480,16889 6024,5905 10748,11929 14409,18543 3543,6614 6614,14409 9567,24094 3071,8976 4842,21023 6024,34842 1181,14409 1772,31299 1772,51731 0,37204 -2953,64251 -8976,80550 -5433,16771 -16181,24566 -31299,24566 -8386,0 -17952,-1772 -28228,-6024 -10748,-4134 -23385,-8386 -37795,-13228 -15118,-4724 -33661,-8976 -55983,-13228 -22204,-4134 -49251,-5905 -81140,-5905 -81140,0 -138777,29999 -173619,90116 -34251,59526 -51731,155666 -51731,287239l0 174328 914747 0c30118,0 52912,7795 68621,24094 15000,15590 22795,37204 22795,65432l0 1540012z"/>
+  <path id="4" class="fil1" d="M95820990 87646255c0,19842 -591,37322 -1772,51731 -1299,15000 -3071,27047 -6024,37322 -3071,10157 -6614,18543 -10866,26338 -4252,7913 -13228,19252 -28228,33661 -14409,15118 -39684,33070 -74526,55393 -35432,21614 -75117,41456 -119053,58227 -44409,17480 -91888,31299 -143619,41456 -51731,10866 -105234,16299 -160509,16299 -114211,0 -215193,-18661 -302947,-56574 -88345,-37204 -162281,-91888 -221098,-164052 -59526,-72164 -104644,-161099 -135942,-265625 -31181,-105234 -46889,-226059 -46889,-363655 0,-155666 19252,-289719 57164,-402158 38503,-111730 90707,-203736 156848,-275192 66731,-71574 144919,-124486 234445,-159328 90116,-34251 187556,-51731 292081,-51731 50550,0 99211,4842 146690,14527 48070,8976 91298,21614 131572,36614 39684,15590 75825,33070 106415,53503 31299,19842 54094,37204 67912,51023 14409,14527 24094,25866 29527,33661 4724,8504 9567,18071 13110,29527 3071,10748 5433,23385 6614,37795 1299,13819 1890,31889 1890,52912 0,45708 -5433,77597 -15708,96140 -10748,18071 -23385,27047 -38976,27047 -17480,0 -37913,-9567 -60708,-29409 -22913,-19252 -51731,-40865 -87164,-64251 -35551,-23504 -78188,-45117 -128029,-64369 -49960,-19842 -108778,-29409 -176690,-29409 -140076,0 -247673,53503 -322199,161099 -74526,106888 -111848,262554 -111848,466409 0,101573 9685,191099 28936,267987 19842,76416 48070,140667 85865,192398 37322,51023 83621,89526 138305,114801 54684,25275 117163,37795 187556,37795 67322,0 126139,-10748 176690,-31771 50432,-21023 93778,-44527 130982,-70392 37322,-25157 68503,-48070 93778,-68503 25275,-21023 44527,-31181 58936,-31181 7795,0 15000,2362 21023,7205 6024,4724 10748,12519 15000,23385 4252,11456 7205,25275 8976,42637 1890,16889 2480,37322 2480,60708z"/>
+  <path class="fil1" d="M87736372 91313985c0,114092 -18661,216728 -56456,308498 -37204,91298 -90589,169249 -160863,234090 -69566,64251 -154840,114092 -256176,149407 -101455,35432 -222161,52912 -363182,52912l-258066 0 0 818607c0,9567 -2362,17952 -7795,24566 -5433,7205 -13819,12638 -24566,16771 -11456,4252 -26456,7795 -45590,10866 -19842,2953 -43818,4134 -73227,4134 -29409,0 -53503,-1181 -73227,-4134 -19252,-3071 -34842,-6614 -46298,-10866 -11929,-4134 -19724,-9567 -24566,-16771 -4842,-6614 -7205,-15000 -7205,-24566l0 -2099962c0,-46889 12638,-80432 37204,-100274 24566,-19842 51613,-29999 82203,-29999l486724 0c49251,0 96731,1772 141730,6024 44999,4134 98384,13228 159564,26338 61889,13819 124250,39094 188501,75707 63660,37204 117636,82794 162635,136769 44409,54094 78660,116455 102636,187319 23976,70747 36023,149407 36023,234563zm-316884 24094c0,-93069 -17480,-170430 -51613,-232909 -34842,-61771 -77479,-108659 -129092,-139249 -51023,-29999 -103817,-49842 -157792,-57637 -54684,-8386 -108069,-12519 -159682,-12519l-279680 0 0 914629 273066 0c91298,0 167477,-12047 227476,-35432 60589,-23385 111022,-55747 152478,-97794 40747,-41456 72046,-91298 92951,-149407 21023,-58227 31889,-121297 31889,-189682z"/>
+  <path id="1" class="fil1" d="M89092725 91398668c0,25748 -591,47361 -1772,64841 -1181,17362 -3543,31181 -7205,41338 -2953,10275 -7795,17480 -13228,22913 -4724,5315 -11929,7795 -21614,7795 -9567,0 -20905,-2480 -34133,-7795 -13819,-5433 -28818,-10866 -45590,-15708 -16889,-5315 -36023,-10157 -57046,-15000 -21023,-4724 -43818,-7205 -68385,-7205 -29409,0 -58227,6024 -86455,17480 -27637,11929 -57637,31181 -88227,58818 -31181,26929 -63660,62952 -97794,107360 -33661,44999 -71455,99683 -112321,164525l0 1041241c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -1583239c0,-9567 1772,-17362 5315,-23976 3661,-6024 10275,-12047 21023,-17480 10866,-5315 24094,-8976 40865,-10748 16181,-1772 38385,-2362 65432,-2362 25748,0 47361,591 64133,2362 17480,1772 30708,5433 40275,10748 8976,5433 16181,11456 20433,17480 3543,6614 5905,14409 5905,23976l0 230429c43228,-63542 84093,-115155 121888,-155430 38385,-39566 74408,-71337 108069,-94250 34133,-22795 67794,-38385 100746,-47361 33661,-8976 67204,-13228 101455,-13228 15000,0 32480,591 51613,2480 19252,1772 39684,5315 60589,9567 21023,4724 40275,10157 57046,16181 16771,6024 28818,11456 36023,17362 7205,6024 12047,11456 13819,16889 2362,5315 4842,11929 6614,19724 1772,8504 2953,20433 3543,36023 591,16181 591,37204 591,64251z"/>
+  <path id="2" class="fil1" d="M90833875 92069050c0,129092 -16771,247909 -51023,356450 -33543,108069 -84565,201729 -151769,280271 -67204,78660 -151887,139840 -252751,183658 -101337,43818 -218972,66022 -352316,66022 -130155,0 -243657,-19134 -340269,-58227 -96612,-38385 -177044,-94723 -241177,-168540 -64251,-73818 -112321,-163934 -144092,-268932 -31771,-105589 -47361,-224996 -47361,-358931 0,-128974 16771,-247791 49724,-355860 33661,-108659 84093,-202201 151296,-280861 67204,-78660 151178,-139249 252043,-183068 100864,-43228 218500,-64841 352907,-64841 130273,0 243657,19252 340269,58227 96612,38385 177044,94841 241295,168658 64251,73818 112793,163225 145273,268932 31771,105589 47952,224405 47952,357041zm-302475 18661c0,-85865 -7795,-166887 -23976,-243066 -15590,-76298 -42046,-142911 -78660,-200548 -36023,-57637 -85746,-103226 -148226,-136179 -61771,-33661 -139840,-50432 -232909,-50432 -85746,0 -159564,15000 -221453,45590 -61771,30590 -112203,73818 -152359,129683 -40275,55747 -69684,121769 -88817,198067 -19842,76180 -29409,159564 -29409,249681 0,86928 7795,168540 23976,244838 15590,76180 42046,142793 79251,199839 37204,56456 86928,102045 148816,134998 62361,33661 140431,50432 233500,50432 84565,0 157792,-15000 220154,-45590 62479,-30590 113502,-73227 153659,-128384 40275,-55275 69684,-121297 88227,-197477 18661,-76298 28228,-160273 28228,-251452z"/>
+  <path id="3" class="fil1" d="M92664433 90764309c0,32952 -2362,60589 -7795,82794 -5433,22204 -14409,40275 -27047,53975 -13228,13228 -31181,22913 -53975,28818 -22795,6024 -51613,9094 -86455,9094 -34251,0 -62361,-3071 -85156,-9094 -22913,-5905 -41456,-15590 -54684,-28818 -13819,-13701 -23385,-31771 -28818,-53975 -6024,-22204 -8976,-49842 -8976,-82794 0,-33070 2953,-59999 8976,-82203 5433,-21614 15000,-39684 28818,-54684 13228,-14409 31771,-24566 54684,-29999 22795,-5433 50905,-7795 85156,-7795 34842,0 63660,2362 86455,7795 22795,5433 40747,15590 53975,29999 12638,15000 21614,33070 27047,54684 5433,22204 7795,49133 7795,82203zm-32480 2114962c0,9567 -2362,17362 -7086,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -709357 0 0 1385762c0,9567 -2480,17362 -7205,23976 -4842,6024 -12638,12047 -23504,16889 -11338,4134 -26338,7795 -44999,10157 -18543,2362 -41928,3543 -70156,3543 -28228,0 -51613,-1181 -70274,-3543 -18543,-2362 -33543,-6024 -44999,-10157 -10748,-4842 -18543,-10866 -23385,-16889 -4842,-6614 -7205,-14409 -7205,-23976l0 -1385762 -224524 0c-18543,0 -32952,-9567 -41928,-28228 -9685,-18543 -14409,-49251 -14409,-91770 0,-22204 1181,-40865 3543,-55865 2480,-15590 6024,-28228 10866,-38385 4134,-9685 10157,-16889 17362,-21023 7205,-4252 15590,-6024 24566,-6024l224524 0 0 -171021c0,-108659 10748,-202319 31771,-280271 21023,-78069 52204,-142202 93660,-193225 41456,-50432 93069,-87636 154249,-111730 61771,-23976 132045,-35905 211886,-35905 25157,0 51023,1181 76770,3543 25866,2362 49251,6024 70274,10157 21023,4842 39566,10275 55156,15000 16181,5433 27047,10866 32480,16889 5905,6024 10748,11929 14409,18543 3543,6614 5905,14409 8386,24094 2362,8976 4134,20905 5315,34724 1299,14409 1890,31181 1890,51613 0,37204 -3071,64251 -9094,80432 -5315,16771 -15590,24685 -29409,24685 -9567,0 -19134,-1890 -28700,-6024 -10275,-4252 -22913,-8386 -37913,-13228 -15590,-4842 -33543,-8976 -55156,-13228 -21614,-4134 -49251,-6024 -81613,-6024 -80432,0 -138068,29999 -171729,90116 -34133,59408 -50905,155430 -50905,286766l0 174091 911558 0c30708,0 52912,7795 67204,23976 15118,15590 22204,37204 22204,65432l0 1537649z"/>
+  <path id="4" class="fil1" d="M93497449 92879271c0,9567 -2362,17362 -7205,23976 -4724,6024 -11929,12047 -22795,16889 -10748,4134 -25157,7795 -44409,10157 -18543,2362 -42637,3543 -72046,3543 -28818,0 -52204,-1181 -70747,-3543 -19252,-2362 -34251,-6024 -44999,-10157 -11456,-4842 -19252,-10866 -23504,-16889 -4134,-6614 -5905,-14409 -5905,-23976l0 -2348462c0,-9567 1772,-17952 5905,-24566 4252,-7205 12047,-13228 23504,-18071 10748,-4134 25748,-7795 44999,-10157 18543,-2362 41928,-3661 70747,-3661 29409,0 53503,1299 72046,3661 19252,2362 33661,6024 44409,10157 10866,4842 18071,10866 22795,18071 4842,6614 7205,15000 7205,24566l0 2348462z"/>
+  <path id="5" class="fil1" d="M95379029 92018618c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>
+  <path id="6" class="fil1" d="M96817586 92447114c0,81022 -15000,153068 -44999,216728 -30118,62952 -72046,116455 -127321,159564 -55156,43228 -120588,76298 -196768,98502 -76298,22204 -160273,33543 -251570,33543 -56338,0 -109841,-4134 -160745,-13110 -51023,-8504 -96731,-19252 -137478,-33070 -40275,-13228 -74408,-27047 -102636,-41338 -28228,-14409 -48661,-27637 -61180,-39094 -13228,-11338 -22795,-28228 -28228,-49133 -6024,-21023 -8976,-49842 -8976,-86455 0,-22204 1181,-40865 3543,-55865 2362,-15590 5433,-27637 8386,-37204 3661,-9567 8976,-16181 15000,-20433 6614,-4134 13819,-5905 22204,-5905 12638,0 31889,7795 57046,23976 25157,15590 56456,32952 93069,51613 36614,18543 80432,36023 130746,51613 50432,16181 108069,23976 173501,23976 49251,0 93660,-5433 133226,-16181 40157,-10157 74408,-25866 103817,-46771 29409,-20433 51613,-46889 67794,-78660 15590,-31771 23504,-69684 23504,-113502 0,-44409 -11456,-82203 -34251,-112203 -22795,-30590 -52794,-57637 -89998,-81022 -37795,-23385 -79841,-44409 -126730,-62361 -46771,-18071 -94723,-37204 -144564,-57046 -49251,-20433 -97794,-42637 -145273,-67794 -47361,-25275 -89408,-55865 -127202,-92479 -37204,-36614 -67204,-79841 -89998,-130155 -22913,-50432 -34251,-110431 -34251,-181296 0,-61771 12047,-121297 36023,-178225 23976,-57046 59999,-106888 107951,-149525 48661,-42519 108659,-77361 180705,-103226 72046,-25748 156021,-38385 252633,-38385 42046,0 84093,3661 126730,10866 41928,7205 79723,16771 113974,27519 34251,10866 63070,22913 87046,35432 23976,13228 42637,23976 54566,34251 12638,9567 20433,17952 24685,24566 4134,7205 7205,15000 8976,23976 1772,8504 3543,19252 5433,31889 1772,13228 2362,28818 2362,47361 0,19842 -591,37204 -2362,51613 -1890,14409 -4842,26456 -9094,35432 -4134,9567 -8976,16181 -15000,20433 -6024,4134 -12519,6024 -19134,6024 -10866,0 -25866,-6614 -46298,-19842 -19724,-12638 -45590,-26456 -77361,-41456 -31771,-15000 -68975,-28818 -111612,-41338 -42637,-13228 -91888,-19842 -147045,-19842 -49251,0 -93069,5433 -130273,16771 -37795,10866 -68385,26456 -92361,46889 -24094,20315 -42637,44409 -54684,72636 -12638,27519 -18543,58109 -18543,90589 0,45590 11929,83975 35314,115155 23504,31299 53503,58227 91298,81731 37204,23385 80432,44409 128384,63542 48070,18661 96612,37795 146454,57637 49842,20433 99093,42637 147635,67204 48661,24566 91888,54684 129092,89408 37795,35432 67794,77479 90589,126612 22795,49251 34251,108069 34251,175863z"/>
+  <path class="fil6" d="M10188832 52785702c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>
+  <path id="1" class="fil6" d="M12046200 51915246c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="2" class="fil6" d="M13990260 51096284c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>
+  <path id="3" class="fil6" d="M15841486 51915246c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="4" class="fil6" d="M16672022 52885976c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>
+  <path class="fil6" d="M18099241 51932844c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>
+  <path class="fil6" d="M20071764 52789128c0,23740 -1299,44645 -4724,62952 -3307,19015 -8031,34488 -14173,46771 -6142,12756 -13582,21614 -23740,27637 -10157,6142 -20905,8858 -32480,8858l-1420014 0c-18307,0 -34606,-2008 -48779,-6732 -13582,-4724 -25748,-12165 -35196,-23031 -10157,-10157 -17598,-25748 -22322,-45354 -4724,-19606 -6732,-44054 -6732,-73109 0,-26456 1299,-49369 3307,-69093 2008,-19606 6142,-37204 12874,-52794 6732,-14882 15590,-29763 25748,-45354 10157,-14882 23740,-31062 39921,-48070l513062 -527943c119171,-121769 213894,-230783 285704,-327632 71692,-96022 126494,-184012 165824,-263972 38503,-79132 64251,-150942 76416,-215902 12283,-64959 18307,-125903 18307,-182713 0,-56928 -9449,-111022 -28464,-161808 -19606,-50786 -46653,-95431 -83266,-134053 -35787,-38503 -81140,-68975 -135942,-91298 -54212,-22322 -117163,-33897 -188264,-33897 -83266,0 -157674,11575 -224051,33897 -65668,22322 -123777,47361 -173973,73699 -49369,26456 -91298,51495 -124486,73818 -33188,22322 -58227,33897 -74408,33897 -9567,0 -18307,-2716 -25748,-8149 -7441,-5433 -13582,-13582 -18307,-25748 -4724,-11456 -8740,-27755 -11456,-47361 -2716,-20315 -4134,-44054 -4134,-71810 0,-19606 709,-36495 2008,-51377 1417,-14291 3425,-27047 6850,-37913 3307,-10157 7441,-20315 12874,-29763 5315,-8858 16181,-20315 31771,-34606 16299,-13464 43346,-32480 82558,-56101 38621,-24448 87991,-47361 146926,-70392 58227,-23740 123187,-42637 194288,-58936 70392,-15590 144801,-23622 222634,-23622 124604,0 233500,17598 326215,52794 93424,34488 170666,82558 232201,143501 61652,60826 107596,131218 138068,211768 30472,80550 45354,166532 45354,257948 0,81849 -7441,163816 -21614,244956 -14882,81258 -45354,169249 -92124,264090 -47361,94723 -115037,199603 -203736,315349 -87991,115746 -205744,249090 -352553,400032l-406174 424481 1116830 0c10157,0 20315,2716 30472,8740 10157,6142 19015,14882 25748,26456 7441,12165 12874,27047 16181,44645 3425,17598 4724,38621 4724,62243z"/>
+  <path class="fil6" d="M10191076 57659315c0,27047 -1417,49487 -4134,67085 -2716,17598 -6732,33188 -12874,46062 -6142,12165 -12874,21732 -21732,27755 -8740,6142 -18897,8858 -31062,8858l-1136672 0c-30472,0 -59645,-10157 -86691,-30472 -27165,-21023 -40747,-56928 -40747,-108423l0 -2379642c0,-10866 2716,-20315 8149,-27874 5433,-8031 14291,-14173 27755,-18897 12874,-4724 31181,-8858 53621,-12283 22322,-3307 49487,-4724 81258,-4724 33188,0 60353,1417 82676,4724 21732,3425 39330,7559 52204,12283 13582,4724 22441,10866 27874,18897 5315,7559 8031,17008 8031,27874l0 2221732 922542 0c12165,0 22322,2598 31062,8740 8149,6142 15590,14882 21732,25748 6142,11575 10157,26456 12874,45472 2716,18307 4134,40629 4134,67085z"/>
+  <path id="1" class="fil6" d="M10859214 57759589c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-9449 2126,-18307 6850,-25748 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,16299 8149,25748l0 1787921zm36614 -2390508c0,77361 -14882,129446 -44054,157320 -29173,27755 -82676,42046 -161336,42046 -77243,0 -130037,-13582 -158501,-40747 -28464,-27047 -42755,-78542 -42755,-154485 0,-77243 14882,-129446 44054,-157320 29173,-27755 82676,-41928 161336,-41928 77243,0 130155,13464 158619,40629 28464,27165 42637,78660 42637,154485z"/>
+  <path id="2" class="fil6" d="M13105984 56840590c0,155194 -16889,294089 -50786,418103 -33188,124014 -82676,229838 -148462,316530 -65078,87400 -145627,154604 -240586,200666 -94841,46771 -203973,69802 -326687,69802 -56928,0 -109722,-5433 -157911,-17008 -48070,-10748 -95549,-29055 -141612,-54212 -46062,-25748 -92242,-56928 -139013,-95549 -46062,-38621 -94841,-84684 -146336,-138895l0 219563c0,10157 -2716,19724 -8149,27755 -5433,8149 -13582,14291 -25748,19015 -12165,4724 -27165,8149 -44763,10866 -18307,2716 -41338,4016 -69093,4016 -26456,0 -49487,-1299 -67794,-4016 -19015,-2716 -33897,-6142 -46062,-10866 -11575,-4724 -19724,-10866 -23740,-19015 -4016,-8031 -6142,-16889 -6142,-27755l0 -2652118c0,-10748 2126,-20315 6850,-27755 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,17008 8149,27755l0 1068170c52912,-54212 103699,-100274 153895,-137596 49487,-36614 97557,-67085 145037,-90116 48070,-23031 95549,-39921 143029,-50786 47361,-10157 97557,-15590 150470,-15590 129446,0 239878,25748 332120,77243 91416,51495 165942,121297 223579,207398 57637,86691 99683,188382 126139,304955 26338,116573 39212,239996 39212,369442zm-341569 37913c0,-91534 -6732,-180233 -21023,-266334 -13464,-86809 -37913,-162635 -72518,-229130 -34488,-66377 -79959,-119998 -136887,-159918 -56928,-40629 -128029,-61062 -212831,-61062 -42046,0 -83975,6142 -125313,17716 -40747,12165 -82676,32480 -124722,60235 -42755,27874 -86809,63778 -132163,107833 -46062,43346 -94959,98975 -146454,165351l0 713019c90116,110431 176217,194524 258302,252161 81967,57519 168068,86691 256767,86691 82085,0 151887,-19606 210114,-59645 58345,-39921 105825,-92833 142438,-158619 36495,-65078 62952,-138895 79251,-220272 16889,-81967 25039,-164643 25039,-248027z"/>
+  <path id="3" class="fil6" d="M14644579 56087533c0,29173 -709,53621 -2008,73227 -1417,19606 -4134,35196 -8149,46771 -3425,11456 -8858,19606 -14882,25748 -5433,6142 -13582,8858 -24448,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6142 -32480,-12165 -51495,-17598 -19015,-6142 -40629,-11575 -64369,-17008 -23740,-5433 -49487,-8149 -77243,-8149 -33306,0 -65786,6850 -97675,19724 -31181,13582 -65078,35196 -99565,66377 -35314,30472 -71928,71219 -110549,121297 -37913,50905 -80668,112557 -126730,185784l0 1175884c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-10866 2126,-19606 6142,-27165 4016,-6732 11575,-13464 23740,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73936,-2716 29055,0 53503,591 72518,2716 19606,2008 34488,6024 45354,12165 10157,6142 18307,12874 23031,19606 4134,7559 6850,16299 6850,27165l0 260310c48779,-71928 94841,-130155 137478,-175627 43464,-44763 84093,-80668 122006,-106415 38621,-25748 76652,-43346 113856,-53503 38031,-10157 75944,-14882 114565,-14882 17008,0 36614,591 58345,2716 21614,2008 44645,6024 68385,10748 23740,5433 45472,11575 64487,18307 18897,6850 32480,12874 40629,19724 8149,6732 13582,12874 15590,19015 2716,6024 5433,13464 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,42046 709,72518z"/>
+  <path id="4" class="fil6" d="M16239392 57761597c0,15590 -5433,27874 -15590,35905 -10866,8149 -25039,13582 -44054,17716 -18307,4016 -45354,6024 -81376,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44763,-17716 -9449,-8031 -14173,-19606 -14173,-35905l0 -178934c-77951,83384 -164761,148462 -261019,194524 -96140,45472 -197831,68503 -304955,68503 -94250,0 -179642,-12165 -255468,-36614 -75944,-24448 -141021,-60353 -194524,-106415 -53621,-46062 -95549,-103699 -125431,-170784 -29763,-67794 -44763,-144328 -44763,-230429 0,-100982 20433,-188382 61771,-262318 40629,-74526 99565,-136179 176808,-185075 76652,-48779 170784,-85983 282042,-110431 111140,-24448 236452,-36614 375466,-36614l246728 0 0 -139604c0,-68503 -7559,-129446 -21732,-182949 -14882,-52912 -37913,-96967 -70511,-132163 -32480,-35314 -74526,-61771 -126021,-79369 -51495,-18307 -115274,-27047 -190508,-27047 -80668,0 -153186,9449 -216846,29055 -64369,19724 -120706,40747 -168776,64487 -48070,23622 -88817,44645 -121297,64369 -31889,19606 -56338,29173 -71810,29173 -10866,0 -20433,-2716 -27874,-8149 -8149,-4724 -14882,-12874 -21023,-23740 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54920 0,-32480 2008,-58936 6732,-77833 4724,-19015 16299,-37322 33897,-54330 17598,-16889 48779,-37204 92242,-60944 43346,-23031 94132,-44763 151060,-64369 56338,-19015 118699,-35314 186375,-48188 67204,-12874 135588,-18897 204091,-18897 128029,0 237161,14173 327278,43346 90235,29173 162753,72518 218264,128738 55629,56338 95549,126139 120706,209406 25039,83384 37913,181060 37913,292199l0 1206356zm-325270 -818725l-279916 0c-89526,0 -167477,7441 -233854,23031 -65786,15000 -120706,38031 -164761,67794 -43346,29881 -75235,65078 -96258,107124 -20315,42046 -30472,90116 -30472,144328 0,92833 29173,166769 88109,221689 58936,54802 141021,82676 247436,82676 85392,0 165351,-21732 238578,-65786 73109,-43346 150470,-110431 231138,-200666l0 -380190z"/>
+  <path id="5" class="fil6" d="M17886292 56087533c0,29173 -709,53621 -2008,73227 -1417,19606 -4134,35196 -8149,46771 -3425,11456 -8858,19606 -14882,25748 -5433,6142 -13582,8858 -24448,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6142 -32480,-12165 -51495,-17598 -19015,-6142 -40629,-11575 -64369,-17008 -23740,-5433 -49487,-8149 -77243,-8149 -33306,0 -65786,6850 -97675,19724 -31181,13582 -65078,35196 -99565,66377 -35314,30472 -71928,71219 -110549,121297 -37913,50905 -80668,112557 -126730,185784l0 1175884c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-10866 2126,-19606 6142,-27165 4016,-6732 11575,-13464 23740,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73936,-2716 29055,0 53503,591 72518,2716 19606,2008 34488,6024 45354,12165 10157,6142 18307,12874 23031,19606 4134,7559 6850,16299 6850,27165l0 260310c48779,-71928 94841,-130155 137478,-175627 43464,-44763 84093,-80668 122006,-106415 38621,-25748 76652,-43346 113856,-53503 38031,-10157 75944,-14882 114565,-14882 17008,0 36614,591 58345,2716 21614,2008 44645,6024 68385,10748 23740,5433 45472,11575 64487,18307 18897,6850 32480,12874 40629,19724 8149,6732 13582,12874 15590,19015 2716,6024 5433,13464 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,42046 709,72518z"/>
+  <path id="6" class="fil6" d="M19091349 57809076l-237870 658098c-8149,21023 -28464,37322 -61062,48779 -31889,11575 -81376,17008 -147753,17008 -34606,0 -62361,-1417 -83384,-4724 -21023,-3425 -37204,-9567 -48779,-17008 -10866,-8149 -16889,-19015 -18307,-31889 -1299,-13464 2008,-29055 9567,-48070l246610 -622194c-12165,-5433 -23740,-14291 -33897,-25748 -10748,-12165 -18307,-24448 -21614,-37913l-637784 -1707961c-10866,-27874 -15590,-50196 -15590,-65786 0,-16299 4724,-28464 15590,-37913 10866,-9567 27755,-15590 51495,-19015 23740,-3425 55629,-4724 95549,-4724 39330,0 70511,591 93542,2716 22322,2008 40039,6024 53503,11456 12874,4724 22441,12874 28464,22441 6142,10157 12283,23622 19015,40629l510345 1434187 6142 0 492038 -1441628c8149,-25748 17598,-42046 29173,-48779 10748,-7559 27755,-12874 50078,-16299 23031,-3425 55629,-4724 97675,-4724 37204,0 67794,1299 91416,4724 23740,3425 41338,9449 52204,19015 11575,9449 17008,21614 17008,37913 0,15590 -4134,35905 -11575,59645l-641799 1777763z"/>
+  <path class="fil6" d="M10188832 89930466c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>
+  <path id="1" class="fil6" d="M12046200 89060009c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="2" class="fil6" d="M13990260 88241048c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>
+  <path id="3" class="fil6" d="M15841486 89060009c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="4" class="fil6" d="M16672022 90030740c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>
+  <path class="fil6" d="M18099241 89077608c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>
+  <path class="fil6" d="M20075898 89946056c0,25039 -2008,46062 -6142,62952 -4016,17008 -8740,31181 -15590,41338 -6732,10866 -14173,18307 -22913,23031 -8858,4724 -17598,6732 -26456,6732l-1340173 0c-8858,0 -17598,-2008 -25748,-6732 -7441,-4724 -15590,-12165 -22322,-23031 -7441,-10157 -12874,-24330 -16889,-41338 -4134,-16889 -6142,-37913 -6142,-62952 0,-23622 2008,-43936 6142,-60944 4016,-17598 8740,-31771 14882,-42637 5315,-11456 12874,-19606 21614,-25629 8858,-6142 18307,-8858 28464,-8858l533967 0 0 -1953508 -496054 296569c-25039,12874 -45354,20905 -60944,23622 -14882,2716 -27047,0 -36614,-8740 -9449,-8858 -15472,-23031 -18897,-42637 -3425,-19724 -4724,-44763 -4724,-75117 0,-22441 709,-42046 2716,-57637 2008,-16181 5433,-29055 9449,-39921 4016,-10157 9449,-19606 16889,-27755 6850,-7441 16299,-15590 28464,-23622l591604 -378418c5433,-4016 11456,-7441 19606,-10157 8149,-2008 18307,-4724 29763,-7441 12165,-2716 25748,-4724 42046,-5433 15472,-591 35196,-591 59526,-591 31062,0 58227,1299 79132,4016 21023,2716 37322,6024 49487,10866 12165,4724 19606,10748 23622,17598 4134,7441 6142,14882 6142,22913l0 2255392 464283 0c10866,0 21023,2716 29881,8858 9449,6024 16889,14173 22913,25629 6142,10866 10866,25039 14291,42637 3307,17008 4724,37322 4724,60944z"/>
+  <path class="fil6" d="M10188832 94803371c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>
+  <path id="1" class="fil6" d="M10856261 94903644c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-9449 2008,-18189 6732,-25748 4724,-8031 13582,-14882 26456,-20196 12165,-4842 29055,-8858 50786,-11575 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11575 12165,5315 20315,12165 25629,20196 5433,7559 8149,16299 8149,25748l0 1785676zm36614 -2387437c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28464,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28346,27047 42637,78542 42637,154249z"/>
+  <path id="2" class="fil6" d="M13100197 93985708c0,155076 -16889,293853 -50786,417630 -33188,123895 -82558,229484 -148226,316175 -64959,87282 -145509,154249 -240350,200311 -94723,46771 -203736,69684 -326215,69684 -56810,0 -109604,-5315 -157674,-16889 -48070,-10748 -95431,-29055 -141494,-54094 -46062,-25748 -92006,-56928 -138777,-95431 -46062,-38621 -94723,-84684 -146218,-138777l0 219327c0,10157 -2716,19606 -8031,27755 -5433,8031 -13582,14173 -25748,18897 -12165,4724 -27165,8149 -44763,10866 -18189,2716 -41220,4016 -68975,4016 -26456,0 -49369,-1299 -67676,-4016 -19015,-2716 -33897,-6142 -46062,-10866 -11456,-4724 -19606,-10866 -23622,-18897 -4134,-8149 -6142,-17008 -6142,-27755l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 1066752c52794,-54094 103581,-100156 153659,-137360 49487,-36614 97439,-66967 144919,-89998 47952,-23031 95431,-39921 142793,-50786 47361,-10157 97439,-15590 150234,-15590 129328,0 239641,25748 331648,77125 91416,51495 165824,121179 223461,207162 57519,86691 99447,188146 125785,304601 26456,116455 39330,239641 39330,368852zm-341214 37913c0,-91298 -6732,-179997 -20905,-265979 -13582,-86691 -37913,-162399 -72400,-228775 -34606,-66377 -79959,-119762 -136769,-159800 -56810,-40511 -127911,-60826 -212595,-60826 -41928,0 -83857,6024 -125195,17598 -40629,12165 -82558,32480 -124486,60235 -42637,27755 -86691,63542 -132045,107596 -46062,43346 -94723,98856 -146218,165115l0 712074c89998,110313 175981,194288 257948,251806 81849,57519 167832,86691 256531,86691 81849,0 151651,-19606 209760,-59526 58227,-40039 105589,-92833 142202,-158501 36495,-64959 62952,-138659 79132,-219917 17008,-81967 25039,-164525 25039,-247791z"/>
+  <path id="3" class="fil6" d="M14636665 93233714c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>
+  <path id="4" class="fil6" d="M16269982 94905652c0,15590 -5433,27755 -15590,35905 -10866,8031 -25039,13464 -44054,17598 -18189,4016 -45354,6024 -81140,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44645,-17598 -9449,-8149 -14173,-19724 -14173,-35905l0 -178698c-77833,83266 -164525,148226 -260665,194288 -96140,45354 -197595,68266 -304601,68266 -94014,0 -179288,-12165 -255114,-36495 -75825,-24330 -140785,-60235 -194288,-106297 -53503,-45944 -95431,-103581 -125195,-170548 -29881,-67676 -44763,-144210 -44763,-230193 0,-100746 20315,-188146 61652,-261846 40629,-74526 99447,-136061 176690,-184839 76416,-48779 170548,-85983 281570,-110313 111022,-24330 236216,-36614 374993,-36614l246374 0 0 -139368c0,-68385 -7441,-129328 -21732,-182831 -14882,-52794 -37795,-96731 -70392,-131927 -32480,-35196 -74408,-61652 -125903,-79251 -51377,-18189 -115037,-27047 -190154,-27047 -80550,0 -152950,9449 -216610,29173 -64251,19606 -120470,40511 -168540,64251 -48070,23740 -88699,44645 -121179,64251 -31771,19724 -56101,29173 -71692,29173 -10866,0 -20315,-2716 -27755,-8149 -8149,-4724 -14882,-12874 -21023,-23622 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54802 0,-32480 2008,-58818 6732,-77833 4724,-18897 16299,-37204 33897,-54094 17598,-17008 48661,-37322 92006,-60944 43346,-23031 94132,-44645 150942,-64369 56219,-18897 118462,-35196 186138,-47952 67085,-12874 135352,-19015 203736,-19015 127911,0 236925,14173 326923,43346 90116,29055 162517,72400 218028,128620 55511,56101 95431,125903 120470,209169 25039,83266 37913,180705 37913,291727l0 1204821zm-324915 -817662l-279562 0c-89408,0 -167241,7441 -233500,23031 -65668,14882 -120470,37913 -164525,67676 -43346,29763 -75117,64959 -96140,106888 -20315,42046 -30472,89998 -30472,144210 0,92715 29173,166532 87991,221335 58936,54802 140785,82558 247082,82558 85274,0 165233,-21614 238342,-65668 73109,-43346 150234,-110313 230783,-200311l0 -379718z"/>
+  <path id="5" class="fil6" d="M17914756 93233714c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>
+  <path id="6" class="fil6" d="M19118159 94953014l-237515 657272c-8149,20905 -28464,37204 -60944,48661 -31771,11575 -81258,17008 -147517,17008 -34606,0 -62361,-1417 -83266,-4724 -21023,-3425 -37204,-9567 -48779,-17008 -10866,-8031 -16889,-18897 -18307,-31771 -1299,-13582 2126,-29055 9567,-48070l246374 -621367c-12165,-5433 -23740,-14173 -33897,-25748 -10866,-12165 -18307,-24330 -21614,-37913l-636957 -1705717c-10866,-27755 -15590,-50078 -15590,-65668 0,-16181 4724,-28346 15590,-37913 10866,-9449 27755,-15472 51377,-18897 23740,-3425 55511,-4724 95549,-4724 39212,0 70392,591 93305,2716 22441,2008 40039,6024 53503,11456 12874,4724 22322,12874 28464,22322 6024,10157 12165,23740 18897,40629l509755 1432297 6024 0 491448 -1439738c8149,-25748 17598,-41928 29055,-48779 10866,-7441 27755,-12756 50196,-16181 22913,-3425 55511,-4724 97439,-4724 37204,0 67676,1299 91416,4724 23622,3425 41220,9449 52086,18897 11456,9567 16889,21732 16889,37913 0,15590 -4016,35905 -11456,59645l-641091 1775401z"/>
+  <polygon class="fil7" points="23044900,114832734 99130497,114832734 99130497,104597722 23044900,104597722 "/>
+  <path class="fil6" d="M26466255 110392105c0,119880 -22322,226768 -66377,320900 -44645,93424 -106297,173265 -184839,238933 -78424,64959 -171139,114329 -277436,147517 -107006,33188 -221335,49369 -344521,49369 -85983,0 -165824,-7441 -238933,-21614 -73818,-14882 -139486,-33188 -197004,-54094 -57519,-21023 -105589,-43346 -144919,-65668 -38503,-23031 -66259,-42046 -81140,-58227 -15590,-15590 -26456,-35905 -33897,-60235 -7441,-24448 -10748,-56928 -10748,-97439 0,-29173 1299,-53503 4016,-72518 2716,-18897 6732,-34488 11456,-45944 5433,-12283 12165,-20315 20315,-25039 8149,-4842 17008,-6850 27755,-6850 18307,0 44645,11575 78542,33897 33188,22322 76534,46653 129919,73109 52794,25629 116455,50786 191571,73699 74526,23031 161099,34606 258539,34606 74526,0 142202,-10157 203855,-29763 61534,-19724 114329,-47479 158383,-83975 44645,-35905 78424,-80550 102164,-133344 23740,-52794 35905,-113029 35905,-180115 0,-72400 -16299,-134643 -49487,-186138 -33070,-51377 -76416,-96731 -130628,-136061 -54802,-38503 -116336,-74408 -185430,-106888 -69684,-32480 -140785,-64959 -213185,-98856 -72518,-33779 -143501,-71101 -211886,-112321 -69093,-40629 -130628,-88699 -184839,-144210 -54094,-55511 -98148,-120470 -131218,-195587 -33897,-74408 -50786,-163816 -50786,-268105 0,-107596 19606,-203028 58227,-286885 39212,-83266 93305,-153659 162399,-210587 69684,-56810 152241,-100156 247791,-129919 96022,-29763 198894,-44645 309916,-44645 56928,0 113738,4724 171257,14882 57519,10157 111730,23031 162517,39921 50786,16181 96140,35196 136061,55511 39212,20315 65668,37204 77833,49369 12874,12874 20905,22322 25039,29763 4016,7441 6732,17008 9449,27755 2716,11575 4724,25039 6142,41338 1299,15590 2008,35905 2008,61534 0,23740 -709,44763 -2716,63660 -2008,18307 -5433,33897 -9449,46653 -3425,12283 -9567,21732 -16299,27755 -7441,6142 -15590,8858 -25039,8858 -14882,0 -37204,-9449 -68385,-27755 -31062,-18897 -68975,-39212 -114329,-62952 -44763,-23031 -98148,-44054 -159800,-62952 -60944,-19606 -129919,-29055 -207162,-29055 -70983,0 -133344,9449 -186138,28346 -52794,19606 -96731,44763 -131218,76534 -33897,31771 -59645,68975 -77243,112321 -16889,44054 -25748,89998 -25748,138777 0,71101 16299,132635 49487,184131 33188,51377 77125,96731 131927,136769 55511,39921 117872,75707 188264,108896 69684,33188 141375,66377 214484,100156 72518,33897 144210,70392 213894,111022 70392,39921 132754,87991 188264,142911 54802,54802 98738,119053 132635,194170 33779,74526 50786,162517 50786,264680z"/>
+  <path id="1" class="fil6" d="M29039004 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>
+  <path id="2" class="fil6" d="M31482425 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <polygon class="fil8" points="32954997,113560119 43839840,113560119 43839840,105897383 32954997,105897383 "/>
+  <path class="fil6" d="M37255785 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>
+  <path id="1" class="fil6" d="M39861841 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>
+  <path id="2" class="fil6" d="M42298529 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <polygon class="fil8" points="55157904,113560119 66015700,113560119 66015700,105897383 55157904,105897383 "/>
+  <path class="fil6" d="M59451960 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>
+  <path id="1" class="fil6" d="M62058016 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>
+  <path id="2" class="fil6" d="M64494704 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <polygon class="fil8" points="86052505,113560119 96910183,113560119 96910183,105897383 86052505,105897383 "/>
+  <path class="fil6" d="M91287410 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <path id="1" class="fil6" d="M93520362 108896266c0,25039 -1299,47361 -4016,66259 -2716,19015 -6732,35196 -11456,48070 -5433,12165 -12283,21023 -20315,26456 -7441,5433 -16299,8149 -25748,8149 -15590,0 -41928,-12874 -79251,-37913 -37204,-25039 -86573,-53503 -148816,-83975 -62361,-30472 -136769,-58936 -223461,-83975 -86573,-25039 -189445,-37913 -307908,-37913 -142202,0 -268814,25748 -381135,77243 -112321,52086 -207752,123187 -285585,214484 -78542,91416 -138068,199721 -180115,325624 -41220,125903 -62243,261964 -62243,408890 0,164406 23031,309916 68385,437236 45944,126494 108896,234208 190154,321490 80550,87282 176690,153659 289011,198304 111730,45354 234917,67676 368261,67676 79841,0 160391,-9449 241649,-29055 81258,-19015 157084,-48070 227476,-85983l0 -749986 -594320 0c-23031,0 -39921,-11456 -50786,-33779 -11456,-22441 -16889,-57637 -16889,-105707 0,-25039 1299,-46653 4016,-64251 2716,-17598 6732,-32480 12874,-43936 6142,-10866 12874,-19015 21023,-24448 7441,-5433 17598,-8149 29763,-8149l814237 0c14882,0 29173,2716 44054,8149 14173,5433 27755,12874 39212,23740 12165,10748 21614,25039 27755,43346 6732,18897 10157,39921 10157,63542l0 979471c0,34488 -6142,64369 -17598,89408 -12165,25039 -37204,47361 -75825,66259 -37913,19015 -87991,39921 -148934,62243 -60826,23031 -123187,42046 -188146,58227 -64959,15590 -130628,27755 -196296,35196 -66377,8149 -131927,12165 -196296,12165 -199012,0 -376292,-30354 -531959,-92006 -156375,-61534 -288420,-149525 -396016,-263263 -107596,-113738 -190272,-249799 -247082,-408890 -56810,-159092 -85274,-335663 -85274,-531959 0,-203736 30472,-388576 92006,-553691 61652,-165233 148226,-306018 259956,-423063 111730,-116455 245665,-206453 402040,-270822 157084,-64251 330348,-96022 520502,-96022 98148,0 189564,8740 275546,25629 85983,17598 162399,37913 229484,60944 66259,23740 122478,48779 168540,76534 45354,27047 76416,49369 94014,66967 17008,16889 29173,37204 35196,59526 6850,22441 10157,54920 10157,97557z"/>
+  <polygon class="fil9" points="22395069,25479462 157697474,25479462 157697474,9937498 22395069,9937498 "/>
+  <path class="fil1" d="M71745833 12730282c0,128620 -20905,244366 -63660,347946 -41928,102872 -102164,190863 -181296,263972 -78542,72400 -174682,128620 -289129,168540 -114329,39921 -250389,59526 -409481,59526l-291018 0 0 923251c0,10866 -2716,20315 -8858,27755 -6024,8149 -15472,14291 -27755,19015 -12874,4724 -29763,8740 -51377,12165 -22322,3425 -49487,4724 -82558,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39212,-7441 -52086,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2368304c0,-52794 14291,-90707 42046,-113029 27755,-22441 58227,-33897 92715,-33897l548966 0c55511,0 108896,2008 159682,6732 50786,4724 111022,14882 180115,29881 69684,15472 140076,43936 212476,85274 71810,41928 132754,93424 183422,154249 50078,60944 88699,131336 115746,211177 27165,79959 40629,168540 40629,264680zm-357395 27047c0,-104880 -19606,-192162 -58227,-262554 -39212,-69684 -87282,-122596 -145509,-157084 -57519,-33779 -117045,-56101 -177989,-64959 -61652,-9449 -121888,-14173 -180115,-14173l-315349 0 0 1031556 307908 0c102990,0 188855,-13582 256649,-39921 68266,-26456 125195,-62952 171847,-110431 46062,-46653 81258,-102872 104880,-168540 23740,-65550 35905,-136651 35905,-213894z"/>
+  <path id="1" class="fil1" d="M73275569 12825714c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>
+  <path id="2" class="fil1" d="M75113332 13524914c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="3" class="fil1" d="M76735783 14008212c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>
+  <path id="4" class="fil1" d="M78722479 13524914c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="5" class="fil1" d="M80759254 14495644c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>
+  <path id="6" class="fil1" d="M82286982 14362891c0,38621 -2716,69093 -8149,91416 -4724,22322 -12874,39212 -23622,49369 -10157,10866 -26456,21023 -47479,29881 -20905,9449 -45354,16889 -72400,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -60235,6024 -90707,6024 -92715,0 -171847,-12165 -237515,-36495 -65668,-24448 -119880,-61652 -162517,-111022 -41928,-49487 -72400,-112439 -92006,-188146 -18897,-75825 -28464,-165233 -28464,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 454834 0c10748,0 19606,2008 27755,6732 7441,4724 14882,12874 20315,23740 6024,11456 10157,25748 12874,43346 2598,16889 4016,37913 4016,62952 0,47952 -6142,82558 -17598,103463 -12165,21023 -27755,31889 -47361,31889l-454834 0 0 992935c0,122478 18189,215311 54094,277554 35905,62952 100864,94014 194288,94014 29763,0 56810,-2598 80550,-8740 23622,-6142 44645,-12165 62952,-19015 18307,-6732 33779,-12756 47361,-18897 12874,-6142 25039,-8740 35196,-8740 6732,0 12874,1299 18897,4724 5433,3307 10157,9449 13582,18897 3425,9449 6142,21614 8858,37913 2598,15590 4016,35905 4016,59526z"/>
+  <path id="7" class="fil1" d="M84016439 14497652c0,15590 -5433,27755 -15590,35905 -10866,8031 -25039,13464 -44054,17598 -18189,4016 -45354,6024 -81140,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44645,-17598 -9449,-8149 -14173,-19724 -14173,-35905l0 -178698c-77833,83266 -164525,148226 -260665,194288 -96140,45354 -197595,68266 -304601,68266 -94014,0 -179288,-12165 -255114,-36495 -75825,-24330 -140785,-60235 -194288,-106297 -53503,-45944 -95431,-103581 -125195,-170548 -29881,-67676 -44763,-144210 -44763,-230193 0,-100746 20315,-188146 61652,-261846 40629,-74526 99447,-136061 176690,-184839 76416,-48779 170548,-85983 281570,-110313 111022,-24330 236216,-36614 374993,-36614l246374 0 0 -139368c0,-68385 -7441,-129328 -21732,-182831 -14882,-52794 -37795,-96731 -70392,-131927 -32480,-35196 -74408,-61652 -125903,-79251 -51377,-18189 -115037,-27047 -190154,-27047 -80550,0 -152950,9449 -216610,29173 -64251,19606 -120470,40511 -168540,64251 -48070,23740 -88699,44645 -121179,64251 -31771,19724 -56101,29173 -71692,29173 -10866,0 -20315,-2716 -27755,-8149 -8149,-4724 -14882,-12874 -21023,-23622 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54802 0,-32480 2008,-58818 6732,-77833 4724,-18897 16299,-37204 33897,-54094 17598,-17008 48661,-37322 92006,-60944 43346,-23031 94132,-44645 150942,-64369 56219,-18897 118462,-35196 186138,-47952 67085,-12874 135352,-19015 203736,-19015 127911,0 236925,14173 326923,43346 90116,29055 162517,72400 218028,128620 55511,56101 95431,125903 120470,209169 25039,83266 37913,180705 37913,291727l0 1204821zm-324915 -817662l-279562 0c-89408,0 -167241,7441 -233500,23031 -65668,14882 -120470,37913 -164525,67676 -43346,29763 -75117,64959 -96140,106888 -20315,42046 -30472,89998 -30472,144210 0,92715 29173,166532 87991,221335 58936,54802 140785,82558 247082,82558 85274,0 165233,-21614 238342,-65668 73109,-43346 150234,-110313 230783,-200311l0 -379718z"/>
+  <path id="8" class="fil1" d="M86133645 12660599c39330,0 66377,8740 81258,27047 14173,17598 21614,43346 21614,77833l0 1730166c0,10748 -2598,19606 -8031,27047 -5433,6732 -14291,13464 -26456,18897 -12874,4724 -29763,8858 -50786,11575 -20905,2716 -46653,4016 -77125,4016 -33188,0 -60235,-1299 -81258,-4016 -20905,-2716 -37913,-6850 -50786,-11575 -12165,-5433 -20905,-12165 -26338,-18897 -5433,-7441 -8149,-16299 -8149,-27047l0 -1562925 -921834 0 0 992935c0,122478 18189,215311 54802,277554 35905,62952 101455,94014 194878,94014 30472,0 57519,-2598 81967,-8740 23622,-6142 44645,-12165 62952,-19015 18897,-6732 34488,-12756 48070,-18897 12874,-6142 25039,-8740 35787,-8740 6142,0 12874,1299 18307,4724 6142,3307 10866,9449 14173,18897 3425,9449 6142,21614 8858,37913 2716,15590 4016,35905 4016,59526 0,38621 -2716,68385 -8031,90116 -5433,22322 -12874,38503 -23740,50078 -10866,11456 -26456,21614 -47361,30472 -21732,9449 -46062,16889 -73109,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -61534,6024 -92006,6024 -92833,0 -171965,-12165 -238342,-36495 -66259,-24448 -120470,-61652 -163107,-111022 -41928,-49487 -73109,-112439 -92006,-188146 -19606,-75825 -29173,-165233 -29173,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 1147893 0zm139486 -552392c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28346,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28464,27047 42637,78542 42637,154249z"/>
+  <path id="9" class="fil1" d="M88499350 13581842c0,145509 -18897,279562 -57519,402040 -37913,121888 -95431,227476 -171257,316057 -75825,88699 -171257,157792 -284877,207162 -114447,49369 -247082,74408 -397316,74408 -146926,0 -274838,-21614 -383851,-65550 -109014,-43346 -199721,-107006 -272121,-190272 -72400,-83266 -126612,-184721 -162399,-303184 -35905,-119171 -53503,-253814 -53503,-404756 0,-145627 18897,-279562 56219,-401449 37913,-122478 94723,-228067 170548,-316766 75825,-88699 170548,-157084 284286,-206453 113738,-48779 246374,-73109 398024,-73109 146808,0 274838,21614 383733,65668 109014,43346 199721,106888 272121,190154 72400,83266 127202,184131 163816,303302 35905,119053 54094,253106 54094,402749zm-341096 20905c0,-96731 -8740,-188146 -27047,-274129 -17598,-85865 -47361,-161099 -88699,-226059 -40629,-64959 -96849,-116336 -167241,-153659 -69684,-37913 -157674,-56810 -262554,-56810 -96849,0 -180115,16889 -249799,51377 -69684,34606 -126612,83266 -171965,146218 -45354,62952 -78424,137478 -100156,223461 -22322,85865 -33188,179997 -33188,281570 0,98148 8858,190154 27165,276137 17598,85983 47361,161099 89290,225350 41928,63660 98148,115155 167832,152359 70392,37913 158383,56810 263381,56810 95431,0 177989,-16889 248381,-51377 70392,-34606 127911,-82676 173265,-144919 45354,-62243 78542,-136651 99565,-222634 20905,-85983 31771,-180705 31771,-283696z"/>
+  <path id="10" class="fil1" d="M90519235 14495644c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>
+  <path id="11" class="fil1" d="M91944682 13869435c0,-72400 10157,-141375 29763,-207044 20315,-65668 51495,-129328 93424,-190272 42637,-61534 97439,-121061 165824,-178698 67676,-57519 150234,-115746 246374,-173265 -52794,-71692 -98148,-136651 -135352,-194878 -37913,-58227 -69093,-112439 -93424,-162517 -24330,-50078 -41928,-98148 -52794,-143501 -10157,-45944 -15590,-92006 -15590,-138068 0,-81849 13582,-160391 42046,-234799 27755,-74526 71692,-140903 133344,-198422 61534,-57519 140785,-102872 236807,-136651 96849,-33897 213894,-50786 351372,-50786 116455,0 217319,12874 302593,37913 85274,25039 155666,60944 211768,106888 56219,46062 98856,102282 127321,167241 28464,65668 42637,138777 42637,219327 0,77833 -12874,149525 -37913,214484 -25039,64369 -65668,127321 -121179,188264 -55511,60826 -126612,121061 -213185,181414 -86691,60235 -190863,123187 -314049,189445 44645,54212 94014,111022 146808,169249 52794,58936 107715,118462 165233,177989 57519,59645 116336,117754 176572,175391 60353,57519 119171,113029 177398,165824 26338,-35905 50786,-76534 71692,-122596 21023,-45354 39330,-93424 55511,-144092 15590,-51495 27755,-102872 35905,-156375 7441,-52794 11575,-106297 11575,-160391l0 -71810c0,-12874 2716,-23740 6732,-32480 4724,-8858 12874,-15590 23031,-21614 10748,-6142 26338,-10157 46653,-12874 20315,-2716 47361,-4134 80550,-4134 29173,0 53503,709 73818,2008 21023,1417 37913,4134 50786,8858 13464,4724 23031,12165 29055,21614 5433,10157 8858,23740 8858,40629l0 50078c0,73818 -6142,146926 -19015,218028 -12874,71692 -29763,141375 -51377,209169 -21732,68266 -48779,133344 -81258,195587 -32480,62243 -68385,119762 -108305,172556 59526,46771 111730,85983 155666,117754 44645,31181 81849,56928 113029,76534 31181,19606 56928,33188 77125,41338 21023,7441 37322,11456 50786,11456 13582,0 25748,-709 37913,-2008 11575,-1417 21023,709 28464,6024 7441,5433 12874,15590 16889,31889 4134,15590 6142,40629 6142,73699 0,32598 -709,59645 -2008,79251 -1417,19606 -3425,34488 -6850,44645 -3307,10157 -9449,18307 -16889,25039 -8149,6850 -22322,12165 -44054,17598 -20905,5433 -48661,8149 -83148,8149 -26456,0 -55511,-4724 -87400,-13582 -31062,-9449 -68385,-25629 -111022,-48661 -41928,-23031 -91298,-54212 -147517,-93424 -56219,-39212 -121888,-89408 -197004,-149643 -55511,44763 -114329,86691 -175981,125313 -61534,37913 -126494,70983 -196296,98148 -68975,27047 -142084,48070 -217909,62952 -75825,15472 -158383,22913 -247082,22913 -83266,0 -162399,-7441 -236925,-21614 -74408,-14882 -143501,-35905 -207044,-62952 -63660,-27047 -120588,-60944 -170666,-101573 -50078,-41220 -92715,-87991 -127911,-140076 -35196,-52086 -62243,-111022 -81258,-175272 -18897,-64959 -29055,-135352 -29055,-210587zm585462 -1415289c0,35905 4724,72400 14882,109604 9567,37322 25039,75825 45354,116455 20315,39921 45354,83266 75235,129919 29763,46062 65550,98148 106179,155076 96849,-54212 177398,-104289 243066,-150234 65668,-45354 117754,-89408 157674,-132045 39212,-42637 68385,-84565 85983,-127202 18307,-42046 27047,-87400 27047,-134761 0,-38621 -6732,-75825 -21023,-110313 -13464,-35196 -35787,-66377 -66259,-93424 -30472,-27047 -69093,-48779 -115037,-64959 -46062,-15590 -101573,-23740 -166532,-23740 -70392,0 -129328,8858 -177398,27165 -48661,17598 -87991,41220 -119053,70983 -31181,29763 -54212,65078 -68385,104289 -14882,39921 -21732,81258 -21732,123187zm-230075 1382219c0,68975 11456,131927 34488,188855 23031,56810 57519,106179 102164,148226 44763,41220 100864,73699 168540,97439 67794,23031 145627,34488 234208,34488 54212,0 107006,-5433 158383,-16889 51495,-11456 100864,-26456 147635,-46062 47361,-18897 92006,-42637 134053,-69684 42637,-27047 81140,-56219 117045,-86691 -69093,-59526 -137360,-121769 -205154,-185430 -68266,-64251 -133935,-128620 -197595,-193579 -63660,-64959 -124486,-129328 -183422,-193579 -58936,-64251 -112321,-126612 -161808,-187556 -65668,42755 -121179,84684 -165115,126612 -44645,41338 -79841,83266 -107006,124604 -27047,41928 -46653,83857 -58818,126494 -11575,42046 -17598,86691 -17598,132754z"/>
+  <path id="12" class="fil1" d="M97722531 14424543c10157,29055 16181,52086 16889,70392 709,17598 -4724,31181 -14882,40629 -10866,8740 -28464,14882 -52794,17598 -24330,2716 -56810,4016 -98148,4016 -40629,0 -73818,-709 -98148,-2716 -24330,-2008 -42637,-5433 -55511,-10157 -12874,-4724 -21614,-10748 -27755,-18897 -6142,-8149 -11456,-17598 -16889,-29763l-220035 -624792 -1066752 0 -210469 616642c-4134,12165 -8858,22322 -15590,31062 -6732,8858 -16299,15590 -29055,21732 -12283,6024 -30472,10157 -53503,12874 -23031,2716 -52794,4016 -89998,4016 -38621,0 -69802,-1299 -94132,-4724 -24330,-3425 -41928,-9449 -51495,-18897 -10157,-9567 -14882,-23031 -14173,-40629 709,-18307 6142,-41338 16889,-70392l860299 -2384721c5433,-14882 12874,-27047 21023,-35787 8858,-9567 21023,-17008 37913,-21732 16299,-5433 37204,-9449 63660,-11456 25629,-2008 58227,-2716 98148,-2716 41928,0 77125,709 104880,2716 27755,2008 50078,6024 66967,11456 17598,4724 30472,12874 40039,22322 9449,10157 16889,22322 21614,36614l861008 2385311zm-1104665 -2105159l-2008 0 -442079 1279347 892189 0 -448102 -1279347z"/>
+  <path id="13" class="fil1" d="M99649582 14495644c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>
+  <path id="14" class="fil1" d="M101592225 14497652c0,15590 -5433,27755 -15590,35905 -10866,8031 -25039,13464 -44054,17598 -18189,4016 -45354,6024 -81140,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44645,-17598 -9449,-8149 -14173,-19724 -14173,-35905l0 -178698c-77833,83266 -164525,148226 -260665,194288 -96140,45354 -197595,68266 -304601,68266 -94014,0 -179288,-12165 -255114,-36495 -75825,-24330 -140785,-60235 -194288,-106297 -53503,-45944 -95431,-103581 -125195,-170548 -29881,-67676 -44763,-144210 -44763,-230193 0,-100746 20315,-188146 61652,-261846 40629,-74526 99447,-136061 176690,-184839 76416,-48779 170548,-85983 281570,-110313 111022,-24330 236216,-36614 374993,-36614l246374 0 0 -139368c0,-68385 -7441,-129328 -21732,-182831 -14882,-52794 -37795,-96731 -70392,-131927 -32480,-35196 -74408,-61652 -125903,-79251 -51377,-18189 -115037,-27047 -190154,-27047 -80550,0 -152950,9449 -216610,29173 -64251,19606 -120470,40511 -168540,64251 -48070,23740 -88699,44645 -121179,64251 -31771,19724 -56101,29173 -71692,29173 -10866,0 -20315,-2716 -27755,-8149 -8149,-4724 -14882,-12874 -21023,-23622 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54802 0,-32480 2008,-58818 6732,-77833 4724,-18897 16299,-37204 33897,-54094 17598,-17008 48661,-37322 92006,-60944 43346,-23031 94132,-44645 150942,-64369 56219,-18897 118462,-35196 186138,-47952 67085,-12874 135352,-19015 203736,-19015 127911,0 236925,14173 326923,43346 90116,29055 162517,72400 218028,128620 55511,56101 95431,125903 120470,209169 25039,83266 37913,180705 37913,291727l0 1204821zm-324915 -817662l-279562 0c-89408,0 -167241,7441 -233500,23031 -65668,14882 -120470,37913 -164525,67676 -43346,29763 -75117,64959 -96140,106888 -20315,42046 -30472,89998 -30472,144210 0,92715 29173,166532 87991,221335 58936,54802 140785,82558 247082,82558 85274,0 165233,-21614 238342,-65668 73109,-43346 150234,-110313 230783,-200311l0 -379718z"/>
+  <path id="15" class="fil1" d="M102522208 14495644c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>
+  <path id="16" class="fil1" d="M103936907 14545014l-237515 657272c-8149,20905 -28464,37204 -60944,48661 -31771,11575 -81258,17008 -147517,17008 -34606,0 -62361,-1417 -83266,-4724 -21023,-3425 -37204,-9567 -48779,-17008 -10866,-8031 -16889,-18897 -18307,-31771 -1299,-13582 2126,-29055 9567,-48070l246374 -621367c-12165,-5433 -23740,-14173 -33897,-25748 -10866,-12165 -18307,-24330 -21614,-37913l-636957 -1705717c-10866,-27755 -15590,-50078 -15590,-65668 0,-16181 4724,-28346 15590,-37913 10866,-9449 27755,-15472 51377,-18897 23740,-3425 55511,-4724 95549,-4724 39212,0 70392,591 93305,2716 22441,2008 40039,6024 53503,11456 12874,4724 22322,12874 28464,22322 6024,10157 12165,23740 18897,40629l509755 1432297 6024 0 491448 -1439738c8149,-25748 17598,-41928 29055,-48779 10866,-7441 27755,-12756 50196,-16181 22913,-3425 55511,-4724 97439,-4724 37204,0 67676,1299 91416,4724 23622,3425 41220,9449 52086,18897 11456,9567 16889,21732 16889,37913 0,15590 -4016,35905 -11456,59645l-641091 1775401z"/>
+  <path id="17" class="fil1" d="M106537529 12660599c39330,0 66377,8740 81258,27047 14173,17598 21614,43346 21614,77833l0 1730166c0,10748 -2598,19606 -8031,27047 -5433,6732 -14291,13464 -26456,18897 -12874,4724 -29763,8858 -50786,11575 -20905,2716 -46653,4016 -77125,4016 -33188,0 -60235,-1299 -81258,-4016 -20905,-2716 -37913,-6850 -50786,-11575 -12165,-5433 -20905,-12165 -26338,-18897 -5433,-7441 -8149,-16299 -8149,-27047l0 -1562925 -921834 0 0 992935c0,122478 18189,215311 54802,277554 35905,62952 101455,94014 194878,94014 30472,0 57519,-2598 81967,-8740 23622,-6142 44645,-12165 62952,-19015 18897,-6732 34488,-12756 48070,-18897 12874,-6142 25039,-8740 35787,-8740 6142,0 12874,1299 18307,4724 6142,3307 10866,9449 14173,18897 3425,9449 6142,21614 8858,37913 2716,15590 4016,35905 4016,59526 0,38621 -2716,68385 -8031,90116 -5433,22322 -12874,38503 -23740,50078 -10866,11456 -26456,21614 -47361,30472 -21732,9449 -46062,16889 -73109,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -61534,6024 -92006,6024 -92833,0 -171965,-12165 -238342,-36495 -66259,-24448 -120470,-61652 -163107,-111022 -41928,-49487 -73109,-112439 -92006,-188146 -19606,-75825 -29173,-165233 -29173,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 1147893 0zm139486 -552392c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28346,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28464,27047 42637,78542 42637,154249z"/>
+  <path id="18" class="fil1" d="M108529659 14220807c0,22322 -709,41928 -2008,58227 -1417,16889 -3425,30472 -6850,41928 -3307,11456 -7441,21023 -12165,29763 -4724,8858 -14882,21732 -31771,37913 -16299,16889 -44645,37204 -83975,62243 -39921,24448 -84565,46771 -133935,65668 -50196,19606 -103581,35196 -161808,46771 -58227,12165 -118462,18189 -180705,18189 -128620,0 -242358,-20905 -341214,-63542 -99447,-42046 -182713,-103581 -249090,-184839 -66967,-81258 -117754,-181414 -152950,-299168 -35196,-118462 -52794,-254523 -52794,-409481 0,-175272 21614,-326333 64251,-452826 43346,-125903 102282,-229484 176690,-310034 75117,-80550 163107,-140076 263972,-179406 101573,-38503 211177,-58227 329049,-58227 56810,0 111612,5433 165115,16299 54094,10157 102872,24330 148226,41338 44645,17598 85274,37204 119762,60235 35196,22322 60944,41928 76534,57519 16299,16181 27047,29055 33188,37913 5433,9449 10866,20315 14882,33188 3425,12165 6024,26338 7441,42637 1299,15472 2008,35787 2008,59526 0,51377 -6024,87282 -17598,108305 -12165,20315 -26338,30472 -43936,30472 -19724,0 -42637,-10866 -68385,-33188 -25748,-21614 -58227,-46062 -98148,-72400 -39921,-26456 -87991,-50786 -144210,-72518 -56219,-22322 -122478,-33070 -199012,-33070 -157674,0 -278853,60235 -362828,181414 -83857,120470 -125903,295743 -125903,525227 0,114329 10866,215193 32480,301884 22441,85983 54212,158383 96849,216610 41928,57519 94132,100864 155666,129210 61652,28464 132045,42637 211177,42637 75825,0 142202,-12165 199012,-35787 56928,-23740 105589,-50078 147635,-79251 41928,-28464 77125,-54094 105589,-77125 28346,-23740 50078,-35196 66259,-35196 8858,0 16889,2716 23740,8149 6732,5315 12165,14173 16889,26338 4724,12874 8149,28464 10157,48070 2008,18897 2716,41928 2716,68385z"/>
+  <path id="19" class="fil1" d="M110084434 14008212c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>
+  <polygon class="fil9" points="104139698,24017402 154989845,24017402 154989845,16327619 104139698,16327619 "/>
+  <polygon class="fil5 str0" points="104139698,24017402 154989845,24017402 154989845,16327619 104139698,16327619 "/>
+  <path class="fil1" d="M109511846 19107175c0,25039 -1299,46771 -4016,65078 -2716,18307 -7441,33188 -13582,44763 -6732,10866 -14173,19606 -23031,24330 -8858,5433 -17598,8149 -27165,8149l-940731 0 0 874354 889236 0c9567,0 18307,2008 27165,6732 8740,4724 16299,12283 23031,23031 6142,10866 10866,25157 13582,42755 2716,18307 4016,40629 4016,68385 0,25866 -1299,47479 -4016,65078 -2716,17716 -7441,32598 -13582,44054 -6732,10866 -14291,19724 -23031,25748 -8858,6142 -17598,8858 -27165,8858l-889236 0 0 1070886c0,9449 -2716,18307 -8031,27047 -5433,8149 -14291,15000 -27874,19724 -12874,4724 -30472,8740 -51495,12165 -21023,3425 -48779,4724 -83384,4724 -31771,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13464,-4724 -22322,-11575 -27755,-19724 -5433,-8740 -8149,-17598 -8149,-27047l0 -2379642c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l1154861 0c9567,0 18307,2716 27165,8031 8858,4842 16299,13582 23031,25866 6142,11456 10866,27047 13582,46062 2716,18897 4016,41338 4016,66377z"/>
+  <path id="1" class="fil1" d="M112165381 20207825c0,222398 -28464,416922 -85392,582982 -56928,166651 -140312,304246 -249444,413378 -109132,109132 -243303,191099 -401922,245311 -159328,54212 -348419,81376 -567982,81376l-544242 0c-30472,0 -59645,-10157 -86691,-30472 -27165,-21023 -40747,-56928 -40747,-108423l0 -2292242c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l581564 0c222988,0 410662,28464 564557,85983 153186,57637 281924,141021 386332,248736 103699,107833 182241,238578 235862,392473 53503,153186 80668,326687 80668,519794zm-357868 15000c0,-139013 -17008,-268460 -51495,-388339 -34606,-119998 -88817,-223697 -162044,-311097 -73818,-87518 -166769,-155312 -279916,-204681 -112439,-48897 -257594,-73227 -435110,-73227l-348419 0 0 2000751 351844 0c164643,0 302947,-20315 416095,-61652 112557,-40747 206689,-103699 281924,-188501 75944,-84684 132872,-191099 170194,-319246 37913,-127321 56928,-279208 56928,-454008z"/>
+  <path id="2" class="fil1" d="M113061349 21312608c0,94250 -15590,156611 -46771,187792 -31181,31181 -87400,46771 -169367,46771 -80077,0 -134879,-15590 -165469,-46062 -30472,-30590 -45354,-91534 -45354,-183068 0,-94250 15590,-156493 46771,-187674 31181,-31181 87400,-46771 169367,-46771 80077,0 134879,14882 165469,45354 29763,30472 45354,92242 45354,183658z"/>
+  <path id="3" class="fil1" d="M113994639 21481385c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-9449 2126,-18307 6850,-25748 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,16299 8149,25748l0 1787921zm36614 -2390508c0,77361 -14882,129446 -44054,157320 -29173,27755 -82676,42046 -161336,42046 -77243,0 -130037,-13582 -158501,-40747 -28464,-27047 -42755,-78542 -42755,-154485 0,-77243 14882,-129446 44054,-157320 29173,-27755 82676,-41928 161336,-41928 77243,0 130155,13464 158619,40629 28464,27165 42637,78660 42637,154485z"/>
+  <path id="4" class="fil1" d="M116257708 20566401c0,145745 -19015,279916 -57637,402631 -37913,122006 -95549,227712 -171375,316530 -75944,88699 -171493,157911 -285349,207398 -114565,49487 -247436,74526 -397906,74526 -147045,0 -275192,-21732 -384324,-65786 -109014,-43346 -199839,-107006 -272357,-190390 -72518,-83384 -126848,-185075 -162753,-303656 -35905,-119289 -53503,-254169 -53503,-405347 0,-145745 19015,-279916 56219,-401922 38031,-122596 94959,-228421 170784,-317120 75944,-88817 170784,-157320 284759,-206807 113856,-48779 246610,-73109 398497,-73109 147045,0 275192,21614 384206,65668 109132,43464 199957,107124 272475,190508 72518,83384 127439,184367 164052,303656 35905,119289 54212,253460 54212,403221zm-341569 21023c0,-96967 -8858,-188382 -27165,-274483 -17598,-86101 -47361,-161336 -88699,-226413 -40747,-65078 -96967,-116573 -167477,-153777 -69802,-38031 -157911,-56928 -262909,-56928 -96967,0 -180351,16889 -250153,51495 -69802,34488 -126730,83384 -172084,146336 -45472,63070 -78660,137596 -100392,223697 -22322,86101 -33188,180233 -33188,281924 0,98266 8858,190508 27165,276491 17598,86101 47361,161336 89408,225705 42046,63778 98266,115274 168068,152596 70511,37913 158619,56928 263735,56928 95549,0 178225,-17008 248736,-51613 70392,-34488 128029,-82676 173501,-145037 45354,-62361 78542,-136887 99565,-222988 21023,-85983 31889,-180942 31889,-283932z"/>
+  <path id="5" class="fil1" d="M119493989 21168989c0,21023 -709,39212 -2008,55511 -1417,15590 -3425,29173 -6850,41338 -3307,11575 -7441,22441 -12874,31889 -5315,8858 -14882,20315 -27755,33188 -13582,13582 -41338,33897 -83384,61062 -42637,27047 -95549,53503 -158501,79251 -63070,25748 -134879,47479 -216256,65078 -81967,18307 -170784,27047 -267751,27047 -166651,0 -317829,-27755 -452000,-83266 -134289,-55629 -249444,-137596 -343695,-246728 -94841,-108423 -168068,-242712 -218854,-401922 -50905,-159918 -76652,-343695 -76652,-551683 0,-213539 27874,-403339 82676,-570698 54920,-166769 132163,-308380 231846,-424244 99565,-115982 218264,-204091 357159,-265035 138305,-61062 292081,-91534 460267,-91534 74526,0 147045,6850 216846,20315 70511,14291 135588,31181 195233,52204 59645,21023 112439,45472 159210,73227 46062,27047 78660,50196 96258,67794 18307,17598 29763,31181 35196,40629 5433,8858 9567,19724 12874,32598 3425,12874 6142,27755 8149,44645 2008,17598 2716,38031 2716,61652 0,27165 -1299,49487 -4016,67794 -2716,19015 -6850,34606 -12283,47479 -4724,12165 -11456,21732 -18897,27755 -6850,6142 -16299,8858 -26456,8858 -19015,0 -44763,-12874 -78660,-38621 -33188,-25748 -75825,-54212 -128738,-85392 -52912,-31181 -116573,-59645 -191808,-85392 -75944,-25748 -166060,-38621 -271058,-38621 -115274,0 -219681,23031 -313223,68385 -94132,46062 -174800,113266 -241177,201965 -66495,88817 -118699,197241 -155312,325388 -36495,128029 -54802,274483 -54802,438535 0,163344 17598,307672 52794,432984 35314,125431 86101,230547 151887,314522 65668,84093 147045,147753 242594,191099 96258,42755 204681,64487 325978,64487 102400,0 192516,-12874 269050,-38031 76652,-25039 141730,-52794 195233,-83975 54212,-31181 98266,-59054 132872,-84093 35196,-25039 62361,-37913 81967,-37913 9567,0 17598,2008 24448,6024 6732,4134 11456,11575 15590,22441 4016,11456 7441,27047 9449,46771 2008,19606 2716,44645 2716,75235z"/>
+  <path id="6" class="fil1" d="M121488008 20809704c0,119998 -22441,227122 -66495,321254 -44645,93542 -106415,173501 -184957,239287 -78660,65078 -171493,114565 -277908,147753 -107124,33188 -221689,49487 -344994,49487 -86101,0 -166060,-7441 -239287,-21732 -73818,-14882 -139604,-33188 -197241,-54212 -57519,-21023 -105707,-43346 -145037,-65668 -38621,-23149 -66377,-42046 -81258,-58345 -15590,-15590 -26456,-35905 -33897,-60353 -7441,-24330 -10866,-56928 -10866,-97557 0,-29173 1417,-53503 4134,-72518 2598,-19015 6732,-34606 11456,-46062 5433,-12283 12165,-20315 20315,-25157 8149,-4724 17008,-6732 27874,-6732 18189,0 44645,11575 78542,33897 33188,22322 76652,46771 130155,73227 52912,25748 116573,50786 191808,73818 74526,23031 161336,34606 258893,34606 74526,0 142320,-10157 203973,-29881 61771,-19606 114565,-47361 158619,-83975 44763,-35905 78660,-80668 102400,-133580 23740,-52794 35905,-113148 35905,-180233 0,-72518 -16299,-134879 -49487,-186375 -33188,-51495 -76652,-96967 -130864,-136297 -54802,-38621 -116573,-74526 -185666,-107006 -69802,-32598 -141021,-65078 -213539,-98975 -72518,-33897 -143619,-71219 -212122,-112557 -69093,-40629 -130746,-88817 -184957,-144328 -54212,-55629 -98266,-120706 -131572,-195823 -33897,-74644 -50786,-164052 -50786,-268460 0,-107715 19606,-203264 58227,-287357 39330,-83384 93542,-153895 162753,-210823 69802,-56928 152478,-100274 248027,-130155 96258,-29763 199248,-44645 310388,-44645 56928,0 113856,4724 171493,14882 57637,10157 111848,23031 162635,40039 50905,16181 96258,35196 136297,55511 39330,20315 65668,37322 77951,49487 12874,12874 21023,22322 25039,29881 4016,7441 6732,16889 9449,27755 2716,11456 4842,25039 6142,41338 1299,15590 2008,35905 2008,61652 0,23740 -709,44763 -2716,63660 -2008,18307 -5433,33897 -9449,46771 -3425,12283 -9449,21732 -16299,27874 -7441,6024 -15590,8740 -25039,8740 -14882,0 -37322,-9449 -68503,-27755 -31181,-19015 -69093,-39330 -114565,-63070 -44645,-23031 -98266,-44054 -159918,-62952 -60944,-19724 -130155,-29173 -207398,-29173 -71101,0 -133462,9449 -186375,28464 -52794,19606 -96849,44763 -131454,76534 -33897,31889 -59645,69211 -77243,112557 -17008,44054 -25748,90116 -25748,138895 0,71219 16181,132872 49487,184367 33188,51495 77243,96967 132163,136887 55511,40039 117872,75944 188382,109132 69802,33188 141612,66495 214839,100392 72518,33897 144328,70392 214130,111140 70511,39921 132872,88109 188501,143029 54802,54802 98856,119289 132754,194406 33897,74644 50905,162753 50905,265035z"/>
+  <path id="7" class="fil1" d="M122474092 21479377c0,10866 -2716,20315 -8031,27755 -5433,8149 -14291,14291 -27874,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49487,4724 -82676,4724 -31771,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2467042c0,-10866 2716,-20315 8858,-27874 6024,-8031 16299,-14173 29763,-18897 14291,-4724 31889,-8858 53621,-12283 21614,-3307 48070,-4724 78542,-4724 33188,0 60353,1417 82676,4724 21732,3425 39330,7559 52204,12283 13582,4724 22441,10866 27874,18897 5315,7559 8031,17008 8031,27874l0 2467042z"/>
+  <path id="8" class="fil1" d="M124926253 19107175c0,25039 -1417,46771 -4134,65078 -2716,18307 -6732,33188 -12874,44763 -6024,10866 -12874,19606 -21614,24330 -8858,5433 -18307,8149 -28464,8149l-721877 0 0 2229881c0,10866 -2716,19606 -8149,27755 -5433,8149 -14173,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49487,4724 -82676,4724 -31889,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8149 -8149,-16889 -8149,-27755l0 -2229881 -721759 0c-10275,0 -19724,-2716 -28464,-8149 -8858,-4724 -15590,-13464 -21023,-24330 -4842,-11575 -9567,-26456 -12874,-44763 -3425,-18307 -4842,-40039 -4842,-65078 0,-25039 1417,-47479 4842,-66377 3307,-19015 8031,-34606 12874,-46062 5433,-12283 12165,-21023 21023,-25866 8740,-5315 18189,-8031 28464,-8031l1785204 0c10157,0 19606,2716 28464,8031 8740,4842 15590,13582 21614,25866 6142,11456 10157,27047 12874,46062 2716,18897 4134,41338 4134,66377z"/>
+  <path id="9" class="fil1" d="M128010056 21479377c0,10866 -2008,19606 -6142,27755 -4016,8149 -12165,14882 -25748,20315 -12874,4724 -31889,8858 -55511,11575 -23740,2716 -55629,4016 -94959,4016 -34488,0 -62952,-1299 -84684,-4016 -21732,-2716 -39330,-6850 -52912,-12874 -12874,-6142 -23031,-14291 -30472,-25039 -7441,-10275 -13582,-23740 -19015,-39330l-235862 -606603c-27755,-69211 -56928,-132163 -86691,-189800 -29881,-57637 -65078,-107124 -106415,-149171 -40629,-41928 -89526,-73818 -145037,-97557 -55629,-23031 -122714,-34606 -200666,-34606l-228421 0 0 1095335c0,10866 -2716,19606 -8740,27755 -6142,8149 -15590,14291 -27755,19015 -12992,4724 -29881,8740 -51613,12165 -22322,3425 -49487,4724 -82676,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39330,-7441 -52204,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2379642c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l546250 0c65078,0 118699,1299 162044,4724 42637,3307 81258,7441 115864,10866 99683,17598 187083,44645 263617,81258 75944,37322 139604,84093 191217,141021 52086,56928 90825,122006 116573,195823 25748,73227 38621,154604 38621,243303 0,85392 -11575,162753 -34606,231138 -23740,67794 -56928,128147 -100274,180351 -44054,52204 -96258,97557 -157320,136179 -60944,37913 -128738,70511 -204681,96967 42755,18897 80668,41928 115274,70392 34606,28582 66377,63070 96258,102400 29763,40039 58227,86101 84684,137596 26456,51495 52912,109841 79369,174800l230429 566683c18307,47479 30472,81258 35196,100274 5433,19015 8149,33897 8149,44763zm-514479 -1806936c0,-100274 -22322,-185666 -67794,-255468 -44645,-69211 -119880,-119289 -226295,-149879 -33188,-9449 -70511,-15590 -111848,-19606 -42046,-4016 -96258,-6142 -164052,-6142l-288066 0 0 866205 333537 0c90116,0 168068,-10866 233854,-32480 64959,-22441 119880,-52912 163344,-91534 44054,-39330 75825,-85392 96849,-138305 20315,-52794 30472,-110431 30472,-172792z"/>
+  <path id="10" class="fil1" d="M129876046 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>
+  <path id="11" class="fil1" d="M130707527 21481385c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -2652118c0,-10748 2126,-20315 6850,-27755 4724,-8149 13464,-14882 26456,-20315 12165,-4724 29055,-8858 50786,-11575 21023,-2716 47479,-4016 79959,-4016 33188,0 60353,1299 81376,4016 21614,2716 37913,6850 50078,11575 12283,5433 20315,12165 25748,20315 5433,7441 8149,17008 8149,27755l0 2652118z"/>
+  <path id="12" class="fil1" d="M132832410 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>
+  <path id="13" class="fil1" d="M134680565 21483392c0,15590 -5433,27874 -15590,35905 -10866,8149 -25039,13582 -44054,17716 -18307,4016 -45354,6024 -81376,6024 -33897,0 -61652,-2008 -81967,-6024 -20315,-4134 -35196,-9567 -44763,-17716 -9449,-8031 -14173,-19606 -14173,-35905l0 -178934c-77951,83384 -164761,148462 -261019,194524 -96140,45472 -197831,68503 -304955,68503 -94250,0 -179642,-12165 -255468,-36614 -75944,-24448 -141021,-60353 -194524,-106415 -53621,-46062 -95549,-103699 -125431,-170784 -29763,-67794 -44763,-144328 -44763,-230429 0,-100982 20433,-188382 61771,-262318 40629,-74526 99565,-136179 176808,-185075 76652,-48779 170784,-85983 282042,-110431 111140,-24448 236452,-36614 375466,-36614l246728 0 0 -139604c0,-68503 -7559,-129446 -21732,-182949 -14882,-52912 -37913,-96967 -70511,-132163 -32480,-35314 -74526,-61771 -126021,-79369 -51495,-18307 -115274,-27047 -190508,-27047 -80668,0 -153186,9449 -216846,29055 -64369,19724 -120706,40747 -168776,64487 -48070,23622 -88817,44645 -121297,64369 -31889,19606 -56338,29173 -71810,29173 -10866,0 -20433,-2716 -27874,-8149 -8149,-4724 -14882,-12874 -21023,-23740 -6024,-10157 -10157,-23740 -12874,-40039 -2716,-16889 -4016,-34488 -4016,-54920 0,-32480 2008,-58936 6732,-77833 4724,-19015 16299,-37322 33897,-54330 17598,-16889 48779,-37204 92242,-60944 43346,-23031 94132,-44763 151060,-64369 56338,-19015 118699,-35314 186375,-48188 67204,-12874 135588,-18897 204091,-18897 128029,0 237161,14173 327278,43346 90235,29173 162753,72518 218264,128738 55629,56338 95549,126139 120706,209406 25039,83384 37913,181060 37913,292199l0 1206356zm-325270 -818725l-279916 0c-89526,0 -167477,7441 -233854,23031 -65786,15000 -120706,38031 -164761,67794 -43346,29881 -75235,65078 -96258,107124 -20315,42046 -30472,90116 -30472,144328 0,92833 29173,166769 88109,221689 58936,54802 141021,82676 247436,82676 85392,0 165351,-21732 238578,-65786 73109,-43346 150470,-110431 231138,-200666l0 -380190z"/>
+  <path id="14" class="fil1" d="M136404708 20993362c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>
+  <path id="15" class="fil1" d="M138394002 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>
+  <path id="16" class="fil1" d="M141606425 21479377c0,10866 -2008,19606 -6142,27755 -4016,8149 -12165,14882 -25748,20315 -12874,4724 -31889,8858 -55511,11575 -23740,2716 -55629,4016 -94959,4016 -34488,0 -62952,-1299 -84684,-4016 -21732,-2716 -39330,-6850 -52912,-12874 -12874,-6142 -23031,-14291 -30472,-25039 -7441,-10275 -13582,-23740 -19015,-39330l-235862 -606603c-27755,-69211 -56928,-132163 -86691,-189800 -29881,-57637 -65078,-107124 -106415,-149171 -40629,-41928 -89526,-73818 -145037,-97557 -55629,-23031 -122714,-34606 -200666,-34606l-228421 0 0 1095335c0,10866 -2716,19606 -8740,27755 -6142,8149 -15590,14291 -27755,19015 -12992,4724 -29881,8740 -51613,12165 -22322,3425 -49487,4724 -82676,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39330,-7441 -52204,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2379642c0,-51495 13582,-87400 40747,-108423 27047,-20315 56219,-30472 86691,-30472l546250 0c65078,0 118699,1299 162044,4724 42637,3307 81258,7441 115864,10866 99683,17598 187083,44645 263617,81258 75944,37322 139604,84093 191217,141021 52086,56928 90825,122006 116573,195823 25748,73227 38621,154604 38621,243303 0,85392 -11575,162753 -34606,231138 -23740,67794 -56928,128147 -100274,180351 -44054,52204 -96258,97557 -157320,136179 -60944,37913 -128738,70511 -204681,96967 42755,18897 80668,41928 115274,70392 34606,28582 66377,63070 96258,102400 29763,40039 58227,86101 84684,137596 26456,51495 52912,109841 79369,174800l230429 566683c18307,47479 30472,81258 35196,100274 5433,19015 8149,33897 8149,44763zm-514479 -1806936c0,-100274 -22322,-185666 -67794,-255468 -44645,-69211 -119880,-119289 -226295,-149879 -33188,-9449 -70511,-15590 -111848,-19606 -42046,-4016 -96258,-6142 -164052,-6142l-288066 0 0 866205 333537 0c90116,0 168068,-10866 233854,-32480 64959,-22441 119880,-52912 163344,-91534 44054,-39330 75825,-85392 96849,-138305 20315,-52794 30472,-110431 30472,-172792z"/>
+  <path id="17" class="fil1" d="M143472415 20509473c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>
+  <path id="18" class="fil1" d="M145617376 20558252c0,156611 -16889,296924 -50786,421646 -33188,124014 -82676,229720 -148462,316412 -65078,86809 -146336,153895 -242594,200666 -96258,46771 -206689,70511 -330703,70511 -52912,0 -101691,-5433 -146454,-15590 -45354,-10866 -88817,-27165 -132163,-50196 -42637,-22322 -85392,-50786 -127439,-85392 -42637,-33897 -87400,-74526 -134879,-120588l0 895259c0,10866 -2716,19724 -8149,27874 -5433,8031 -13464,14882 -25748,20315 -12165,4724 -28464,8740 -50078,11456 -21023,2716 -48188,4134 -81376,4134 -32480,0 -58936,-1417 -79959,-4134 -21732,-2716 -38621,-6732 -50786,-11456 -12992,-5433 -21732,-12283 -26456,-20315 -4724,-8149 -6850,-17008 -6850,-27874l0 -2497514c0,-12165 2126,-21732 6142,-29173 4016,-6732 12165,-13582 23740,-18307 12165,-5433 27047,-9449 46062,-11456 18307,-2126 41338,-2716 67794,-2716 27755,0 50786,591 69093,2716 17598,2008 32598,6024 44763,10748 12165,5433 20315,12283 25039,19015 4724,7441 6850,17008 6850,29173l0 239287c54212,-55629 106415,-103699 156493,-145037 50196,-40747 100982,-74644 151887,-101691 50786,-27165 102990,-48188 156493,-61652 53621,-14291 109841,-21023 169485,-21023 129446,0 239287,25039 330703,75235 90825,50786 165351,119289 222988,206689 57637,87400 99683,189091 126139,304955 26338,115982 39212,238578 39212,368025zm-341569 38031c0,-91534 -6732,-180351 -21023,-265743 -13464,-85392 -37913,-161336 -71101,-227712 -33897,-66377 -79369,-119289 -136297,-159328 -56928,-39921 -128029,-59645 -212831,-59645 -42637,0 -83975,6142 -125313,19015 -40629,12874 -82676,32598 -125431,59645 -42046,27165 -86691,63070 -132872,107833 -46062,44645 -95549,99565 -147045,164643l0 711011c90116,110431 175627,194524 256176,253460 81376,58227 166060,87400 254877,87400 81967,0 152478,-19606 211414,-59645 59054,-39921 106415,-92833 143029,-159210 36614,-66495 63070,-140312 80668,-222988 17008,-82085 25748,-165469 25748,-248736z"/>
+  <path id="19" class="fil1" d="M147770015 20566401c0,145745 -19015,279916 -57637,402631 -37913,122006 -95549,227712 -171375,316530 -75944,88699 -171493,157911 -285349,207398 -114565,49487 -247436,74526 -397906,74526 -147045,0 -275192,-21732 -384324,-65786 -109014,-43346 -199839,-107006 -272357,-190390 -72518,-83384 -126848,-185075 -162753,-303656 -35905,-119289 -53503,-254169 -53503,-405347 0,-145745 19015,-279916 56219,-401922 38031,-122596 94959,-228421 170784,-317120 75944,-88817 170784,-157320 284759,-206807 113856,-48779 246610,-73109 398497,-73109 147045,0 275192,21614 384206,65668 109132,43464 199957,107124 272475,190508 72518,83384 127439,184367 164052,303656 35905,119289 54212,253460 54212,403221zm-341569 21023c0,-96967 -8858,-188382 -27165,-274483 -17598,-86101 -47361,-161336 -88699,-226413 -40747,-65078 -96967,-116573 -167477,-153777 -69802,-38031 -157911,-56928 -262909,-56928 -96967,0 -180351,16889 -250153,51495 -69802,34488 -126730,83384 -172084,146336 -45472,63070 -78660,137596 -100392,223697 -22322,86101 -33188,180233 -33188,281924 0,98266 8858,190508 27165,276491 17598,86101 47361,161336 89408,225705 42046,63778 98266,115274 168068,152596 70511,37913 158619,56928 263735,56928 95549,0 178225,-17008 248736,-51613 70392,-34488 128029,-82676 173501,-145037 45354,-62361 78542,-136887 99565,-222988 21023,-85983 31889,-180942 31889,-283932z"/>
+  <path id="20" class="fil1" d="M149300459 19809328c0,29173 -709,53621 -2008,73227 -1417,19606 -4134,35196 -8149,46771 -3425,11456 -8858,19606 -14882,25748 -5433,6142 -13582,8858 -24448,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6142 -32480,-12165 -51495,-17598 -19015,-6142 -40629,-11575 -64369,-17008 -23740,-5433 -49487,-8149 -77243,-8149 -33306,0 -65786,6850 -97675,19724 -31181,13582 -65078,35196 -99565,66377 -35314,30472 -71928,71219 -110549,121297 -37913,50905 -80668,112557 -126730,185784l0 1175884c0,10866 -2716,19724 -8149,27165 -5433,6732 -13464,13464 -25748,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48188,4016 -81376,4016 -32480,0 -58936,-1299 -79959,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12992,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6850,-16299 -6850,-27165l0 -1787921c0,-10866 2126,-19606 6142,-27165 4016,-6732 11575,-13464 23740,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73936,-2716 29055,0 53503,591 72518,2716 19606,2008 34488,6024 45354,12165 10157,6142 18307,12874 23031,19606 4134,7559 6850,16299 6850,27165l0 260310c48779,-71928 94841,-130155 137478,-175627 43464,-44763 84093,-80668 122006,-106415 38621,-25748 76652,-43346 113856,-53503 38031,-10157 75944,-14882 114565,-14882 17008,0 36614,591 58345,2716 21614,2008 44645,6024 68385,10748 23740,5433 45472,11575 64487,18307 18897,6850 32480,12874 40629,19724 8149,6732 13582,12874 15590,19015 2716,6024 5433,13464 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,42046 709,72518z"/>
+  <path id="21" class="fil1" d="M150600475 21348513c0,38621 -2716,69211 -8149,91534 -4724,22322 -12874,39330 -23740,49487 -10157,10866 -26456,21023 -47479,29763 -21023,9567 -45354,17008 -72518,23149 -27047,6024 -55511,10748 -86101,14882 -30472,4016 -60235,6024 -90825,6024 -92833,0 -172084,-12165 -237870,-36495 -65668,-24448 -119998,-61771 -162635,-111258 -42046,-49369 -72518,-112439 -92124,-188382 -19015,-75944 -28464,-165351 -28464,-268342l0 -1042422 -251452 0c-19724,0 -36023,-10866 -48188,-31889 -11456,-21023 -17598,-55511 -17598,-103699 0,-25039 1299,-46062 4724,-62952 3425,-17716 8149,-31889 12874,-43464 5433,-10866 12874,-18897 21023,-23740 8858,-4724 18307,-6732 29173,-6732l249444 0 0 -424244c0,-9567 2008,-18307 6732,-25748 4724,-8149 13582,-15000 26456,-21023 12165,-6142 29055,-10157 50786,-12874 21023,-2716 47479,-4134 79959,-4134 33188,0 60353,1417 81376,4134 21614,2716 37913,6732 50078,12874 12283,6024 20433,12874 25866,21023 5315,7441 8031,16181 8031,25748l0 424244 455543 0c10866,0 19606,2008 27755,6732 7441,4842 14882,12874 20315,23740 6142,11575 10157,25748 12874,43464 2716,16889 4134,37913 4134,62952 0,48188 -6142,82676 -17716,103699 -12165,21023 -27755,31889 -47361,31889l-455543 0 0 994234c0,122714 18307,215547 54330,277908 35905,63070 100982,94250 194406,94250 29881,0 56928,-2716 80668,-8858 23740,-6142 44763,-12165 63070,-19015 18307,-6732 33897,-12874 47479,-18897 12874,-6142 25039,-8858 35196,-8858 6732,0 12874,1417 19015,4724 5433,3425 10157,9567 13582,19015 3307,9449 6024,21732 8740,37913 2716,15590 4134,35905 4134,59645z"/>
+  <path id="22" class="fil1" d="M152157849 20993362c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>
+  <polygon class="fil9" points="64472382,24206965 77279552,24206965 77279552,16517065 64472382,16517065 "/>
+  <polygon class="fil5 str0" points="64472382,24206965 77279552,24206965 77279552,16517065 64472382,16517065 "/>
+  <path class="fil1" d="M69224107 20399042c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>
+  <path id="1" class="fil1" d="M71369068 20757146c0,145509 -18897,279562 -57519,402040 -37913,121888 -95431,227476 -171257,316057 -75825,88699 -171257,157792 -284877,207162 -114447,49369 -247082,74408 -397316,74408 -146926,0 -274838,-21614 -383851,-65550 -109014,-43346 -199721,-107006 -272121,-190272 -72400,-83266 -126612,-184721 -162399,-303184 -35905,-119171 -53503,-253814 -53503,-404756 0,-145627 18897,-279562 56219,-401449 37913,-122478 94723,-228067 170548,-316766 75825,-88699 170548,-157084 284286,-206453 113738,-48779 246374,-73109 398024,-73109 146808,0 274838,21614 383733,65668 109014,43346 199721,106888 272121,190154 72400,83266 127202,184131 163816,303302 35905,119053 54094,253106 54094,402749zm-341096 20905c0,-96731 -8740,-188146 -27047,-274129 -17598,-85865 -47361,-161099 -88699,-226059 -40629,-64959 -96849,-116336 -167241,-153659 -69684,-37913 -157674,-56810 -262554,-56810 -96849,0 -180115,16889 -249799,51377 -69684,34606 -126612,83266 -171965,146218 -45354,62952 -78424,137478 -100156,223461 -22322,85865 -33188,179997 -33188,281570 0,98148 8858,190154 27165,276137 17598,85983 47361,161099 89290,225350 41928,63660 98148,115155 167832,152359 70392,37913 158383,56810 263381,56810 95431,0 177989,-16889 248381,-51377 70392,-34606 127911,-82676 173265,-144919 45354,-62243 78542,-136651 99565,-222634 20905,-85983 31771,-180705 31771,-283696z"/>
+  <path id="2" class="fil1" d="M73137147 21396111c0,22322 -709,41928 -2008,58227 -1417,16889 -3425,30472 -6850,41928 -3307,11456 -7441,21023 -12165,29763 -4724,8858 -14882,21732 -31771,37913 -16299,16889 -44645,37204 -83975,62243 -39921,24448 -84565,46771 -133935,65668 -50196,19606 -103581,35196 -161808,46771 -58227,12165 -118462,18189 -180705,18189 -128620,0 -242358,-20905 -341214,-63542 -99447,-42046 -182713,-103581 -249090,-184839 -66967,-81258 -117754,-181414 -152950,-299168 -35196,-118462 -52794,-254523 -52794,-409481 0,-175272 21614,-326333 64251,-452826 43346,-125903 102282,-229484 176690,-310034 75117,-80550 163107,-140076 263972,-179406 101573,-38503 211177,-58227 329049,-58227 56810,0 111612,5433 165115,16299 54094,10157 102872,24330 148226,41338 44645,17598 85274,37204 119762,60235 35196,22322 60944,41928 76534,57519 16299,16181 27047,29055 33188,37913 5433,9449 10866,20315 14882,33188 3425,12165 6024,26338 7441,42637 1299,15472 2008,35787 2008,59526 0,51377 -6024,87282 -17598,108305 -12165,20315 -26338,30472 -43936,30472 -19724,0 -42637,-10866 -68385,-33188 -25748,-21614 -58227,-46062 -98148,-72400 -39921,-26456 -87991,-50786 -144210,-72518 -56219,-22322 -122478,-33070 -199012,-33070 -157674,0 -278853,60235 -362828,181414 -83857,120470 -125903,295743 -125903,525227 0,114329 10866,215193 32480,301884 22441,85983 54212,158383 96849,216610 41928,57519 94132,100864 155666,129210 61652,28464 132045,42637 211177,42637 75825,0 142202,-12165 199012,-35787 56928,-23740 105589,-50078 147635,-79251 41928,-28464 77125,-54094 105589,-77125 28346,-23740 50078,-35196 66259,-35196 8858,0 16889,2716 23740,8149 6732,5315 12165,14173 16889,26338 4724,12874 8149,28464 10157,48070 2008,18897 2716,41928 2716,68385z"/>
+  <path id="3" class="fil1" d="M74691922 21183516c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>
+  <polygon class="fil9" points="82397059,24206965 100294807,24206965 100294807,16517065 82397059,16517065 "/>
+  <polygon class="fil5 str0" points="82397059,24206965 100294807,24206965 100294807,16517065 82397059,16517065 "/>
+  <path class="fil1" d="M86133527 19299810c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <path id="1" class="fil1" d="M87259924 20001018c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>
+  <path id="2" class="fil1" d="M89097686 20700218c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="3" class="fil1" d="M91134460 21670948c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>
+  <path id="4" class="fil1" d="M93259816 21670948c0,10748 -2008,19606 -6732,27755 -4724,8031 -12874,14173 -23740,18897 -11456,4724 -26338,8149 -44645,10866 -19015,2716 -41338,4016 -67676,4016 -27755,0 -50786,-1299 -69093,-4016 -18897,-2716 -33779,-6142 -45944,-10866 -11575,-4724 -20315,-10866 -25748,-18897 -4724,-8149 -7441,-17598 -7441,-27755l0 -237634c-94132,102164 -191571,181414 -292436,238224 -101573,56928 -211886,85274 -332356,85274 -130628,0 -242358,-25629 -334364,-76416 -92715,-50786 -167832,-119880 -225350,-206453 -56928,-86691 -98856,-188146 -125313,-305309 -26338,-117045 -39921,-240232 -39921,-369560 0,-153659 16299,-292436 49487,-415622 33070,-123777 81849,-229484 146808,-316766 64369,-87282 144919,-154367 240941,-201020 95431,-46653 205862,-70392 331766,-70392 104171,0 199603,23031 286294,68385 86573,46062 171847,113029 256531,201729l0 -1034981c0,-9449 2008,-18307 6732,-27047 4724,-8858 13582,-14882 27047,-19606 12874,-4842 29881,-8858 50078,-12283 21023,-3307 46771,-4724 78542,-4724 33188,0 60235,1417 81258,4724 21023,3425 37913,7441 49369,12283 12283,4724 21023,10748 27165,19606 6024,8740 8740,17598 8740,27047l0 2640543zm-328931 -1257025c-87991,-110313 -173265,-194288 -255822,-251806 -82676,-57519 -168658,-86573 -257948,-86573 -83266,0 -153659,19606 -211886,59526 -58227,39921 -104880,92006 -141494,157084 -35787,64251 -62243,138068 -78424,219917 -17008,81967 -25039,165233 -25039,249799 0,89998 6732,177989 20905,263972 13582,85983 37913,162399 71810,229484 34488,66967 79841,120470 136651,161099 56219,39921 128029,60235 213303,60235 43228,0 85274,-6142 125903,-17598 39921,-12165 81140,-31889 123187,-59526 41928,-27755 86573,-63660 132635,-108305 46062,-44054 94723,-98148 146218,-163225l0 -714082z"/>
+  <path id="5" class="fil1" d="M94195232 21670948c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-9449 2008,-18189 6732,-25748 4724,-8031 13582,-14882 26456,-20196 12165,-4842 29055,-8858 50786,-11575 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11575 12165,5315 20315,12165 25629,20196 5433,7559 8149,16299 8149,25748l0 1785676zm36614 -2387437c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28464,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28346,27047 42637,78542 42637,154249z"/>
+  <path id="6" class="fil1" d="M96333579 21670948c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>
+  <path id="7" class="fil1" d="M98422439 19968538c0,46771 -6142,79841 -19015,100864 -12165,20315 -28464,30472 -48661,30472l-256649 0c46771,47361 79251,99447 97557,156375 18189,56810 27755,116455 27755,177989 0,102872 -16299,194288 -49487,273420 -33070,79251 -80550,146218 -142084,201138 -61652,55393 -134761,97439 -219327,126494 -84565,29173 -178698,43346 -281570,43346 -72400,0 -142202,-9449 -207162,-28464 -65668,-19606 -116455,-43228 -152241,-72400 -22322,23740 -40629,50786 -55511,81258 -14291,31062 -21732,66259 -21732,105589 0,46653 21732,85274 64369,115746 42637,31062 100156,47361 171257,50078l464992 19606c87991,2716 169249,14882 242948,36614 73818,22322 138186,52794 192280,93305 54094,40039 96140,90116 126612,148344 30472,58818 45354,127202 45354,205036 0,81967 -17008,159800 -51495,233500 -34488,73818 -86573,138777 -157674,194996 -70392,56101 -161099,100864 -270822,132635 -109604,32480 -238933,48779 -388458,48779 -144210,0 -266688,-12165 -367552,-36614 -100864,-24330 -184131,-58227 -249090,-100156 -64369,-42637 -111730,-92715 -140785,-151651 -29173,-58818 -43346,-123187 -43346,-191571 0,-43936 5433,-85865 15590,-127202 10866,-40629 27047,-79841 48661,-117045 21732,-36614 48779,-72518 81258,-105589 32480,-33897 69684,-67085 112439,-100274 -64369,-33188 -111730,-75117 -142911,-125195 -30472,-50078 -45944,-104171 -45944,-162399 0,-80550 16181,-153068 48661,-216610 32480,-62952 72400,-119880 120470,-170548 -40629,-48779 -73109,-103581 -96731,-165233 -23740,-61534 -35905,-136061 -35905,-223342 0,-101573 16889,-192871 51495,-273420 34488,-80550 81849,-148934 142793,-204445 60944,-55511 134053,-98148 219327,-127911 85274,-29763 178698,-44763 278853,-44763 54802,0 104880,3425 152241,9567 46771,6732 90707,15472 132045,27047l539518 0c22913,0 39212,10866 50668,32480 11575,22322 17008,55511 17008,100156zm-511762 468417c0,-121179 -33188,-215902 -100156,-283578 -67085,-68385 -161808,-102282 -284286,-102282 -63660,0 -119171,10866 -165824,31889 -46771,20905 -85983,50078 -117163,86573 -31062,37204 -54094,79959 -68975,127911 -15590,48070 -23031,98856 -23031,151651 0,117163 33188,209169 100156,276845 66967,67085 160391,100864 280861,100864 64369,0 120470,-10157 168540,-30472 47479,-20905 86691,-48661 117872,-85274 31062,-36495 54094,-78542 68975,-125903 15590,-47361 23031,-96731 23031,-148226zm162399 1412691c0,-76534 -31062,-135470 -94014,-177398 -62243,-41220 -147635,-63660 -254523,-66377l-460976 -15472c-41928,33070 -77125,64251 -104171,94014 -27165,29763 -48070,57519 -64369,84684 -15590,27047 -26338,54094 -32480,80550 -6142,26338 -8740,53385 -8740,80550 0,85865 43228,150942 130628,194878 87282,44054 208461,66377 364127,66377 98856,0 182123,-9449 248381,-28464 67085,-19606 120470,-44645 161099,-76534 41338,-31771 70392,-67676 88699,-108187 17598,-41338 26338,-83975 26338,-128620z"/>
+  <polygon class="fil9" points="24831994,24179801 58082261,24179801 58082261,16517065 24831994,16517065 "/>
+  <polygon class="fil5 str0" points="24831994,24179801 58082261,24179801 58082261,16517065 24831994,16517065 "/>
+  <path class="fil1" d="M29581121 21058912c0,101455 -9449,194878 -27755,279562 -18307,84565 -50078,156257 -95431,215902 -44645,59526 -104289,105589 -177280,138068 -73109,32480 -164525,48661 -272830,48661 -37204,0 -73818,-2598 -110313,-8740 -35905,-5433 -69802,-12874 -100156,-22322 -30472,-9449 -56928,-19606 -79251,-29763 -22322,-10866 -37204,-20315 -44645,-28464 -7441,-7441 -12874,-15590 -17598,-23740 -4724,-8031 -8858,-17598 -12165,-29055 -3425,-10866 -5433,-25039 -6850,-41338 -1299,-16889 -2008,-37204 -2008,-60826 0,-29173 709,-53503 2716,-73109 2008,-19015 6142,-34606 11575,-45354 4724,-11575 11456,-19724 18189,-24448 7441,-4724 16299,-6732 27047,-6732 10866,0 24448,4724 40629,14882 16299,9449 36614,20315 59645,31771 23031,11575 50078,22441 80550,31889 30472,10157 65668,14882 106888,14882 44645,0 83266,-5433 115037,-16889 31889,-11575 58227,-31889 79251,-62361 21023,-30472 37204,-72400 48070,-126494 10157,-53503 15590,-123187 15590,-209169l0 -1838471c0,-9449 2716,-17598 8031,-25629 5433,-8149 14291,-14882 27755,-20315 12874,-4724 30472,-8858 52204,-11575 22322,-2716 49369,-4016 82558,-4016 31771,0 58818,1299 81258,4016 22322,2716 39921,6850 52794,11575 12165,5433 21614,12165 27755,20315 6024,8031 8740,16181 8740,25629l0 1871659z"/>
+  <path id="1" class="fil1" d="M31740964 20684509c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="2" class="fil1" d="M33777738 21655240c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>
+  <path id="3" class="fil1" d="M35842149 21653114c0,10866 -2716,20315 -8031,27755 -5433,8149 -14291,14882 -26456,20315 -12874,4724 -30472,8858 -52794,11575 -22322,2716 -50786,4016 -85274,4016 -35196,0 -64959,-709 -87991,-2716 -23031,-2008 -42637,-5433 -58227,-10157 -16299,-4724 -29055,-11456 -38621,-19606 -10157,-8740 -18897,-18897 -27047,-31181l-752703 -988211 0 990336c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 1613002 672153 -741837c10866,-13582 22322,-24330 33897,-33188 12165,-8149 26338,-15590 42637,-21614 16181,-6142 35787,-10157 58227,-12165 22322,-2126 49369,-2716 81140,-2716 33188,0 60944,591 83266,2716 22322,2008 40629,5433 54212,10157 13464,4724 23622,10748 29763,17598 6024,7441 8740,16889 8740,29055 0,15590 -4016,31771 -12874,47361 -8740,16299 -22322,34606 -42637,55511l-642981 647114 724239 942266c16889,22913 29173,40511 36614,54802 7441,14173 10748,27047 10748,38503z"/>
+  <path id="4" class="fil1" d="M36551507 21655240c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-9449 2008,-18189 6732,-25748 4724,-8031 13582,-14882 26456,-20196 12165,-4842 29055,-8858 50786,-11575 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11575 12165,5315 20315,12165 25629,20196 5433,7559 8149,16299 8149,25748l0 1785676zm36614 -2387437c0,77243 -14882,129328 -44054,157084 -29055,27755 -82558,41928 -161099,41928 -77125,0 -129919,-13464 -158383,-40629 -28464,-27047 -42637,-78424 -42637,-154249 0,-77243 14882,-129328 44054,-157084 29055,-27755 82558,-41928 161099,-41928 77125,0 129919,13464 158383,40629 28346,27047 42637,78542 42637,154249z"/>
+  <path id="5" class="fil1" d="M38689854 21655240c0,10748 -2716,19606 -8149,27047 -5433,6732 -13582,13464 -25748,18897 -12165,4724 -28346,8858 -50078,11575 -20905,2716 -47361,4016 -79132,4016 -33897,0 -60944,-1299 -81967,-4016 -21614,-2716 -37913,-6850 -50078,-11575 -12165,-5433 -20315,-12165 -25748,-18897 -5315,-7441 -8031,-16299 -8031,-27047l0 -1045847c0,-101455 -8149,-184131 -23740,-245665 -15590,-62243 -38621,-115746 -69093,-161099 -30354,-44645 -68975,-79251 -117045,-102872 -48070,-23740 -103581,-35905 -166532,-35905 -81849,0 -163107,29055 -244366,87282 -81849,58227 -167123,143501 -256531,255940l0 1248166c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 236216c100156,-113029 199721,-195587 299876,-247673 99447,-52086 199603,-78542 301176,-78542 118462,0 218618,20315 299876,60235 81258,40629 146808,94723 197004,161808 50078,67676 85865,146808 107596,237515 21614,90707 32480,199721 32480,326333l0 1089784z"/>
+  <path id="6" class="fil1" d="M40409036 21167808c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>
+  <path id="7" class="fil1" d="M43543034 21653114c0,10866 -2008,19724 -6024,27755 -4134,8149 -12283,14882 -25748,20315 -12874,4724 -31889,8858 -55511,11575 -23740,2716 -55511,4016 -94841,4016 -34488,0 -62834,-1299 -84565,-4016 -21614,-2716 -39212,-6850 -52794,-12874 -12874,-6142 -23031,-14173 -30472,-25039 -7441,-10157 -13464,-23740 -18897,-39330l-235626 -605776c-27755,-68975 -56810,-131927 -86573,-189445 -29763,-57637 -64959,-107006 -106297,-148934 -40629,-42046 -89290,-73818 -144801,-97557 -55511,-22913 -122596,-34488 -200429,-34488l-228067 0 0 1093799c0,10866 -2716,19724 -8858,27755 -6024,8149 -15472,14291 -27755,19015 -12874,4724 -29763,8740 -51377,12165 -22322,3425 -49487,4724 -82558,4724 -33188,0 -60235,-1299 -82676,-4724 -21614,-3425 -39212,-7441 -52086,-12165 -13464,-4724 -22322,-10866 -27755,-19015 -5433,-7441 -8149,-16889 -8149,-27755l0 -2376453c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l545541 0c64959,0 118462,1417 161808,4724 42637,3425 81140,7441 115746,10866 99447,17598 186847,44645 263263,81258 75825,37204 139486,83857 190863,140785 52204,56810 90707,121769 116455,195587 25748,73109 38621,154367 38621,242948 0,85274 -11575,162517 -34606,230901 -23622,67676 -56810,127911 -100156,179997 -43936,52086 -96140,97439 -156966,136061 -60944,37913 -128620,70392 -204445,96731 42637,19015 80550,42046 115037,70511 34488,28346 66377,62952 96140,102164 29763,39921 58227,85983 84565,137360 26456,51495 52794,109722 79251,174682l230075 565856c18307,47361 30472,81258 35196,100156 5433,19015 8149,33897 8149,44645zm-513770 -1804456c0,-100274 -22322,-185548 -67676,-255232 -44645,-69093 -119762,-119171 -226059,-149643 -33188,-9449 -70392,-15472 -111730,-19606 -41928,-4016 -96022,-6024 -163698,-6024l-287711 0 0 865024 333065 0c89998,0 167832,-10866 233500,-32480 64959,-22322 119762,-52794 163107,-91416 43936,-39212 75825,-85274 96731,-138068 20315,-52794 30472,-110313 30472,-172556z"/>
+  <path id="8" class="fil1" d="M45447055 20684509c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="9" class="fil1" d="M47589418 20733288c0,156375 -16889,296451 -50786,421055 -33188,123777 -82558,229484 -148226,316057 -64959,86691 -146218,153659 -242358,200311 -96140,46771 -206453,70392 -330230,70392 -52794,0 -101573,-5315 -146218,-15472 -45354,-10866 -88699,-27165 -132045,-50078 -42637,-22441 -85274,-50786 -127202,-85392 -42637,-33779 -87400,-74408 -134761,-120470l0 894196c0,10866 -2716,19606 -8149,27755 -5315,8149 -13464,14882 -25629,20315 -12165,4724 -28464,8740 -50078,11456 -21023,2716 -48070,4134 -81258,4134 -32480,0 -58936,-1417 -79841,-4134 -21732,-2716 -38621,-6732 -50786,-11456 -12874,-5433 -21732,-12165 -26456,-20315 -4724,-8149 -6732,-16889 -6732,-27755l0 -2494325c0,-12165 2008,-21614 6142,-29055 4016,-6732 12165,-13582 23622,-18307 12165,-5433 27047,-9449 46062,-11456 18307,-2126 41220,-2716 67676,-2716 27755,0 50786,591 68975,2716 17598,2008 32598,6024 44763,10748 12165,5433 20315,12283 25039,19015 4724,7441 6732,16889 6732,29055l0 238933c54212,-55511 106297,-103581 156375,-144801 50078,-40629 100864,-74526 151651,-101573 50786,-27047 102872,-48070 156375,-61534 53385,-14291 109604,-21023 169131,-21023 129328,0 238933,25039 330348,75117 90707,50786 165115,119171 222752,206453 57519,87282 99447,188855 125785,304601 26456,115746 39330,238224 39330,367552zm-341214 37913c0,-91416 -6732,-179997 -20905,-265389 -13582,-85274 -37913,-161099 -71101,-227358 -33779,-66377 -79132,-119171 -136061,-159092 -56810,-39921 -127911,-59526 -212476,-59526 -42637,0 -83975,6024 -125313,18897 -40629,12874 -82558,32480 -125195,59526 -41928,27165 -86573,62952 -132635,107715 -46062,44645 -95431,99447 -146926,164406l0 710066c89998,110313 175391,194288 255940,253224 81140,58109 165824,87282 254405,87282 81967,0 152359,-19606 211177,-59526 58936,-40039 106297,-92833 142911,-159092 36495,-66377 62952,-140194 80550,-222752 16889,-81849 25629,-165115 25629,-248381z"/>
+  <path id="10" class="fil1" d="M49739104 20741437c0,145509 -18897,279562 -57519,402040 -37913,121888 -95431,227476 -171257,316057 -75825,88699 -171257,157792 -284877,207162 -114447,49369 -247082,74408 -397316,74408 -146926,0 -274838,-21614 -383851,-65550 -109014,-43346 -199721,-107006 -272121,-190272 -72400,-83266 -126612,-184721 -162399,-303184 -35905,-119171 -53503,-253814 -53503,-404756 0,-145627 18897,-279562 56219,-401449 37913,-122478 94723,-228067 170548,-316766 75825,-88699 170548,-157084 284286,-206453 113738,-48779 246374,-73109 398024,-73109 146808,0 274838,21614 383733,65668 109014,43346 199721,106888 272121,190154 72400,83266 127202,184131 163816,303302 35905,119053 54094,253106 54094,402749zm-341096 20905c0,-96731 -8740,-188146 -27047,-274129 -17598,-85865 -47361,-161099 -88699,-226059 -40629,-64959 -96849,-116336 -167241,-153659 -69684,-37913 -157674,-56810 -262554,-56810 -96849,0 -180115,16889 -249799,51377 -69684,34606 -126612,83266 -171965,146218 -45354,62952 -78424,137478 -100156,223461 -22322,85865 -33188,179997 -33188,281570 0,98148 8858,190154 27165,276137 17598,85983 47361,161099 89290,225350 41928,63660 98148,115155 167832,152359 70392,37913 158383,56810 263381,56810 95431,0 177989,-16889 248381,-51377 70392,-34606 127911,-82676 173265,-144919 45354,-62243 78542,-136651 99565,-222634 20905,-85983 31771,-180705 31771,-283696z"/>
+  <path id="11" class="fil1" d="M51267541 19985309c0,29173 -709,53503 -2008,73109 -1417,19606 -4016,35196 -8149,46771 -3307,11456 -8740,19606 -14882,25629 -5433,6142 -13582,8858 -24330,8858 -10866,0 -23740,-2716 -38621,-8858 -15590,-6024 -32480,-12165 -51377,-17598 -19015,-6024 -40629,-11456 -64369,-16889 -23622,-5433 -49369,-8149 -77125,-8149 -33188,0 -65668,6850 -97439,19724 -31181,13464 -65078,35196 -99565,66259 -35196,30472 -71692,71101 -110313,121179 -37913,50786 -80550,112321 -126612,185430l0 1174467c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -1785676c0,-10748 2008,-19606 6142,-27047 4016,-6732 11456,-13582 23622,-19606 12165,-6142 27047,-10157 46062,-12165 18307,-2126 43346,-2716 73818,-2716 29055,0 53385,591 72400,2716 19606,2008 34488,6024 45354,12165 10157,6024 18189,12874 23031,19606 4016,7441 6732,16299 6732,27047l0 259956c48661,-71810 94723,-129919 137360,-175272 43346,-44763 83975,-80550 121888,-106297 38503,-25748 76416,-43346 113738,-53503 37913,-10157 75825,-14882 114329,-14882 16889,0 36614,709 58227,2716 21614,2008 44645,6142 68385,10866 23622,5433 45354,11456 64251,18189 19015,6850 32480,12874 40629,19724 8149,6732 13582,12756 15590,18897 2716,6142 5433,13582 7441,22322 2008,9449 3425,23031 4016,40629 709,18307 709,41928 709,72400z"/>
+  <path id="12" class="fil1" d="M52565785 21522486c0,38621 -2716,69093 -8149,91416 -4724,22322 -12874,39212 -23622,49369 -10157,10866 -26456,21023 -47479,29881 -20905,9449 -45354,16889 -72400,22913 -27047,6142 -55511,10866 -85983,15000 -30472,4016 -60235,6024 -90707,6024 -92715,0 -171847,-12165 -237515,-36495 -65668,-24448 -119880,-61652 -162517,-111022 -41928,-49487 -72400,-112439 -92006,-188146 -18897,-75825 -28464,-165233 -28464,-268105l0 -1041005 -251098 0c-19606,0 -35905,-10866 -48070,-31889 -11456,-20905 -17598,-55511 -17598,-103463 0,-25039 1417,-46062 4724,-62952 3425,-17598 8149,-31889 12874,-43346 5433,-10866 12874,-19015 21023,-23740 8740,-4724 18307,-6732 29055,-6732l249090 0 0 -423772c0,-9449 2008,-18189 6850,-25629 4724,-8149 13464,-15000 26338,-21023 12165,-6142 29173,-10157 50786,-12874 21023,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,12874 12165,6024 20315,12874 25748,21023 5433,7441 8149,16181 8149,25629l0 423772 454834 0c10748,0 19606,2008 27755,6732 7441,4724 14882,12874 20315,23740 6024,11456 10157,25748 12874,43346 2598,16889 4016,37913 4016,62952 0,47952 -6142,82558 -17598,103463 -12165,21023 -27755,31889 -47361,31889l-454834 0 0 992935c0,122478 18189,215311 54094,277554 35905,62952 100864,94014 194288,94014 29763,0 56810,-2598 80550,-8740 23622,-6142 44645,-12165 62952,-19015 18307,-6732 33779,-12756 47361,-18897 12874,-6142 25039,-8740 35196,-8740 6732,0 12874,1299 18897,4724 5433,3307 10157,9449 13582,18897 3425,9449 6142,21614 8858,37913 2598,15590 4016,35905 4016,59526z"/>
+  <path id="13" class="fil1" d="M54121151 21167808c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>
+  <polygon class="fil7" points="107795026,114832734 156722727,114832734 156722727,104760120 107795026,104760120 "/>
+  <path class="fil6" d="M111236696 110462616c0,119880 -22322,226768 -66377,320900 -44645,93424 -106297,173265 -184839,238933 -78424,64959 -171139,114329 -277436,147517 -107006,33188 -221335,49369 -344521,49369 -85983,0 -165824,-7441 -238933,-21614 -73818,-14882 -139486,-33188 -197004,-54094 -57519,-21023 -105589,-43346 -144919,-65668 -38503,-23031 -66259,-42046 -81140,-58227 -15590,-15590 -26456,-35905 -33897,-60235 -7441,-24448 -10748,-56928 -10748,-97439 0,-29173 1299,-53503 4016,-72518 2716,-18897 6732,-34488 11456,-45944 5433,-12283 12165,-20315 20315,-25039 8149,-4842 17008,-6850 27755,-6850 18307,0 44645,11575 78542,33897 33188,22322 76534,46653 129919,73109 52794,25629 116455,50786 191571,73699 74526,23031 161099,34606 258539,34606 74526,0 142202,-10157 203855,-29763 61534,-19724 114329,-47479 158383,-83975 44645,-35905 78424,-80550 102164,-133344 23740,-52794 35905,-113029 35905,-180115 0,-72400 -16299,-134643 -49487,-186138 -33070,-51377 -76416,-96731 -130628,-136061 -54802,-38503 -116336,-74408 -185430,-106888 -69684,-32480 -140785,-64959 -213185,-98856 -72518,-33779 -143501,-71101 -211886,-112321 -69093,-40629 -130628,-88699 -184839,-144210 -54094,-55511 -98148,-120470 -131218,-195587 -33897,-74408 -50786,-163816 -50786,-268105 0,-107596 19606,-203028 58227,-286885 39212,-83266 93305,-153659 162399,-210587 69684,-56810 152241,-100156 247791,-129919 96022,-29763 198894,-44645 309916,-44645 56928,0 113738,4724 171257,14882 57519,10157 111730,23031 162517,39921 50786,16181 96140,35196 136061,55511 39212,20315 65668,37204 77833,49369 12874,12874 20905,22322 25039,29763 4016,7441 6732,17008 9449,27755 2716,11575 4724,25039 6142,41338 1299,15590 2008,35905 2008,61534 0,23740 -709,44763 -2716,63660 -2008,18307 -5433,33897 -9449,46653 -3425,12283 -9567,21732 -16299,27755 -7441,6142 -15590,8858 -25039,8858 -14882,0 -37204,-9449 -68385,-27755 -31062,-18897 -68975,-39212 -114329,-62952 -44763,-23031 -98148,-44054 -159800,-62952 -60944,-19606 -129919,-29055 -207162,-29055 -70983,0 -133344,9449 -186138,28346 -52794,19606 -96731,44763 -131218,76534 -33897,31771 -59645,68975 -77243,112321 -16889,44054 -25748,89998 -25748,138777 0,71101 16299,132635 49487,184131 33188,51377 77125,96731 131927,136769 55511,39921 117872,75707 188264,108896 69684,33188 141375,66377 214484,100156 72518,33897 144210,70392 213894,111022 70392,39921 132754,87991 188264,142911 54802,54802 98738,119053 132635,194170 33779,74526 50786,162517 50786,264680z"/>
+  <path id="1" class="fil6" d="M113809445 110233841c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>
+  <path id="2" class="fil6" d="M116252866 108762332c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <polygon class="fil8" points="119627687,113560119 130512530,113560119 130512530,105897383 119627687,105897383 "/>
+  <path class="fil6" d="M123944184 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>
+  <path id="1" class="fil6" d="M126550239 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>
+  <path id="2" class="fil6" d="M128986928 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <polygon class="fil8" points="131595582,113560119 142453378,113560119 142453378,105897383 131595582,105897383 "/>
+  <path class="fil6" d="M135907591 109791053c0,222043 -28464,416331 -85274,582155 -56810,166532 -140076,303892 -249090,412906 -109014,108896 -243066,190863 -401449,244956 -158974,54212 -347828,81258 -567155,81258l-543534 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2289171c0,-51495 13582,-87282 40629,-108305 27165,-20315 56219,-30472 86691,-30472l580738 0c222752,0 410189,28464 563848,85983 152950,57519 281570,140785 385859,248381 103463,107596 182005,238224 235508,391883 53503,153068 80550,326333 80550,519203zm-357395 14882c0,-138777 -16889,-267987 -51495,-387867 -34488,-119762 -88581,-223342 -161690,-310624 -73818,-87400 -166532,-155076 -279562,-204445 -112321,-48779 -257239,-73109 -434520,-73109l-347946 0 0 1998153 351254 0c164525,0 302593,-20315 415622,-61652 112321,-40511 206453,-103463 281570,-188146 75825,-84565 132635,-190863 169958,-318774 37913,-127202 56810,-278853 56810,-453535z"/>
+  <path id="1" class="fil6" d="M138513646 110163330c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>
+  <path id="2" class="fil6" d="M140950334 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <polygon class="fil8" points="143563476,113560119 154421273,113560119 154421273,105897383 143563476,105897383 "/>
+  <path class="fil6" d="M148802870 108691821c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <path id="1" class="fil6" d="M151035822 108896266c0,25039 -1299,47361 -4016,66259 -2716,19015 -6732,35196 -11456,48070 -5433,12165 -12283,21023 -20315,26456 -7441,5433 -16299,8149 -25748,8149 -15590,0 -41928,-12874 -79251,-37913 -37204,-25039 -86573,-53503 -148816,-83975 -62361,-30472 -136769,-58936 -223461,-83975 -86573,-25039 -189445,-37913 -307908,-37913 -142202,0 -268814,25748 -381135,77243 -112321,52086 -207752,123187 -285585,214484 -78542,91416 -138068,199721 -180115,325624 -41220,125903 -62243,261964 -62243,408890 0,164406 23031,309916 68385,437236 45944,126494 108896,234208 190154,321490 80550,87282 176690,153659 289011,198304 111730,45354 234917,67676 368261,67676 79841,0 160391,-9449 241649,-29055 81258,-19015 157084,-48070 227476,-85983l0 -749986 -594320 0c-23031,0 -39921,-11456 -50786,-33779 -11456,-22441 -16889,-57637 -16889,-105707 0,-25039 1299,-46653 4016,-64251 2716,-17598 6732,-32480 12874,-43936 6142,-10866 12874,-19015 21023,-24448 7441,-5433 17598,-8149 29763,-8149l814237 0c14882,0 29173,2716 44054,8149 14173,5433 27755,12874 39212,23740 12165,10748 21614,25039 27755,43346 6732,18897 10157,39921 10157,63542l0 979471c0,34488 -6142,64369 -17598,89408 -12165,25039 -37204,47361 -75825,66259 -37913,19015 -87991,39921 -148934,62243 -60826,23031 -123187,42046 -188146,58227 -64959,15590 -130628,27755 -196296,35196 -66377,8149 -131927,12165 -196296,12165 -199012,0 -376292,-30354 -531959,-92006 -156375,-61534 -288420,-149525 -396016,-263263 -107596,-113738 -190272,-249799 -247082,-408890 -56810,-159092 -85274,-335663 -85274,-531959 0,-203736 30472,-388576 92006,-553691 61652,-165233 148226,-306018 259956,-423063 111730,-116455 245665,-206453 402040,-270822 157084,-64251 330348,-96022 520502,-96022 98148,0 189564,8740 275546,25629 85983,17598 162399,37913 229484,60944 66259,23740 122478,48779 168540,76534 45354,27047 76416,49369 94014,66967 17008,16889 29173,37204 35196,59526 6850,22441 10157,54920 10157,97557z"/>
+  <path class="fil6" d="M102770589 109710149c0,92951 -15590,154604 -46771,185784 -31181,31181 -86101,46771 -165351,46771 -77243,0 -130864,-15590 -161336,-46062 -30472,-30590 -45472,-90825 -45472,-181060 0,-92833 15590,-154485 46771,-185666 31181,-31181 86101,-46771 165469,-46771 77243,0 130746,14882 161218,45472 30590,30472 45472,91416 45472,181532zm898685 0c0,92951 -15590,154604 -46062,185784 -30472,31181 -85392,46771 -165351,46771 -77243,0 -130864,-15590 -161336,-46062 -30472,-30590 -46062,-90825 -46062,-181060 0,-92833 15590,-154485 46771,-185666 31181,-31181 85983,-46771 164643,-46771 78660,0 132872,14882 162635,45472 29881,30472 44763,91416 44763,181532zm894669 0c0,92951 -15590,154604 -46771,185784 -31181,31181 -86101,46771 -165351,46771 -77243,0 -130864,-15590 -161336,-46062 -30472,-30590 -45354,-90825 -45354,-181060 0,-92833 15590,-154485 46653,-185666 31181,-31181 86101,-46771 165469,-46771 77243,0 130746,14882 161218,45472 30590,30472 45472,91416 45472,181532z"/>
+  <path class="fil6" d="M10275405 107843451c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>
+  <path id="1" class="fil6" d="M12132774 106972994c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="2" class="fil6" d="M14076833 106154032c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>
+  <path id="3" class="fil6" d="M15928059 106972994c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="4" class="fil6" d="M16758596 107943724c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>
+  <path class="fil6" d="M18185932 106990592c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>
+  <path class="fil6" d="M20239596 106703589c0,197004 -15590,377119 -46653,539518 -31181,162399 -82558,301884 -154367,419048 -72400,117045 -166532,207044 -282869,271412 -116455,64251 -259956,96022 -430504,96022 -161099,0 -296569,-28346 -407473,-85865 -110431,-57519 -199012,-142202 -266688,-253814 -67085,-111730 -115155,-249090 -143501,-412315 -28464,-163107 -42637,-350545 -42637,-561722 0,-195705 15472,-374993 47361,-538219 31771,-163107 83266,-303184 154958,-420229 71101,-117163 165115,-207162 281570,-271531 116455,-64251 259247,-96022 428496,-96022 162399,0 298459,28346 409481,85865 110313,57637 199012,142202 266688,253932 67085,111612 115037,249090 143501,412197 28464,163107 42637,350545 42637,561722zm-349246 23740c0,-127911 -4724,-242948 -13582,-344521 -9449,-101573 -22913,-191571 -41220,-269405 -17598,-77833 -40629,-144801 -69093,-201020 -28346,-55511 -62243,-102164 -102164,-138068 -39330,-36614 -84684,-62952 -135352,-79251 -51495,-16889 -108305,-25039 -171965,-25039 -112321,0 -203028,26456 -273420,79251 -69802,52794 -125313,125195 -165233,217909 -40629,92124 -67676,200311 -82558,324915 -14173,123895 -21614,257239 -21614,400032 0,190863 10157,353970 29763,488023 19606,134053 51377,242948 94014,327632 42755,84565 97557,146218 164525,184131 66967,38503 147517,57519 243066,57519 73699,0 138659,-12165 194878,-35905 56219,-23622 104289,-57519 144919,-101573 39921,-44645 73699,-97439 100156,-159682 26338,-62243 47361,-130628 63542,-205744 15590,-75117 26456,-157084 32480,-244366 6142,-87991 8858,-179406 8858,-274838z"/>
+  <path class="fil6" d="M12314306 112779661c10748,18897 16181,34488 16181,46653 0,12874 -6732,23031 -18897,31181 -12874,7441 -31889,13464 -57519,16889 -25748,3425 -59645,4724 -100274,4724 -39921,0 -70983,-709 -94014,-2716 -23740,-2008 -42046,-5433 -55511,-10157 -14291,-4724 -25039,-10748 -31889,-17598 -7441,-7441 -13464,-15590 -18897,-25039l-428496 -708649 -426370 708649c-5433,9449 -11575,17598 -19015,25039 -6732,6850 -17598,12874 -31771,17598 -13582,4724 -31771,8149 -54212,10157 -22322,2008 -52086,2716 -89290,2716 -38621,0 -69684,-1299 -94132,-4724 -24330,-3425 -42637,-9449 -53385,-16889 -11575,-8149 -17008,-18307 -16299,-31181 709,-12165 7441,-27755 18897,-46653l555817 -870457 -525935 -839394c-10157,-18897 -16299,-34488 -17008,-46653 -591,-12874 5433,-23031 18307,-31889 12165,-8740 31181,-14173 57519,-16889 25748,-2716 59645,-4016 101573,-4016 38621,0 68975,591 92715,2716 23031,2008 41338,5433 54094,9449 13582,3425 23031,8740 29881,15590 6732,6732 12874,14882 18189,23622l406174 664712 412906 -664712c4724,-8031 10866,-14882 17598,-21614 6732,-6732 15590,-12165 26338,-16889 11575,-4724 27165,-8149 48070,-10157 20315,-2126 48779,-2716 83975,-2716 38621,0 69684,1299 94132,4016 25039,2716 42637,7441 54802,14882 12165,7441 16889,17598 15590,30472 -1417,13582 -7441,29763 -19724,50078l-521093 829237 550974 880614z"/>
+  <path id="1" class="fil6" d="M14768710 111917944c0,155666 -23031,295152 -68385,417630 -45354,121888 -111022,225468 -195587,310034 -84684,84565 -187556,148934 -309325,192280 -121179,43936 -259247,65550 -414323,65550 -141494,0 -269995,-20196 -386450,-61534 -116455,-40629 -215902,-101573 -299168,-181414 -83266,-79841 -147635,-179997 -192280,-300585 -45354,-119762 -67676,-258539 -67676,-416213l0 -1591979c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13464,-4724 30472,-8740 52086,-12165 21023,-3425 48779,-4724 83975,-4724 31771,0 58818,1299 81140,4724 23031,3425 40629,7441 52794,12165 12874,4724 21732,10866 27165,19015 5433,7441 8031,16889 8031,27755l0 1550051c0,118462 14291,222634 43346,310624 29173,88699 71101,162517 125903,221335 54212,58936 120470,102872 197713,132635 76416,29881 163107,44763 259838,44763 98148,0 186138,-14291 263381,-43346 77125,-29173 142084,-73109 195587,-131336 53503,-58227 94132,-129919 122478,-215902 28464,-85983 42637,-186138 42637,-301176l0 -1567649c0,-10866 2716,-20315 8149,-27755 5433,-8149 14173,-14291 27755,-19015 13582,-4724 31181,-8740 52794,-12165 22322,-3425 49369,-4724 83266,-4724 31771,0 58227,1299 80550,4724 21614,3425 39212,7441 51495,12165 12756,4724 22322,10866 28346,19015 6142,7441 8858,16889 8858,27755l0 1566232z"/>
+  <path id="2" class="fil6" d="M17212131 110446435c0,25039 -1299,46653 -4016,64959 -2716,18307 -6732,33188 -12874,44645 -6142,10866 -12874,19724 -21614,24448 -8858,5433 -18307,8031 -28464,8031l-720932 0 0 2226928c0,10866 -2716,19724 -8031,27755 -5433,8149 -14291,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49369,4724 -82558,4724 -31771,0 -58818,-1299 -81258,-4724 -22322,-3425 -40511,-7441 -53385,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8031 -8149,-16889 -8149,-27755l0 -2226928 -720932 0c-10157,0 -19606,-2598 -28346,-8031 -8858,-4724 -15590,-13582 -21023,-24448 -4724,-11456 -9449,-26338 -12874,-44645 -3307,-18307 -4724,-39921 -4724,-64959 0,-25039 1417,-47361 4724,-66377 3425,-18897 8149,-34488 12874,-45944 5433,-12283 12165,-21023 21023,-25748 8740,-5433 18189,-8149 28346,-8149l1782960 0c10157,0 19606,2716 28464,8149 8740,4724 15472,13464 21614,25748 6142,11456 10157,27047 12874,45944 2716,19015 4016,41338 4016,66377z"/>
+  <path id="3" class="fil6" d="M18443290 112330141c0,91416 -16889,172674 -50668,244366 -33897,71101 -81258,131336 -143501,180115 -62361,48661 -136061,85865 -222043,111022 -85983,25039 -180705,37795 -283578,37795 -63660,0 -123895,-4724 -181414,-14882 -57519,-9449 -109014,-21614 -155076,-37204 -45354,-14882 -83857,-30472 -115746,-46653 -31771,-16299 -54802,-31181 -68975,-44054 -14882,-12874 -25748,-31771 -31889,-55511 -6732,-23622 -10157,-56101 -10157,-97439 0,-25039 1417,-46062 4134,-62952 2716,-17598 6024,-31181 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7441,-4724 15590,-6732 25039,-6732 14291,0 35905,8740 64369,27047 28464,17598 63660,37204 104880,58227 41338,20905 90707,40629 147517,58227 56928,18189 121888,27047 195705,27047 55511,0 105589,-6142 150234,-18307 45354,-11456 83975,-29055 117045,-52794 33188,-23031 58227,-52794 76534,-88699 17598,-35787 26456,-78542 26456,-127911 0,-50078 -12874,-92715 -38621,-126612 -25748,-34488 -59526,-64959 -101573,-91298 -42637,-26456 -89998,-50078 -142793,-70392 -52794,-20315 -106888,-42046 -163107,-64369 -55511,-23031 -110313,-48070 -163816,-76416 -53503,-28464 -100864,-62952 -143501,-104289 -41928,-41338 -75825,-89998 -101573,-146926 -25629,-56810 -38503,-124486 -38503,-204327 0,-69802 13464,-136769 40629,-201020 27047,-64369 67676,-120588 121769,-168540 54802,-48070 122478,-87400 203736,-116455 81258,-29173 175981,-43346 284995,-43346 47361,0 94723,4016 142793,12165 47361,8149 89998,19015 128620,31181 38621,12165 71101,25748 98148,39921 27047,14882 48070,27047 61652,38621 14173,10748 22913,20315 27755,27755 4724,8031 8031,16889 10039,27047 2126,9449 4134,21614 6142,35905 2008,14882 2716,32480 2716,53385 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29763 -10157,39921 -4724,10866 -10157,18307 -16889,23031 -6732,4724 -14291,6732 -21732,6732 -12165,0 -29055,-7441 -52086,-22322 -22322,-14173 -51377,-29763 -87282,-46653 -35905,-16889 -77833,-32480 -125903,-46771 -48070,-14882 -103581,-22322 -165824,-22322 -55511,0 -104998,6142 -146926,19015 -42637,12165 -77125,29763 -104171,52794 -27165,23031 -48070,50078 -61652,81849 -14173,31181 -21023,65668 -21023,102282 0,51377 13582,94723 40039,129919 26338,35196 60235,65668 102872,92006 41928,26456 90707,50196 144801,71810 54212,21023 109014,42637 165115,64959 56219,23031 111730,48070 166532,75825 54802,27755 103581,61534 145509,100864 42637,39921 76534,87282 102282,142793 25748,55511 38503,121888 38503,198304z"/>
+  <path class="fil6" d="M10275405 36149231c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>
+  <path id="1" class="fil6" d="M12132774 35278774c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="2" class="fil6" d="M14076833 34459812c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>
+  <path id="3" class="fil6" d="M15928059 35278774c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="4" class="fil6" d="M16758596 36249504c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>
+  <path class="fil6" d="M18185932 35296372c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>
+  <path class="fil6" d="M20134007 35564477c0,117045 -20315,223342 -61534,318065 -40629,94132 -99565,175391 -176690,243066 -76534,66967 -171257,119171 -283578,154958 -112439,36614 -238933,54802 -380426,54802 -85983,0 -166532,-6732 -241059,-20905 -74408,-13582 -140785,-29763 -198894,-48779 -58227,-19606 -107006,-39212 -144919,-59526 -38621,-20315 -62952,-35196 -72400,-44054 -10157,-9449 -17598,-18897 -23031,-27755 -5433,-9449 -10157,-20315 -13582,-33779 -4016,-12874 -7441,-29173 -9449,-48070 -2008,-19015 -2716,-42637 -2716,-70392 0,-46771 4724,-79841 14291,-98148 9449,-18307 23031,-27755 40629,-27755 12165,0 36495,10866 72400,31771 35787,21023 81849,43346 138068,67676 56219,24448 121769,46771 197595,67676 75117,21023 159092,31889 251216,31889 89290,0 167832,-11575 235508,-33897 67676,-22322 125195,-54094 171257,-95431 46062,-41220 80550,-89998 103581,-146218 23031,-56101 34488,-117045 34488,-183422 0,-73109 -14882,-138777 -44054,-196886 -29055,-58227 -72400,-109014 -129210,-151060 -56219,-42637 -125903,-75117 -208461,-97439 -82676,-22322 -176690,-33779 -281570,-33779l-251806 0c-10866,0 -21732,-2126 -31889,-6850 -10157,-4724 -18897,-12165 -26338,-22913 -7441,-10157 -13582,-24448 -18307,-41338 -4724,-16889 -7441,-39212 -7441,-66967 0,-25039 2008,-45354 6142,-62361 4016,-16181 9449,-29055 16889,-39212 7441,-9449 15590,-16889 24330,-21614 9449,-4842 20315,-6850 31889,-6850l224642 0c86691,0 165233,-11456 234917,-33779 68975,-22322 127911,-54920 176690,-97557 48070,-41928 85274,-92715 111022,-151533 25629,-58936 38503,-124604 38503,-197713 0,-52794 -8740,-102872 -25748,-151651 -16889,-47952 -42637,-89998 -77125,-125903 -34488,-35787 -78542,-63542 -131927,-84565 -53503,-20315 -115155,-30472 -184839,-30472 -77125,0 -146926,11575 -211177,35196 -64369,23031 -121179,48070 -171257,74526 -50078,26338 -92006,51377 -125195,74408 -32480,23740 -56219,35196 -69093,35196 -9449,0 -17598,-1299 -25039,-4724 -6732,-3425 -12874,-10157 -17598,-20315 -4724,-9449 -8149,-23740 -10157,-41338 -2008,-17598 -2716,-41220 -2716,-70392 0,-19606 709,-37204 2008,-52794 1417,-14882 4134,-28346 8149,-39212 4134,-11456 8149,-21614 13582,-31181 5433,-8740 14173,-19606 27047,-32480 12165,-12165 37913,-30472 75825,-54094 38621,-24448 85983,-47361 142084,-70392 56219,-23740 121179,-42637 194288,-58936 73109,-15590 152359,-23622 236925,-23622 119171,0 223342,14882 313459,45354 89290,30354 164406,73699 224642,129210 60235,54802 104998,121179 134761,199012 29763,77125 44645,162517 44645,256531 0,80550 -10866,155076 -31771,224760 -21023,68975 -52204,130628 -93424,184131 -40629,53385 -91416,98738 -150942,136651 -59645,37913 -127911,63660 -205862,77833l0 4134c88109,9449 169249,31771 242358,66259 73109,35196 136061,79251 188855,132045 52794,52794 94132,115037 123895,185430 29763,71101 44645,146218 44645,227476z"/>
+  <path class="fil6" d="M12368281 38749026c0,25039 -1417,46771 -4134,65078 -2716,18307 -6732,33188 -12874,44763 -6024,10866 -12874,19606 -21614,24330 -8858,5433 -18307,8149 -28464,8149l-721877 0 0 2229881c0,10866 -2716,19606 -8149,27755 -5433,8149 -14173,14291 -27755,19015 -12874,4724 -30472,8740 -52204,12165 -22322,3425 -49487,4724 -82676,4724 -31889,0 -58936,-1299 -81258,-4724 -22441,-3425 -40747,-7441 -53621,-12165 -13582,-4724 -22322,-10866 -27755,-19015 -5433,-8149 -8149,-16889 -8149,-27755l0 -2229881 -721759 0c-10275,0 -19724,-2716 -28464,-8149 -8858,-4724 -15590,-13464 -21023,-24330 -4842,-11575 -9567,-26456 -12874,-44763 -3425,-18307 -4842,-40039 -4842,-65078 0,-25039 1417,-47479 4842,-66377 3307,-19015 8031,-34606 12874,-46062 5433,-12283 12165,-21023 21023,-25866 8740,-5315 18189,-8031 28464,-8031l1785204 0c10157,0 19606,2716 28464,8031 8740,4842 15590,13582 21614,25866 6142,11456 10157,27047 12874,46062 2716,18897 4134,41338 4134,66377z"/>
+  <path id="1" class="fil6" d="M13862821 40151324c0,51495 -12992,88109 -38739,110431 -25748,21732 -55511,32598 -88699,32598l-1173876 0c0,99565 10157,189091 29763,268342 19724,79959 52912,148462 99683,205390 46062,56928 106415,100274 180233,130864 74526,30472 165351,46062 272475,46062 84684,0 160627,-6850 226413,-21023 66377,-13582 124014,-29173 172084,-46062 48188,-17008 88109,-32598 119289,-46062 31181,-14291 54212,-21023 70511,-21023 9449,0 17598,2008 25039,6732 6850,4724 12874,11575 16299,21023 4016,8858 7441,21732 9449,37913 2126,17008 2716,36614 2716,60353 0,16889 -591,31889 -2008,44763 -1299,12165 -2716,23740 -4724,33188 -2008,10157 -5433,19015 -10157,27047 -4724,7559 -10157,15000 -17598,22441 -7441,7441 -29173,19015 -64369,35196 -36023,17008 -82085,32598 -139013,48779 -56928,15590 -122714,29881 -197241,42046 -74526,12874 -153777,19015 -238578,19015 -147045,0 -275192,-20315 -385623,-61652 -110431,-40747 -203264,-101691 -278499,-182359 -75235,-81376 -132163,-182359 -170194,-304365 -38621,-121297 -57637,-262909 -57637,-424953 0,-153186 19724,-291373 59645,-414087 39330,-122006 96967,-226295 171493,-311805 74526,-85392 165351,-150352 271176,-196532 105707,-45354 224287,-68385 355151,-68385 140194,0 259484,22322 357868,67794 98856,44645 179524,105707 243303,181532 62952,75944 109722,165469 139604,268460 29763,102282 44763,212122 44763,328695l0 59645zm-329404 -96967c4016,-172084 -33897,-307672 -114565,-405938 -80668,-98266 -199248,-147045 -357159,-147045 -81376,0 -152596,14882 -213539,45354 -60944,30590 -111848,71219 -153186,122006 -41338,50196 -73227,109132 -95549,175627 -22322,67085 -35196,136887 -37913,209996l971912 0z"/>
+  <path id="2" class="fil6" d="M15487280 40635213c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>
+  <path id="3" class="fil6" d="M16836783 40990364c0,38621 -2716,69211 -8149,91534 -4724,22322 -12874,39330 -23740,49487 -10157,10866 -26456,21023 -47479,29763 -21023,9567 -45354,17008 -72518,23149 -27047,6024 -55511,10748 -86101,14882 -30472,4016 -60235,6024 -90825,6024 -92833,0 -172084,-12165 -237870,-36495 -65668,-24448 -119998,-61771 -162635,-111258 -42046,-49369 -72518,-112439 -92124,-188382 -19015,-75944 -28464,-165351 -28464,-268342l0 -1042422 -251452 0c-19724,0 -36023,-10866 -48188,-31889 -11456,-21023 -17598,-55511 -17598,-103699 0,-25039 1299,-46062 4724,-62952 3425,-17716 8149,-31889 12874,-43464 5433,-10866 12874,-18897 21023,-23740 8858,-4724 18307,-6732 29173,-6732l249444 0 0 -424244c0,-9567 2008,-18307 6732,-25748 4724,-8149 13582,-15000 26456,-21023 12165,-6142 29055,-10157 50786,-12874 21023,-2716 47479,-4134 79959,-4134 33188,0 60353,1417 81376,4134 21614,2716 37913,6732 50078,12874 12283,6024 20433,12874 25866,21023 5315,7441 8031,16181 8031,25748l0 424244 455543 0c10866,0 19606,2008 27755,6732 7441,4842 14882,12874 20315,23740 6142,11575 10157,25748 12874,43464 2716,16889 4134,37913 4134,62952 0,48188 -6142,82676 -17716,103699 -12165,21023 -27755,31889 -47361,31889l-455543 0 0 994234c0,122714 18307,215547 54330,277908 35905,63070 100982,94250 194406,94250 29881,0 56928,-2716 80668,-8858 23740,-6142 44763,-12165 63070,-19015 18307,-6732 33897,-12874 47479,-18897 12874,-6142 25039,-8858 35196,-8858 6732,0 12874,1417 19015,4724 5433,3425 10157,9567 13582,19015 3307,9449 6024,21732 8740,37913 2716,15590 4134,35905 4134,59645z"/>
+  <path id="4" class="fil6" d="M18394157 40635213c0,91534 -16889,172910 -50786,244720 -33897,71219 -81376,131454 -143738,180233 -62361,48897 -136179,86101 -222279,111258 -86101,25039 -180942,37913 -283932,37913 -63778,0 -124014,-4724 -181650,-14882 -57637,-9567 -109132,-21732 -155194,-37322 -45472,-14882 -84093,-30472 -115982,-46771 -31771,-16299 -54802,-31181 -69093,-44054 -14882,-12874 -25748,-31889 -31889,-55629 -6732,-23622 -10157,-56219 -10157,-97557 0,-25039 1417,-46062 4134,-63070 2716,-17598 6024,-31062 9449,-41928 4016,-10866 10157,-18307 16889,-23031 7559,-4842 15590,-6850 25157,-6850 14173,0 35905,8858 64369,27165 28464,17598 63660,37204 104998,58227 41338,21023 90825,40747 147753,58345 56928,18307 122006,27047 195941,27047 55511,0 105707,-6024 150470,-18307 45354,-11456 83975,-29055 117281,-52794 33188,-23031 58227,-52912 76534,-88817 17598,-35905 26456,-78660 26456,-128147 0,-50078 -12874,-92833 -38621,-126730 -25748,-34488 -59645,-65078 -101691,-91416 -42755,-26456 -90116,-50196 -143029,-70511 -52794,-20315 -107124,-42046 -163344,-64369 -55511,-23031 -110431,-48188 -164052,-76652 -53503,-28464 -100982,-62952 -143619,-104408 -42046,-41338 -75944,-90116 -101691,-147045 -25748,-56928 -38621,-124722 -38621,-204681 0,-69802 13582,-136887 40629,-201256 27165,-64369 67794,-120706 122006,-168776 54920,-48070 122714,-87400 204091,-116573 81258,-29173 176217,-43346 285231,-43346 47479,0 94959,4016 143029,12165 47479,8149 90116,19015 128856,31181 38621,12165 71101,25748 98266,40039 27047,14882 48070,27047 61652,38621 14173,10748 23031,20315 27755,27755 4724,8149 8149,16889 10157,27047 2008,9567 4134,21732 6142,36023 2008,14882 2716,32480 2716,53503 0,22322 -709,42046 -2716,58227 -2008,16299 -5433,29881 -10157,40039 -4724,10866 -10157,18307 -17008,23031 -6732,4724 -14173,6850 -21614,6850 -12283,0 -29173,-7559 -52204,-22441 -22441,-14173 -51495,-29763 -87400,-46771 -36023,-16889 -77951,-32480 -126139,-46771 -48070,-14882 -103699,-22322 -166060,-22322 -55511,0 -104998,6142 -147045,19015 -42755,12165 -77243,29763 -104408,52794 -27047,23031 -48070,50196 -61652,81967 -14173,31181 -21023,65786 -21023,102400 0,51495 13582,94841 40039,130155 26456,35196 60235,65668 102990,92124 42046,26456 90825,50196 145037,71928 54212,20905 109132,42637 165351,64959 56338,23149 111848,48188 166769,75944 54920,27755 103699,61652 145745,100982 42637,40039 76534,87400 102282,143029 25748,55629 38621,122006 38621,198540z"/>
+  <path class="fil6" d="M10113007 23190763c0,27165 -1299,49487 -4016,67085 -2716,17598 -6850,33188 -12874,46062 -6142,12165 -12874,21614 -21732,27637 -8740,6142 -18897,8858 -31062,8858l-1135137 0c-30472,0 -59526,-10157 -86691,-30472 -27047,-21023 -40629,-56810 -40629,-108305l0 -2376453c0,-10866 2716,-20315 8149,-27755 5433,-8149 14291,-14291 27755,-19015 12874,-4724 31181,-8740 53503,-12165 22322,-3425 49369,-4724 81258,-4724 33070,0 60235,1299 82558,4724 21614,3425 39212,7441 52086,12165 13582,4724 22322,10866 27755,19015 5433,7441 8149,16889 8149,27755l0 2218779 921243 0c12165,0 22322,2716 31062,8740 8149,6142 15590,14882 21732,25748 6024,11575 10157,26456 12874,45354 2716,18307 4016,40629 4016,66967z"/>
+  <path id="1" class="fil6" d="M11970375 22320306c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="2" class="fil6" d="M13914434 21501345c0,5433 0,10866 -709,16889 -709,6142 -2008,12165 -2716,19015 -1299,6732 -3307,13464 -5433,21614 -2008,8149 -4016,16299 -6732,25748l-608493 1696269c-5433,14882 -12874,27047 -21023,35787 -8740,9567 -21614,17008 -38503,21732 -17598,5433 -39330,9449 -65668,11456 -26456,2008 -59645,2716 -99565,2716 -39212,0 -72400,-1299 -98738,-4016 -26456,-2716 -48070,-6850 -64369,-11575 -16889,-5433 -29763,-12874 -38621,-22322 -9449,-8740 -16889,-20315 -22322,-33779l-606485 -1696269c-5433,-15590 -9449,-29763 -12874,-41338 -3307,-12165 -5315,-20905 -6024,-27047 -709,-6142 -709,-10866 -709,-14882 0,-10866 2716,-19606 7441,-27755 5433,-8149 14173,-14173 27047,-19015 12283,-4724 29173,-7441 49487,-8740 20315,-1417 45944,-2008 76416,-2008 38621,0 69093,591 92124,2716 23031,2008 41220,6024 53503,11456 12756,4724 22322,11575 27637,19606 6142,8149 11575,17598 17008,29763l503613 1472218 8031 23740 6142 -23740 497471 -1472218c2716,-12165 7441,-21614 14291,-29763 6024,-8031 16181,-14882 28346,-19606 12874,-5433 29763,-9449 51495,-11456 22322,-2126 50786,-2716 86573,-2716 30472,0 55511,591 75235,2008 19606,1299 35196,4724 46653,10157 11456,4724 18897,11456 23740,18307 4724,7441 6732,16181 6732,27047z"/>
+  <path id="3" class="fil6" d="M15765661 22320306c0,51495 -12874,87991 -38503,110431 -25748,21614 -55511,32480 -88699,32480l-1172341 0c0,99447 10157,188855 29763,267987 19606,79841 52794,148226 99447,205154 46062,56810 106297,100156 180115,130628 74408,30472 165115,45944 272121,45944 84565,0 160391,-6732 226059,-20905 66377,-13582 123895,-29173 171965,-46062 47952,-16889 87991,-32480 119053,-46062 31181,-14173 54212,-20905 70392,-20905 9449,0 17598,2008 25039,6732 6850,4724 12874,11456 16299,21023 4016,8740 7441,21614 9449,37913 2008,16889 2716,36495 2716,60235 0,16889 -709,31771 -2008,44645 -1417,12165 -2716,23622 -4724,33188 -2126,10157 -5433,18897 -10157,27047 -4724,7441 -10157,14882 -17598,22322 -7441,7441 -29173,19015 -64369,35196 -35787,16889 -81849,32480 -138777,48779 -56810,15472 -122478,29763 -196886,41928 -74526,12874 -153659,18897 -238342,18897 -146808,0 -274719,-20196 -385151,-61534 -110313,-40629 -203028,-101573 -278145,-182123 -75117,-81140 -132045,-182005 -169839,-303892 -38621,-121179 -57637,-262672 -57637,-424362 0,-152950 19724,-291136 59645,-413615 39212,-121769 96731,-226059 171257,-311333 74408,-85274 165115,-150234 270704,-196296 105589,-45354 224051,-68385 354679,-68385 140076,0 259247,22322 357395,67676 98856,44645 179406,105589 242948,181414 62952,75825 109722,165115 139486,268105 29763,102164 44645,211768 44645,328222l0 59526zm-328931 -96731c4016,-171965 -33897,-307317 -114329,-405465 -80550,-98148 -199012,-146926 -356805,-146926 -81140,0 -152241,14882 -213185,45354 -60944,30472 -111730,71101 -152950,121888 -41338,50078 -73109,109014 -95431,175272 -22322,67085 -35196,136769 -37913,209878l970612 0z"/>
+  <path id="4" class="fil6" d="M16596197 23291037c0,10748 -2716,19606 -8149,27047 -5315,6732 -13464,13464 -25629,18897 -12165,4724 -28464,8858 -50078,11575 -21023,2716 -48070,4016 -81258,4016 -32480,0 -58936,-1299 -79841,-4016 -21732,-2716 -38621,-6850 -50786,-11575 -12874,-5433 -21732,-12165 -26456,-18897 -4724,-7441 -6732,-16299 -6732,-27047l0 -2648692c0,-10748 2008,-20315 6732,-27755 4724,-8149 13582,-14882 26456,-20315 12165,-4724 29055,-8740 50786,-11456 20905,-2716 47361,-4016 79841,-4016 33188,0 60235,1299 81258,4016 21614,2716 37913,6732 50078,11456 12165,5433 20315,12165 25629,20315 5433,7441 8149,17008 8149,27755l0 2648692z"/>
+  <path class="fil6" d="M18023415 22337905c0,52204 -6024,87991 -17598,107715 -12165,19606 -29055,29763 -52086,29763l-829119 0c-24448,0 -42046,-10157 -54212,-30472 -11456,-21023 -17598,-56219 -17598,-107006 0,-50078 6142,-85274 17598,-104880 12165,-19606 29763,-29763 54212,-29763l829119 0c10866,0 20315,2008 29173,6024 8740,4134 15472,11575 21614,23031 6024,10866 10866,25039 14173,42637 3425,17008 4724,37913 4724,62952z"/>
+  <path class="fil6" d="M20100937 22611443c0,43228 -6850,77833 -19606,102872 -13582,25039 -31889,37204 -55511,37204l-289719 0 0 539518c0,10748 -2716,19606 -8149,27047 -5433,6732 -14882,13464 -28464,18897 -13464,4724 -31771,8858 -53385,11575 -21732,2716 -49487,4016 -83266,4016 -33188,0 -60235,-1299 -81967,-4016 -21614,-2716 -39212,-6850 -52086,-11575 -12874,-5433 -21614,-12165 -26456,-18897 -4724,-7441 -7441,-16299 -7441,-27047l0 -539518 -1050454 0c-16299,0 -29173,-2008 -39330,-6142 -10748,-4016 -20196,-10748 -29055,-21614 -8149,-10157 -14173,-25748 -17598,-45354 -3425,-19606 -4724,-45354 -4724,-77125 0,-25039 709,-47361 2008,-67085 1417,-19606 4016,-37913 8149,-54094 3307,-16889 8740,-32480 15590,-47361 6024,-15590 14173,-31889 23622,-48779l915220 -1560917c6732,-10748 16889,-19606 29763,-27755 12874,-8031 29055,-14882 49369,-19606 20315,-5433 45354,-9449 74408,-11456 29881,-2008 65078,-2716 105707,-2716 43936,0 83148,1299 115746,4724 33070,3425 60235,8149 79841,12874 20315,5433 35905,12874 46653,21023 10866,8740 16299,18897 16299,31062l0 1640049 289719 0c22322,0 40511,11575 54094,34606 14173,23031 21023,58227 21023,105589zm-706050 -1550051l-4016 0 -825812 1409856 829828 0 0 -1409856z"/>
+  <polygon class="fil0" points="123851587,97693122 135927787,97693122 135927787,66229948 123851587,66229948 "/>
+  <path class="fil1" d="M126525082 90255972c22204,0 41338,1181 57519,3661 16299,2362 29409,6024 39684,11338 9567,5433 17362,11456 21614,19252 4724,7795 7205,16181 7205,25157l0 639201 1974531 0c9567,0 17362,2362 24566,7205 7205,4842 12638,12638 16771,24566 4252,11456 7795,27047 10866,46298 2953,19724 4134,43818 4134,73227 0,28228 -1181,52204 -4134,71928 -3071,19842 -6614,36023 -10866,47479 -4134,12047 -9567,19842 -16771,24566 -7205,4842 -15000,7205 -24566,7205l-1974531 0 0 639201c0,8976 -2480,17362 -7205,25157 -4252,7913 -12047,13819 -21614,18661 -10275,4252 -23385,8386 -39684,11456 -16181,2953 -35314,4134 -57519,4134 -22204,0 -42046,-1181 -58818,-4134 -16889,-3071 -30708,-7205 -40865,-11456 -10748,-4842 -18543,-10748 -22795,-18661 -4842,-7795 -7205,-16181 -7205,-25157l0 -1580877c0,-8976 2362,-17362 7205,-25157 4252,-7795 12047,-13819 22795,-19252 10157,-5315 23976,-8976 40865,-11338 16771,-2480 36614,-3661 58818,-3661z"/>
+  <path id="1" class="fil1" d="M127817185 88810211c129092,0 247909,16771 356450,51023 108069,33543 201729,84565 280271,151769 78660,67204 139840,151887 183658,252751 43818,101337 66022,218972 66022,352316 0,130155 -19134,243657 -58227,340269 -38385,96612 -94723,177044 -168540,241177 -73818,64251 -163344,112321 -268932,144092 -105589,31771 -224996,47361 -358931,47361 -128974,0 -247791,-16771 -355860,-49724 -108659,-33661 -202201,-84093 -280861,-151296 -78660,-67204 -139249,-151178 -183068,-252043 -43228,-100864 -64841,-218500 -64841,-352907 0,-130273 19252,-243657 58227,-340269 38385,-96612 94841,-177044 168658,-241295 73818,-64251 163816,-112793 268932,-145273 105589,-31771 224405,-47952 357041,-47952zm18661 302475c-85865,0 -166887,7795 -243066,23976 -76298,15590 -142911,42046 -200548,78660 -57637,36023 -103226,85746 -136179,148226 -33661,61771 -50432,139840 -50432,232909 0,85746 15000,159564 45590,221453 30590,61771 73818,112203 129683,152359 55747,40275 121769,69684 198067,88817 76180,19842 159564,29409 249681,29409 86928,0 168540,-7795 244838,-23976 76180,-15590 142793,-42046 199839,-79251 56456,-37204 102045,-86928 134998,-148816 33661,-62361 50432,-140431 50432,-233500 0,-84565 -15000,-157792 -45590,-220154 -30590,-62479 -73227,-113502 -128384,-153659 -55275,-40275 -121297,-69684 -197477,-88227 -76298,-18661 -160273,-28228 -251452,-28228z"/>
+  <path id="2" class="fil1" d="M127809981 86925678c138659,0 262909,15000 373340,44999 109841,29409 203382,73227 280271,131454 76770,57637 136179,129565 177635,214839 41456,85156 62361,183068 62361,292908 0,46771 -4724,89998 -13701,129565 -9685,40275 -24094,78660 -44527,117045 -19724,37795 -44999,75589 -75589,112793 -29999,37913 -66022,77479 -106770,119525l792742 0c9685,0 17480,2362 24685,7205 7205,4724 13228,11929 17952,22795 4252,10748 7795,25157 10275,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2480,19252 -6024,34251 -10275,44999 -4724,11456 -10748,19252 -17952,23504 -7205,4134 -15000,5905 -24685,5905l-2211574 0c-10748,0 -19252,-1772 -25748,-5315 -6024,-3661 -12047,-10866 -16299,-21023 -4724,-10866 -8386,-24094 -10157,-40865 -1772,-16181 -2362,-36614 -2362,-59999 0,-24566 591,-44999 2362,-61180 1772,-15590 5433,-28818 9567,-39684 4842,-10748 10866,-17952 16889,-22204 6496,-4134 15000,-5905 25748,-5905l211886 0c-49251,-48070 -91888,-94250 -128502,-138659 -36023,-44409 -66022,-89408 -89998,-134525 -23976,-44999 -42637,-91179 -54566,-138541 -12638,-47479 -18661,-97321 -18661,-150115 0,-114565 22204,-211886 66613,-292908 44999,-80314 105707,-146336 183068,-197359 77479,-51023 167477,-88227 270113,-111730 102636,-23385 211177,-34724 325860,-34724zm33661 302475c-81022,0 -159682,6024 -235271,18543 -75707,12047 -142911,33661 -201729,63070 -58818,29999 -105589,70156 -141021,120588 -35432,50432 -52794,113502 -52794,188501 0,37795 5433,74408 16771,111022 11456,36023 28818,73227 52794,111022 24094,37204 55865,76770 95431,117636 39684,40865 88227,84684 145864,130273l629634 0c97794,-79841 172202,-155430 224405,-226886 51613,-72046 77479,-147045 77479,-225705 0,-72636 -17480,-134998 -52912,-187201 -35314,-52204 -82203,-94250 -141021,-126612 -58818,-32480 -124250,-55865 -197359,-71455 -72636,-15000 -146454,-22795 -220272,-22795z"/>
+  <path id="3" class="fil1" d="M127817185 85019531c129092,0 247909,16771 356450,51023 108069,33543 201729,84565 280271,151769 78660,67204 139840,151887 183658,252751 43818,101337 66022,218972 66022,352316 0,130155 -19134,243657 -58227,340269 -38385,96612 -94723,177044 -168540,241177 -73818,64251 -163344,112321 -268932,144092 -105589,31771 -224996,47361 -358931,47361 -128974,0 -247791,-16771 -355860,-49724 -108659,-33661 -202201,-84093 -280861,-151296 -78660,-67204 -139249,-151178 -183068,-252043 -43228,-100864 -64841,-218500 -64841,-352907 0,-130273 19252,-243657 58227,-340269 38385,-96612 94841,-177044 168658,-241295 73818,-64251 163816,-112793 268932,-145273 105589,-31771 224405,-47952 357041,-47952zm18661 302475c-85865,0 -166887,7795 -243066,23976 -76298,15590 -142911,42046 -200548,78660 -57637,36023 -103226,85746 -136179,148226 -33661,61771 -50432,139840 -50432,232909 0,85746 15000,159564 45590,221453 30590,61771 73818,112203 129683,152359 55747,40275 121769,69684 198067,88817 76180,19842 159564,29409 249681,29409 86928,0 168540,-7795 244838,-23976 76180,-15590 142793,-42046 199839,-79251 56456,-37204 102045,-86928 134998,-148816 33661,-62361 50432,-140431 50432,-233500 0,-84565 -15000,-157792 -45590,-220154 -30590,-62479 -73227,-113502 -128384,-153659 -55275,-40275 -121297,-69684 -197477,-88227 -76298,-18661 -160273,-28228 -251452,-28228z"/>
+  <path id="4" class="fil1" d="M128627407 84298127c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-2348462 0c-9567,0 -17952,-1772 -24566,-5905 -7205,-4252 -13228,-12047 -18071,-23504 -4134,-10748 -7795,-25748 -10157,-44999 -2362,-18543 -3661,-41928 -3661,-70747 0,-29409 1299,-53503 3661,-72046 2362,-19252 6024,-33661 10157,-44409 4842,-10866 10866,-18071 18071,-22795 6614,-4842 15000,-7205 24566,-7205l2348462 0z"/>
+  <path id="5" class="fil1" d="M127817185 82294186c129092,0 247909,16771 356450,51023 108069,33543 201729,84565 280271,151769 78660,67204 139840,151887 183658,252751 43818,101337 66022,218972 66022,352316 0,130155 -19134,243657 -58227,340269 -38385,96612 -94723,177044 -168540,241177 -73818,64251 -163344,112321 -268932,144092 -105589,31771 -224996,47361 -358931,47361 -128974,0 -247791,-16771 -355860,-49724 -108659,-33661 -202201,-84093 -280861,-151296 -78660,-67204 -139249,-151178 -183068,-252043 -43228,-100864 -64841,-218500 -64841,-352907 0,-130273 19252,-243657 58227,-340269 38385,-96612 94841,-177044 168658,-241295 73818,-64251 163816,-112793 268932,-145273 105589,-31771 224405,-47952 357041,-47952zm18661 302475c-85865,0 -166887,7795 -243066,23976 -76298,15590 -142911,42046 -200548,78660 -57637,36023 -103226,85746 -136179,148226 -33661,61771 -50432,139840 -50432,232909 0,85746 15000,159564 45590,221453 30590,61771 73818,112203 129683,152359 55747,40275 121769,69684 198067,88817 76180,19842 159564,29409 249681,29409 86928,0 168540,-7795 244838,-23976 76180,-15590 142793,-42046 199839,-79251 56456,-37204 102045,-86928 134998,-148816 33661,-62361 50432,-140431 50432,-233500 0,-84565 -15000,-157792 -45590,-220154 -30590,-62479 -73227,-113502 -128384,-153659 -55275,-40275 -121297,-69684 -197477,-88227 -76298,-18661 -160273,-28228 -251452,-28228z"/>
+  <path id="6" class="fil1" d="M127117985 80542879c41456,0 70865,5433 89408,16771 18071,10866 27047,25275 27047,43228l0 227476c42046,-41456 88227,-70274 138659,-86455 50432,-16181 103226,-24566 157792,-24566 91298,0 172320,14409 242476,43818 70274,29409 129683,71337 178816,126021 48661,54566 85865,119407 111730,194406 25748,74999 38385,158501 38385,249681 0,64251 -8386,126021 -25275,183658 -17362,58227 -38385,103226 -64133,134998 20905,19842 44999,36023 71928,49251 27637,12638 58818,19252 93660,19252 41456,0 75589,-19252 102636,-57046 27637,-37795 42046,-88817 44409,-151887l17362 -412315c2480,-77951 13228,-149997 32480,-215429 19842,-65432 46771,-122360 82794,-170430 35432,-48070 79841,-85274 131454,-112203 52204,-27047 112793,-40275 181886,-40275 72518,0 141612,15000 207044,45708 65432,30590 122951,76770 172792,139722 49842,62479 89408,142911 117636,240114 28818,97203 43228,211886 43228,344521 0,127793 -10748,236452 -32362,325860 -21614,89408 -51613,163225 -88817,220862 -37913,57046 -82321,99093 -134525,124840 -52204,25866 -109250,38385 -169839,38385 -38976,0 -76180,-4724 -112793,-13819 -36023,-9567 -70865,-23976 -103817,-43109 -32480,-19252 -64251,-43228 -93660,-72046 -29999,-28818 -59408,-61889 -88817,-99683 -29409,57046 -66613,99093 -111022,126612 -44409,27047 -92479,40865 -144092,40865 -71337,0 -135588,-14409 -192044,-43228 -55747,-28818 -106179,-64251 -151178,-106770 -43228,35905 -91888,64723 -146454,85746 -54566,21023 -120588,31889 -198067,31889 -89998,0 -171021,-15000 -242476,-45708 -71455,-30590 -132045,-72518 -181296,-126612 -49133,-53975 -86928,-118817 -113384,-194406 -26456,-75589 -39566,-158501 -39566,-247318 0,-48542 2953,-92951 8386,-134998 6024,-41456 13819,-80432 23976,-117045l0 -478338c0,-20433 9567,-34842 28818,-44999 19842,-10157 49251,-15000 88817,-15000zm415268 453653c-107360,0 -191453,29409 -251452,88935 -60589,59408 -90589,143383 -90589,252043 0,56338 9567,105589 28228,147045 18543,41338 44409,76180 76770,103817 33070,27637 70865,47952 113502,61180 42519,13819 87636,20433 134407,20433 103817,0 185430,-29409 245429,-88817 59408,-59408 89408,-142202 89408,-249090 0,-57046 -8976,-106770 -26929,-149407 -18661,-42046 -43228,-76888 -75707,-104408 -32362,-27637 -69566,-48070 -111612,-61298 -41928,-13819 -85746,-20433 -131454,-20433zm1252655 -143974c-67912,0 -120116,27637 -157320,83384 -36614,55275 -56338,130864 -58818,225705l-13819 408654c29409,37204 57046,68503 83502,92479 26338,23976 51023,42637 74999,57046 23976,13819 47952,23385 71455,28818 23385,5315 47361,7795 71337,7795 76298,0 133816,-38503 172910,-115864 38976,-77479 58818,-184839 58818,-322908 0,-87636 -8386,-161454 -25275,-220272 -17362,-59408 -39566,-106770 -67794,-142793 -28228,-36614 -59999,-62479 -96022,-78660 -36614,-15590 -74408,-23385 -113974,-23385z"/>
+  <path id="7" class="fil1" d="M128671225 79450025l582745 210587c18661,7205 33070,25275 43228,54094 10157,28110 15000,71928 15000,130746 0,30590 -1181,55275 -4252,73818 -2953,18661 -7795,33070 -15000,43228 -7205,9685 -16771,15000 -28110,16181 -12047,1299 -25866,-1772 -42637,-8386l-550974 -218382c-4842,10748 -12638,20905 -22795,29999 -10866,9567 -21614,16181 -33661,19134l-1512374 564793c-24566,9567 -44409,13819 -58227,13819 -14409,0 -25157,-4252 -33661,-13819 -8386,-9567 -13701,-24566 -16771,-45590 -2953,-21023 -4134,-49251 -4134,-84684 0,-34724 591,-62361 2362,-82794 1772,-19842 5433,-35432 10157,-47361 4252,-11456 11456,-19842 19842,-25275 8976,-5433 21023,-10748 36023,-16771l1269898 -451882 0 -5433 -1276512 -435701c-22795,-7205 -36614,-15590 -43228,-25866 -6614,-9567 -11338,-24566 -14409,-44409 -2953,-20433 -4134,-49251 -4134,-86455 0,-32952 1181,-59999 4134,-81022 3071,-20905 8386,-36614 16771,-46180 8504,-10157 19252,-15000 33661,-15000 13819,0 31771,3661 52794,10157l1574263 568454z"/>
+  <path id="8" class="fil1" d="M126512445 76288862c32952,0 60589,2362 82794,7795 22204,5433 40275,14409 53975,27047 13228,13228 22913,31181 28818,53975 6024,22795 9094,51613 9094,86455 0,34251 -3071,62361 -9094,85156 -5905,22913 -15590,41456 -28818,54684 -13701,13819 -31771,23385 -53975,28818 -22204,6024 -49842,8976 -82794,8976 -33070,0 -59999,-2953 -82203,-8976 -21614,-5433 -39684,-15000 -54684,-28818 -14409,-13228 -24566,-31771 -29999,-54684 -5433,-22795 -7795,-50905 -7795,-85156 0,-34842 2362,-63660 7795,-86455 5433,-22795 15590,-40747 29999,-53975 15000,-12638 33070,-21614 54684,-27047 22204,-5433 49133,-7795 82203,-7795zm2114962 32480c9567,0 17362,2362 23976,7086 6024,4842 12047,12638 16889,23504 4134,11338 7795,26338 10157,44999 2362,18543 3543,41928 3543,70156 0,28228 -1181,51613 -3543,70274 -2362,18543 -6024,33543 -10157,44999 -4842,10748 -10866,18543 -16889,23385 -6614,4842 -14409,7205 -23976,7205l-1385762 0 0 709357 1385762 0c9567,0 17362,2480 23976,7205 6024,4842 12047,12638 16889,23504 4134,11338 7795,26338 10157,44999 2362,18543 3543,41928 3543,70156 0,28228 -1181,51613 -3543,70274 -2362,18543 -6024,33543 -10157,44999 -4842,10748 -10866,18543 -16889,23385 -6614,4842 -14409,7205 -23976,7205l-1385762 0 0 224524c0,18543 -9567,32952 -28228,41928 -18543,9685 -49251,14409 -91770,14409 -22204,0 -40865,-1181 -55865,-3543 -15590,-2480 -28228,-6024 -38385,-10866 -9685,-4134 -16889,-10157 -21023,-17362 -4252,-7205 -6024,-15590 -6024,-24566l0 -224524 -171021 0c-108659,0 -202319,-10748 -280271,-31771 -78069,-21023 -142202,-52204 -193225,-93660 -50432,-41456 -87636,-93069 -111730,-154249 -23976,-61771 -35905,-132045 -35905,-211886 0,-25157 1181,-51023 3543,-76770 2362,-25866 6024,-49251 10157,-70274 4842,-21023 10275,-39566 15000,-55156 5433,-16181 10866,-27047 16889,-32480 6024,-5905 11929,-10748 18543,-14409 6614,-3543 14409,-5905 24094,-8386 8976,-2362 20905,-4134 34724,-5315 14409,-1299 31181,-1890 51613,-1890 37204,0 64251,3071 80432,9094 16771,5315 24685,15590 24685,29409 0,9567 -1890,19134 -6024,28700 -4252,10275 -8386,22913 -13228,37913 -4842,15590 -8976,33543 -13228,55156 -4134,21614 -6024,49251 -6024,81613 0,80432 29999,138068 90116,171729 59408,34133 155430,50905 286766,50905l174091 0 0 -911558c0,-30708 7795,-52912 23976,-67204 15590,-15118 37204,-22204 65432,-22204l1537649 0z"/>
+  <path id="9" class="fil1" d="M128627407 75491868c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-2348462 0c-9567,0 -17952,-1772 -24566,-5905 -7205,-4252 -13228,-12047 -18071,-23504 -4134,-10748 -7795,-25748 -10157,-44999 -2362,-18543 -3661,-41928 -3661,-70747 0,-29409 1299,-53503 3661,-72046 2362,-19252 6024,-33661 10157,-44409 4842,-10866 10866,-18071 18071,-22795 6614,-4842 15000,-7205 24566,-7205l2348462 0z"/>
+  <path id="10" class="fil1" d="M127766753 73610288c45590,0 78069,11456 97794,34251 19252,22795 28818,49251 28818,78660l0 1039469c88227,0 167477,-8976 237752,-26456 70747,-17362 131336,-46771 181768,-88227 50432,-40747 89408,-94132 116455,-159564 27047,-66022 40275,-146454 40275,-241295 0,-74999 -6024,-142202 -18661,-200429 -12047,-58818 -25748,-109841 -40747,-152478 -15000,-42637 -28818,-78069 -40865,-105589 -12638,-27637 -18661,-48070 -18661,-62479 0,-8386 1890,-15590 6024,-22204 4252,-6024 10275,-11338 18661,-14409 7795,-3543 19134,-6614 34133,-8386 14409,-1772 31889,-2362 52912,-2362 15000,0 28110,591 39566,1772 10748,1181 21023,2362 29409,4252 8976,1772 16771,4724 23976,8976 6614,4134 13228,8976 19842,15590 6614,6614 16771,25748 31181,57046 15000,31771 28818,72518 43228,122951 13819,50432 26456,108659 37204,174682 11456,66022 16771,136297 16771,211295 0,130155 -17952,243657 -54566,341451 -36023,97794 -89998,180115 -161454,246728 -72046,66613 -161454,117045 -269523,150588 -107360,34251 -232791,51023 -376292,51023 -135588,0 -258066,-17362 -366608,-52794 -108069,-34842 -200548,-85865 -276137,-151887 -75589,-66022 -133226,-146454 -174091,-239996 -40157,-93660 -60589,-198658 -60589,-314522 0,-124250 19842,-229838 59999,-316884 39684,-87636 93660,-159092 160863,-215429 67204,-55865 146454,-97321 237634,-123659 90707,-26456 187910,-39684 291136,-39684l52794 0zm-85746 291727c-152478,-3543 -272475,29999 -359521,101455 -87046,71455 -130273,176454 -130273,316294 0,72046 13819,134998 40865,188973 26929,54094 62361,99093 107360,135706 44409,36614 96612,64841 155430,84565 59408,19842 121297,31299 186138,33661l0 -860654z"/>
+  <path id="11" class="fil1" d="M128195249 72171731c81022,0 153068,15000 216728,44999 62952,30118 116455,72046 159564,127321 43228,55156 76298,120588 98502,196768 22204,76298 33543,160273 33543,251570 0,56338 -4134,109841 -13110,160745 -8504,51023 -19252,96731 -33070,137478 -13228,40275 -27047,74408 -41338,102636 -14409,28228 -27637,48661 -39094,61180 -11338,13228 -28228,22795 -49133,28228 -21023,6024 -49842,8976 -86455,8976 -22204,0 -40865,-1181 -55865,-3543 -15590,-2362 -27637,-5433 -37204,-8386 -9567,-3661 -16181,-8976 -20433,-15000 -4134,-6614 -5905,-13819 -5905,-22204 0,-12638 7795,-31889 23976,-57046 15590,-25157 32952,-56456 51613,-93069 18543,-36614 36023,-80432 51613,-130746 16181,-50432 23976,-108069 23976,-173501 0,-49251 -5433,-93660 -16181,-133226 -10157,-40157 -25866,-74408 -46771,-103817 -20433,-29409 -46889,-51613 -78660,-67794 -31771,-15590 -69684,-23504 -113502,-23504 -44409,0 -82203,11456 -112203,34251 -30590,22795 -57637,52794 -81022,89998 -23385,37795 -44409,79841 -62361,126730 -18071,46771 -37204,94723 -57046,144564 -20433,49251 -42637,97794 -67794,145273 -25275,47361 -55865,89408 -92479,127202 -36614,37204 -79841,67204 -130155,89998 -50432,22913 -110431,34251 -181296,34251 -61771,0 -121297,-12047 -178225,-36023 -57046,-23976 -106888,-59999 -149525,-107951 -42519,-48661 -77361,-108659 -103226,-180705 -25748,-72046 -38385,-156021 -38385,-252633 0,-42046 3661,-84093 10866,-126730 7205,-41928 16771,-79723 27519,-113974 10866,-34251 22913,-63070 35432,-87046 13228,-23976 23976,-42637 34251,-54566 9567,-12638 17952,-20433 24566,-24685 7205,-4134 15000,-7205 23976,-8976 8504,-1772 19252,-3543 31889,-5433 13228,-1772 28818,-2362 47361,-2362 19842,0 37204,591 51613,2362 14409,1890 26456,4842 35432,9094 9567,4134 16181,8976 20433,15000 4134,6024 6024,12519 6024,19134 0,10866 -6614,25866 -19842,46298 -12638,19724 -26456,45590 -41456,77361 -15000,31771 -28818,68975 -41338,111612 -13228,42637 -19842,91888 -19842,147045 0,49251 5433,93069 16771,130273 10866,37795 26456,68385 46889,92361 20315,24094 44409,42637 72636,54684 27519,12638 58109,18543 90589,18543 45590,0 83975,-11929 115155,-35314 31299,-23504 58227,-53503 81731,-91298 23385,-37204 44409,-80432 63542,-128384 18661,-48070 37795,-96612 57637,-146454 20433,-49842 42637,-99093 67204,-147635 24566,-48661 54684,-91888 89408,-129092 35432,-37795 77479,-67794 126612,-90589 49251,-22795 108069,-34251 175863,-34251z"/>
+  <path class="fil1" d="M131229919 85698298c235862,111612 477157,194406 724948,249090 247909,54566 496999,81613 747861,81613 252043,0 501723,-27637 749042,-83502 247200,-55747 489676,-136769 727310,-243657 14409,-6024 26456,-8976 36023,-9567 10275,-591 18661,3543 24685,11338 6614,8504 11338,21023 14409,37913 2953,17362 4134,40157 4134,69566 0,21023 -591,38976 -1772,54566 -1181,15118 -3661,28228 -7205,39684 -2953,10748 -7205,19842 -12047,27047 -4724,7205 -10157,12519 -15590,15590 -119998,63542 -240704,119407 -363064,167359 -122478,48070 -247318,88227 -373930,121297 -126021,32952 -254405,57637 -383497,73818 -129683,16181 -260428,24566 -393064,24566 -132635,0 -262909,-8976 -392001,-26929 -128974,-18661 -256767,-44409 -384088,-77479 -127202,-33661 -252043,-74408 -375111,-122478 -122951,-47952 -244838,-101927 -365426,-162044 -4842,-591 -9094,-4134 -12638,-9567 -3661,-4842 -7205,-12638 -10157,-21614 -3661,-9567 -6614,-22204 -8504,-38976 -1772,-16181 -2362,-37204 -2362,-63070 0,-26929 1772,-48542 5433,-65432 3543,-16181 7795,-28700 13819,-38385 6024,-9567 13819,-14409 22795,-15590 9567,-1181 19842,591 29999,4842z"/>
+  <path class="fil1" d="M133653379 84496430l582745 210587c18661,7205 33070,25275 43228,54094 10157,28110 15000,71928 15000,130746 0,30590 -1181,55275 -4252,73818 -2953,18661 -7795,33070 -15000,43228 -7205,9685 -16771,15000 -28110,16181 -12047,1299 -25866,-1772 -42637,-8386l-550974 -218382c-4842,10748 -12638,20905 -22795,29999 -10866,9567 -21614,16181 -33661,19134l-1512374 564793c-24566,9567 -44409,13819 -58227,13819 -14409,0 -25157,-4252 -33661,-13819 -8386,-9567 -13701,-24566 -16771,-45590 -2953,-21023 -4134,-49251 -4134,-84684 0,-34724 591,-62361 2362,-82794 1772,-19842 5433,-35432 10157,-47361 4252,-11456 11456,-19842 19842,-25275 8976,-5433 21023,-10748 36023,-16771l1269898 -451882 0 -5433 -1276512 -435701c-22795,-7205 -36614,-15590 -43228,-25866 -6614,-9567 -11338,-24566 -14409,-44409 -2953,-20433 -4134,-49251 -4134,-86455 0,-32952 1181,-59999 4134,-81022 3071,-20905 8386,-36614 16771,-46180 8504,-10157 19252,-15000 33661,-15000 13819,0 31771,3661 52794,10157l1574263 568454z"/>
+  <path id="1" class="fil1" d="M133611333 82448554c14409,0 24685,4842 31889,13819 7205,9685 11929,22204 15590,39094 3543,16181 5315,40157 5315,71928 0,29999 -1772,54684 -5315,72636 -3661,18071 -8386,31299 -15590,39684 -7205,8386 -17480,12519 -31889,12519l-158383 0c74408,69093 131454,145864 172202,231138 40275,85156 60589,175272 60589,269995 0,83502 -10748,159092 -32362,226295 -21614,67204 -53385,124840 -94250,172320 -40747,47361 -91770,84565 -151178,111022 -59999,26338 -127911,39566 -204091,39566 -89408,0 -166887,-17952 -232319,-54566 -66022,-36023 -120588,-88227 -163816,-156729 -43228,-67794 -76180,-151178 -97794,-249681 -21614,-98384 -32480,-209406 -32480,-332474l0 -218382 -123541 0c-60708,0 -114683,6496 -162044,19134 -46889,13228 -85865,33661 -117045,62479 -31181,28818 -54684,66022 -70274,111612 -16181,45590 -23976,102045 -23976,168658 0,71337 8386,135588 25866,192044 17362,57046 35905,106770 56928,149407 21023,42637 39684,78660 57046,107478 17362,28228 25748,49724 25748,63542 0,9685 -2362,18071 -7086,24685 -4252,7205 -11456,13110 -21023,18543 -9094,5433 -21023,8976 -35432,11456 -15000,2362 -30590,3543 -48661,3543 -28818,0 -52204,-1772 -68975,-6024 -16771,-4134 -33070,-14409 -48070,-29999 -15000,-15590 -32952,-43228 -53975,-81613 -20433,-38385 -39566,-83384 -57046,-133816 -16771,-49842 -31181,-104998 -42637,-164997 -11338,-59408 -16771,-120116 -16771,-180705 0,-113384 13228,-209996 39094,-289837 25748,-79841 63542,-144092 113384,-193225 49842,-49251 111612,-84684 185430,-106888 73818,-22204 160273,-33661 258657,-33661l1068288 0zm-724948 288184l0 247791c0,79251 6614,148226 20433,207044 13110,58227 33543,106888 59999,145864 26338,38385 57637,66613 94841,85274 37204,17952 79723,26929 127793,26929 82203,0 147635,-25748 196296,-77951 48542,-52204 73227,-124840 73227,-219091 0,-75589 -19252,-146454 -58227,-211295 -38503,-64723 -97912,-133226 -177635,-204563l-336726 0z"/>
+  <path id="2" class="fil1" d="M133609561 79567779c9567,0 17362,2480 23976,7205 6024,4842 12047,12047 16889,22913 4134,10157 7795,25157 10157,43818 2362,18543 3543,41928 3543,70156 0,29409 -1181,53385 -3543,72046 -2362,18543 -6024,33543 -10157,44999 -4842,10748 -10866,18543 -16889,23385 -6614,4842 -14409,7205 -23976,7205l-962109 0c-67204,0 -128384,6024 -182949,17362 -55275,12047 -102636,30708 -142911,56456 -39566,25866 -70156,58227 -91179,97794 -21023,39684 -31889,86455 -31889,140431 0,66731 25866,133935 77479,200548 51613,67204 127202,141612 226886,222043l1106673 0c9567,0 17362,2362 23976,7205 6024,4724 12047,12638 16889,23976 4134,10866 7795,25866 10157,44999 2362,18661 3543,42046 3543,70274 0,27519 -1181,50432 -3543,70156 -2362,19252 -6024,34842 -10157,45590 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-962109 0c-67204,0 -128384,6614 -182949,19252 -55275,13228 -102636,32362 -142911,58227 -39566,25748 -70156,58227 -91179,97203 -21023,39684 -31889,85865 -31889,139840 0,66613 25866,134407 77479,202319 51613,67794 127202,141612 226886,221453l1106673 0c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-1583239 0c-9567,0 -17362,-1772 -23976,-5315 -6024,-3661 -12047,-10275 -17480,-21023 -5315,-10866 -8976,-24094 -10748,-40865 -1772,-16181 -2362,-38385 -2362,-65432 0,-25748 591,-47361 2362,-64133 1772,-17480 5433,-30708 10748,-40275 5433,-8976 11456,-16181 17480,-20433 6614,-3543 14409,-5905 23976,-5905l209406 0c-100156,-88935 -173383,-175863 -219563,-259956 -46298,-83384 -69684,-168658 -69684,-253814 0,-66022 7795,-124840 22795,-177044 15590,-52204 36614,-98502 64251,-138068 27637,-40157 60589,-74408 98975,-102045 37913,-28228 80432,-51613 127911,-70747 -57637,-52912 -106297,-102636 -146454,-150115 -40275,-47361 -72046,-92951 -97203,-136769 -24685,-43818 -42637,-86455 -53503,-127911 -11338,-41928 -16771,-83384 -16771,-125431 0,-102045 18071,-187201 53385,-256295 36023,-68975 84093,-124840 143501,-167950 59999,-42637 130273,-72636 210705,-91298 80314,-17952 164997,-27047 254405,-27047l1001084 0z"/>
+  <path id="3" class="fil1" d="M133609561 78747400c9567,0 17362,2362 23976,7205 6024,4724 12047,11929 16889,22795 4134,10748 7795,25157 10157,44409 2362,18543 3543,42637 3543,72046 0,28818 -1181,52204 -3543,70747 -2362,19252 -6024,34251 -10157,44999 -4842,11456 -10866,19252 -16889,23504 -6614,4134 -14409,5905 -23976,5905l-2348462 0c-9567,0 -17952,-1772 -24566,-5905 -7205,-4252 -13228,-12047 -18071,-23504 -4134,-10748 -7795,-25748 -10157,-44999 -2362,-18543 -3661,-41928 -3661,-70747 0,-29409 1299,-53503 3661,-72046 2362,-19252 6024,-33661 10157,-44409 4842,-10866 10866,-18071 18071,-22795 6614,-4842 15000,-7205 24566,-7205l2348462 0z"/>
+  <path class="fil1" d="M132708160 77611672c132635,0 263381,8386 393064,24566 129092,16181 257476,40865 383497,73818 126612,32952 251452,73227 373930,120588 122360,47479 243066,102636 363064,166296 5433,2953 10866,8386 15590,15590 4842,7205 9094,16181 12047,27047 3543,11338 6024,24566 7205,39566 1181,15590 1772,33661 1772,54684 0,30590 -1181,53975 -4134,71337 -3071,16889 -7795,29409 -14409,36614 -6024,7795 -14409,11456 -24685,10866 -9567,-591 -21614,-3661 -36023,-9685 -236452,-107951 -478928,-189564 -726719,-244248 -247909,-55156 -497589,-82794 -749632,-82794 -250862,0 -499952,27637 -747861,82794 -247791,54684 -489086,137478 -724948,247909 -10157,4134 -20433,6024 -29999,4724 -8976,-1181 -16771,-5905 -22795,-15590 -6024,-9567 -10275,-22204 -13819,-38385 -3661,-16771 -5433,-38385 -5433,-65432 0,-24566 591,-44999 2362,-61180 1890,-16771 4842,-29999 8504,-39566 2953,-10275 6496,-17480 10157,-22204 3543,-4842 7795,-8504 12638,-10275 239996,-121179 486724,-215429 740538,-284404 253932,-68503 512589,-102636 776088,-102636z"/>
+  <polygon class="fil0" points="21907755,97693122 35283616,97693122 35283616,49659026 21907755,49659026 "/>
+  <path class="fil1" d="M27415608 70295702c0,22204 -1181,41338 -3661,57519 -2362,16299 -6024,29409 -11338,39684 -5433,9567 -11456,17362 -19252,21614 -7795,4724 -16181,7205 -25157,7205l-639201 0 0 1974531c0,9567 -2362,17362 -7205,24566 -4842,7205 -12638,12638 -24566,16771 -11456,4252 -27047,7795 -46298,10866 -19724,2953 -43818,4134 -73227,4134 -28228,0 -52204,-1181 -71928,-4134 -19842,-3071 -36023,-6614 -47479,-10866 -12047,-4134 -19842,-9567 -24566,-16771 -4842,-7205 -7205,-15000 -7205,-24566l0 -1974531 -639201 0c-8976,0 -17362,-2480 -25157,-7205 -7913,-4252 -13819,-12047 -18661,-21614 -4252,-10275 -8386,-23385 -11456,-39684 -2953,-16181 -4134,-35314 -4134,-57519 0,-22204 1181,-42046 4134,-58818 3071,-16889 7205,-30708 11456,-40865 4842,-10748 10748,-18543 18661,-22795 7795,-4842 16181,-7205 25157,-7205l1580877 0c8976,0 17362,2362 25157,7205 7795,4252 13819,12047 19252,22795 5315,10157 8976,23976 11338,40865 2480,16771 3661,36614 3661,58818z"/>
+  <path id="1" class="fil1" d="M28739010 71537372c0,45590 -11456,78069 -34251,97794 -22795,19252 -49251,28818 -78660,28818l-1039469 0c0,88227 8976,167477 26456,237752 17362,70747 46771,131336 88227,181768 40747,50432 94132,88817 159564,115864 66022,27047 146454,40865 241295,40865 74999,0 142202,-6024 200429,-18661 58818,-12047 109841,-25748 152478,-40747 42637,-15000 78069,-28818 105589,-40865 27637,-12638 48070,-18661 62479,-18661 8386,0 15590,1890 22204,6024 6024,4252 11338,10275 14409,18661 3543,7795 6614,19134 8386,33543 1772,15000 2362,32480 2362,53503 0,15000 -591,28110 -1772,39566 -1181,10748 -2362,21023 -4252,29409 -1772,8976 -4724,16771 -8976,23976 -4134,6614 -8976,13228 -15590,19842 -6614,6614 -25748,16771 -57046,31181 -31771,15000 -72518,28818 -122951,43228 -50432,13819 -108659,26456 -174682,37204 -66022,11456 -136297,16771 -211295,16771 -130155,0 -243657,-17952 -341451,-54566 -97794,-36023 -180115,-89998 -246728,-161454 -66613,-72046 -117045,-161454 -150588,-269523 -34251,-107360 -51023,-232791 -51023,-376292 0,-135588 17362,-258066 52794,-366608 34842,-108069 85865,-200548 151887,-276137 66022,-75589 146454,-133226 239996,-174091 93660,-40157 198658,-60589 314522,-60589 124250,0 229838,19842 316884,59999 87636,39684 159092,93660 215429,160863 55865,67204 97321,146454 123659,237634 26456,90707 39684,187910 39684,291136l0 52794zm-291727 -85746c3543,-152478 -29999,-272475 -101455,-359521 -71455,-87046 -176454,-130273 -316294,-130273 -72046,0 -134998,13228 -188973,40157 -54094,27047 -99093,63070 -135706,108069 -36614,44409 -64841,96612 -84565,155430 -19842,59408 -31299,121297 -33661,186138l860654 0z"/>
+  <path id="2" class="fil1" d="M30177566 71965869c0,81022 -15000,153068 -44999,216728 -30118,62952 -72046,116455 -127321,159564 -55156,43228 -120588,76298 -196768,98502 -76298,22204 -160273,33543 -251570,33543 -56338,0 -109841,-4134 -160745,-13110 -51023,-8504 -96731,-19252 -137478,-33070 -40275,-13228 -74408,-27047 -102636,-41338 -28228,-14409 -48661,-27637 -61180,-39094 -13228,-11338 -22795,-28228 -28228,-49133 -6024,-21023 -8976,-49842 -8976,-86455 0,-22204 1181,-40865 3543,-55865 2362,-15590 5433,-27637 8386,-37204 3661,-9567 8976,-16181 15000,-20433 6614,-4134 13819,-5905 22204,-5905 12638,0 31889,7795 57046,23976 25157,15590 56456,32952 93069,51613 36614,18543 80432,36023 130746,51613 50432,16181 108069,23976 173501,23976 49251,0 93660,-5433 133226,-16181 40157,-10157 74408,-25866 103817,-46771 29409,-20433 51613,-46889 67794,-78660 15590,-31771 23504,-69684 23504,-113502 0,-44409 -11456,-82203 -34251,-112203 -22795,-30590 -52794,-57637 -89998,-81022 -37795,-23385 -79841,-44409 -126730,-62361 -46771,-18071 -94723,-37204 -144564,-57046 -49251,-20433 -97794,-42637 -145273,-67794 -47361,-25275 -89408,-55865 -127202,-92479 -37204,-36614 -67204,-79841 -89998,-130155 -22913,-50432 -34251,-110431 -34251,-181296 0,-61771 12047,-121297 36023,-178225 23976,-57046 59999,-106888 107951,-149525 48661,-42519 108659,-77361 180705,-103226 72046,-25748 156021,-38385 252633,-38385 42046,0 84093,3661 126730,10866 41928,7205 79723,16771 113974,27519 34251,10866 63070,22913 87046,35432 23976,13228 42637,23976 54566,34251 12638,9567 20433,17952 24685,24566 4134,7205 7205,15000 8976,23976 1772,8504 3543,19252 5433,31889 1772,13228 2362,28818 2362,47361 0,19842 -591,37204 -2362,51613 -1890,14409 -4842,26456 -9094,35432 -4134,9567 -8976,16181 -15000,20433 -6024,4134 -12519,6024 -19134,6024 -10866,0 -25866,-6614 -46298,-19842 -19724,-12638 -45590,-26456 -77361,-41456 -31771,-15000 -68975,-28818 -111612,-41338 -42637,-13228 -91888,-19842 -147045,-19842 -49251,0 -93069,5433 -130273,16771 -37795,10866 -68385,26456 -92361,46889 -24094,20315 -42637,44409 -54684,72636 -12638,27519 -18543,58109 -18543,90589 0,45590 11929,83975 35314,115155 23504,31299 53503,58227 91298,81731 37204,23385 80432,44409 128384,63542 48070,18661 96612,37795 146454,57637 49842,20433 99093,42637 147635,67204 48661,24566 91888,54684 129092,89408 37795,35432 67794,77479 90589,126612 22795,49251 34251,108069 34251,175863z"/>
+  <path id="3" class="fil1" d="M31372466 72280391c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>
+  <path class="fil1" d="M26959239 77380181c0,9567 -1890,17362 -6024,24566 -4252,7205 -11456,12638 -21023,16889 -10275,4134 -23385,7205 -39684,9567 -16771,2362 -36495,3543 -59999,3543 -24566,0 -44999,-1181 -61180,-3543 -16771,-2362 -29999,-5433 -40865,-9567 -10157,-4252 -17952,-9685 -22795,-16889 -4134,-7205 -6614,-15590 -6614,-24566l0 -210705c-83384,90707 -169839,160863 -259247,211295 -89998,50432 -187792,75589 -294680,75589 -115746,0 -214839,-22795 -296451,-67794 -82203,-44999 -148816,-106179 -199839,-183068 -50432,-76770 -87636,-166769 -111022,-270586 -23385,-103935 -35432,-213067 -35432,-327750 0,-136179 14409,-259247 43818,-368497 29409,-109841 72636,-203500 130273,-280861 56928,-77479 128384,-136887 213658,-178225 84565,-41456 182359,-62479 294089,-62479 92361,0 177044,20433 253814,60589 76770,40865 152478,100274 227476,178934l0 -917700c0,-8386 1772,-16181 6024,-23976 4134,-7795 11929,-13228 23976,-17480 11456,-4134 26456,-7795 44409,-10748 18661,-2953 41456,-4252 69566,-4252 29409,0 53503,1299 72046,4252 18661,2953 33661,6614 43818,10748 10866,4252 18661,9685 23976,17480 5433,7795 7913,15590 7913,23976l0 2341257zm-291727 -1114468c-78069,-97912 -153659,-172320 -226886,-223342 -73227,-51023 -149407,-76770 -228657,-76770 -73818,0 -136179,17362 -187792,52794 -51613,35432 -93069,81613 -125431,139249 -31889,57046 -55275,122478 -69684,195115 -15000,72518 -22204,146336 -22204,221453 0,79723 6024,157792 18661,233972 11929,76298 33543,144092 63542,203500 30590,59408 70865,106888 121297,142793 49724,35432 113384,53503 188973,53503 38503,0 75707,-5433 111730,-15590 35314,-10866 71928,-28228 109132,-52912 37204,-24566 76888,-56338 117636,-96022 40865,-38976 84093,-86928 129683,-144564l0 -633178z"/>
+  <path id="1" class="fil1" d="M28688932 77381952c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>
+  <path id="2" class="fil1" d="M30045285 77262545c0,34251 -2362,61180 -7205,81022 -4134,19842 -11338,34842 -21023,43818 -8976,9567 -23385,18661 -41928,26456 -18661,8386 -40275,15000 -64251,20315 -23976,5433 -49251,9685 -76180,13228 -27047,3661 -53503,5433 -80432,5433 -82321,0 -152478,-10866 -210705,-32362 -58227,-21614 -106179,-54684 -144092,-98502 -37204,-43818 -64133,-99565 -81613,-166887 -16771,-67204 -25157,-146336 -25157,-237634l0 -923015 -222634 0c-17480,0 -31889,-9567 -42637,-28228 -10157,-18543 -15590,-49251 -15590,-91770 0,-22204 1181,-40865 4134,-55865 3071,-15590 7205,-28228 11456,-38385 4842,-9685 11338,-16889 18543,-21023 7913,-4252 16299,-6024 25866,-6024l220862 0 0 -375702c0,-8386 1772,-16181 6024,-22795 4134,-7205 11929,-13228 23385,-18661 10748,-5315 25748,-8976 44999,-11338 18661,-2362 42046,-3661 70865,-3661 29409,0 53385,1299 71928,3661 19252,2362 33661,6024 44409,11338 10866,5433 18071,11456 22913,18661 4724,6614 7205,14409 7205,22795l0 375702 403221 0c9685,0 17480,1772 24685,6024 6614,4134 13110,11338 17952,21023 5433,10157 8976,22795 11456,38385 2362,15000 3543,33661 3543,55865 0,42519 -5433,73227 -15590,91770 -10748,18661 -24566,28228 -42046,28228l-403221 0 0 880378c0,108659 16181,190863 47952,246137 31771,55747 89408,83384 172202,83384 26456,0 50432,-2362 71455,-7795 21023,-5433 39684,-10748 55865,-16771 16181,-6024 29999,-11456 41928,-16771 11456,-5433 22204,-7913 31299,-7913 6024,0 11338,1299 16771,4252 4842,2953 8976,8386 12047,16771 2953,8386 5315,19252 7795,33661 2362,13819 3543,31771 3543,52794z"/>
+  <path id="3" class="fil1" d="M31578801 77381952c0,13819 -4842,24685 -13819,31889 -9685,7205 -22204,11929 -39094,15590 -16181,3543 -40157,5315 -71928,5315 -29999,0 -54684,-1772 -72636,-5315 -18071,-3661 -31299,-8386 -39684,-15590 -8386,-7205 -12519,-17480 -12519,-31889l0 -158383c-69093,73818 -145864,131454 -231138,172202 -85156,40275 -175272,60589 -269995,60589 -83502,0 -159092,-10748 -226295,-32362 -67204,-21614 -124840,-53385 -172320,-94250 -47361,-40747 -84565,-91770 -111022,-151178 -26338,-59999 -39566,-127911 -39566,-204091 0,-89408 17952,-166887 54566,-232319 36023,-66022 88227,-120588 156729,-163816 67794,-43228 151178,-76180 249681,-97794 98384,-21614 209406,-32480 332474,-32480l218382 0 0 -123541c0,-60708 -6496,-114683 -19134,-162044 -13228,-46889 -33661,-85865 -62479,-117045 -28818,-31181 -66022,-54684 -111612,-70274 -45590,-16181 -102045,-23976 -168658,-23976 -71337,0 -135588,8386 -192044,25866 -57046,17362 -106770,35905 -149407,56928 -42637,21023 -78660,39684 -107478,57046 -28228,17362 -49724,25748 -63542,25748 -9685,0 -18071,-2362 -24685,-7086 -7205,-4252 -13110,-11456 -18543,-21023 -5433,-9094 -8976,-21023 -11456,-35432 -2362,-15000 -3543,-30590 -3543,-48661 0,-28818 1772,-52204 6024,-68975 4134,-16771 14409,-33070 29999,-48070 15590,-15000 43228,-32952 81613,-53975 38385,-20433 83384,-39566 133816,-57046 49842,-16771 104998,-31181 164997,-42637 59408,-11338 120116,-16771 180705,-16771 113384,0 209996,12638 289837,38385 79841,25866 144092,64251 193225,114092 49251,49842 84684,111612 106888,185430 22204,73818 33661,160273 33661,258657l0 1068288zm-288184 -724948l-247791 0c-79251,0 -148226,6614 -207044,20433 -58227,13110 -106888,33543 -145864,59999 -38385,26338 -66613,57637 -85274,94841 -17952,37204 -26929,79723 -26929,127793 0,82203 25748,147635 77951,196296 52204,48542 124840,73227 219091,73227 75589,0 146454,-19252 211295,-58227 64723,-38503 133226,-97912 204563,-177635l0 -336726z"/>
+  <path class="fil10" d="M28812237 43255441l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381253 -309089,690460 -690460,690460 -381253,0 -690460,-309207 -690460,-690460zm1380920 6396853c0,381253 -309089,690460 -690460,690460 -381253,0 -690460,-309207 -690460,-690460 0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>
+  <path class="fil10" d="M89464057 43038831l0 6396735 -460149 0 0 -6396735 460149 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381253 -309089,690342 -690460,690342 -381371,0 -690460,-309089 -690460,-690342zm1380920 6396735c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>
+  <path class="fil10" d="M80230956 25493045l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460 0,-381253 309207,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>
+  <path class="fil10" d="M150224301 25493045l0 6396853 -460267 0 0 -6396853 460267 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381253,0 690342,309089 690342,690460 0,381371 -309089,690460 -690342,690460 -381371,0 -690460,-309089 -690460,-690460zm1380802 6396853c0,381371 -309089,690460 -690342,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381253,0 690342,309207 690342,690460z"/>
+  <path class="fil10" d="M42242310 59501448l0 6396853 -460267 0 0 -6396853 460267 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381253,0 690460,309089 690460,690460 0,381371 -309207,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309207,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381253,0 690460,309089 690460,690460z"/>
+  <path class="fil10" d="M59815143 59501448l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>
+  <path class="fil10" d="M59815143 76288980l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>
+  <path class="fil10" d="M91494926 59501448l0 6396853 -460267 0 0 -6396853 460267 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>
+  <path class="fil10" d="M114428922 59501448l0 6396853 -460385 0 0 -6396853 460385 0zm-920653 0c0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6396853c0,381371 -309089,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460 0,-381371 309089,-690460 690460,-690460 381371,0 690460,309089 690460,690460z"/>
+  <path class="fil10" d="M142466842 81690772l-6525473 0 0 460385 6525473 0 0 -460385zm0 920653c381253,0 690460,-309089 690460,-690460 0,-381371 -309207,-690460 -690460,-690460 -381371,0 -690460,309089 -690460,690460 0,381371 309089,690460 690460,690460zm-6525473 -1380920c-381371,0 -690460,309089 -690460,690460 0,381371 309089,690460 690460,690460 381253,0 690460,-309089 690460,-690460 0,-381371 -309207,-690460 -690460,-690460z"/>
+  <path class="fil10" d="M78204693 88947452l-7166328 0 0 460149 7166328 0 0 -460149zm0 920535c381371,0 690460,-309089 690460,-690460 0,-381371 -309089,-690460 -690460,-690460 -381371,0 -690460,309089 -690460,690460 0,381371 309089,690460 690460,690460zm-7166328 -1380920c-381253,0 -690460,309089 -690460,690460 0,381371 309207,690460 690460,690460 381371,0 690460,-309089 690460,-690460 0,-381371 -309089,-690460 -690460,-690460z"/>
+  <path class="fil10" d="M60708631 97625446l0 8269221 -460267 0 0 -8269221 460267 0zm-920535 0c0,-381371 309089,-690460 690342,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381253,0 -690342,-309089 -690342,-690460zm1380802 8269221c0,381371 -309089,690460 -690460,690460 -381253,0 -690342,-309089 -690342,-690460 0,-381253 309089,-690460 690342,-690460 381371,0 690460,309207 690460,690460z"/>
+  <path class="fil10" d="M149764034 97728436l-162399 7038062 460149 10630 162517 -7038180 -460267 -10512zm920535 21378c9094,-381371 -293262,-697546 -674634,-706286 -381253,-8858 -697192,293144 -706168,674279 -9094,381253 293262,697428 674634,706168 381253,8858 697192,-293144 706168,-674161zm-1543319 7006055c-8976,381371 293381,697546 674634,706286 381371,8858 697310,-293144 706286,-674279 8976,-381253 -293381,-697428 -674634,-706168 -381371,-8858 -697310,293144 -706286,674161z"/>
+  <path class="fil6" d="M30214416 45111982c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M30804484 45922440l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M31667146 45841064c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M32528863 45900354c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M33536089 45492291c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M34420010 45900354c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M30112843 47007499c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M31009756 48066457c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M31966314 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M32806771 47943742c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M33676283 47246905c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M34714689 47658393c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M35598611 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M37075789 47927089c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M37879514 48067402c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M38294901 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M38693043 48066457c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M39444683 47848784c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M43752794 61570111c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M44342862 62380569l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M45205524 62299192c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M46067241 62358483c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M47074467 61950419c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M47958388 62358483c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M43651221 63465628c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M44548134 64524585c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M45504692 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M46345149 64401871c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M47214661 63705033c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M48253068 64116522c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M49136989 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M50614167 64385218c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M51417892 64525530c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M51833279 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M52231421 64524585c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M52983061 64306912c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M60926304 78308038c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M61516372 79118496l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M62379034 79037119c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M63240750 79096409c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M64247976 78688346c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M65131897 79096409c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M60824731 80203555c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M61721644 81262512c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M62678201 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M63518659 81139798c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M64388171 80442960c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M65426577 80854449c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M66328687 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M67787676 81123145c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M68591402 81263457c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M69006788 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M69404931 81262512c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M70156571 81044839c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M45411268 99471239c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M46001336 100281697l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M46863998 100200321c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M47725715 100259611c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M48732941 99851547c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M49616862 100259611c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M45309695 101366756c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M46206608 102425714c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M47163166 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M48003623 102302999c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M48873135 101606161c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M49911542 102017650c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M50813651 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M52272641 102286346c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M53076366 102426658c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M53491753 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M53889895 102425714c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M54641535 102208040c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M92915176 61849909c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M93505244 62660367l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M94367906 62578991c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M95229623 62638281c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M96236849 62230217c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M97120770 62638281c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M92813603 63745426c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M93710516 64804384c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M94667074 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M95507531 64681669c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M96377043 63984831c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M97415449 64396320c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M98299371 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M99776549 64665016c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M100580274 64805328c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M100995661 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M101393803 64804384c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M102145443 64586710c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M115946139 61497947c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M116536207 62308405l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M117398869 62227028c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M118260586 62286319c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M119267812 61878255c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M120151733 62286319c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M115844566 63393464c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M116741479 64452421c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M117698037 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M118538494 64329707c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M119408006 63632869c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M120446412 64044358c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M121330334 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M122807512 64313054c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M123611237 64453366c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M124026624 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M124424766 64452421c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M125176406 64234748c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M151735731 100756137c0,53503 -9921,101219 -29527,143265 -19960,41692 -47479,77361 -82558,106652 -35078,29055 -76534,51141 -124014,65904 -47716,14882 -98856,22086 -153777,22086 -38385,0 -74054,-3307 -106770,-9685 -32952,-6614 -62243,-14764 -87991,-24094 -25629,-9449 -47125,-19370 -64605,-29409 -17244,-10275 -29645,-18661 -36377,-25984 -6850,-6968 -11693,-15945 -15118,-26929 -3307,-10866 -4842,-25393 -4842,-43464 0,-12992 709,-23858 1890,-32362 1181,-8504 2953,-15472 5079,-20551 2480,-5433 5433,-9094 9094,-11220 3661,-2126 7559,-2953 12401,-2953 8149,0 19960,5079 35078,15118 14764,9921 34133,20787 57991,32598 23622,11456 52086,22677 85628,32952 33188,10275 71928,15472 115392,15472 33306,0 63542,-4606 91061,-13346 27519,-8740 51023,-21141 70747,-37440 19960,-16063 35078,-36023 45590,-59645 10630,-23504 16063,-50432 16063,-80432 0,-32244 -7205,-60117 -22086,-83030 -14764,-23031 -34133,-43228 -58345,-60826 -24448,-17244 -51968,-33188 -82794,-47716 -31181,-14527 -62952,-29055 -95195,-44172 -32362,-15118 -64133,-31771 -94723,-50196 -30826,-18071 -58345,-39566 -82439,-64369 -24212,-24803 -43818,-53857 -58700,-87400 -15118,-33188 -22677,-73109 -22677,-119644 0,-48070 8740,-90707 25984,-128147 17598,-37204 41810,-68621 72636,-94014 31062,-25393 67912,-44763 110549,-58109 42991,-13346 88935,-19960 138541,-19960 25393,0 50786,2126 76416,6614 25748,4606 49960,10275 72518,17834 22677,7323 42991,15826 60826,24803 17480,9094 29291,16653 34724,22086 5787,5787 9449,10039 11220,13346 1772,3307 3071,7559 4252,12401 1181,5079 2126,11102 2716,18425 591,6968 945,16063 945,27519 0,10512 -354,19960 -1299,28346 -827,8268 -2362,15118 -4252,20905 -1417,5433 -4134,9685 -7205,12401 -3307,2716 -6968,3898 -11220,3898 -6614,0 -16535,-4252 -30472,-12401 -13937,-8386 -30826,-17480 -51141,-28110 -19960,-10275 -43818,-19606 -71337,-28110 -27165,-8740 -57991,-12992 -92479,-12992 -31771,0 -59526,4252 -83148,12756 -23622,8740 -43228,19960 -58582,34133 -15118,14173 -26692,30826 -34488,50196 -7559,19606 -11456,40157 -11456,61889 0,31771 7205,59290 21968,82321 14882,22913 34488,43228 58936,61062 24803,17834 52676,33779 84093,48661 31181,14764 63188,29645 95786,44763 32362,15118 64487,31417 95549,49487 31417,17834 59290,39330 84093,63778 24448,24566 44054,53267 59172,86809 15118,33188 22677,72518 22677,118226z"/>
+  <path id="1" class="fil6" d="M152621896 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="2" class="fil6" d="M153567469 100622203c0,22913 -5669,39330 -17244,49251 -11456,9685 -24685,14527 -39566,14527l-523573 0c0,44409 4488,84329 13346,119644 8740,35669 23504,66259 44409,91652 20551,25393 47479,44763 80432,58345 33188,13582 73699,20551 121533,20551 37795,0 71574,-3071 100982,-9331 29527,-6142 55275,-12992 76770,-20551 21378,-7559 39212,-14527 53149,-20551 13937,-6378 24212,-9449 31417,-9449 4252,0 7913,945 11220,3071 3071,2126 5787,5079 7205,9331 1890,3898 3425,9685 4252,16889 945,7559 1299,16417 1299,26929 0,7559 -354,14291 -945,19960 -591,5433 -1181,10630 -2126,14882 -945,4488 -2480,8386 -4488,12047 -2126,3307 -4606,6614 -7913,9921 -3307,3425 -12992,8504 -28700,15826 -16063,7559 -36614,14409 -62007,21732 -25393,6968 -54684,13228 -87991,18779 -33188,5669 -68621,8386 -106415,8386 -65550,0 -122714,-9094 -171965,-27519 -49251,-18071 -90707,-45354 -124250,-81258 -33543,-36259 -58936,-81376 -75825,-135706 -17244,-54212 -25748,-117399 -25748,-189564 0,-68385 8740,-130037 26574,-184721 17598,-54448 43228,-100982 76534,-139013 33188,-38149 73699,-67204 120943,-87754 47125,-20196 100038,-30472 158383,-30472 62597,0 115746,9921 159564,30236 44172,19960 80195,47125 108541,81022 28110,33779 49015,73699 62243,119644 13346,45708 19960,94605 19960,146690l0 26574zm-146926 -43228c1890,-76770 -15118,-137242 -51023,-181060 -36023,-43818 -88935,-65668 -159328,-65668 -36259,0 -68030,6732 -95195,20315 -27283,13582 -49960,31771 -68385,54330 -18425,22441 -32598,48779 -42637,78306 -9921,29999 -15708,61062 -16889,93778l433457 0z"/>
+  <path id="3" class="fil6" d="M153938447 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="4" class="fil6" d="M154336471 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="5" class="fil6" d="M155534442 100837986c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path id="6" class="fil6" d="M156316554 100932945c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="7" class="fil6" d="M156958235 100309925c0,12992 -354,23858 -945,32598 -591,8858 -1890,15708 -3661,20905 -1535,5079 -3898,8740 -6614,11456 -2480,2716 -6024,3898 -10866,3898 -4842,0 -10630,-1181 -17244,-3898 -6968,-2716 -14527,-5433 -23031,-7795 -8386,-2716 -18071,-5197 -28700,-7559 -10512,-2480 -22086,-3661 -34488,-3661 -14764,0 -29291,3071 -43464,8740 -13937,6024 -29055,15708 -44409,29645 -15826,13582 -32125,31771 -49369,54094 -16889,22677 -35905,50196 -56456,82794l0 524518c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 116100c21850,-32007 42401,-57991 61416,-78306 19370,-19960 37440,-35905 54448,-47479 17244,-11456 34133,-19370 50786,-23858 16889,-4488 33779,-6614 51023,-6614 7559,0 16299,236 25984,1181 9685,945 19960,2716 30590,4842 10512,2362 20196,5079 28700,8149 8504,3071 14527,5787 18189,8740 3543,3071 6024,5787 6850,8504 1299,2716 2480,6024 3425,9921 827,4252 1417,10275 1772,18189 354,8149 354,18779 354,32362z"/>
+  <path id="8" class="fil6" d="M157253269 101055659c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4252 827,-8149 2953,-11456 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7205 3661,11456l0 797466zm16299 -1066162c0,34488 -6614,57755 -19606,70156 -13110,12401 -36968,18661 -72046,18661 -34369,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6732,-57755 19724,-70156 12992,-12401 36850,-18661 71928,-18661 34488,0 57991,6024 70747,18071 12638,12165 19015,35078 19015,68975z"/>
+  <path id="9" class="fil6" d="M158255298 100643935c0,69802 -7559,132399 -22677,188028 -14764,55393 -36850,102518 -66141,141139 -29055,38739 -65314,68621 -108305,89526 -42873,20905 -92124,31417 -147517,31417 -23504,0 -45354,-2362 -65314,-6968 -20196,-4842 -39566,-12047 -58936,-22322 -19015,-10039 -38031,-22677 -56810,-38149 -19015,-15118 -38976,-33188 -60117,-53739l0 399324c0,4842 -1299,8740 -3661,12401 -2362,3661 -6024,6614 -11456,9094 -5433,2126 -12756,3898 -22441,5079 -9331,1181 -21378,1890 -36259,1890 -14527,0 -26338,-709 -35669,-1890 -9685,-1181 -17244,-2953 -22677,-5079 -5669,-2480 -9685,-5433 -11811,-9094 -2126,-3661 -2953,-7559 -2953,-12401l0 -1113996c0,-5433 827,-9685 2716,-12992 1772,-2953 5433,-6024 10512,-8149 5433,-2362 12165,-4252 20551,-5079 8268,-945 18543,-1299 30236,-1299 12401,0 22677,354 30826,1299 7913,827 14527,2716 19960,4724 5433,2480 9094,5551 11220,8504 2126,3307 3071,7559 3071,12992l0 106770c24094,-24803 47479,-46298 69802,-64723 22322,-18189 44999,-33306 67676,-45354 22677,-12047 45944,-21496 69802,-27519 23976,-6378 49015,-9331 75589,-9331 57755,0 106770,11102 147517,33543 40511,22677 73818,53149 99447,92242 25748,38976 44527,84329 56338,135942 11693,51731 17480,106415 17480,164170zm-152359 16889c0,-40747 -3071,-80314 -9331,-118462 -6142,-38031 -17008,-71928 -31771,-101573 -15118,-29645 -35432,-53149 -60826,-70983 -25393,-17834 -57046,-26692 -94841,-26692 -19015,0 -37558,2716 -55983,8504 -18071,5787 -36850,14527 -55865,26574 -18779,12165 -38739,28110 -59290,48070 -20551,19960 -42637,44527 -65550,73463l0 317120c40157,49251 78306,86809 114211,113029 36259,26102 74054,39094 113738,39094 36495,0 67912,-8858 94250,-26692 26338,-17834 47479,-41338 63778,-70983 16299,-29645 28110,-62597 36023,-99447 7559,-36614 11456,-73818 11456,-111022z"/>
+  <path id="10" class="fil6" d="M158881035 100996369c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="11" class="fil6" d="M159557558 100837986c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M60987011 62698280c0,4842 -945,8858 -2716,12401 -1772,3661 -5433,6732 -11456,9094 -5787,2126 -14291,3898 -24803,5197 -10630,1181 -24803,1772 -42401,1772 -15354,0 -28110,-591 -37676,-1772 -9685,-1299 -17598,-3071 -23622,-5787 -5787,-2716 -10275,-6378 -13582,-11220 -3307,-4488 -6024,-10512 -8504,-17480l-105234 -270586c-12401,-30826 -25393,-58936 -38621,-84565 -13346,-25748 -29055,-47834 -47479,-66613 -18189,-18661 -39921,-32952 -64723,-43464 -24803,-10275 -54684,-15472 -89408,-15472l-101927 0 0 488495c0,4842 -1181,8858 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l243657 0c29055,0 52912,591 72282,2126 19015,1535 36259,3307 51731,4842 44409,7913 83384,19960 117518,36259 33897,16653 62243,37558 85274,62952 23267,25393 40511,54330 51968,87282 11456,32716 17244,68975 17244,108541 0,38149 -5079,72636 -15354,103108 -10630,30236 -25393,57164 -44763,80432 -19724,23267 -42991,43582 -70156,60708 -27165,17008 -57401,31535 -91298,43228 19015,8504 36023,18779 51377,31535 15472,12638 29645,28110 42991,45590 13228,17834 25984,38385 37676,61416 11811,22913 23622,48897 35432,77951l102754 252751c8149,21141 13582,36259 15708,44763 2480,8386 3661,15118 3661,19842zm-229484 -805852c0,-44763 -9921,-82794 -30236,-113974 -19960,-30826 -53503,-53267 -100982,-66849 -14764,-4252 -31417,-6968 -49842,-8740 -18779,-1772 -42873,-2716 -73109,-2716l-128502 0 0 386332 148698 0c40275,0 74999,-4842 104289,-14527 29055,-9921 53503,-23504 72873,-40747 19606,-17598 33897,-38149 43228,-61652 9094,-23622 13582,-49369 13582,-77125z"/>
+  <path id="1" class="fil6" d="M61912034 62291161c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="2" class="fil6" d="M62861269 62289271c0,69329 -7559,131218 -22677,186611 -14764,55275 -36850,102400 -66141,141139 -29055,38976 -65078,68975 -107360,89526 -42283,20787 -91061,31062 -145745,31062 -25393,0 -48897,-2362 -70392,-7559 -21496,-4842 -42637,-12992 -63188,-24212 -20551,-11456 -41102,-25393 -62007,-42519 -20551,-17244 -42283,-37795 -65314,-62007l0 97912c0,4606 -1181,8740 -3543,12401 -2480,3661 -6142,6378 -11575,8504 -5433,2126 -12047,3543 -19960,4842 -8149,1181 -18425,1772 -30826,1772 -11693,0 -21968,-591 -30236,-1772 -8386,-1299 -15118,-2716 -20551,-4842 -5079,-2126 -8740,-4842 -10512,-8504 -1890,-3661 -2716,-7559 -2716,-12401l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c23504,-24212 46180,-44763 68621,-61416 22086,-16299 43464,-29881 64605,-40157 21496,-10275 42637,-17834 63778,-22677 21259,-4606 43582,-6968 67204,-6968 57755,0 107006,11456 148108,34488 40747,22913 74054,54094 99683,92479 25748,38621 44527,83975 56338,136061 11693,51968 17480,107006 17480,164643zm-152359 17008c0,-40865 -3071,-80432 -9331,-118817 -6142,-38739 -17008,-72518 -32362,-102164 -15472,-29645 -35669,-53503 -61062,-71337 -25393,-18189 -57164,-27283 -94959,-27283 -18779,0 -37440,2716 -55865,7913 -18189,5433 -36968,14527 -55629,26929 -19134,12401 -38739,28346 -58936,48070 -20669,19370 -42401,44054 -65314,73699l0 318065c40157,49251 78542,86691 115155,112439 36614,25748 74999,38739 114565,38739 36614,0 67676,-8858 93660,-26692 25984,-17834 47243,-41338 63542,-70747 16299,-28936 28110,-61889 35314,-98148 7559,-36614 11220,-73463 11220,-110667z"/>
+  <path id="3" class="fil6" d="M63821370 62291161c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="4" class="fil6" d="M64433170 62639934c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path class="fil6" d="M60824731 63806370c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M61721644 64865327c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M62678201 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M63518659 64742613c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M64388171 64045775c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M65426577 64457264c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M66328687 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M67787676 64725960c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M68591402 64866272c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M69006788 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M69404931 64865327c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M70156571 64647654c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M91161743 46061926c0,4842 -945,8858 -2716,12401 -1772,3661 -5433,6732 -11456,9094 -5787,2126 -14291,3898 -24803,5197 -10630,1181 -24803,1772 -42401,1772 -15354,0 -28110,-591 -37676,-1772 -9685,-1299 -17598,-3071 -23622,-5787 -5787,-2716 -10275,-6378 -13582,-11220 -3307,-4488 -6024,-10512 -8504,-17480l-105234 -270586c-12401,-30826 -25393,-58936 -38621,-84565 -13346,-25748 -29055,-47834 -47479,-66613 -18189,-18661 -39921,-32952 -64723,-43464 -24803,-10275 -54684,-15472 -89408,-15472l-101927 0 0 488495c0,4842 -1181,8858 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l243657 0c29055,0 52912,591 72282,2126 19015,1535 36259,3307 51731,4842 44409,7913 83384,19960 117518,36259 33897,16653 62243,37558 85274,62952 23267,25393 40511,54330 51968,87282 11456,32716 17244,68975 17244,108541 0,38149 -5079,72636 -15354,103108 -10630,30236 -25393,57164 -44763,80432 -19724,23267 -42991,43582 -70156,60708 -27165,17008 -57401,31535 -91298,43228 19015,8504 36023,18779 51377,31535 15472,12638 29645,28110 42991,45590 13228,17834 25984,38385 37676,61416 11811,22913 23622,48897 35432,77951l102754 252751c8149,21141 13582,36259 15708,44763 2480,8386 3661,15118 3661,19842zm-229484 -805852c0,-44763 -9921,-82794 -30236,-113974 -19960,-30826 -53503,-53267 -100982,-66849 -14764,-4252 -31417,-6968 -49842,-8740 -18779,-1772 -42873,-2716 -73109,-2716l-128502 0 0 386332 148698 0c40275,0 74999,-4842 104289,-14527 29055,-9921 53503,-23504 72873,-40747 19606,-17598 33897,-38149 43228,-61652 9094,-23622 13582,-49369 13582,-77125z"/>
+  <path id="1" class="fil6" d="M92086766 45654807c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="2" class="fil6" d="M93036001 45652918c0,69329 -7559,131218 -22677,186611 -14764,55275 -36850,102400 -66141,141139 -29055,38976 -65078,68975 -107360,89526 -42283,20787 -91061,31062 -145745,31062 -25393,0 -48897,-2362 -70392,-7559 -21496,-4842 -42637,-12992 -63188,-24212 -20551,-11456 -41102,-25393 -62007,-42519 -20551,-17244 -42283,-37795 -65314,-62007l0 97912c0,4606 -1181,8740 -3543,12401 -2480,3661 -6142,6378 -11575,8504 -5433,2126 -12047,3543 -19960,4842 -8149,1181 -18425,1772 -30826,1772 -11693,0 -21968,-591 -30236,-1772 -8386,-1299 -15118,-2716 -20551,-4842 -5079,-2126 -8740,-4842 -10512,-8504 -1890,-3661 -2716,-7559 -2716,-12401l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c23504,-24212 46180,-44763 68621,-61416 22086,-16299 43464,-29881 64605,-40157 21496,-10275 42637,-17834 63778,-22677 21259,-4606 43582,-6968 67204,-6968 57755,0 107006,11456 148108,34488 40747,22913 74054,54094 99683,92479 25748,38621 44527,83975 56338,136061 11693,51968 17480,107006 17480,164643zm-152359 17008c0,-40865 -3071,-80432 -9331,-118817 -6142,-38739 -17008,-72518 -32362,-102164 -15472,-29645 -35669,-53503 -61062,-71337 -25393,-18189 -57164,-27283 -94959,-27283 -18779,0 -37440,2716 -55865,7913 -18189,5433 -36968,14527 -55629,26929 -19134,12401 -38739,28346 -58936,48070 -20669,19370 -42401,44054 -65314,73699l0 318065c40157,49251 78542,86691 115155,112439 36614,25748 74999,38739 114565,38739 36614,0 67676,-8858 93660,-26692 25984,-17834 47243,-41338 63542,-70747 16299,-28936 28110,-61889 35314,-98148 7559,-36614 11220,-73463 11220,-110667z"/>
+  <path id="3" class="fil6" d="M93996102 45654807c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="4" class="fil6" d="M94607902 46003581c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path class="fil6" d="M91001707 47166709c0,11220 -591,20905 -1772,29173 -1299,8149 -3425,14764 -6142,19960 -2953,4842 -6378,8858 -10275,10984 -3898,2362 -7913,3543 -12165,3543l-420819 0 0 391174 397788 0c4252,0 8268,945 12165,3071 3898,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19134 1181,8149 1772,18189 1772,30590 0,11575 -591,21259 -1772,29173 -1299,7795 -3425,14527 -6142,19724 -2953,4842 -6378,8740 -10275,11456 -3898,2716 -7913,3898 -12165,3898l-397788 0 0 479165c0,4252 -1181,8149 -3661,12165 -2362,3543 -6378,6614 -12401,8740 -5787,2126 -13701,3898 -23031,5433 -9449,1535 -21850,2126 -37322,2126 -14291,0 -26338,-591 -36377,-2126 -10039,-1535 -18189,-3307 -23976,-5433 -6024,-2126 -10039,-5197 -12401,-8740 -2480,-4016 -3661,-7913 -3661,-12165l0 -1064626c0,-23031 6024,-39094 18189,-48542 12165,-9094 25157,-13582 38858,-13582l516605 0c4252,0 8268,1181 12165,3543 3898,2126 7323,6142 10275,11575 2716,5197 4842,12165 6142,20669 1181,8504 1772,18425 1772,29645z"/>
+  <path id="1" class="fil6" d="M91901336 48228974c0,4842 -827,8740 -2953,12047 -2126,3071 -5787,6142 -11220,8504 -5197,2126 -12165,4016 -21023,5197 -8386,1181 -19015,1772 -31535,1772 -13346,0 -24566,-591 -32952,-1772 -8858,-1181 -15472,-3071 -20669,-5197 -4842,-2362 -8504,-5433 -10039,-8504 -1772,-3307 -2716,-7205 -2716,-12047l0 -105825c-45826,50314 -90589,86691 -135234,109722 -44291,23031 -89408,34606 -134879,34606 -53385,0 -98266,-8858 -134643,-26692 -36377,-17598 -66141,-41928 -88581,-72518 -22441,-30354 -38503,-65786 -48542,-106415 -9685,-40629 -14527,-90116 -14527,-147989l0 -484834c0,-4842 945,-8740 3071,-12165 2126,-2953 6024,-6024 12047,-8740 5787,-2716 13701,-4606 23149,-5433 9331,-945 21141,-1299 35432,-1299 14291,0 26102,354 35432,1299 9449,827 17008,2716 22795,5433 5433,2716 9331,5787 11811,8740 2480,3425 3661,7323 3661,12165l0 465700c0,46771 3307,84329 10275,112557 6732,28228 17008,52086 30944,71810 13937,20078 31889,35551 53031,46416 21259,10984 46062,16417 74644,16417 36614,0 73345,-13110 109722,-39094 36732,-26102 75235,-64369 116100,-114683l0 -559124c0,-4842 945,-8740 3071,-12165 2126,-2953 6024,-6024 12165,-8740 5787,-2716 13346,-4606 22441,-5433 9331,-945 21259,-1299 36023,-1299 14291,0 26102,354 35551,1299 9331,827 16889,2716 22086,5433 5433,2716 9449,5787 12165,8740 2716,3425 3898,7323 3898,12165l0 799946z"/>
+  <path id="2" class="fil6" d="M92860728 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21259,1772 -35551,1772 -15118,0 -27283,-591 -36614,-1772 -9803,-1181 -17008,-3071 -22441,-5197 -5551,-2362 -9094,-5433 -11575,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -468535c0,-45472 -3661,-82439 -10630,-110077 -6968,-27874 -17244,-51849 -30826,-72164 -13701,-19960 -30944,-35432 -52558,-46062 -21496,-10630 -46298,-16063 -74526,-16063 -36732,0 -73109,12992 -109486,39094 -36732,26102 -74881,64251 -114919,114565l0 559242c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4842 945,-8740 2716,-12165 1890,-2953 5197,-6024 10630,-8740 5433,-2716 12165,-4606 20669,-5433 8149,-945 19370,-1299 33070,-1299 12992,0 23858,354 32362,1299 8858,827 15472,2716 20315,5433 4606,2716 8268,5787 10394,8740 1772,3425 2953,7323 2953,12165l0 105825c44881,-50668 89526,-87636 134407,-111022 44527,-23267 89408,-35078 134879,-35078 53031,0 97912,9094 134289,26929 36495,18189 65904,42401 88345,72518 22441,30236 38503,65786 48188,106415 9685,40629 14527,89408 14527,146100l0 488259z"/>
+  <path id="3" class="fil6" d="M93685477 48105787c0,10039 -354,18779 -945,26102 -591,7559 -1535,13701 -2953,18779 -1535,5197 -3425,9449 -5551,13346 -2126,4016 -6614,9685 -14173,17008 -7323,7559 -20078,16653 -37676,27874 -17834,10984 -37913,20905 -59999,29409 -22441,8858 -46416,15826 -72518,20905 -25984,5551 -53031,8268 -80904,8268 -57637,0 -108541,-9449 -152832,-28582 -44527,-18779 -81849,-46298 -111612,-82794 -29999,-36377 -52676,-81258 -68503,-133935 -15708,-53149 -23622,-114092 -23622,-183540 0,-78542 9685,-146100 28818,-202792 19370,-56456 45708,-102754 79132,-138895 33661,-36023 72991,-62715 118226,-80314 45472,-17362 94605,-26102 147399,-26102 25393,0 49960,2362 73936,7323 24330,4488 46062,10866 66377,18425 20078,7913 38267,16653 53739,27047 15708,9921 27283,18779 34251,25748 7323,7205 12165,12992 14882,17008 2362,4252 4842,9094 6614,14764 1535,5551 2716,11929 3307,19134 709,6968 945,16063 945,26692 0,23031 -2716,39094 -7913,48542 -5433,9094 -11811,13582 -19606,13582 -8858,0 -19134,-4842 -30708,-14764 -11456,-9803 -26102,-20669 -43936,-32480 -17952,-11811 -39448,-22795 -64605,-32480 -25157,-10039 -54920,-14882 -89172,-14882 -70629,0 -124840,27047 -162517,81258 -37558,53975 -56338,132517 -56338,235389 0,51259 4842,96376 14527,135234 10039,38503 24212,70865 43346,96967 18779,25748 42165,45235 69802,57991 27519,12638 59054,19015 94605,19015 33897,0 63660,-5433 89054,-16063 25511,-10630 47361,-22441 66141,-35432 18779,-12756 34606,-24212 47361,-34606 12638,-10630 22441,-15708 29645,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6260 7559,11811 2126,5669 3661,12638 4606,21496 827,8504 1181,18779 1181,30590z"/>
+  <path id="4" class="fil6" d="M94576012 47406941c17598,0 29645,3898 36377,12047 6378,7913 9685,19488 9685,34842l0 775144c0,4842 -1181,8740 -3661,12047 -2362,3071 -6378,6142 -11811,8504 -5787,2126 -13346,4016 -22677,5197 -9449,1181 -20905,1772 -34606,1772 -14882,0 -27047,-591 -36377,-1772 -9449,-1181 -17008,-3071 -22795,-5197 -5433,-2362 -9331,-5433 -11811,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -700145 -412906 0 0 444795c0,54920 8149,96376 24566,124250 16063,28228 45472,42165 87282,42165 13701,0 25748,-1181 36732,-3898 10630,-2716 19960,-5433 28110,-8504 8504,-3071 15472,-5787 21614,-8504 5787,-2716 11220,-3898 16063,-3898 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1299,7086 1890,16181 1890,26692 0,17362 -1181,30708 -3661,40393 -2480,10039 -5787,17244 -10630,22441 -4842,5079 -11811,9685 -21259,13582 -9685,4252 -20551,7677 -32716,10394 -12165,2716 -24803,4842 -38503,6614 -13582,1890 -27637,2716 -41220,2716 -41574,0 -77006,-5433 -106770,-16299 -29645,-10984 -53975,-27637 -72991,-49724 -18897,-22204 -32834,-50432 -41338,-84329 -8740,-34015 -12992,-74054 -12992,-120116l0 -466291 -112557 0c-8740,0 -16063,-4842 -21496,-14291 -5079,-9449 -7913,-24921 -7913,-46416 0,-11220 709,-20551 2126,-28228 1535,-7795 3661,-14173 5787,-19370 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-2953 12992,-2953l111612 0 0 -189918c0,-4252 945,-8149 3071,-11456 2126,-3661 6024,-6732 11811,-9449 5433,-2716 12992,-4488 22677,-5787 9449,-1181 21259,-1772 35787,-1772 14882,0 27047,591 36377,1772 9803,1299 17008,3071 22441,5787 5551,2716 9094,5787 11575,9449 2362,3307 3661,7205 3661,11456l0 189918 514243 0zm62479 -247436c0,34488 -6732,57873 -19724,70274 -13110,12401 -36968,18779 -72164,18779 -34606,0 -58227,-6024 -70983,-18189 -12756,-12047 -19134,-35078 -19134,-69093 0,-34606 6732,-57873 19724,-70392 13110,-12401 36968,-18779 72164,-18779 34606,0 58227,6142 70983,18189 12756,12165 19134,35196 19134,69211z"/>
+  <path id="5" class="fil6" d="M95599419 47819611c0,65196 -8504,125195 -25748,180115 -17008,54566 -42755,101809 -76770,141612 -33897,39684 -76652,70629 -127557,92715 -51259,22204 -110785,33425 -177989,33425 -65904,0 -123187,-9803 -171965,-29409 -48897,-19488 -89526,-47952 -121888,-85274 -32480,-37322 -56692,-82794 -72755,-135824 -16063,-53385 -23976,-113738 -23976,-181296 0,-65196 8504,-125313 25157,-179879 17008,-54802 42401,-102164 76416,-141848 33897,-39802 76416,-70392 127321,-92479 50905,-21850 110431,-32716 178343,-32716 65786,0 123069,9685 171847,29409 48897,19370 89526,47834 121888,85156 32480,37322 57046,82439 73463,135824 16063,53385 24212,113384 24212,180469zm-152832 9331c0,-43346 -3898,-84211 -12047,-122714 -7913,-38621 -21259,-72282 -39802,-101337 -18189,-29055 -43346,-52204 -74881,-68857 -31181,-17008 -70629,-25393 -117636,-25393 -43346,0 -80668,7559 -111848,23031 -31299,15472 -56810,37204 -77125,65432 -20315,28228 -35078,61534 -44763,100038 -10039,38621 -14882,80668 -14882,126139 0,44054 3898,85274 12047,123777 7913,38503 21259,72164 40039,100982 18779,28464 44054,51495 75235,68266 31535,16889 70983,25393 117990,25393 42755,0 79723,-7559 111258,-23031 31535,-15472 57282,-36968 77597,-64841 20315,-27992 35196,-61298 44645,-99801 9331,-38503 14173,-80904 14173,-127084z"/>
+  <path id="6" class="fil6" d="M96504245 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21259,1772 -35551,1772 -15118,0 -27283,-591 -36614,-1772 -9803,-1181 -17008,-3071 -22441,-5197 -5551,-2362 -9094,-5433 -11575,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -468535c0,-45472 -3661,-82439 -10630,-110077 -6968,-27874 -17244,-51849 -30826,-72164 -13701,-19960 -30944,-35432 -52558,-46062 -21496,-10630 -46298,-16063 -74526,-16063 -36732,0 -73109,12992 -109486,39094 -36732,26102 -74881,64251 -114919,114565l0 559242c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4842 945,-8740 2716,-12165 1890,-2953 5197,-6024 10630,-8740 5433,-2716 12165,-4606 20669,-5433 8149,-945 19370,-1299 33070,-1299 12992,0 23858,354 32362,1299 8858,827 15472,2716 20315,5433 4606,2716 8268,5787 10394,8740 1772,3425 2953,7323 2953,12165l0 105825c44881,-50668 89526,-87636 134407,-111022 44527,-23267 89408,-35078 134879,-35078 53031,0 97912,9094 134289,26929 36495,18189 65904,42401 88345,72518 22441,30236 38503,65786 48188,106415 9685,40629 14527,89408 14527,146100l0 488259z"/>
+  <path id="7" class="fil6" d="M97967487 48089134c0,9449 -236,17598 -827,24921 -591,6968 -1535,12992 -3071,18425 -1535,5197 -3307,10039 -5787,14291 -2362,3898 -6614,9094 -12401,14882 -6024,6024 -18543,15118 -37322,27283 -19134,12047 -42755,23976 -70983,35432 -28110,11575 -60235,21259 -96731,29173 -36614,8149 -76298,12047 -119762,12047 -74526,0 -142202,-12401 -202201,-37322 -59999,-24803 -111612,-61534 -153777,-110313 -42401,-48542 -75117,-108541 -97912,-179761 -22677,-71574 -34251,-153777 -34251,-246846 0,-95549 12401,-180469 36968,-255350 24566,-74644 59172,-137950 103699,-189800 44645,-51849 97675,-91298 159800,-118581 61889,-27283 130746,-40984 205862,-40984 33425,0 65904,3071 97085,9094 31535,6378 60589,14055 87282,23385 26692,9449 50432,20315 71337,32716 20551,12165 35196,22441 42991,30354 8268,7913 13346,13937 15826,18189 2362,4016 4252,8858 5787,14527 1417,5787 2716,12519 3543,20078 945,7913 1299,17008 1299,27519 0,12165 -709,22204 -1890,30354 -1181,8504 -2953,15472 -5433,21259 -2126,5433 -5197,9685 -8504,12401 -3071,2716 -7323,4016 -11811,4016 -8504,0 -19960,-5787 -35196,-17362 -14882,-11456 -33897,-24212 -57637,-38149 -23622,-13937 -52086,-26692 -85746,-38267 -34015,-11456 -74290,-17244 -121297,-17244 -51613,0 -98266,10275 -140076,30590 -42165,20669 -78306,50668 -107951,90353 -29763,39802 -53031,88227 -69448,145627 -16417,57282 -24566,122714 -24566,196178 0,72991 7913,137596 23622,193697 15826,56101 38503,103108 67912,140667 29409,37676 65786,66141 108541,85510 43109,19134 91652,28818 145864,28818 45826,0 86101,-5669 120470,-16889 34251,-11220 63306,-23740 87282,-37676 24212,-13937 43936,-26338 59408,-37558 15826,-11220 27874,-17008 36732,-17008 4252,0 7795,945 10866,2716 3071,1890 5197,5197 6968,10039 1890,5197 3307,12165 4252,20905 945,8858 1181,20078 1181,33661z"/>
+  <path id="8" class="fil6" d="M98755622 48229800c0,6968 -2480,12519 -6968,16063 -4842,3661 -11220,6142 -19724,7913 -8149,1890 -20315,2716 -36377,2716 -15118,0 -27637,-827 -36732,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-16063l0 -79959c-34842,37204 -73699,66377 -116691,86928 -43109,20315 -88581,30708 -136533,30708 -42165,0 -80314,-5551 -114329,-16417 -33897,-10866 -63070,-26929 -86928,-47598 -23976,-20669 -42755,-46416 -56101,-76416 -13346,-30354 -20078,-64605 -20078,-103108 0,-45117 9094,-84329 27637,-117281 18189,-33425 44527,-61062 79132,-82794 34251,-21850 76416,-38503 126139,-49487 49724,-10866 105825,-16299 167950,-16299l110431 0 0 -62479c0,-30708 -3425,-57991 -9685,-81967 -6732,-23622 -17008,-43346 -31535,-59054 -14645,-15826 -33425,-27637 -56456,-35551 -23031,-8149 -51495,-12047 -85156,-12047 -36141,0 -68621,4252 -97085,12992 -28818,8858 -53975,18189 -75471,28818 -21496,10630 -39802,20078 -54330,28818 -14173,8740 -25157,12992 -32125,12992 -4842,0 -9094,-1181 -12401,-3543 -3661,-2126 -6732,-5787 -9449,-10630 -2716,-4606 -4488,-10630 -5787,-17952 -1181,-7559 -1772,-15472 -1772,-24566 0,-14527 945,-26338 3071,-34842 2126,-8504 7205,-16653 15118,-24212 7913,-7677 21850,-16771 41220,-27283 19488,-10394 42165,-20078 67676,-28818 25157,-8504 53031,-15826 83384,-21614 29999,-5669 60589,-8386 91298,-8386 57282,0 106061,6260 146454,19370 40275,12992 72755,32480 97557,57637 24921,25157 42755,56338 53975,93660 11220,37322 17008,80904 17008,130628l0 539754zm-145509 -366253l-125313 0c-39921,0 -74881,3307 -104526,10275 -29409,6732 -53975,17008 -73699,30354 -19488,13346 -33661,29055 -43109,47952 -9094,18779 -13582,40275 -13582,64487 0,41574 12992,74644 39330,99211 26456,24566 63070,36968 110785,36968 38149,0 73936,-9685 106652,-29409 32834,-19370 67322,-49369 103463,-89762l0 -170076z"/>
+  <path id="9" class="fil6" d="M99172308 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>
+  <path id="10" class="fil6" d="M99589820 48228974c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>
+  <path id="11" class="fil6" d="M100343940 48010592c0,40984 -7559,77361 -22795,109486 -15118,31771 -36377,58818 -64251,80668 -27874,21850 -60944,38503 -99447,49724 -38503,11220 -81022,17008 -127084,17008 -28464,0 -55511,-2126 -81258,-6732 -25748,-4252 -48779,-9685 -69448,-16653 -20315,-6732 -37558,-13701 -51849,-20905 -14173,-7323 -24566,-13937 -30944,-19724 -6614,-5787 -11456,-14291 -14173,-24921 -3071,-10512 -4606,-25157 -4606,-43582 0,-11220 591,-20669 1890,-28228 1181,-7913 2716,-13937 4252,-18779 1772,-4842 4488,-8268 7559,-10394 3307,-2008 6968,-2953 11220,-2953 6378,0 16063,3898 28818,12165 12638,7795 28464,16653 47007,25984 18425,9449 40629,18189 66022,26102 25511,8149 54566,12165 87636,12165 24921,0 47361,-2716 67322,-8268 20315,-5079 37558,-12992 52440,-23622 14882,-10275 26102,-23622 34251,-39684 7913,-16063 11811,-35196 11811,-57282 0,-22441 -5669,-41574 -17244,-56692 -11456,-15472 -26692,-29173 -45472,-40984 -19134,-11811 -40275,-22441 -64015,-31535 -23622,-9094 -47834,-18779 -72991,-28818 -24921,-10275 -49487,-21496 -73463,-34251 -23976,-12756 -45117,-28228 -64251,-46653 -18779,-18543 -33897,-40393 -45472,-65904 -11575,-25393 -17244,-55747 -17244,-91534 0,-31181 6024,-61180 18189,-89998 12047,-28818 30236,-53975 54566,-75589 24566,-21496 54802,-39094 91298,-52086 36377,-13110 78778,-19370 127557,-19370 21259,0 42519,1772 64015,5433 21259,3661 40393,8504 57637,13937 17244,5433 31771,11456 43936,17834 12165,6732 21496,12165 27637,17362 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4606,12165 827,4252 1772,9685 2716,16063 827,6614 1181,14527 1181,23858 0,10039 -354,18897 -1181,26102 -945,7323 -2480,13346 -4606,17952 -2126,4842 -4488,8149 -7559,10275 -3071,2126 -6378,3071 -9685,3071 -5433,0 -13110,-3425 -23385,-10039 -10039,-6378 -23031,-13346 -39094,-20905 -16063,-7559 -34842,-14527 -56456,-20905 -21496,-6732 -46298,-10039 -74290,-10039 -24803,0 -47007,2716 -65786,8504 -19015,5433 -34488,13346 -46653,23622 -12165,10275 -21496,22441 -27637,36732 -6378,13937 -9331,29409 -9331,45708 0,23149 6024,42519 17834,58227 11811,15826 27047,29409 46062,41220 18897,11929 40629,22441 64959,32244 24212,9331 48779,19015 73936,29055 25157,10275 50078,21496 74644,34015 24566,12401 46416,27519 65196,45117 19134,17952 34251,39094 45708,64015 11575,24803 17362,54566 17362,88817z"/>
+  <path class="fil6" d="M72445151 82759887c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M73035219 83570345l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M73897881 83488968c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M74759598 83548258c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M75766824 83140195c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M76650745 83548258c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M72343578 84655522c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M73240491 85714479c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M74197049 85714479c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M75037506 85591765c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M75907018 84894927c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M76945425 85306416c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M77847534 85714479c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M72506804 87741214c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="1" class="fil6" d="M73292459 87881527c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="2" class="fil6" d="M73707845 87880582c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="3" class="fil6" d="M74124058 87880582c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="4" class="fil6" d="M74875698 87662909c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil6" d="M137163080 75604898c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M137753148 76415355l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M138615809 76333979c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M139477526 76393269c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M140484752 75985206c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M141368673 76393269c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M137061507 77500415c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M137958420 78559372c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M138914977 78559372c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M139755435 78436658c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M140624946 77739820c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M141663353 78151308c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M142547274 78559372c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M137224732 80586225c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="1" class="fil6" d="M138010387 80726538c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="2" class="fil6" d="M138425774 80725593c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="3" class="fil6" d="M138841986 80725593c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="4" class="fil6" d="M139593626 80507919c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <polygon class="fil11 str1" points="21907755,116132396 157697474,116132396 157697474,103325107 21907755,103325107 "/>
+  <path class="fil6" d="M151738093 28827945c0,53739 -9921,101573 -29645,143738 -20078,41928 -47598,77715 -82794,107124 -35196,29055 -76770,51141 -124368,66022 -47834,14882 -99093,22204 -154367,22204 -38503,0 -74290,-3425 -107006,-9803 -33070,-6614 -62479,-14764 -88227,-24212 -25748,-9331 -47243,-19370 -64841,-29409 -17362,-10275 -29763,-18779 -36377,-26102 -6968,-6968 -11929,-16063 -15236,-26929 -3307,-10984 -4842,-25511 -4842,-43700 0,-12992 591,-23976 1890,-32480 1181,-8504 2953,-15472 5079,-20551 2480,-5433 5433,-9094 9094,-11220 3661,-2126 7559,-3071 12401,-3071 8268,0 20078,5197 35196,15236 14882,9921 34251,20905 58227,32716 23622,11456 52204,22677 85865,33070 33306,10275 72164,15472 115746,15472 33425,0 63778,-4606 91298,-13346 27637,-8858 51259,-21259 70983,-37676 19960,-16063 35196,-36023 45826,-59763 10630,-23622 16063,-50550 16063,-80550 0,-32480 -7323,-60353 -22204,-83384 -14764,-23149 -34251,-43464 -58464,-60944 -24566,-17362 -52204,-33425 -83148,-47952 -31181,-14527 -63070,-29173 -95431,-44291 -32480,-15118 -64369,-31889 -94959,-50314 -30944,-18189 -58464,-39684 -82794,-64605 -24212,-24803 -43936,-53975 -58818,-87636 -15118,-33306 -22677,-73345 -22677,-120116 0,-48188 8740,-90943 25984,-128502 17598,-37322 41928,-68857 72873,-94368 31181,-25393 68148,-44881 110904,-58227 43109,-13228 89172,-19960 138895,-19960 25511,0 50905,2126 76770,6732 25748,4488 49960,10275 72755,17834 22677,7323 42991,15708 60944,24921 17598,9094 29409,16653 34842,22086 5787,5787 9449,10039 11220,13346 1772,3307 3071,7559 4252,12401 1181,5197 2126,11220 2716,18543 591,6968 945,16063 945,27519 0,10630 -354,20078 -1299,28582 -827,8149 -2362,15118 -4134,20905 -1535,5433 -4252,9685 -7323,12401 -3307,2716 -6968,3898 -11220,3898 -6732,0 -16653,-4134 -30590,-12401 -13937,-8504 -30944,-17598 -51259,-28228 -20078,-10275 -44054,-19606 -71574,-28110 -27283,-8858 -58227,-13110 -92833,-13110 -31771,0 -59763,4252 -83384,12756 -23622,8858 -43346,20078 -58818,34251 -15118,14291 -26692,30944 -34488,50314 -7677,19724 -11575,40393 -11575,62243 0,31771 7323,59408 22086,82439 14882,23031 34606,43346 59172,61298 24921,17834 52794,33897 84329,48779 31181,14882 63306,29763 96140,44881 32362,15118 64487,31535 95786,49724 31535,17834 59408,39448 84329,64015 24566,24566 44172,53385 59408,87046 15118,33306 22677,72755 22677,118462z"/>
+  <path id="1" class="fil6" d="M152626856 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21259,1772 -35551,1772 -15118,0 -27283,-591 -36614,-1772 -9803,-1181 -17008,-3071 -22441,-5197 -5551,-2362 -9094,-5433 -11575,-8504 -2362,-3307 -3661,-7205 -3661,-12047l0 -468535c0,-45472 -3661,-82439 -10630,-110077 -6968,-27874 -17244,-51849 -30826,-72164 -13701,-19960 -30944,-35432 -52558,-46062 -21496,-10630 -46298,-16063 -74526,-16063 -36732,0 -73109,12992 -109486,39094 -36732,26102 -74881,64251 -114919,114565l0 559242c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 477865c41810,-44645 84329,-77715 126730,-99211 42519,-21496 85274,-32362 128265,-32362 53385,0 97912,9094 134289,26929 36495,18189 65904,42401 88345,72518 22441,30236 38503,65786 48188,106415 9685,40629 14527,89762 14527,147045l0 487314z"/>
+  <path id="2" class="fil6" d="M153575264 28693656c0,23031 -5669,39448 -17244,49487 -11575,9685 -24803,14527 -39684,14527l-525227 0c0,44527 4606,84565 13346,119998 8858,35787 23622,66495 44527,91888 20669,25511 47716,44881 80668,58582 33425,13582 74054,20551 121888,20551 37913,0 71928,-2953 101337,-9331 29763,-6142 55511,-13110 77006,-20669 21496,-7559 39448,-14527 53385,-20551 13937,-6378 24212,-9449 31535,-9449 4252,0 7913,945 11220,3071 3071,2126 5787,5079 7323,9331 1772,4016 3307,9685 4134,17008 945,7559 1299,16417 1299,27047 0,7559 -354,14173 -945,19960 -591,5433 -1181,10630 -2126,14882 -945,4488 -2362,8504 -4488,12165 -2126,3307 -4606,6614 -7913,9921 -3307,3307 -13110,8504 -28818,15826 -16063,7559 -36732,14527 -62125,21850 -25511,6968 -54920,13346 -88345,18779 -33306,5787 -68739,8504 -106652,8504 -65786,0 -123187,-9094 -172556,-27637 -49369,-18189 -90943,-45472 -124604,-81613 -33661,-36377 -59172,-81495 -76180,-136061 -17244,-54330 -25748,-117636 -25748,-190154 0,-68503 8858,-130391 26692,-185312 17598,-54566 43346,-101219 76770,-139486 33306,-38149 73936,-67322 121297,-87872 47243,-20315 100274,-30590 158855,-30590 62715,0 116100,9921 160036,30236 44291,20078 80432,47361 108896,81258 28228,34015 49133,74054 62479,120116 13346,45826 19960,94959 19960,147045l0 26692zm-147281 -43346c1772,-77006 -15236,-137714 -51259,-181650 -36141,-43936 -89172,-65786 -159800,-65786 -36377,0 -68266,6614 -95549,20315 -27283,13582 -50078,31889 -68503,54566 -18543,22441 -32716,48779 -42755,78542 -10039,29999 -15826,61298 -17008,94014l434874 0z"/>
+  <path id="3" class="fil6" d="M153929116 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>
+  <path id="4" class="fil6" d="M154328440 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -1186514c0,-4842 945,-9094 3071,-12519 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7677 3661,12519l0 1186514z"/>
+  <path id="5" class="fil6" d="M155530072 28910148c0,40984 -7559,77361 -22795,109486 -15118,31771 -36377,58818 -64251,80668 -27874,21850 -60944,38503 -99447,49724 -38503,11220 -81022,17008 -127084,17008 -28464,0 -55511,-2126 -81258,-6732 -25748,-4252 -48779,-9685 -69448,-16653 -20315,-6732 -37558,-13701 -51849,-20905 -14173,-7323 -24566,-13937 -30944,-19724 -6614,-5787 -11456,-14291 -14173,-24921 -3071,-10512 -4606,-25157 -4606,-43582 0,-11220 591,-20669 1890,-28228 1181,-7913 2716,-13937 4252,-18779 1772,-4842 4488,-8268 7559,-10394 3307,-2008 6968,-2953 11220,-2953 6378,0 16063,3898 28818,12165 12638,7795 28464,16653 47007,25984 18425,9449 40629,18189 66022,26102 25511,8149 54566,12165 87636,12165 24921,0 47361,-2716 67322,-8268 20315,-5079 37558,-12992 52440,-23622 14882,-10275 26102,-23622 34251,-39684 7913,-16063 11811,-35196 11811,-57282 0,-22441 -5669,-41574 -17244,-56692 -11456,-15472 -26692,-29173 -45472,-40984 -19134,-11811 -40275,-22441 -64015,-31535 -23622,-9094 -47834,-18779 -72991,-28818 -24921,-10275 -49487,-21496 -73463,-34251 -23976,-12756 -45117,-28228 -64251,-46653 -18779,-18543 -33897,-40393 -45472,-65904 -11575,-25393 -17244,-55747 -17244,-91534 0,-31181 6024,-61180 18189,-89998 12047,-28818 30236,-53975 54566,-75589 24566,-21496 54802,-39094 91298,-52086 36377,-13110 78778,-19370 127557,-19370 21259,0 42519,1772 64015,5433 21259,3661 40393,8504 57637,13937 17244,5433 31771,11456 43936,17834 12165,6732 21496,12165 27637,17362 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4606,12165 827,4252 1772,9685 2716,16063 827,6614 1181,14527 1181,23858 0,10039 -354,18897 -1181,26102 -945,7323 -2480,13346 -4606,17952 -2126,4842 -4488,8149 -7559,10275 -3071,2126 -6378,3071 -9685,3071 -5433,0 -13110,-3425 -23385,-10039 -10039,-6378 -23031,-13346 -39094,-20905 -16063,-7559 -34842,-14527 -56456,-20905 -21496,-6732 -46298,-10039 -74290,-10039 -24803,0 -47007,2716 -65786,8504 -19015,5433 -34488,13346 -46653,23622 -12165,10275 -21496,22441 -27637,36732 -6378,13937 -9331,29409 -9331,45708 0,23149 6024,42519 17834,58227 11811,15826 27047,29409 46062,41220 18897,11929 40629,22441 64959,32244 24212,9331 48779,19015 73936,29055 25157,10275 50078,21496 74644,34015 24566,12401 46416,27519 65196,45117 19134,17952 34251,39094 45708,64015 11575,24803 17362,54566 17362,88817z"/>
+  <path id="6" class="fil6" d="M156296357 29005344c0,10039 -354,18779 -945,26102 -591,7559 -1535,13701 -2953,18779 -1535,5197 -3425,9449 -5551,13346 -2126,4016 -6614,9685 -14173,17008 -7323,7559 -20078,16653 -37676,27874 -17834,10984 -37913,20905 -59999,29409 -22441,8858 -46416,15826 -72518,20905 -25984,5551 -53031,8268 -80904,8268 -57637,0 -108541,-9449 -152832,-28582 -44527,-18779 -81849,-46298 -111612,-82794 -29999,-36377 -52676,-81258 -68503,-133935 -15708,-53149 -23622,-114092 -23622,-183540 0,-78542 9685,-146100 28818,-202792 19370,-56456 45708,-102754 79132,-138895 33661,-36023 72991,-62715 118226,-80314 45472,-17362 94605,-26102 147399,-26102 25393,0 49960,2362 73936,7323 24330,4488 46062,10866 66377,18425 20078,7913 38267,16653 53739,27047 15708,9921 27283,18779 34251,25748 7323,7205 12165,12992 14882,17008 2362,4252 4842,9094 6614,14764 1535,5551 2716,11929 3307,19134 709,6968 945,16063 945,26692 0,23031 -2716,39094 -7913,48542 -5433,9094 -11811,13582 -19606,13582 -8858,0 -19134,-4842 -30708,-14764 -11456,-9803 -26102,-20669 -43936,-32480 -17952,-11811 -39448,-22795 -64605,-32480 -25157,-10039 -54920,-14882 -89172,-14882 -70629,0 -124840,27047 -162517,81258 -37558,53975 -56338,132517 -56338,235389 0,51259 4842,96376 14527,135234 10039,38503 24212,70865 43346,96967 18779,25748 42165,45235 69802,57991 27519,12638 59054,19015 94605,19015 33897,0 63660,-5433 89054,-16063 25511,-10630 47361,-22441 66141,-35432 18779,-12756 34606,-24212 47361,-34606 12638,-10630 22441,-15708 29645,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6260 7559,11811 2126,5669 3661,12638 4606,21496 827,8504 1181,18779 1181,30590z"/>
+  <path id="7" class="fil6" d="M156958235 28380434c0,12992 -236,23976 -945,32716 -591,8858 -1772,15826 -3543,20905 -1535,5197 -4016,8858 -6732,11575 -2362,2716 -6024,3898 -10866,3898 -4842,0 -10630,-1181 -17362,-3898 -6968,-2716 -14527,-5433 -23031,-7913 -8504,-2716 -18189,-5079 -28818,-7559 -10512,-2480 -22086,-3661 -34488,-3661 -14882,0 -29409,3071 -43700,8858 -13937,6024 -29055,15708 -44527,29645 -15826,13701 -32244,31889 -49487,54330 -17008,22677 -36023,50314 -56692,83030l0 526172c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4842 945,-8740 2716,-12165 1890,-2953 5197,-6024 10630,-8740 5433,-2716 12165,-4606 20669,-5433 8149,-945 19370,-1299 33070,-1299 12992,0 23858,354 32362,1299 8858,827 15472,2716 20315,5433 4606,2716 8268,5787 10394,8740 1772,3425 2953,7323 2953,12165l0 116455c21850,-32125 42519,-58227 61652,-78542 19370,-20078 37558,-36141 54566,-47598 17244,-11575 34251,-19488 50905,-23976 17008,-4606 34015,-6614 51259,-6614 7559,0 16299,236 26102,1181 9685,827 19960,2716 30590,4842 10630,2362 20315,5079 28818,8149 8504,3071 14527,5787 18189,8858 3661,2953 6024,5669 6968,8504 1181,2716 2362,6024 3307,9921 945,4252 1535,10394 1890,18189 236,8268 236,18779 236,32480z"/>
+  <path id="8" class="fil6" d="M157254214 29128530c0,4842 -1181,8740 -3661,12047 -2362,3071 -6024,6142 -11456,8504 -5551,2126 -12756,4016 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1181 -17362,-3071 -22795,-5197 -5787,-2362 -9685,-5433 -11811,-8504 -2126,-3307 -3071,-7205 -3071,-12047l0 -799946c0,-4252 945,-8149 3071,-11575 2126,-3543 6024,-6614 11811,-9094 5433,-2126 12992,-3898 22795,-5079 9331,-1299 21141,-1890 35787,-1890 14764,0 26929,591 36377,1890 9685,1181 16889,2953 22441,5079 5433,2480 9094,5551 11456,9094 2480,3425 3661,7323 3661,11575l0 799946zm16417 -1069469c0,34488 -6732,57873 -19724,70274 -13110,12401 -36968,18779 -72164,18779 -34606,0 -58227,-6024 -70983,-18189 -12756,-12047 -19134,-35078 -19134,-69093 0,-34606 6732,-57873 19724,-70392 13110,-12401 36968,-18779 72164,-18779 34606,0 58227,6142 70983,18189 12756,12165 19134,35196 19134,69211z"/>
+  <path id="9" class="fil6" d="M158241243 28715506c0,70038 -7677,132754 -22795,188619 -14882,55511 -36968,102754 -66377,141612 -29173,38739 -65550,68739 -108541,89762 -43109,20905 -92479,31535 -147989,31535 -23622,0 -45472,-2480 -65550,-6968 -20315,-4842 -39684,-12165 -59054,-22441 -19134,-10039 -38267,-22795 -57046,-38267 -19134,-15118 -39094,-33306 -60353,-53975l0 400623c0,4842 -1181,8740 -3661,12401 -2362,3661 -6024,6614 -11456,9094 -5551,2126 -12756,3898 -22441,5197 -9449,1181 -21614,1772 -36377,1772 -14645,0 -26456,-591 -35787,-1772 -9803,-1299 -17362,-3071 -22795,-5197 -5787,-2480 -9685,-5433 -11811,-9094 -2126,-3661 -3071,-7559 -3071,-12401l0 -1117421c0,-5433 945,-9685 2716,-12992 1890,-3071 5551,-6142 10630,-8268 5433,-2362 12165,-4252 20669,-5079 8149,-945 18425,-1299 30354,-1299 12401,0 22677,354 30826,1299 7913,827 14645,2716 20078,4842 5433,2362 9094,5433 11220,8504 2126,3307 3071,7559 3071,12992l0 107006c24212,-24803 47598,-46416 70038,-64841 22441,-18189 45117,-33425 67912,-45472 22677,-12165 46062,-21614 70038,-27637 23976,-6378 49133,-9331 75825,-9331 57873,0 107006,11102 147871,33543 40629,22795 74054,53385 99801,92597 25748,39094 44527,84565 56456,136415 11811,51849 17598,106770 17598,164643zm-152832 17008c0,-40984 -3071,-80668 -9449,-118935 -6024,-38149 -17008,-72164 -31889,-101809 -15118,-29763 -35432,-53385 -60944,-71337 -25393,-17834 -57282,-26692 -95195,-26692 -19015,0 -37558,2716 -56101,8504 -18189,5787 -36968,14527 -56101,26692 -18779,12165 -38739,28228 -59408,48188 -20551,20078 -42755,44645 -65786,73699l0 318065c40275,49487 78542,87046 114565,113502 36495,25984 74290,39094 114092,39094 36614,0 68148,-8858 94605,-26692 26338,-17952 47598,-41574 64015,-71219 16299,-29763 28110,-62834 36023,-99801 7559,-36732 11575,-74054 11575,-111258z"/>
+  <path id="10" class="fil6" d="M158868752 29069004c0,17362 -1181,30944 -3543,40984 -2126,10039 -5787,17598 -10630,22086 -4606,4842 -11811,9449 -21259,13346 -9449,4252 -20315,7677 -32480,10394 -12047,2716 -24803,4842 -38503,6614 -13582,1890 -26929,2716 -40629,2716 -41456,0 -77006,-5433 -106415,-16299 -29409,-10984 -53621,-27637 -72755,-49724 -18779,-22204 -32480,-50432 -41220,-84329 -8504,-34015 -12756,-74054 -12756,-120116l0 -466291 -112557 0c-8740,0 -16063,-4842 -21496,-14291 -5079,-9449 -7913,-24921 -7913,-46416 0,-11220 709,-20551 2126,-28228 1535,-7795 3661,-14173 5787,-19370 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-2953 12992,-2953l111612 0 0 -189918c0,-4252 945,-8149 3071,-11456 2126,-3661 6024,-6732 11811,-9449 5433,-2716 12992,-4488 22677,-5787 9449,-1181 21259,-1772 35787,-1772 14882,0 27047,591 36377,1772 9803,1299 17008,3071 22441,5787 5551,2716 9094,5787 11575,9449 2362,3307 3661,7205 3661,11456l0 189918 203736 0c4842,0 8740,827 12401,2953 3307,2126 6732,5787 9094,10630 2716,5197 4606,11575 5787,19370 1181,7677 1772,17008 1772,28228 0,21496 -2716,36968 -7795,46416 -5551,9449 -12519,14291 -21259,14291l-203736 0 0 444795c0,54920 8149,96376 24212,124250 16063,28228 45235,42165 87046,42165 13346,0 25511,-1181 36023,-3898 10630,-2716 20078,-5433 28228,-8504 8268,-3071 15236,-5787 21259,-8504 5787,-2716 11220,-3898 15708,-3898 3071,0 5787,591 8504,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,7086 1772,16181 1772,26692z"/>
+  <path id="11" class="fil6" d="M159565589 28910148c0,40984 -7559,77361 -22795,109486 -15118,31771 -36377,58818 -64251,80668 -27874,21850 -60944,38503 -99447,49724 -38503,11220 -81022,17008 -127084,17008 -28464,0 -55511,-2126 -81258,-6732 -25748,-4252 -48779,-9685 -69448,-16653 -20315,-6732 -37558,-13701 -51849,-20905 -14173,-7323 -24566,-13937 -30944,-19724 -6614,-5787 -11456,-14291 -14173,-24921 -3071,-10512 -4606,-25157 -4606,-43582 0,-11220 591,-20669 1890,-28228 1181,-7913 2716,-13937 4252,-18779 1772,-4842 4488,-8268 7559,-10394 3307,-2008 6968,-2953 11220,-2953 6378,0 16063,3898 28818,12165 12638,7795 28464,16653 47007,25984 18425,9449 40629,18189 66022,26102 25511,8149 54566,12165 87636,12165 24921,0 47361,-2716 67322,-8268 20315,-5079 37558,-12992 52440,-23622 14882,-10275 26102,-23622 34251,-39684 7913,-16063 11811,-35196 11811,-57282 0,-22441 -5669,-41574 -17244,-56692 -11456,-15472 -26692,-29173 -45472,-40984 -19134,-11811 -40275,-22441 -64015,-31535 -23622,-9094 -47834,-18779 -72991,-28818 -24921,-10275 -49487,-21496 -73463,-34251 -23976,-12756 -45117,-28228 -64251,-46653 -18779,-18543 -33897,-40393 -45472,-65904 -11575,-25393 -17244,-55747 -17244,-91534 0,-31181 6024,-61180 18189,-89998 12047,-28818 30236,-53975 54566,-75589 24566,-21496 54802,-39094 91298,-52086 36377,-13110 78778,-19370 127557,-19370 21259,0 42519,1772 64015,5433 21259,3661 40393,8504 57637,13937 17244,5433 31771,11456 43936,17834 12165,6732 21496,12165 27637,17362 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4606,12165 827,4252 1772,9685 2716,16063 827,6614 1181,14527 1181,23858 0,10039 -354,18897 -1181,26102 -945,7323 -2480,13346 -4606,17952 -2126,4842 -4488,8149 -7559,10275 -3071,2126 -6378,3071 -9685,3071 -5433,0 -13110,-3425 -23385,-10039 -10039,-6378 -23031,-13346 -39094,-20905 -16063,-7559 -34842,-14527 -56456,-20905 -21496,-6732 -46298,-10039 -74290,-10039 -24803,0 -47007,2716 -65786,8504 -19015,5433 -34488,13346 -46653,23622 -12165,10275 -21496,22441 -27637,36732 -6378,13937 -9331,29409 -9331,45708 0,23149 6024,42519 17834,58227 11811,15826 27047,29409 46062,41220 18897,11929 40629,22441 64959,32244 24212,9331 48779,19015 73936,29055 25157,10275 50078,21496 74644,34015 24566,12401 46416,27519 65196,45117 19134,17952 34251,39094 45708,64015 11575,24803 17362,54566 17362,88817z"/>
+  <path class="fil6" d="M82203834 28148351c0,4842 -945,8858 -2716,12401 -1772,3661 -5433,6732 -11456,9094 -5787,2126 -14291,3898 -24803,5197 -10630,1181 -24803,1772 -42401,1772 -15354,0 -28110,-591 -37676,-1772 -9685,-1299 -17598,-3071 -23622,-5787 -5787,-2716 -10275,-6378 -13582,-11220 -3307,-4488 -6024,-10512 -8504,-17480l-105234 -270586c-12401,-30826 -25393,-58936 -38621,-84565 -13346,-25748 -29055,-47834 -47479,-66613 -18189,-18661 -39921,-32952 -64723,-43464 -24803,-10275 -54684,-15472 -89408,-15472l-101927 0 0 488495c0,4842 -1181,8858 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l243657 0c29055,0 52912,591 72282,2126 19015,1535 36259,3307 51731,4842 44409,7913 83384,19960 117518,36259 33897,16653 62243,37558 85274,62952 23267,25393 40511,54330 51968,87282 11456,32716 17244,68975 17244,108541 0,38149 -5079,72636 -15354,103108 -10630,30236 -25393,57164 -44763,80432 -19724,23267 -42991,43582 -70156,60708 -27165,17008 -57401,31535 -91298,43228 19015,8504 36023,18779 51377,31535 15472,12638 29645,28110 42991,45590 13228,17834 25984,38385 37676,61416 11811,22913 23622,48897 35432,77951l102754 252751c8149,21141 13582,36259 15708,44763 2480,8386 3661,15118 3661,19842zm-229484 -805852c0,-44763 -9921,-82794 -30236,-113974 -19960,-30826 -53503,-53267 -100982,-66849 -14764,-4252 -31417,-6968 -49842,-8740 -18779,-1772 -42873,-2716 -73109,-2716l-128502 0 0 386332 148698 0c40275,0 74999,-4842 104289,-14527 29055,-9921 53503,-23504 72873,-40747 19606,-17598 33897,-38149 43228,-61652 9094,-23622 13582,-49369 13582,-77125z"/>
+  <path id="1" class="fil6" d="M83128856 27741232c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="2" class="fil6" d="M84078091 27739343c0,69329 -7559,131218 -22677,186611 -14764,55275 -36850,102400 -66141,141139 -29055,38976 -65078,68975 -107360,89526 -42283,20787 -91061,31062 -145745,31062 -25393,0 -48897,-2362 -70392,-7559 -21496,-4842 -42637,-12992 -63188,-24212 -20551,-11456 -41102,-25393 -62007,-42519 -20551,-17244 -42283,-37795 -65314,-62007l0 97912c0,4606 -1181,8740 -3543,12401 -2480,3661 -6142,6378 -11575,8504 -5433,2126 -12047,3543 -19960,4842 -8149,1181 -18425,1772 -30826,1772 -11693,0 -21968,-591 -30236,-1772 -8386,-1299 -15118,-2716 -20551,-4842 -5079,-2126 -8740,-4842 -10512,-8504 -1890,-3661 -2716,-7559 -2716,-12401l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c23504,-24212 46180,-44763 68621,-61416 22086,-16299 43464,-29881 64605,-40157 21496,-10275 42637,-17834 63778,-22677 21259,-4606 43582,-6968 67204,-6968 57755,0 107006,11456 148108,34488 40747,22913 74054,54094 99683,92479 25748,38621 44527,83975 56338,136061 11693,51968 17480,107006 17480,164643zm-152359 17008c0,-40865 -3071,-80432 -9331,-118817 -6142,-38739 -17008,-72518 -32362,-102164 -15472,-29645 -35669,-53503 -61062,-71337 -25393,-18189 -57164,-27283 -94959,-27283 -18779,0 -37440,2716 -55865,7913 -18189,5433 -36968,14527 -55629,26929 -19134,12401 -38739,28346 -58936,48070 -20669,19370 -42401,44054 -65314,73699l0 318065c40157,49251 78542,86691 115155,112439 36614,25748 74999,38739 114565,38739 36614,0 67676,-8858 93660,-26692 25984,-17834 47243,-41338 63542,-70747 16299,-28936 28110,-61889 35314,-98148 7559,-36614 11220,-73463 11220,-110667z"/>
+  <path id="3" class="fil6" d="M85038192 27741232c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="4" class="fil6" d="M85649992 28090006c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path class="fil6" d="M82041553 29256441c0,11220 -709,20905 -1890,29055 -1181,8149 -3307,14764 -6024,19960 -3071,4842 -6378,8740 -10275,10866 -3898,2362 -7913,3661 -12047,3661l-419638 0 0 389875 396607 0c4252,0 8149,945 12047,3071 4016,2126 7323,5433 10275,10275 2716,4842 4842,11220 6142,19015 1181,8149 1772,18189 1772,30590 0,11456 -591,21141 -1772,29055 -1299,7795 -3425,14409 -6142,19606 -2953,4842 -6260,8740 -10275,11456 -3898,2716 -7795,3898 -12047,3898l-396607 0 0 477629c0,4252 -1181,8268 -3661,12165 -2362,3661 -6260,6614 -12401,8740 -5669,2126 -13582,3898 -22913,5433 -9449,1535 -21732,2126 -37204,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-5079 -12401,-8740 -2480,-3898 -3661,-7913 -3661,-12165l0 -1061319c0,-22913 6024,-38976 18189,-48306 12047,-9094 25039,-13701 38621,-13701l515188 0c4134,0 8149,1299 12047,3661 3898,2126 7205,6024 10275,11456 2716,5197 4842,12165 6024,20551 1181,8504 1890,18543 1890,29645z"/>
+  <path id="1" class="fil6" d="M82938466 30315399c0,4842 -945,8740 -3071,12165 -2126,2953 -5669,6024 -11102,8386 -5197,2126 -12165,3898 -20905,5197 -8504,1181 -19015,1772 -31417,1772 -13346,0 -24448,-591 -32952,-1772 -8740,-1299 -15472,-3071 -20551,-5197 -4842,-2362 -8504,-5433 -10039,-8386 -1772,-3425 -2716,-7323 -2716,-12165l0 -105471c-45590,50196 -90353,86455 -134761,109368 -44172,23031 -89172,34488 -134525,34488 -53267,0 -97912,-8740 -134289,-26574 -36259,-17480 -65904,-41692 -88227,-72282 -22322,-30236 -38385,-65550 -48306,-106061 -9685,-40511 -14527,-89762 -14527,-147517l0 -483416c0,-4842 827,-8740 2953,-12047 2126,-3071 6024,-6024 12165,-8740 5669,-2716 13582,-4606 22913,-5433 9449,-945 21141,-1299 35432,-1299 14173,0 25984,354 35314,1299 9331,827 16889,2716 22677,5433 5433,2716 9331,5669 11811,8740 2362,3307 3661,7205 3661,12047l0 464401c0,46535 3307,83975 10275,112085 6614,28110 16889,51968 30826,71692 13819,19960 31653,35314 52912,46180 21141,10984 45944,16417 74290,16417 36614,0 73227,-12992 109486,-39094 36614,-25984 74999,-64015 115746,-114211l0 -557470c0,-4842 945,-8740 3071,-12047 2126,-3071 6024,-6024 12047,-8740 5787,-2716 13346,-4606 22322,-5433 9449,-945 21259,-1299 36023,-1299 14173,0 25984,354 35432,1299 9331,827 16889,2716 21968,5433 5433,2716 9449,5669 12165,8740 2716,3307 3898,7205 3898,12047l0 797466z"/>
+  <path id="2" class="fil6" d="M83895024 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="3" class="fil6" d="M84735481 30192684c0,9921 -354,18779 -945,25984 -591,7559 -1535,13582 -3071,18779 -1417,5079 -3307,9331 -5433,13228 -2126,4016 -6614,9685 -14173,17008 -7205,7559 -19960,16653 -37440,27755 -17834,10866 -37795,20905 -59881,29409 -22441,8740 -46298,15708 -72282,20787 -25984,5433 -52912,8149 -80668,8149 -57519,0 -108305,-9331 -152359,-28346 -44527,-18779 -81613,-46298 -111258,-82558 -29999,-36259 -52676,-81022 -68385,-133580 -15708,-52912 -23504,-113738 -23504,-182949 0,-78306 9685,-145745 28700,-202201 19370,-56219 45590,-102518 78896,-138423 33543,-36023 72873,-62597 117872,-80195 45354,-17244 94368,-25984 146926,-25984 25393,0 49842,2480 73818,7323 24094,4488 45944,10866 66141,18425 19960,7795 38149,16535 53503,26811 15708,10039 27165,18779 34133,25748 7323,7205 12165,12992 14882,16889 2362,4252 4842,9094 6614,14882 1535,5433 2716,11811 3307,19015 591,6968 945,16063 945,26574 0,23031 -2716,38976 -7913,48424 -5433,9094 -11693,13582 -19606,13582 -8740,0 -19015,-4842 -30590,-14764 -11456,-9685 -25984,-20551 -43818,-32362 -17834,-11811 -39212,-22677 -64369,-32362 -25039,-10039 -54684,-14882 -88817,-14882 -70511,0 -124604,26929 -162044,81022 -37558,53857 -56219,132163 -56219,234681 0,51023 4842,96022 14527,134761 9921,38385 24094,70747 43228,96731 18661,25748 41928,44999 69448,57755 27519,12638 58936,19015 94368,19015 33779,0 63424,-5433 88817,-15945 25393,-10630 47243,-22441 65904,-35432 18779,-12638 34488,-24212 47243,-34488 12638,-10512 22322,-15708 29527,-15708 4016,0 7559,1181 10630,3661 3071,2362 5433,6378 7559,11811 2126,5669 3661,12638 4488,21378 945,8504 1299,18779 1299,30590z"/>
+  <path id="4" class="fil6" d="M85604993 29495846c17598,0 29645,4016 36377,12165 6260,7795 9567,19370 9567,34724l0 772663c0,4842 -1181,8740 -3543,12165 -2480,2953 -6378,6024 -11811,8386 -5787,2126 -13346,3898 -22677,5197 -9331,1181 -20905,1772 -34488,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -698019 -411843 0 0 443496c0,54684 8268,96140 24566,123895 15945,28110 45354,42046 87046,42046 13582,0 25629,-1181 36614,-3898 10512,-2716 19960,-5433 28110,-8504 8386,-2953 15354,-5669 21378,-8386 5787,-2716 11220,-4016 16063,-4016 2716,0 5787,591 8149,2126 2716,1535 4842,4252 6378,8504 1535,4252 2716,9685 3898,16889 1181,6968 1890,16063 1890,26574 0,17244 -1299,30590 -3661,40275 -2480,9921 -5787,17244 -10630,22322 -4842,5197 -11811,9685 -21141,13582 -9685,4252 -20551,7559 -32598,10394 -12165,2716 -24803,4724 -38385,6614 -13701,1772 -27519,2716 -41220,2716 -41338,0 -76770,-5433 -106297,-16299 -29645,-10866 -53857,-27519 -72873,-49605 -18779,-22086 -32716,-50196 -41102,-84093 -8858,-33779 -12992,-73699 -12992,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 512707 0zm62361 -246610c0,34488 -6732,57755 -19724,70156 -12992,12401 -36850,18661 -71928,18661 -34488,0 -57991,-6024 -70747,-18071 -12638,-12165 -19015,-35078 -19015,-68975 0,-34488 6614,-57755 19606,-70156 12992,-12401 36968,-18661 71928,-18661 34488,0 58109,6024 70747,18071 12756,12165 19134,35078 19134,68975z"/>
+  <path id="5" class="fil6" d="M86643399 29907335c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="6" class="fil6" d="M87545509 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path id="7" class="fil6" d="M89004499 30176031c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="8" class="fil6" d="M89808224 30316344c0,6968 -2480,12401 -6968,15945 -4842,3661 -11220,6142 -19606,7913 -8149,1772 -20315,2716 -36259,2716 -15118,0 -27519,-945 -36614,-2716 -9094,-1772 -15708,-4252 -19960,-7913 -4252,-3543 -6378,-8740 -6378,-15945l0 -79841c-34724,37204 -73463,66259 -116336,86809 -42991,20196 -88345,30472 -136061,30472 -42046,0 -80077,-5433 -113974,-16299 -33897,-10866 -62834,-26929 -86809,-47479 -23858,-20551 -42519,-46180 -55865,-76180 -13346,-30236 -19960,-64369 -19960,-102754 0,-44999 9094,-84093 27519,-117045 18189,-33188 44409,-60708 78896,-82439 34133,-21850 76180,-38385 125785,-49369 49605,-10866 105471,-16299 167477,-16299l109959 0 0 -62243c0,-30590 -3307,-57755 -9685,-81613 -6614,-23622 -16889,-43228 -31417,-58936 -14527,-15708 -33188,-27519 -56219,-35432 -22913,-8149 -51377,-12047 -84920,-12047 -36023,0 -68266,4252 -96731,12992 -28700,8740 -53857,18189 -75235,28700 -21496,10630 -39684,19960 -54212,28700 -14173,8858 -25039,12992 -32007,12992 -4842,0 -9094,-1181 -12401,-3543 -3543,-2126 -6614,-5787 -9331,-10630 -2716,-4488 -4488,-10512 -5787,-17834 -1181,-7559 -1772,-15354 -1772,-24448 0,-14527 945,-26338 3071,-34842 2008,-8386 7205,-16535 15000,-24094 7913,-7559 21850,-16653 41220,-27283 19252,-10275 41928,-19960 67322,-28700 25157,-8386 52912,-15708 83148,-21496 29999,-5669 60471,-8386 91061,-8386 57046,0 105707,6378 145982,19370 40157,12992 72518,32244 97321,57401 24803,25039 42637,56219 53857,93424 11102,37204 16889,80668 16889,130273l0 538101zm-145155 -365190l-124840 0c-39921,0 -74644,3307 -104289,10275 -29291,6614 -53739,16889 -73463,30236 -19252,13346 -33543,29055 -42873,47716 -9094,18779 -13582,40275 -13582,64487 0,41338 12992,74290 39212,98738 26338,24566 62952,36968 110431,36968 38031,0 73699,-9685 106415,-29409 32598,-19252 67085,-49251 102990,-89408l0 -169603z"/>
+  <path id="9" class="fil6" d="M90223611 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="10" class="fil6" d="M90621753 30315399c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 1182853z"/>
+  <path id="11" class="fil6" d="M91373393 30097725c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path class="fil10" d="M43541971 97625446l0 6989874 -460267 0 0 -6989874 460267 0zm-920535 0c0,-381371 309089,-690460 690460,-690460 381253,0 690460,309089 690460,690460 0,381371 -309207,690460 -690460,690460 -381371,0 -690460,-309089 -690460,-690460zm1380920 6989874c0,381253 -309207,690460 -690460,690460 -381371,0 -690460,-309207 -690460,-690460 0,-381253 309089,-690460 690460,-690460 381253,0 690460,309207 690460,690460z"/>
+  <path class="fil10" d="M91305363 97625446l0 8269221 -460385 0 0 -8269221 460385 0zm-920653 0c0,-381371 309207,-690460 690460,-690460 381371,0 690460,309089 690460,690460 0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460zm1380920 8269221c0,381371 -309089,690460 -690460,690460 -381253,0 -690460,-309089 -690460,-690460 0,-381253 309207,-690460 690460,-690460 381371,0 690460,309207 690460,690460z"/>
+  <path class="fil6" d="M92881279 100619250c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="1" class="fil6" d="M93471347 101429708l-106179 293499c-3543,9449 -12638,16653 -27165,21850 -14173,5079 -36259,7559 -65904,7559 -15472,0 -27874,-709 -37204,-2126 -9331,-1535 -16653,-4252 -21732,-7559 -4842,-3661 -7559,-8504 -8149,-14291 -591,-6024 827,-12992 4252,-21378l109959 -277554c-5433,-2362 -10512,-6378 -15118,-11456 -4842,-5433 -8149,-10866 -9685,-17008l-284404 -761797c-4842,-12283 -6968,-22322 -6968,-29291 0,-7205 2126,-12638 6968,-16889 4842,-4252 12401,-6968 22913,-8504 10630,-1535 24803,-2126 42637,-2126 17598,0 31417,354 41692,1299 10039,827 17834,2716 23976,5079 5669,2126 9921,5787 12638,9921 2716,4606 5433,10630 8504,18189l227594 639674 2716 0 219445 -642981c3661,-11456 7913,-18779 12992,-21732 4842,-3425 12401,-5787 22441,-7323 10275,-1535 24803,-2126 43464,-2126 16653,0 30236,591 40865,2126 10512,1535 18425,4252 23267,8504 5079,4252 7559,9685 7559,16889 0,6968 -1772,16063 -5197,26574l-286176 792978z"/>
+  <path id="2" class="fil6" d="M94334009 101348331c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="3" class="fil6" d="M95195726 101407622c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -1182853c0,-4842 827,-9094 2953,-12401 2126,-3661 6142,-6614 11811,-9094 5433,-2126 12992,-3898 22677,-5079 9331,-1299 21141,-1890 35669,-1890 14882,0 26929,591 36259,1890 9685,1181 17008,2953 22441,5079 5433,2480 9094,5433 11456,9094 2362,3307 3661,7559 3661,12401l0 476448c41692,-44527 83975,-77479 126376,-98856 42283,-21496 84920,-32362 127793,-32362 53267,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89408 14527,146572l0 485779z"/>
+  <path id="4" class="fil6" d="M96202952 100999558c0,64959 -8386,124840 -25629,179524 -16889,54448 -42637,101573 -76534,141139 -33779,39684 -76416,70511 -127202,92597 -51141,22086 -110313,33188 -177516,33188 -65550,0 -122714,-9685 -171375,-29291 -48661,-19370 -89172,-47716 -121533,-84920 -32362,-37204 -56456,-82558 -72518,-135470 -16063,-53149 -23858,-113384 -23858,-180824 0,-64959 8386,-124840 25039,-179170 16889,-54802 42283,-101927 76180,-141494 33897,-39566 76180,-70156 126966,-92242 50786,-21732 110077,-32598 177753,-32598 65668,0 122714,9685 171375,29291 48661,19370 89172,47716 121533,84920 32362,37204 56810,82203 73227,135470 15945,53149 24094,113029 24094,179879zm-152359 9331c0,-43228 -3898,-83975 -12047,-122360 -7795,-38385 -21141,-72046 -39566,-100982 -18189,-29055 -43228,-52086 -74644,-68621 -31181,-17008 -70511,-25393 -117399,-25393 -43228,0 -80314,7559 -111494,22913 -31181,15472 -56574,37204 -76770,65314 -20315,28110 -35078,61416 -44763,99801 -9921,38385 -14764,80432 -14764,125667 0,43936 3898,85038 12047,123423 7913,38385 21141,71928 39921,100628 18779,28464 43818,51377 74999,68030 31417,16889 70747,25393 117518,25393 42637,0 79487,-7559 111022,-23031 31417,-15354 57046,-36850 77361,-64605 20196,-27874 35078,-61062 44409,-99447 9331,-38385 14173,-80786 14173,-126730z"/>
+  <path id="5" class="fil6" d="M97086873 101407622c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21141,1772 -35314,1772 -15118,0 -27165,-591 -36614,-1772 -9685,-1299 -16889,-3071 -22322,-5197 -5433,-2362 -9094,-5433 -11456,-8386 -2480,-3425 -3661,-7323 -3661,-12165l0 -466999c0,-45354 -3661,-82203 -10630,-109722 -6968,-27874 -17244,-51731 -30826,-72046 -13582,-19842 -30826,-35314 -52322,-45944 -21378,-10512 -46180,-15945 -74290,-15945 -36614,0 -72873,12992 -109132,38976 -36614,25984 -74644,64133 -114565,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 89172,-87282 133935,-110549 44527,-23267 89172,-35078 134525,-35078 52912,0 97675,9094 133935,26929 36259,18071 65668,42283 87991,72164 22322,30236 38385,65668 48070,106179 9685,40511 14527,89172 14527,145627l0 486724z"/>
+  <path class="fil6" d="M98675899 101375851c4606,12992 7323,23267 7559,31535 354,7795 -2126,13819 -6614,18071 -4842,3898 -12638,6614 -23622,7913 -10866,1181 -25393,1772 -43818,1772 -18071,0 -32952,-236 -43818,-1181 -10866,-945 -19015,-2480 -24803,-4606 -5669,-2008 -9685,-4842 -12401,-8386 -2716,-3661 -5079,-7913 -7559,-13346l-98148 -278971 -476448 0 -94014 275310c-1890,5551 -4016,10039 -6968,13937 -3071,3898 -7323,6968 -12992,9685 -5433,2716 -13582,4488 -23858,5787 -10275,1181 -23622,1772 -40275,1772 -17244,0 -31062,-591 -42046,-2126 -10866,-1535 -18661,-4252 -22913,-8504 -4488,-4134 -6614,-10275 -6378,-18071 354,-8149 2716,-18425 7559,-31417l384206 -1064981c2480,-6732 5787,-12165 9449,-16063 3898,-4252 9331,-7559 16889,-9685 7205,-2362 16653,-4252 28464,-5079 11456,-945 25984,-1299 43818,-1299 18661,0 34369,354 46771,1299 12401,827 22441,2716 29999,5079 7795,2126 13582,5787 17834,10039 4252,4488 7559,9921 9685,16299l384442 1065217zm-493338 -940141l-827 0 -197477 571407 398497 0 -200193 -571407z"/>
+  <path id="1" class="fil6" d="M99641905 100619250c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="2" class="fil6" d="M100116464 101406677c0,4842 -1181,9094 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -22086,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1100295c0,-4842 1181,-9094 3898,-12401 2716,-3661 7323,-6378 13346,-8504 6378,-2126 14173,-3898 23858,-5433 9685,-1535 21496,-2126 35078,-2126 14764,0 26929,591 36850,2126 9685,1535 17598,3307 23267,5433 6142,2126 10039,4842 12401,8504 2480,3307 3661,7559 3661,12401l0 1100295z"/>
+  <path class="fil6" d="M61998017 100704642c-2362,6614 -5669,12047 -9921,15945 -4016,4252 -9685,7559 -17244,9685 -7323,2480 -16653,4252 -28464,5197 -11456,945 -25984,1181 -43818,1181 -12992,0 -24212,0 -33897,-236 -9921,-354 -18071,-1299 -25393,-2480 -6850,-1181 -12992,-2362 -18071,-3898 -5197,-1535 -9449,-3307 -12756,-5787 -3543,-2362 -6260,-5079 -8386,-8504 -2126,-3307 -4016,-7205 -5787,-11693l-374875 -1065335c-4488,-12992 -6968,-23267 -7205,-31417 -354,-7913 2126,-13937 7205,-18189 5433,-3898 13937,-6614 25748,-7795 11811,-1299 27755,-1890 48070,-1890 16299,0 29645,354 39330,1299 9567,827 17126,2716 22559,5079 5197,2126 9094,5433 11811,9094 2716,3898 5197,8740 7559,14764l328577 964943 1890 0 319837 -963054c1535,-6732 3543,-12165 6024,-16063 2362,-4252 6614,-7559 12401,-9685 6024,-2362 14173,-4252 24803,-5079 10512,-945 24803,-1299 42637,-1299 18071,0 32598,591 43228,2126 10512,1535 17834,4252 21732,8504 3898,4252 5433,10275 4488,18071 -827,8268 -3543,18543 -8386,31535l-373694 1064981z"/>
+  <path id="1" class="fil6" d="M63338780 99920759c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="2" class="fil6" d="M64346596 99920759c0,57401 -9449,109132 -28464,155430 -18779,45944 -45708,85156 -81022,117872 -35078,32362 -77951,57401 -129092,75235 -51023,17834 -111848,26574 -182831,26574l-130037 0 0 412315c0,4842 -1181,9094 -3898,12401 -2716,3661 -6968,6378 -12401,8504 -5787,2126 -13346,3898 -23031,5433 -9921,1535 -22086,2126 -36850,2126 -14764,0 -26929,-591 -36850,-2126 -9685,-1535 -17598,-3307 -23267,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1057658c0,-23622 6378,-40511 18779,-50550 12401,-9921 25984,-15118 41338,-15118l245192 0c24803,0 48661,945 71337,3071 22677,2126 49605,6614 80432,13346 31181,6850 62597,19606 94959,38031 32007,18779 59172,41692 81849,68975 22441,27165 39684,58582 51731,94250 12047,35669 18189,75353 18189,118226zm-159682 12047c0,-46771 -8740,-85865 -25984,-117281 -17480,-31062 -38976,-54684 -64959,-70156 -25748,-15118 -52322,-25039 -79487,-28936 -27519,-4252 -54448,-6378 -80432,-6378l-140903 0 0 460740 137596 0c45944,0 84329,-6142 114565,-17834 30472,-11811 55865,-28110 76770,-49369 20551,-20787 36259,-45944 46771,-75235 10630,-29291 16063,-61062 16063,-95549z"/>
+  <path id="3" class="fil6" d="M64832966 100022332c0,19015 -1181,35078 -3898,48070 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29055 -4016,-48070 0,-19960 1299,-36614 4016,-49842 2716,-13346 7559,-24212 14764,-32125 6968,-8149 16653,-13582 28464,-16889 11811,-3307 27165,-4842 46180,-4842 18543,0 33543,1535 45354,4842 11811,3307 21496,8740 29055,16889 7205,7913 12401,18779 15118,32125 2716,13228 3898,29881 3898,49842zm0 613926c0,19724 -1181,36023 -3898,49015 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29291 -4016,-49015 0,-19252 1299,-35669 4016,-48897 2716,-13346 7559,-23976 14764,-31771 6968,-7559 16653,-13346 28464,-16653 11811,-3661 27165,-5433 46180,-5433 18543,0 33543,1772 45354,5433 11811,3307 21496,9094 29055,16653 7205,7795 12401,18425 15118,31771 2716,13228 3898,29645 3898,48897z"/>
+  <path id="4" class="fil6" d="M65972591 100704642c-2362,6614 -5669,12047 -9921,15945 -4016,4252 -9685,7559 -17244,9685 -7323,2480 -16653,4252 -28464,5197 -11456,945 -25984,1181 -43818,1181 -12992,0 -24212,0 -33897,-236 -9921,-354 -18071,-1299 -25393,-2480 -6850,-1181 -12992,-2362 -18071,-3898 -5197,-1535 -9449,-3307 -12756,-5787 -3543,-2362 -6260,-5079 -8386,-8504 -2126,-3307 -4016,-7205 -5787,-11693l-374875 -1065335c-4488,-12992 -6968,-23267 -7205,-31417 -354,-7913 2126,-13937 7205,-18189 5433,-3898 13937,-6614 25748,-7795 11811,-1299 27755,-1890 48070,-1890 16299,0 29645,354 39330,1299 9567,827 17126,2716 22559,5079 5197,2126 9094,5433 11811,9094 2716,3898 5197,8740 7559,14764l328577 964943 1890 0 319837 -963054c1535,-6732 3543,-12165 6024,-16063 2362,-4252 6614,-7559 12401,-9685 6024,-2362 14173,-4252 24803,-5079 10512,-945 24803,-1299 42637,-1299 18071,0 32598,591 43228,2126 10512,1535 17834,4252 21732,8504 3898,4252 5433,10275 4488,18071 -827,8268 -3543,18543 -8386,31535l-373694 1064981z"/>
+  <path id="5" class="fil6" d="M67382447 100677359c4606,12992 7323,23267 7559,31535 354,7795 -2126,13819 -6614,18071 -4842,3898 -12638,6614 -23622,7913 -10866,1181 -25393,1772 -43818,1772 -18071,0 -32952,-236 -43818,-1181 -10866,-945 -19015,-2480 -24803,-4606 -5669,-2008 -9685,-4842 -12401,-8386 -2716,-3661 -5079,-7913 -7559,-13346l-98148 -278971 -476448 0 -94014 275310c-1890,5551 -4016,10039 -6968,13937 -3071,3898 -7323,6968 -12992,9685 -5433,2716 -13582,4488 -23858,5787 -10275,1181 -23622,1772 -40275,1772 -17244,0 -31062,-591 -42046,-2126 -10866,-1535 -18661,-4252 -22913,-8504 -4488,-4134 -6614,-10275 -6378,-18071 354,-8149 2716,-18425 7559,-31417l384206 -1064981c2480,-6732 5787,-12165 9449,-16063 3898,-4252 9331,-7559 16889,-9685 7205,-2362 16653,-4252 28464,-5079 11456,-945 25984,-1299 43818,-1299 18661,0 34369,354 46771,1299 12401,827 22441,2716 29999,5079 7795,2126 13582,5787 17834,10039 4252,4488 7559,9921 9685,16299l384442 1065217zm-493338 -940141l-827 0 -197477 571407 398497 0 -200193 -571407z"/>
+  <path id="6" class="fil6" d="M68366052 99650173c0,11220 -591,20905 -1772,29055 -1181,8149 -3071,14764 -5787,19960 -2716,4842 -5669,8740 -9685,10866 -3898,2362 -8149,3661 -12638,3661l-321963 0 0 994470c0,4842 -1181,8858 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -21968,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -9921,-1535 -18189,-3307 -23858,-5433 -6024,-2126 -10039,-4842 -12401,-8504 -2480,-3543 -3661,-7559 -3661,-12401l0 -994470 -321963 0c-4488,0 -8740,-1299 -12638,-3661 -4016,-2126 -6968,-6024 -9449,-10866 -2126,-5197 -4134,-11811 -5669,-19960 -1535,-8149 -2126,-17834 -2126,-29055 0,-11102 591,-21141 2126,-29645 1535,-8386 3543,-15354 5669,-20551 2480,-5433 5433,-9331 9449,-11456 3898,-2362 8149,-3661 12638,-3661l796285 0c4488,0 8740,1299 12638,3661 4016,2126 6968,6024 9685,11456 2716,5197 4606,12165 5787,20551 1181,8504 1772,18543 1772,29645z"/>
+  <path class="fil6" d="M62217816 101816276c0,11220 -591,20905 -1772,29055 -1181,8149 -3071,14764 -5787,19960 -2716,4842 -5669,8740 -9685,10866 -3898,2362 -8149,3661 -12638,3661l-321963 0 0 994470c0,4842 -1181,8858 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -21968,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -9921,-1535 -18189,-3307 -23858,-5433 -6024,-2126 -10039,-4842 -12401,-8504 -2480,-3543 -3661,-7559 -3661,-12401l0 -994470 -321963 0c-4488,0 -8740,-1299 -12638,-3661 -4016,-2126 -6968,-6024 -9449,-10866 -2126,-5197 -4134,-11811 -5669,-19960 -1535,-8149 -2126,-17834 -2126,-29055 0,-11102 591,-21141 2126,-29645 1535,-8386 3543,-15354 5669,-20551 2480,-5433 5433,-9331 9449,-11456 3898,-2362 8149,-3661 12638,-3661l796285 0c4488,0 8740,1299 12638,3661 4016,2126 6968,6024 9685,11456 2716,5197 4606,12165 5787,20551 1181,8504 1772,18543 1772,29645z"/>
+  <path id="1" class="fil6" d="M63047644 102441776c0,22913 -5669,39330 -17244,49251 -11456,9685 -24685,14527 -39566,14527l-523573 0c0,44409 4488,84329 13346,119644 8740,35669 23504,66259 44409,91652 20551,25393 47479,44763 80432,58345 33188,13582 73699,20551 121533,20551 37795,0 71574,-3071 100982,-9331 29527,-6142 55275,-12992 76770,-20551 21378,-7559 39212,-14527 53149,-20551 13937,-6378 24212,-9449 31417,-9449 4252,0 7913,945 11220,3071 3071,2126 5787,5079 7205,9331 1890,3898 3425,9685 4252,16889 945,7559 1299,16417 1299,26929 0,7559 -354,14291 -945,19960 -591,5433 -1181,10630 -2126,14882 -945,4488 -2480,8386 -4488,12047 -2126,3307 -4606,6614 -7913,9921 -3307,3425 -12992,8504 -28700,15826 -16063,7559 -36614,14409 -62007,21732 -25393,6968 -54684,13228 -87991,18779 -33188,5669 -68621,8386 -106415,8386 -65550,0 -122714,-9094 -171965,-27519 -49251,-18071 -90707,-45354 -124250,-81258 -33543,-36259 -58936,-81376 -75825,-135706 -17244,-54212 -25748,-117399 -25748,-189564 0,-68385 8740,-130037 26574,-184721 17598,-54448 43228,-100982 76534,-139013 33188,-38149 73699,-67204 120943,-87754 47125,-20196 100038,-30472 158383,-30472 62597,0 115746,9921 159564,30236 44172,19960 80195,47125 108541,81022 28110,33779 49015,73699 62243,119644 13346,45708 19960,94605 19960,146690l0 26574zm-146926 -43228c1890,-76770 -15118,-137242 -51023,-181060 -36023,-43818 -88935,-65668 -159328,-65668 -36259,0 -68030,6732 -95195,20315 -27283,13582 -49960,31771 -68385,54330 -18425,22441 -32598,48779 -42637,78306 -9921,29999 -15708,61062 -16889,93778l433457 0z"/>
+  <path id="2" class="fil6" d="M63772237 102657560c0,40865 -7559,77125 -22677,109132 -15118,31771 -36259,58700 -64015,80432 -27874,21732 -60826,38385 -99211,49605 -38385,11220 -80668,16889 -126612,16889 -28464,0 -55393,-2126 -81022,-6614 -25748,-4252 -48661,-9685 -69211,-16653 -20315,-6614 -37558,-13582 -51731,-20787 -14173,-7323 -24448,-13937 -30826,-19724 -6614,-5669 -11456,-14173 -14173,-24803 -3071,-10512 -4606,-25039 -4606,-43464 0,-11220 591,-20551 1890,-28110 1181,-7913 2716,-13937 4134,-18779 1890,-4842 4606,-8149 7559,-10275 3425,-2126 6968,-3071 11220,-3071 6378,0 16063,4016 28700,12165 12756,7795 28464,16653 46889,25984 18425,9331 40511,18071 65904,25984 25393,8149 54448,12047 87400,12047 24803,0 47125,-2716 67085,-8149 20196,-5079 37440,-12992 52322,-23504 14764,-10275 25984,-23622 34133,-39684 7795,-15945 11811,-35078 11811,-57046 0,-22441 -5787,-41456 -17244,-56574 -11456,-15472 -26574,-29055 -45354,-40865 -19015,-11693 -40157,-22322 -63778,-31417 -23622,-9094 -47834,-18661 -72873,-28700 -24803,-10275 -49251,-21496 -73109,-34133 -23976,-12756 -45117,-28110 -64133,-46535 -18779,-18425 -33897,-40275 -45354,-65668 -11456,-25393 -17244,-55629 -17244,-91298 0,-31062 6024,-61062 18189,-89762 12047,-28700 30236,-53739 54330,-75235 24566,-21496 54802,-38976 91061,-51968 36259,-12992 78542,-19370 127202,-19370 21259,0 42401,1772 63896,5433 21141,3661 40157,8504 57401,13937 17244,5433 31771,11456 43818,17834 12047,6614 21496,12047 27519,17126 6378,4842 10275,9094 12401,12401 2126,3661 3661,7559 4488,12165 945,4252 1890,9685 2716,15945 945,6732 1181,14527 1181,23976 0,9921 -236,18661 -1181,25984 -827,7205 -2362,13228 -4488,17834 -2126,4842 -4606,8149 -7559,10275 -3071,2126 -6378,2953 -9685,2953 -5433,0 -12992,-3307 -23267,-9921 -10039,-6378 -23031,-13346 -38976,-20905 -16063,-7559 -34842,-14527 -56219,-20787 -21496,-6732 -46298,-10039 -74054,-10039 -24803,0 -46889,2716 -65668,8504 -19015,5433 -34488,13346 -46535,23622 -12047,10275 -21496,22322 -27519,36495 -6378,13937 -9331,29409 -9331,45708 0,22913 6024,42283 17834,57991 11811,15708 26929,29291 45944,41102 18661,11811 40511,22441 64605,32125 24212,9331 48779,19015 73818,28936 25039,10275 49842,21496 74408,33897 24448,12401 46180,27519 64959,44999 19015,17834 34133,39094 45590,63778 11575,24803 17244,54448 17244,88581z"/>
+  <path id="3" class="fil6" d="M64374116 102815943c0,17244 -1181,30944 -3661,40865 -2008,9921 -5669,17480 -10512,22086 -4606,4842 -11811,9331 -21141,13228 -9449,4252 -20315,7559 -32362,10394 -12165,2716 -24803,4724 -38385,6614 -13582,1772 -26929,2716 -40511,2716 -41456,0 -76770,-5433 -106179,-16299 -29291,-10866 -53503,-27519 -72518,-49605 -18779,-22086 -32362,-50196 -41102,-84093 -8504,-33779 -12638,-73699 -12638,-119644l0 -464992 -112203 0c-8740,0 -16063,-4842 -21496,-14173 -5079,-9331 -7795,-24803 -7795,-46298 0,-11102 591,-20551 2126,-28110 1417,-7795 3543,-14173 5669,-19252 2480,-4842 5787,-8504 9449,-10630 3898,-2126 8149,-3071 12992,-3071l111258 0 0 -189209c0,-4252 827,-8149 2953,-11456 2126,-3661 6024,-6614 11811,-9449 5433,-2716 12992,-4488 22677,-5669 9331,-1181 21141,-1772 35669,-1772 14764,0 26929,591 36259,1772 9685,1181 16889,2953 22322,5669 5551,2835 9094,5787 11575,9449 2362,3307 3543,7205 3543,11456l0 189209 203146 0c4842,0 8858,945 12401,3071 3425,2126 6732,5787 9094,10630 2716,5079 4606,11456 5787,19252 1181,7559 1772,17008 1772,28110 0,21496 -2716,36968 -7795,46298 -5433,9331 -12401,14173 -21259,14173l-203146 0 0 443496c0,54684 8268,96140 24212,123895 16063,28110 45117,42046 86809,42046 13228,0 25393,-1181 35905,-3898 10630,-2716 19960,-5433 28110,-8504 8268,-2953 15118,-5669 21259,-8386 5669,-2716 11102,-4016 15708,-4016 2953,0 5669,591 8386,2126 2480,1535 4606,4252 6142,8504 1417,4252 2716,9685 3898,16889 1181,6968 1772,16063 1772,26574z"/>
+  <path id="4" class="fil6" d="M65282958 102463508c0,69802 -7559,132399 -22677,188028 -14764,55393 -36850,102518 -66141,141139 -29055,38739 -65314,68621 -108305,89526 -42873,20905 -92124,31417 -147517,31417 -23504,0 -45354,-2362 -65314,-6968 -20196,-4842 -39566,-12047 -58936,-22322 -19015,-10039 -38031,-22677 -56810,-38149 -19015,-15118 -38976,-33188 -60117,-53739l0 399324c0,4842 -1299,8740 -3661,12401 -2362,3661 -6024,6614 -11456,9094 -5433,2126 -12756,3898 -22441,5079 -9331,1181 -21378,1890 -36259,1890 -14527,0 -26338,-709 -35669,-1890 -9685,-1181 -17244,-2953 -22677,-5079 -5669,-2480 -9685,-5433 -11811,-9094 -2126,-3661 -2953,-7559 -2953,-12401l0 -1113996c0,-5433 827,-9685 2716,-12992 1772,-2953 5433,-6024 10512,-8149 5433,-2362 12165,-4252 20551,-5079 8268,-945 18543,-1299 30236,-1299 12401,0 22677,354 30826,1299 7913,827 14527,2716 19960,4724 5433,2480 9094,5551 11220,8504 2126,3307 3071,7559 3071,12992l0 106770c24094,-24803 47479,-46298 69802,-64723 22322,-18189 44999,-33306 67676,-45354 22677,-12047 45944,-21496 69802,-27519 23976,-6378 49015,-9331 75589,-9331 57755,0 106770,11102 147517,33543 40511,22677 73818,53149 99447,92242 25748,38976 44527,84329 56338,135942 11693,51731 17480,106415 17480,164170zm-152359 16889c0,-40747 -3071,-80314 -9331,-118462 -6142,-38031 -17008,-71928 -31771,-101573 -15118,-29645 -35432,-53149 -60826,-70983 -25393,-17834 -57046,-26692 -94841,-26692 -19015,0 -37558,2716 -55983,8504 -18071,5787 -36850,14527 -55865,26574 -18779,12165 -38739,28110 -59290,48070 -20551,19960 -42637,44527 -65550,73463l0 317120c40157,49251 78306,86809 114211,113029 36259,26102 74054,39094 113738,39094 36495,0 67912,-8858 94250,-26692 26338,-17834 47479,-41338 63778,-70983 16299,-29645 28110,-62597 36023,-99447 7559,-36614 11456,-73818 11456,-111022z"/>
+  <path id="5" class="fil6" d="M66685728 102875233c0,4842 -1299,8740 -3661,12165 -2480,2953 -6024,6024 -11456,8386 -5197,2126 -12756,3898 -22086,5197 -9449,1181 -21141,1772 -35432,1772 -14764,0 -26929,-591 -36259,-1772 -9331,-1299 -16889,-3071 -22677,-5197 -5433,-2362 -9331,-5433 -11811,-8386 -2362,-3425 -3543,-7323 -3543,-12165l0 -484598c0,-33779 -3071,-64605 -8858,-92124 -6024,-27874 -15354,-51731 -28346,-72046 -12992,-19842 -29291,-35314 -49251,-45944 -19960,-10512 -43582,-15945 -70747,-15945 -33543,0 -67440,12992 -100982,38976 -33897,25984 -71337,64133 -111848,114211l0 557470c0,4842 -1181,8740 -3661,12165 -2362,2953 -6378,6024 -12047,8386 -5433,2126 -12992,3898 -22677,5197 -9449,1181 -21141,1772 -35432,1772 -13819,0 -25393,-591 -35314,-1772 -9685,-1299 -17598,-3071 -23031,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2008,-3425 -2953,-7323 -2953,-12165l0 -484598c0,-33779 -3307,-64605 -9685,-92124 -6614,-27874 -16299,-51731 -29291,-72046 -12992,-19842 -29409,-35314 -49015,-45944 -19960,-10512 -43228,-15945 -70392,-15945 -33543,0 -67794,12992 -101927,38976 -34133,25984 -71337,64133 -111494,114211l0 557470c0,4842 -1299,8740 -3661,12165 -2362,2953 -6024,6024 -11456,8386 -5433,2126 -12756,3898 -22441,5197 -9331,1181 -21378,1772 -36259,1772 -14527,0 -26338,-591 -35669,-1772 -9685,-1299 -17244,-3071 -22677,-5197 -5669,-2362 -9685,-5433 -11811,-8386 -2126,-3425 -2953,-7323 -2953,-12165l0 -797466c0,-4842 827,-8740 2716,-12047 1772,-3071 5079,-6024 10512,-8740 5433,-2716 12165,-4606 20551,-5433 8268,-945 19370,-1299 32952,-1299 12992,0 23976,354 32362,1299 8858,827 15472,2716 20315,5433 4488,2716 8149,5669 10275,8740 1772,3307 2953,7205 2953,12047l0 105471c44763,-50432 88581,-87282 130982,-110549 41928,-23267 84920,-35078 127793,-35078 33306,0 62952,3898 89172,11456 26338,7913 49605,18425 69566,32362 20315,13937 37440,30472 51377,49842 14173,19015 25984,40511 35669,64369 26574,-28936 51731,-53503 75589,-73699 23858,-20315 46889,-36259 68975,-49015 21968,-12401 43464,-21378 64369,-26929 21141,-5669 42046,-8386 63188,-8386 51377,0 94250,9094 129092,26929 34724,18071 62834,42283 84565,72164 21496,30236 36614,65668 45944,106179 9094,40511 13701,83148 13701,128147l0 504204z"/>
+  <path id="6" class="fil6" d="M67634018 102875233c0,4842 -945,8740 -3071,12401 -2126,3661 -5669,6378 -10512,8504 -5197,2126 -11811,3543 -19960,4842 -8504,1181 -18425,1772 -30236,1772 -12401,0 -22677,-591 -30826,-1772 -8504,-1299 -15118,-2716 -20551,-4842 -5197,-2126 -9094,-4842 -11456,-8504 -2126,-3661 -3425,-7795 -3425,-12401l0 -106061c-41928,45590 -85510,81022 -130509,106415 -45354,25393 -94605,38031 -148462,38031 -58345,0 -108187,-11456 -149289,-34133 -41456,-22677 -74999,-53503 -100746,-92242 -25393,-38621 -44054,-83975 -55865,-136297 -11811,-52322 -17834,-107360 -17834,-164997 0,-68621 7205,-130628 22086,-185666 14764,-55275 36495,-102518 65550,-141494 28700,-38976 64723,-68857 107596,-89762 42637,-20905 91888,-31417 148108,-31417 46653,0 89172,10275 127911,30472 38739,20551 76770,50550 114565,90116l0 -462157c0,-4252 945,-8268 3071,-12165 2126,-3898 6024,-6614 12047,-8740 5787,-2126 13346,-3898 22322,-5433 9449,-1535 20905,-2126 35078,-2126 14882,0 26929,591 36377,2126 9331,1535 16889,3307 21968,5433 5433,2126 9449,4842 12165,8740 2716,3898 3898,7913 3898,12165l0 1179191zm-146926 -561368c-39330,-49251 -77361,-86691 -114211,-112439 -36968,-25748 -75353,-38739 -115274,-38739 -37086,0 -68621,8858 -94605,26692 -25984,17834 -46771,41102 -63188,70038 -15945,28818 -27755,61771 -35078,98266 -7559,36614 -11102,73818 -11102,111612 0,40157 2953,79487 9331,117872 6024,38385 16889,72518 32007,102518 15472,29881 35669,53739 61062,71928 25157,17834 57164,26929 95313,26929 19252,0 38031,-2716 56219,-7913 17834,-5433 36259,-14173 55038,-26574 18661,-12401 38621,-28464 59172,-48424 20551,-19606 42401,-43818 65314,-72873l0 -318892z"/>
+  <path id="7" class="fil6" d="M68120741 102188434c0,19015 -1181,35078 -3898,48070 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29055 -4016,-48070 0,-19960 1299,-36614 4016,-49842 2716,-13346 7559,-24212 14764,-32125 6968,-8149 16653,-13582 28464,-16889 11811,-3307 27165,-4842 46180,-4842 18543,0 33543,1535 45354,4842 11811,3307 21496,8740 29055,16889 7205,7913 12401,18779 15118,32125 2716,13228 3898,29881 3898,49842zm0 613926c0,19724 -1181,36023 -3898,49015 -2716,12992 -7913,23622 -15118,31417 -7559,8149 -17244,13582 -29055,16889 -11811,3425 -26811,4842 -45354,4842 -19015,0 -34369,-1417 -46180,-4842 -11811,-3307 -21496,-8740 -28464,-16889 -7205,-7795 -12047,-18425 -14764,-31417 -2716,-12992 -4016,-29291 -4016,-49015 0,-19252 1299,-35669 4016,-48897 2716,-13346 7559,-23976 14764,-31771 6968,-7559 16653,-13346 28464,-16653 11811,-3661 27165,-5433 46180,-5433 18543,0 33543,1772 45354,5433 11811,3307 21496,9094 29055,16653 7205,7795 12401,18425 15118,31771 2716,13228 3898,29645 3898,48897z"/>
+  <path id="8" class="fil6" d="M69580794 102735865c0,9449 -354,17598 -945,24803 -591,6968 -1535,12992 -3071,18425 -1417,5197 -3307,10039 -5669,14291 -2480,3898 -6732,8976 -12401,14764 -6024,6024 -18425,15118 -37204,27165 -19015,12165 -42637,23976 -70747,35432 -28110,11456 -60117,21141 -96376,28936 -36614,8268 -76180,12165 -119407,12165 -74408,0 -141848,-12401 -201729,-37204 -59763,-24803 -111258,-61416 -153186,-110077 -42401,-48306 -74999,-108187 -97675,-179170 -22677,-71337 -34133,-153304 -34133,-246137 0,-95195 12401,-179879 36850,-254523 24448,-74408 58936,-137596 103345,-189209 44527,-51731 97439,-91061 159328,-118226 61652,-27165 130273,-40747 205272,-40747 33306,0 65668,2953 96731,8976 31417,6378 60471,13937 87046,23267 26692,9449 50196,20315 71101,32716 20551,12047 35078,22322 42873,30236 8149,7795 13346,13819 15708,18071 2480,4016 4252,8858 5787,14527 1535,5787 2716,12401 3661,19960 827,7913 1181,16889 1181,27519 0,12047 -591,22086 -1772,30236 -1299,8504 -3071,15472 -5551,21141 -2008,5433 -5079,9685 -8386,12401 -3071,2716 -7323,3898 -11811,3898 -8504,0 -19960,-5669 -35078,-17244 -14764,-11456 -33897,-24094 -57401,-38031 -23622,-13937 -51968,-26574 -85628,-38149 -33779,-11456 -74054,-17126 -120825,-17126 -51377,0 -98030,10275 -139722,30472 -42046,20551 -77951,50550 -107596,90116 -29645,39566 -52912,87991 -69211,145037 -16299,57164 -24448,122478 -24448,195587 0,72873 7795,137242 23504,193225 15708,55865 38385,102754 67794,140312 29291,37440 65550,65786 108187,85156 42873,19134 91298,28700 145391,28700 45590,0 85865,-5669 119998,-16889 34133,-11220 63188,-23622 87046,-37440 24212,-13937 43818,-26338 59290,-37558 15708,-11102 27755,-16889 36614,-16889 4134,0 7795,945 10866,2716 2953,1772 5079,5197 6968,10039 1772,5079 3307,12047 4134,20787 945,8740 1299,19960 1299,33543z"/>
+  <path id="9" class="fil6" d="M70466486 102830470c0,12165 -591,22086 -1772,29999 -1299,7795 -3071,14764 -5787,20551 -2716,5433 -5787,9685 -9685,12401 -3898,2716 -8386,3898 -13937,3898l-506920 0c-13582,0 -26574,-4488 -38621,-13582 -12165,-9449 -18189,-25393 -18189,-48424l0 -1061319c0,-4842 1181,-9094 3661,-12401 2362,-3661 6260,-6378 12401,-8504 5669,-2126 13819,-3898 23858,-5433 9921,-1535 22086,-2126 36259,-2126 14764,0 26929,591 36850,2126 9685,1535 17598,3307 23267,5433 6142,2126 10039,4842 12401,8504 2480,3307 3661,7559 3661,12401l0 990927 411371 0c5551,0 10039,1181 13937,3898 3661,2716 6968,6732 9685,11456 2716,5197 4488,11811 5787,20315 1181,8149 1772,18189 1772,29881z"/>
+  <path id="10" class="fil6" d="M70857424 102874288c0,4842 -1181,9094 -3661,12401 -2362,3661 -6260,6378 -12401,8504 -5669,2126 -13582,3898 -23267,5433 -9921,1535 -22086,2126 -36850,2126 -14173,0 -26338,-591 -36259,-2126 -10039,-1535 -18189,-3307 -23858,-5433 -6142,-2126 -10039,-4842 -12401,-8504 -2480,-3307 -3661,-7559 -3661,-12401l0 -1100295c0,-4842 1181,-9094 3898,-12401 2716,-3661 7323,-6378 13346,-8504 6378,-2126 14173,-3898 23858,-5433 9685,-1535 21496,-2126 35078,-2126 14764,0 26929,591 36850,2126 9685,1535 17598,3307 23267,5433 6142,2126 10039,4842 12401,8504 2480,3307 3661,7559 3661,12401l0 1100295z"/>
+ </g>
+</svg>
-CSIT Test Naming\r
-================\r
-\r
-Background\r
-----------\r
-\r
-CSIT |release| follows a common structured naming convention for all\r
-performance and system functional tests, introduced in CSIT |release-1|.\r
-\r
-The naming should be intuitive for majority of the tests. Complete\r
-description of CSIT test naming convention is provided on\r
-`CSIT test naming wiki page <https://wiki.fd.io/view/CSIT/csit-test-naming>`_.\r
-Below few illustrative examples of the naming usage for test suites across CSIT\r
-performance, functional and Honeycomb management test areas.\r
-\r
-Naming Convention\r
------------------\r
-\r
-The CSIT approach is to use tree naming convention and to encode following\r
-testing information into test suite and test case names:\r
-\r
-#. packet network port configuration\r
-\r
-   * port type, physical or virtual;\r
-   * number of ports;\r
-   * NIC model, if applicable;\r
-   * port-NIC locality, if applicable;\r
-\r
-#. packet encapsulations;\r
-\r
-#. VPP packet processing\r
-\r
-   * packet forwarding mode;\r
-   * packet processing function(s);\r
-\r
-#. packet forwarding path\r
-\r
-   * if present, network functions (processes, containers, VMs) and their\r
-     topology within the computer;\r
-\r
-#. main measured variable, type of test.\r
-\r
-Proposed convention is to encode ports and NICs on the left (underlay),\r
-followed by outer-most frame header, then other stacked headers up to the\r
-header processed by vSwitch-VPP, then VPP forwarding function, then encap on\r
-vhost interface, number of vhost interfaces, number of VMs. If chained VMs\r
-present, they get added on the right. Test topology is expected to be\r
-symmetric, in other words packets enter and leave SUT through ports specified\r
-on the left of the test name. Here some examples to illustrate the convention\r
-followed by the complete legend, and tables mapping the new test filenames to\r
-old ones.\r
-\r
-Naming Examples\r
----------------\r
-\r
-CSIT test suite naming examples (filename.robot) for common tested VPP\r
-topologies:\r
-\r
-1. **Physical port to physical port - a.k.a. NIC-to-NIC, Phy-to-Phy, P2P**\r
-\r
-   * *PortNICConfig-WireEncapsulation-PacketForwardingFunction-\r
-     PacketProcessingFunction1-...-PacketProcessingFunctionN-TestType*\r
-   * *10ge2p1x520-dot1q-l2bdbasemaclrn-ndrdisc.robot* => 2 ports of 10GE on Intel\r
-     x520 NIC, dot1q tagged Ethernet, L2 bridge-domain baseline switching with\r
-     MAC learning, NDR throughput discovery.\r
-   * *10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-ndrchk.robot* => 2 ports of 10GE on\r
-     Intel x520 NIC, IPv4 VXLAN Ethernet, L2 bridge-domain baseline switching\r
-     with MAC learning, NDR throughput discovery.\r
-   * *10ge2p1x520-ethip4-ip4base-ndrdisc.robot* => 2 ports of 10GE on Intel x520\r
-     NIC, IPv4 baseline routed forwarding, NDR throughput discovery.\r
-   * *10ge2p1x520-ethip6-ip6scale200k-ndrdisc.robot* => 2 ports of 10GE on Intel\r
-     x520 NIC, IPv6 scaled up routed forwarding, NDR throughput discovery.\r
-   * *10ge2p1x520-ethip4-ip4base-iacldstbase-ndrdisc.robot* => 2 ports of 10GE on\r
-     Intel x520 NIC, IPv4 baseline routed forwarding, ingress Access Control\r
-     Lists baseline matching on destination, NDR throughput discovery.\r
-   * *40ge2p1vic1385-ethip4-ip4base-ndrdisc.robot* => 2 ports of 40GE on Cisco\r
-     vic1385 NIC, IPv4 baseline routed forwarding, NDR throughput discovery.\r
-   * *eth2p-ethip4-ip4base-func.robot* => 2 ports of Ethernet, IPv4 baseline\r
-     routed forwarding, functional tests.\r
-\r
-2. **Physical port to VM (or VM chain) to physical port - a.k.a. NIC2VM2NIC,\r
-   P2V2P, NIC2VMchain2NIC, P2V2V2P**\r
-\r
-   * *PortNICConfig-WireEncapsulation-PacketForwardingFunction-\r
-     PacketProcessingFunction1-...-PacketProcessingFunctionN-VirtEncapsulation-\r
-     VirtPortConfig-VMconfig-TestType*\r
-   * *10ge2p1x520-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc.robot* => 2 ports\r
-     of 10GE on Intel x520 NIC, dot1q tagged Ethernet, L2 bridge-domain switching\r
-     to/from two vhost interfaces and one VM, NDR throughput discovery.\r
-   * *10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc.robot* => 2\r
-     ports of 10GE on Intel x520 NIC, IPv4 VXLAN Ethernet, L2 bridge-domain\r
-     switching to/from two vhost interfaces and one VM, NDR throughput discovery.\r
-   * *10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-eth-4vhost-2vm-ndrdisc.robot* => 2\r
-     ports of 10GE on Intel x520 NIC, IPv4 VXLAN Ethernet, L2 bridge-domain\r
-     switching to/from four vhost interfaces and two VMs, NDR throughput\r
-     discovery.\r
-   * *eth2p-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-func.robot* => 2 ports of\r
-     Ethernet, IPv4 VXLAN Ethernet, L2 bridge-domain switching to/from two vhost\r
-     interfaces and one VM, functional tests.\r
-\r
-3. **API CRUD tests - Create (Write), Read (Retrieve), Update (Modify), Delete\r
-   (Destroy) operations for configuration and operational data**\r
-\r
-   * *ManagementTestKeyword-ManagementOperation-ManagedFunction1-...-\r
-     ManagedFunctionN-ManagementAPI1-ManagementAPIN-TestType*\r
-   * *mgmt-cfg-lisp-apivat-func* => configuration of LISP with VAT API calls,\r
-     functional tests.\r
-   * *mgmt-cfg-l2bd-apihc-apivat-func* => configuration of L2 Bridge-Domain with\r
-     Honeycomb API and VAT API calls, functional tests.\r
-   * *mgmt-oper-int-apihcnc-func* => reading status and operational data of\r
-     interface with Honeycomb NetConf API calls, functional tests.\r
-   * *mgmt-cfg-int-tap-apihcnc-func* => configuration of tap interfaces with\r
-     Honeycomb NetConf API calls, functional tests.\r
-   * *mgmt-notif-int-subint-apihcnc-func* => notifications of interface and\r
-     sub-interface events with Honeycomb NetConf Notifications, functional tests.\r
-\r
-For complete description of CSIT test naming convention please refer to `CSIT\r
-test naming wiki page <https://wiki.fd.io/view/CSIT/csit-test-naming>`_.\r
+CSIT Test Naming
+================
+
+Background
+----------
+
+CSIT |release| follows a common structured naming convention for all
+performance and system functional tests, introduced in CSIT |release-1|.
+
+The naming should be intuitive for majority of the tests. Complete
+description of CSIT test naming convention is provided on
+`CSIT test naming wiki page <https://wiki.fd.io/view/CSIT/csit-test-naming>`_.
+Below few illustrative examples of the naming usage for test suites across CSIT
+performance, functional and Honeycomb management test areas.
+
+Naming Convention
+-----------------
+
+The CSIT approach is to use tree naming convention and to encode following
+testing information into test suite and test case names:
+
+#. packet network port configuration
+
+   * port type, physical or virtual;
+   * number of ports;
+   * NIC model, if applicable;
+   * port-NIC locality, if applicable;
+
+#. packet encapsulations;
+
+#. VPP packet processing
+
+   * packet forwarding mode;
+   * packet processing function(s);
+
+#. packet forwarding path
+
+   * if present, network functions (processes, containers, VMs) and their
+     topology within the computer;
+
+#. main measured variable, type of test.
+
+Proposed convention is to encode ports and NICs on the left (underlay),
+followed by outer-most frame header, then other stacked headers up to the
+header processed by vSwitch-VPP, then VPP forwarding function, then encap on
+vhost interface, number of vhost interfaces, number of VMs. If chained VMs
+present, they get added on the right. Test topology is expected to be
+symmetric, in other words packets enter and leave SUT through ports specified
+on the left of the test name. Here some examples to illustrate the convention
+followed by the complete legend, and tables mapping the new test filenames to
+old ones.
+
+Naming Examples
+---------------
+
+CSIT test suite naming examples (filename.robot) for common tested VPP
+topologies:
+
+1. **Physical port to physical port - a.k.a. NIC-to-NIC, Phy-to-Phy, P2P**
+
+   * *PortNICConfig-WireEncapsulation-PacketForwardingFunction-
+     PacketProcessingFunction1-...-PacketProcessingFunctionN-TestType*
+   * *10ge2p1x520-dot1q-l2bdbasemaclrn-ndrdisc.robot* => 2 ports of 10GE on Intel
+     x520 NIC, dot1q tagged Ethernet, L2 bridge-domain baseline switching with
+     MAC learning, NDR throughput discovery.
+   * *10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-ndrchk.robot* => 2 ports of 10GE on
+     Intel x520 NIC, IPv4 VXLAN Ethernet, L2 bridge-domain baseline switching
+     with MAC learning, NDR throughput discovery.
+   * *10ge2p1x520-ethip4-ip4base-ndrdisc.robot* => 2 ports of 10GE on Intel x520
+     NIC, IPv4 baseline routed forwarding, NDR throughput discovery.
+   * *10ge2p1x520-ethip6-ip6scale200k-ndrdisc.robot* => 2 ports of 10GE on Intel
+     x520 NIC, IPv6 scaled up routed forwarding, NDR throughput discovery.
+   * *10ge2p1x520-ethip4-ip4base-iacldstbase-ndrdisc.robot* => 2 ports of 10GE on
+     Intel x520 NIC, IPv4 baseline routed forwarding, ingress Access Control
+     Lists baseline matching on destination, NDR throughput discovery.
+   * *40ge2p1vic1385-ethip4-ip4base-ndrdisc.robot* => 2 ports of 40GE on Cisco
+     vic1385 NIC, IPv4 baseline routed forwarding, NDR throughput discovery.
+   * *eth2p-ethip4-ip4base-func.robot* => 2 ports of Ethernet, IPv4 baseline
+     routed forwarding, functional tests.
+
+2. **Physical port to VM (or VM chain) to physical port - a.k.a. NIC2VM2NIC,
+   P2V2P, NIC2VMchain2NIC, P2V2V2P**
+
+   * *PortNICConfig-WireEncapsulation-PacketForwardingFunction-
+     PacketProcessingFunction1-...-PacketProcessingFunctionN-VirtEncapsulation-
+     VirtPortConfig-VMconfig-TestType*
+   * *10ge2p1x520-dot1q-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc.robot* => 2 ports
+     of 10GE on Intel x520 NIC, dot1q tagged Ethernet, L2 bridge-domain switching
+     to/from two vhost interfaces and one VM, NDR throughput discovery.
+   * *10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-ndrdisc.robot* => 2
+     ports of 10GE on Intel x520 NIC, IPv4 VXLAN Ethernet, L2 bridge-domain
+     switching to/from two vhost interfaces and one VM, NDR throughput discovery.
+   * *10ge2p1x520-ethip4vxlan-l2bdbasemaclrn-eth-4vhost-2vm-ndrdisc.robot* => 2
+     ports of 10GE on Intel x520 NIC, IPv4 VXLAN Ethernet, L2 bridge-domain
+     switching to/from four vhost interfaces and two VMs, NDR throughput
+     discovery.
+   * *eth2p-ethip4vxlan-l2bdbasemaclrn-eth-2vhost-1vm-func.robot* => 2 ports of
+     Ethernet, IPv4 VXLAN Ethernet, L2 bridge-domain switching to/from two vhost
+     interfaces and one VM, functional tests.
+
+3. **API CRUD tests - Create (Write), Read (Retrieve), Update (Modify), Delete
+   (Destroy) operations for configuration and operational data**
+
+   * *ManagementTestKeyword-ManagementOperation-ManagedFunction1-...-
+     ManagedFunctionN-ManagementAPI1-ManagementAPIN-TestType*
+   * *mgmt-cfg-lisp-apivat-func* => configuration of LISP with VAT API calls,
+     functional tests.
+   * *mgmt-cfg-l2bd-apihc-apivat-func* => configuration of L2 Bridge-Domain with
+     Honeycomb API and VAT API calls, functional tests.
+   * *mgmt-oper-int-apihcnc-func* => reading status and operational data of
+     interface with Honeycomb NetConf API calls, functional tests.
+   * *mgmt-cfg-int-tap-apihcnc-func* => configuration of tap interfaces with
+     Honeycomb NetConf API calls, functional tests.
+   * *mgmt-notif-int-subint-apihcnc-func* => notifications of interface and
+     sub-interface events with Honeycomb NetConf Notifications, functional tests.
+
+For complete description of CSIT test naming convention please refer to `CSIT
+test naming wiki page <https://wiki.fd.io/view/CSIT/csit-test-naming>`_.
diff --git a/docs/report/csit_framework_documentation/index.rst b/docs/report/csit_framework_documentation/index.rst
new file mode 100644 (file)
index 0000000..0b3228d
--- /dev/null
@@ -0,0 +1,9 @@
+CSIT Framework Documentation
+============================
+
+.. toctree::
+
+    csit_design
+    csit_test_naming
+    pal_lld
+    csit_tag_description
diff --git a/docs/report/csit_framework_documentation/pal_func_diagram.svg b/docs/report/csit_framework_documentation/pal_func_diagram.svg
new file mode 100644 (file)
index 0000000..14f5960
--- /dev/null
@@ -0,0 +1,1413 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<svg version="1.2" baseProfile="tiny" width="210.06mm" height="270.76mm" viewBox="0 0 21006 27076" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="21006" height="27076"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="x" horiz-adv-x="1033" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,343 318,299 326,264 333,229 346,200 363,179 380,157 403,142 432,133 460,124 495,119 537,119 580,119 618,127 653,142 687,157 716,178 741,207 765,235 784,270 797,312 810,353 817,401 817,455 L 817,1082 997,1082 997,231 C 997,208 997,185 998,160 998,135 998,111 999,89 1000,66 1000,47 1001,31 1002,15 1002,5 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 827,116 826,136 825,155 825,172 825,185 L 822,185 C 805,154 786,125 765,100 744,75 720,53 693,36 666,18 634,4 599,-6 564,-15 523,-20 476,-20 416,-20 364,-13 321,2 278,17 242,39 214,70 186,101 166,140 153,188 140,236 133,294 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 527,1 499,-5 471,-10 442,-14 409,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 467,127 484,128 501,131 517,134 535,137 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="927" d="M 950,299 C 950,248 940,203 921,164 901,124 872,91 835,64 798,37 752,16 698,2 643,-13 581,-20 511,-20 448,-20 392,-15 342,-6 291,4 247,20 209,41 171,62 139,91 114,126 88,161 69,203 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 550,117 585,120 618,125 650,130 678,140 701,153 724,166 743,183 756,205 769,226 775,253 775,285 775,318 767,345 752,366 737,387 715,404 688,418 661,432 628,444 589,455 550,465 507,476 460,489 417,500 374,513 331,527 288,541 250,560 216,583 181,606 153,634 132,668 111,702 100,745 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 763,842 752,866 736,885 720,904 701,919 678,931 655,942 630,951 602,956 573,961 544,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,785 282,761 297,742 311,723 331,707 357,694 382,681 413,669 449,660 485,650 525,640 568,629 597,622 626,614 656,606 686,597 715,587 744,576 772,564 799,550 824,535 849,519 870,500 889,478 908,456 923,430 934,401 945,372 950,338 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="556" d="M 142,0 L 142,830 C 142,853 142,876 142,900 141,923 141,946 140,968 139,990 139,1011 138,1030 137,1049 137,1067 136,1082 L 306,1082 C 307,1067 308,1049 309,1030 310,1010 311,990 312,969 313,948 313,929 314,910 314,891 314,874 314,861 L 318,861 C 331,902 344,938 359,969 373,999 390,1024 409,1044 428,1063 451,1078 478,1088 505,1097 537,1102 575,1102 590,1102 604,1101 617,1099 630,1096 641,1094 648,1092 L 648,927 C 636,930 622,933 606,935 590,936 572,937 552,937 511,937 476,928 447,909 418,890 394,865 376,832 357,799 344,759 335,714 326,668 322,618 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,464 1046,388 1033,319 1020,250 998,190 967,140 936,90 895,51 844,23 793,-6 730,-20 655,-20 578,-20 510,-5 452,24 394,53 350,101 319,168 L 314,168 C 315,167 315,161 316,150 316,139 316,126 317,110 317,94 317,76 318,57 318,37 318,17 318,-2 L 318,-425 138,-425 138,861 C 138,887 138,912 138,936 137,960 137,982 136,1002 135,1021 135,1038 134,1052 133,1066 133,1076 132,1082 L 306,1082 C 307,1080 308,1073 309,1061 310,1049 311,1035 312,1018 313,1001 314,982 315,963 316,944 316,925 316,908 L 320,908 C 337,943 356,972 377,997 398,1021 423,1041 450,1057 477,1072 508,1084 542,1091 575,1098 613,1101 655,1101 730,1101 793,1088 844,1061 895,1034 936,997 967,949 998,900 1020,842 1033,774 1046,705 1053,629 1053,546 Z M 864,542 C 864,609 860,668 852,720 844,772 830,816 811,852 791,888 765,915 732,934 699,953 658,962 609,962 569,962 531,956 496,945 461,934 430,912 404,880 377,848 356,804 341,748 326,691 318,618 318,528 318,451 324,387 337,334 350,281 368,238 393,205 417,172 447,149 483,135 519,120 560,113 607,113 657,113 699,123 732,142 765,161 791,189 811,226 830,263 844,308 852,361 860,414 864,474 864,542 Z"/>
+   <glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 490,-20 422,-9 363,14 304,37 254,71 213,118 172,165 140,223 119,294 97,364 86,447 86,542 86,915 248,1102 571,1102 655,1102 728,1090 789,1067 850,1044 900,1009 939,962 978,915 1006,857 1025,787 1044,717 1053,635 1053,542 Z M 864,542 C 864,626 858,695 845,750 832,805 813,848 788,881 763,914 732,937 696,950 660,963 619,969 574,969 528,969 487,962 450,949 413,935 381,912 355,879 329,846 309,802 296,747 282,692 275,624 275,542 275,458 282,389 297,334 312,279 332,235 358,202 383,169 414,146 449,133 484,120 522,113 563,113 609,113 651,120 688,133 725,146 757,168 783,201 809,234 829,278 843,333 857,388 864,458 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="900" d="M 825,0 L 825,686 C 825,739 821,783 814,818 806,853 793,882 776,904 759,925 736,941 708,950 679,959 644,963 602,963 559,963 521,956 487,941 452,926 423,904 399,876 374,847 355,812 342,771 329,729 322,681 322,627 L 322,0 142,0 142,851 C 142,874 142,898 142,923 141,948 141,971 140,994 139,1016 139,1035 138,1051 137,1067 137,1077 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 312,966 313,947 314,927 314,910 314,897 L 317,897 C 334,928 353,957 374,982 395,1007 419,1029 446,1047 473,1064 505,1078 540,1088 575,1097 616,1102 663,1102 723,1102 775,1095 818,1080 861,1065 897,1043 925,1012 953,981 974,942 987,894 1000,845 1006,788 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1456" d="M 768,0 L 768,686 C 768,739 765,783 758,818 751,853 740,882 725,904 709,925 688,941 663,950 638,959 607,963 570,963 532,963 498,956 467,941 436,926 410,904 389,876 367,847 350,812 339,771 327,729 321,681 321,627 L 321,0 142,0 142,851 C 142,874 142,898 142,923 141,948 141,971 140,994 139,1016 139,1035 138,1051 137,1067 137,1077 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 312,966 313,947 314,927 314,910 314,897 L 317,897 C 333,928 350,957 369,982 388,1007 410,1029 435,1047 460,1064 488,1078 521,1088 553,1097 590,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 946,928 964,957 984,982 1004,1007 1027,1029 1054,1047 1081,1064 1111,1078 1144,1088 1177,1097 1215,1102 1258,1102 1313,1102 1360,1095 1400,1080 1439,1065 1472,1043 1497,1012 1522,981 1541,942 1553,894 1565,845 1571,788 1571,721 L 1571,0 1393,0 1393,686 C 1393,739 1390,783 1383,818 1376,853 1365,882 1350,904 1334,925 1313,941 1288,950 1263,959 1232,963 1195,963 1157,963 1123,956 1092,942 1061,927 1035,906 1014,878 992,850 975,815 964,773 952,731 946,682 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="g" horiz-adv-x="954" d="M 548,-425 C 486,-425 431,-419 383,-406 335,-393 294,-375 260,-352 226,-328 198,-300 177,-267 156,-234 140,-198 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 594,-288 631,-282 664,-271 697,-260 726,-241 749,-217 772,-191 790,-159 803,-119 816,-79 822,-30 822,27 L 822,201 820,201 C 807,174 790,148 771,123 751,98 727,75 699,56 670,37 637,21 600,10 563,-2 520,-8 472,-8 403,-8 345,4 296,27 247,50 207,84 176,130 145,176 122,233 108,302 93,370 86,449 86,539 86,626 93,704 108,773 122,842 145,901 178,950 210,998 252,1035 304,1061 355,1086 418,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,914 825,932 826,953 827,974 828,993 829,1012 830,1030 831,1046 832,1059 833,1072 835,1080 836,1082 L 1007,1082 C 1006,1076 1006,1066 1005,1052 1004,1037 1004,1020 1003,1000 1002,980 1002,958 1002,934 1001,909 1001,884 1001,858 L 1001,31 C 1001,-120 964,-234 890,-311 815,-387 701,-425 548,-425 Z M 822,541 C 822,616 814,681 798,735 781,788 760,832 733,866 706,900 676,925 642,941 607,957 572,965 536,965 490,965 451,957 418,941 385,925 357,900 336,866 314,831 298,787 288,734 277,680 272,616 272,541 272,463 277,398 288,345 298,292 314,249 335,216 356,183 383,160 416,146 449,132 488,125 533,125 569,125 604,133 639,148 673,163 704,188 731,221 758,254 780,297 797,350 814,403 822,466 822,541 Z"/>
+   <glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1243 185,1280 192,1314 199,1347 213,1377 233,1402 252,1427 279,1446 313,1461 347,1475 391,1482 445,1482 466,1482 489,1481 512,1479 535,1477 555,1474 572,1470 L 572,1333 C 561,1335 548,1337 533,1339 518,1340 504,1341 492,1341 465,1341 444,1337 427,1330 410,1323 396,1312 387,1299 377,1285 370,1268 367,1248 363,1228 361,1205 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+   <glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,446 282,394 294,347 305,299 323,258 348,224 372,189 403,163 441,144 479,125 525,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 1008,206 992,176 972,146 951,115 924,88 890,64 856,39 814,19 763,4 712,-12 650,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,649 100,735 125,806 150,876 185,933 229,977 273,1021 324,1053 383,1073 442,1092 504,1102 571,1102 662,1102 738,1087 799,1058 860,1029 909,988 946,937 983,885 1009,824 1025,754 1040,684 1048,608 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 538,969 507,964 474,955 441,945 410,928 382,903 354,878 330,845 311,803 292,760 281,706 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="954" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 C 823,921 823,931 823,946 822,960 822,975 822,991 821,1006 821,1021 821,1035 821,1049 821,1059 821,1065 L 821,1484 1001,1484 1001,223 C 1001,197 1001,172 1002,148 1002,124 1002,102 1003,82 1004,62 1004,45 1005,31 1006,16 1006,6 1007,0 L 835,0 C 834,7 833,16 832,29 831,41 830,55 829,71 828,87 827,104 826,122 825,139 825,157 825,174 L 821,174 Z M 275,542 C 275,467 280,403 289,350 298,297 313,253 334,219 355,184 381,159 413,143 445,127 484,119 530,119 577,119 619,127 656,142 692,157 722,182 747,217 771,251 789,296 802,351 815,406 821,474 821,554 821,631 815,696 802,749 789,802 771,844 746,877 721,910 691,933 656,948 620,962 579,969 532,969 488,969 450,961 418,946 386,931 359,906 338,872 317,838 301,794 291,740 280,685 275,619 275,542 Z"/>
+   <glyph unicode="c" horiz-adv-x="875" d="M 275,546 C 275,484 280,427 289,375 298,323 313,278 334,241 355,203 384,174 419,153 454,132 497,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 964,283 951,239 931,197 911,155 884,118 850,86 815,54 773,28 724,9 675,-10 618,-20 553,-20 468,-20 396,-6 337,23 278,52 230,91 193,142 156,192 129,251 112,320 95,388 87,462 87,542 87,615 93,679 105,735 117,790 134,839 156,881 177,922 203,957 232,986 261,1014 293,1037 328,1054 362,1071 398,1083 436,1091 474,1098 512,1102 551,1102 612,1102 666,1094 713,1077 760,1060 801,1038 836,1009 870,980 898,945 919,906 940,867 955,824 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 495,961 452,953 418,936 383,919 355,893 334,859 313,824 298,781 289,729 280,677 275,616 275,546 Z"/>
+   <glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,151 316,133 315,114 314,95 313,78 312,62 311,46 310,32 309,21 308,10 307,3 306,0 L 132,0 C 133,6 133,16 134,31 135,45 135,62 136,82 137,102 137,124 138,148 138,172 138,197 138,223 L 138,1484 318,1484 318,1061 C 318,1041 318,1022 318,1004 317,985 317,969 316,955 315,938 315,923 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,615 859,679 850,732 841,785 826,829 805,864 784,898 758,923 726,939 694,955 655,963 609,963 562,963 520,955 484,940 447,925 417,900 393,866 368,832 350,787 337,732 324,677 318,609 318,529 318,452 324,387 337,334 350,281 368,239 393,206 417,173 447,149 483,135 519,120 560,113 607,113 651,113 689,121 721,136 753,151 780,176 801,210 822,244 838,288 849,343 859,397 864,463 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,124 87,203 87,303 87,375 101,434 128,480 155,526 190,562 234,588 277,614 327,632 383,642 439,652 496,657 554,657 L 797,657 797,717 C 797,762 792,800 783,832 774,863 759,889 740,908 721,928 697,942 668,951 639,960 604,965 565,965 530,965 499,963 471,958 443,953 419,944 398,931 377,918 361,900 348,878 335,855 327,827 323,793 L 135,810 C 142,853 154,892 173,928 192,963 218,994 253,1020 287,1046 330,1066 382,1081 433,1095 496,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1090,111 1100,112 1110,113 1120,114 1130,116 1139,118 L 1139,6 C 1116,1 1094,-3 1072,-6 1049,-9 1025,-10 1000,-10 966,-10 937,-5 913,4 888,13 868,26 853,45 838,63 826,86 818,113 810,140 805,171 803,207 L 797,207 C 778,172 757,141 734,113 711,85 684,61 653,42 622,22 588,7 549,-4 510,-15 465,-20 414,-20 Z M 455,115 C 512,115 563,125 606,146 649,167 684,194 713,226 741,259 762,294 776,332 790,371 797,408 797,443 L 797,531 600,531 C 556,531 514,528 475,522 435,517 400,506 370,489 340,472 316,449 299,418 281,388 272,349 272,300 272,241 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="_" horiz-adv-x="1191" d="M -31,-407 L -31,-277 1162,-277 1162,-407 -31,-407 Z"/>
+   <glyph unicode="Y" horiz-adv-x="1244" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
+   <glyph unicode="T" horiz-adv-x="1139" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
+   <glyph unicode="S" horiz-adv-x="1139" d="M 1272,389 C 1272,330 1261,275 1238,225 1215,175 1179,132 1131,96 1083,59 1023,31 950,11 877,-10 790,-20 690,-20 515,-20 378,11 280,72 182,133 120,222 93,338 L 278,375 C 287,338 302,305 321,275 340,245 367,219 400,198 433,176 473,159 522,147 571,135 629,129 697,129 754,129 806,134 853,144 900,153 941,168 975,188 1009,208 1036,234 1055,266 1074,297 1083,335 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 613,659 573,668 534,679 494,689 456,701 420,716 383,730 349,747 317,766 285,785 257,809 234,836 211,863 192,894 179,930 166,965 159,1006 159,1053 159,1120 173,1177 200,1225 227,1272 264,1311 312,1342 360,1373 417,1395 482,1409 547,1423 618,1430 694,1430 781,1430 856,1423 918,1410 980,1396 1032,1375 1075,1348 1118,1321 1152,1287 1178,1247 1203,1206 1224,1159 1239,1106 L 1051,1073 C 1042,1107 1028,1137 1011,1164 993,1191 970,1213 941,1231 912,1249 878,1263 837,1272 796,1281 747,1286 692,1286 627,1286 572,1280 528,1269 483,1257 448,1241 421,1221 394,1201 374,1178 363,1151 351,1124 345,1094 345,1063 345,1021 356,987 377,960 398,933 426,910 462,892 498,874 540,859 587,847 634,835 685,823 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="R" horiz-adv-x="1218" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 911,1409 982,1400 1044,1382 1105,1363 1157,1337 1199,1302 1241,1267 1273,1225 1295,1175 1317,1125 1328,1069 1328,1006 1328,961 1322,917 1309,874 1296,831 1275,791 1247,755 1219,719 1183,688 1140,662 1097,636 1045,618 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1047 1129,1084 1114,1115 1099,1146 1078,1173 1050,1194 1022,1215 988,1230 948,1241 908,1251 863,1256 812,1256 L 359,1256 359,736 820,736 C 875,736 922,743 962,757 1002,770 1035,789 1061,813 1086,837 1105,865 1118,898 1130,931 1136,966 1136,1004 Z"/>
+   <glyph unicode="P" horiz-adv-x="1086" d="M 1258,985 C 1258,924 1248,867 1228,814 1207,761 1177,715 1137,676 1096,637 1046,606 985,583 924,560 854,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 844,1409 917,1399 979,1379 1041,1358 1093,1330 1134,1293 1175,1256 1206,1211 1227,1159 1248,1106 1258,1048 1258,985 Z M 1066,983 C 1066,1072 1039,1140 984,1187 929,1233 847,1256 738,1256 L 359,1256 359,700 746,700 C 856,700 937,724 989,773 1040,822 1066,892 1066,983 Z"/>
+   <glyph unicode="M" horiz-adv-x="1324" d="M 1366,0 L 1366,940 C 1366,974 1366,1009 1367,1044 1368,1079 1369,1112 1370,1141 1371,1175 1373,1208 1375,1240 1366,1206 1356,1172 1346,1139 1337,1110 1328,1080 1318,1048 1307,1015 1297,986 1287,960 L 923,0 789,0 420,960 C 416,970 412,982 408,995 403,1008 399,1023 394,1038 389,1053 384,1068 379,1084 374,1099 369,1115 364,1130 353,1165 342,1202 331,1240 332,1203 333,1166 334,1129 335,1098 336,1065 337,1031 338,996 338,966 338,940 L 338,0 168,0 168,1409 419,1409 794,432 C 799,419 804,402 811,381 818,360 824,338 830,316 836,294 842,273 847,254 852,234 855,219 857,208 859,219 863,234 868,254 873,274 880,295 887,317 894,339 900,360 907,381 914,402 920,419 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="L" horiz-adv-x="900" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
+   <glyph unicode="I" horiz-adv-x="186" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1006" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,602 1363,498 1328,409 1293,319 1244,244 1183,184 1122,123 1049,78 966,47 882,16 792,0 695,0 L 168,0 168,1409 634,1409 C 743,1409 843,1396 935,1369 1026,1342 1105,1300 1171,1244 1237,1187 1289,1116 1326,1029 1363,942 1381,839 1381,719 Z M 1189,719 C 1189,814 1175,896 1148,964 1121,1031 1082,1087 1033,1130 984,1173 925,1205 856,1226 787,1246 712,1256 630,1256 L 359,1256 359,153 673,153 C 747,153 816,165 879,189 942,213 996,249 1042,296 1088,343 1124,402 1150,473 1176,544 1189,626 1189,719 Z"/>
+   <glyph unicode="A" horiz-adv-x="1350" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 768,1026 C 757,1053 747,1080 738,1107 728,1134 719,1159 712,1182 705,1204 699,1223 694,1238 689,1253 686,1262 685,1265 684,1262 681,1252 676,1237 671,1222 665,1203 658,1180 650,1157 641,1132 632,1105 622,1078 612,1051 602,1024 L 422,561 949,561 768,1026 Z"/>
+   <glyph unicode="4" horiz-adv-x="1033" d="M 881,319 L 881,0 711,0 711,319 47,319 47,459 692,1409 881,1409 881,461 1079,461 1079,319 881,319 Z M 711,1206 C 710,1203 706,1196 701,1187 696,1177 690,1166 683,1154 676,1142 670,1130 663,1118 656,1105 649,1095 644,1087 L 283,555 C 280,550 275,543 269,534 262,525 256,517 249,508 242,499 236,490 229,481 222,472 217,466 213,461 L 711,461 711,1206 Z"/>
+   <glyph unicode="3" horiz-adv-x="980" d="M 1049,389 C 1049,324 1039,267 1018,216 997,165 966,123 926,88 885,53 835,26 776,8 716,-11 648,-20 571,-20 484,-20 410,-9 351,13 291,34 242,63 203,99 164,134 135,175 116,221 97,266 84,313 78,362 L 264,379 C 269,342 279,308 294,277 308,246 327,220 352,198 377,176 407,159 443,147 479,135 522,129 571,129 662,129 733,151 785,196 836,241 862,307 862,395 862,447 851,489 828,521 805,552 776,577 742,595 707,612 670,624 630,630 589,636 552,639 518,639 L 416,639 416,795 514,795 C 548,795 583,799 620,806 657,813 690,825 721,844 751,862 776,887 796,918 815,949 825,989 825,1038 825,1113 803,1173 759,1217 714,1260 648,1282 561,1282 482,1282 418,1262 369,1221 320,1180 291,1123 283,1049 L 102,1063 C 109,1125 126,1179 153,1225 180,1271 214,1309 255,1340 296,1370 342,1393 395,1408 448,1423 504,1430 563,1430 642,1430 709,1420 766,1401 823,1381 869,1354 905,1321 941,1287 968,1247 985,1202 1002,1157 1010,1108 1010,1057 1010,1016 1004,977 993,941 982,905 964,873 940,844 916,815 886,791 849,770 812,749 767,734 715,723 L 715,719 C 772,713 821,700 863,681 905,661 940,636 967,607 994,578 1015,544 1029,507 1042,470 1049,430 1049,389 Z"/>
+   <glyph unicode="2" horiz-adv-x="927" d="M 103,0 L 103,127 C 137,205 179,274 228,334 277,393 328,447 382,496 436,544 490,589 543,630 596,671 643,713 686,754 729,795 763,839 790,884 816,929 829,981 829,1038 829,1078 823,1113 811,1144 799,1174 782,1199 759,1220 736,1241 709,1256 678,1267 646,1277 611,1282 572,1282 536,1282 502,1277 471,1267 439,1257 411,1242 386,1222 361,1202 341,1177 326,1148 310,1118 300,1083 295,1044 L 111,1061 C 117,1112 131,1159 153,1204 175,1249 205,1288 244,1322 283,1355 329,1382 384,1401 438,1420 501,1430 572,1430 642,1430 704,1422 759,1405 814,1388 860,1364 898,1331 935,1298 964,1258 984,1210 1004,1162 1014,1107 1014,1044 1014,997 1006,952 989,909 972,866 949,826 921,787 892,748 859,711 822,675 785,639 746,604 705,570 664,535 623,501 582,468 541,434 502,400 466,366 429,332 397,298 368,263 339,228 317,191 301,153 L 1036,153 1036,0 103,0 Z"/>
+   <glyph unicode="1" horiz-adv-x="874" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/>
+   <glyph unicode="." horiz-adv-x="186" d="M 187,0 L 187,219 382,219 382,0 187,0 Z"/>
+   <glyph unicode="-" horiz-adv-x="504" d="M 91,464 L 91,624 591,624 591,464 91,464 Z"/>
+   <glyph unicode=" " horiz-adv-x="556"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49 id50 id51 id52"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+    <g class="Page">
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id3">
+       <rect class="BoundingBox" stroke="none" fill="none" x="3069" y="1769" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 4975,3040 L 3070,3040 3070,1770 6880,1770 6880,3040 4975,3040 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 4975,3040 L 3070,3040 3070,1770 6880,1770 6880,3040 4975,3040 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="3568" y="2299"/><tspan class="TextPosition" x="3568" y="2299"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="4253" y="2854"/><tspan class="TextPosition" x="4253" y="2854"><tspan fill="rgb(0,0,0)" stroke="none">.YAML</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id4">
+       <rect class="BoundingBox" stroke="none" fill="none" x="8146" y="1769" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 10052,3040 L 8147,3040 8147,1770 11957,1770 11957,3040 10052,3040 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10052,3040 L 8147,3040 8147,1770 11957,1770 11957,3040 10052,3040 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="8310" y="2299"/><tspan class="TextPosition" x="8310" y="2299"><tspan fill="rgb(0,0,0)" stroke="none">Data to process</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="9599" y="2854"/><tspan class="TextPosition" x="9599" y="2854"><tspan fill="rgb(0,0,0)" stroke="none">.xml</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id5">
+       <rect class="BoundingBox" stroke="none" fill="none" x="13169" y="1769" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 15075,3040 L 13170,3040 13170,1770 16980,1770 16980,3040 15075,3040 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 15075,3040 L 13170,3040 13170,1770 16980,1770 16980,3040 15075,3040 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="13568" y="2299"/><tspan class="TextPosition" x="13568" y="2299"><tspan fill="rgb(0,0,0)" stroke="none">Static content</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="14728" y="2854"/><tspan class="TextPosition" x="14728" y="2854"><tspan fill="rgb(0,0,0)" stroke="none">.rst</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id6">
+       <rect class="BoundingBox" stroke="none" fill="none" x="2630" y="4279" width="4703" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 4980,4280 C 6312,4280 7330,4555 7330,4915 7330,5275 6312,5550 4980,5550 3648,5550 2631,5275 2631,4915 2631,4555 3648,4280 4980,4280 Z M 2631,4280 L 2631,4280 Z M 7331,5551 L 7331,5551 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 4980,4280 C 6312,4280 7330,4555 7330,4915 7330,5275 6312,5550 4980,5550 3648,5550 2631,5275 2631,4915 2631,4555 3648,4280 4980,4280 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 2631,4280 L 2631,4280 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 7331,5551 L 7331,5551 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="2980" y="5087"/><tspan class="TextPosition" x="2980" y="5087"><tspan fill="rgb(0,0,0)" stroke="none">read_specification</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id7">
+       <rect class="BoundingBox" stroke="none" fill="none" x="7611" y="4280" width="4830" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 10025,4281 C 11393,4281 12438,4556 12438,4916 12438,5276 11393,5551 10025,5551 8657,5551 7612,5276 7612,4916 7612,4556 8657,4281 10025,4281 Z M 7612,4281 L 7612,4281 Z M 12439,5552 L 12439,5552 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10025,4281 C 11393,4281 12438,4556 12438,4916 12438,5276 11393,5551 10025,5551 8657,5551 7612,5276 7612,4916 7612,4556 8657,4281 10025,4281 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 7612,4281 L 7612,4281 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 12439,5552 L 12439,5552 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="8910" y="5088"/><tspan class="TextPosition" x="8910" y="5088"><tspan fill="rgb(0,0,0)" stroke="none">read_data</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id8">
+       <rect class="BoundingBox" stroke="none" fill="none" x="3069" y="6789" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 4975,8060 L 3070,8060 3070,6790 6880,6790 6880,8060 4975,8060 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 4975,8060 L 3070,8060 3070,6790 6880,6790 6880,8060 4975,8060 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="3568" y="7597"/><tspan class="TextPosition" x="3568" y="7597"><tspan fill="rgb(0,0,0)" stroke="none">Specification</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id9">
+       <rect class="BoundingBox" stroke="none" fill="none" x="8119" y="6789" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 10025,8060 L 8120,8060 8120,6790 11930,6790 11930,8060 10025,8060 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10025,8060 L 8120,8060 8120,6790 11930,6790 11930,8060 10025,8060 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="8920" y="7597"/><tspan class="TextPosition" x="8920" y="7597"><tspan fill="rgb(0,0,0)" stroke="none">Input data</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id10">
+       <rect class="BoundingBox" stroke="none" fill="none" x="2657" y="10199" width="4703" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 5007,10200 C 6339,10200 7357,10475 7357,10835 7357,11195 6339,11470 5007,11470 3675,11470 2658,11195 2658,10835 2658,10475 3675,10200 5007,10200 Z M 2658,10200 L 2658,10200 Z M 7358,11471 L 7358,11471 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 5007,10200 C 6339,10200 7357,10475 7357,10835 7357,11195 6339,11470 5007,11470 3675,11470 2658,11195 2658,10835 2658,10475 3675,10200 5007,10200 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 2658,10200 L 2658,10200 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 7358,11471 L 7358,11471 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="3918" y="11007"/><tspan class="TextPosition" x="3918" y="11007"><tspan fill="rgb(0,0,0)" stroke="none">filter_data</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id11">
+       <rect class="BoundingBox" stroke="none" fill="none" x="7611" y="10199" width="4830" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 10025,10200 C 11393,10200 12438,10475 12438,10835 12438,11195 11393,11470 10025,11470 8657,11470 7612,11195 7612,10835 7612,10475 8657,10200 10025,10200 Z M 7612,10200 L 7612,10200 Z M 12439,11471 L 12439,11471 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10025,10200 C 11393,10200 12438,10475 12438,10835 12438,11195 11393,11470 10025,11470 8657,11470 7612,11195 7612,10835 7612,10475 8657,10200 10025,10200 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 7612,10200 L 7612,10200 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 12439,11471 L 12439,11471 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="8935" y="11007"/><tspan class="TextPosition" x="8935" y="11007"><tspan fill="rgb(0,0,0)" stroke="none">filter_data</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id12">
+       <rect class="BoundingBox" stroke="none" fill="none" x="12817" y="16899" width="4449" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 15040,16900 C 16300,16900 17263,17175 17263,17535 17263,17895 16300,18170 15040,18170 13780,18170 12818,17895 12818,17535 12818,17175 13780,16900 15040,16900 Z M 12818,16900 L 12818,16900 Z M 17264,18171 L 17264,18171 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 15040,16900 C 16300,16900 17263,17175 17263,17535 17263,17895 16300,18170 15040,18170 13780,18170 12818,17895 12818,17535 12818,17175 13780,16900 15040,16900 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 12818,16900 L 12818,16900 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 17264,18171 L 17264,18171 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="13482" y="17707"/><tspan class="TextPosition" x="13482" y="17707"><tspan fill="rgb(0,0,0)" stroke="none">generate_files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id13">
+       <rect class="BoundingBox" stroke="none" fill="none" x="3069" y="14409" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 4975,15680 L 3070,15680 3070,14410 6880,14410 6880,15680 4975,15680 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 4975,15680 L 3070,15680 3070,14410 6880,14410 6880,15680 4975,15680 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="4260" y="15217"/><tspan class="TextPosition" x="4260" y="15217"><tspan fill="rgb(0,0,0)" stroke="none">Tables</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id14">
+       <rect class="BoundingBox" stroke="none" fill="none" x="8119" y="14409" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 10025,15680 L 8120,15680 8120,14410 11930,14410 11930,15680 10025,15680 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10025,15680 L 8120,15680 8120,14410 11930,14410 11930,15680 10025,15680 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="9473" y="15217"/><tspan class="TextPosition" x="9473" y="15217"><tspan fill="rgb(0,0,0)" stroke="none">Plots</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id15">
+       <rect class="BoundingBox" stroke="none" fill="none" x="13169" y="19509" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 15075,20780 L 13170,20780 13170,19510 16980,19510 16980,20780 15075,20780 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 15075,20780 L 13170,20780 13170,19510 16980,19510 16980,20780 15075,20780 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="14552" y="20317"/><tspan class="TextPosition" x="14552" y="20317"><tspan fill="rgb(0,0,0)" stroke="none">Files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id16">
+       <rect class="BoundingBox" stroke="none" fill="none" x="7611" y="22019" width="4830" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 10025,22020 C 11393,22020 12438,22295 12438,22655 12438,23015 11393,23290 10025,23290 8657,23290 7612,23015 7612,22655 7612,22295 8657,22020 10025,22020 Z M 7612,22020 L 7612,22020 Z M 12439,23291 L 12439,23291 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10025,22020 C 11393,22020 12438,22295 12438,22655 12438,23015 11393,23290 10025,23290 8657,23290 7612,23015 7612,22655 7612,22295 8657,22020 10025,22020 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 7612,22020 L 7612,22020 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 12439,23291 L 12439,23291 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="8262" y="22827"/><tspan class="TextPosition" x="8262" y="22827"><tspan fill="rgb(0,0,0)" stroke="none">generate_report</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id17">
+       <rect class="BoundingBox" stroke="none" fill="none" x="8119" y="24629" width="3813" height="1273"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 10025,25900 L 8120,25900 8120,24630 11930,24630 11930,25900 10025,25900 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10025,25900 L 8120,25900 8120,24630 11930,24630 11930,25900 10025,25900 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="9280" y="25437"/><tspan class="TextPosition" x="9280" y="25437"><tspan fill="rgb(0,0,0)" stroke="none">Report</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id18">
+       <rect class="BoundingBox" stroke="none" fill="none" x="1303" y="2404" width="6310" height="20387"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3070,2405 C 1171,2405 -1037,22093 7253,22643"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 7612,22655 L 7167,22489 7157,22789 7612,22655 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id19">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4830" y="3039" width="302" height="1242"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4975,3040 C 4975,3970 4979,3554 4981,3845"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 4982,4280 L 5131,3830 4831,3830 4982,4280 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id20">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9879" y="3039" width="302" height="1243"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10052,3040 C 10052,3971 10036,3555 10029,3846"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 10025,4281 L 10179,3832 9879,3830 10025,4281 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id21">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4826" y="5549" width="302" height="1242"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4982,5550 C 4982,6481 4978,6066 4976,6355"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 4975,6790 L 5126,6340 4826,6340 4975,6790 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id22">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9875" y="5550" width="301" height="1241"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10025,5551 L 10025,6360"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 10025,6790 L 10175,6340 9875,6340 10025,6790 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id23">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4857" y="8059" width="302" height="2142"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4975,8060 C 4975,9665 5002,8796 5008,9766"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 5009,10200 L 5158,9750 4858,9750 5009,10200 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id24">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4974" y="8059" width="3418" height="2328"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4975,8060 C 4975,9665 7780,8678 8251,9972"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 8318,10386 L 8390,9917 8095,9968 8318,10386 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id25">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4974" y="8059" width="10214" height="8842"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4975,8060 C 4975,10304 14789,5995 15037,16490"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 15042,16900 L 15186,16448 14886,16452 15042,16900 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id26">
+       <rect class="BoundingBox" stroke="none" fill="none" x="6597" y="8059" width="3430" height="2328"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10025,8060 C 10025,9665 7210,8678 6737,9972"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 6670,10386 L 6894,9968 6598,9917 6670,10386 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id27">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9875" y="8059" width="301" height="2142"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10025,8060 L 10025,9770"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 10025,10200 L 10175,9750 9875,9750 10025,10200 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id28">
+       <rect class="BoundingBox" stroke="none" fill="none" x="10024" y="8059" width="6737" height="9028"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10025,8060 C 10025,9957 16448,5557 16610,16654"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 16613,17086 L 16760,16635 16460,16637 16613,17086 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id29">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4806" y="13570" width="301" height="841"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4945,13571 C 4945,14201 4952,13931 4959,13981"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 4975,14410 L 5106,13954 4806,13967 4975,14410 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id30">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9875" y="13570" width="301" height="841"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10025,13571 L 10025,13980"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 10025,14410 L 10175,13960 9875,13960 10025,14410 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id31">
+       <rect class="BoundingBox" stroke="none" fill="none" x="14920" y="18169" width="302" height="1342"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15042,18170 C 15042,19176 15063,18709 15072,19080"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 15075,19510 L 15221,19059 14921,19061 15075,19510 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id32">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4974" y="15679" width="3485" height="6528"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4975,15680 C 4975,20435 8106,17374 8308,21746"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 8318,22206 L 8458,21753 8158,21760 8318,22206 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id33">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9875" y="15679" width="301" height="6342"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10025,15680 L 10025,21590"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 10025,22020 L 10175,21570 9875,21570 10025,22020 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id34">
+       <rect class="BoundingBox" stroke="none" fill="none" x="11732" y="20779" width="3345" height="1428"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15075,20780 C 15075,21710 12525,21151 11879,21832"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 11732,22206 L 12043,21848 11766,21733 11732,22206 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id35">
+       <rect class="BoundingBox" stroke="none" fill="none" x="12438" y="2404" width="7822" height="20393"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16980,2405 C 20904,2405 23125,22213 12786,22648"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 12438,22655 L 12891,22795 12885,22495 12438,22655 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id36">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9875" y="23289" width="301" height="1342"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10025,23290 L 10025,24200"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 10025,24630 L 10175,24180 9875,24180 10025,24630 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id37">
+       <rect class="BoundingBox" stroke="none" fill="none" x="2658" y="12300" width="4576" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 4945,12301 C 6241,12301 7231,12576 7231,12936 7231,13296 6241,13571 4945,13571 3649,13571 2659,13296 2659,12936 2659,12576 3649,12301 4945,12301 Z M 2659,12301 L 2659,12301 Z M 7232,13572 L 7232,13572 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 4945,12301 C 6241,12301 7231,12576 7231,12936 7231,13296 6241,13571 4945,13571 3649,13571 2659,13296 2659,12936 2659,12576 3649,12301 4945,12301 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 2659,12301 L 2659,12301 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 7232,13572 L 7232,13572 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="3167" y="13108"/><tspan class="TextPosition" x="3167" y="13108"><tspan fill="rgb(0,0,0)" stroke="none">generate_tables</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id38">
+       <rect class="BoundingBox" stroke="none" fill="none" x="7611" y="12300" width="4830" height="1274"/>
+       <path fill="rgb(207,231,245)" stroke="none" d="M 10025,12301 C 11393,12301 12438,12576 12438,12936 12438,13296 11393,13571 10025,13571 8657,13571 7612,13296 7612,12936 7612,12576 8657,12301 10025,12301 Z M 7612,12301 L 7612,12301 Z M 12439,13572 L 12439,13572 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10025,12301 C 11393,12301 12438,12576 12438,12936 12438,13296 11393,13571 10025,13571 8657,13571 7612,13296 7612,12936 7612,12576 8657,12301 10025,12301 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 7612,12301 L 7612,12301 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 12439,13572 L 12439,13572 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="8384" y="13108"/><tspan class="TextPosition" x="8384" y="13108"><tspan fill="rgb(0,0,0)" stroke="none">generate_plots</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id39">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4797" y="11452" width="302" height="850"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4977,11871 C 4977,11387 4954,11245 4947,11868"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 4945,12301 L 5097,11852 4797,11850 4945,12301 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id40">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9827" y="11487" width="302" height="803"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9978,11859 C 9978,11436 9977,11298 9977,11857"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 9977,12289 L 10127,11839 9827,11839 9977,12289 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id41">
+       <rect class="BoundingBox" stroke="none" fill="none" x="11929" y="15044" width="1671" height="2043"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11930,15045 C 12957,15045 13350,15582 13451,16658"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 13470,17086 L 13599,16629 13299,16643 13470,17086 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id42">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4974" y="15679" width="7846" height="2006"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4975,15680 C 4975,16917 7443,17500 12382,17534"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 12819,17535 L 12370,17383 12368,17683 12819,17535 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.ConnectorShape">
+      <g id="id43">
+       <rect class="BoundingBox" stroke="none" fill="none" x="15074" y="3039" width="3534" height="14497"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15075,3040 C 15075,3524 16775,3443 17776,6946 18777,10449 19027,16449 17651,17410"/>
+       <path fill="rgb(0,0,0)" stroke="none" d="M 17264,17535 L 17738,17533 17642,17249 17264,17535 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id44">
+       <rect class="BoundingBox" stroke="none" fill="none" x="499" y="499" width="20003" height="6"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 500,503 L 553,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 606,503 L 659,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 712,503 L 765,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 819,503 L 872,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 925,503 L 978,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1031,503 L 1084,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1137,503 L 1190,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1243,503 L 1296,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1349,503 L 1403,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1456,503 L 1509,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1562,503 L 1615,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1668,503 L 1721,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1774,503 L 1827,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1880,503 L 1933,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1987,503 L 2040,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2093,503 L 2146,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2199,503 L 2252,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2305,503 L 2358,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2411,503 L 2464,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2517,503 L 2571,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2624,503 L 2677,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2730,503 L 2783,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2836,503 L 2889,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2942,503 L 2995,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3048,503 L 3101,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3155,503 L 3208,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3261,503 L 3314,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3367,503 L 3420,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3473,503 L 3526,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3579,503 L 3632,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3685,503 L 3739,503"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3792,503 L 3845,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3898,502 L 3951,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4004,502 L 4057,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4110,502 L 4163,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4216,502 L 4269,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4323,502 L 4376,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4429,502 L 4482,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4535,502 L 4588,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4641,502 L 4694,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4747,502 L 4800,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4854,502 L 4907,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4960,502 L 5013,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5066,502 L 5119,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5172,502 L 5225,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5278,502 L 5331,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5384,502 L 5438,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5491,502 L 5544,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5597,502 L 5650,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5703,502 L 5756,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5809,502 L 5862,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5915,502 L 5968,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6022,502 L 6075,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6128,502 L 6181,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6234,502 L 6287,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6340,502 L 6393,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6446,502 L 6499,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6552,502 L 6606,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6659,502 L 6712,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6765,502 L 6818,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6871,502 L 6924,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6977,502 L 7030,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7083,502 L 7136,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7190,502 L 7243,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7296,502 L 7349,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7402,502 L 7455,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7508,502 L 7561,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7614,502 L 7667,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7720,502 L 7774,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7827,502 L 7880,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7933,502 L 7986,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8039,502 L 8092,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8145,502 L 8198,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8251,502 L 8304,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8358,502 L 8411,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8464,502 L 8517,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8570,502 L 8623,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8676,502 L 8729,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8782,502 L 8835,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8888,502 L 8942,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8995,502 L 9048,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9101,502 L 9154,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9207,502 L 9260,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9313,502 L 9366,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9419,502 L 9472,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9526,502 L 9579,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9632,502 L 9685,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9738,502 L 9791,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9844,502 L 9897,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9950,502 L 10003,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10056,502 L 10110,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10163,502 L 10216,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10269,502 L 10322,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10375,502 L 10428,502"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10481,502 L 10534,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10587,501 L 10640,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10694,501 L 10747,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10800,501 L 10853,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10906,501 L 10959,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11012,501 L 11065,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11118,501 L 11171,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11224,501 L 11278,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11331,501 L 11384,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11437,501 L 11490,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11543,501 L 11596,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11649,501 L 11702,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11755,501 L 11808,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11862,501 L 11915,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11968,501 L 12021,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12074,501 L 12127,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12180,501 L 12233,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12286,501 L 12339,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12392,501 L 12446,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12499,501 L 12552,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12605,501 L 12658,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12711,501 L 12764,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12817,501 L 12870,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12923,501 L 12977,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13030,501 L 13083,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13136,501 L 13189,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13242,501 L 13295,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13348,501 L 13401,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13454,501 L 13507,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13561,501 L 13614,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13667,501 L 13720,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13773,501 L 13826,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13879,501 L 13932,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13985,501 L 14038,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14091,501 L 14145,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14198,501 L 14251,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14304,501 L 14357,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14410,501 L 14463,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14516,501 L 14569,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14622,501 L 14675,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14729,501 L 14782,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14835,501 L 14888,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14941,501 L 14994,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15047,501 L 15100,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15153,501 L 15206,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15259,501 L 15313,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15366,501 L 15419,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15472,501 L 15525,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15578,501 L 15631,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15684,501 L 15737,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15790,501 L 15843,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15897,501 L 15950,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16003,501 L 16056,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16109,501 L 16162,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16215,501 L 16268,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16321,501 L 16374,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16427,501 L 16481,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16534,501 L 16587,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16640,501 L 16693,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16746,501 L 16799,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16852,501 L 16905,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16958,501 L 17011,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17065,501 L 17118,501"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17171,500 L 17224,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17277,500 L 17330,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17383,500 L 17436,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17489,500 L 17542,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17595,500 L 17649,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17702,500 L 17755,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17808,500 L 17861,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17914,500 L 17967,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18020,500 L 18073,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18126,500 L 18179,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18233,500 L 18286,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18339,500 L 18392,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18445,500 L 18498,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18551,500 L 18604,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18657,500 L 18710,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18763,500 L 18817,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18870,500 L 18923,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18976,500 L 19029,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19082,500 L 19135,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19188,500 L 19241,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19294,500 L 19347,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19401,500 L 19454,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19507,500 L 19560,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19613,500 L 19666,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19719,500 L 19772,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19825,500 L 19878,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19931,500 L 19985,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20038,500 L 20091,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20144,500 L 20197,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20250,500 L 20303,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20356,500 L 20409,500"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20462,500 L 20500,500"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id45">
+       <rect class="BoundingBox" stroke="none" fill="none" x="499" y="3600" width="20003" height="6"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 500,3604 L 553,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 606,3604 L 659,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 712,3604 L 765,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 819,3604 L 872,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 925,3604 L 978,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1031,3604 L 1084,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1137,3604 L 1190,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1243,3604 L 1296,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1349,3604 L 1403,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1456,3604 L 1509,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1562,3604 L 1615,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1668,3604 L 1721,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1774,3604 L 1827,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1880,3604 L 1933,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1987,3604 L 2040,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2093,3604 L 2146,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2199,3604 L 2252,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2305,3604 L 2358,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2411,3604 L 2464,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2517,3604 L 2571,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2624,3604 L 2677,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2730,3604 L 2783,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2836,3604 L 2889,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2942,3604 L 2995,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3048,3604 L 3101,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3155,3604 L 3208,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3261,3604 L 3314,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3367,3604 L 3420,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3473,3604 L 3526,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3579,3604 L 3632,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3685,3604 L 3739,3604"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3792,3604 L 3845,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3898,3603 L 3951,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4004,3603 L 4057,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4110,3603 L 4163,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4216,3603 L 4269,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4323,3603 L 4376,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4429,3603 L 4482,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4535,3603 L 4588,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4641,3603 L 4694,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4747,3603 L 4800,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4854,3603 L 4907,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4960,3603 L 5013,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5066,3603 L 5119,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5172,3603 L 5225,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5278,3603 L 5331,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5384,3603 L 5438,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5491,3603 L 5544,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5597,3603 L 5650,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5703,3603 L 5756,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5809,3603 L 5862,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5915,3603 L 5968,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6022,3603 L 6075,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6128,3603 L 6181,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6234,3603 L 6287,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6340,3603 L 6393,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6446,3603 L 6499,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6552,3603 L 6606,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6659,3603 L 6712,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6765,3603 L 6818,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6871,3603 L 6924,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6977,3603 L 7030,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7083,3603 L 7136,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7190,3603 L 7243,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7296,3603 L 7349,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7402,3603 L 7455,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7508,3603 L 7561,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7614,3603 L 7667,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7720,3603 L 7774,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7827,3603 L 7880,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7933,3603 L 7986,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8039,3603 L 8092,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8145,3603 L 8198,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8251,3603 L 8304,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8358,3603 L 8411,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8464,3603 L 8517,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8570,3603 L 8623,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8676,3603 L 8729,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8782,3603 L 8835,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8888,3603 L 8942,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8995,3603 L 9048,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9101,3603 L 9154,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9207,3603 L 9260,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9313,3603 L 9366,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9419,3603 L 9472,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9526,3603 L 9579,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9632,3603 L 9685,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9738,3603 L 9791,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9844,3603 L 9897,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9950,3603 L 10003,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10056,3603 L 10110,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10163,3603 L 10216,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10269,3603 L 10322,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10375,3603 L 10428,3603"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10481,3603 L 10534,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10587,3602 L 10640,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10694,3602 L 10747,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10800,3602 L 10853,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10906,3602 L 10959,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11012,3602 L 11065,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11118,3602 L 11171,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11224,3602 L 11278,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11331,3602 L 11384,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11437,3602 L 11490,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11543,3602 L 11596,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11649,3602 L 11702,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11755,3602 L 11808,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11862,3602 L 11915,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11968,3602 L 12021,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12074,3602 L 12127,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12180,3602 L 12233,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12286,3602 L 12339,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12392,3602 L 12446,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12499,3602 L 12552,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12605,3602 L 12658,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12711,3602 L 12764,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12817,3602 L 12870,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12923,3602 L 12977,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13030,3602 L 13083,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13136,3602 L 13189,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13242,3602 L 13295,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13348,3602 L 13401,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13454,3602 L 13507,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13561,3602 L 13614,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13667,3602 L 13720,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13773,3602 L 13826,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13879,3602 L 13932,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13985,3602 L 14038,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14091,3602 L 14145,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14198,3602 L 14251,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14304,3602 L 14357,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14410,3602 L 14463,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14516,3602 L 14569,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14622,3602 L 14675,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14729,3602 L 14782,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14835,3602 L 14888,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14941,3602 L 14994,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15047,3602 L 15100,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15153,3602 L 15206,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15259,3602 L 15313,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15366,3602 L 15419,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15472,3602 L 15525,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15578,3602 L 15631,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15684,3602 L 15737,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15790,3602 L 15843,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15897,3602 L 15950,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16003,3602 L 16056,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16109,3602 L 16162,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16215,3602 L 16268,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16321,3602 L 16374,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16427,3602 L 16481,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16534,3602 L 16587,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16640,3602 L 16693,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16746,3602 L 16799,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16852,3602 L 16905,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16958,3602 L 17011,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17065,3602 L 17118,3602"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17171,3601 L 17224,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17277,3601 L 17330,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17383,3601 L 17436,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17489,3601 L 17542,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17595,3601 L 17649,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17702,3601 L 17755,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17808,3601 L 17861,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17914,3601 L 17967,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18020,3601 L 18073,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18126,3601 L 18179,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18233,3601 L 18286,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18339,3601 L 18392,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18445,3601 L 18498,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18551,3601 L 18604,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18657,3601 L 18710,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18763,3601 L 18817,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18870,3601 L 18923,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18976,3601 L 19029,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19082,3601 L 19135,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19188,3601 L 19241,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19294,3601 L 19347,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19401,3601 L 19454,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19507,3601 L 19560,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19613,3601 L 19666,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19719,3601 L 19772,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19825,3601 L 19878,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19931,3601 L 19985,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20038,3601 L 20091,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20144,3601 L 20197,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20250,3601 L 20303,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20356,3601 L 20409,3601"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20462,3601 L 20500,3601"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id46">
+       <rect class="BoundingBox" stroke="none" fill="none" x="499" y="11701" width="20003" height="6"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 500,11705 L 553,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 606,11705 L 659,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 712,11705 L 765,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 819,11705 L 872,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 925,11705 L 978,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1031,11705 L 1084,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1137,11705 L 1190,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1243,11705 L 1296,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1349,11705 L 1403,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1456,11705 L 1509,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1562,11705 L 1615,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1668,11705 L 1721,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1774,11705 L 1827,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1880,11705 L 1933,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1987,11705 L 2040,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2093,11705 L 2146,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2199,11705 L 2252,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2305,11705 L 2358,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2411,11705 L 2464,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2517,11705 L 2571,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2624,11705 L 2677,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2730,11705 L 2783,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2836,11705 L 2889,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2942,11705 L 2995,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3048,11705 L 3101,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3155,11705 L 3208,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3261,11705 L 3314,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3367,11705 L 3420,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3473,11705 L 3526,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3579,11705 L 3632,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3685,11705 L 3739,11705"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3792,11705 L 3845,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3898,11704 L 3951,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4004,11704 L 4057,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4110,11704 L 4163,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4216,11704 L 4269,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4323,11704 L 4376,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4429,11704 L 4482,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4535,11704 L 4588,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4641,11704 L 4694,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4747,11704 L 4800,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4854,11704 L 4907,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4960,11704 L 5013,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5066,11704 L 5119,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5172,11704 L 5225,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5278,11704 L 5331,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5384,11704 L 5438,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5491,11704 L 5544,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5597,11704 L 5650,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5703,11704 L 5756,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5809,11704 L 5862,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5915,11704 L 5968,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6022,11704 L 6075,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6128,11704 L 6181,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6234,11704 L 6287,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6340,11704 L 6393,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6446,11704 L 6499,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6552,11704 L 6606,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6659,11704 L 6712,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6765,11704 L 6818,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6871,11704 L 6924,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6977,11704 L 7030,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7083,11704 L 7136,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7190,11704 L 7243,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7296,11704 L 7349,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7402,11704 L 7455,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7508,11704 L 7561,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7614,11704 L 7667,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7720,11704 L 7774,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7827,11704 L 7880,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7933,11704 L 7986,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8039,11704 L 8092,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8145,11704 L 8198,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8251,11704 L 8304,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8358,11704 L 8411,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8464,11704 L 8517,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8570,11704 L 8623,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8676,11704 L 8729,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8782,11704 L 8835,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8888,11704 L 8942,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8995,11704 L 9048,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9101,11704 L 9154,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9207,11704 L 9260,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9313,11704 L 9366,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9419,11704 L 9472,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9526,11704 L 9579,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9632,11704 L 9685,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9738,11704 L 9791,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9844,11704 L 9897,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9950,11704 L 10003,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10056,11704 L 10110,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10163,11704 L 10216,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10269,11704 L 10322,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10375,11704 L 10428,11704"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10481,11704 L 10534,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10587,11703 L 10640,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10694,11703 L 10747,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10800,11703 L 10853,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10906,11703 L 10959,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11012,11703 L 11065,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11118,11703 L 11171,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11224,11703 L 11278,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11331,11703 L 11384,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11437,11703 L 11490,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11543,11703 L 11596,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11649,11703 L 11702,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11755,11703 L 11808,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11862,11703 L 11915,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11968,11703 L 12021,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12074,11703 L 12127,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12180,11703 L 12233,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12286,11703 L 12339,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12392,11703 L 12446,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12499,11703 L 12552,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12605,11703 L 12658,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12711,11703 L 12764,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12817,11703 L 12870,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12923,11703 L 12977,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13030,11703 L 13083,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13136,11703 L 13189,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13242,11703 L 13295,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13348,11703 L 13401,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13454,11703 L 13507,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13561,11703 L 13614,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13667,11703 L 13720,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13773,11703 L 13826,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13879,11703 L 13932,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13985,11703 L 14038,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14091,11703 L 14145,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14198,11703 L 14251,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14304,11703 L 14357,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14410,11703 L 14463,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14516,11703 L 14569,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14622,11703 L 14675,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14729,11703 L 14782,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14835,11703 L 14888,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14941,11703 L 14994,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15047,11703 L 15100,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15153,11703 L 15206,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15259,11703 L 15313,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15366,11703 L 15419,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15472,11703 L 15525,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15578,11703 L 15631,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15684,11703 L 15737,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15790,11703 L 15843,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15897,11703 L 15950,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16003,11703 L 16056,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16109,11703 L 16162,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16215,11703 L 16268,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16321,11703 L 16374,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16427,11703 L 16481,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16534,11703 L 16587,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16640,11703 L 16693,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16746,11703 L 16799,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16852,11703 L 16905,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16958,11703 L 17011,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17065,11703 L 17118,11703"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17171,11702 L 17224,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17277,11702 L 17330,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17383,11702 L 17436,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17489,11702 L 17542,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17595,11702 L 17649,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17702,11702 L 17755,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17808,11702 L 17861,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17914,11702 L 17967,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18020,11702 L 18073,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18126,11702 L 18179,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18233,11702 L 18286,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18339,11702 L 18392,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18445,11702 L 18498,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18551,11702 L 18604,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18657,11702 L 18710,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18763,11702 L 18817,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18870,11702 L 18923,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18976,11702 L 19029,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19082,11702 L 19135,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19188,11702 L 19241,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19294,11702 L 19347,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19401,11702 L 19454,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19507,11702 L 19560,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19613,11702 L 19666,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19719,11702 L 19772,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19825,11702 L 19878,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19931,11702 L 19985,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20038,11702 L 20091,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20144,11702 L 20197,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20250,11702 L 20303,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20356,11702 L 20409,11702"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20462,11702 L 20500,11702"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id47">
+       <rect class="BoundingBox" stroke="none" fill="none" x="499" y="21402" width="20003" height="6"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 500,21406 L 553,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 606,21406 L 659,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 712,21406 L 765,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 819,21406 L 872,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 925,21406 L 978,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1031,21406 L 1084,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1137,21406 L 1190,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1243,21406 L 1296,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1349,21406 L 1403,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1456,21406 L 1509,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1562,21406 L 1615,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1668,21406 L 1721,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1774,21406 L 1827,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1880,21406 L 1933,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1987,21406 L 2040,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2093,21406 L 2146,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2199,21406 L 2252,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2305,21406 L 2358,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2411,21406 L 2464,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2517,21406 L 2571,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2624,21406 L 2677,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2730,21406 L 2783,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2836,21406 L 2889,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2942,21406 L 2995,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3048,21406 L 3101,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3155,21406 L 3208,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3261,21406 L 3314,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3367,21406 L 3420,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3473,21406 L 3526,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3579,21406 L 3632,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3685,21406 L 3739,21406"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3792,21406 L 3845,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3898,21405 L 3951,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4004,21405 L 4057,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4110,21405 L 4163,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4216,21405 L 4269,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4323,21405 L 4376,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4429,21405 L 4482,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4535,21405 L 4588,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4641,21405 L 4694,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4747,21405 L 4800,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4854,21405 L 4907,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4960,21405 L 5013,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5066,21405 L 5119,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5172,21405 L 5225,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5278,21405 L 5331,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5384,21405 L 5438,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5491,21405 L 5544,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5597,21405 L 5650,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5703,21405 L 5756,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5809,21405 L 5862,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5915,21405 L 5968,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6022,21405 L 6075,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6128,21405 L 6181,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6234,21405 L 6287,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6340,21405 L 6393,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6446,21405 L 6499,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6552,21405 L 6606,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6659,21405 L 6712,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6765,21405 L 6818,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6871,21405 L 6924,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6977,21405 L 7030,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7083,21405 L 7136,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7190,21405 L 7243,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7296,21405 L 7349,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7402,21405 L 7455,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7508,21405 L 7561,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7614,21405 L 7667,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7720,21405 L 7774,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7827,21405 L 7880,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7933,21405 L 7986,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8039,21405 L 8092,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8145,21405 L 8198,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8251,21405 L 8304,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8358,21405 L 8411,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8464,21405 L 8517,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8570,21405 L 8623,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8676,21405 L 8729,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8782,21405 L 8835,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8888,21405 L 8942,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8995,21405 L 9048,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9101,21405 L 9154,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9207,21405 L 9260,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9313,21405 L 9366,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9419,21405 L 9472,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9526,21405 L 9579,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9632,21405 L 9685,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9738,21405 L 9791,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9844,21405 L 9897,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9950,21405 L 10003,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10056,21405 L 10110,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10163,21405 L 10216,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10269,21405 L 10322,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10375,21405 L 10428,21405"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10481,21405 L 10534,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10587,21404 L 10640,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10694,21404 L 10747,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10800,21404 L 10853,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10906,21404 L 10959,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11012,21404 L 11065,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11118,21404 L 11171,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11224,21404 L 11278,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11331,21404 L 11384,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11437,21404 L 11490,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11543,21404 L 11596,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11649,21404 L 11702,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11755,21404 L 11808,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11862,21404 L 11915,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11968,21404 L 12021,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12074,21404 L 12127,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12180,21404 L 12233,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12286,21404 L 12339,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12392,21404 L 12446,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12499,21404 L 12552,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12605,21404 L 12658,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12711,21404 L 12764,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12817,21404 L 12870,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12923,21404 L 12977,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13030,21404 L 13083,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13136,21404 L 13189,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13242,21404 L 13295,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13348,21404 L 13401,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13454,21404 L 13507,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13561,21404 L 13614,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13667,21404 L 13720,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13773,21404 L 13826,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13879,21404 L 13932,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13985,21404 L 14038,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14091,21404 L 14145,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14198,21404 L 14251,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14304,21404 L 14357,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14410,21404 L 14463,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14516,21404 L 14569,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14622,21404 L 14675,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14729,21404 L 14782,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14835,21404 L 14888,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14941,21404 L 14994,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15047,21404 L 15100,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15153,21404 L 15206,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15259,21404 L 15313,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15366,21404 L 15419,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15472,21404 L 15525,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15578,21404 L 15631,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15684,21404 L 15737,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15790,21404 L 15843,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15897,21404 L 15950,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16003,21404 L 16056,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16109,21404 L 16162,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16215,21404 L 16268,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16321,21404 L 16374,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16427,21404 L 16481,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16534,21404 L 16587,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16640,21404 L 16693,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16746,21404 L 16799,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16852,21404 L 16905,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16958,21404 L 17011,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17065,21404 L 17118,21404"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17171,21403 L 17224,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17277,21403 L 17330,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17383,21403 L 17436,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17489,21403 L 17542,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17595,21403 L 17649,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17702,21403 L 17755,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17808,21403 L 17861,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17914,21403 L 17967,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18020,21403 L 18073,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18126,21403 L 18179,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18233,21403 L 18286,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18339,21403 L 18392,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18445,21403 L 18498,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18551,21403 L 18604,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18657,21403 L 18710,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18763,21403 L 18817,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18870,21403 L 18923,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18976,21403 L 19029,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19082,21403 L 19135,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19188,21403 L 19241,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19294,21403 L 19347,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19401,21403 L 19454,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19507,21403 L 19560,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19613,21403 L 19666,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19719,21403 L 19772,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19825,21403 L 19878,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19931,21403 L 19985,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20038,21403 L 20091,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20144,21403 L 20197,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20250,21403 L 20303,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20356,21403 L 20409,21403"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20462,21403 L 20500,21403"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id48">
+       <rect class="BoundingBox" stroke="none" fill="none" x="499" y="26503" width="20003" height="6"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 500,26507 L 553,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 606,26507 L 659,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 712,26507 L 765,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 819,26507 L 872,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 925,26507 L 978,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1031,26507 L 1084,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1137,26507 L 1190,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1243,26507 L 1296,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1349,26507 L 1403,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1456,26507 L 1509,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1562,26507 L 1615,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1668,26507 L 1721,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1774,26507 L 1827,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1880,26507 L 1933,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 1987,26507 L 2040,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2093,26507 L 2146,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2199,26507 L 2252,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2305,26507 L 2358,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2411,26507 L 2464,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2517,26507 L 2571,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2624,26507 L 2677,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2730,26507 L 2783,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2836,26507 L 2889,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 2942,26507 L 2995,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3048,26507 L 3101,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3155,26507 L 3208,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3261,26507 L 3314,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3367,26507 L 3420,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3473,26507 L 3526,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3579,26507 L 3632,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3685,26507 L 3739,26507"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3792,26507 L 3845,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 3898,26506 L 3951,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4004,26506 L 4057,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4110,26506 L 4163,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4216,26506 L 4269,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4323,26506 L 4376,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4429,26506 L 4482,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4535,26506 L 4588,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4641,26506 L 4694,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4747,26506 L 4800,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4854,26506 L 4907,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 4960,26506 L 5013,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5066,26506 L 5119,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5172,26506 L 5225,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5278,26506 L 5331,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5384,26506 L 5438,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5491,26506 L 5544,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5597,26506 L 5650,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5703,26506 L 5756,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5809,26506 L 5862,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 5915,26506 L 5968,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6022,26506 L 6075,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6128,26506 L 6181,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6234,26506 L 6287,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6340,26506 L 6393,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6446,26506 L 6499,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6552,26506 L 6606,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6659,26506 L 6712,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6765,26506 L 6818,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6871,26506 L 6924,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 6977,26506 L 7030,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7083,26506 L 7136,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7190,26506 L 7243,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7296,26506 L 7349,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7402,26506 L 7455,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7508,26506 L 7561,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7614,26506 L 7667,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7720,26506 L 7774,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7827,26506 L 7880,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 7933,26506 L 7986,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8039,26506 L 8092,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8145,26506 L 8198,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8251,26506 L 8304,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8358,26506 L 8411,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8464,26506 L 8517,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8570,26506 L 8623,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8676,26506 L 8729,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8782,26506 L 8835,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8888,26506 L 8942,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 8995,26506 L 9048,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9101,26506 L 9154,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9207,26506 L 9260,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9313,26506 L 9366,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9419,26506 L 9472,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9526,26506 L 9579,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9632,26506 L 9685,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9738,26506 L 9791,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9844,26506 L 9897,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 9950,26506 L 10003,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10056,26506 L 10110,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10163,26506 L 10216,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10269,26506 L 10322,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10375,26506 L 10428,26506"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10481,26506 L 10534,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10587,26505 L 10640,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10694,26505 L 10747,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10800,26505 L 10853,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 10906,26505 L 10959,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11012,26505 L 11065,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11118,26505 L 11171,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11224,26505 L 11278,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11331,26505 L 11384,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11437,26505 L 11490,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11543,26505 L 11596,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11649,26505 L 11702,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11755,26505 L 11808,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11862,26505 L 11915,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 11968,26505 L 12021,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12074,26505 L 12127,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12180,26505 L 12233,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12286,26505 L 12339,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12392,26505 L 12446,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12499,26505 L 12552,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12605,26505 L 12658,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12711,26505 L 12764,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12817,26505 L 12870,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 12923,26505 L 12977,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13030,26505 L 13083,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13136,26505 L 13189,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13242,26505 L 13295,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13348,26505 L 13401,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13454,26505 L 13507,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13561,26505 L 13614,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13667,26505 L 13720,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13773,26505 L 13826,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13879,26505 L 13932,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 13985,26505 L 14038,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14091,26505 L 14145,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14198,26505 L 14251,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14304,26505 L 14357,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14410,26505 L 14463,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14516,26505 L 14569,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14622,26505 L 14675,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14729,26505 L 14782,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14835,26505 L 14888,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 14941,26505 L 14994,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15047,26505 L 15100,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15153,26505 L 15206,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15259,26505 L 15313,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15366,26505 L 15419,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15472,26505 L 15525,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15578,26505 L 15631,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15684,26505 L 15737,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15790,26505 L 15843,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 15897,26505 L 15950,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16003,26505 L 16056,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16109,26505 L 16162,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16215,26505 L 16268,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16321,26505 L 16374,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16427,26505 L 16481,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16534,26505 L 16587,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16640,26505 L 16693,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16746,26505 L 16799,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16852,26505 L 16905,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 16958,26505 L 17011,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17065,26505 L 17118,26505"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17171,26504 L 17224,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17277,26504 L 17330,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17383,26504 L 17436,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17489,26504 L 17542,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17595,26504 L 17649,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17702,26504 L 17755,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17808,26504 L 17861,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 17914,26504 L 17967,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18020,26504 L 18073,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18126,26504 L 18179,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18233,26504 L 18286,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18339,26504 L 18392,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18445,26504 L 18498,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18551,26504 L 18604,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18657,26504 L 18710,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18763,26504 L 18817,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18870,26504 L 18923,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 18976,26504 L 19029,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19082,26504 L 19135,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19188,26504 L 19241,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19294,26504 L 19347,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19401,26504 L 19454,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19507,26504 L 19560,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19613,26504 L 19666,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19719,26504 L 19772,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19825,26504 L 19878,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 19931,26504 L 19985,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20038,26504 L 20091,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20144,26504 L 20197,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20250,26504 L 20303,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20356,26504 L 20409,26504"/>
+       <path fill="none" stroke="rgb(0,0,0)" d="M 20462,26504 L 20500,26504"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id49">
+       <rect class="BoundingBox" stroke="none" fill="none" x="500" y="554" width="5081" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="750" y="1128"/><tspan class="TextPosition" x="750" y="1128"><tspan fill="rgb(0,0,0)" stroke="none">sL1 - Data</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id50">
+       <rect class="BoundingBox" stroke="none" fill="none" x="500" y="8554" width="4827" height="1362"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="750" y="9128"/><tspan class="TextPosition" x="750" y="9128"><tspan fill="rgb(0,0,0)" stroke="none">sL2 - Data </tspan></tspan><tspan class="TextPosition" x="750" y="9683"/><tspan class="TextPosition" x="750" y="9683"><tspan fill="rgb(0,0,0)" stroke="none">processing</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id51">
+       <rect class="BoundingBox" stroke="none" fill="none" x="500" y="19754" width="5081" height="1362"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="750" y="20328"/><tspan class="TextPosition" x="750" y="20328"><tspan fill="rgb(0,0,0)" stroke="none">sL3 - Data </tspan></tspan><tspan class="TextPosition" x="750" y="20883"/><tspan class="TextPosition" x="750" y="20883"><tspan fill="rgb(0,0,0)" stroke="none">presentation</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id52">
+       <rect class="BoundingBox" stroke="none" fill="none" x="500" y="24554" width="5081" height="1362"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="750" y="25128"/><tspan class="TextPosition" x="750" y="25128"><tspan fill="rgb(0,0,0)" stroke="none">sL4 - Report </tspan></tspan><tspan class="TextPosition" x="750" y="25683"/><tspan class="TextPosition" x="750" y="25683"><tspan fill="rgb(0,0,0)" stroke="none">generation</tspan></tspan></tspan></text>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/docs/report/csit_framework_documentation/pal_layers.svg b/docs/report/csit_framework_documentation/pal_layers.svg
new file mode 100644 (file)
index 0000000..dfb05d3
--- /dev/null
@@ -0,0 +1,441 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<svg version="1.2" baseProfile="tiny" width="215.9mm" height="152.4mm" viewBox="0 0 21590 15240" preserveAspectRatio="xMidYMid" fill-rule="evenodd" stroke-width="28.222" stroke-linejoin="round" xmlns="http://www.w3.org/2000/svg" xmlns:ooo="http://xml.openoffice.org/svg/export" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:presentation="http://sun.com/xmlns/staroffice/presentation" xmlns:smil="http://www.w3.org/2001/SMIL20/" xmlns:anim="urn:oasis:names:tc:opendocument:xmlns:animation:1.0" xml:space="preserve">
+ <defs class="ClipPathGroup">
+  <clipPath id="presentation_clip_path" clipPathUnits="userSpaceOnUse">
+   <rect x="0" y="0" width="21590" height="15240"/>
+  </clipPath>
+ </defs>
+ <defs>
+  <font id="EmbeddedFont_1" horiz-adv-x="2048">
+   <font-face font-family="Liberation Sans embedded" units-per-em="2048" font-weight="normal" font-style="normal" ascent="1852" descent="423"/>
+   <missing-glyph horiz-adv-x="2048" d="M 0,0 L 2047,0 2047,2047 0,2047 0,0 Z"/>
+   <glyph unicode="→" horiz-adv-x="1218" d="M 1407,637 C 1388,660 1368,687 1349,720 1329,753 1309,791 1288,834 L 1360,834 C 1399,789 1440,747 1483,710 1526,673 1575,640 1630,612 L 1630,576 C 1575,548 1526,515 1483,478 1440,441 1399,399 1360,354 L 1288,354 C 1309,397 1329,435 1349,468 1368,501 1388,528 1407,551 L 418,551 418,637 1407,637 Z"/>
+   <glyph unicode="y" horiz-adv-x="1059" d="M 604,1 C 579,-64 553,-123 527,-175 500,-227 471,-272 438,-309 405,-346 369,-374 329,-394 289,-413 243,-423 191,-423 168,-423 147,-423 128,-423 109,-423 88,-420 67,-414 L 67,-279 C 80,-282 94,-284 110,-284 126,-284 140,-284 151,-284 204,-284 253,-264 298,-225 343,-186 383,-123 417,-37 L 434,6 5,1082 197,1082 425,484 C 432,466 440,442 451,412 461,382 471,352 482,322 492,292 501,265 509,241 517,217 522,202 523,196 525,203 530,218 538,240 545,261 554,285 564,312 573,339 583,366 593,393 603,420 611,444 618,464 L 830,1082 1020,1082 604,1 Z"/>
+   <glyph unicode="x" horiz-adv-x="1033" d="M 801,0 L 510,444 217,0 23,0 408,556 41,1082 240,1082 510,661 778,1082 979,1082 612,558 1002,0 801,0 Z"/>
+   <glyph unicode="v" horiz-adv-x="1059" d="M 613,0 L 400,0 7,1082 199,1082 437,378 C 442,363 447,346 454,325 460,304 466,282 473,259 480,236 486,215 492,194 497,173 502,155 506,141 510,155 515,173 522,194 528,215 534,236 541,258 548,280 555,302 562,323 569,344 575,361 580,376 L 826,1082 1017,1082 613,0 Z"/>
+   <glyph unicode="u" horiz-adv-x="901" d="M 314,1082 L 314,396 C 314,343 318,299 326,264 333,229 346,200 363,179 380,157 403,142 432,133 460,124 495,119 537,119 580,119 618,127 653,142 687,157 716,178 741,207 765,235 784,270 797,312 810,353 817,401 817,455 L 817,1082 997,1082 997,231 C 997,208 997,185 998,160 998,135 998,111 999,89 1000,66 1000,47 1001,31 1002,15 1002,5 1003,0 L 833,0 C 832,3 832,12 831,27 830,42 830,59 829,78 828,97 827,116 826,136 825,155 825,172 825,185 L 822,185 C 805,154 786,125 765,100 744,75 720,53 693,36 666,18 634,4 599,-6 564,-15 523,-20 476,-20 416,-20 364,-13 321,2 278,17 242,39 214,70 186,101 166,140 153,188 140,236 133,294 133,361 L 133,1082 314,1082 Z"/>
+   <glyph unicode="t" horiz-adv-x="531" d="M 554,8 C 527,1 499,-5 471,-10 442,-14 409,-16 372,-16 228,-16 156,66 156,229 L 156,951 31,951 31,1082 163,1082 216,1324 336,1324 336,1082 536,1082 536,951 336,951 336,268 C 336,216 345,180 362,159 379,138 408,127 450,127 467,127 484,128 501,131 517,134 535,137 554,141 L 554,8 Z"/>
+   <glyph unicode="s" horiz-adv-x="927" d="M 950,299 C 950,248 940,203 921,164 901,124 872,91 835,64 798,37 752,16 698,2 643,-13 581,-20 511,-20 448,-20 392,-15 342,-6 291,4 247,20 209,41 171,62 139,91 114,126 88,161 69,203 57,254 L 216,285 C 231,227 263,185 311,158 359,131 426,117 511,117 550,117 585,120 618,125 650,130 678,140 701,153 724,166 743,183 756,205 769,226 775,253 775,285 775,318 767,345 752,366 737,387 715,404 688,418 661,432 628,444 589,455 550,465 507,476 460,489 417,500 374,513 331,527 288,541 250,560 216,583 181,606 153,634 132,668 111,702 100,745 100,796 100,895 135,970 206,1022 276,1073 378,1099 513,1099 632,1099 727,1078 798,1036 868,994 912,927 931,834 L 769,814 C 763,842 752,866 736,885 720,904 701,919 678,931 655,942 630,951 602,956 573,961 544,963 513,963 432,963 372,951 333,926 294,901 275,864 275,814 275,785 282,761 297,742 311,723 331,707 357,694 382,681 413,669 449,660 485,650 525,640 568,629 597,622 626,614 656,606 686,597 715,587 744,576 772,564 799,550 824,535 849,519 870,500 889,478 908,456 923,430 934,401 945,372 950,338 950,299 Z"/>
+   <glyph unicode="r" horiz-adv-x="556" d="M 142,0 L 142,830 C 142,853 142,876 142,900 141,923 141,946 140,968 139,990 139,1011 138,1030 137,1049 137,1067 136,1082 L 306,1082 C 307,1067 308,1049 309,1030 310,1010 311,990 312,969 313,948 313,929 314,910 314,891 314,874 314,861 L 318,861 C 331,902 344,938 359,969 373,999 390,1024 409,1044 428,1063 451,1078 478,1088 505,1097 537,1102 575,1102 590,1102 604,1101 617,1099 630,1096 641,1094 648,1092 L 648,927 C 636,930 622,933 606,935 590,936 572,937 552,937 511,937 476,928 447,909 418,890 394,865 376,832 357,799 344,759 335,714 326,668 322,618 322,564 L 322,0 142,0 Z"/>
+   <glyph unicode="p" horiz-adv-x="953" d="M 1053,546 C 1053,464 1046,388 1033,319 1020,250 998,190 967,140 936,90 895,51 844,23 793,-6 730,-20 655,-20 578,-20 510,-5 452,24 394,53 350,101 319,168 L 314,168 C 315,167 315,161 316,150 316,139 316,126 317,110 317,94 317,76 318,57 318,37 318,17 318,-2 L 318,-425 138,-425 138,861 C 138,887 138,912 138,936 137,960 137,982 136,1002 135,1021 135,1038 134,1052 133,1066 133,1076 132,1082 L 306,1082 C 307,1080 308,1073 309,1061 310,1049 311,1035 312,1018 313,1001 314,982 315,963 316,944 316,925 316,908 L 320,908 C 337,943 356,972 377,997 398,1021 423,1041 450,1057 477,1072 508,1084 542,1091 575,1098 613,1101 655,1101 730,1101 793,1088 844,1061 895,1034 936,997 967,949 998,900 1020,842 1033,774 1046,705 1053,629 1053,546 Z M 864,542 C 864,609 860,668 852,720 844,772 830,816 811,852 791,888 765,915 732,934 699,953 658,962 609,962 569,962 531,956 496,945 461,934 430,912 404,880 377,848 356,804 341,748 326,691 318,618 318,528 318,451 324,387 337,334 350,281 368,238 393,205 417,172 447,149 483,135 519,120 560,113 607,113 657,113 699,123 732,142 765,161 791,189 811,226 830,263 844,308 852,361 860,414 864,474 864,542 Z"/>
+   <glyph unicode="o" horiz-adv-x="980" d="M 1053,542 C 1053,353 1011,212 928,119 845,26 724,-20 565,-20 490,-20 422,-9 363,14 304,37 254,71 213,118 172,165 140,223 119,294 97,364 86,447 86,542 86,915 248,1102 571,1102 655,1102 728,1090 789,1067 850,1044 900,1009 939,962 978,915 1006,857 1025,787 1044,717 1053,635 1053,542 Z M 864,542 C 864,626 858,695 845,750 832,805 813,848 788,881 763,914 732,937 696,950 660,963 619,969 574,969 528,969 487,962 450,949 413,935 381,912 355,879 329,846 309,802 296,747 282,692 275,624 275,542 275,458 282,389 297,334 312,279 332,235 358,202 383,169 414,146 449,133 484,120 522,113 563,113 609,113 651,120 688,133 725,146 757,168 783,201 809,234 829,278 843,333 857,388 864,458 864,542 Z"/>
+   <glyph unicode="n" horiz-adv-x="900" d="M 825,0 L 825,686 C 825,739 821,783 814,818 806,853 793,882 776,904 759,925 736,941 708,950 679,959 644,963 602,963 559,963 521,956 487,941 452,926 423,904 399,876 374,847 355,812 342,771 329,729 322,681 322,627 L 322,0 142,0 142,851 C 142,874 142,898 142,923 141,948 141,971 140,994 139,1016 139,1035 138,1051 137,1067 137,1077 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 312,966 313,947 314,927 314,910 314,897 L 317,897 C 334,928 353,957 374,982 395,1007 419,1029 446,1047 473,1064 505,1078 540,1088 575,1097 616,1102 663,1102 723,1102 775,1095 818,1080 861,1065 897,1043 925,1012 953,981 974,942 987,894 1000,845 1006,788 1006,721 L 1006,0 825,0 Z"/>
+   <glyph unicode="m" horiz-adv-x="1456" d="M 768,0 L 768,686 C 768,739 765,783 758,818 751,853 740,882 725,904 709,925 688,941 663,950 638,959 607,963 570,963 532,963 498,956 467,941 436,926 410,904 389,876 367,847 350,812 339,771 327,729 321,681 321,627 L 321,0 142,0 142,851 C 142,874 142,898 142,923 141,948 141,971 140,994 139,1016 139,1035 138,1051 137,1067 137,1077 136,1082 L 306,1082 C 307,1079 307,1070 308,1055 309,1040 310,1024 311,1005 312,986 312,966 313,947 314,927 314,910 314,897 L 317,897 C 333,928 350,957 369,982 388,1007 410,1029 435,1047 460,1064 488,1078 521,1088 553,1097 590,1102 633,1102 715,1102 780,1086 828,1053 875,1020 908,968 927,897 L 930,897 C 946,928 964,957 984,982 1004,1007 1027,1029 1054,1047 1081,1064 1111,1078 1144,1088 1177,1097 1215,1102 1258,1102 1313,1102 1360,1095 1400,1080 1439,1065 1472,1043 1497,1012 1522,981 1541,942 1553,894 1565,845 1571,788 1571,721 L 1571,0 1393,0 1393,686 C 1393,739 1390,783 1383,818 1376,853 1365,882 1350,904 1334,925 1313,941 1288,950 1263,959 1232,963 1195,963 1157,963 1123,956 1092,942 1061,927 1035,906 1014,878 992,850 975,815 964,773 952,731 946,682 946,627 L 946,0 768,0 Z"/>
+   <glyph unicode="l" horiz-adv-x="187" d="M 138,0 L 138,1484 318,1484 318,0 138,0 Z"/>
+   <glyph unicode="k" horiz-adv-x="927" d="M 816,0 L 450,494 318,385 318,0 138,0 138,1484 318,1484 318,557 793,1082 1004,1082 565,617 1027,0 816,0 Z"/>
+   <glyph unicode="i" horiz-adv-x="187" d="M 137,1312 L 137,1484 317,1484 317,1312 137,1312 Z M 137,0 L 137,1082 317,1082 317,0 137,0 Z"/>
+   <glyph unicode="h" horiz-adv-x="874" d="M 317,897 C 337,934 359,965 382,991 405,1016 431,1037 459,1054 487,1071 518,1083 551,1091 584,1098 622,1102 663,1102 732,1102 789,1093 834,1074 878,1055 913,1029 939,996 964,962 982,922 992,875 1001,828 1006,777 1006,721 L 1006,0 825,0 825,686 C 825,732 822,772 817,807 811,842 800,871 784,894 768,917 745,934 716,946 687,957 649,963 602,963 559,963 521,955 487,940 452,925 423,903 399,875 374,847 355,813 342,773 329,733 322,688 322,638 L 322,0 142,0 142,1484 322,1484 322,1098 C 322,1076 322,1054 321,1032 320,1010 320,990 319,971 318,952 317,937 316,924 315,911 315,902 314,897 L 317,897 Z"/>
+   <glyph unicode="g" horiz-adv-x="954" d="M 548,-425 C 486,-425 431,-419 383,-406 335,-393 294,-375 260,-352 226,-328 198,-300 177,-267 156,-234 140,-198 131,-158 L 312,-132 C 324,-182 351,-220 392,-248 433,-274 486,-288 553,-288 594,-288 631,-282 664,-271 697,-260 726,-241 749,-217 772,-191 790,-159 803,-119 816,-79 822,-30 822,27 L 822,201 820,201 C 807,174 790,148 771,123 751,98 727,75 699,56 670,37 637,21 600,10 563,-2 520,-8 472,-8 403,-8 345,4 296,27 247,50 207,84 176,130 145,176 122,233 108,302 93,370 86,449 86,539 86,626 93,704 108,773 122,842 145,901 178,950 210,998 252,1035 304,1061 355,1086 418,1099 492,1099 569,1099 635,1082 692,1047 748,1012 791,962 822,897 L 824,897 C 824,914 825,932 826,953 827,974 828,993 829,1012 830,1030 831,1046 832,1059 833,1072 835,1080 836,1082 L 1007,1082 C 1006,1076 1006,1066 1005,1052 1004,1037 1004,1020 1003,1000 1002,980 1002,958 1002,934 1001,909 1001,884 1001,858 L 1001,31 C 1001,-120 964,-234 890,-311 815,-387 701,-425 548,-425 Z M 822,541 C 822,616 814,681 798,735 781,788 760,832 733,866 706,900 676,925 642,941 607,957 572,965 536,965 490,965 451,957 418,941 385,925 357,900 336,866 314,831 298,787 288,734 277,680 272,616 272,541 272,463 277,398 288,345 298,292 314,249 335,216 356,183 383,160 416,146 449,132 488,125 533,125 569,125 604,133 639,148 673,163 704,188 731,221 758,254 780,297 797,350 814,403 822,466 822,541 Z"/>
+   <glyph unicode="f" horiz-adv-x="557" d="M 361,951 L 361,0 181,0 181,951 29,951 29,1082 181,1082 181,1204 C 181,1243 185,1280 192,1314 199,1347 213,1377 233,1402 252,1427 279,1446 313,1461 347,1475 391,1482 445,1482 466,1482 489,1481 512,1479 535,1477 555,1474 572,1470 L 572,1333 C 561,1335 548,1337 533,1339 518,1340 504,1341 492,1341 465,1341 444,1337 427,1330 410,1323 396,1312 387,1299 377,1285 370,1268 367,1248 363,1228 361,1205 361,1179 L 361,1082 572,1082 572,951 361,951 Z"/>
+   <glyph unicode="e" horiz-adv-x="980" d="M 276,503 C 276,446 282,394 294,347 305,299 323,258 348,224 372,189 403,163 441,144 479,125 525,115 578,115 656,115 719,131 766,162 813,193 844,233 861,281 L 1019,236 C 1008,206 992,176 972,146 951,115 924,88 890,64 856,39 814,19 763,4 712,-12 650,-20 578,-20 418,-20 296,28 213,123 129,218 87,360 87,548 87,649 100,735 125,806 150,876 185,933 229,977 273,1021 324,1053 383,1073 442,1092 504,1102 571,1102 662,1102 738,1087 799,1058 860,1029 909,988 946,937 983,885 1009,824 1025,754 1040,684 1048,608 1048,527 L 1048,503 276,503 Z M 862,641 C 852,755 823,838 775,891 727,943 658,969 568,969 538,969 507,964 474,955 441,945 410,928 382,903 354,878 330,845 311,803 292,760 281,706 278,641 L 862,641 Z"/>
+   <glyph unicode="d" horiz-adv-x="954" d="M 821,174 C 788,105 744,55 689,25 634,-5 565,-20 484,-20 347,-20 247,26 183,118 118,210 86,349 86,536 86,913 219,1102 484,1102 566,1102 634,1087 689,1057 744,1027 788,979 821,914 L 823,914 C 823,921 823,931 823,946 822,960 822,975 822,991 821,1006 821,1021 821,1035 821,1049 821,1059 821,1065 L 821,1484 1001,1484 1001,223 C 1001,197 1001,172 1002,148 1002,124 1002,102 1003,82 1004,62 1004,45 1005,31 1006,16 1006,6 1007,0 L 835,0 C 834,7 833,16 832,29 831,41 830,55 829,71 828,87 827,104 826,122 825,139 825,157 825,174 L 821,174 Z M 275,542 C 275,467 280,403 289,350 298,297 313,253 334,219 355,184 381,159 413,143 445,127 484,119 530,119 577,119 619,127 656,142 692,157 722,182 747,217 771,251 789,296 802,351 815,406 821,474 821,554 821,631 815,696 802,749 789,802 771,844 746,877 721,910 691,933 656,948 620,962 579,969 532,969 488,969 450,961 418,946 386,931 359,906 338,872 317,838 301,794 291,740 280,685 275,619 275,542 Z"/>
+   <glyph unicode="c" horiz-adv-x="875" d="M 275,546 C 275,484 280,427 289,375 298,323 313,278 334,241 355,203 384,174 419,153 454,132 497,122 548,122 612,122 666,139 709,173 752,206 778,258 788,328 L 970,328 C 964,283 951,239 931,197 911,155 884,118 850,86 815,54 773,28 724,9 675,-10 618,-20 553,-20 468,-20 396,-6 337,23 278,52 230,91 193,142 156,192 129,251 112,320 95,388 87,462 87,542 87,615 93,679 105,735 117,790 134,839 156,881 177,922 203,957 232,986 261,1014 293,1037 328,1054 362,1071 398,1083 436,1091 474,1098 512,1102 551,1102 612,1102 666,1094 713,1077 760,1060 801,1038 836,1009 870,980 898,945 919,906 940,867 955,824 964,779 L 779,765 C 770,825 746,873 708,908 670,943 616,961 546,961 495,961 452,953 418,936 383,919 355,893 334,859 313,824 298,781 289,729 280,677 275,616 275,546 Z"/>
+   <glyph unicode="b" horiz-adv-x="953" d="M 1053,546 C 1053,169 920,-20 655,-20 573,-20 505,-5 451,25 396,54 352,102 318,168 L 316,168 C 316,151 316,133 315,114 314,95 313,78 312,62 311,46 310,32 309,21 308,10 307,3 306,0 L 132,0 C 133,6 133,16 134,31 135,45 135,62 136,82 137,102 137,124 138,148 138,172 138,197 138,223 L 138,1484 318,1484 318,1061 C 318,1041 318,1022 318,1004 317,985 317,969 316,955 315,938 315,923 314,908 L 318,908 C 351,977 396,1027 451,1057 506,1087 574,1102 655,1102 792,1102 892,1056 957,964 1021,872 1053,733 1053,546 Z M 864,540 C 864,615 859,679 850,732 841,785 826,829 805,864 784,898 758,923 726,939 694,955 655,963 609,963 562,963 520,955 484,940 447,925 417,900 393,866 368,832 350,787 337,732 324,677 318,609 318,529 318,452 324,387 337,334 350,281 368,239 393,206 417,173 447,149 483,135 519,120 560,113 607,113 651,113 689,121 721,136 753,151 780,176 801,210 822,244 838,288 849,343 859,397 864,463 864,540 Z"/>
+   <glyph unicode="a" horiz-adv-x="1060" d="M 414,-20 C 305,-20 224,9 169,66 114,124 87,203 87,303 87,375 101,434 128,480 155,526 190,562 234,588 277,614 327,632 383,642 439,652 496,657 554,657 L 797,657 797,717 C 797,762 792,800 783,832 774,863 759,889 740,908 721,928 697,942 668,951 639,960 604,965 565,965 530,965 499,963 471,958 443,953 419,944 398,931 377,918 361,900 348,878 335,855 327,827 323,793 L 135,810 C 142,853 154,892 173,928 192,963 218,994 253,1020 287,1046 330,1066 382,1081 433,1095 496,1102 569,1102 705,1102 807,1071 876,1009 945,946 979,856 979,738 L 979,272 C 979,219 986,179 1000,152 1014,125 1041,111 1080,111 1090,111 1100,112 1110,113 1120,114 1130,116 1139,118 L 1139,6 C 1116,1 1094,-3 1072,-6 1049,-9 1025,-10 1000,-10 966,-10 937,-5 913,4 888,13 868,26 853,45 838,63 826,86 818,113 810,140 805,171 803,207 L 797,207 C 778,172 757,141 734,113 711,85 684,61 653,42 622,22 588,7 549,-4 510,-15 465,-20 414,-20 Z M 455,115 C 512,115 563,125 606,146 649,167 684,194 713,226 741,259 762,294 776,332 790,371 797,408 797,443 L 797,531 600,531 C 556,531 514,528 475,522 435,517 400,506 370,489 340,472 316,449 299,418 281,388 272,349 272,300 272,241 288,195 320,163 351,131 396,115 455,115 Z"/>
+   <glyph unicode="Z" horiz-adv-x="1139" d="M 1187,0 L 65,0 65,143 923,1253 138,1253 138,1409 1140,1409 1140,1270 282,156 1187,156 1187,0 Z"/>
+   <glyph unicode="Y" horiz-adv-x="1244" d="M 777,584 L 777,0 587,0 587,584 45,1409 255,1409 684,738 1111,1409 1321,1409 777,584 Z"/>
+   <glyph unicode="X" horiz-adv-x="1324" d="M 1112,0 L 689,616 257,0 46,0 582,732 87,1409 298,1409 690,856 1071,1409 1282,1409 800,739 1323,0 1112,0 Z"/>
+   <glyph unicode="T" horiz-adv-x="1139" d="M 720,1253 L 720,0 530,0 530,1253 46,1253 46,1409 1204,1409 1204,1253 720,1253 Z"/>
+   <glyph unicode="S" horiz-adv-x="1139" d="M 1272,389 C 1272,330 1261,275 1238,225 1215,175 1179,132 1131,96 1083,59 1023,31 950,11 877,-10 790,-20 690,-20 515,-20 378,11 280,72 182,133 120,222 93,338 L 278,375 C 287,338 302,305 321,275 340,245 367,219 400,198 433,176 473,159 522,147 571,135 629,129 697,129 754,129 806,134 853,144 900,153 941,168 975,188 1009,208 1036,234 1055,266 1074,297 1083,335 1083,379 1083,425 1073,462 1052,491 1031,520 1001,543 963,562 925,581 880,596 827,609 774,622 716,635 652,650 613,659 573,668 534,679 494,689 456,701 420,716 383,730 349,747 317,766 285,785 257,809 234,836 211,863 192,894 179,930 166,965 159,1006 159,1053 159,1120 173,1177 200,1225 227,1272 264,1311 312,1342 360,1373 417,1395 482,1409 547,1423 618,1430 694,1430 781,1430 856,1423 918,1410 980,1396 1032,1375 1075,1348 1118,1321 1152,1287 1178,1247 1203,1206 1224,1159 1239,1106 L 1051,1073 C 1042,1107 1028,1137 1011,1164 993,1191 970,1213 941,1231 912,1249 878,1263 837,1272 796,1281 747,1286 692,1286 627,1286 572,1280 528,1269 483,1257 448,1241 421,1221 394,1201 374,1178 363,1151 351,1124 345,1094 345,1063 345,1021 356,987 377,960 398,933 426,910 462,892 498,874 540,859 587,847 634,835 685,823 738,811 781,801 825,791 868,781 911,770 952,758 991,744 1030,729 1067,712 1102,693 1136,674 1166,650 1191,622 1216,594 1236,561 1251,523 1265,485 1272,440 1272,389 Z"/>
+   <glyph unicode="R" horiz-adv-x="1218" d="M 1164,0 L 798,585 359,585 359,0 168,0 168,1409 831,1409 C 911,1409 982,1400 1044,1382 1105,1363 1157,1337 1199,1302 1241,1267 1273,1225 1295,1175 1317,1125 1328,1069 1328,1006 1328,961 1322,917 1309,874 1296,831 1275,791 1247,755 1219,719 1183,688 1140,662 1097,636 1045,618 984,607 L 1384,0 1164,0 Z M 1136,1004 C 1136,1047 1129,1084 1114,1115 1099,1146 1078,1173 1050,1194 1022,1215 988,1230 948,1241 908,1251 863,1256 812,1256 L 359,1256 359,736 820,736 C 875,736 922,743 962,757 1002,770 1035,789 1061,813 1086,837 1105,865 1118,898 1130,931 1136,966 1136,1004 Z"/>
+   <glyph unicode="P" horiz-adv-x="1086" d="M 1258,985 C 1258,924 1248,867 1228,814 1207,761 1177,715 1137,676 1096,637 1046,606 985,583 924,560 854,549 773,549 L 359,549 359,0 168,0 168,1409 761,1409 C 844,1409 917,1399 979,1379 1041,1358 1093,1330 1134,1293 1175,1256 1206,1211 1227,1159 1248,1106 1258,1048 1258,985 Z M 1066,983 C 1066,1072 1039,1140 984,1187 929,1233 847,1256 738,1256 L 359,1256 359,700 746,700 C 856,700 937,724 989,773 1040,822 1066,892 1066,983 Z"/>
+   <glyph unicode="O" horiz-adv-x="1377" d="M 1495,711 C 1495,601 1479,501 1448,411 1416,321 1370,244 1310,180 1250,116 1177,67 1090,32 1003,-3 905,-20 795,-20 679,-20 577,-2 490,35 403,71 330,122 272,187 214,252 170,329 141,418 112,507 97,605 97,711 97,821 112,920 143,1009 174,1098 219,1173 278,1236 337,1298 411,1346 498,1380 585,1413 684,1430 797,1430 909,1430 1009,1413 1096,1379 1183,1345 1256,1297 1315,1234 1374,1171 1418,1096 1449,1007 1480,918 1495,820 1495,711 Z M 1300,711 C 1300,796 1289,873 1268,942 1246,1011 1214,1071 1172,1120 1129,1169 1077,1207 1014,1234 951,1261 879,1274 797,1274 713,1274 639,1261 576,1234 513,1207 460,1169 418,1120 375,1071 344,1011 323,942 302,873 291,796 291,711 291,626 302,549 324,479 345,408 377,348 420,297 462,246 515,206 578,178 641,149 713,135 795,135 883,135 959,149 1023,178 1086,207 1139,247 1180,298 1221,349 1251,409 1271,480 1290,551 1300,628 1300,711 Z"/>
+   <glyph unicode="N" horiz-adv-x="1138" d="M 1082,0 L 328,1200 C 329,1167 331,1135 333,1103 334,1076 336,1047 337,1017 338,986 338,959 338,936 L 338,0 168,0 168,1409 390,1409 1152,201 C 1150,234 1148,266 1146,299 1145,327 1143,358 1142,391 1141,424 1140,455 1140,485 L 1140,1409 1312,1409 1312,0 1082,0 Z"/>
+   <glyph unicode="M" horiz-adv-x="1324" d="M 1366,0 L 1366,940 C 1366,974 1366,1009 1367,1044 1368,1079 1369,1112 1370,1141 1371,1175 1373,1208 1375,1240 1366,1206 1356,1172 1346,1139 1337,1110 1328,1080 1318,1048 1307,1015 1297,986 1287,960 L 923,0 789,0 420,960 C 416,970 412,982 408,995 403,1008 399,1023 394,1038 389,1053 384,1068 379,1084 374,1099 369,1115 364,1130 353,1165 342,1202 331,1240 332,1203 333,1166 334,1129 335,1098 336,1065 337,1031 338,996 338,966 338,940 L 338,0 168,0 168,1409 419,1409 794,432 C 799,419 804,402 811,381 818,360 824,338 830,316 836,294 842,273 847,254 852,234 855,219 857,208 859,219 863,234 868,254 873,274 880,295 887,317 894,339 900,360 907,381 914,402 920,419 925,432 L 1293,1409 1538,1409 1538,0 1366,0 Z"/>
+   <glyph unicode="L" horiz-adv-x="900" d="M 168,0 L 168,1409 359,1409 359,156 1071,156 1071,0 168,0 Z"/>
+   <glyph unicode="J" horiz-adv-x="848" d="M 457,-20 C 343,-20 250,10 177,69 104,128 55,222 32,350 L 219,381 C 226,338 237,301 252,270 267,239 286,213 307,193 328,173 352,158 378,149 404,140 431,135 458,135 527,135 582,159 622,207 662,254 682,324 682,416 L 682,1253 411,1253 411,1409 872,1409 872,420 C 872,353 863,292 844,238 825,184 798,138 763,100 727,61 683,32 632,11 581,-10 522,-20 457,-20 Z"/>
+   <glyph unicode="I" horiz-adv-x="186" d="M 189,0 L 189,1409 380,1409 380,0 189,0 Z"/>
+   <glyph unicode="F" horiz-adv-x="1006" d="M 359,1253 L 359,729 1145,729 1145,571 359,571 359,0 168,0 168,1409 1169,1409 1169,1253 359,1253 Z"/>
+   <glyph unicode="D" horiz-adv-x="1218" d="M 1381,719 C 1381,602 1363,498 1328,409 1293,319 1244,244 1183,184 1122,123 1049,78 966,47 882,16 792,0 695,0 L 168,0 168,1409 634,1409 C 743,1409 843,1396 935,1369 1026,1342 1105,1300 1171,1244 1237,1187 1289,1116 1326,1029 1363,942 1381,839 1381,719 Z M 1189,719 C 1189,814 1175,896 1148,964 1121,1031 1082,1087 1033,1130 984,1173 925,1205 856,1226 787,1246 712,1256 630,1256 L 359,1256 359,153 673,153 C 747,153 816,165 879,189 942,213 996,249 1042,296 1088,343 1124,402 1150,473 1176,544 1189,626 1189,719 Z"/>
+   <glyph unicode="C" horiz-adv-x="1297" d="M 792,1274 C 712,1274 641,1261 580,1234 518,1207 466,1169 425,1120 383,1071 351,1011 330,942 309,873 298,796 298,711 298,626 310,549 333,479 356,408 389,348 432,297 475,246 527,207 590,179 652,151 722,137 800,137 855,137 905,144 950,159 995,173 1035,193 1072,219 1108,245 1140,276 1169,312 1198,347 1223,387 1245,430 L 1401,352 C 1376,299 1344,250 1307,205 1270,160 1226,120 1176,87 1125,54 1068,28 1005,9 941,-10 870,-20 791,-20 677,-20 577,-2 492,35 406,71 334,122 277,187 219,252 176,329 147,418 118,507 104,605 104,711 104,821 119,920 150,1009 180,1098 224,1173 283,1236 341,1298 413,1346 498,1380 583,1413 681,1430 790,1430 940,1430 1065,1401 1166,1342 1267,1283 1341,1196 1388,1081 L 1207,1021 C 1194,1054 1176,1086 1153,1117 1130,1147 1102,1174 1068,1197 1034,1220 994,1239 949,1253 903,1267 851,1274 792,1274 Z"/>
+   <glyph unicode="A" horiz-adv-x="1350" d="M 1167,0 L 1006,412 364,412 202,0 4,0 579,1409 796,1409 1362,0 1167,0 Z M 768,1026 C 757,1053 747,1080 738,1107 728,1134 719,1159 712,1182 705,1204 699,1223 694,1238 689,1253 686,1262 685,1265 684,1262 681,1252 676,1237 671,1222 665,1203 658,1180 650,1157 641,1132 632,1105 622,1078 612,1051 602,1024 L 422,561 949,561 768,1026 Z"/>
+   <glyph unicode="4" horiz-adv-x="1033" d="M 881,319 L 881,0 711,0 711,319 47,319 47,459 692,1409 881,1409 881,461 1079,461 1079,319 881,319 Z M 711,1206 C 710,1203 706,1196 701,1187 696,1177 690,1166 683,1154 676,1142 670,1130 663,1118 656,1105 649,1095 644,1087 L 283,555 C 280,550 275,543 269,534 262,525 256,517 249,508 242,499 236,490 229,481 222,472 217,466 213,461 L 711,461 711,1206 Z"/>
+   <glyph unicode="3" horiz-adv-x="980" d="M 1049,389 C 1049,324 1039,267 1018,216 997,165 966,123 926,88 885,53 835,26 776,8 716,-11 648,-20 571,-20 484,-20 410,-9 351,13 291,34 242,63 203,99 164,134 135,175 116,221 97,266 84,313 78,362 L 264,379 C 269,342 279,308 294,277 308,246 327,220 352,198 377,176 407,159 443,147 479,135 522,129 571,129 662,129 733,151 785,196 836,241 862,307 862,395 862,447 851,489 828,521 805,552 776,577 742,595 707,612 670,624 630,630 589,636 552,639 518,639 L 416,639 416,795 514,795 C 548,795 583,799 620,806 657,813 690,825 721,844 751,862 776,887 796,918 815,949 825,989 825,1038 825,1113 803,1173 759,1217 714,1260 648,1282 561,1282 482,1282 418,1262 369,1221 320,1180 291,1123 283,1049 L 102,1063 C 109,1125 126,1179 153,1225 180,1271 214,1309 255,1340 296,1370 342,1393 395,1408 448,1423 504,1430 563,1430 642,1430 709,1420 766,1401 823,1381 869,1354 905,1321 941,1287 968,1247 985,1202 1002,1157 1010,1108 1010,1057 1010,1016 1004,977 993,941 982,905 964,873 940,844 916,815 886,791 849,770 812,749 767,734 715,723 L 715,719 C 772,713 821,700 863,681 905,661 940,636 967,607 994,578 1015,544 1029,507 1042,470 1049,430 1049,389 Z"/>
+   <glyph unicode="2" horiz-adv-x="927" d="M 103,0 L 103,127 C 137,205 179,274 228,334 277,393 328,447 382,496 436,544 490,589 543,630 596,671 643,713 686,754 729,795 763,839 790,884 816,929 829,981 829,1038 829,1078 823,1113 811,1144 799,1174 782,1199 759,1220 736,1241 709,1256 678,1267 646,1277 611,1282 572,1282 536,1282 502,1277 471,1267 439,1257 411,1242 386,1222 361,1202 341,1177 326,1148 310,1118 300,1083 295,1044 L 111,1061 C 117,1112 131,1159 153,1204 175,1249 205,1288 244,1322 283,1355 329,1382 384,1401 438,1420 501,1430 572,1430 642,1430 704,1422 759,1405 814,1388 860,1364 898,1331 935,1298 964,1258 984,1210 1004,1162 1014,1107 1014,1044 1014,997 1006,952 989,909 972,866 949,826 921,787 892,748 859,711 822,675 785,639 746,604 705,570 664,535 623,501 582,468 541,434 502,400 466,366 429,332 397,298 368,263 339,228 317,191 301,153 L 1036,153 1036,0 103,0 Z"/>
+   <glyph unicode="1" horiz-adv-x="874" d="M 156,0 L 156,153 515,153 515,1237 197,1010 197,1180 530,1409 696,1409 696,153 1039,153 1039,0 156,0 Z"/>
+   <glyph unicode="/" horiz-adv-x="583" d="M 0,-20 L 411,1484 569,1484 162,-20 0,-20 Z"/>
+   <glyph unicode="." horiz-adv-x="186" d="M 187,0 L 187,219 382,219 382,0 187,0 Z"/>
+   <glyph unicode="," horiz-adv-x="212" d="M 385,219 L 385,51 C 385,16 384,-16 381,-46 378,-74 373,-101 366,-127 359,-151 351,-175 342,-197 332,-219 320,-241 307,-262 L 184,-262 C 214,-219 237,-175 254,-131 270,-87 278,-43 278,0 L 190,0 190,219 385,219 Z"/>
+   <glyph unicode=")" horiz-adv-x="557" d="M 555,528 C 555,435 548,346 534,262 520,177 498,96 468,18 438,-60 400,-136 353,-209 306,-282 251,-354 186,-424 L 12,-424 C 75,-354 129,-282 175,-209 220,-136 258,-60 287,19 316,98 338,179 353,264 367,349 374,437 374,530 374,623 367,711 353,796 338,881 316,962 287,1041 258,1119 220,1195 175,1269 129,1342 75,1414 12,1484 L 186,1484 C 251,1414 306,1342 353,1269 400,1196 438,1120 468,1042 498,964 520,883 534,798 548,713 555,625 555,532 L 555,528 Z"/>
+   <glyph unicode="(" horiz-adv-x="557" d="M 127,532 C 127,625 134,713 148,798 162,883 184,964 214,1042 244,1120 282,1196 329,1269 376,1342 431,1414 496,1484 L 670,1484 C 607,1414 553,1342 508,1269 462,1195 424,1119 395,1041 366,962 344,881 330,796 315,711 308,623 308,530 308,437 315,349 330,264 344,179 366,98 395,19 424,-60 462,-136 508,-209 553,-282 607,-354 670,-424 L 496,-424 C 431,-354 376,-282 329,-209 282,-136 244,-60 214,18 184,96 162,177 148,262 134,346 127,435 127,528 L 127,532 Z"/>
+   <glyph unicode=" " horiz-adv-x="556"/>
+  </font>
+ </defs>
+ <defs class="TextShapeIndex">
+  <g ooo:slide="id1" ooo:id-list="id3 id4 id5 id6 id7 id8 id9 id10 id11 id12 id13 id14 id15 id16 id17 id18 id19 id20 id21 id22 id23 id24 id25 id26 id27 id28 id29 id30 id31 id32 id33 id34 id35 id36 id37 id38 id39 id40 id41 id42 id43 id44 id45 id46 id47 id48 id49"/>
+ </defs>
+ <defs class="EmbeddedBulletChars">
+  <g id="bullet-char-template(57356)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 580,1141 L 1163,571 580,0 -4,571 580,1141 Z"/>
+  </g>
+  <g id="bullet-char-template(57354)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 8,1128 L 1137,1128 1137,0 8,0 8,1128 Z"/>
+  </g>
+  <g id="bullet-char-template(10146)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 174,0 L 602,739 174,1481 1456,739 174,0 Z M 1358,739 L 309,1346 659,739 1358,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10132)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 2015,739 L 1276,0 717,0 1260,543 174,543 174,936 1260,936 717,1481 1274,1481 2015,739 Z"/>
+  </g>
+  <g id="bullet-char-template(10007)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 0,-2 C -7,14 -16,27 -25,37 L 356,567 C 262,823 215,952 215,954 215,979 228,992 255,992 264,992 276,990 289,987 310,991 331,999 354,1012 L 381,999 492,748 772,1049 836,1024 860,1049 C 881,1039 901,1025 922,1006 886,937 835,863 770,784 769,783 710,716 594,584 L 774,223 C 774,196 753,168 711,139 L 727,119 C 717,90 699,76 672,76 641,76 570,178 457,381 L 164,-76 C 142,-110 111,-127 72,-127 30,-127 9,-110 8,-76 1,-67 -2,-52 -2,-32 -2,-23 -1,-13 0,-2 Z"/>
+  </g>
+  <g id="bullet-char-template(10004)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 285,-33 C 182,-33 111,30 74,156 52,228 41,333 41,471 41,549 55,616 82,672 116,743 169,778 240,778 293,778 328,747 346,684 L 369,508 C 377,444 397,411 428,410 L 1163,1116 C 1174,1127 1196,1133 1229,1133 1271,1133 1292,1118 1292,1087 L 1292,965 C 1292,929 1282,901 1262,881 L 442,47 C 390,-6 338,-33 285,-33 Z"/>
+  </g>
+  <g id="bullet-char-template(9679)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 813,0 C 632,0 489,54 383,161 276,268 223,411 223,592 223,773 276,916 383,1023 489,1130 632,1184 813,1184 992,1184 1136,1130 1245,1023 1353,916 1407,772 1407,592 1407,412 1353,268 1245,161 1136,54 992,0 813,0 Z"/>
+  </g>
+  <g id="bullet-char-template(8226)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M 346,457 C 273,457 209,483 155,535 101,586 74,649 74,723 74,796 101,859 155,911 209,963 273,989 346,989 419,989 480,963 531,910 582,859 608,796 608,723 608,648 583,586 532,535 482,483 420,457 346,457 Z"/>
+  </g>
+  <g id="bullet-char-template(8211)" transform="scale(0.00048828125,-0.00048828125)">
+   <path d="M -4,459 L 1135,459 1135,606 -4,606 -4,459 Z"/>
+  </g>
+ </defs>
+ <defs class="TextEmbeddedBitmaps"/>
+ <g>
+  <g id="id2" class="Master_Slide">
+   <g id="bg-id2" class="Background"/>
+   <g id="bo-id2" class="BackgroundObjects"/>
+  </g>
+ </g>
+ <g class="SlideGroup">
+  <g>
+   <g id="id1" class="Slide" clip-path="url(#presentation_clip_path)">
+    <g class="Page">
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id3">
+       <rect class="BoundingBox" stroke="none" fill="none" x="1748" y="12039" width="19180" height="2543"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 11338,14580 L 1749,14580 1749,12040 20926,12040 20926,14580 11338,14580 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 11338,14580 L 1749,14580 1749,12040 20926,12040 20926,14580 11338,14580 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id4">
+       <rect class="BoundingBox" stroke="none" fill="none" x="8426" y="12673" width="5845" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 11348,14325 L 8427,14325 8427,12674 14269,12674 14269,14325 11348,14325 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 11348,14325 L 8427,14325 8427,12674 14269,12674 14269,14325 11348,14325 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="10626" y="13277"/><tspan class="TextPosition" x="10626" y="13277"><tspan fill="rgb(255,255,255)" stroke="none">.YAML</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="9340" y="14095"/><tspan class="TextPosition" x="9340" y="14095"><tspan fill="rgb(255,255,255)" stroke="none">Specification (CSIT gerrit)</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id5">
+       <rect class="BoundingBox" stroke="none" fill="none" x="1815" y="11940" width="1553" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="2065" y="12514"/><tspan class="TextPosition" x="2065" y="12514"><tspan fill="rgb(255,255,255)" stroke="none">Data</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id6">
+       <rect class="BoundingBox" stroke="none" fill="none" x="2026" y="12673" width="5845" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 4948,14325 L 2027,14325 2027,12674 7869,12674 7869,14325 4948,14325 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 4948,14325 L 2027,14325 2027,12674 7869,12674 7869,14325 4948,14325 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="4383" y="13277"/><tspan class="TextPosition" x="4383" y="13277"><tspan fill="rgb(255,255,255)" stroke="none">.RST</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="2872" y="14095"/><tspan class="TextPosition" x="2872" y="14095"><tspan fill="rgb(255,255,255)" stroke="none">Static content (CSIT gerrit)</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id7">
+       <rect class="BoundingBox" stroke="none" fill="none" x="14826" y="12673" width="5845" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 17748,14325 L 14827,14325 14827,12674 20669,12674 20669,14325 17748,14325 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 17748,14325 L 14827,14325 14827,12674 20669,12674 20669,14325 17748,14325 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="16485" y="13277"/><tspan class="TextPosition" x="16485" y="13277"><tspan fill="rgb(255,255,255)" stroke="none">.ZIP (.XML)</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="15750" y="14095"/><tspan class="TextPosition" x="15750" y="14095"><tspan fill="rgb(255,255,255)" stroke="none">Data to process (Jenkins)</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id8">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4289" y="8239" width="11433" height="2543"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 10005,10780 L 4290,10780 4290,8240 15720,8240 15720,10780 10005,10780 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10005,10780 L 4290,10780 4290,8240 15720,8240 15720,10780 10005,10780 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id9">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4289" y="4439" width="11433" height="2543"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 10005,6980 L 4290,6980 4290,4440 15720,4440 15720,6980 10005,6980 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 10005,6980 L 4290,6980 4290,4440 15720,4440 15720,6980 10005,6980 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id10">
+       <rect class="BoundingBox" stroke="none" fill="none" x="1749" y="639" width="13973" height="2543"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 8735,3180 L 1750,3180 1750,640 15720,640 15720,3180 8735,3180 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 8735,3180 L 1750,3180 1750,640 15720,640 15720,3180 8735,3180 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id11">
+       <rect class="BoundingBox" stroke="none" fill="none" x="16099" y="609" width="4822" height="10173"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 18510,10780 L 16100,10780 16100,610 20919,610 20919,10780 18510,10780 Z"/>
+       <path fill="none" stroke="rgb(52,101,164)" d="M 18510,10780 L 16100,10780 16100,610 20919,610 20919,10780 18510,10780 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id12">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4525" y="8873" width="10942" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 9996,10525 L 4526,10525 4526,8874 15465,8874 15465,10525 9996,10525 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 9996,10525 L 4526,10525 4526,8874 15465,8874 15465,10525 9996,10525 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="9183" y="9477"/><tspan class="TextPosition" x="9183" y="9477"><tspan fill="rgb(255,255,255)" stroke="none">pandas</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="8393" y="9901"/><tspan class="TextPosition" x="8393" y="9901"><tspan fill="rgb(255,255,255)" stroke="none">Data model in JSON</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6817" y="10295"/><tspan class="TextPosition" x="6817" y="10295"><tspan fill="rgb(255,255,255)" stroke="none">Specification, Input data (Pandas.Series)</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id13">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4315" y="8140" width="5437" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="4565" y="8714"/><tspan class="TextPosition" x="4565" y="8714"><tspan fill="rgb(255,255,255)" stroke="none">Data processing</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id14">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4315" y="4340" width="5437" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="4565" y="4914"/><tspan class="TextPosition" x="4565" y="4914"><tspan fill="rgb(255,255,255)" stroke="none">Data presentation</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id15">
+       <rect class="BoundingBox" stroke="none" fill="none" x="4525" y="5073" width="2560" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 5805,6725 L 4526,6725 4526,5074 7083,5074 7083,6725 5805,6725 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 5805,6725 L 4526,6725 4526,5074 7083,5074 7083,6725 5805,6725 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="5252" y="5677"/><tspan class="TextPosition" x="5252" y="5677"><tspan fill="rgb(255,255,255)" stroke="none">Plots</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="4697" y="6495"/><tspan class="TextPosition" x="4697" y="6495"><tspan fill="rgb(255,255,255)" stroke="none">plot.ly → .html</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id16">
+       <rect class="BoundingBox" stroke="none" fill="none" x="8826" y="5073" width="2451" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 10051,6725 L 8827,6725 8827,5074 11275,5074 11275,6725 10051,6725 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 10051,6725 L 8827,6725 8827,5074 11275,5074 11275,6725 10051,6725 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="9528" y="5677"/><tspan class="TextPosition" x="9528" y="5677"><tspan fill="rgb(255,255,255)" stroke="none">Files</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="9649" y="6495"/><tspan class="TextPosition" x="9649" y="6495"><tspan fill="rgb(255,255,255)" stroke="none">.RST</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id17">
+       <rect class="BoundingBox" stroke="none" fill="none" x="12925" y="5073" width="2560" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 14205,6725 L 12926,6725 12926,5074 15483,5074 15483,6725 14205,6725 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 14205,6725 L 12926,6725 12926,5074 15483,5074 15483,6725 14205,6725 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="13489" y="5677"/><tspan class="TextPosition" x="13489" y="5677"><tspan fill="rgb(255,255,255)" stroke="none">Tables</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="13023" y="6495"/><tspan class="TextPosition" x="13023" y="6495"><tspan fill="rgb(255,255,255)" stroke="none">Pandas → .csv</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id18">
+       <rect class="BoundingBox" stroke="none" fill="none" x="1715" y="540" width="5437" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="1965" y="1114"/><tspan class="TextPosition" x="1965" y="1114"><tspan fill="rgb(255,255,255)" stroke="none">Report generation</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id19">
+       <rect class="BoundingBox" stroke="none" fill="none" x="2003" y="1273" width="13465" height="1654"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 8735,2925 L 2004,2925 2004,1274 15466,1274 15466,2925 8735,2925 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 8735,2925 L 2004,2925 2004,1274 15466,1274 15466,2925 8735,2925 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="7982" y="1877"/><tspan class="TextPosition" x="7982" y="1877"><tspan fill="rgb(255,255,255)" stroke="none">Sphinx</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="6163" y="2695"/><tspan class="TextPosition" x="6163" y="2695"><tspan fill="rgb(255,255,255)" stroke="none">.html / .pdf (then stored in nexus)</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id20">
+       <rect class="BoundingBox" stroke="none" fill="none" x="16015" y="540" width="4659" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="16265" y="1114"/><tspan class="TextPosition" x="16265" y="1114"><tspan fill="rgb(255,255,255)" stroke="none">Jenkins plots</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.CustomShape">
+      <g id="id21">
+       <rect class="BoundingBox" stroke="none" fill="none" x="16354" y="1243" width="4317" height="9284"/>
+       <path fill="rgb(114,159,207)" stroke="none" d="M 18512,10525 L 16355,10525 16355,1244 20669,1244 20669,10525 18512,10525 Z"/>
+       <path fill="none" stroke="rgb(255,255,255)" d="M 18512,10525 L 16355,10525 16355,1244 20669,1244 20669,10525 18512,10525 Z"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="17200" y="5385"/><tspan class="TextPosition" x="17200" y="5385"><tspan fill="rgb(255,255,255)" stroke="none">Jenkins plot</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="17852" y="5940"/><tspan class="TextPosition" x="17852" y="5940"><tspan fill="rgb(255,255,255)" stroke="none">plugin</tspan></tspan></tspan><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="18129" y="6758"/><tspan class="TextPosition" x="18129" y="6758"><tspan fill="rgb(255,255,255)" stroke="none">.html</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id22">
+       <rect class="BoundingBox" stroke="none" fill="none" x="415" y="11840" width="1303" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="665" y="12414"/><tspan class="TextPosition" x="665" y="12414"><tspan fill="rgb(0,0,0)" stroke="none">sL1</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id23">
+       <rect class="BoundingBox" stroke="none" fill="none" x="415" y="8140" width="1303" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="665" y="8714"/><tspan class="TextPosition" x="665" y="8714"><tspan fill="rgb(0,0,0)" stroke="none">sL2</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id24">
+       <rect class="BoundingBox" stroke="none" fill="none" x="415" y="4340" width="1303" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="665" y="4914"/><tspan class="TextPosition" x="665" y="4914"><tspan fill="rgb(0,0,0)" stroke="none">sL3</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id25">
+       <rect class="BoundingBox" stroke="none" fill="none" x="415" y="540" width="1303" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="494px" font-weight="400"><tspan class="TextPosition" x="665" y="1114"/><tspan class="TextPosition" x="665" y="1114"><tspan fill="rgb(0,0,0)" stroke="none">sL4</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id26">
+       <rect class="BoundingBox" stroke="none" fill="none" x="3031" y="2896" width="431" height="10007"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 3222,12548 L 3271,3439"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 3257,12528 L 3291,12537 3325,12555 3356,12579 3380,12610 3397,12645 3406,12679 3411,12714 3406,12748 3396,12784 3379,12818 3355,12847 3323,12871 3289,12888 3255,12899 3219,12902 3185,12899 3150,12887 3117,12870 3086,12846 3062,12816 3045,12782 3036,12746 3032,12712 3036,12677 3046,12643 3063,12609 3088,12578 3119,12554 3152,12537 3187,12527 3221,12523 3257,12528 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 3274,2896 L 3081,3463 3460,3466 3274,2896 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id27">
+       <rect class="BoundingBox" stroke="none" fill="none" x="11096" y="10516" width="411" height="2388"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 11313,12548 L 11285,11059"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 11348,12527 L 11382,12536 11416,12552 11448,12576 11473,12607 11491,12640 11501,12674 11506,12709 11502,12744 11493,12779 11477,12814 11453,12844 11422,12869 11389,12886 11355,12898 11319,12902 11285,12900 11250,12889 11216,12873 11185,12849 11160,12820 11142,12786 11132,12751 11127,12717 11131,12681 11140,12647 11156,12612 11180,12581 11210,12556 11243,12538 11278,12528 11312,12523 11348,12527 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 11275,10516 L 11096,11088 11475,11081 11275,10516 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id28">
+       <rect class="BoundingBox" stroke="none" fill="none" x="15000" y="10517" width="411" height="2388"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 15217,12549 L 15189,11060"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 15252,12528 L 15286,12537 15320,12553 15352,12577 15377,12608 15395,12641 15405,12675 15410,12710 15406,12745 15397,12780 15381,12815 15357,12845 15326,12870 15293,12887 15259,12899 15223,12903 15189,12901 15154,12890 15120,12874 15089,12850 15064,12821 15046,12787 15036,12752 15031,12718 15035,12682 15044,12648 15060,12613 15084,12582 15114,12557 15147,12539 15182,12529 15216,12524 15252,12528 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 15179,10517 L 15000,11089 15379,11082 15179,10517 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id29">
+       <rect class="BoundingBox" stroke="none" fill="none" x="18304" y="10518" width="411" height="2388"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 18521,12550 L 18493,11061"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 18556,12529 L 18590,12538 18624,12554 18656,12578 18681,12609 18699,12642 18709,12676 18714,12711 18710,12746 18701,12781 18685,12816 18661,12846 18630,12871 18597,12888 18563,12900 18527,12904 18493,12902 18458,12891 18424,12875 18393,12851 18368,12822 18350,12788 18340,12753 18335,12719 18339,12683 18348,12649 18364,12614 18388,12583 18418,12558 18451,12540 18486,12530 18520,12525 18556,12529 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 18483,10518 L 18304,11090 18683,11083 18483,10518 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id30">
+       <rect class="BoundingBox" stroke="none" fill="none" x="5497" y="2896" width="381" height="2414"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 5687,4955 L 5687,3439"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 5722,4934 L 5756,4944 5790,4961 5821,4985 5845,5016 5862,5051 5872,5085 5877,5120 5872,5154 5862,5190 5845,5224 5821,5254 5790,5278 5756,5295 5722,5306 5686,5309 5652,5306 5617,5295 5584,5278 5553,5254 5529,5224 5512,5190 5502,5154 5498,5120 5502,5085 5512,5051 5529,5016 5553,4985 5584,4961 5617,4944 5652,4934 5686,4930 5722,4934 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 5687,2896 L 5498,3465 5877,3465 5687,2896 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id31">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9815" y="2896" width="381" height="2414"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 10005,4955 L 10005,3439"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 10040,4934 L 10074,4944 10108,4961 10139,4985 10163,5016 10180,5051 10190,5085 10195,5120 10190,5154 10180,5190 10163,5224 10139,5254 10108,5278 10074,5295 10040,5306 10004,5309 9970,5306 9935,5295 9902,5278 9871,5254 9847,5224 9830,5190 9820,5154 9816,5120 9820,5085 9830,5051 9847,5016 9871,4985 9902,4961 9935,4944 9970,4934 10004,4930 10040,4934 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 10005,2896 L 9816,3465 10195,3465 10005,2896 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id32">
+       <rect class="BoundingBox" stroke="none" fill="none" x="13999" y="2919" width="387" height="2392"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 14195,4955 L 14189,3462"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 14229,4934 L 14263,4944 14298,4961 14329,4985 14353,5016 14370,5050 14380,5084 14385,5119 14381,5153 14371,5189 14354,5223 14330,5253 14299,5277 14265,5294 14231,5306 14195,5309 14161,5306 14126,5295 14093,5278 14062,5254 14037,5224 14020,5190 14010,5155 14006,5121 14010,5086 14020,5051 14037,5017 14061,4986 14092,4962 14124,4944 14160,4934 14194,4930 14229,4934 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 14187,2919 L 14000,3488 14379,3487 14187,2919 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id33">
+       <rect class="BoundingBox" stroke="none" fill="none" x="6957" y="5627" width="1906" height="381"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 7311,5817 L 8319,5817"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 7332,5852 L 7322,5886 7305,5920 7281,5951 7250,5975 7215,5992 7181,6002 7146,6007 7112,6002 7076,5992 7042,5975 7012,5951 6988,5920 6971,5886 6960,5852 6957,5816 6960,5782 6971,5747 6988,5714 7012,5683 7042,5659 7076,5642 7112,5632 7146,5628 7181,5632 7215,5642 7250,5659 7281,5683 7305,5714 7322,5747 7332,5782 7336,5816 7332,5852 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 8862,5817 L 8294,5628 8294,6007 8862,5817 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id34">
+       <rect class="BoundingBox" stroke="none" fill="none" x="11275" y="5627" width="1779" height="381"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 12699,5817 L 11818,5817"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 12678,5782 L 12688,5748 12705,5714 12729,5683 12760,5659 12795,5642 12829,5632 12864,5628 12898,5632 12934,5642 12968,5659 12998,5683 13022,5714 13039,5748 13050,5782 13053,5818 13050,5852 13039,5887 13022,5920 12998,5951 12968,5975 12934,5992 12898,6002 12864,6007 12829,6002 12795,5992 12760,5975 12729,5951 12705,5920 12688,5887 12678,5852 12674,5818 12678,5782 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 11275,5817 L 11844,6007 11844,5628 11275,5817 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id35">
+       <rect class="BoundingBox" stroke="none" fill="none" x="5524" y="6706" width="381" height="2160"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 5714,7249 L 5714,8322"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 5714,6706 L 5525,7275 5904,7275 5714,6706 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 5714,8865 L 5904,8297 5525,8297 5714,8865 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id36">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9824" y="6707" width="381" height="2160"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 10014,7250 L 10014,8323"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 10014,6707 L 9825,7276 10204,7276 10014,6707 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 10014,8866 L 10204,8298 9825,8298 10014,8866 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.LineShape">
+      <g id="id37">
+       <rect class="BoundingBox" stroke="none" fill="none" x="14024" y="6708" width="381" height="2160"/>
+       <path fill="none" stroke="rgb(0,102,204)" stroke-width="53" stroke-linejoin="round" d="M 14214,7251 L 14214,8324"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 14214,6708 L 14025,7277 14404,7277 14214,6708 Z"/>
+       <path fill="rgb(0,102,204)" stroke="none" d="M 14214,8867 L 14404,8299 14025,8299 14214,8867 Z"/>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id38">
+       <rect class="BoundingBox" stroke="none" fill="none" x="3115" y="11440" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="3365" y="11883"/><tspan class="TextPosition" x="3365" y="11883"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id39">
+       <rect class="BoundingBox" stroke="none" fill="none" x="11215" y="11440" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="11465" y="11883"/><tspan class="TextPosition" x="11465" y="11883"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id40">
+       <rect class="BoundingBox" stroke="none" fill="none" x="15115" y="11440" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="15365" y="11883"/><tspan class="TextPosition" x="15365" y="11883"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id41">
+       <rect class="BoundingBox" stroke="none" fill="none" x="18415" y="11440" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="18665" y="11883"/><tspan class="TextPosition" x="18665" y="11883"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id42">
+       <rect class="BoundingBox" stroke="none" fill="none" x="14115" y="3840" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="14365" y="4283"/><tspan class="TextPosition" x="14365" y="4283"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id43">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9915" y="3840" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="10165" y="4283"/><tspan class="TextPosition" x="10165" y="4283"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id44">
+       <rect class="BoundingBox" stroke="none" fill="none" x="5615" y="3840" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5865" y="4283"/><tspan class="TextPosition" x="5865" y="4283"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id45">
+       <rect class="BoundingBox" stroke="none" fill="none" x="6915" y="5140" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="7165" y="5583"/><tspan class="TextPosition" x="7165" y="5583"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id46">
+       <rect class="BoundingBox" stroke="none" fill="none" x="11115" y="5140" width="2065" height="807"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="11365" y="5583"/><tspan class="TextPosition" x="11365" y="5583"><tspan fill="rgb(0,69,134)" stroke="none">Read files</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id47">
+       <rect class="BoundingBox" stroke="none" fill="none" x="5615" y="7640" width="2613" height="718"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="5865" y="8083"/><tspan class="TextPosition" x="5865" y="8083"><tspan fill="rgb(0,69,134)" stroke="none">Python calls</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id48">
+       <rect class="BoundingBox" stroke="none" fill="none" x="9915" y="7641" width="2613" height="718"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="10165" y="8084"/><tspan class="TextPosition" x="10165" y="8084"><tspan fill="rgb(0,69,134)" stroke="none">Python calls</tspan></tspan></tspan></text>
+      </g>
+     </g>
+     <g class="com.sun.star.drawing.TextShape">
+      <g id="id49">
+       <rect class="BoundingBox" stroke="none" fill="none" x="12915" y="7642" width="2613" height="718"/>
+       <text class="TextShape"><tspan class="TextParagraph" font-family="Liberation Sans, sans-serif" font-size="353px" font-weight="400"><tspan class="TextPosition" x="13165" y="8085"/><tspan class="TextPosition" x="13165" y="8085"><tspan fill="rgb(0,69,134)" stroke="none">Python calls</tspan></tspan></tspan></text>
+      </g>
+     </g>
+    </g>
+   </g>
+  </g>
+ </g>
+</svg>
\ No newline at end of file
diff --git a/docs/report/csit_framework_documentation/pal_lld.rst b/docs/report/csit_framework_documentation/pal_lld.rst
new file mode 100644 (file)
index 0000000..ddd4de0
--- /dev/null
@@ -0,0 +1 @@
+.. include:: ../../../../../../resources/tools/presentation/doc/pal_lld.rst
index 8b4bb79..b36c0e5 100644 (file)
@@ -15,3 +15,4 @@ CSIT 17.07
     detailed_test_results/index
     test_configuration/index
     test_operational_data/index
     detailed_test_results/index
     test_configuration/index
     test_operational_data/index
+    csit_framework_documentation/index
\ No newline at end of file
index eabbf7b..a5c7f5a 100644 (file)
@@ -5,6 +5,3 @@ Introduction
 
     overview
     general_notes
 
     overview
     general_notes
-    csit_design
-    csit_test_naming
-    csit_tag_description
index 3a21373..9158b88 100644 (file)
@@ -1,6 +1,5 @@
-===================================================
-Presentation and Analytics Layer - Low Level Design
-===================================================
+Presentation and Analytics Layer
+================================
 
 Overview
 --------
 
 Overview
 --------
@@ -38,9 +37,21 @@ sub-layers, bottom up:
    - formats: html, pdf
    - versions: minimal, full (TODO: define the names and scope of versions)
 
    - formats: html, pdf
    - versions: minimal, full (TODO: define the names and scope of versions)
 
-.. figure:: pal_layers.svg
-   :alt: PAL Layers
-   :align: center
+.. only:: latex
+
+    .. raw:: latex
+
+        \begin{figure}[H]
+        \centering
+            \includesvg[width=0.90\textwidth]{../_tmp/src/csit_framework_documentation/pal_layers}
+            \label{fig:pal_layers}
+        \end{figure}
+
+.. only:: html
+
+    .. figure:: pal_layers.svg
+        :alt: PAL Layers
+        :align: center
 
 Data
 ----
 
 Data
 ----
@@ -1212,9 +1223,21 @@ List of modules, classes, methods and functions
 PAL functional diagram
 ``````````````````````
 
 PAL functional diagram
 ``````````````````````
 
-.. figure:: pal_func_diagram.svg
-   :alt: PAL functional diagram
-   :align: center
+.. only:: latex
+
+    .. raw:: latex
+
+        \begin{figure}[H]
+        \centering
+            \includesvg[width=0.90\textwidth]{../_tmp/src/csit_framework_documentation/pal_func_diagram}
+            \label{fig:pal_func_diagram}
+        \end{figure}
+
+.. only:: html
+
+    .. figure:: pal_func_diagram.svg
+        :alt: PAL functional diagram
+        :align: center
 
 
 How to add an element
 
 
 How to add an element