You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@giraph.apache.org by cl...@apache.org on 2013/11/18 19:28:01 UTC

[1/3] GIRAPH-793

Updated Branches:
  refs/heads/trunk f7c302587 -> 82dad0a17


http://git-wip-us.apache.org/repos/asf/giraph/blob/82dad0a1/src/site/site.xml
----------------------------------------------------------------------
diff --git a/src/site/site.xml b/src/site/site.xml
index b299b59..a5931ea 100644
--- a/src/site/site.xml
+++ b/src/site/site.xml
@@ -78,6 +78,7 @@
       <item name="Page Rank Example" href="pagerank.html"/>
       <item name="Input/Output in Giraph" href="io.html"/>
       <item name="Hive" href="hive.html"/>
+      <item name="Gora" href="gora.html"/>
       <item name="Rexster" href="rexster.html"/>
       <item name="Aggregators" href="aggregators.html"/>
       <item name="Out-of-core" href="ooc.html"/>

http://git-wip-us.apache.org/repos/asf/giraph/blob/82dad0a1/src/site/xdoc/gora.xml
----------------------------------------------------------------------
diff --git a/src/site/xdoc/gora.xml b/src/site/xdoc/gora.xml
new file mode 100644
index 0000000..ea8f1c8
--- /dev/null
+++ b/src/site/xdoc/gora.xml
@@ -0,0 +1,354 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+  ~ Licensed to the Apache Software Foundation (ASF) under one
+  ~ or more contributor license agreements.  See the NOTICE file
+  ~ distributed with this work for additional information
+  ~ regarding copyright ownership.  The ASF licenses this file
+  ~ to you under the Apache License, Version 2.0 (the
+  ~ "License"); you may not use this file except in compliance
+  ~ with the License.  You may obtain a copy of the License at
+  ~
+  ~     http://www.apache.org/licenses/LICENSE-2.0
+  ~
+  ~ Unless required by applicable law or agreed to in writing, software
+  ~ distributed under the License is distributed on an "AS IS" BASIS,
+  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+  ~ See the License for the specific language governing permissions and
+  ~ limitations under the License.
+  -->
+
+<document xmlns="http://maven.apache.org/XDOC/2.0"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://maven.apache.org/XDOC/2.0
+    http://maven.apache.org/xsd/xdoc-2.0.xsd">
+
+  <properties>
+    <title>Giraph Input/Output with Gora</title>
+  </properties>
+
+  <body>
+    <section name="Overview">
+      The <a class="externalLink" href="http://gora.apache.org/index.html">Apache
+      Gora</a> project is an open source framework which provides an in-memory
+      data model and persistence for big data. Gora supports persisting to column
+      stores, key value stores, document stores and RDBMSs, and
+      analyzing the data with extensive Apache Hadoop MapReduce support.
+      <br />
+
+      The integration of these two awesome Apache projects has as main motivation 
+      the possibility of turning Gora-supported-NoSQL data stores into
+      Giraph-processable graphs, and to provide Giraph the ability to store its
+      results into different data stores, letting users focus on the processing itself.
+      <br />
+
+      The way Gora works is by defining the data model how our data is going to be
+      stored using a JSON-like schema inspired in
+      <a class="externalLink" href="http://avro.apache.org/">Apache Avro</a> and 
+      doing the physical mapping to the data store using an XML file. 
+      The former one will help us generate data beans which will be read or written
+      into different data stores, and the latter one, helps us defining which data
+      bean should go where. 
+      
+      In this way, Giraph will be able to read/write data using three files:
+      <ul>
+      	<li>The generated data beans representing our data model.</li>
+		<li>The XML mapping file representing our physical mapping.</li>
+		<li>A file called <code>gora.properties</code> containing
+      configurations related to which data store Gora will use.</li>
+      </ul>
+      The image below shows how this integration works in a plain simple image:
+      <img src="images/Gora-Giraph.svg" alt="Giraph Gora integration"/>
+      
+    </section>
+    <section name="Generating DataBeans">
+      So the first thing we have to is to define our data model using a JSON-like schema. Here it is
+      a schema resembling graphs stored inside Apache HBase through Gora. The following shows a schema
+      for a vertex:
+      <div class="source"><pre class="prettyprint">
+{"type": "record",
+"name": "Vertex",
+"namespace": "org.apache.giraph.gora.generated",
+"fields" : [
+           {"name": "vertexId", "type": "long"},
+           {"name": "value", "type": "float"},
+           {"name": "edges",
+            "type": {
+                     "type":"array", "items": {
+                                     "name": "Edge",
+                                     "type": "record",
+                                     "namespace": "org.apache.giraph.gora.generated",
+                                     "fields": [
+                                             {"name": "vertexId", "type": "long"},
+                                             {"name": "edgeValue", "type": "float"}
+                                            ]
+                                     }
+                    }
+          }
+          ]
+}</pre></div>
+
+      And this other schema shows what a schema for an edge should look like.
+      <div class="source"><pre class="prettyprint">
+      {
+      "type": "record",
+      "name": "GEdge",
+      "namespace": "org.apache.giraph.gora.generated",
+      "fields" : [
+                 {"name": "edgeId", "type": "string"},
+                 {"name": "edgeWeight", "type": "float"},
+                 {"name": "vertexInId", "type": "string"},
+                 {"name": "vertexOutId", "type": "string"},
+                 {"name": "label", "type": "string"}
+                 ]
+      }
+      </pre></div>
+
+      Now we are ready to generate our data beans. To do this, we need to use gora-core.jar which
+      comes with Giraph. The gora-compiler works using three parameters:
+      <div class="source"><pre class="prettyprint">
+        &lt;schema file&gt; - REQUIRED -individual avsc file to be compiled or a directory path containing avsc files
+        &lt;output dir&gt; - REQUIRED -output directory for generated Java files
+        &lt;-license id&gt; - the preferred license header to add to the
+      </pre></div>
+
+      So by executing the gora compiler through this command, the generated data beans
+      will be created in the path set.
+
+      <div class="source"><pre class="prettyprint">
+           java -jar gora-core-0.4-SNAPSHOT.jar org.apache.gora.compiler.GoraCompiler.class vertex.avsc  gora-app/src/main/java/
+           java -jar gora-core-0.4-SNAPSHOT.jar org.apache.gora.compiler.GoraCompiler.class edge.avsc  gora-app/src/main/java/
+      </pre></div>
+      
+      <br />
+      This will result into a java class which will look something similar to this:
+      <div class="source"><pre class="prettyprint">
+      /**
+      * Class for defining a Giraph-Vertex.
+      */
+     @SuppressWarnings("all")
+     public class GVertex extends PersistentBase {
+       /**
+        * Schema used for the class.
+        */
+       public static final Schema OBJ_SCHEMA = Schema.parse(
+           "{\"type\":\"record\",\"name\":\"Vertex\"," +
+           "\"namespace\":\"org.apache.giraph.gora.generated\"," +
+           "\"fields\":[{\"name\":\"vertexId\",\"type\":\"string\"}," +
+           "{\"name\":\"value\",\"type\":\"float\"},{\"name\":\"edges\"," +
+           "\"type\":{\"type\":\"map\",\"values\":\"string\"}}]}");
+       
+       /**
+        * Vertex Id
+        */
+       private Utf8 vertexId;
+       
+       /**
+        * Gets vertexId
+        * @return Utf8 vertexId
+        */
+       public Utf8 getVertexId() {
+         return (Utf8) get(0);
+       }
+       
+       /**
+        * Sets vertexId
+        * @param value vertexId
+        */
+       public void setVertexId(Utf8 value) {
+         put(0, value);
+       }
+      . . .
+      </pre></div>
+      
+      Once this logical data modeling is done, the physical mapping between this generated
+      classes and the actual data repositories have to be made. Gora does this by using a
+      xml "mapping file". 
+      <br />
+      The file below represents a <code>gora-hbase-mapping.xml</code> i.e. the necessary
+      information to map our data model into HBase tables. Within the tags <code>table</code>
+      the necessary column families will be defined. Moreover, within the tags
+      <code>class</code>, the actual generated java bean will be mapped into the column
+      families. Inside this, each field should be mapped into their respective column
+      family, and the HBase qualifier to be used for storing this field. 
+      <br />
+      This mapping file can contain as many mappings as generated data beans our application
+      uses i.e. we can redefine more <code>table</code> tags with their own <code>class</code>
+      and <code>fields</code>.
+      
+      <div class="source"><pre class="prettyprint">
+        &lt;gora-orm&gt;
+          &lt;table name="graphGiraph"&gt;
+            &lt;family name="vertices"/&gt;
+          &lt;/table&gt;
+          &lt;class name="org.apache.giraph.io.gora.generated.GVertex" keyClass="java.lang.String" table="graphGiraph"&gt;
+            &lt;field name="vertexId" family="vertices" qualifier="vertexId"/&gt;
+            &lt;field name="value" family="vertices" qualifier="value"/&gt;
+            &lt;field name="edges" family="vertices" qualifier="edges"/&gt;
+          &lt;/class&gt;
+        &lt;/gora-orm&gt;
+      </pre></div>
+      A more complex file can be found inside <code>giraph-gora/conf</code> folder.
+      
+    </section>
+    <section name="Preparation">
+      Once the data beans have been generated, the <code>gora.properties</code> file
+      has be created. This file specifies which data store is going to be used with
+      Gora, but also contains extra information about such data store. An example of
+      such file can be found inside <code>giraph-gora/conf</code> folder. Following 
+      our example, if it has been decided to use Apache HBase so <code>gora.properties</code>
+      should contain such configuration, as shown below:<br />
+      <code>
+            # FOR HBASE DATASTORE
+            gora.datastore.default=org.apache.gora.hbase.store.HBaseStore
+      </code>
+      Then to be able to use the Gora API the user needs to prepare the Gora environment.
+      This is not more than having set up one of the data stores Gora support, having
+      the data beans generated and the <code>gora.properties</code> file set up. A more 
+      detail yet simple tutorial can be found 
+      <a href="http://gora.apache.org/current/tutorial.html">here</a>.
+      
+      <br />
+      The data definition files should be available in the classpath when the 
+      Giraph job is run. But also all configuration files needed for each specific data
+      store should also be made available across the cluster. For example, if we were
+      to use HBase along Giraph and Gora, then the hbase-site.xml file should be passed
+      along as well. There are several ways to make these files available, and one common
+      way to do this is with the <code>-file</code> option. This option would look like
+      something similar to this: <br />
+      <div class="source"><pre class="prettyprint">
+      -files ../conf/gora.properties,../conf/gora-hbase-mapping.xml,../conf/hbase-site.xml
+      </pre></div><br />
+      
+      Gora also needs to be told which serialization types it will use. This serialization
+      types could be made across the cluster, but if that is not desired, then they can be
+      passed using the <code>-D</code> option of Hadoop. This option would look like 
+      something similar to this:<br />
+      <div class="source"><pre class="prettyprint">
+      -Dio.serializations=org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.JavaSerialization
+      </pre></div><br />
+    </section>
+    
+    <section name="Configuration Options">
+      Now that the data beans have been generated, and Gora environment ready, 
+      the configuration options for this API have to be known in order to be specified
+      by the user. These configurations are as follow: <br />
+      <table border='0'>
+       <tr>
+        <th>label</th>
+        <th>type</th>
+        <th>description</th>
+       </tr>
+       <tr>
+         <td>giraph.gora.datastore.class</td>
+         <td>string</td>
+         <td>Gora DataStore class to access to data from - required.</td>
+       </tr>
+       <tr>
+         <td>giraph.gora.key.class</td>
+         <td>String</td>
+         <td>Gora Key class to query the datastore - required.</td>
+       </tr>
+       <tr>
+         <td>giraph.gora.persistent.class</td>
+         <td>String</td>
+         <td>Gora Persistent class to read objects from Gora - required.</td>
+       </tr>
+       <tr>
+         <td>giraph.gora.start.key</td>
+         <td>String</td>
+         <td>Gora start key to query the datastore.</td>
+       </tr>
+       <tr>
+         <td>giraph.gora.end.key</td>
+         <td>String</td>
+         <td>Gora end key to query the datastore.</td>
+       </tr>
+       <tr>
+         <td>giraph.gora.keys.factory.class</td>
+         <td>String</td>
+         <td> Keys factory to convert strings into desired keys - required. </td>
+       </tr>
+       <tr>
+         <td>giraph.gora.output.datastore.class</td>
+         <td>String</td>
+         <td>Gora DataStore class to write data to - required.</td>
+       </tr>
+       <tr>
+         <td>giraph.gora.output.key.class</td>
+         <td>String</td>
+         <td>Gora Key class to write to datastore - required.</td>
+       </tr>
+       <tr>
+         <td>giraph.gora.output.persistent.class</td>
+         <td>String</td>
+         <td>Gora Persistent class to write to Gora - required.
+         </td>
+       </tr>
+      </table>
+    </section>
+    
+    <section name="Input/Output Example">
+      To make use of the Giraph input API available for Gora, it is required to extend the 
+      classes <code>GoraVertexInputFormat</code> or <code>GoraEdgeInputFormat</code>.
+      In the first class, the only method that has to be implemented is 
+      <code>transformVertex</code> to transform a <code>Gora Object</code> into a
+      Giraph's <code>Vertex</code> object. Likewise, for the second class the methods 
+      that have to be implemented are <code>transformEdge</code>, to convert a 
+      <code>Gora Edge Object</code> into a the Giraph's<code>Edge</code> object, and 
+      <code>getCurrentSourceId</code>. There are two Examples of such implementations 
+      which are <code>GoraGVertexVertexInputFormat</code> and
+      <code>GoraGEdgeEdgeInputFormat</code>. One other class that has to be implemented
+      here is the <code>KeyFactory</code> because this class is used to transform the keys
+      passed as strings throught the options into actual Gora key Objects used to query
+      the data store. The default one assumes your key type is a <code>String</code>.<br />
+
+      On the other hand, to make use of the Giraph output API available for Gora, 
+      it is required to extend the classes <code>GoraVertexOutputFormat</code> or
+      <code>GoraEdgeOutputFormat</code>.
+      In the first class, the only method that has to be implemented is 
+      <code>getGoraVertex</code> to transform a Giraph's Vertex object into a
+      Gora object, and <code>getGoraKey</code> to determine the key which will represent
+      such vertex. Likewise, for the Edge output class the methods 
+      that have to be implemented are <code>getGoraEdge</code>, to convert a Giraph's
+      Edge object into a Gora Edge object, and <code>getGoraKey</code> to determine the 
+      key which will represent such edge. There are two Examples of such implementations 
+      which are <code>GoraGVertexVertexOutputFormat</code> and 
+      <code>GoraGEdgeEdgeOutputFormat</code>.
+      <br />
+      
+      An example command showing how to put together all these classes and configurations
+      is shown below. This command is to compute the shortest path algorithm onto the 
+      graph database shown previously is provided below.
+      <br />
+      <code>
+        export GIRAPH_CORE_JAR=$GIRAPH_CORE_TARGET_DIR/giraph-$GIRAPH_VERSION-for-$HADOOP_VERSION-jar-with-dependencies.jar<br />
+        export GIRAPH_EXAMPLES_JAR=$GIRAPH_EXAMPLES_TARGET_DIR/giraph-examples-$GIRAPH_VERSION-for-$HADOOP_VERSION-jar-with-dependencies.jar<br />
+        export GIRAPH_GORA_JAR=$GIRAPH_GORA_TARGET_DIR/giraph-gora-$GIRAPH_VERSION-SNAPSHOT-jar-with-dependencies.jar<br />
+        export GORA_HBASE_JAR=$GORA_HBASE_TARGET_DIR/gora-cassandra-$GORA_VERSION.jar<br />
+        export HBASE_JAR=$GORA_DIR/gora-hbase/lib/hbase-0.90.4.jar
+        export HADOOP_CLASSPATH=$GIRAPH_CORE_JAR:$GIRAPH_EXAMPLES:$GIRAPH_GORA_JAR:$GORA_HBASE_JAR<br/><br/>
+      </code><br />
+      
+        <div class="source"><pre class="prettyprint">
+           hadoop jar $GIRAPH_EXAMPLES_JAR org.apache.giraph.GiraphRunner 
+           -files ../conf/gora.properties,../conf/gora-hbase-mapping.xml,../conf/hbase-site.xml
+           -Dio.serializations=org.apache.hadoop.io.serializer.WritableSerialization,org.apache.hadoop.io.serializer.JavaSerialization
+           -Dgiraph.gora.datastore.class=org.apache.gora.hbase.store.HBaseStore
+           -Dgiraph.gora.key.class=java.lang.String
+           -Dgiraph.gora.persistent.class=org.apache.giraph.io.gora.generated.GEdge
+           -Dgiraph.gora.start.key=0
+           -Dgiraph.gora.end.key=10
+           -Dgiraph.gora.keys.factory.class=org.apache.giraph.io.gora.utils.KeyFactory
+           -Dgiraph.gora.output.datastore.class=org.apache.gora.hbase.store.HBaseStore 
+           -Dgiraph.gora.output.key.class=java.lang.String  
+           -Dgiraph.gora.output.persistent.class=org.apache.giraph.io.gora.generated.GEdgeResult 
+           -libjars $GIRAPH_GORA_JAR,$GORA_HBASE_JAR,$HBASE_JAR
+           org.apache.giraph.examples.SimpleShortestPathsComputation 
+           -eif org.apache.giraph.io.gora.GoraGEdgeEdgeInputFormat 
+           -eof org.apache.giraph.io.gora.GoraGEdgeEdgeOutputFormat 
+           -w 1
+        </pre></div><br />
+    </section>
+  </body>
+</document>


[3/3] git commit: updated refs/heads/trunk to 82dad0a

Posted by cl...@apache.org.
GIRAPH-793


Project: http://git-wip-us.apache.org/repos/asf/giraph/repo
Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/82dad0a1
Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/82dad0a1
Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/82dad0a1

Branch: refs/heads/trunk
Commit: 82dad0a175b986ae9236c07ac14aa12824c6a7c1
Parents: f7c3025
Author: Claudio Martella <cl...@gmail.com>
Authored: Mon Nov 18 19:27:27 2013 +0100
Committer: Claudio Martella <cl...@gmail.com>
Committed: Mon Nov 18 19:27:27 2013 +0100

----------------------------------------------------------------------
 CHANGELOG                                 |    3 +
 src/site/resources/images/Gora-Giraph.svg | 2192 ++++++++++++++++++++++++
 src/site/site.xml                         |    1 +
 src/site/xdoc/gora.xml                    |  354 ++++
 4 files changed, 2550 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/giraph/blob/82dad0a1/CHANGELOG
----------------------------------------------------------------------
diff --git a/CHANGELOG b/CHANGELOG
index e5a4a1b..5c9a733 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,6 +1,9 @@
 Giraph Change Log
 
 Release 1.1.0 - unreleased
+  GIRAPH-793: Create necessary documentation for Giraph-Gora integration 
+  (enato2099 via claudio)
+
   GIRAPH-760: Create EdgeOutputFormat to Apache Gora (renato2099 via claudio)
 
   GIRAPH-759: Create EdgeInputFormat from Apache Gora (renato2099 via claudio)


[2/3] GIRAPH-793

Posted by cl...@apache.org.
http://git-wip-us.apache.org/repos/asf/giraph/blob/82dad0a1/src/site/resources/images/Gora-Giraph.svg
----------------------------------------------------------------------
diff --git a/src/site/resources/images/Gora-Giraph.svg b/src/site/resources/images/Gora-Giraph.svg
new file mode 100644
index 0000000..715f6be
--- /dev/null
+++ b/src/site/resources/images/Gora-Giraph.svg
@@ -0,0 +1,2192 @@
+<?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 width="1414pt" height="378pt" viewBox="0 0 1414 378" version="1.1" xmlns="http://www.w3.org/2000/svg">
+<path fill="#ffffff" d=" M 0.00 0.00 L 1414.00 0.00 L 1414.00 378.00 L 0.00 378.00 L 0.00 0.00 Z" />
+<path fill="#ff7f27" d=" M 440.43 9.80 C 446.77 16.61 450.74 25.22 456.58 32.44 C 467.20 48.14 477.48 64.07 488.41 79.55 C 492.58 84.81 495.79 90.75 499.99 95.98 C 510.44 113.01 522.20 129.19 533.23 145.85 C 539.99 156.33 547.45 166.31 554.19 176.79 C 561.90 188.70 570.29 200.13 578.02 212.02 C 587.81 226.82 598.11 241.25 607.74 256.15 C 617.70 269.73 626.29 284.25 636.24 297.83 C 645.27 311.54 654.43 325.15 663.92 338.53 C 663.95 339.15 664.01 340.38 664.04 341.00 C 514.68 341.00 365.32 341.00 215.97 341.00 C 215.99 340.37 216.05 339.12 216.08 338.50 C 224.34 328.10 230.78 316.42 238.79 305.83 C 248.35 291.11 258.64 276.90 268.20 262.18 C 274.22 254.10 279.55 245.54 285.19 237.20 C 292.81 227.01 299.20 215.97 306.82 205.79 C 316.64 190.67 327.21 176.09 337.01 160.96 C 347.19 146.64 356.62 131.79 366.87 117.50 C 366.93 117.00 367.06 115.98 367.12 115.48 C 376.71 103.09 384.43 89.38 393.79 76.83 C 399.76 68.43 404.61 59.17 411.61 51.57 C 416.08 45.04 420.29 38.34 424.84 31.87 C 430.4
 2 24.79 434.44 16.57 440.43 9.80 Z" />
+<path fill="#ffffff" d=" M 440.39 14.07 L 440.62 14.07 C 443.43 19.48 447.58 24.00 450.78 29.16 C 455.37 36.28 460.38 43.13 464.71 50.41 C 472.32 61.73 480.44 72.70 487.79 84.21 C 497.58 97.54 506.00 111.84 515.79 125.17 C 522.92 135.73 529.71 146.52 537.23 156.81 C 545.70 169.64 554.23 182.42 563.02 195.03 C 569.07 203.98 574.82 213.13 581.24 221.82 C 590.80 236.52 600.82 250.89 610.62 265.42 C 618.95 278.32 628.00 290.71 636.38 303.58 C 643.87 315.15 652.29 326.11 659.40 337.93 C 554.92 338.10 450.44 337.95 345.96 338.00 C 304.17 337.95 262.38 338.10 220.60 337.93 C 223.32 332.74 227.26 328.36 230.39 323.43 C 240.12 308.54 250.54 294.13 260.20 279.18 C 267.81 269.03 274.17 257.99 281.79 247.83 C 291.34 233.10 301.66 218.90 311.21 204.17 C 317.52 195.70 323.05 186.68 329.03 177.98 C 336.11 168.62 341.91 158.36 348.98 149.00 C 353.57 142.22 358.05 135.37 362.62 128.58 C 369.26 119.77 374.84 110.23 381.29 101.28 C 388.72 91.76 393.75 80.68 401.15 71.14 C 404.69 65.75 409.13 61.02 412
 .37 55.41 C 417.61 48.24 422.47 40.81 427.38 33.42 C 431.55 26.86 436.62 20.90 440.39 14.07 Z" />
+<path fill="#866acb" d=" M 862.06 21.25 C 861.43 20.15 861.26 17.40 862.85 17.20 C 863.15 18.59 863.16 20.03 863.02 21.45 C 862.78 21.40 862.30 21.30 862.06 21.25 Z" />
+<path fill="#5070d3" d=" M 862.85 17.20 L 864.26 16.60 C 863.90 20.43 863.91 24.29 864.29 28.12 C 861.90 27.52 857.97 29.11 857.10 25.97 C 855.71 22.79 858.89 19.65 862.06 21.25 C 862.30 21.30 862.78 21.40 863.02 21.45 C 863.16 20.03 863.15 18.59 862.85 17.20 Z" />
+<path fill="#c4ffff" d=" M 864.26 16.60 C 865.42 20.31 865.27 24.39 864.29 28.12 C 863.91 24.29 863.90 20.43 864.26 16.60 Z" />
+<path fill="#a685cb" d=" M 967.02 17.07 L 967.94 16.99 C 967.94 20.66 967.95 24.34 967.98 28.01 L 966.99 27.93 C 967.02 24.31 967.03 20.69 967.02 17.07 Z" />
+<path fill="#4570d5" d=" M 967.94 16.99 L 969.38 16.99 C 969.32 18.52 969.28 20.06 969.24 21.59 C 970.57 21.29 971.91 21.00 973.27 20.73 C 974.15 23.07 974.29 25.57 974.26 28.05 L 972.89 27.78 C 973.18 26.26 973.12 24.69 972.76 23.19 L 972.34 23.20 C 971.65 23.22 970.27 23.28 969.58 23.30 C 969.35 24.86 969.31 26.44 969.24 28.01 L 967.98 28.01 C 967.95 24.34 967.94 20.66 967.94 16.99 Z" />
+<path fill="#866acb" d=" M 775.99 18.01 L 776.96 17.92 C 776.95 21.28 776.96 24.64 776.98 28.00 L 775.99 28.02 C 775.97 24.68 775.97 21.34 775.99 18.01 Z" />
+<path fill="#4474d3" d=" M 776.96 17.92 C 778.77 18.31 781.87 17.05 782.32 19.63 C 780.73 20.06 778.68 19.76 777.70 21.37 C 779.05 21.71 780.40 22.11 781.74 22.54 C 781.81 22.84 781.95 23.42 782.02 23.71 C 780.76 23.88 779.51 24.05 778.27 24.22 C 778.30 25.48 778.33 26.74 778.37 28.01 L 776.98 28.00 C 776.96 24.64 776.95 21.28 776.96 17.92 Z" />
+<path fill="#646ad4" d=" M 832.25 18.20 C 833.88 17.65 834.45 18.19 833.96 19.81 C 832.32 20.35 831.74 19.81 832.25 18.20 Z" />
+<path fill="#866acb" d=" M 891.98 18.07 L 892.97 18.01 C 892.97 21.33 892.97 24.65 892.97 27.97 L 892.00 28.01 C 891.97 24.69 891.97 21.38 891.98 18.07 Z" />
+<path fill="#416adc" d=" M 892.97 18.01 L 894.26 17.61 C 893.92 21.18 893.93 24.78 894.27 28.34 L 892.97 27.97 C 892.97 24.65 892.97 21.33 892.97 18.01 Z" />
+<path fill="#c4ffff" d=" M 894.26 17.61 C 895.32 21.08 895.21 24.86 894.27 28.34 C 893.93 24.78 893.92 21.18 894.26 17.61 Z" />
+<path fill="#a685cb" d=" M 896.05 18.01 L 896.97 17.70 C 896.96 21.29 896.99 24.87 896.73 28.45 C 895.34 25.16 896.21 21.47 896.05 18.01 Z" />
+<path fill="#4979da" d=" M 896.97 17.70 C 900.70 18.16 901.22 22.78 903.12 25.37 L 903.54 26.28 C 903.77 23.54 903.92 20.78 904.04 18.03 L 905.10 17.97 C 905.10 21.42 905.11 24.86 905.07 28.31 C 901.01 28.08 900.51 23.24 898.26 20.67 C 898.19 23.09 898.19 25.52 898.18 27.94 L 896.73 28.45 C 896.99 24.87 896.96 21.29 896.97 17.70 Z" />
+<path fill="#866dcb" d=" M 902.97 17.98 L 904.04 18.03 C 903.92 20.78 903.77 23.54 903.54 26.28 L 903.12 25.37 C 902.87 22.91 902.95 20.44 902.97 17.98 Z" />
+<path fill="#496fd3" d=" M 905.77 19.56 C 907.29 16.63 911.42 18.49 914.07 18.02 C 914.08 18.49 914.11 19.44 914.12 19.92 C 913.58 19.94 912.49 20.00 911.95 20.03 L 910.97 20.08 C 910.98 22.85 911.04 25.63 911.26 28.41 L 909.97 27.95 C 909.93 25.40 909.92 22.85 909.76 20.31 L 909.01 20.15 C 908.20 20.00 906.58 19.71 905.77 19.56 Z" />
+<path fill="#4c71d1" d=" M 917.25 28.13 C 913.79 25.54 914.07 20.06 917.83 17.89 C 919.16 17.95 920.50 18.00 921.85 18.05 C 922.63 18.71 923.42 19.36 924.22 20.02 C 924.36 22.30 925.11 25.25 922.97 26.87 C 921.50 28.49 919.16 27.86 917.25 28.13 Z" />
+<path fill="#4d72d2" d=" M 930.52 20.10 C 931.27 19.32 932.07 18.56 932.90 17.83 C 935.34 17.80 938.41 17.70 938.55 20.95 C 936.76 20.39 934.92 20.04 933.08 19.80 C 932.52 21.32 931.26 23.00 932.16 24.65 C 932.97 26.11 934.72 25.89 936.14 26.20 C 936.14 25.75 936.14 24.86 936.14 24.42 C 934.79 24.14 933.92 23.37 933.54 22.10 C 935.11 22.03 936.68 21.99 938.26 21.96 C 938.14 23.90 938.40 25.93 937.74 27.79 C 934.80 28.57 930.63 28.20 929.86 24.63 C 930.05 23.12 930.25 21.61 930.52 20.10 Z" />
+<path fill="#646ad4" d=" M 940.25 18.19 C 941.88 17.65 942.45 18.19 941.96 19.81 C 940.31 20.35 939.74 19.81 940.25 18.19 Z" />
+<path fill="#dcbcdb" d=" M 818.56 21.27 C 819.53 20.37 820.51 19.46 821.50 18.56 C 820.96 19.64 820.43 20.72 819.92 21.81 C 820.57 23.64 820.94 25.55 821.14 27.49 C 820.42 26.28 819.81 25.01 819.39 23.68 C 819.18 23.08 818.77 21.87 818.56 21.27 Z" />
+<path fill="#416acb" d=" M 821.50 18.56 C 822.53 19.99 823.73 21.25 825.51 21.74 C 825.51 21.90 825.51 22.21 825.51 22.37 C 823.80 22.43 821.36 23.69 822.98 25.52 C 823.52 25.94 824.58 26.79 825.11 27.21 C 823.82 27.58 822.52 27.89 821.22 28.15 L 821.14 27.49 C 820.94 25.55 820.57 23.64 819.92 21.81 C 820.43 20.72 820.96 19.64 821.50 18.56 Z" />
+<path fill="#dcbcdb" d=" M 825.51 21.74 C 825.54 20.37 826.15 19.26 827.32 18.43 C 826.93 19.57 826.55 20.70 826.17 21.83 C 826.57 23.73 826.89 25.63 827.18 27.54 C 825.90 26.12 825.57 24.21 825.51 22.37 C 825.51 22.21 825.51 21.90 825.51 21.74 Z" />
+<path fill="#416acb" d=" M 827.32 18.43 C 828.47 19.61 829.67 20.75 830.67 22.08 C 829.67 23.06 827.89 23.87 828.81 25.52 C 829.39 25.94 830.55 26.78 831.13 27.20 C 829.85 27.56 828.56 27.90 827.29 28.22 L 827.18 27.54 C 826.89 25.63 826.57 23.73 826.17 21.83 C 826.55 20.70 826.93 19.57 827.32 18.43 Z" />
+<path fill="#dcbcdb" d=" M 872.35 22.15 C 873.31 20.88 874.33 19.67 875.42 18.51 C 874.90 19.61 874.39 20.72 873.89 21.82 C 874.57 23.63 874.96 25.52 875.18 27.44 C 874.48 26.18 873.83 24.89 873.17 23.62 C 872.96 23.25 872.55 22.52 872.35 22.15 Z" />
+<path fill="#416acb" d=" M 875.42 18.51 C 876.53 19.64 877.65 20.76 878.62 22.04 C 878.00 22.98 876.28 23.54 876.58 25.03 C 877.13 25.55 878.23 26.59 878.78 27.10 C 877.76 27.83 876.59 28.17 875.27 28.13 L 875.18 27.44 C 874.96 25.52 874.57 23.63 873.89 21.82 C 874.39 20.72 874.90 19.61 875.42 18.51 Z" />
+<path fill="#866acb" d=" M 909.01 20.15 L 909.76 20.31 C 909.92 22.85 909.93 25.40 909.97 27.95 L 908.97 27.97 C 908.97 25.36 908.98 22.76 909.01 20.15 Z" />
+<path fill="#c4ffff" d=" M 910.97 20.08 L 911.95 20.03 C 911.97 22.83 912.23 25.72 911.26 28.41 C 911.04 25.63 910.98 22.85 910.97 20.08 Z" />
+<path fill="#ffffff" d=" M 917.21 21.40 C 917.89 19.70 919.73 20.16 921.19 20.04 C 921.33 21.34 921.64 22.60 921.96 23.86 C 922.26 26.20 919.42 25.94 917.94 26.23 C 917.47 24.68 916.70 23.05 917.21 21.40 Z" />
+<path fill="#b79dd2" d=" M 921.19 20.04 C 923.10 19.66 924.18 23.83 921.96 23.86 C 921.64 22.60 921.33 21.34 921.19 20.04 Z" />
+<path fill="#e7c3db" d=" M 929.86 24.63 C 927.68 24.46 928.31 19.60 930.52 20.10 C 930.25 21.61 930.05 23.12 929.86 24.63 Z" />
+<path fill="#e1cae1" d=" M 781.74 22.54 C 782.71 22.01 783.69 21.47 784.67 20.92 C 783.89 22.45 783.22 24.03 782.63 25.64 C 783.39 26.51 784.16 27.38 784.92 28.27 C 782.91 27.50 782.14 25.74 782.02 23.71 C 781.95 23.42 781.81 22.84 781.74 22.54 Z" />
+<path fill="#4a70d0" d=" M 784.67 20.92 C 786.11 20.94 787.56 20.95 789.02 20.95 C 790.08 22.45 790.60 24.19 790.81 26.01 C 789.25 27.67 787.11 28.18 784.92 28.27 C 784.16 27.38 783.39 26.51 782.63 25.64 C 783.22 24.03 783.89 22.45 784.67 20.92 Z" />
+<path fill="#a685cb" d=" M 792.80 27.77 C 791.20 26.73 791.19 22.27 792.79 21.20 C 793.17 23.37 793.17 25.60 792.80 27.77 Z" />
+<path fill="#4978d5" d=" M 792.79 21.20 C 794.43 21.37 797.10 20.21 797.33 22.69 C 796.60 22.85 795.12 23.15 794.38 23.31 C 794.36 24.89 794.34 26.48 794.34 28.08 L 792.80 27.77 C 793.17 25.60 793.17 23.37 792.79 21.20 Z" />
+<path fill="#a685cb" d=" M 802.04 31.03 C 802.17 27.54 801.44 23.87 802.70 20.51 C 802.98 23.99 802.99 27.49 802.98 30.99 L 802.04 31.03 Z" />
+<path fill="#416cd1" d=" M 802.70 20.51 C 803.13 20.79 803.98 21.35 804.40 21.63 C 805.62 21.31 806.85 21.01 808.10 20.71 C 810.01 23.02 809.62 25.88 808.00 28.21 C 806.72 27.99 805.47 27.76 804.22 27.52 C 804.26 28.69 804.32 29.85 804.38 31.02 L 802.98 30.99 C 802.99 27.49 802.98 23.99 802.70 20.51 Z" />
+<path fill="#8b6fcb" d=" M 812.02 26.76 C 810.19 26.30 810.15 21.86 811.76 21.20 C 812.08 23.03 812.16 24.91 812.02 26.76 Z" />
+<path fill="#4a6fd6" d=" M 811.76 21.20 L 813.17 20.96 C 813.18 22.62 813.20 24.29 813.24 25.95 C 814.04 25.90 815.62 25.80 816.41 25.75 L 816.84 25.72 C 817.15 24.23 817.16 22.67 816.87 21.17 L 818.27 21.30 C 817.84 23.41 817.84 25.58 818.10 27.71 C 816.04 27.83 813.99 27.91 811.95 27.96 L 812.02 26.76 C 812.16 24.91 812.08 23.03 811.76 21.20 Z" />
+<path fill="#866acb" d=" M 816.41 25.75 C 815.41 24.65 815.19 21.53 816.87 21.17 C 817.16 22.67 817.15 24.23 816.84 25.72 L 816.41 25.75 Z" />
+<path fill="#c4fffd" d=" M 818.27 21.30 L 818.56 21.27 C 818.77 21.87 819.18 23.08 819.39 23.68 C 819.46 24.96 819.49 27.17 818.10 27.71 C 817.84 25.58 817.84 23.41 818.27 21.30 Z" />
+<path fill="#866acb" d=" M 833.24 27.79 C 830.89 27.32 830.91 21.68 833.25 21.22 C 832.69 23.35 832.66 25.66 833.24 27.79 Z" />
+<path fill="#416adc" d=" M 833.25 21.22 L 833.76 21.24 C 834.31 23.34 834.30 25.65 833.75 27.75 L 833.24 27.79 C 832.66 25.66 832.69 23.35 833.25 21.22 Z" />
+<path fill="#c4ffff" d=" M 833.76 21.24 C 836.17 21.95 836.14 27.04 833.75 27.75 C 834.30 25.65 834.31 23.34 833.76 21.24 Z" />
+<path fill="#a685cb" d=" M 836.78 27.78 C 835.23 26.76 835.17 22.18 836.81 21.28 C 837.20 23.43 837.19 25.63 836.78 27.78 Z" />
+<path fill="#4c76d6" d=" M 836.81 21.28 C 838.62 21.16 840.42 21.02 842.25 20.88 C 843.29 23.13 843.26 25.63 843.26 28.06 L 841.88 27.78 C 842.05 26.43 842.78 24.06 841.25 23.34 C 837.70 21.61 838.41 26.04 838.23 28.08 L 836.78 27.78 C 837.19 25.63 837.20 23.43 836.81 21.28 Z" />
+<path fill="#fbe1e7" d=" M 844.48 28.66 C 844.64 26.13 842.89 22.37 845.66 20.76 C 845.36 23.40 845.04 26.05 844.48 28.66 Z" />
+<path fill="#416acb" d=" M 845.66 20.76 C 847.47 20.93 849.29 21.02 851.12 21.12 C 850.30 22.56 849.71 24.10 849.10 25.62 C 848.29 25.94 846.67 26.56 845.86 26.87 C 846.91 26.92 849.03 27.02 850.09 27.06 C 850.48 27.50 851.26 28.38 851.65 28.81 C 851.18 29.38 850.23 30.52 849.75 31.09 C 847.80 31.00 845.64 31.29 844.29 29.60 L 844.48 28.66 C 845.04 26.05 845.36 23.40 845.66 20.76 Z" />
+<path fill="#8dc8f7" d=" M 851.12 21.12 C 853.25 21.86 851.21 26.56 849.10 25.62 C 849.71 24.10 850.30 22.56 851.12 21.12 Z" />
+<path fill="#416acb" d=" M 865.66 22.78 C 866.68 20.39 870.64 20.13 872.00 22.25 C 871.94 24.08 871.88 25.92 872.11 27.74 C 869.73 27.85 866.82 28.69 865.34 26.24 C 865.78 25.68 866.68 24.55 867.12 23.99 C 867.91 23.99 869.49 23.98 870.28 23.98 L 870.16 23.07 C 868.65 22.99 867.15 22.89 865.66 22.78 Z" />
+<path fill="#416acb" d=" M 879.63 22.75 C 880.71 20.33 885.44 19.90 886.06 22.85 C 886.23 24.52 886.20 26.20 886.24 27.87 C 884.45 27.90 882.67 27.96 880.91 28.00 C 880.56 27.51 879.86 26.54 879.52 26.05 C 879.91 25.53 880.71 24.50 881.10 23.99 C 881.88 23.99 883.42 23.98 884.19 23.98 L 884.25 23.08 C 882.70 22.99 881.16 22.88 879.63 22.75 Z" />
+<path fill="#866acb" d=" M 941.25 27.77 C 938.89 27.34 938.90 21.68 941.24 21.22 C 940.66 23.34 940.68 25.65 941.25 27.77 Z" />
+<path fill="#416adc" d=" M 941.24 21.22 L 941.75 21.26 C 942.31 23.35 942.30 25.65 941.76 27.74 L 941.25 27.77 C 940.68 25.65 940.66 23.34 941.24 21.22 Z" />
+<path fill="#c4ffff" d=" M 941.75 21.26 C 944.14 21.96 944.19 27.06 941.76 27.74 C 942.30 25.65 942.31 23.35 941.75 21.26 Z" />
+<path fill="#a685cb" d=" M 944.80 27.77 C 943.21 26.75 943.23 22.33 944.77 21.21 C 945.20 23.37 945.21 25.60 944.80 27.77 Z" />
+<path fill="#4978d5" d=" M 944.77 21.21 C 946.42 21.36 949.07 20.20 949.33 22.68 C 948.59 22.84 947.11 23.17 946.37 23.33 C 946.35 24.91 946.34 26.49 946.35 28.07 L 944.80 27.77 C 945.21 25.60 945.20 23.37 944.77 21.21 Z" />
+<path fill="#416acb" d=" M 949.68 22.59 C 950.92 20.37 955.49 19.93 956.06 22.87 C 956.23 24.55 956.21 26.25 956.24 27.95 C 953.84 27.79 950.91 28.64 949.33 26.30 C 949.76 25.75 950.63 24.63 951.06 24.08 C 951.99 23.99 953.84 23.82 954.77 23.73 C 953.12 23.11 951.38 22.88 949.68 22.59 Z" />
+<path fill="#a685cb" d=" M 958.03 30.91 C 958.17 27.54 957.43 24.01 958.63 20.78 C 959.03 24.18 958.99 27.60 958.95 31.02 L 958.03 30.91 Z" />
+<path fill="#416cd1" d=" M 958.63 20.78 C 960.60 22.31 963.59 19.77 964.95 22.18 C 966.48 24.06 964.82 26.41 963.98 28.21 C 962.71 27.99 961.48 27.78 960.24 27.56 C 960.27 28.71 960.31 29.85 960.36 31.00 L 958.95 31.02 C 958.99 27.60 959.03 24.18 958.63 20.78 Z" />
+<path fill="#c9fffe" d=" M 872.00 22.25 L 872.35 22.15 C 872.55 22.52 872.96 23.25 873.17 23.62 C 873.51 24.88 873.61 27.28 872.11 27.74 C 871.88 25.92 871.94 24.08 872.00 22.25 Z" />
+<path fill="#f2fffb" d=" M 785.02 23.12 C 785.86 23.08 787.55 22.99 788.40 22.94 C 788.31 23.68 788.15 25.15 788.07 25.89 C 787.30 25.92 785.76 25.98 784.98 26.01 C 784.99 25.29 785.01 23.84 785.02 23.12 Z" />
+<path fill="#ffffff" d=" M 804.31 22.89 C 805.59 23.07 808.06 22.82 807.50 24.90 C 807.28 26.44 805.31 25.75 804.29 26.08 C 804.29 25.28 804.30 23.69 804.31 22.89 Z" />
+<path fill="#7f6acb" d=" M 841.25 23.34 C 842.78 24.06 842.05 26.43 841.88 27.78 C 840.27 27.46 840.46 24.49 841.25 23.34 Z" />
+<path fill="#d7e0f3" d=" M 846.48 23.18 C 847.71 22.31 848.45 22.52 848.71 23.83 C 847.46 24.70 846.72 24.48 846.48 23.18 Z" />
+<path fill="#f2fff9" d=" M 859.02 23.10 C 859.80 23.07 861.36 23.01 862.14 22.97 C 862.14 23.73 862.15 25.26 862.15 26.02 C 861.38 26.00 859.84 25.95 859.06 25.93 C 859.05 25.23 859.03 23.81 859.02 23.10 Z" />
+<path fill="#ffffff" d=" M 960.29 22.90 C 961.57 23.09 964.01 22.79 963.51 24.87 C 963.30 26.41 961.33 25.76 960.30 26.10 C 960.30 25.30 960.30 23.70 960.29 22.90 Z" />
+<path fill="#7f6acb" d=" M 972.34 23.20 L 972.76 23.19 C 973.12 24.69 973.18 26.26 972.89 27.78 C 971.20 27.49 971.43 24.33 972.34 23.20 Z" />
+<path fill="#fffff7" d=" M 868.26 25.11 C 871.28 23.55 868.47 28.37 868.26 25.11 Z" />
+<path fill="#fffff7" d=" M 882.25 25.09 C 885.31 23.59 882.39 28.36 882.25 25.09 Z" />
+<path fill="#fffff7" d=" M 952.25 25.11 C 955.27 23.55 952.47 28.37 952.25 25.11 Z" />
+<path fill="#ffffff" d=" M 846.36 28.26 C 847.06 27.43 849.52 27.33 849.52 28.73 C 848.79 29.56 846.31 29.70 846.36 28.26 Z" />
+<path fill="#416acb" d=" M 738.00 38.00 C 849.67 38.00 961.33 37.99 1073.00 38.00 C 1073.00 80.67 1073.00 123.33 1073.00 166.00 C 961.33 166.00 849.67 166.00 738.00 166.00 C 738.00 123.33 738.00 80.67 738.00 38.00 Z" />
+<path fill="#ffffff" d=" M 741.00 41.00 C 850.67 41.00 960.33 41.00 1070.00 41.00 C 1070.00 81.67 1070.00 122.33 1070.00 163.00 C 960.33 163.00 850.67 163.00 741.00 163.00 C 741.00 122.33 741.00 81.67 741.00 41.00 Z" />
+<path fill="#4f9eeb" d=" M 875.86 53.86 C 877.78 50.48 878.33 56.84 876.00 56.60 C 875.96 55.92 875.89 54.55 875.86 53.86 Z" />
+<path fill="#416acb" d=" M 761.06 56.29 C 761.12 53.83 764.02 53.99 765.78 53.89 C 766.06 54.37 766.62 55.32 766.90 55.79 C 765.59 55.43 764.26 55.08 762.96 54.73 C 761.54 56.94 761.78 60.97 765.42 60.06 C 764.93 58.78 763.98 57.86 763.00 56.98 C 763.81 57.02 765.45 57.10 766.27 57.14 C 765.48 58.37 765.55 59.55 766.48 60.67 C 764.59 61.06 760.90 61.61 761.05 58.67 C 761.06 58.07 761.06 56.88 761.06 56.29 Z" />
+<path fill="#416acb" d=" M 782.34 53.95 C 784.97 54.08 784.46 57.53 785.42 59.27 C 786.53 57.31 786.99 54.76 789.06 53.54 C 788.37 56.04 787.44 58.47 786.57 60.91 C 786.06 60.90 785.03 60.89 784.52 60.88 C 783.86 58.55 783.08 56.25 782.34 53.95 Z" />
+<path fill="#646ad4" d=" M 816.29 60.79 C 813.91 60.45 813.94 54.90 816.00 54.27 C 815.72 56.43 815.75 58.67 816.29 60.79 Z" />
+<path fill="#a6e7ff" d=" M 816.00 54.27 C 816.36 54.70 817.06 55.58 817.42 56.01 C 817.06 57.58 816.78 59.18 816.75 60.79 L 816.29 60.79 C 815.75 58.67 815.72 56.43 816.00 54.27 Z" />
+<path fill="#ffd0dc" d=" M 838.79 55.99 C 839.06 55.58 839.60 54.75 839.87 54.34 C 840.06 56.44 840.20 58.61 839.66 60.67 L 839.16 60.58 L 838.67 60.05 C 838.62 59.30 838.52 57.78 838.47 57.02 L 838.79 55.99 Z" />
+<path fill="#416acb" d=" M 839.87 54.34 C 841.21 54.17 842.56 54.01 843.92 53.88 L 843.92 54.59 C 843.05 54.96 841.32 55.71 840.46 56.08 C 841.37 56.34 843.18 56.87 844.09 57.13 L 843.55 57.83 C 843.06 57.94 842.07 58.16 841.58 58.28 C 841.10 59.27 841.76 61.89 839.66 60.67 C 840.20 58.61 840.06 56.44 839.87 54.34 Z" />
+<path fill="#b39bd0" d=" M 874.30 57.32 C 874.80 56.16 875.31 55.01 875.86 53.86 C 875.89 54.55 875.96 55.92 876.00 56.60 L 876.05 58.31 C 875.94 59.62 875.86 60.93 875.83 62.24 C 875.25 60.62 874.77 58.97 874.30 57.32 Z" />
+<path fill="#416acb" d=" M 795.71 56.48 C 797.50 56.17 799.31 55.80 801.07 55.23 C 801.79 55.73 802.52 56.23 803.25 56.73 L 801.80 57.24 C 800.27 57.31 800.45 59.43 801.71 59.80 C 802.13 60.10 802.96 60.69 803.37 60.98 C 802.61 60.94 801.10 60.85 800.34 60.80 C 800.24 59.42 800.16 58.05 800.09 56.67 C 799.48 56.81 798.27 57.09 797.66 57.23 L 797.14 57.34 C 796.84 58.46 796.81 59.58 797.06 60.71 L 795.93 60.64 C 796.15 59.26 796.19 57.81 795.71 56.48 Z" />
+<path fill="#416acb" d=" M 836.70 55.33 C 837.39 55.55 838.08 55.77 838.79 55.99 L 838.47 57.02 C 836.91 57.57 837.13 59.65 838.67 60.05 L 839.16 60.58 C 838.47 60.68 837.09 60.89 836.40 60.99 C 836.29 59.56 836.19 58.14 836.11 56.71 L 834.43 56.58 C 834.48 57.97 834.54 59.35 834.62 60.74 C 833.12 60.80 831.63 60.86 830.15 60.91 C 830.03 59.08 829.94 57.26 829.96 55.43 C 831.40 56.55 831.13 58.50 831.66 60.07 C 833.78 60.34 832.79 57.63 833.31 56.43 C 834.43 56.08 835.57 55.71 836.70 55.33 Z" />
+<path fill="#416acb" d=" M 868.32 55.77 C 869.58 55.29 870.87 55.63 872.13 55.94 C 869.88 57.29 870.17 59.62 872.09 61.17 C 871.45 61.06 870.17 60.84 869.53 60.73 C 869.16 59.07 868.77 57.41 868.32 55.77 Z" />
+<path fill="#d8afd1" d=" M 761.05 58.67 C 759.19 59.42 759.20 55.57 761.06 56.29 C 761.06 56.88 761.06 58.07 761.05 58.67 Z" />
+<path fill="#c2aed8" d=" M 766.87 57.18 C 767.32 56.94 768.24 56.46 768.70 56.22 L 769.25 56.64 L 769.04 57.38 C 768.56 58.46 768.03 59.51 767.45 60.53 L 767.09 60.52 C 767.25 59.39 767.18 58.28 766.87 57.18 Z" />
+<path fill="#416acb" d=" M 768.70 56.22 C 770.15 55.98 771.59 56.21 772.90 56.90 C 772.82 57.65 772.66 59.14 772.58 59.89 C 771.43 61.77 769.13 60.65 767.45 60.53 C 768.03 59.51 768.56 58.46 769.04 57.38 C 768.52 58.75 769.91 61.24 771.38 59.63 C 772.67 58.04 770.61 56.86 769.25 56.64 L 768.70 56.22 Z" />
+<path fill="#ffd0dc" d=" M 772.90 56.90 C 773.13 56.76 773.59 56.49 773.82 56.36 C 774.15 57.74 774.25 59.25 773.68 60.58 C 773.40 60.41 772.86 60.06 772.58 59.89 C 772.66 59.14 772.82 57.65 772.90 56.90 Z" />
+<path fill="#416acb" d=" M 773.82 56.36 C 776.29 56.21 778.77 56.09 781.25 55.95 L 781.02 57.32 C 780.74 58.47 780.78 59.61 781.15 60.75 C 780.27 60.82 778.52 60.96 777.64 61.03 C 777.12 58.80 778.74 57.76 780.59 56.97 C 778.93 56.95 777.29 57.04 775.66 57.22 L 775.14 57.28 C 774.84 58.43 774.81 59.59 775.05 60.76 L 773.68 60.58 C 774.25 59.25 774.15 57.74 773.82 56.36 Z" />
+<path fill="#416acb" d=" M 789.68 59.07 C 788.94 56.05 793.01 54.83 794.63 57.06 C 794.63 57.54 794.63 58.50 794.64 58.98 C 793.21 59.07 791.79 59.21 790.45 59.68 C 791.42 59.80 793.36 60.03 794.33 60.15 L 794.34 61.17 C 792.67 60.93 790.01 61.39 789.68 59.07 Z" />
+<path fill="#ffd0dc" d=" M 794.63 57.06 C 794.90 56.92 795.44 56.62 795.71 56.48 C 796.19 57.81 796.15 59.26 795.93 60.64 C 795.60 60.23 794.96 59.40 794.64 58.98 C 794.63 58.50 794.63 57.54 794.63 57.06 Z" />
+<path fill="#416acb" d=" M 804.86 60.91 C 802.96 59.53 803.99 57.38 804.76 55.67 C 806.85 55.73 808.48 56.57 808.97 58.71 C 807.48 58.94 806.01 59.19 804.55 59.46 C 806.09 59.86 807.65 60.25 809.22 60.63 C 809.63 60.15 810.46 59.19 810.88 58.71 C 810.33 57.81 809.79 56.90 809.26 56.00 C 810.89 56.59 812.59 56.67 814.24 56.09 C 813.86 56.58 813.10 57.57 812.72 58.06 C 813.17 59.15 813.62 60.23 814.07 61.32 C 813.21 60.82 812.35 60.31 811.51 59.80 C 809.73 61.45 807.06 60.97 804.86 60.91 Z" />
+<path fill="#ffd0dc" d=" M 817.42 56.01 L 817.84 56.02 C 818.35 57.60 818.54 59.59 817.34 60.92 L 816.75 60.79 C 816.78 59.18 817.06 57.58 817.42 56.01 Z" />
+<path fill="#416acb" d=" M 817.84 56.02 C 819.13 56.56 822.38 55.03 822.28 57.21 L 821.82 58.01 L 821.29 57.84 C 820.86 57.59 820.00 57.09 819.58 56.84 C 818.97 58.27 820.06 61.46 817.34 60.92 C 818.54 59.59 818.35 57.60 817.84 56.02 Z" />
+<path fill="#ffd0dc" d=" M 822.97 57.11 C 823.16 56.93 823.53 56.57 823.72 56.39 C 824.39 58.51 824.31 60.80 823.89 62.96 C 823.57 62.46 822.93 61.45 822.61 60.95 C 823.20 59.71 823.32 58.43 822.97 57.11 Z" />
+<path fill="#416acb" d=" M 823.72 56.39 C 825.25 56.21 826.80 56.06 828.35 55.92 L 828.06 57.29 C 828.05 57.90 828.03 59.13 828.02 59.74 L 828.25 60.91 C 827.59 60.92 826.26 60.95 825.60 60.96 C 825.39 61.99 824.82 62.66 823.89 62.96 C 824.31 60.80 824.39 58.51 823.72 56.39 Z" />
+<path fill="#e8cfe2" d=" M 844.09 57.13 C 844.34 56.98 844.84 56.68 845.09 56.53 C 845.17 57.88 845.15 59.25 844.95 60.59 C 843.74 60.20 843.27 59.28 843.55 57.83 L 844.09 57.13 Z" />
+<path fill="#416acb" d=" M 845.09 56.53 C 846.74 55.95 848.48 55.97 849.99 56.93 C 849.91 57.67 849.74 59.15 849.65 59.89 C 848.49 61.51 846.58 60.87 844.95 60.59 C 845.15 59.25 845.17 57.88 845.09 56.53 Z" />
+<path fill="#ffd0dc" d=" M 849.99 56.93 C 850.28 56.83 850.86 56.62 851.15 56.52 C 850.99 57.84 851.25 59.20 850.93 60.50 C 850.61 60.35 849.97 60.04 849.65 59.89 C 849.74 59.15 849.91 57.67 849.99 56.93 Z" />
+<path fill="#4b76d5" d=" M 851.15 56.52 C 851.81 56.45 853.14 56.32 853.80 56.25 L 853.66 56.73 C 852.14 57.52 852.78 60.56 850.93 60.50 C 851.25 59.20 850.99 57.84 851.15 56.52 Z" />
+<path fill="#f9d0dc" d=" M 853.80 56.25 L 854.37 56.32 C 855.19 57.61 855.14 59.21 854.95 60.67 C 853.34 60.51 853.54 57.93 853.66 56.73 L 853.80 56.25 Z" />
+<path fill="#416acb" d=" M 854.37 56.32 C 857.00 56.15 859.65 56.09 862.31 56.02 C 862.21 57.83 863.12 60.02 861.61 61.48 C 861.05 59.79 861.53 57.51 859.78 56.40 C 859.41 58.13 859.53 60.05 858.48 61.57 C 858.18 59.93 857.91 58.29 857.68 56.64 C 855.67 57.23 856.33 59.52 856.02 61.08 L 854.95 60.67 C 855.14 59.21 855.19 57.61 854.37 56.32 Z" />
+<path fill="#547fd8" d=" M 863.67 56.00 C 864.56 55.99 866.34 55.98 867.24 55.98 C 867.49 57.61 867.73 59.24 867.98 60.88 C 866.51 60.95 865.06 61.01 863.62 61.07 C 863.36 59.01 864.20 57.48 866.50 57.51 C 865.80 57.33 864.39 56.97 863.69 56.79 L 863.67 56.00 Z" />
+<path fill="#8ed6ff" d=" M 766.27 57.14 L 766.87 57.18 C 767.18 58.28 767.25 59.39 767.09 60.52 L 766.48 60.67 C 765.55 59.55 765.48 58.37 766.27 57.14 Z" />
+<path fill="#ffffff" d=" M 769.25 56.64 C 770.61 56.86 772.67 58.04 771.38 59.63 C 769.91 61.24 768.52 58.75 769.04 57.38 L 769.25 56.64 Z" />
+<path fill="#9ee1ff" d=" M 775.14 57.28 L 775.66 57.22 C 776.69 58.03 776.64 60.83 775.05 60.76 C 774.81 59.59 774.84 58.43 775.14 57.28 Z" />
+<path fill="#6dbef9" d=" M 781.02 57.32 C 782.59 57.15 782.67 59.96 781.68 60.75 L 781.15 60.75 C 780.78 59.61 780.74 58.47 781.02 57.32 Z" />
+<path fill="#ffffff" d=" M 791.36 57.08 C 794.43 55.63 791.43 60.36 791.36 57.08 Z" />
+<path fill="#9ee1ff" d=" M 797.14 57.34 L 797.66 57.23 C 798.74 57.98 798.65 60.82 797.06 60.71 C 796.81 59.58 796.84 58.46 797.14 57.34 Z" />
+<path fill="#86d0ff" d=" M 801.71 59.80 C 800.45 59.43 800.27 57.31 801.80 57.24 C 801.78 57.88 801.73 59.16 801.71 59.80 Z" />
+<path fill="#ffffff" d=" M 805.34 57.09 C 808.38 55.60 805.47 60.37 805.34 57.09 Z" />
+<path fill="#86d0ff" d=" M 822.28 57.21 L 822.97 57.11 C 823.32 58.43 823.20 59.71 822.61 60.95 L 822.04 60.83 C 821.99 60.12 821.88 58.72 821.82 58.01 L 822.28 57.21 Z" />
+<path fill="#ffffff" d=" M 825.49 57.26 C 827.02 56.02 828.37 58.82 827.02 59.78 C 825.48 60.93 824.16 58.22 825.49 57.26 Z" />
+<path fill="#64b8f7" d=" M 828.06 57.29 C 829.76 56.73 829.71 60.39 828.02 59.74 C 828.03 59.13 828.05 57.90 828.06 57.29 Z" />
+<path fill="#ffffff" d=" M 838.67 60.05 C 837.13 59.65 836.91 57.57 838.47 57.02 C 838.52 57.78 838.62 59.30 838.67 60.05 Z" />
+<path fill="#ffffff" d=" M 846.30 57.29 C 848.10 55.65 849.80 59.36 847.69 60.05 C 846.13 60.58 845.17 58.28 846.30 57.29 Z" />
+<path fill="#866acb" d=" M 821.29 57.84 L 821.82 58.01 C 821.88 58.72 821.99 60.12 822.04 60.83 C 820.53 60.32 820.28 59.33 821.29 57.84 Z" />
+<path fill="#4d9eeb" d=" M 876.05 58.31 C 877.83 58.59 878.23 65.34 875.83 62.24 C 875.86 60.93 875.94 59.62 876.05 58.31 Z" />
+<path fill="#ffffff" d=" M 779.26 59.21 C 779.79 59.82 779.79 59.82 779.26 59.21 Z" />
+<path fill="#ffffee" d=" M 865.29 59.20 C 865.83 59.77 865.83 59.77 865.29 59.20 Z" />
+<path fill="#567fdf" d=" M 916.97 69.34 C 916.57 67.73 917.15 66.24 918.66 65.54 C 918.05 69.14 917.94 72.81 918.61 76.42 C 916.93 75.37 916.35 73.81 916.87 71.75 C 916.90 71.15 916.94 69.94 916.97 69.34 Z" />
+<path fill="#416acb" d=" M 1003.63 66.19 C 1004.02 66.13 1004.79 66.02 1005.18 65.96 L 1005.19 66.68 C 1005.23 69.56 1005.23 72.45 1005.21 75.33 L 1005.20 76.01 C 1004.81 75.96 1004.02 75.86 1003.62 75.81 C 1004.60 72.66 1004.59 69.34 1003.63 66.19 Z" />
+<path fill="#416acb" d=" M 770.34 66.92 C 772.98 67.08 772.46 70.53 773.42 72.30 C 774.52 70.32 774.96 67.75 777.06 66.53 C 776.37 69.02 775.46 71.44 774.59 73.87 C 774.08 73.89 773.06 73.92 772.55 73.93 C 771.87 71.57 771.08 69.25 770.34 66.92 Z" />
+<path fill="#646ad4" d=" M 809.20 73.01 C 807.34 75.15 806.86 67.46 808.95 67.29 C 808.86 69.20 808.91 71.12 809.20 73.01 Z" />
+<path fill="#a6e7ff" d=" M 808.95 67.29 C 810.86 67.89 810.73 72.11 809.20 73.01 C 808.91 71.12 808.86 69.20 808.95 67.29 Z" />
+<path fill="#416acb" d=" M 815.34 66.87 C 817.94 67.15 817.48 70.47 818.42 72.26 C 819.55 70.32 819.96 67.76 822.04 66.56 C 820.82 69.01 821.13 73.65 817.89 74.17 C 816.80 71.83 816.08 69.34 815.34 66.87 Z" />
+<path fill="#416acb" d=" M 827.86 66.97 C 829.39 66.98 830.93 67.01 832.48 67.05 C 831.15 67.76 829.84 68.47 828.54 69.17 C 829.44 69.46 831.25 70.03 832.15 70.32 C 830.91 70.85 829.71 71.43 828.70 72.32 C 829.98 72.45 831.03 72.92 831.83 73.73 C 830.50 73.93 829.18 74.07 827.86 74.14 C 827.85 71.75 827.85 69.36 827.86 66.97 Z" />
+<path fill="#416acb" d=" M 858.62 69.31 C 861.62 69.82 863.27 67.15 865.99 66.76 C 865.63 67.16 864.91 67.95 864.55 68.34 C 864.47 70.23 864.37 72.11 864.28 74.00 L 862.84 74.01 C 862.83 72.62 862.83 71.23 862.85 69.85 C 862.03 69.88 860.41 69.95 859.60 69.99 C 860.47 70.89 861.75 71.58 862.11 72.89 C 861.04 74.02 859.67 74.39 858.00 73.98 C 858.75 73.66 860.26 73.02 861.02 72.71 C 859.61 72.03 858.59 70.95 858.62 69.31 Z" />
+<path fill="#416acb" d=" M 884.34 66.92 C 886.96 67.10 886.46 70.50 887.41 72.25 C 888.52 70.30 889.00 67.78 891.05 66.52 C 890.32 69.17 889.56 71.85 888.10 74.20 C 885.09 73.53 885.61 69.24 884.34 66.92 Z" />
+<path fill="#416acb" d=" M 921.00 66.91 C 921.77 66.95 923.30 67.02 924.07 67.06 C 924.52 67.36 925.42 67.97 925.87 68.28 C 925.57 69.74 925.61 71.24 925.64 72.72 C 924.23 74.08 921.29 74.92 920.13 72.89 C 918.77 70.90 920.02 68.73 921.00 66.91 Z" />
+<path fill="#ffd0dc" d=" M 925.87 68.28 C 926.13 68.13 926.67 67.84 926.94 67.70 C 927.02 69.64 927.26 71.64 926.66 73.53 C 926.41 73.33 925.90 72.92 925.64 72.72 C 925.61 71.24 925.57 69.74 925.87 68.28 Z" />
+<path fill="#416acb" d=" M 926.94 67.70 L 927.82 66.50 C 927.95 67.16 928.22 68.47 928.35 69.13 C 929.10 69.09 930.61 69.02 931.36 68.98 L 931.06 70.29 C 931.05 70.91 931.02 72.14 931.01 72.75 L 931.24 74.05 C 929.70 73.90 928.17 73.72 926.66 73.53 C 927.26 71.64 927.02 69.64 926.94 67.70 Z" />
+<path fill="#759de5" d=" M 933.10 67.11 C 936.05 65.47 933.38 70.40 933.10 67.11 Z" />
+<path fill="#416acb" d=" M 974.01 66.91 C 974.77 66.95 976.30 67.02 977.07 67.06 C 977.52 67.36 978.41 67.96 978.86 68.26 C 978.50 69.76 978.52 71.32 978.78 72.83 C 976.92 73.87 974.24 74.90 972.76 72.72 C 972.93 71.63 972.95 70.54 972.82 69.45 C 973.11 68.82 973.71 67.55 974.01 66.91 Z" />
+<path fill="#ffd0dc" d=" M 978.86 68.26 C 979.13 68.11 979.68 67.81 979.95 67.66 C 980.02 69.62 980.19 71.61 979.70 73.53 C 979.47 73.36 979.01 73.01 978.78 72.83 C 978.52 71.32 978.50 69.76 978.86 68.26 Z" />
+<path fill="#416acb" d=" M 979.95 67.66 L 980.78 66.51 C 980.93 67.16 981.22 68.45 981.36 69.10 C 982.11 69.08 983.59 69.02 984.34 69.00 L 984.05 70.27 C 984.05 70.88 984.03 72.11 984.02 72.72 L 984.27 74.04 C 982.73 73.89 981.21 73.72 979.70 73.53 C 980.19 71.61 980.02 69.62 979.95 67.66 Z" />
+<path fill="#759de5" d=" M 986.10 67.11 C 989.05 65.49 986.36 70.41 986.10 67.11 Z" />
+<path fill="#74c3f9" d=" M 1005.19 66.68 C 1006.23 69.49 1006.23 72.51 1005.21 75.33 C 1005.23 72.45 1005.23 69.56 1005.19 66.68 Z" />
+<path fill="#416acb" d=" M 783.69 69.48 C 786.24 69.09 789.07 67.58 791.36 69.58 L 789.78 70.20 C 788.28 70.32 788.43 72.38 789.69 72.77 C 790.10 73.08 790.92 73.68 791.33 73.98 C 790.59 73.94 789.10 73.86 788.36 73.82 C 788.25 72.44 788.16 71.06 788.09 69.68 C 787.49 69.82 786.29 70.08 785.69 70.21 L 785.17 70.33 C 784.85 71.44 784.81 72.57 785.06 73.70 L 783.93 73.68 C 784.15 72.29 784.20 70.82 783.69 69.48 Z" />
+<path fill="#416acb" d=" M 839.32 68.82 C 840.75 67.88 842.07 68.87 843.35 69.55 L 841.75 70.22 C 840.24 70.36 840.41 72.45 841.71 72.78 C 842.14 73.07 843.01 73.64 843.45 73.93 C 842.72 73.90 841.26 73.84 840.53 73.81 C 840.13 72.14 839.74 70.48 839.32 68.82 Z" />
+<path fill="#416acb" d=" M 897.71 69.49 C 899.50 69.17 901.31 68.79 903.06 68.23 C 903.77 68.73 904.50 69.22 905.23 69.72 L 903.80 70.22 C 902.27 70.29 902.42 72.41 903.69 72.78 C 904.12 73.08 904.97 73.69 905.39 73.99 C 904.63 73.95 903.10 73.85 902.34 73.80 C 902.24 72.42 902.16 71.04 902.09 69.67 C 901.49 69.80 900.29 70.08 899.69 70.22 L 899.18 70.34 C 898.85 71.45 898.81 72.58 899.04 73.72 L 897.93 73.67 C 898.15 72.29 898.19 70.83 897.71 69.49 Z" />
+<path fill="#ffffff" d=" M 921.17 72.78 C 921.24 70.73 920.55 66.64 923.93 68.16 C 924.35 69.73 924.18 71.36 924.11 72.96 C 923.37 72.92 921.91 72.82 921.17 72.78 Z" />
+<path fill="#416acb" d=" M 941.68 70.27 C 943.95 68.43 947.29 68.37 950.08 68.88 C 948.05 70.37 947.99 72.74 950.14 74.14 C 949.43 74.04 948.03 73.83 947.32 73.72 C 947.25 72.32 947.19 70.91 947.14 69.51 C 946.19 69.66 944.29 69.97 943.34 70.12 C 943.28 70.86 943.15 72.34 943.09 73.08 C 943.82 72.94 945.29 72.67 946.02 72.54 C 945.12 73.91 943.51 74.11 942.00 73.86 L 942.24 72.62 C 942.10 72.04 941.82 70.86 941.68 70.27 Z" />
+<path fill="#ffffff" d=" M 974.15 72.74 C 974.24 70.71 973.58 66.65 976.93 68.16 C 977.37 69.73 977.18 71.38 977.09 72.98 C 976.36 72.92 974.88 72.80 974.15 72.74 Z" />
+<path fill="#416acb" d=" M 1000.71 68.36 C 1001.47 68.59 1002.24 68.82 1003.02 69.06 C 1000.82 70.39 1001.25 72.74 1003.14 74.15 C 1002.45 74.06 1001.06 73.87 1000.36 73.77 C 1000.27 72.36 1000.19 70.96 1000.13 69.55 C 999.17 69.70 997.26 69.99 996.30 70.14 C 996.26 70.88 996.18 72.37 996.14 73.11 C 996.94 72.97 998.53 72.69 999.33 72.56 C 998.08 73.60 996.61 74.24 994.97 73.86 L 995.25 72.70 C 995.17 72.10 995.00 70.90 994.91 70.30 C 996.15 68.37 998.85 69.30 1000.71 68.36 Z" />
+<path fill="#416acb" d=" M 777.67 72.04 C 777.00 69.04 781.00 67.82 782.62 70.08 C 782.63 70.56 782.64 71.51 782.64 71.99 C 781.25 72.06 779.87 72.16 778.55 72.59 C 779.63 72.80 781.79 73.21 782.88 73.41 C 781.07 74.24 778.12 74.64 777.67 72.04 Z" />
+<path fill="#ffd0dc" d=" M 782.62 70.08 C 782.89 69.93 783.42 69.63 783.69 69.48 C 784.20 70.82 784.15 72.29 783.93 73.68 C 783.61 73.26 782.97 72.41 782.64 71.99 C 782.64 71.51 782.63 70.56 782.62 70.08 Z" />
+<path fill="#416acb" d=" M 791.66 70.94 C 792.35 67.73 796.84 68.65 796.94 71.70 C 795.46 71.95 793.99 72.23 792.53 72.53 C 794.05 72.88 795.59 73.22 797.13 73.55 C 797.57 73.10 798.45 72.20 798.89 71.75 C 798.35 70.83 797.82 69.90 797.29 68.98 C 798.92 69.63 800.62 69.67 802.28 69.06 C 801.89 69.57 801.11 70.60 800.72 71.11 C 801.17 72.17 801.63 73.24 802.08 74.31 C 801.22 73.82 800.38 73.33 799.54 72.84 C 797.19 74.39 791.21 75.32 791.66 70.94 Z" />
+<path fill="#416acb" d=" M 801.98 71.39 C 803.75 70.43 805.56 69.55 807.46 68.85 C 806.46 70.15 805.07 71.03 803.48 71.36 C 804.94 72.09 806.37 72.93 807.50 74.15 C 805.52 73.51 803.71 72.52 801.98 71.39 Z" />
+<path fill="#416acb" d=" M 832.18 68.89 C 833.98 69.50 835.69 70.38 837.33 71.36 C 835.99 72.34 834.61 73.31 832.98 73.71 C 833.61 72.68 834.55 71.99 835.81 71.64 C 834.54 70.79 833.30 69.91 832.18 68.89 Z" />
+<path fill="#416acb" d=" M 843.84 69.19 C 846.31 69.19 848.79 69.09 851.27 68.94 C 851.31 69.25 851.40 69.88 851.44 70.19 C 851.52 71.39 851.79 72.55 852.23 73.68 C 850.71 73.81 849.20 73.95 847.70 74.08 C 847.24 71.97 848.29 70.48 850.62 70.32 C 848.97 70.02 847.29 69.71 845.65 70.20 L 845.13 70.28 C 844.83 71.41 844.80 72.55 845.06 73.69 L 843.90 74.09 C 843.87 72.45 843.85 70.82 843.84 69.19 Z" />
+<path fill="#ffd0dc" d=" M 851.44 70.19 C 851.73 70.00 852.31 69.63 852.60 69.44 C 853.32 70.77 853.10 72.38 852.67 73.77 L 852.23 73.68 C 851.79 72.55 851.52 71.39 851.44 70.19 Z" />
+<path fill="#416acb" d=" M 852.60 69.44 C 854.12 69.25 855.64 69.08 857.18 68.93 C 857.26 70.51 857.79 72.19 857.20 73.73 C 857.39 72.64 857.10 71.76 856.35 71.08 C 855.93 70.73 855.09 70.05 854.67 69.71 C 853.89 70.87 855.09 74.45 852.67 73.77 C 853.10 72.38 853.32 70.77 852.60 69.44 Z" />
+<path fill="#416acb" d=" M 865.35 69.52 C 867.16 69.36 869.43 68.29 870.82 70.05 C 870.79 70.76 870.74 72.18 870.71 72.89 C 869.75 73.93 868.37 74.36 867.01 73.92 C 865.17 73.39 865.85 70.89 865.35 69.52 Z" />
+<path fill="#ffd0dc" d=" M 870.82 70.05 C 871.14 69.92 871.78 69.66 872.10 69.53 C 872.04 70.85 872.25 72.20 871.94 73.50 C 871.63 73.35 871.02 73.04 870.71 72.89 C 870.74 72.18 870.79 70.76 870.82 70.05 Z" />
+<path fill="#4b76d5" d=" M 872.10 69.53 C 872.78 69.46 874.13 69.32 874.81 69.24 L 874.67 69.72 C 873.15 70.51 873.78 73.54 871.94 73.50 C 872.25 72.20 872.04 70.85 872.10 69.53 Z" />
+<path fill="#f9d0dc" d=" M 874.81 69.24 L 875.37 69.31 C 876.19 70.61 876.14 72.21 875.96 73.67 C 874.34 73.53 874.55 70.93 874.67 69.72 L 874.81 69.24 Z" />
+<path fill="#416acb" d=" M 875.37 69.31 C 878.00 69.18 880.64 69.12 883.28 69.03 L 883.07 70.29 C 882.81 71.44 882.83 72.58 883.14 73.72 L 882.35 73.98 C 881.94 72.48 882.68 70.21 880.73 69.57 C 880.41 71.24 880.47 73.06 879.49 74.53 C 878.69 73.19 879.94 69.29 877.37 70.13 C 877.22 71.44 877.11 72.76 877.05 74.09 L 875.96 73.67 C 876.14 72.21 876.19 70.61 875.37 69.31 Z" />
+<path fill="#416acb" d=" M 892.10 73.00 C 890.98 71.62 892.42 70.02 892.79 68.64 C 894.07 69.04 895.62 69.02 896.64 70.05 C 896.64 70.54 896.64 71.50 896.64 71.98 C 895.24 72.07 893.85 72.21 892.52 72.61 C 893.61 72.81 895.79 73.20 896.88 73.40 C 895.42 73.93 893.02 74.75 892.10 73.00 Z" />
+<path fill="#ffd0dc" d=" M 896.64 70.05 C 896.91 69.91 897.44 69.63 897.71 69.49 C 898.19 70.83 898.15 72.29 897.93 73.67 C 897.61 73.25 896.97 72.41 896.64 71.98 C 896.64 71.50 896.64 70.54 896.64 70.05 Z" />
+<path fill="#416acb" d=" M 906.91 73.92 C 904.92 72.59 906.00 70.38 906.75 68.66 C 908.82 68.76 910.50 69.53 910.95 71.71 C 909.46 71.95 907.99 72.23 906.53 72.52 C 908.07 72.89 909.62 73.25 911.18 73.60 C 911.61 73.14 912.47 72.21 912.90 71.75 C 912.33 70.84 911.78 69.93 911.24 69.02 C 912.88 69.52 914.58 69.63 916.28 69.26 L 915.65 69.93 C 915.40 70.19 914.91 70.72 914.67 70.98 C 915.13 72.09 915.61 73.20 916.09 74.32 C 915.22 73.82 914.37 73.32 913.52 72.83 C 911.69 74.36 909.10 74.01 906.91 73.92 Z" />
+<path fill="#cea7ce" d=" M 916.28 69.26 L 916.97 69.34 C 916.94 69.94 916.90 71.15 916.87 71.75 L 916.17 71.73 C 916.04 71.28 915.78 70.38 915.65 69.93 L 916.28 69.26 Z" />
+<path fill="#606dce" d=" M 932.99 68.95 L 934.33 69.32 C 933.61 71.03 933.67 72.94 934.07 74.72 L 934.29 75.94 C 933.69 75.98 932.51 76.08 931.92 76.13 C 933.20 73.94 932.96 71.37 932.99 68.95 Z" />
+<path fill="#86d0ff" d=" M 934.33 69.32 C 934.54 69.49 934.95 69.83 935.15 70.00 C 935.19 70.73 935.27 72.19 935.31 72.92 C 935.00 73.37 934.38 74.27 934.07 74.72 C 933.67 72.94 933.61 71.03 934.33 69.32 Z" />
+<path fill="#416acb" d=" M 935.86 70.03 C 937.19 68.35 939.69 68.72 940.91 70.36 C 940.89 70.76 940.85 71.55 940.84 71.95 C 939.36 72.00 937.89 72.13 936.53 72.66 C 937.48 72.78 939.38 73.03 940.33 73.15 L 940.34 74.18 C 938.88 73.84 936.93 74.38 935.99 72.92 C 935.95 72.20 935.89 70.75 935.86 70.03 Z" />
+<path fill="#416acb" d=" M 952.94 69.06 C 954.47 69.05 956.01 69.05 957.55 69.06 C 956.66 70.81 955.50 72.41 953.30 72.38 C 954.58 72.95 956.27 72.94 957.23 74.09 C 957.05 76.41 954.13 76.41 952.55 75.57 C 952.49 73.39 952.78 71.23 952.94 69.06 Z" />
+<path fill="#416acb" d=" M 957.58 70.93 C 958.02 68.30 961.21 68.83 962.90 69.90 C 962.82 70.64 962.66 72.13 962.57 72.87 C 961.15 75.26 956.59 73.93 957.58 70.93 Z" />
+<path fill="#ffd0dc" d=" M 962.90 69.90 C 963.14 69.76 963.60 69.49 963.83 69.36 C 964.15 70.74 964.24 72.25 963.66 73.58 C 963.39 73.40 962.85 73.05 962.57 72.87 C 962.66 72.13 962.82 70.64 962.90 69.90 Z" />
+<path fill="#416acb" d=" M 963.83 69.36 C 966.28 69.20 968.74 69.08 971.21 68.93 C 971.25 69.24 971.34 69.86 971.38 70.17 C 971.56 70.83 971.93 72.14 972.12 72.80 C 971.74 74.59 968.98 73.56 967.69 74.16 C 967.06 71.87 968.67 70.77 970.60 69.97 C 968.94 69.94 967.30 70.00 965.67 70.18 L 965.16 70.23 C 964.85 71.39 964.81 72.56 965.04 73.74 L 963.66 73.58 C 964.24 72.25 964.15 70.74 963.83 69.36 Z" />
+<path fill="#e2b8d4" d=" M 971.38 70.17 C 971.74 69.99 972.46 69.63 972.82 69.45 C 972.95 70.54 972.93 71.63 972.76 72.72 L 972.12 72.80 C 971.93 72.14 971.56 70.83 971.38 70.17 Z" />
+<path fill="#606dce" d=" M 985.99 68.94 L 987.35 69.34 C 986.60 71.05 986.66 72.96 987.07 74.75 L 987.28 75.93 C 986.70 75.98 985.52 76.08 984.94 76.13 C 986.18 73.93 985.97 71.37 985.99 68.94 Z" />
+<path fill="#86d0ff" d=" M 987.35 69.34 C 987.55 69.51 987.96 69.85 988.16 70.02 C 988.20 70.75 988.27 72.21 988.30 72.94 C 987.99 73.40 987.38 74.30 987.07 74.75 C 986.66 72.96 986.60 71.05 987.35 69.34 Z" />
+<path fill="#416acb" d=" M 988.87 70.05 C 990.21 68.16 992.74 68.99 994.15 70.34 C 994.09 70.74 993.95 71.54 993.89 71.94 C 992.39 71.99 990.91 72.11 989.53 72.65 C 990.49 72.78 992.42 73.03 993.38 73.15 L 993.29 74.18 C 991.81 73.89 989.99 74.30 988.97 72.95 C 988.95 72.23 988.90 70.78 988.87 70.05 Z" />
+<path fill="#ffffff" d=" M 779.35 70.07 C 782.44 68.66 779.37 73.35 779.35 70.07 Z" />
+<path fill="#9ee1ff" d=" M 785.17 70.33 L 785.69 70.21 C 786.76 70.98 786.64 73.80 785.06 73.70 C 784.81 72.57 784.85 71.44 785.17 70.33 Z" />
+<path fill="#86d0ff" d=" M 789.69 72.77 C 788.43 72.38 788.28 70.32 789.78 70.20 C 789.76 70.84 789.71 72.13 789.69 72.77 Z" />
+<path fill="#ffffff" d=" M 793.38 70.07 C 796.47 68.67 793.38 73.35 793.38 70.07 Z" />
+<path fill="#86d0ff" d=" M 841.71 72.78 C 840.41 72.45 840.24 70.36 841.75 70.22 C 841.74 70.86 841.72 72.14 841.71 72.78 Z" />
+<path fill="#9ee1ff" d=" M 845.13 70.28 L 845.65 70.20 C 846.70 70.98 846.66 73.81 845.06 73.69 C 844.80 72.55 844.83 71.41 845.13 70.28 Z" />
+<path fill="#ffffff" d=" M 867.27 70.30 C 868.68 68.92 870.51 71.34 869.31 72.60 C 867.92 74.25 865.74 71.56 867.27 70.30 Z" />
+<path fill="#86d0ff" d=" M 883.07 70.29 C 884.79 69.98 884.85 73.93 883.14 73.72 C 882.83 72.58 882.81 71.44 883.07 70.29 Z" />
+<path fill="#ffffff" d=" M 893.34 70.11 C 896.32 68.52 893.59 73.39 893.34 70.11 Z" />
+<path fill="#9ee1ff" d=" M 899.18 70.34 L 899.69 70.22 C 900.75 71.00 900.64 73.87 899.04 73.72 C 898.81 72.58 898.85 71.45 899.18 70.34 Z" />
+<path fill="#86d0ff" d=" M 903.69 72.78 C 902.42 72.41 902.27 70.29 903.80 70.22 C 903.77 70.86 903.72 72.14 903.69 72.78 Z" />
+<path fill="#ffffff" d=" M 907.35 70.07 C 910.42 68.64 907.41 73.36 907.35 70.07 Z" />
+<path fill="#ffffff" d=" M 928.49 70.26 C 930.02 69.02 931.37 71.83 930.00 72.78 C 928.46 73.91 927.15 71.21 928.49 70.26 Z" />
+<path fill="#64b8f7" d=" M 931.06 70.29 C 932.77 69.74 932.69 73.39 931.01 72.75 C 931.02 72.14 931.05 70.91 931.06 70.29 Z" />
+<path fill="#f5c8d9" d=" M 935.15 70.00 L 935.86 70.03 C 935.89 70.75 935.95 72.20 935.99 72.92 L 935.31 72.92 C 935.27 72.19 935.19 70.73 935.15 70.00 Z" />
+<path fill="#ffffff" d=" M 937.37 70.08 C 940.43 68.63 937.43 73.36 937.37 70.08 Z" />
+<path fill="#ff7f27" d=" M 940.91 70.36 L 941.68 70.27 C 941.82 70.86 942.10 72.04 942.24 72.62 C 941.89 72.46 941.19 72.12 940.84 71.95 C 940.85 71.55 940.89 70.76 940.91 70.36 Z" />
+<path fill="#ffffff" d=" M 954.48 70.24 C 955.04 70.81 955.04 70.81 954.48 70.24 Z" />
+<path fill="#ffffff" d=" M 959.27 70.30 C 961.03 68.64 962.81 72.25 960.73 73.01 C 959.18 73.62 958.11 71.31 959.27 70.30 Z" />
+<path fill="#9ee1ff" d=" M 965.16 70.23 L 965.67 70.18 C 966.67 71.00 966.63 73.82 965.04 73.74 C 964.81 72.56 964.85 71.39 965.16 70.23 Z" />
+<path fill="#ffffff" d=" M 981.48 70.25 C 983.00 69.01 984.36 71.82 983.00 72.77 C 981.46 73.90 980.14 71.20 981.48 70.25 Z" />
+<path fill="#64b8f7" d=" M 984.05 70.27 C 985.76 69.65 985.71 73.31 984.02 72.72 C 984.03 72.11 984.05 70.88 984.05 70.27 Z" />
+<path fill="#f5c8d9" d=" M 988.16 70.02 L 988.87 70.05 C 988.90 70.78 988.95 72.23 988.97 72.95 L 988.30 72.94 C 988.27 72.21 988.20 70.75 988.16 70.02 Z" />
+<path fill="#ffffff" d=" M 990.35 70.10 C 993.35 68.55 990.54 73.38 990.35 70.10 Z" />
+<path fill="#ff7f27" d=" M 994.15 70.34 L 994.91 70.30 C 995.00 70.90 995.17 72.10 995.25 72.70 C 994.91 72.51 994.23 72.13 993.89 71.94 C 993.95 71.54 994.09 70.74 994.15 70.34 Z" />
+<path fill="#010101" d=" M 427.39 71.06 C 427.66 71.12 428.20 71.23 428.46 71.29 L 428.05 72.66 C 433.20 71.36 438.61 70.96 443.88 71.75 C 445.91 72.09 447.96 71.84 449.93 71.27 C 449.41 71.67 448.38 72.46 447.87 72.86 C 449.63 73.37 451.24 73.16 452.70 72.25 C 452.58 72.60 452.33 73.30 452.21 73.65 C 461.11 76.44 468.99 82.67 473.52 90.83 C 473.84 90.42 474.47 89.58 474.78 89.17 C 474.58 89.68 474.17 90.70 473.96 91.21 C 475.14 94.08 476.11 97.03 476.89 100.03 C 477.35 99.87 478.28 99.54 478.75 99.38 C 478.44 100.49 478.14 101.60 477.81 102.70 C 477.90 106.54 478.07 110.37 478.45 114.19 C 478.14 113.30 477.52 111.53 477.20 110.64 C 477.24 113.29 474.96 116.30 476.83 118.77 C 477.10 118.08 477.62 116.68 477.89 115.98 C 477.59 117.32 477.27 118.65 476.96 119.99 L 476.31 118.10 C 475.95 118.47 475.23 119.20 474.87 119.57 C 471.19 130.10 461.23 137.29 450.88 140.56 C 451.42 140.79 452.49 141.25 453.03 141.48 C 452.44 141.50 451.28 141.53 450.70 141.55 C 448.62 143.84 445.59 141.48 443.
 03 142.09 C 431.16 143.23 418.29 139.66 409.93 130.96 C 408.21 132.55 406.62 130.52 408.01 128.89 C 403.85 124.97 401.25 119.71 400.27 114.11 C 398.74 108.72 400.50 103.12 399.43 97.74 C 399.01 98.52 398.17 100.07 397.75 100.84 C 398.52 98.69 398.29 94.96 401.47 95.02 C 405.33 84.77 414.52 76.75 424.96 73.63 C 424.49 73.23 423.55 72.42 423.08 72.02 C 424.61 73.02 426.26 73.50 428.06 72.86 C 427.89 72.41 427.56 71.51 427.39 71.06 Z" />
+<path fill="#866acb" d=" M 856.35 71.08 C 857.10 71.76 857.39 72.64 857.20 73.73 L 856.51 73.85 L 855.83 72.95 C 855.96 72.48 856.22 71.54 856.35 71.08 Z" />
+<path fill="#416acb" d=" M 811.30 71.99 C 813.60 71.15 812.90 75.27 811.04 75.14 C 809.61 74.73 810.38 72.57 811.30 71.99 Z" />
+<path fill="#416acb" d=" M 823.25 72.04 C 825.56 71.06 824.89 75.25 823.05 75.22 C 821.61 74.84 822.39 72.67 823.25 72.04 Z" />
+<path fill="#ffffff" d=" M 849.26 72.27 C 849.81 72.86 849.81 72.86 849.26 72.27 Z" />
+<path fill="#ffffff" d=" M 969.31 72.24 C 969.90 72.79 969.90 72.79 969.31 72.24 Z" />
+<path fill="#ffffff" d=" M 954.01 74.09 C 957.08 72.62 954.12 77.34 954.01 74.09 Z" />
+<path fill="#ffffff" d=" M 413.12 85.07 C 426.52 71.73 450.43 71.81 463.99 84.89 C 469.59 90.34 473.64 98.01 473.53 105.99 C 473.63 110.12 472.70 114.19 471.40 118.09 C 469.74 120.50 468.53 123.21 466.76 125.54 C 459.52 134.05 448.22 138.80 437.07 138.19 C 426.43 138.05 416.19 132.73 409.56 124.49 C 404.63 117.10 401.90 107.74 404.51 98.99 C 406.63 93.97 408.69 88.56 413.12 85.07 Z" />
+<path fill="#416acb" d=" M 760.76 78.62 C 763.21 78.90 762.97 81.59 763.65 83.37 C 762.91 85.46 763.62 88.65 761.01 89.46 C 761.29 88.00 761.60 86.54 761.90 85.08 C 762.11 84.69 762.54 83.91 762.75 83.52 C 762.01 81.91 761.35 80.27 760.76 78.62 Z" />
+<path fill="#010101" d=" M 423.18 84.28 C 428.50 84.04 432.32 78.26 437.86 79.50 C 442.52 80.40 447.30 80.86 451.82 82.34 C 452.03 82.75 452.43 83.58 452.64 84.00 C 451.45 83.64 449.07 82.91 447.88 82.55 L 449.96 84.78 C 449.69 84.95 449.15 85.30 448.88 85.47 C 450.42 87.28 452.82 88.97 452.84 91.58 C 450.93 93.04 448.78 91.59 447.73 89.86 C 448.25 89.81 449.30 89.73 449.82 89.68 C 447.34 88.30 447.39 85.20 445.96 83.18 C 439.89 81.90 433.70 82.43 427.78 84.16 C 426.69 86.91 429.53 89.85 427.24 92.37 C 425.75 91.69 424.27 90.98 422.81 90.24 C 423.89 89.42 424.99 88.62 426.09 87.82 L 425.77 87.38 L 424.27 88.89 C 424.23 88.03 424.15 86.31 424.11 85.45 C 423.32 86.87 422.51 88.27 421.72 89.69 C 421.01 89.90 419.59 90.32 418.88 90.53 C 419.58 90.77 420.97 91.25 421.66 91.50 C 419.54 91.81 417.44 92.98 416.30 94.83 C 417.48 94.29 418.66 93.73 419.83 93.14 C 420.01 93.54 420.38 94.34 420.57 94.73 C 420.93 94.39 421.64 93.70 422.00 93.36 C 422.29 94.72 422.56 96.09 422.82 97.46 L 423.75 9
 7.11 C 423.52 98.78 423.32 100.46 423.15 102.13 C 423.81 100.55 424.08 98.75 425.32 97.46 C 425.70 99.31 426.11 101.18 426.20 103.09 C 425.22 104.08 424.16 104.98 423.19 105.97 C 422.44 104.07 422.07 101.96 420.82 100.30 C 419.10 98.91 416.80 98.58 414.87 97.58 C 414.82 98.33 414.73 99.83 414.68 100.59 C 411.31 97.83 416.78 94.90 415.08 91.80 C 415.79 91.95 417.20 92.24 417.91 92.39 C 417.31 91.80 416.10 90.64 415.50 90.05 C 416.22 87.67 418.26 86.58 420.27 88.46 C 421.26 87.08 422.21 85.68 423.18 84.28 Z" />
+<path fill="#0b182b" d=" M 72.00 81.45 C 73.28 80.43 74.59 80.40 75.95 81.37 C 74.73 81.89 73.43 82.37 72.08 82.09 L 72.00 81.45 Z" />
+<path fill="#204a87" d=" M 75.95 81.37 C 80.93 80.50 86.14 81.18 91.21 81.05 C 91.76 82.06 92.64 82.41 93.86 82.10 C 96.62 81.92 99.40 81.84 102.16 82.14 C 102.63 82.37 103.57 82.83 104.04 83.06 C 105.87 82.94 107.70 82.98 109.53 83.04 C 111.40 84.67 114.07 83.78 116.30 84.12 C 116.46 84.23 116.77 84.45 116.93 84.56 C 117.59 84.75 118.91 85.13 119.57 85.32 C 120.80 85.73 122.06 86.08 123.33 86.37 C 123.48 86.42 123.77 86.51 123.92 86.56 C 124.80 86.74 126.57 87.10 127.45 87.28 C 127.54 87.33 127.72 87.41 127.81 87.45 C 129.32 88.19 130.88 88.85 132.50 89.31 C 132.57 89.34 132.72 89.41 132.79 89.45 C 133.44 89.76 134.76 90.39 135.41 90.70 C 136.44 91.24 137.47 91.77 138.51 92.28 C 138.57 92.31 138.69 92.37 138.75 92.40 C 139.22 92.61 140.16 93.03 140.63 93.24 C 141.51 93.97 142.42 94.65 143.37 95.28 C 143.46 95.33 143.64 95.44 143.72 95.50 L 144.84 96.14 L 145.48 97.26 C 145.54 97.35 145.67 97.53 145.73 97.62 C 146.14 98.03 146.97 98.86 147.38 99.27 C 147.46 99.34 147.63 99.48 147.71
  99.55 C 149.57 103.46 148.93 107.82 149.00 111.99 C 149.03 120.59 148.97 129.19 148.96 137.78 C 147.69 137.79 146.42 137.79 145.15 137.80 C 145.01 127.60 144.84 117.40 144.81 107.20 C 145.20 100.95 139.83 96.66 134.79 94.16 C 122.46 87.92 108.49 86.28 94.92 84.96 C 83.94 84.80 72.87 84.26 61.99 86.09 C 51.71 87.31 41.37 89.49 32.06 94.15 C 27.87 96.37 23.21 99.60 22.82 104.78 C 22.87 106.16 22.93 107.54 22.99 108.92 C 23.26 117.71 22.88 126.51 23.02 135.31 C 21.49 135.70 19.96 136.08 18.43 136.47 C 18.64 125.67 17.95 114.84 18.80 104.06 C 18.87 103.38 19.00 102.01 19.07 101.33 C 20.99 98.29 23.45 95.53 26.51 93.61 C 26.95 93.31 27.83 92.72 28.27 92.42 C 28.33 92.39 28.46 92.31 28.52 92.27 C 30.33 91.20 32.25 90.31 34.20 89.52 L 34.42 89.43 L 34.62 89.31 L 36.19 88.37 C 36.26 88.33 36.40 88.25 36.47 88.21 C 37.14 88.03 38.47 87.66 39.13 87.48 C 39.24 87.45 39.46 87.38 39.57 87.35 C 40.46 87.14 42.23 86.72 43.12 86.51 C 43.23 86.48 43.46 86.42 43.58 86.39 C 44.21 86.16 45.49 85.72 46
 .13 85.50 C 46.25 85.45 46.49 85.36 46.62 85.31 C 47.48 85.13 49.19 84.75 50.05 84.57 C 50.20 84.46 50.51 84.24 50.67 84.13 C 52.43 84.03 54.19 83.93 55.95 84.04 C 56.43 83.82 57.38 83.37 57.85 83.15 C 59.22 82.96 60.60 82.91 61.98 83.02 C 62.45 82.80 63.40 82.35 63.87 82.13 C 66.60 81.83 69.35 81.94 72.08 82.09 C 73.43 82.37 74.73 81.89 75.95 81.37 Z" />
+<path fill="#09172a" d=" M 91.21 81.05 C 91.88 81.13 93.22 81.30 93.89 81.38 L 93.86 82.10 C 92.64 82.41 91.76 82.06 91.21 81.05 Z" />
+<path fill="#081222" d=" M 62.09 82.14 C 62.53 82.14 63.43 82.13 63.87 82.13 C 63.40 82.35 62.45 82.80 61.98 83.02 L 62.09 82.14 Z" />
+<path fill="#0d1f39" d=" M 102.16 82.14 C 102.60 82.15 103.49 82.16 103.93 82.17 L 104.04 83.06 C 103.57 82.83 102.63 82.37 102.16 82.14 Z" />
+<path fill="#0a192c" d=" M 56.07 83.15 C 56.52 83.15 57.41 83.15 57.85 83.15 C 57.38 83.37 56.43 83.82 55.95 84.04 L 56.07 83.15 Z" />
+<path fill="#010101" d=" M 429.24 87.01 C 432.17 84.53 435.51 82.54 439.49 83.31 C 441.72 84.37 444.42 83.96 446.20 86.06 L 444.80 86.94 C 444.42 86.80 443.66 86.51 443.27 86.37 L 444.00 87.42 C 442.78 87.80 441.50 88.03 440.25 87.69 C 439.88 88.11 439.15 88.94 438.79 89.35 C 439.42 88.01 439.88 86.61 440.20 85.16 C 438.25 85.18 436.32 85.29 434.39 85.33 C 433.85 86.36 433.32 87.40 432.80 88.44 C 431.84 87.44 430.66 86.97 429.24 87.01 Z" />
+<path fill="#091628" d=" M 50.05 84.57 C 50.20 84.46 50.51 84.24 50.67 84.13 C 50.51 84.24 50.20 84.46 50.05 84.57 Z" />
+<path fill="#010102" d=" M 116.30 84.12 C 116.46 84.23 116.77 84.45 116.93 84.56 C 116.77 84.45 116.46 84.23 116.30 84.12 Z" />
+<path fill="#765041" d=" M 1223.94 86.15 C 1228.09 86.28 1231.97 84.72 1235.95 83.82 C 1233.71 87.40 1232.58 91.46 1230.83 95.26 C 1228.91 94.89 1227.03 94.40 1225.17 93.85 C 1224.84 92.72 1224.50 91.60 1224.15 90.49 C 1224.05 89.04 1223.99 87.60 1223.94 86.15 Z" />
+<path fill="#02080d" d=" M 46.13 85.50 C 46.25 85.45 46.49 85.36 46.62 85.31 C 46.49 85.36 46.25 85.45 46.13 85.50 Z" />
+<path fill="#729fcf" d=" M 61.99 86.09 C 72.87 84.26 83.94 84.80 94.92 84.96 C 108.49 86.28 122.46 87.92 134.79 94.16 C 139.83 96.66 145.20 100.95 144.81 107.20 L 144.71 106.63 C 144.38 106.41 143.74 105.96 143.42 105.73 C 142.49 105.41 141.56 105.11 140.63 104.82 C 136.06 97.14 126.99 94.27 118.82 92.22 C 109.79 89.61 100.34 89.31 91.04 88.31 C 86.04 87.81 80.99 87.81 75.98 88.31 C 66.41 89.30 56.68 89.63 47.39 92.37 C 39.50 94.52 30.54 97.18 26.42 104.95 C 25.22 104.89 24.02 104.83 22.82 104.78 C 23.21 99.60 27.87 96.37 32.06 94.15 C 41.37 89.49 51.71 87.31 61.99 86.09 Z" />
+<path fill="#010101" d=" M 453.91 90.79 C 454.37 89.13 453.50 85.73 455.71 85.37 C 459.86 87.98 462.50 92.25 465.00 96.35 C 463.05 94.88 461.59 92.87 459.60 91.46 C 458.74 89.85 457.70 88.34 456.70 86.83 C 456.16 88.31 455.73 89.82 455.39 91.35 C 455.02 91.21 454.28 90.93 453.91 90.79 Z" />
+<path fill="#765041" d=" M 1237.01 84.82 C 1239.85 86.32 1242.64 88.02 1244.49 90.74 C 1244.55 94.42 1244.54 98.11 1244.53 101.79 C 1241.69 101.10 1238.91 100.13 1236.51 98.43 C 1235.28 97.54 1234.09 96.60 1232.94 95.65 C 1234.15 93.55 1235.33 91.41 1236.93 89.56 C 1236.95 87.98 1236.97 86.40 1237.01 84.82 Z" />
+<path fill="#0d203c" d=" M 43.12 86.51 C 43.23 86.48 43.46 86.42 43.58 86.39 C 43.46 86.42 43.23 86.48 43.12 86.51 Z" />
+<path fill="#050b14" d=" M 123.33 86.37 C 123.48 86.42 123.77 86.51 123.92 86.56 C 123.77 86.51 123.48 86.42 123.33 86.37 Z" />
+<path fill="#765041" d=" M 1219.59 86.86 C 1220.13 86.59 1221.22 86.03 1221.76 85.76 C 1222.00 88.90 1222.63 91.99 1223.19 95.08 C 1219.88 94.91 1216.55 94.73 1213.35 93.89 C 1212.31 92.77 1211.51 91.49 1210.69 90.23 C 1212.91 89.14 1215.20 88.16 1217.48 87.14 C 1218.00 87.07 1219.06 86.93 1219.59 86.86 Z" />
+<path fill="#d2b07a" d=" M 1257.02 86.22 C 1261.42 87.16 1265.45 89.17 1269.41 91.24 C 1268.44 92.74 1267.38 94.17 1266.20 95.49 C 1266.13 96.14 1266.00 97.45 1265.93 98.10 C 1263.58 99.34 1260.52 99.02 1258.68 97.11 C 1257.62 93.60 1258.00 89.78 1257.02 86.22 Z" />
+<path fill="#09182a" d=" M 39.13 87.48 C 39.24 87.45 39.46 87.38 39.57 87.35 C 39.46 87.38 39.24 87.45 39.13 87.48 Z" />
+<path fill="#020609" d=" M 127.45 87.28 C 127.54 87.33 127.72 87.41 127.81 87.45 C 127.72 87.41 127.54 87.33 127.45 87.28 Z" />
+<path fill="#d2b07a" d=" M 1246.96 90.08 C 1249.74 88.44 1252.74 87.17 1255.97 86.76 C 1255.90 90.02 1256.40 93.38 1255.59 96.57 C 1253.10 99.51 1249.92 102.03 1246.04 102.72 C 1245.84 98.48 1246.02 94.22 1246.96 90.08 Z" />
+<path fill="#765041" d=" M 1291.01 89.19 C 1295.39 88.49 1299.72 87.42 1304.14 86.82 C 1304.23 90.23 1303.05 93.44 1301.65 96.49 C 1298.08 94.93 1294.29 93.92 1290.96 91.85 C 1290.97 91.18 1290.99 89.86 1291.01 89.19 Z" />
+<path fill="#000001" d=" M 36.19 88.37 C 36.26 88.33 36.40 88.25 36.47 88.21 C 36.40 88.25 36.26 88.33 36.19 88.37 Z" />
+<path fill="#3465a4" d=" M 47.39 92.37 C 56.68 89.63 66.41 89.30 75.98 88.31 C 80.99 87.81 86.04 87.81 91.04 88.31 C 100.34 89.31 109.79 89.61 118.82 92.22 C 126.99 94.27 136.06 97.14 140.63 104.82 C 140.09 107.26 138.56 109.28 136.84 111.03 C 130.96 115.68 123.54 117.62 116.42 119.47 C 103.10 122.05 89.54 123.61 75.96 122.93 C 63.99 121.82 51.94 120.49 40.47 116.69 C 36.57 114.96 32.72 113.10 29.17 110.70 C 28.25 108.79 27.32 106.87 26.42 104.95 C 30.54 97.18 39.50 94.52 47.39 92.37 Z" />
+<path fill="#d2b07a" d=" M 1274.26 87.97 C 1278.89 89.14 1283.38 90.98 1288.21 91.21 C 1288.29 94.57 1285.79 97.02 1284.49 99.91 C 1282.32 99.97 1280.16 100.00 1278.02 100.05 C 1275.65 97.16 1274.53 93.57 1273.09 90.19 C 1273.38 89.63 1273.97 88.52 1274.26 87.97 Z" />
+<path fill="#765041" d=" M 1339.54 89.79 C 1340.94 88.57 1342.65 87.87 1344.54 87.91 C 1346.31 91.65 1346.12 95.80 1345.95 99.83 C 1342.14 100.03 1338.34 100.05 1334.55 99.94 C 1334.18 99.32 1333.44 98.08 1333.06 97.46 C 1333.00 95.36 1332.98 93.26 1332.99 91.16 C 1335.22 91.06 1337.44 90.63 1339.54 89.79 Z" />
+<path fill="#010204" d=" M 34.20 89.52 C 34.30 89.47 34.52 89.36 34.62 89.31 L 34.42 89.43 L 34.20 89.52 Z" />
+<path fill="#081222" d=" M 132.50 89.31 C 132.57 89.34 132.72 89.41 132.79 89.45 C 132.72 89.41 132.57 89.34 132.50 89.31 Z" />
+<path fill="#020202" d=" M 440.97 89.23 C 442.52 89.10 444.07 88.86 445.63 88.88 C 447.30 90.55 449.13 92.08 450.54 93.98 C 448.98 95.95 446.43 97.11 443.97 96.07 C 441.27 94.77 442.99 91.08 440.97 89.23 Z" />
+<path fill="#020202" d=" M 428.64 93.25 C 429.34 92.17 429.75 90.75 430.93 90.06 C 432.42 90.21 433.93 90.36 435.43 90.51 C 434.90 90.70 433.85 91.06 433.33 91.24 C 434.36 92.53 436.15 93.72 435.74 95.62 C 434.43 98.09 431.40 98.39 428.96 97.70 C 428.56 98.05 428.17 98.41 427.80 98.78 C 429.92 100.09 430.70 102.58 431.00 104.91 C 430.56 104.70 429.66 104.29 429.21 104.08 C 427.95 100.89 427.58 97.35 425.79 94.39 C 426.72 93.98 427.67 93.61 428.64 93.25 Z" />
+<path fill="#765041" d=" M 1306.29 90.02 C 1310.77 90.91 1315.31 91.17 1319.89 91.09 C 1319.91 92.22 1319.94 93.35 1319.98 94.48 C 1318.71 95.37 1317.64 96.47 1316.64 97.63 C 1314.59 99.06 1312.59 100.54 1310.56 101.97 C 1310.04 101.97 1309.01 101.97 1308.49 101.97 C 1306.97 100.93 1305.36 100.00 1304.12 98.64 C 1303.51 95.63 1304.44 92.44 1306.29 90.02 Z" />
+<path fill="#765041" d=" M 1207.46 91.19 C 1208.61 92.26 1209.77 93.33 1210.95 94.39 C 1210.81 97.05 1211.52 99.96 1210.56 102.47 C 1208.13 103.41 1205.58 103.94 1203.08 104.61 C 1201.72 102.51 1200.38 100.39 1198.95 98.34 C 1201.52 95.65 1204.86 93.86 1207.46 91.19 Z" />
+<path fill="#0a1628" d=" M 28.27 92.42 C 28.33 92.39 28.46 92.31 28.52 92.27 C 28.46 92.31 28.33 92.39 28.27 92.42 Z" />
+<path fill="#0c1d34" d=" M 138.51 92.28 C 138.57 92.31 138.69 92.37 138.75 92.40 C 138.69 92.37 138.57 92.31 138.51 92.28 Z" />
+<path fill="#484848" d=" M 422.36 92.18 C 422.93 92.84 422.93 92.84 422.36 92.18 Z" />
+<path fill="#765041" d=" M 1183.12 92.07 C 1187.40 91.33 1191.56 92.77 1195.05 95.20 C 1195.02 95.78 1194.97 96.94 1194.94 97.52 C 1192.61 98.80 1191.19 101.10 1189.60 103.13 C 1187.19 102.36 1184.69 101.93 1182.18 101.88 C 1181.55 98.66 1180.66 94.76 1183.12 92.07 Z" />
+<path fill="#919191" d=" M 446.25 93.24 C 446.80 93.83 446.80 93.83 446.25 93.24 Z" />
+<path fill="#010101" d=" M 451.39 94.87 C 452.26 94.09 453.36 93.71 454.42 93.27 C 454.53 94.26 454.74 96.25 454.85 97.24 C 455.74 97.28 456.64 97.31 457.54 97.34 L 456.72 95.70 C 457.64 95.87 458.56 96.04 459.48 96.22 C 458.47 98.14 455.16 99.59 456.87 102.22 L 455.78 102.72 C 455.26 101.44 454.76 100.17 454.26 98.89 C 452.79 98.62 451.35 98.18 450.24 97.14 C 451.46 97.51 452.68 97.91 453.89 98.34 C 453.83 96.94 453.79 95.53 453.79 94.13 L 451.39 94.87 Z" />
+<path fill="#765041" d=" M 1266.04 99.10 C 1268.03 96.98 1269.82 94.68 1271.53 92.31 C 1272.55 94.02 1273.86 95.55 1274.84 97.30 C 1275.17 99.75 1274.96 102.23 1275.01 104.69 C 1272.01 104.29 1269.00 103.99 1265.99 103.91 C 1265.98 102.31 1266.00 100.70 1266.04 99.10 Z" />
+<path fill="#765041" d=" M 1324.20 104.63 C 1324.03 100.79 1320.70 96.48 1323.04 92.95 C 1325.35 93.45 1327.56 94.33 1329.79 95.14 C 1331.03 97.65 1333.26 100.02 1332.99 103.00 C 1331.46 105.13 1330.06 107.45 1328.10 109.20 C 1326.15 108.45 1325.42 106.16 1324.20 104.63 Z" />
+<path fill="#585858" d=" M 431.45 94.07 C 434.48 92.59 431.54 97.38 431.45 94.07 Z" />
+<path fill="#d2b07a" d=" M 1290.14 94.08 C 1292.56 95.30 1294.81 96.82 1296.96 98.49 C 1296.96 99.61 1296.98 100.73 1297.01 101.85 C 1294.73 103.59 1292.18 105.68 1289.10 104.95 C 1287.90 103.57 1287.50 101.71 1286.78 100.09 C 1287.60 97.93 1288.43 95.72 1290.14 94.08 Z" />
+<path fill="#010203" d=" M 143.37 95.28 C 143.46 95.33 143.64 95.44 143.72 95.50 C 143.64 95.44 143.46 95.33 143.37 95.28 Z" />
+<path fill="#010101" d=" M 437.50 95.97 C 438.02 95.85 439.05 95.63 439.56 95.52 C 439.60 96.03 439.67 97.03 439.71 97.54 C 438.33 97.86 437.59 97.34 437.50 95.97 Z" />
+<path fill="#765041" d=" M 1224.07 94.94 C 1227.07 95.83 1229.87 97.25 1232.82 98.30 C 1233.04 99.11 1233.29 99.92 1233.55 100.73 C 1232.32 102.45 1231.28 104.35 1229.68 105.75 C 1227.45 106.22 1225.15 105.97 1222.91 106.02 C 1223.98 102.43 1224.11 98.67 1224.07 94.94 Z" />
+<path fill="#765041" d=" M 1348.00 94.64 C 1351.07 96.11 1354.96 97.53 1356.09 101.10 C 1355.24 103.89 1353.22 106.18 1351.98 108.80 C 1348.86 107.71 1347.53 103.94 1348.16 100.91 C 1348.66 98.83 1348.37 96.71 1348.00 94.64 Z" />
+<path fill="#050e19" d=" M 145.48 97.26 C 145.54 97.35 145.67 97.53 145.73 97.62 C 145.67 97.53 145.54 97.35 145.48 97.26 Z" />
+<path fill="#765041" d=" M 1212.85 102.81 C 1212.96 100.75 1213.15 98.69 1213.52 96.65 C 1216.03 96.69 1218.55 96.71 1221.08 96.72 C 1221.00 100.01 1220.70 103.30 1220.44 106.58 C 1217.83 105.46 1215.25 104.31 1212.85 102.81 Z" />
+<path fill="#010101" d=" M 448.52 98.30 C 450.33 97.62 451.44 101.70 449.33 101.69 C 448.18 101.14 447.85 99.32 448.52 98.30 Z" />
+<path fill="#d2b07a" d=" M 1256.61 98.28 C 1259.43 99.57 1261.63 101.78 1263.62 104.12 C 1262.75 106.09 1262.06 108.17 1260.80 109.94 C 1256.95 109.55 1253.03 109.18 1249.37 107.89 C 1249.01 107.25 1248.29 105.97 1247.93 105.33 C 1250.93 103.11 1254.68 101.66 1256.61 98.28 Z" />
+<path fill="#765041" d=" M 1317.58 98.14 C 1318.08 98.10 1319.09 98.02 1319.59 97.98 C 1320.60 100.65 1322.28 102.98 1323.82 105.37 C 1324.07 107.59 1324.60 109.77 1325.15 111.93 C 1321.89 111.94 1318.60 112.27 1315.38 111.79 C 1313.52 109.75 1312.12 107.32 1310.86 104.87 C 1313.04 102.56 1316.23 101.19 1317.58 98.14 Z" />
+<path fill="#010102" d=" M 147.38 99.27 C 147.46 99.34 147.63 99.48 147.71 99.55 C 147.63 99.48 147.46 99.34 147.38 99.27 Z" />
+<path fill="#f5f5f5" d=" M 399.43 97.74 C 400.50 103.12 398.74 108.72 400.27 114.11 C 399.01 113.18 397.78 112.23 396.56 111.27 C 396.58 108.25 396.64 105.24 396.94 102.24 C 397.15 101.89 397.55 101.19 397.75 100.84 C 398.17 100.07 399.01 98.52 399.43 97.74 Z" />
+<path fill="#765041" d=" M 1196.48 98.76 C 1198.24 101.49 1200.27 104.02 1202.20 106.63 C 1200.98 108.64 1199.38 110.36 1197.65 111.93 C 1195.42 110.83 1193.20 109.73 1190.96 108.69 C 1190.94 107.10 1190.88 105.50 1191.08 103.92 C 1192.88 102.18 1195.39 101.24 1196.48 98.76 Z" />
+<path fill="#765041" d=" M 1300.12 115.00 C 1299.84 109.90 1297.74 104.46 1300.43 99.67 C 1300.75 101.31 1301.92 102.09 1303.48 102.32 C 1305.81 105.07 1308.53 107.45 1310.96 110.16 C 1310.97 111.77 1310.98 113.38 1311.01 115.00 C 1307.37 115.00 1303.74 115.00 1300.12 115.00 Z" />
+<path fill="#000000" d=" M 434.82 103.22 C 438.76 101.88 442.87 100.96 447.05 100.80 C 448.08 104.41 452.43 106.11 452.19 110.16 C 453.04 108.43 453.18 106.50 453.51 104.64 L 452.69 104.50 C 452.55 103.50 452.26 101.50 452.12 100.50 C 452.76 100.94 454.03 101.82 454.67 102.26 C 453.74 104.55 455.70 107.86 453.35 109.38 C 453.64 109.97 454.23 111.13 454.53 111.71 L 453.17 109.62 C 452.24 111.44 450.72 112.75 449.16 113.98 C 446.19 114.05 442.95 113.72 440.48 115.70 C 438.03 117.81 434.80 115.97 432.29 114.96 C 433.09 112.82 431.07 111.29 430.28 109.54 C 431.87 109.49 433.21 110.43 434.63 111.01 C 434.63 108.41 434.61 105.81 434.82 103.22 Z" />
+<path fill="#a6a6a6" d=" M 431.99 102.47 C 435.32 102.67 430.40 105.44 431.99 102.47 Z" />
+<path fill="#765041" d=" M 1232.02 106.86 C 1233.25 105.21 1234.41 103.48 1235.88 102.01 C 1237.42 101.79 1239.02 102.05 1240.50 102.62 C 1242.41 103.37 1244.38 104.02 1246.23 104.95 C 1243.16 108.91 1239.22 112.03 1235.32 115.13 C 1234.62 113.92 1233.94 112.72 1233.26 111.52 C 1232.93 109.94 1232.54 108.38 1232.02 106.86 Z" />
+<path fill="#d2b07a" d=" M 1280.16 102.04 C 1281.64 102.02 1283.15 102.01 1284.67 102.00 C 1285.85 103.35 1287.04 104.69 1288.24 106.03 C 1286.95 108.15 1285.78 110.37 1284.20 112.29 C 1282.55 112.97 1280.73 112.99 1279.02 113.30 C 1278.24 110.74 1277.58 108.16 1277.04 105.55 C 1278.09 104.40 1279.13 103.22 1280.16 102.04 Z" />
+<path fill="#765041" d=" M 1336.29 102.00 C 1339.51 102.00 1342.73 102.00 1345.97 102.00 C 1345.94 103.92 1346.40 105.90 1345.92 107.79 C 1344.02 109.11 1342.03 110.32 1340.48 112.05 C 1337.69 112.27 1335.15 111.17 1332.77 109.88 C 1332.72 106.80 1334.71 104.43 1336.29 102.00 Z" />
+<path fill="#ffffff" d=" M 439.43 103.15 C 440.92 103.14 442.41 103.13 443.91 103.11 C 443.70 104.03 443.52 104.94 443.35 105.86 C 441.95 105.70 440.56 105.69 439.18 105.84 C 439.24 105.17 439.37 103.82 439.43 103.15 Z" />
+<path fill="#010101" d=" M 18.06 103.99 L 18.80 104.06 C 17.95 114.84 18.64 125.67 18.43 136.47 C 18.38 151.30 18.40 166.14 18.38 180.97 C 18.37 184.65 18.40 188.34 18.86 192.00 L 18.01 192.00 C 18.14 162.66 18.02 133.32 18.06 103.99 Z" />
+<path fill="#765041" d=" M 1181.41 103.89 C 1181.78 104.17 1182.51 104.72 1182.88 105.00 C 1184.54 105.01 1186.21 105.03 1187.90 105.07 C 1187.95 107.05 1187.99 109.04 1188.01 111.03 C 1186.02 112.20 1184.85 114.16 1183.60 116.01 C 1180.73 116.07 1178.99 113.24 1176.96 111.64 C 1177.60 110.61 1178.25 109.57 1178.93 108.54 C 1178.96 108.01 1179.02 106.93 1179.05 106.40 C 1179.83 105.56 1180.62 104.73 1181.41 103.89 Z" />
+<path fill="#acc6e2" d=" M 22.82 104.78 C 24.02 104.83 25.22 104.89 26.42 104.95 C 27.32 106.87 28.25 108.79 29.17 110.70 C 27.62 110.70 26.06 110.73 24.50 110.80 C 24.00 110.17 23.50 109.54 22.99 108.92 C 22.93 107.54 22.87 106.16 22.82 104.78 Z" />
+<path fill="#bbd0e7" d=" M 140.63 104.82 C 141.56 105.11 142.49 105.41 143.42 105.73 C 143.74 105.96 144.38 106.41 144.71 106.63 C 143.97 108.23 143.25 109.85 142.36 111.37 C 140.52 111.26 138.68 111.14 136.84 111.03 C 138.56 109.28 140.09 107.26 140.63 104.82 Z" />
+<path fill="#765041" d=" M 1203.89 108.34 C 1205.60 106.82 1207.44 104.88 1209.92 104.95 C 1213.40 104.81 1216.21 107.19 1218.68 109.35 C 1217.65 111.35 1216.83 113.45 1216.85 115.73 C 1215.84 116.22 1214.86 116.72 1213.89 117.22 C 1209.72 115.29 1207.12 111.41 1203.89 108.34 Z" />
+<path fill="#765041" d=" M 1286.97 114.55 C 1287.25 108.78 1293.61 108.12 1296.99 104.80 C 1296.63 109.37 1298.28 113.79 1297.97 118.35 C 1296.68 119.02 1295.51 119.86 1294.53 120.90 C 1293.49 120.11 1292.48 119.32 1291.46 118.56 C 1290.29 116.87 1288.53 115.80 1286.97 114.55 Z" />
+<path fill="#4677ac" d=" M 144.71 106.63 L 144.81 107.20 C 144.84 117.40 145.01 127.60 145.15 137.80 C 144.53 154.52 145.09 171.26 144.92 188.00 C 145.22 195.56 137.36 199.57 131.45 202.22 C 131.60 200.99 131.75 199.76 131.90 198.53 C 131.22 198.26 129.85 197.73 129.16 197.46 C 128.84 171.49 129.52 145.51 128.81 119.55 C 133.77 117.66 138.47 115.01 142.36 111.37 C 143.25 109.85 143.97 108.23 144.71 106.63 Z" />
+<path fill="#765041" d=" M 1266.37 106.17 C 1269.18 106.55 1272.00 106.90 1274.85 107.10 C 1275.38 110.68 1276.20 114.31 1274.87 117.83 C 1272.28 118.27 1269.73 119.15 1267.10 119.01 C 1265.46 116.70 1265.37 113.52 1263.25 111.46 C 1264.56 109.87 1265.71 108.15 1266.37 106.17 Z" />
+<path fill="#000000" d=" M 422.56 108.19 C 424.39 108.59 426.64 108.92 426.93 111.19 C 428.70 114.47 426.29 118.46 428.23 121.54 C 431.26 122.91 433.89 120.29 436.81 119.97 C 440.08 119.38 442.69 122.15 445.90 122.12 C 448.67 121.93 451.30 120.67 454.11 120.81 C 455.49 122.39 455.04 124.84 453.05 125.69 C 451.70 125.62 450.35 125.51 449.02 125.35 C 450.82 126.33 455.16 127.50 453.24 130.16 C 447.76 132.92 441.48 134.32 435.32 134.04 C 437.49 131.89 439.55 129.60 440.67 126.70 C 438.92 124.33 435.53 124.43 432.99 125.20 C 430.44 125.77 432.28 128.74 432.95 130.21 C 433.82 130.00 434.70 129.79 435.58 129.58 C 435.32 130.30 435.06 131.02 434.80 131.73 C 428.92 130.24 424.46 125.93 419.25 123.10 C 419.56 124.79 419.97 126.46 420.37 128.13 C 418.37 127.04 416.22 125.62 416.15 123.07 C 417.89 119.35 422.40 117.85 424.07 114.02 C 424.15 111.98 423.17 110.10 422.56 108.19 Z" />
+<path fill="#000000" d=" M 426.02 106.59 C 428.87 107.70 430.83 110.65 430.06 113.74 C 428.00 111.79 425.60 109.79 426.02 106.59 Z" />
+<path fill="#416acb" d=" M 704.00 107.95 C 704.62 108.00 705.86 108.08 706.48 108.12 C 711.92 110.75 716.96 114.10 722.40 116.72 C 725.91 118.62 729.76 119.95 732.99 122.33 C 733.00 122.66 733.00 123.33 733.00 123.67 C 729.14 126.47 724.46 127.86 720.45 130.41 C 716.03 133.35 711.04 135.24 706.46 137.89 C 705.85 137.93 704.62 138.00 704.00 138.04 C 703.99 135.69 703.99 133.35 704.00 131.00 C 695.33 131.00 686.67 131.00 678.00 131.00 C 678.00 125.67 677.99 120.33 678.00 115.00 C 686.67 115.00 695.33 115.00 704.00 115.00 C 703.99 112.65 703.99 110.30 704.00 107.95 Z" />
+<path fill="#4f9eeb" d=" M 867.85 108.82 C 869.84 105.52 870.27 111.92 867.99 111.58 C 867.96 110.89 867.89 109.51 867.85 108.82 Z" />
+<path fill="#5886bb" d=" M 22.99 108.92 C 23.50 109.54 24.00 110.17 24.50 110.80 C 25.38 111.90 26.25 113.01 27.15 114.09 C 27.32 122.90 27.06 131.70 27.06 140.50 C 25.42 142.53 23.96 144.73 23.07 147.19 C 23.06 143.23 23.02 139.27 23.02 135.31 C 22.88 126.51 23.26 117.71 22.99 108.92 Z" />
+<path fill="#416acb" d=" M 207.97 116.00 C 207.91 113.22 207.15 108.44 211.40 108.93 C 213.05 109.98 214.77 110.92 216.48 111.89 C 216.99 111.95 218.01 112.06 218.52 112.12 C 220.16 113.05 221.81 113.94 223.45 114.87 C 223.98 114.92 225.03 115.04 225.55 115.09 C 226.51 115.70 227.48 116.30 228.44 116.91 C 228.96 116.96 229.99 117.06 230.51 117.12 C 232.16 118.05 233.84 118.95 235.50 119.88 C 236.00 119.94 237.00 120.07 237.50 120.14 C 239.13 121.04 240.78 121.91 242.45 122.73 C 243.75 122.98 245.12 123.24 246.00 124.37 C 246.48 126.42 243.75 126.84 242.60 127.96 C 242.06 127.99 240.99 128.05 240.45 128.07 C 239.48 128.69 238.51 129.30 237.55 129.91 C 237.03 129.97 235.99 130.07 235.47 130.12 C 233.83 131.05 232.17 131.94 230.53 132.87 C 230.02 132.93 228.99 133.06 228.48 133.13 C 226.83 134.05 225.16 134.95 223.51 135.88 C 223.00 135.93 221.97 136.04 221.45 136.09 C 220.49 136.69 219.52 137.30 218.56 137.91 C 218.03 137.96 216.98 138.06 216.46 138.11 C 214.75 139.08 213.04 140.03 21
 1.38 141.09 C 207.15 141.52 207.92 136.78 207.96 134.00 C 197.10 133.91 186.22 134.17 175.36 133.89 C 175.05 133.57 174.42 132.94 174.11 132.63 C 173.90 127.55 173.89 122.45 174.11 117.38 C 175.07 115.48 177.25 116.08 178.97 115.97 C 188.63 116.03 198.30 115.99 207.97 116.00 Z" />
+<path fill="#416acb" d=" M 763.06 111.30 C 763.11 108.80 766.03 108.99 767.81 108.93 C 768.10 109.39 768.67 110.32 768.95 110.78 C 767.61 110.43 766.26 110.08 764.94 109.75 C 763.53 111.97 763.82 116.07 767.48 115.01 C 766.89 113.89 766.10 112.93 765.12 112.15 C 766.16 112.13 767.21 112.11 768.28 112.10 C 767.49 113.33 767.56 114.52 768.48 115.65 C 766.61 116.05 762.90 116.63 763.07 113.68 C 763.07 113.08 763.06 111.90 763.06 111.30 Z" />
+<path fill="#ffd0dc" d=" M 783.41 112.17 C 783.44 110.88 783.93 109.90 784.90 109.24 C 785.07 111.40 785.09 113.60 784.59 115.72 L 784.26 115.65 C 783.88 114.51 783.60 113.35 783.41 112.17 Z" />
+<path fill="#4d7cd6" d=" M 784.90 109.24 C 786.28 109.10 787.67 108.98 789.07 108.89 L 789.09 109.66 C 788.25 110.01 786.56 110.72 785.72 111.07 C 786.45 111.38 787.93 111.99 788.66 112.30 L 788.70 112.73 C 788.07 112.92 786.80 113.29 786.17 113.48 C 785.68 115.41 788.64 114.76 789.57 115.62 C 787.93 116.07 786.23 115.99 784.59 115.72 C 785.09 113.60 785.07 111.40 784.90 109.24 Z" />
+<path fill="#416acb" d=" M 793.94 108.57 C 794.38 109.81 794.70 111.09 794.80 112.42 C 794.62 113.57 794.53 114.73 794.52 115.89 C 793.14 115.76 791.65 116.21 790.39 115.58 C 789.08 114.58 790.03 112.79 790.05 111.45 C 791.81 111.12 793.59 110.68 793.94 108.57 Z" />
+<path fill="#646ad4" d=" M 808.29 115.78 C 805.91 115.44 805.94 109.92 808.00 109.25 C 807.72 111.42 807.75 113.66 808.29 115.78 Z" />
+<path fill="#a6e7ff" d=" M 808.00 109.25 C 808.35 109.70 809.06 110.59 809.41 111.03 C 809.06 112.60 808.78 114.19 808.75 115.80 L 808.29 115.78 C 807.75 113.66 807.72 111.42 808.00 109.25 Z" />
+<path fill="#ffd0dc" d=" M 830.81 111.00 C 831.08 110.58 831.61 109.73 831.88 109.31 C 832.05 111.45 832.17 113.65 831.67 115.77 L 831.17 115.67 L 830.67 115.09 C 830.63 114.32 830.53 112.79 830.48 112.03 L 830.81 111.00 Z" />
+<path fill="#416acb" d=" M 831.88 109.31 C 833.37 109.15 834.87 109.03 836.39 108.96 C 835.10 109.71 833.82 110.45 832.54 111.18 C 833.43 111.41 835.19 111.87 836.08 112.10 L 835.55 112.81 C 835.04 112.93 834.03 113.17 833.52 113.29 C 833.28 114.48 833.69 116.45 831.67 115.77 C 832.17 113.65 832.05 111.45 831.88 109.31 Z" />
+<path fill="#b39bd0" d=" M 866.29 112.58 C 866.79 111.32 867.30 110.06 867.85 108.82 C 867.89 109.51 867.96 110.89 867.99 111.58 L 868.04 113.30 C 867.93 114.62 867.87 115.93 867.85 117.25 C 867.28 115.71 866.79 114.14 866.29 112.58 Z" />
+<path fill="#765041" d=" M 1221.15 108.96 C 1224.07 108.34 1227.03 108.84 1229.98 109.10 C 1230.86 110.59 1231.80 112.06 1232.90 113.42 C 1232.93 114.03 1233.00 115.25 1233.04 115.86 C 1230.75 117.03 1228.46 118.23 1226.02 119.00 C 1224.00 117.65 1222.18 115.97 1220.02 114.80 C 1219.74 112.77 1220.63 110.87 1221.15 108.96 Z" />
+<path fill="#765041" d=" M 1246.18 109.11 C 1247.51 108.44 1248.97 109.64 1248.97 111.03 C 1249.19 115.05 1249.20 119.17 1247.78 122.99 C 1245.77 123.00 1243.76 123.01 1241.78 123.03 C 1240.35 120.49 1238.56 118.21 1236.66 116.02 C 1237.38 116.01 1238.83 115.98 1239.56 115.96 C 1240.86 112.97 1243.63 110.99 1246.18 109.11 Z" />
+<path fill="#765041" d=" M 1346.50 109.18 C 1347.93 109.90 1349.36 110.62 1350.83 111.30 C 1351.36 114.08 1351.95 116.86 1352.16 119.70 C 1349.93 121.83 1346.84 123.13 1345.35 125.94 C 1344.89 125.95 1343.98 125.96 1343.52 125.96 C 1342.40 124.75 1341.23 123.60 1340.03 122.51 C 1339.98 119.43 1339.98 116.36 1340.00 113.28 C 1342.35 112.26 1344.93 111.35 1346.50 109.18 Z" />
+<path fill="#416acb" d=" M 828.69 110.32 C 829.39 110.55 830.09 110.77 830.81 111.00 L 830.48 112.03 C 828.92 112.58 829.15 114.65 830.67 115.09 L 831.17 115.67 C 827.21 117.68 829.17 112.07 826.58 111.13 C 826.54 112.67 826.54 114.21 826.57 115.75 C 825.08 115.81 823.61 115.86 822.15 115.90 C 822.03 114.08 821.94 112.25 821.96 110.43 C 823.41 111.55 823.14 113.50 823.65 115.06 C 825.79 115.35 824.78 112.62 825.29 111.42 C 826.42 111.07 827.55 110.70 828.69 110.32 Z" />
+<path fill="#416acb" d=" M 860.33 110.84 C 861.57 110.03 862.86 110.75 864.08 111.19 C 861.53 112.28 862.38 114.92 864.15 116.14 C 863.50 116.05 862.21 115.88 861.57 115.79 C 861.18 114.13 860.78 112.47 860.33 110.84 Z" />
+<path fill="#765041" d=" M 1326.48 112.10 C 1327.29 111.27 1328.32 110.64 1329.29 109.96 C 1331.71 111.68 1334.36 113.04 1336.95 114.51 C 1336.99 117.33 1337.00 120.15 1337.01 122.97 C 1334.85 122.98 1332.71 123.02 1330.59 123.13 C 1329.40 123.57 1328.22 123.98 1327.04 124.37 C 1327.12 120.27 1326.87 116.18 1326.48 112.10 Z" />
+<path fill="#ffffff" d=" M 24.50 110.80 C 26.06 110.73 27.62 110.70 29.17 110.70 C 32.72 113.10 36.57 114.96 40.47 116.69 C 51.94 120.49 63.99 121.82 75.96 122.93 C 89.54 123.61 103.10 122.05 116.42 119.47 C 123.54 117.62 130.96 115.68 136.84 111.03 C 138.68 111.14 140.52 111.26 142.36 111.37 C 138.47 115.01 133.77 117.66 128.81 119.55 C 125.23 120.73 121.63 121.89 117.96 122.74 C 113.97 123.45 109.99 124.24 105.98 124.83 C 100.71 125.56 95.41 126.33 90.07 126.03 C 86.48 125.92 82.88 126.06 79.30 126.31 C 70.58 126.83 61.95 125.18 53.42 123.61 C 44.53 122.11 35.97 119.00 27.93 114.97 C 27.74 114.75 27.35 114.31 27.15 114.09 C 26.25 113.01 25.38 111.90 24.50 110.80 Z" />
+<path fill="#d8afd1" d=" M 763.07 113.68 C 761.21 114.42 761.20 110.57 763.06 111.30 C 763.06 111.90 763.07 113.08 763.07 113.68 Z" />
+<path fill="#c2aed8" d=" M 768.87 112.17 C 769.33 111.93 770.24 111.46 770.69 111.22 L 771.23 111.66 L 771.03 112.40 C 770.56 113.48 770.03 114.53 769.45 115.54 L 769.09 115.52 C 769.26 114.39 769.18 113.27 768.87 112.17 Z" />
+<path fill="#416acb" d=" M 770.69 111.22 C 772.14 110.98 773.58 111.21 774.90 111.86 C 774.83 112.62 774.67 114.12 774.59 114.87 C 773.47 116.79 771.12 115.64 769.45 115.54 C 770.03 114.53 770.56 113.48 771.03 112.40 C 770.53 113.77 771.94 116.25 773.38 114.64 C 774.66 113.04 772.60 111.86 771.23 111.66 L 770.69 111.22 Z" />
+<path fill="#ffd0dc" d=" M 774.90 111.86 C 775.13 111.74 775.60 111.48 775.83 111.36 C 776.14 112.75 776.23 114.26 775.68 115.61 C 775.41 115.42 774.87 115.05 774.59 114.87 C 774.67 114.12 774.83 112.62 774.90 111.86 Z" />
+<path fill="#416acb" d=" M 775.83 111.36 C 778.27 111.20 780.72 111.08 783.17 110.94 C 783.23 111.24 783.35 111.86 783.41 112.17 C 783.60 113.35 783.88 114.51 784.26 115.65 C 782.72 115.79 781.19 115.93 779.67 116.07 C 779.10 113.81 780.72 112.74 782.62 111.98 C 780.95 111.89 779.28 111.97 777.64 112.21 L 777.11 112.28 C 776.82 113.42 776.82 114.58 777.09 115.73 L 775.68 115.61 C 776.23 114.26 776.14 112.75 775.83 111.36 Z" />
+<path fill="#416acb" d=" M 795.36 112.42 C 795.95 110.01 799.01 111.50 800.70 110.99 L 800.05 112.04 L 799.56 112.79 C 798.77 113.78 797.70 114.32 796.34 114.39 C 797.73 114.89 799.13 115.40 800.53 115.93 C 800.17 116.49 799.46 117.60 799.10 118.16 C 798.25 118.02 796.56 117.74 795.72 117.60 C 796.21 115.88 796.17 114.03 795.36 112.42 Z" />
+<path fill="#416acb" d=" M 800.86 112.16 C 801.66 110.74 803.41 111.11 804.77 110.92 C 805.16 111.82 805.56 112.71 805.98 113.61 C 804.48 113.91 803.01 114.21 801.55 114.54 C 803.06 114.92 804.63 115.28 806.16 115.72 C 804.26 115.97 800.60 116.79 800.81 113.73 C 800.82 113.34 800.85 112.55 800.86 112.16 Z" />
+<path fill="#ffd0dc" d=" M 809.41 111.03 L 809.84 111.04 C 810.35 112.62 810.55 114.61 809.34 115.93 L 808.75 115.80 C 808.78 114.19 809.06 112.60 809.41 111.03 Z" />
+<path fill="#416acb" d=" M 809.84 111.04 C 811.06 111.56 814.49 110.01 814.15 112.17 L 813.82 113.09 L 813.33 112.80 C 812.90 112.54 812.03 112.01 811.60 111.74 C 810.97 113.20 812.07 116.42 809.34 115.93 C 810.55 114.61 810.35 112.62 809.84 111.04 Z" />
+<path fill="#ffd0dc" d=" M 814.87 112.03 C 815.08 111.85 815.49 111.48 815.70 111.30 C 816.38 113.36 816.34 115.62 815.80 117.72 C 815.50 117.27 814.90 116.38 814.60 115.94 C 815.20 114.66 815.29 113.36 814.87 112.03 Z" />
+<path fill="#5672d3" d=" M 815.70 111.30 C 817.24 111.15 818.79 111.02 820.35 110.91 L 820.05 112.29 C 820.05 112.90 820.04 114.13 820.03 114.74 L 820.27 115.94 C 819.51 115.97 817.98 116.03 817.22 116.06 C 817.19 116.58 817.14 117.61 817.12 118.13 L 815.80 117.72 C 816.34 115.62 816.38 113.36 815.70 111.30 Z" />
+<path fill="#e8cfe2" d=" M 836.08 112.10 C 836.33 111.96 836.82 111.68 837.07 111.54 C 837.17 112.89 837.16 114.26 836.98 115.60 C 835.76 115.19 835.28 114.26 835.55 112.81 L 836.08 112.10 Z" />
+<path fill="#416acb" d=" M 837.07 111.54 C 838.65 111.14 840.60 110.47 841.82 112.04 C 841.80 112.74 841.74 114.16 841.72 114.87 C 840.53 116.46 838.61 115.89 836.98 115.60 C 837.16 114.26 837.17 112.89 837.07 111.54 Z" />
+<path fill="#ffd0dc" d=" M 841.82 112.04 C 842.14 111.91 842.79 111.67 843.11 111.54 C 843.04 112.86 843.26 114.21 842.94 115.51 C 842.63 115.35 842.02 115.03 841.72 114.87 C 841.74 114.16 841.80 112.74 841.82 112.04 Z" />
+<path fill="#4b76d5" d=" M 843.11 111.54 C 843.78 111.47 845.13 111.32 845.81 111.24 L 845.65 111.72 C 844.16 112.53 844.78 115.56 842.94 115.51 C 843.26 114.21 843.04 112.86 843.11 111.54 Z" />
+<path fill="#f9d0dc" d=" M 845.81 111.24 L 846.37 111.31 C 847.08 112.58 847.01 114.07 847.18 115.47 C 845.38 115.75 845.38 112.91 845.65 111.72 L 845.81 111.24 Z" />
+<path fill="#416acb" d=" M 846.37 111.31 C 848.99 111.16 851.63 111.11 854.26 111.03 C 854.36 112.71 854.45 114.39 854.54 116.07 L 853.39 115.95 C 852.98 114.45 853.60 112.25 851.74 111.55 C 851.36 113.21 851.58 115.13 850.41 116.52 C 850.13 114.89 849.88 113.26 849.65 111.63 C 847.60 112.37 848.34 114.88 847.80 116.52 L 847.18 115.47 C 847.01 114.07 847.08 112.58 846.37 111.31 Z" />
+<path fill="#547fd8" d=" M 855.71 111.01 C 856.59 111.00 858.35 110.98 859.23 110.97 C 859.49 112.60 859.74 114.23 859.98 115.87 C 858.52 115.94 857.06 116.01 855.62 116.08 C 855.51 114.26 855.84 112.54 858.07 112.67 L 858.13 112.00 C 857.51 112.00 856.27 112.00 855.64 112.00 L 855.71 111.01 Z" />
+<path fill="#765041" d=" M 1201.37 110.66 C 1205.56 111.44 1207.64 115.51 1209.94 118.64 C 1209.58 118.76 1208.86 118.99 1208.50 119.11 C 1206.63 121.02 1204.26 122.38 1201.51 122.08 C 1200.31 120.87 1199.08 119.70 1197.83 118.57 C 1197.99 115.56 1199.65 113.02 1201.37 110.66 Z" />
+<path fill="#d2b07a" d=" M 1250.57 110.77 C 1254.24 111.62 1257.98 112.14 1261.76 112.06 C 1261.95 114.34 1262.63 116.52 1263.66 118.56 C 1261.36 119.86 1259.26 121.49 1256.97 122.79 C 1254.81 123.55 1252.66 122.37 1250.61 121.86 C 1250.51 118.16 1250.49 114.46 1250.57 110.77 Z" />
+<path fill="#ffffff" d=" M 707.00 111.89 C 713.83 115.08 720.08 119.36 727.00 122.35 C 727.00 122.66 726.99 123.28 726.98 123.59 C 720.42 127.29 713.68 130.64 707.00 134.12 C 706.75 132.09 707.82 129.37 705.65 128.11 C 697.44 127.81 689.21 128.10 681.00 128.00 C 680.99 124.67 680.99 121.33 681.00 118.00 C 689.21 117.89 697.44 118.20 705.65 117.88 C 707.83 116.64 706.74 113.90 707.00 111.89 Z" />
+<path fill="#8ed6ff" d=" M 768.28 112.10 L 768.87 112.17 C 769.18 113.27 769.26 114.39 769.09 115.52 L 768.48 115.65 C 767.56 114.52 767.49 113.33 768.28 112.10 Z" />
+<path fill="#ffffff" d=" M 771.23 111.66 C 772.60 111.86 774.66 113.04 773.38 114.64 C 771.94 116.25 770.53 113.77 771.03 112.40 L 771.23 111.66 Z" />
+<path fill="#9ee1ff" d=" M 777.11 112.28 L 777.64 112.21 C 778.72 112.98 778.65 115.71 777.09 115.73 C 776.82 114.58 776.82 113.42 777.11 112.28 Z" />
+<path fill="#ffffff" d=" M 791.28 112.24 C 792.81 111.05 794.13 113.82 792.79 114.77 C 791.24 115.95 789.93 113.19 791.28 112.24 Z" />
+<path fill="#ddb7d5" d=" M 794.80 112.42 L 795.36 112.42 C 796.17 114.03 796.21 115.88 795.72 117.60 C 795.42 117.17 794.82 116.32 794.52 115.89 C 794.53 114.73 794.62 113.57 794.80 112.42 Z" />
+<path fill="#ffffff" d=" M 797.47 112.24 C 798.04 112.81 798.04 112.81 797.47 112.24 Z" />
+<path fill="#f1c4d8" d=" M 800.05 112.04 L 800.86 112.16 C 800.85 112.55 800.82 113.34 800.81 113.73 C 800.49 113.50 799.87 113.03 799.56 112.79 L 800.05 112.04 Z" />
+<path fill="#ffffff" d=" M 802.33 112.13 C 805.30 110.50 802.61 115.40 802.33 112.13 Z" />
+<path fill="#86d0ff" d=" M 814.15 112.17 L 814.87 112.03 C 815.29 113.36 815.20 114.66 814.60 115.94 L 814.03 115.86 C 813.97 115.16 813.87 113.78 813.82 113.09 L 814.15 112.17 Z" />
+<path fill="#cdeff8" d=" M 817.44 112.24 C 818.98 111.04 820.30 113.85 818.93 114.80 C 817.38 115.90 816.09 113.19 817.44 112.24 Z" />
+<path fill="#64b8f7" d=" M 820.05 112.29 C 821.76 111.70 821.72 115.35 820.03 114.74 C 820.04 114.13 820.05 112.90 820.05 112.29 Z" />
+<path fill="#ffffff" d=" M 830.67 115.09 C 829.15 114.65 828.92 112.58 830.48 112.03 C 830.53 112.79 830.63 114.32 830.67 115.09 Z" />
+<path fill="#ffffff" d=" M 838.28 112.32 C 840.06 110.62 841.82 114.28 839.74 115.03 C 838.18 115.62 837.15 113.32 838.28 112.32 Z" />
+<path fill="#765041" d=" M 1189.22 112.07 C 1191.84 111.59 1194.44 112.37 1196.85 113.36 C 1196.21 116.22 1195.35 119.03 1194.80 121.91 C 1192.87 122.84 1190.78 123.14 1188.67 122.99 C 1187.65 120.93 1185.18 119.96 1184.75 117.60 C 1186.73 116.18 1187.95 114.10 1189.22 112.07 Z" />
+<path fill="#ffffff" d=" M 211.04 112.69 C 211.66 112.98 212.89 113.54 213.51 113.82 C 214.01 113.90 215.02 114.06 215.53 114.14 C 217.17 115.06 218.83 115.94 220.47 116.87 C 220.98 116.93 222.00 117.06 222.51 117.13 C 224.17 118.05 225.84 118.95 227.50 119.88 C 228.01 119.94 229.05 120.04 229.56 120.10 C 230.52 120.69 231.47 121.29 232.43 121.89 C 232.94 121.96 233.96 122.10 234.47 122.17 C 235.96 122.94 237.46 123.68 238.99 124.38 C 238.99 124.69 238.99 125.31 238.99 125.62 C 237.48 126.31 235.99 127.04 234.51 127.81 C 234.00 127.89 232.98 128.06 232.46 128.15 C 230.81 129.06 229.15 129.95 227.51 130.88 C 226.99 130.93 225.96 131.04 225.45 131.09 C 224.48 131.70 223.52 132.30 222.56 132.91 C 222.03 132.96 220.99 133.07 220.47 133.13 C 218.82 134.06 217.16 134.95 215.52 135.87 C 215.01 135.95 214.00 136.10 213.49 136.18 C 212.88 136.46 211.65 137.02 211.04 137.31 C 211.01 135.20 211.00 133.10 210.99 131.00 C 199.66 131.00 188.33 131.00 177.00 131.00 C 177.00 127.00 177.00 123.00 17
 7.00 119.00 C 188.33 119.00 199.66 119.00 210.99 119.00 C 211.00 116.90 211.01 114.79 211.04 112.69 Z" />
+<path fill="#866acb" d=" M 813.33 112.80 L 813.82 113.09 C 813.87 113.78 813.97 115.16 814.03 115.86 C 812.50 115.29 812.27 114.27 813.33 112.80 Z" />
+<path fill="#4d9eeb" d=" M 868.04 113.30 C 869.81 113.55 870.25 120.32 867.85 117.25 C 867.87 115.93 867.93 114.62 868.04 113.30 Z" />
+<path fill="#416acb" d=" M 1115.01 112.98 C 1115.64 113.00 1116.90 113.04 1117.54 113.06 C 1118.49 113.67 1119.46 114.29 1120.44 114.91 C 1120.95 114.96 1121.99 115.06 1122.51 115.11 C 1124.15 116.04 1125.82 116.94 1127.47 117.88 C 1127.99 117.93 1129.03 118.04 1129.56 118.09 C 1130.50 118.70 1131.47 119.30 1132.44 119.91 C 1132.96 119.96 1134.00 120.07 1134.52 120.12 C 1136.16 121.05 1137.82 121.95 1139.48 122.87 C 1139.99 122.94 1141.02 123.07 1141.53 123.13 C 1143.16 124.05 1144.82 124.94 1146.47 125.86 C 1146.98 125.94 1147.99 126.09 1148.49 126.17 C 1149.12 126.46 1150.37 127.05 1151.00 127.34 C 1151.00 127.92 1151.00 129.08 1151.00 129.66 C 1150.37 129.95 1149.12 130.54 1148.50 130.83 C 1147.99 130.91 1146.97 131.06 1146.46 131.14 C 1144.81 132.06 1143.16 132.95 1141.53 133.87 C 1141.02 133.93 1140.00 134.06 1139.49 134.13 C 1137.84 135.05 1136.18 135.94 1134.54 136.86 C 1134.03 136.93 1133.00 137.06 1132.48 137.13 C 1130.83 138.05 1129.17 138.94 1127.53 139.87 C 1127.02 139.9
 3 1126.00 140.06 1125.49 140.13 C 1123.84 141.05 1122.17 141.94 1120.52 142.84 C 1120.03 142.95 1119.05 143.16 1118.56 143.27 C 1117.38 143.64 1116.21 143.98 1115.03 144.28 C 1114.99 141.85 1114.99 139.43 1115.00 137.00 C 1104.00 137.00 1093.00 137.00 1082.00 137.00 C 1081.99 131.33 1081.99 125.67 1082.00 120.00 C 1093.00 120.00 1104.00 120.00 1115.00 120.00 C 1114.99 117.66 1114.99 115.32 1115.01 112.98 Z" />
+<path fill="#85abd3" d=" M 27.15 114.09 C 27.35 114.31 27.74 114.75 27.93 114.97 C 30.56 118.29 34.16 120.57 37.93 122.39 C 38.08 126.25 38.07 130.11 37.97 133.98 C 37.85 138.30 38.35 142.59 38.64 146.90 C 39.06 152.36 38.30 157.97 39.64 163.33 C 41.59 165.46 44.37 166.62 46.77 168.20 C 47.09 178.81 46.57 189.43 46.99 200.03 C 46.92 201.90 49.21 202.13 50.46 202.83 C 50.07 204.12 49.68 205.43 49.29 206.73 C 43.29 205.26 37.40 203.21 31.89 200.42 C 33.09 199.65 34.28 198.88 35.48 198.11 C 32.73 195.44 28.79 193.47 27.54 189.65 C 26.84 184.30 27.38 178.88 27.03 173.50 C 27.13 162.50 27.45 151.50 27.06 140.50 C 27.06 131.70 27.32 122.90 27.15 114.09 Z" />
+<path fill="#000000" d=" M 428.66 113.87 C 429.67 114.34 430.70 114.81 431.73 115.27 C 431.90 115.95 432.25 117.32 432.42 118.01 C 433.04 117.60 434.28 116.77 434.90 116.36 C 435.69 117.21 437.23 117.66 437.08 119.09 C 434.73 120.44 431.86 121.60 429.15 120.97 C 427.01 119.14 428.50 116.18 428.66 113.87 Z" />
+<path fill="#000000" d=" M 444.48 115.65 C 446.87 115.00 449.45 114.84 451.44 113.16 C 452.89 114.69 454.34 116.23 455.86 117.70 C 452.99 118.29 450.10 119.03 447.61 120.63 C 444.81 122.19 441.62 120.31 439.05 119.15 C 440.93 118.11 442.63 116.75 444.48 115.65 Z" />
+<path fill="#ffffff" d=" M 781.32 114.24 C 781.88 114.82 781.88 114.82 781.32 114.24 Z" />
+<path fill="#ffffee" d=" M 857.26 114.23 C 857.78 114.82 857.78 114.82 857.26 114.23 Z" />
+<path fill="#765041" d=" M 1314.19 113.79 C 1317.43 114.00 1320.69 114.03 1323.95 114.00 C 1324.04 117.96 1324.32 121.92 1324.27 125.89 C 1320.51 126.41 1316.74 126.50 1313.00 125.90 C 1312.93 121.83 1312.67 117.66 1314.19 113.79 Z" />
+<path fill="#c8d9ea" d=" M 27.93 114.97 C 35.97 119.00 44.53 122.11 53.42 123.61 C 61.95 125.18 70.58 126.83 79.30 126.31 C 78.95 126.33 78.26 126.38 77.91 126.41 C 73.97 126.72 70.01 126.81 66.06 126.96 C 63.79 127.05 61.51 127.14 59.23 127.23 C 59.18 133.27 58.93 139.32 59.02 145.36 C 52.30 141.01 45.48 136.85 37.97 133.98 C 38.07 130.11 38.08 126.25 37.93 122.39 C 34.16 120.57 30.56 118.29 27.93 114.97 Z" />
+<path fill="#ffffff" d=" M 797.09 116.08 C 800.15 114.64 797.18 119.35 797.09 116.08 Z" />
+<path fill="#d2b07a" d=" M 1279.06 115.95 C 1283.76 114.95 1287.38 118.02 1291.08 120.32 C 1290.99 120.83 1290.79 121.85 1290.70 122.37 C 1287.91 123.50 1285.45 125.31 1282.59 126.24 C 1281.06 123.43 1279.02 120.98 1277.03 118.52 C 1277.69 117.66 1278.37 116.81 1279.06 115.95 Z" />
+<path fill="#ffffff" d=" M 1118.05 116.67 C 1120.26 117.60 1122.42 118.66 1124.52 119.85 C 1125.02 119.92 1126.03 120.06 1126.53 120.13 C 1128.16 121.05 1129.82 121.94 1131.47 122.87 C 1131.99 122.93 1133.01 123.07 1133.53 123.13 C 1135.17 124.06 1136.84 124.95 1138.50 125.88 C 1139.01 125.93 1140.05 126.04 1140.56 126.09 C 1141.51 126.70 1142.48 127.32 1143.45 127.93 C 1144.09 127.96 1145.36 128.01 1145.99 128.04 L 1146.02 128.96 C 1145.39 129.00 1144.13 129.07 1143.49 129.10 C 1141.84 130.04 1140.18 130.94 1138.54 131.87 C 1138.03 131.93 1137.00 132.06 1136.48 132.13 C 1134.82 133.05 1133.15 133.95 1131.51 134.88 C 1130.99 134.93 1129.97 135.04 1129.4

<TRUNCATED>