-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathliterate-clojure.html
337 lines (301 loc) · 460 KB
/
literate-clojure.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Projectless literate Clojure with embedded SVG</title>
<meta name="generator" content="Org mode">
<meta name="author" content="George Kontsevich">
<link rel="stylesheet" type="text/css" href="../web/worg.css" />
<link rel="shortcut icon" href="../web/panda.svg" type="image/x-icon">
</head>
<body>
<div id="content">
<h1 class="title">Projectless literate Clojure with embedded SVG</h1>
<div id="table-of-contents">
<h2>Table of Contents</h2>
<div id="text-table-of-contents">
<ul>
<li><a href="#orgfe3018e">Short Intro</a></li>
<li><a href="#org6c854f3">Longer Intro</a></li>
<li><a href="#org2fc2a97">Setup</a>
<ul>
<li><a href="#orgddcd3bf">add-libs</a></li>
</ul>
</li>
<li><a href="#org83b37f5">Loading libraries</a></li>
<li><a href="#org7b72bad">Embedded SVG</a></li>
<li><a href="#org6e7987b">Export</a></li>
<li><a href="#orgb42b333">Conlusion</a>
<ul>
<li><a href="#orge490832">Longer Example</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="outline-container-orgfe3018e" class="outline-2">
<h2 id="orgfe3018e">Short Intro</h2>
<div class="outline-text-2" id="text-orgfe3018e">
<p>
In short this is an example document of a project-less literate Emacs/orgmode page with embedded SVGs that can be directly evaluated and exported to HTML. Everything is contained in one <code>.org</code> file. There are no additional files needed and no external image files.
</p>
</div>
</div>
<div id="outline-container-org6c854f3" class="outline-2">
<h2 id="org6c854f3">Longer Intro</h2>
<div class="outline-text-2" id="text-org6c854f3">
<p>
I take a lot of notes using Emacs' <a href="https://orgmode.org">Orgmode</a>. Often I will have little code snippets to add diagrams or plots. In some languages this is easier than in others. For instance the <code>octave</code> integration in Emacs is excellent and plots can be added pretty easily. However sometimes I want the power of a full programming language, so here I've tried to develop a simplified workflow that will work with Clojure.
</p>
<dl class="org-dl">
<dt>Projectless</dt><dd>Clojure is dynamically typed and uses a REPL which can make it feel very interactive. However if you've used something like MATLAB.. well you don't have the same level of seemless integration. B/c the language is general purpose, the language core includes very few features. Unlike Octave/R or similar languages, you typically won't just drop into a REPL and go. You need to set up a project folder, source code directory structure, defined in a <code>deps.edn</code> configuration file, specify what libraries you want, make some namespaces.. etc etc. I want to short circuit as much of that as possible.</dd>
<dt>Embedded SVG</dt><dd>I also wanted to go a step further and have plots/diagrams directly included in the <code>.org</code> file itself. It won't work for every situation. You won't want to inline a jpeg .. but for most situations this is sufficient in my use cases. And I want this embedded SVG to be in the exported HTML. SVG and HTML play nice together. I also don't want to limit myself to some hacked together plotting library to imitate MATLAB. With the generic SVG primitives provided by <code>thing/geom</code> you aren't just limited to plotting. You can do much much more (scroll to the bottom of the page for a TLDR)</dd>
</dl>
<p>
Places of potential improvement are in green <b>Note</b> boxes. Feedback/Suggestions are very welcome :)
</p>
</div>
</div>
<div id="outline-container-org2fc2a97" class="outline-2">
<h2 id="org2fc2a97">Setup</h2>
<div class="outline-text-2" id="text-org2fc2a97">
<p>
You naturally need Clojure installed. Then in Emacs you will need to have <code>ob-clojure</code> and <code>cider</code> enabled. Details here: <a href="https://www.orgmode.org/worg/org-contrib/babel/languages/ob-doc-clojure.html">https://www.orgmode.org/worg/org-contrib/babel/languages/ob-doc-clojure.html</a>
</p>
<blockquote>
<p>
<b>Note</b>: In principle this could be pared down further. This could work without <code>cider</code> - just with a <code>clojure</code> or <code>clj</code> inferior process. However my ELisp is no-bueno and I wasn't able to get this working.
</p>
</blockquote>
</div>
<div id="outline-container-orgddcd3bf" class="outline-3">
<h3 id="orgddcd3bf">add-libs</h3>
<div class="outline-text-3" id="text-orgddcd3bf">
<p>
The trick to getting this to work project-less (ie. without using a <code>dep.edn</code>) is to leverage an experimental tool in Clojure called <code>add-libs</code> that is in the <code>tools.deps.alpha</code> library/namespace. This is described in detail by Alex Miller: <a href="https://insideclojure.org/2018/05/04/add-lib/">https://insideclojure.org/2018/05/04/add-lib/</a> (<b>note</b>: since publication the tool was renamed from <code>add-lib</code> to <code>add-libs</code>)
</p>
<p>
At the moment this is experimental and living on a branch. Maybe some day it'll be part of <code>core</code> and this step can be skipped. We want this library to be automatically loaded when your projectless <code>cider</code> session gets launched. I've included the following in <code>~/.clojure/deps.edn</code> so that it is enable globally.
</p>
<div class="org-src-container">
<pre class="src src-clojure">{
<span style="color: #008b8b;">:deps</span> { <span style="color: #228b22;">org.clojure</span>/tools.deps.alpha {<span style="color: #008b8b;">:</span><span style="color: #228b22;">git</span><span style="color: #232627; background-color: #fcfcfc;">/</span><span style="color: #008b8b;">url</span> <span style="color: #8b2252;">"https://github.com/clojure/tools.deps.alpha.git"</span>
<span style="color: #008b8b;">:sha</span> <span style="color: #8b2252;">"241cd24c35ba770aea4773ea161d45276e5d3a73"</span>}}
}
</pre>
</div>
<blockquote>
<p>
<b>Note</b>: Ideally this would <i>only</i> be included in cider sessions that are projectless (are missing a <code>deps.edn</code>). If you know how to make such a conditional switch, please let me know - or post an answer here: <a href="https://github.com/clojure-emacs/cider/discussions/3025">https://github.com/clojure-emacs/cider/discussions/3025</a>
</p>
</blockquote>
</div>
</div>
</div>
<div id="outline-container-org83b37f5" class="outline-2">
<h2 id="org83b37f5">Loading libraries</h2>
<div class="outline-text-2" id="text-org83b37f5">
<p>
We then <code>cider-jack-in</code> a <code>cider</code> session (preferrably in a directory where there with no Clojure project)
</p>
<blockquote>
<p>
<b>Note</b>: ideally orgmode would automatically launch a session somehow in a temp folder.. somewhere in the background..
</p>
</blockquote>
<p>
And we can start using <code>add-libs</code> directly to load libraries dynamically:
</p>
<div class="org-src-container">
<pre class="src src-clojure">(use 'clojure.tools.deps.alpha.repl)
(add-libs {'<span style="color: #228b22;">thi.ng</span>/geom {<span style="color: #008b8b;">:</span><span style="color: #228b22;">mvn</span><span style="color: #232627; background-color: #fcfcfc;">/</span><span style="color: #008b8b;">version</span> <span style="color: #8b2252;">"1.0.0-RC4"</span>}})
(use 'thi.ng.geom.viz.core)
(use 'thi.ng.geom.svg.core)
</pre>
</div>
<p>
This simply: 1) loads the <code>add-libs</code> namespace, 2) adds an SVG plotting library (fetching it from Maven) 3) loads some namespaces from that library
</p>
<p>
Unfortunately I need to rerun this block twice. The first run always seems to timeout:
</p>
<div class="org-src-container">
<pre class="src src-org">executing Clojure code block...
nrepl-send-sync-request: Sync nREPL request timed out (ns user op eval code (use 'clojure.tools.deps.alpha.repl)
</pre>
</div>
<blockquote>
<p>
<b>Note</b>: I have no idea what's going on here.. if anyone knows what's up, please let me know
</p>
</blockquote>
</div>
</div>
<div id="outline-container-org7b72bad" class="outline-2">
<h2 id="org7b72bad">Embedded SVG</h2>
<div class="outline-text-2" id="text-org7b72bad">
<p>
Once we have a library loaded and included in the default namespace, we can start using it directly. To demonstrate including SVG I'm using the fantastic <a href="https://github.com/thi-ng/geom"><code>thi-ng/geom</code></a> library from Karsten Schmidt. The project is a bit intimidating in scope, bit it's actually very modular bare-Clojure with no magic/macros. Each piece is usually easy to read and understand in isolation. The library has some very minimal SVG/Math/Vec cores and then other small practical namespaces built on top of this (it's best to think of it as a collection of interconnecting mini-libraries). Here I'm using the plotting utility from <code>geom-viz</code> to make a very simple stacked interval plot which is then output in SVG hiccup and serialized to SVG XML. This was pulled directly from the examples: <a href="https://github.com/thi-ng/geom/blob/master/geom-viz/src/core.org#stacked-intervals">https://github.com/thi-ng/geom/blob/master/geom-viz/src/core.org#stacked-intervals</a>
</p>
<div class="org-src-container">
<pre class="src src-clojure">(<span style="color: #a020f0;">->></span> {<span style="color: #008b8b;">:x-axis</span> (linear-axis
{<span style="color: #008b8b;">:domain</span> [-10 310]
<span style="color: #008b8b;">:range</span> [50 550]
<span style="color: #008b8b;">:major</span> 100
<span style="color: #008b8b;">:minor</span> 50
<span style="color: #008b8b;">:pos</span> 150})
<span style="color: #008b8b;">:y-axis</span> (linear-axis
{<span style="color: #008b8b;">:domain</span> [0 4]
<span style="color: #008b8b;">:range</span> [50 150]
<span style="color: #008b8b;">:visible</span> <span style="color: #008b8b;">false</span>})
<span style="color: #008b8b;">:data</span> [{<span style="color: #008b8b;">:values</span> [[0 100] [10 90] [80 200] [250 300] [150 170] [110 120]
[210 280] [180 280] [160 240] [160 170]]
<span style="color: #008b8b;">:attribs</span> {<span style="color: #008b8b;">:stroke-width</span> <span style="color: #8b2252;">"10px"</span> <span style="color: #008b8b;">:stroke-linecap</span> <span style="color: #8b2252;">"round"</span> <span style="color: #008b8b;">:stroke</span> <span style="color: #8b2252;">"#0af"</span>}
<span style="color: #008b8b;">:layout</span> svg-stacked-interval-plot}]}
(svg-plot2d-cartesian)
(svg {<span style="color: #008b8b;">:width</span> 600 <span style="color: #008b8b;">:height</span> 200})
(serialize)
symbol)
</pre>
</div>
<?xml version="1.0"?>
<svg height="200" version="1.1" width="600" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><g><g stroke-linecap="round" stroke-width="10px" stroke="#0af"><line x1="65.63" x2="221.88" y1="50.00" y2="50.00" /><line x1="237.50" x2="253.13" y1="50.00" y2="50.00" /><line x1="300.00" x2="331.25" y1="50.00" y2="50.00" /><line x1="346.88" x2="503.13" y1="50.00" y2="50.00" /><line x1="81.25" x2="206.25" y1="75.00" y2="75.00" /><line x1="315.63" x2="440.63" y1="75.00" y2="75.00" /><line x1="456.25" x2="534.38" y1="75.00" y2="75.00" /><line x1="190.63" x2="378.13" y1="100.00" y2="100.00" /><line x1="393.75" x2="503.13" y1="100.00" y2="100.00" /><line x1="315.63" x2="331.25" y1="125.00" y2="125.00" /></g><g stroke="black"><line x1="65.63" x2="65.63" y1="150.00" y2="160.00" /><line x1="221.88" x2="221.88" y1="150.00" y2="160.00" /><line x1="378.13" x2="378.13" y1="150.00" y2="160.00" /><line x1="534.38" x2="534.38" y1="150.00" y2="160.00" /><line x1="143.75" x2="143.75" y1="150.00" y2="155.00" /><line x1="300.00" x2="300.00" y1="150.00" y2="155.00" /><line x1="456.25" x2="456.25" y1="150.00" y2="155.00" /><g fill="black" font-family="Arial, sans-serif" font-size="10" stroke="none" text-anchor="middle"><text x="65.63" y="170.00">0.00</text><text x="221.88" y="170.00">100.00</text><text x="378.13" y="170.00">200.00</text><text x="534.38" y="170.00">300.00</text></g><line x1="50.00" x2="550.00" y1="150.00" y2="150.00" /></g></g></svg>
<p>
What's great here is that this plot was immediately inserted (as shown) when I evaluated the source code block. I exported it to HTML and the SVG was automatically inlined. There are no <code>.svg</code> files. (Though we could <a href="https://clojuredocs.org/clojure.core/spit"><code>spit</code></a> one if we want). Now I can just grab this <code>.html</code> file and email it to some friends :) <br>
</p>
<p>
Some things to note:
</p>
<p>
The source code block here required a header argument to specify that result should come out as an HTML block:
</p>
<div class="org-src-container">
<pre class="src src-org">#+BEGIN_SRC clojure :results html
</pre>
</div>
<p>
<code>geom</code>'s <code>serialize</code> (<i>the second to last line</i>) transforms its own SVG <code>hiccup</code> format to a valid SVG/XML string. If we stopped here then the <code>cider</code> session would show an output sourrounded by double quotes (as it does for all strings). We don't want these quotes in the resulting HTML, so the result needs to be piped through <code>symbol</code> to remove those.
</p>
<blockquote>
<p>
<b>Note</b>: I seem to be abusing <code>symbol</code>, b/c this isn't its intended use - but I don't know of a better alternative. Please let me know if there is something better (that doesn't involve tweaking <code>ob-clojure</code>)
</p>
</blockquote>
<p>
If you have multiple evaluations in one source code block (like function definitions) then <i>all</i> their outputs will show up in the <code>#+RESULTS</code> block (not just the last form). I've separate non-drawing stuff into their own source code block that has the results disabled (note how the last code block is one big threading macro)
</p>
<div class="org-src-container">
<pre class="src src-org">#+BEGIN_SRC clojure :results none
</pre>
</div>
</div>
</div>
<div id="outline-container-org6e7987b" class="outline-2">
<h2 id="org6e7987b">Export</h2>
<div class="outline-text-2" id="text-org6e7987b">
<p>
By default <code>#+RESULTS:</code> blocks of evaluated org-mode source code blocks are not exported to the HTML so you will need to add a orgmode configuration at the top of your org file to enable this:
</p>
<div class="org-src-container">
<pre class="src src-org"><span style="color: #b22222;">#+PROPERTY: header-args :results org :eval never-export :exports both</span>
</pre>
</div>
</div>
</div>
<div id="outline-container-orgb42b333" class="outline-2">
<h2 id="orgb42b333">Conlusion</h2>
<div class="outline-text-2" id="text-orgb42b333">
<p>
And that's it! You can now evaluate code blocks (C-c C-c block-by-block or C-c C-v C-b for the whole buffer) and export to HTML and everything necessary will be in the <code>.html</code> file - with no images to drag around.
</p>
<p>
I think the end result is .. satisfactory. Admittedly it's not yet as concise as writing code block in something purpose-built like Octave, but ultimately the flexibility of Clojure (even if a tad verbose) may be worth it in some situations. Probably with a good suite/library of convenience functions built on top of <code>thing/geom</code> one could get to much smaller focused domain-specific pieces of code.
</p>
</div>
<div id="outline-container-orge490832" class="outline-3">
<h3 id="orge490832">Longer Example</h3>
<div class="outline-text-3" id="text-orge490832">
<p>
This is mostly just to show what's possible with <code>thing/geom</code>. The Clojure code is near instantaneous, export is immediate. However, running on a <b>Core M-5Y10c</b>, the final <code>437kb</code> SVG string took a few minute to insert into the <code>#+RESULTS</code> block (I suspect an issue in orgmode itself).
</p>
<p>
So this might be pushing the limits of waht you wanna do :)
</p>
<p>
Code from: <a href="https://github.com/thi-ng/geom/blob/master/geom-svg/src/examples.org">https://github.com/thi-ng/geom/blob/master/geom-svg/src/examples.org</a>
</p>
<div class="org-src-container">
<pre class="src src-clojure"> (require
'[thi.ng.geom.core <span style="color: #008b8b;">:as</span> g]
'[thi.ng.geom.vector <span style="color: #008b8b;">:refer</span> [vec3]]
'[thi.ng.geom.matrix <span style="color: #008b8b;">:as</span> mat]
'[thi.ng.geom.circle <span style="color: #008b8b;">:as</span> c]
'[thi.ng.geom.polygon <span style="color: #008b8b;">:as</span> p]
'[thi.ng.geom.gmesh <span style="color: #008b8b;">:as</span> gm]
'[thi.ng.geom.mesh.subdivision <span style="color: #008b8b;">:as</span> sd]
'[thi.ng.geom.svg.core <span style="color: #008b8b;">:as</span> svg]
'[thi.ng.geom.svg.shaders <span style="color: #008b8b;">:as</span> shader]
'[thi.ng.geom.svg.renderer <span style="color: #008b8b;">:as</span> render]
'[thi.ng.math.core <span style="color: #008b8b;">:as</span> m])
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">width</span> 640)
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">height</span> 480)
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">model</span> (<span style="color: #228b22;">g</span>/rotate-y (<span style="color: #228b22;">mat</span>/matrix44) <span style="color: #228b22;">m</span>/SIXTH_PI))
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">view</span> (apply <span style="color: #228b22;">mat</span>/look-at (<span style="color: #228b22;">mat</span>/look-at-vectors 0 1.75 0.75 0 0 0)))
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">proj</span> (<span style="color: #228b22;">mat</span>/perspective 60 (/ width height) 0.1 10))
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">mvp</span> (<span style="color: #a020f0;">->></span> model (<span style="color: #228b22;">m</span>/* view) (<span style="color: #228b22;">m</span>/* proj)))
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">diffuse</span> (<span style="color: #228b22;">shader</span>/normal-rgb (<span style="color: #228b22;">g</span>/rotate-y (<span style="color: #228b22;">mat</span>/matrix44) <span style="color: #228b22;">m</span>/PI)))
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">uniforms</span> {<span style="color: #008b8b;">:stroke</span> <span style="color: #8b2252;">"white"</span> <span style="color: #008b8b;">:stroke-width</span> 0.25})
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">shader-diffuse</span>
(<span style="color: #228b22;">shader</span>/shader
{<span style="color: #008b8b;">:fill</span> diffuse
<span style="color: #008b8b;">:uniforms</span> uniforms
<span style="color: #008b8b;">:flags</span> {<span style="color: #008b8b;">:solid</span> <span style="color: #008b8b;">true</span>}}))
(<span style="color: #a020f0;">defn</span> <span style="color: #0000ff;">ring</span>
[res radius depth wall]
(<span style="color: #a020f0;">-></span> (<span style="color: #228b22;">c</span>/circle radius)
(<span style="color: #228b22;">g</span>/as-polygon res)
(<span style="color: #228b22;">g</span>/extrude-shell {<span style="color: #008b8b;">:depth</span> depth <span style="color: #008b8b;">:wall</span> wall <span style="color: #008b8b;">:inset</span> -0.1 <span style="color: #008b8b;">:mesh</span> (<span style="color: #228b22;">gm</span>/gmesh)})
(<span style="color: #228b22;">g</span>/center)))
(<span style="color: #a020f0;">def</span> <span style="color: #a0522d;">mesh</span>
(<span style="color: #a020f0;">->></span> [[1 0.25 0.15] [0.75 0.35 0.1] [0.5 0.5 0.05] [0.25 0.75 0.05]]
(map (partial apply ring 40))
(reduce <span style="color: #228b22;">g</span>/into)
(<span style="color: #228b22;">sd</span>/catmull-clark)
(<span style="color: #228b22;">sd</span>/catmull-clark)))
<span style="color: #b22222;">;; </span><span style="color: #b22222;">2d text label w/ projected anchor point</span>
(<span style="color: #a020f0;">defn</span> <span style="color: #0000ff;">label-3d</span>
[p mvp screen [l1 l2]]
(<span style="color: #a020f0;">let</span> [p' (<span style="color: #228b22;">mat</span>/project-point p mvp screen)
p2' (<span style="color: #228b22;">mat</span>/project-point (<span style="color: #228b22;">m</span>/+ p 0 0 0.2) mvp screen)
p3' (<span style="color: #228b22;">m</span>/+ p2' 100 0)]
(<span style="color: #228b22;">svg</span>/group
{<span style="color: #008b8b;">:fill</span> <span style="color: #8b2252;">"black"</span>
<span style="color: #008b8b;">:font-family</span> <span style="color: #8b2252;">"Arial"</span>
<span style="color: #008b8b;">:font-size</span> 12
<span style="color: #008b8b;">:text-anchor</span> <span style="color: #8b2252;">"end"</span>}
(<span style="color: #228b22;">svg</span>/circle p' 2 <span style="color: #008b8b;">nil</span>)
(<span style="color: #228b22;">svg</span>/line-strip [p' p2' p3'] {<span style="color: #008b8b;">:stroke</span> <span style="color: #8b2252;">"black"</span>})
(<span style="color: #228b22;">svg</span>/text (<span style="color: #228b22;">m</span>/+ p3' 0 -5) l1 {})
(<span style="color: #228b22;">svg</span>/text (<span style="color: #228b22;">m</span>/+ p3' 0 12) l2 {<span style="color: #008b8b;">:font-weight</span> <span style="color: #8b2252;">"bold"</span>}))))
</pre>
</div>
<div class="org-src-container">
<pre class="src src-clojure">(<span style="color: #a020f0;">let</span> [screen (<span style="color: #228b22;">mat</span>/viewport-matrix width height)
max-z (/ 0.75 2)]
(<span style="color: #a020f0;">->></span> (<span style="color: #228b22;">svg</span>/svg
{<span style="color: #008b8b;">:width</span> width <span style="color: #008b8b;">:height</span> height}
(<span style="color: #228b22;">render</span>/mesh mesh mvp screen shader-diffuse)
(label-3d (vec3 0 0 max-z) mvp screen [<span style="color: #8b2252;">"Shader"</span> <span style="color: #8b2252;">"Normal/RGB"</span>]))
(<span style="color: #228b22;">svg</span>/serialize)
symbol))
</pre>
</div>
<?xml version="1.0"?>
<svg height="480" version="1.1" width="640" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns="http://www.w3.org/2000/svg"><g stroke-width="0.25" stroke="white"><polygon fill="#869e04" points="353.98,298.26 358.97,295.12 357.82,293.44 352.94,296.51" /><polygon fill="#859e04" points="348.04,299.54 348.97,301.36 353.98,298.26 352.94,296.51" /><polygon fill="#879d04" points="357.82,293.44 358.97,295.12 363.93,291.94 362.67,290.33" /><polygon fill="#849e04" points="343.94,304.42 348.97,301.36 348.04,299.54 343.11,302.54" /><polygon fill="#889d04" points="363.93,291.94 368.87,288.73 367.51,287.19 362.67,290.33" /><polygon fill="#839e04" points="338.16,305.50 338.88,307.45 343.94,304.42 343.11,302.54" /><polygon fill="#8a9d04" points="367.51,287.19 368.87,288.73 373.79,285.48 372.31,284.00" /><polygon fill="#88a5f9" points="338.97,264.01 338.96,263.88 334.42,266.74 334.51,266.82" /><polygon fill="#86a5f9" points="334.42,266.74 329.85,269.55 330.02,269.58 334.51,266.82" /><polygon fill="#89a4f9" points="343.47,260.98 338.96,263.88 338.97,264.01 343.39,261.15" /><polygon fill="#85a5f9" points="330.02,269.58 329.85,269.55 325.25,272.32 325.51,272.29" /><polygon fill="#8ba4f9" points="347.79,258.25 347.94,258.02 343.47,260.98 343.39,261.15" /><polygon fill="#819e04" points="333.80,310.44 338.88,307.45 338.16,305.50 333.19,308.42" /><polygon fill="#8b9c04" points="373.79,285.48 378.68,282.19 377.10,280.78 372.31,284.00" /><polygon fill="#83a5f9" points="325.25,272.32 320.62,275.03 320.96,274.95 325.51,272.29" /><polygon fill="#8ca3f9" points="352.39,255.02 347.94,258.02 347.79,258.25 352.15,255.30" /><polygon fill="#809e04" points="328.20,311.31 328.70,313.39 333.80,310.44 333.19,308.42" /><polygon fill="#82a5f9" points="320.96,274.95 320.62,275.03 315.97,277.69 316.39,277.57" /><polygon fill="#8c9c04" points="377.10,280.78 378.68,282.19 383.55,278.87 381.86,277.53" /><polygon fill="#8da3f9" points="356.49,252.30 356.80,251.97 352.39,255.02 352.15,255.30" /><polygon fill="#80a6f9" points="315.97,277.69 311.28,280.30 311.79,280.13 316.39,277.57" /><polygon fill="#8fc818" points="357.82,293.44 355.38,289.72 350.62,292.72 352.94,296.51" /><polygon fill="#7f9e04" points="323.57,316.31 328.70,313.39 328.20,311.31 323.18,314.15" /><polygon fill="#8fa2f9" points="361.18,248.87 356.80,251.97 356.49,252.30 360.78,249.26" /><polygon fill="#8dc818" points="350.62,292.72 345.84,295.67 348.04,299.54 352.94,296.51" /><polygon fill="#92c718" points="360.11,286.69 355.38,289.72 357.82,293.44 362.67,290.33" /><polygon fill="#8d9b04" points="383.55,278.87 388.40,275.51 386.60,274.23 381.86,277.53" /><polygon fill="#8ac918" points="348.04,299.54 345.84,295.67 341.04,298.59 343.11,302.54" /><polygon fill="#95c618" points="367.51,287.19 364.82,283.62 360.11,286.69 362.67,290.33" /><polygon fill="#7fa6f9" points="311.79,280.13 311.28,280.30 306.57,282.86 307.16,282.64" /><polygon fill="#87c918" points="341.04,298.59 336.21,301.47 338.16,305.50 343.11,302.54" /><polygon fill="#97eac1" points="336.03,269.20 340.45,266.42 338.97,264.01 334.51,266.82" /><polygon fill="#98c618" points="369.50,280.52 364.82,283.62 367.51,287.19 372.31,284.00" /><polygon fill="#93ebc1" points="330.02,269.58 331.57,271.94 336.03,269.20 334.51,266.82" /><polygon fill="#9be9c1" points="338.97,264.01 340.45,266.42 344.84,263.58 343.39,261.15" /><polygon fill="#90a2f9" points="365.05,246.17 365.52,245.72 361.18,248.87 360.78,249.26" /><polygon fill="#8eecc1" points="327.10,274.63 331.57,271.94 330.02,269.58 325.51,272.29" /><polygon fill="#7e9e04" points="318.14,316.96 318.42,319.19 323.57,316.31 323.18,314.15" /><polygon fill="#9fe8c1" points="344.84,263.58 349.20,260.71 347.79,258.25 343.39,261.15" /><polygon fill="#84ca18" points="338.16,305.50 336.21,301.47 331.36,304.31 333.19,308.42" /><polygon fill="#8e9b04" points="386.60,274.23 388.40,275.51 393.22,272.10 391.31,270.90" /><polygon fill="#9bc518" points="377.10,280.78 374.16,277.37 369.50,280.52 372.31,284.00" /><polygon fill="#8aecc1" points="320.96,274.95 322.59,277.28 327.10,274.63 325.51,272.29" /><polygon fill="#a3e7c1" points="347.79,258.25 349.20,260.71 353.53,257.78 352.15,255.30" /><polygon fill="#7da5f9" points="306.57,282.86 301.82,285.37 302.51,285.10 307.16,282.64" /><polygon fill="#91a1f9" points="369.83,242.52 365.52,245.72 365.05,246.17 369.28,243.04" /><polygon fill="#86edc1" points="318.06,279.87 322.59,277.28 320.96,274.95 316.39,277.57" /><polygon fill="#81ca18" points="331.36,304.31 326.49,307.11 328.20,311.31 333.19,308.42" /><polygon fill="#a7e5c1" points="353.53,257.78 357.83,254.82 356.49,252.30 352.15,255.30" /><polygon fill="#9dc318" points="378.79,274.19 374.16,277.37 377.10,280.78 381.86,277.53" /><polygon fill="#95e332" points="350.62,292.72 355.38,289.72 351.71,284.06 347.08,286.98" /><polygon fill="#91e332" points="342.43,289.86 345.84,295.67 350.62,292.72 347.08,286.98" /><polygon fill="#99e232" points="351.71,284.06 355.38,289.72 360.11,286.69 356.32,281.11" /><polygon fill="#7c9e04" points="313.24,322.03 318.42,319.19 318.14,316.96 313.07,319.73" /><polygon fill="#8de432" points="341.04,298.59 345.84,295.67 342.43,289.86 337.75,292.69" /><polygon fill="#9de132" points="360.11,286.69 364.82,283.62 360.90,278.11 356.32,281.11" /><polygon fill="#82edc1" points="311.79,280.13 313.50,282.42 318.06,279.87 316.39,277.57" /><polygon fill="#8f9a04" points="393.22,272.10 398.02,268.66 396.00,267.53 391.31,270.90" /><polygon fill="#9bfc7a" points="343.53,271.29 340.45,266.42 336.03,269.20 339.08,274.09" /><polygon fill="#abe4c1" points="356.49,252.30 357.83,254.82 362.10,251.81 360.78,249.26" /><polygon fill="#96fd7a" points="336.03,269.20 331.57,271.94 334.61,276.85 339.08,274.09" /><polygon fill="#7ca5f9" points="302.51,285.10 301.82,285.37 297.06,287.82 297.83,287.51" /><polygon fill="#a0fb7a" points="344.84,263.58 340.45,266.42 343.53,271.29 347.95,268.44" /><polygon fill="#7eca18" points="328.20,311.31 326.49,307.11 321.60,309.87 323.18,314.15" /><polygon fill="#89e532" points="333.04,295.49 336.21,301.47 341.04,298.59 337.75,292.69" /><polygon fill="#a1df32" points="360.90,278.11 364.82,283.62 369.50,280.52 365.46,275.08" /><polygon fill="#91fe7a" points="334.61,276.85 331.57,271.94 327.10,274.63 330.10,279.56" /><polygon fill="#a4f97a" points="352.34,265.55 349.20,260.71 344.84,263.58 347.95,268.44" /><polygon fill="#a0c218" points="386.60,274.23 383.40,270.97 378.79,274.19 381.86,277.53" /><polygon fill="#93a0f9" points="373.47,239.86 374.10,239.28 369.83,242.52 369.28,243.04" /><polygon fill="#8cfe7a" points="327.10,274.63 322.59,277.28 325.57,282.23 330.10,279.56" /><polygon fill="#85e532" points="331.36,304.31 336.21,301.47 333.04,295.49 328.31,298.24" /><polygon fill="#98ef47" points="351.71,284.06 347.53,277.54 343.00,280.39 347.08,286.98" /><polygon fill="#7dedc1" points="308.91,284.92 313.50,282.42 311.79,280.13 307.16,282.64" /><polygon fill="#94f047" points="343.00,280.39 338.45,283.20 342.43,289.86 347.08,286.98" /><polygon fill="#a9f87a" points="353.53,257.78 349.20,260.71 352.34,265.55 356.71,262.62" /><polygon fill="#9cee47" points="352.02,274.65 347.53,277.54 351.71,284.06 356.32,281.11" /><polygon fill="#a5de32" points="369.50,280.52 374.16,277.37 369.98,272.00 365.46,275.08" /><polygon fill="#9af75b" points="343.00,280.39 347.53,277.54 343.53,271.29 339.08,274.09" /><polygon fill="#afe2c1" points="362.10,251.81 366.33,248.75 365.05,246.17 360.78,249.26" /><polygon fill="#95f85b" points="334.61,276.85 338.45,283.20 343.00,280.39 339.08,274.09" /><polygon fill="#8ff047" points="342.43,289.86 338.45,283.20 333.88,285.96 337.75,292.69" /><polygon fill="#9ef65b" points="343.53,271.29 347.53,277.54 352.02,274.65 347.95,268.44" /><polygon fill="#a1ed47" points="360.90,278.11 356.49,271.72 352.02,274.65 356.32,281.11" /><polygon fill="#7b9e04" points="307.98,322.46 308.04,324.83 313.24,322.03 313.07,319.73" /><polygon fill="#90f85b" points="333.88,285.96 338.45,283.20 334.61,276.85 330.10,279.56" /><polygon fill="#87ff7a" points="325.57,282.23 322.59,277.28 318.06,279.87 321.02,284.85" /><polygon fill="#7bca18" points="321.60,309.87 316.68,312.59 318.14,316.96 323.18,314.15" /><polygon fill="#a3f45b" points="352.02,274.65 356.49,271.72 352.34,265.55 347.95,268.44" /><polygon fill="#aef67a" points="361.04,259.64 357.83,254.82 353.53,257.78 356.71,262.62" /><polygon fill="#8bf147" points="333.88,285.96 329.28,288.69 333.04,295.49 337.75,292.69" /><polygon fill="#7aa5f9" points="297.06,287.82 292.26,290.22 293.12,289.87 297.83,287.51" /><polygon fill="#81e532" points="323.56,300.96 326.49,307.11 331.36,304.31 328.31,298.24" /><polygon fill="#909a04" points="396.00,267.53 398.02,268.66 402.79,265.18 400.66,264.12" /><polygon fill="#a5eb47" points="360.94,268.75 356.49,271.72 360.90,278.11 365.46,275.08" /><polygon fill="#a2c118" points="387.97,267.71 383.40,270.97 386.60,274.23 391.31,270.90" /><polygon fill="#8bf95b" points="325.57,282.23 329.28,288.69 333.88,285.96 330.10,279.56" /><polygon fill="#a8dd32" points="369.98,272.00 374.16,277.37 378.79,274.19 374.48,268.89" /><polygon fill="#a8f35b" points="352.34,265.55 356.49,271.72 360.94,268.75 356.71,262.62" /><polygon fill="#79edc1" points="302.51,285.10 304.30,287.37 308.91,284.92 307.16,282.64" /><polygon fill="#94a0f9" points="378.34,235.99 374.10,239.28 373.47,239.86 377.62,236.63" /><polygon fill="#82ff7a" points="318.06,279.87 313.50,282.42 316.44,287.43 321.02,284.85" /><polygon fill="#86f147" points="333.04,295.49 329.28,288.69 324.65,291.36 328.31,298.24" /><polygon fill="#b3e0c1" points="365.05,246.17 366.33,248.75 370.53,245.65 369.28,243.04" /><polygon fill="#b3f47a" points="362.10,251.81 357.83,254.82 361.04,259.64 365.34,256.62" /><polygon fill="#a9ea47" points="369.98,272.00 365.35,265.73 360.94,268.75 365.46,275.08" /><polygon fill="#87f95b" points="324.65,291.36 329.28,288.69 325.57,282.23 321.02,284.85" /><polygon fill="#acf15b" points="360.94,268.75 365.35,265.73 361.04,259.64 356.71,262.62" /><polygon fill="#7ee532" points="321.60,309.87 326.49,307.11 323.56,300.96 318.78,303.63" /><polygon fill="#78c918" points="318.14,316.96 316.68,312.59 311.74,315.27 313.07,319.73" /><polygon fill="#acdb32" points="378.79,274.19 383.40,270.97 378.96,265.74 374.48,268.89" /><polygon fill="#82f247" points="324.65,291.36 320.00,294.00 323.56,300.96 328.31,298.24" /><polygon fill="#7a9e04" points="302.81,327.59 308.04,324.83 307.98,322.46 302.87,325.15" /><polygon fill="#7dff7a" points="316.44,287.43 313.50,282.42 308.91,284.92 311.83,289.95" /><polygon fill="#82fa5b" points="316.44,287.43 320.00,294.00 324.65,291.36 321.02,284.85" /><polygon fill="#a5bf18" points="396.00,267.53 392.53,264.41 387.97,267.71 391.31,270.90" /><polygon fill="#ade847" points="369.73,262.68 365.35,265.73 369.98,272.00 374.48,268.89" /><polygon fill="#75ecc1" points="299.67,289.77 304.30,287.37 302.51,285.10 297.83,287.51" /><polygon fill="#79a5f9" points="293.12,289.87 292.26,290.22 287.44,292.57 288.39,292.17" /><polygon fill="#b7f27a" points="369.61,253.56 366.33,248.75 362.10,251.81 365.34,256.62" /><polygon fill="#b0ef5b" points="361.04,259.64 365.35,265.73 369.73,262.68 365.34,256.62" /><polygon fill="#919904" points="402.79,265.18 407.55,261.66 405.29,260.67 400.66,264.12" /><polygon fill="#b7dec1" points="370.53,245.65 374.69,242.50 373.47,239.86 369.28,243.04" /><polygon fill="#959ff9" points="381.74,233.35 382.53,232.65 378.34,235.99 377.62,236.63" /><polygon fill="#7ae532" points="313.98,306.26 316.68,312.59 321.60,309.87 318.78,303.63" /><polygon fill="#7df247" points="323.56,300.96 320.00,294.00 315.33,296.59 318.78,303.63" /><polygon fill="#7dfa5b" points="315.33,296.59 320.00,294.00 316.44,287.43 311.83,289.95" /><polygon fill="#afd932" points="378.96,265.74 383.40,270.97 387.97,267.71 383.40,262.55" /><polygon fill="#78ff7a" points="308.91,284.92 304.30,287.37 307.20,292.43 311.83,289.95" /><polygon fill="#b1e647" points="378.96,265.74 374.09,259.58 369.73,262.68 374.48,268.89" /><polygon fill="#b5ed5b" points="369.73,262.68 374.09,259.58 369.61,253.56 365.34,256.62" /><polygon fill="#75c918" points="311.74,315.27 306.77,317.91 307.98,322.46 313.07,319.73" /><polygon fill="#bcf07a" points="370.53,245.65 366.33,248.75 369.61,253.56 373.84,250.46" /><polygon fill="#71ecc1" points="293.12,289.87 295.01,292.11 299.67,289.77 297.83,287.51" /><polygon fill="#a7be18" points="397.05,261.07 392.53,264.41 396.00,267.53 400.66,264.12" /><polygon fill="#799e04" points="297.73,327.79 297.56,330.31 302.81,327.59 302.87,325.15" /><polygon fill="#badcc1" points="373.47,239.86 374.69,242.50 378.82,239.31 377.62,236.63" /><polygon fill="#79f147" points="315.33,296.59 310.63,299.13 313.98,306.26 318.78,303.63" /><polygon fill="#77a5f9" points="287.44,292.57 282.59,294.86 283.64,294.41 288.39,292.17" /><polygon fill="#76e532" points="311.74,315.27 316.68,312.59 313.98,306.26 309.16,308.84" /><polygon fill="#78f95b" points="307.20,292.43 310.63,299.13 315.33,296.59 311.83,289.95" /><polygon fill="#b5e447" points="378.41,256.44 374.09,259.58 378.96,265.74 383.40,262.55" /><polygon fill="#73fe7a" points="307.20,292.43 304.30,287.37 299.67,289.77 302.55,294.86" /><polygon fill="#b3d732" points="387.97,267.71 392.53,264.41 387.82,259.32 383.40,262.55" /><polygon fill="#b9eb5b" points="369.61,253.56 374.09,259.58 378.41,256.44 373.84,250.46" /><polygon fill="#969ef9" points="386.69,229.27 382.53,232.65 381.74,233.35 385.82,230.03" /><polygon fill="#929804" points="405.29,260.67 407.55,261.66 412.27,258.10 409.90,257.18" /><polygon fill="#c0ed7a" points="378.04,247.31 374.69,242.50 370.53,245.65 373.84,250.46" /><polygon fill="#72c818" points="307.98,322.46 306.77,317.91 301.79,320.51 302.87,325.15" /><polygon fill="#6cebc1" points="290.33,294.40 295.01,292.11 293.12,289.87 288.39,292.17" /><polygon fill="#74f147" points="313.98,306.26 310.63,299.13 305.91,301.63 309.16,308.84" /><polygon fill="#74f95b" points="305.91,301.63 310.63,299.13 307.20,292.43 302.55,294.86" /><polygon fill="#aabc18" points="405.29,260.67 401.55,257.70 397.05,261.07 400.66,264.12" /><polygon fill="#72e432" points="304.32,311.38 306.77,317.91 311.74,315.27 309.16,308.84" /><polygon fill="#bed9c1" points="378.82,239.31 382.90,236.08 381.74,233.35 377.62,236.63" /><polygon fill="#b9e247" points="387.82,259.32 382.70,253.27 378.41,256.44 383.40,262.55" /><polygon fill="#bde95b" points="378.41,256.44 382.70,253.27 378.04,247.31 373.84,250.46" /><polygon fill="#6efe7a" points="299.67,289.77 295.01,292.11 297.87,297.24 302.55,294.86" /><polygon fill="#76a4f9" points="283.64,294.41 282.59,294.86 277.72,297.09 278.86,296.60" /><polygon fill="#b6d532" points="387.82,259.32 392.53,264.41 397.05,261.07 392.20,256.05" /><polygon fill="#789d04" points="292.28,332.99 297.56,330.31 297.73,327.79 292.57,330.40" /><polygon fill="#c4eb7a" points="378.82,239.31 374.69,242.50 378.04,247.31 382.21,244.12" /><polygon fill="#989df9" points="389.85,226.67 390.80,225.83 386.69,229.27 385.82,230.03" /><polygon fill="#939704" points="412.27,258.10 416.97,254.50 414.48,253.66 409.90,257.18" /><polygon fill="#70f047" points="305.91,301.63 301.17,304.08 304.32,311.38 309.16,308.84" /><polygon fill="#6ff85b" points="297.87,297.24 301.17,304.08 305.91,301.63 302.55,294.86" /><polygon fill="#70c818" points="301.79,320.51 296.78,323.06 297.73,327.79 302.87,325.15" /><polygon fill="#68eac1" points="283.64,294.41 285.62,296.64 290.33,294.40 288.39,292.17" /><polygon fill="#bde047" points="386.96,250.05 382.70,253.27 387.82,259.32 392.20,256.05" /><polygon fill="#c1e65b" points="378.04,247.31 382.70,253.27 386.96,250.05 382.21,244.12" /><polygon fill="#6ee332" points="301.79,320.51 306.77,317.91 304.32,311.38 299.46,313.88" /><polygon fill="#69fd7a" points="297.87,297.24 295.01,292.11 290.33,294.40 293.18,299.57" /><polygon fill="#c2d7c1" points="381.74,233.35 382.90,236.08 386.95,232.80 385.82,230.03" /><polygon fill="#acbb18" points="406.01,254.29 401.55,257.70 405.29,260.67 409.90,257.18" /><polygon fill="#bad332" points="397.05,261.07 401.55,257.70 396.55,252.74 392.20,256.05" /><polygon fill="#c8e87a" points="386.34,240.89 382.90,236.08 378.82,239.31 382.21,244.12" /><polygon fill="#74a4f9" points="277.72,297.09 272.82,299.26 274.06,298.73 278.86,296.60" /><polygon fill="#6bf047" points="304.32,311.38 301.17,304.08 296.40,306.48 299.46,313.88" /><polygon fill="#6af85b" points="296.40,306.48 301.17,304.08 297.87,297.24 293.18,299.57" /><polygon fill="#779d04" points="287.39,332.96 286.98,335.63 292.28,332.99 292.57,330.40" /><polygon fill="#999cf9" points="394.88,222.35 390.80,225.83 389.85,226.67 393.84,223.26" /><polygon fill="#c1dd47" points="396.55,252.74 391.18,246.79 386.96,250.05 392.20,256.05" /><polygon fill="#c5e45b" points="386.96,250.05 391.18,246.79 386.34,240.89 382.21,244.12" /><polygon fill="#64e9c1" points="280.90,298.82 285.62,296.64 283.64,294.41 278.86,296.60" /><polygon fill="#6dc718" points="297.73,327.79 296.78,323.06 291.75,325.57 292.57,330.40" /><polygon fill="#949704" points="414.48,253.66 416.97,254.50 421.64,250.86 419.03,250.09" /><polygon fill="#6ae332" points="294.57,316.33 296.78,323.06 301.79,320.51 299.46,313.88" /><polygon fill="#64fc7a" points="290.33,294.40 285.62,296.64 288.46,301.85 293.18,299.57" /><polygon fill="#c5d4c1" points="386.95,232.80 390.96,229.48 389.85,226.67 385.82,230.03" /><polygon fill="#afb918" points="414.48,253.66 410.45,250.84 406.01,254.29 409.90,257.18" /><polygon fill="#cce57a" points="386.95,232.80 382.90,236.08 386.34,240.89 390.43,237.62" /><polygon fill="#bdd032" points="396.55,252.74 401.55,257.70 406.01,254.29 400.87,249.39" /><polygon fill="#67ef47" points="296.40,306.48 291.62,308.83 294.57,316.33 299.46,313.88" /><polygon fill="#65f75b" points="288.46,301.85 291.62,308.83 296.40,306.48 293.18,299.57" /><polygon fill="#73a3f9" points="274.06,298.73 272.82,299.26 267.90,301.37 269.24,300.80" /><polygon fill="#c9e15b" points="386.34,240.89 391.18,246.79 395.37,243.49 390.43,237.62" /><polygon fill="#c4da47" points="395.37,243.49 391.18,246.79 396.55,252.74 400.87,249.39" /><polygon fill="#60e8c1" points="274.06,298.73 276.15,300.94 280.90,298.82 278.86,296.60" /><polygon fill="#759d04" points="281.65,338.22 286.98,335.63 287.39,332.96 282.18,335.48" /><polygon fill="#5ffb7a" points="288.46,301.85 285.62,296.64 280.90,298.82 283.72,304.07" /><polygon fill="#66e232" points="291.75,325.57 296.78,323.06 294.57,316.33 289.66,318.73" /><polygon fill="#6ac618" points="291.75,325.57 286.70,328.03 287.39,332.96 292.57,330.40" /><polygon fill="#c8d1c1" points="389.85,226.67 390.96,229.48 394.92,226.11 393.84,223.26" /><polygon fill="#d0e27a" points="394.48,234.30 390.96,229.48 386.95,232.80 390.43,237.62" /><polygon fill="#959604" points="421.64,250.86 426.28,247.17 423.55,246.48 419.03,250.09" /><polygon fill="#c0ce32" points="406.01,254.29 410.45,250.84 405.16,246.00 400.87,249.39" /><polygon fill="#b1b718" points="414.85,247.35 410.45,250.84 414.48,253.66 419.03,250.09" /><polygon fill="#61f65b" points="286.81,311.13 291.62,308.83 288.46,301.85 283.72,304.07" /><polygon fill="#63ee47" points="294.57,316.33 291.62,308.83 286.81,311.13 289.66,318.73" /><polygon fill="#cdde5b" points="395.37,243.49 399.52,240.15 394.48,234.30 390.43,237.62" /><polygon fill="#c8d847" points="405.16,246.00 399.52,240.15 395.37,243.49 400.87,249.39" /><polygon fill="#5bf97a" points="280.90,298.82 276.15,300.94 278.96,306.24 283.72,304.07" /><polygon fill="#5ce7c1" points="271.38,303.01 276.15,300.94 274.06,298.73 269.24,300.80" /><polygon fill="#62e132" points="284.74,321.08 286.70,328.03 291.75,325.57 289.66,318.73" /><polygon fill="#d4df7a" points="394.92,226.11 390.96,229.48 394.48,234.30 398.49,230.95" /><polygon fill="#749c04" points="276.96,337.95 276.30,340.77 281.65,338.22 282.18,335.48" /><polygon fill="#67c618" points="287.39,332.96 286.70,328.03 281.63,330.45 282.18,335.48" /><polygon fill="#cbcec1" points="394.92,226.11 398.84,222.70 397.78,219.80 393.84,223.26" /><polygon fill="#c3cb32" points="405.16,246.00 410.45,250.84 414.85,247.35 409.41,242.58" /><polygon fill="#5cf45b" points="278.96,306.24 281.99,313.38 286.81,311.13 283.72,304.07" /><polygon fill="#5eed47" points="286.81,311.13 281.99,313.38 284.74,321.08 289.66,318.73" /><polygon fill="#969504" points="423.55,246.48 426.28,247.17 430.90,243.45 428.04,242.84" /><polygon fill="#b3b518" points="423.55,246.48 419.22,243.82 414.85,247.35 419.03,250.09" /><polygon fill="#d1db5b" points="394.48,234.30 399.52,240.15 403.63,236.77 398.49,230.95" /><polygon fill="#cbd547" points="403.63,236.77 399.52,240.15 405.16,246.00 409.41,242.58" /><polygon fill="#56f87a" points="278.96,306.24 276.15,300.94 271.38,303.01 274.18,308.35" /><polygon fill="#58e5c1" points="264.40,302.80 266.60,305.01 271.38,303.01 269.24,300.80" /><polygon fill="#5edf32" points="281.63,330.45 286.70,328.03 284.74,321.08 279.79,323.38" /><polygon fill="#d8db7a" points="402.45,227.55 398.84,222.70 394.92,226.11 398.49,230.95" /><polygon fill="#cecbc1" points="397.78,219.80 398.84,222.70 402.71,219.25 401.68,216.30" /><polygon fill="#c6c932" points="414.85,247.35 419.22,243.82 413.62,239.11 409.41,242.58" /><polygon fill="#64c518" points="281.63,330.45 276.54,332.81 276.96,337.95 282.18,335.48" /><polygon fill="#57f35b" points="277.14,315.58 281.99,313.38 278.96,306.24 274.18,308.35" /><polygon fill="#739c04" points="270.92,343.27 276.30,340.77 276.96,337.95 271.71,340.37" /><polygon fill="#5aeb47" points="284.74,321.08 281.99,313.38 277.14,315.58 279.79,323.38" /><polygon fill="#b5b318" points="423.56,240.25 419.22,243.82 423.55,246.48 428.04,242.84" /><polygon fill="#d4d85b" points="403.63,236.77 407.70,233.35 402.45,227.55 398.49,230.95" /><polygon fill="#cfd247" points="413.62,239.11 407.70,233.35 403.63,236.77 409.41,242.58" /><polygon fill="#979404" points="430.90,243.45 435.48,239.68 432.49,239.15 428.04,242.84" /><polygon fill="#51f67a" points="271.38,303.01 266.60,305.01 269.38,310.41 274.18,308.35" /><polygon fill="#54e4c1" points="261.79,306.95 266.60,305.01 264.40,302.80 259.54,304.74" /><polygon fill="#5ade32" points="274.83,325.63 276.54,332.81 281.63,330.45 279.79,323.38" /><polygon fill="#dbd87a" points="402.71,219.25 398.84,222.70 402.45,227.55 406.37,224.11" /><polygon fill="#d1c8c1" points="402.71,219.25 406.53,215.76 405.53,212.75 401.68,216.30" /><polygon fill="#c9c632" points="413.62,239.11 419.22,243.82 423.56,240.25 417.79,235.61" /><polygon fill="#53f15b" points="269.38,310.41 272.28,317.72 277.14,315.58 274.18,308.35" /><polygon fill="#56ea47" points="277.14,315.58 272.28,317.72 274.83,325.63 279.79,323.38" /><polygon fill="#62c318" points="276.96,337.95 276.54,332.81 271.42,335.13 271.71,340.37" /><polygon fill="#8fc7e8" points="329.89,250.70 329.45,249.92 325.76,252.25 326.25,252.99" /><polygon fill="#8cc8e8" points="325.76,252.25 322.04,254.54 322.59,255.24 326.25,252.99" /><polygon fill="#92c6e8" points="333.12,247.55 329.45,249.92 329.89,250.70 333.50,248.36" /><polygon fill="#d8d45b" points="402.45,227.55 407.70,233.35 411.73,229.89 406.37,224.11" /><polygon fill="#729b04" points="266.44,342.74 265.52,345.73 270.92,343.27 271.71,340.37" /><polygon fill="#8ac8e8" points="322.59,255.24 322.04,254.54 318.29,256.77 318.90,257.44" /><polygon fill="#d2cf47" points="411.73,229.89 407.70,233.35 413.62,239.11 417.79,235.61" /><polygon fill="#95c6e8" points="337.08,245.98 336.75,245.14 333.12,247.55 333.50,248.36" /><polygon fill="#b7b118" points="432.49,239.15 427.85,236.64 423.56,240.25 428.04,242.84" /><polygon fill="#87c8e8" points="318.29,256.77 314.52,258.96 315.19,259.60 318.90,257.44" /><polygon fill="#97c5e8" points="340.35,242.68 336.75,245.14 337.08,245.98 340.62,243.56" /><polygon fill="#4cf47a" points="269.38,310.41 266.60,305.01 261.79,306.95 264.57,312.40" /><polygon fill="#979304" points="432.49,239.15 435.48,239.68 440.03,235.87 436.91,235.42" /><polygon fill="#84c9e8" points="315.19,259.60 314.52,258.96 310.72,261.10 311.45,261.71" /><polygon fill="#9ac4e8" points="344.14,241.10 343.92,240.18 340.35,242.68 340.62,243.56" /><polygon fill="#50e2c1" points="254.66,306.62 256.97,308.83 261.79,306.95 259.54,304.74" /><polygon fill="#dfd47a" points="410.25,220.63 406.53,215.76 402.71,219.25 406.37,224.11" /><polygon fill="#57dd32" points="271.42,335.13 276.54,332.81 274.83,325.63 269.84,327.83" /><polygon fill="#81c9e8" points="310.72,261.10 306.90,263.19 307.69,263.77 311.45,261.71" /><polygon fill="#9dc3e8" points="347.46,237.63 343.92,240.18 344.14,241.10 347.62,238.60" /><polygon fill="#4fef5b" points="267.40,319.80 272.28,317.72 269.38,310.41 264.57,312.40" /><polygon fill="#d4c5c1" points="405.53,212.75 406.53,215.76 410.30,212.22 409.32,209.16" /><polygon fill="#cbc332" points="423.56,240.25 427.85,236.64 421.92,232.06 417.79,235.61" /><polygon fill="#52e847" points="274.83,325.63 272.28,317.72 267.40,319.80 269.84,327.83" /><polygon fill="#7ec9e8" points="307.69,263.77 306.90,263.19 303.06,265.23 303.91,265.78" /><polygon fill="#9afa97" points="328.77,256.98 332.39,254.70 329.89,250.70 326.25,252.99" /><polygon fill="#96fb97" points="322.59,255.24 325.11,259.23 328.77,256.98 326.25,252.99" /><polygon fill="#9ff997" points="329.89,250.70 332.39,254.70 335.99,252.37 333.50,248.36" /><polygon fill="#9fc1e8" points="351.06,236.06 350.95,235.05 347.46,237.63 347.62,238.60" /><polygon fill="#5fc218" points="271.42,335.13 266.29,337.40 266.44,342.74 271.71,340.37" /><polygon fill="#91fc97" points="321.43,261.43 325.11,259.23 322.59,255.24 318.90,257.44" /><polygon fill="#dbd15b" points="411.73,229.89 415.71,226.39 410.25,220.63 406.37,224.11" /><polygon fill="#a4f797" points="335.99,252.37 339.57,250.00 337.08,245.98 333.50,248.36" /><polygon fill="#d5cb47" points="421.92,232.06 415.71,226.39 411.73,229.89 417.79,235.61" /><polygon fill="#8cfc97" points="315.19,259.60 317.73,263.58 321.43,261.43 318.90,257.44" /><polygon fill="#a9f697" points="337.08,245.98 339.57,250.00 343.11,247.59 340.62,243.56" /><polygon fill="#8cb70d" points="354.64,298.67 358.87,296.01 357.53,294.00 353.39,296.60" /><polygon fill="#8ab80d" points="349.23,299.18 350.39,301.30 354.64,298.67 353.39,296.60" /><polygon fill="#7bc9e8" points="303.06,265.23 299.20,267.22 300.11,267.74 303.91,265.78" /><polygon fill="#8eb70d" points="357.53,294.00 358.87,296.01 363.07,293.32 361.64,291.36" /><polygon fill="#719b04" points="260.09,348.14 265.52,345.73 266.44,342.74 261.15,345.07" /><polygon fill="#b9af18" points="432.11,232.99 427.85,236.64 432.49,239.15 436.91,235.42" /><polygon fill="#87b80d" points="346.13,303.90 350.39,301.30 349.23,299.18 345.05,301.72" /><polygon fill="#87fd97" points="314.01,265.69 317.73,263.58 315.19,259.60 311.45,261.71" /><polygon fill="#a2c0e8" points="354.41,232.43 350.95,235.05 351.06,236.06 354.46,233.48" /><polygon fill="#90b60d" points="363.07,293.32 367.26,290.60 365.74,288.70 361.64,291.36" /><polygon fill="#48f27a" points="261.79,306.95 256.97,308.83 259.74,314.33 264.57,312.40" /><polygon fill="#adf497" points="343.11,247.59 346.61,245.14 344.14,241.10 340.62,243.56" /><polygon fill="#85b80d" points="340.86,304.23 341.84,306.46 346.13,303.90 345.05,301.72" /><polygon fill="#92b50d" points="365.74,288.70 367.26,290.60 371.43,287.84 369.81,286.00" /><polygon fill="#82fd97" points="307.69,263.77 310.26,267.75 314.01,265.69 311.45,261.71" /><polygon fill="#989204" points="440.03,235.87 444.54,232.01 441.29,231.65 436.91,235.42" /><polygon fill="#b2f297" points="344.14,241.10 346.61,245.14 350.09,242.65 347.62,238.60" /><polygon fill="#e2d07a" points="410.30,212.22 406.53,215.76 410.25,220.63 414.07,217.10" /><polygon fill="#78c8e8" points="300.11,267.74 299.20,267.22 295.33,269.16 296.30,269.64" /><polygon fill="#4ce0c1" points="252.14,310.64 256.97,308.83 254.66,306.62 249.76,308.42" /><polygon fill="#83b80d" points="337.54,309.00 341.84,306.46 340.86,304.23 336.65,306.70" /><polygon fill="#53db32" points="264.84,329.97 266.29,337.40 271.42,335.13 269.84,327.83" /><polygon fill="#9bfb71" points="337.08,262.09 332.39,254.70 328.77,256.98 333.40,264.41" /><polygon fill="#94b50d" points="371.43,287.84 375.57,285.06 373.87,283.28 369.81,286.00" /><polygon fill="#a4bfe8" points="357.83,230.86 357.83,229.76 354.41,232.43 354.46,233.48" /><polygon fill="#96fc71" points="328.77,256.98 325.11,259.23 329.70,266.69 333.40,264.41" /><polygon fill="#9ffa71" points="335.99,252.37 332.39,254.70 337.08,262.09 340.74,259.73" /><polygon fill="#91fd71" points="329.70,266.69 325.11,259.23 321.43,261.43 325.97,268.92" /><polygon fill="#4aed5b" points="259.74,314.33 262.51,321.83 267.40,319.80 264.57,312.40" /><polygon fill="#7dfd97" points="306.50,269.76 310.26,267.75 307.69,263.77 303.91,265.78" /><polygon fill="#a4f971" points="344.36,257.34 339.57,250.00 335.99,252.37 340.74,259.73" /><polygon fill="#b6f097" points="350.09,242.65 353.53,240.13 351.06,236.06 347.62,238.60" /><polygon fill="#81b90d" points="332.43,309.14 333.23,311.50 337.54,309.00 336.65,306.70" /><polygon fill="#d7c2c1" points="410.30,212.22 414.01,208.64 413.06,205.52 409.32,209.16" /><polygon fill="#8cfe71" points="321.43,261.43 317.73,263.58 322.22,271.12 325.97,268.92" /><polygon fill="#4ee647" points="267.40,319.80 262.51,321.83 264.84,329.97 269.84,327.83" /><polygon fill="#cec032" points="421.92,232.06 427.85,236.64 432.11,232.99 426.01,228.48" /><polygon fill="#a9f771" points="343.11,247.59 339.57,250.00 344.36,257.34 347.96,254.90" /><polygon fill="#95e332" points="357.53,294.00 354.23,288.91 350.20,291.44 353.39,296.60" /><polygon fill="#96b40d" points="373.87,283.28 375.57,285.06 379.69,282.25 377.89,280.52" /><polygon fill="#91e332" points="350.20,291.44 346.16,293.94 349.23,299.18 353.39,296.60" /><polygon fill="#99e232" points="358.23,286.34 354.23,288.91 357.53,294.00 361.64,291.36" /><polygon fill="#75c8e8" points="295.33,269.16 291.43,271.04 292.47,271.50 296.30,269.64" /><polygon fill="#8de432" points="349.23,299.18 346.16,293.94 342.10,296.41 345.05,301.72" /><polygon fill="#decd5b" points="410.25,220.63 415.71,226.39 419.65,222.85 414.07,217.10" /><polygon fill="#87fe71" points="322.22,271.12 317.73,263.58 314.01,265.69 318.45,273.27" /><polygon fill="#9de132" points="365.74,288.70 362.21,283.75 358.23,286.34 361.64,291.36" /><polygon fill="#78fd97" points="300.11,267.74 302.72,271.73 306.50,269.76 303.91,265.78" /><polygon fill="#aef571" points="351.53,252.43 346.61,245.14 343.11,247.59 347.96,254.90" /><polygon fill="#a7bde8" points="361.20,227.06 357.83,229.76 357.83,230.86 361.15,228.21" /><polygon fill="#5dc118" points="266.44,342.74 266.29,337.40 261.15,339.61 261.15,345.07" /><polygon fill="#d8c847" points="419.65,222.85 415.71,226.39 421.92,232.06 426.01,228.48" /><polygon fill="#89e432" points="342.10,296.41 338.02,298.84 340.86,304.23 345.05,301.72" /><polygon fill="#7eb90d" points="328.90,313.96 333.23,311.50 332.43,309.14 328.19,311.55" /><polygon fill="#bbee97" points="351.06,236.06 353.53,240.13 356.93,237.57 354.46,233.48" /><polygon fill="#9af962" points="339.20,273.71 342.97,271.33 337.08,262.09 333.40,264.41" /><polygon fill="#a1df32" points="366.17,281.12 362.21,283.75 365.74,288.70 369.81,286.00" /><polygon fill="#95fa62" points="329.70,266.69 335.40,276.05 339.20,273.71 333.40,264.41" /><polygon fill="#9ff862" points="337.08,262.09 342.97,271.33 346.72,268.92 340.74,259.73" /><polygon fill="#98b30d" points="379.69,282.25 383.78,279.42 381.89,277.74 377.89,280.52" /><polygon fill="#82fe71" points="314.01,265.69 310.26,267.75 314.66,275.37 318.45,273.27" /><polygon fill="#90fa62" points="331.58,278.35 335.40,276.05 329.70,266.69 325.97,268.92" /><polygon fill="#a4f662" points="346.72,268.92 350.45,266.47 344.36,257.34 340.74,259.73" /><polygon fill="#b2f471" points="350.09,242.65 346.61,245.14 351.53,252.43 355.06,249.92" /><polygon fill="#85e532" points="340.86,304.23 338.02,298.84 333.92,301.24 336.65,306.70" /><polygon fill="#98f14b" points="350.20,291.44 354.23,288.91 349.03,280.81 345.14,283.27" /><polygon fill="#43f07a" points="259.74,314.33 256.97,308.83 252.14,310.64 254.89,316.20" /><polygon fill="#94f24b" points="341.22,285.69 346.16,293.94 350.20,291.44 345.14,283.27" /><polygon fill="#9df04b" points="349.03,280.81 354.23,288.91 358.23,286.34 352.91,278.33" /><polygon fill="#a4de32" points="373.87,283.28 370.10,278.46 366.17,281.12 369.81,286.00" /><polygon fill="#8cfb62" points="322.22,271.12 327.74,280.61 331.58,278.35 325.97,268.92" /><polygon fill="#99f657" points="349.03,280.81 342.97,271.33 339.20,273.71 345.14,283.27" /><polygon fill="#bbac18" points="441.29,231.65 436.33,229.30 432.11,232.99 436.91,235.42" /><polygon fill="#a8f562" points="344.36,257.34 350.45,266.47 354.14,263.98 347.96,254.90" /><polygon fill="#8ff24b" points="342.10,296.41 346.16,293.94 341.22,285.69 337.28,288.07" /><polygon fill="#95f757" points="339.20,273.71 335.40,276.05 341.22,285.69 345.14,283.27" /><polygon fill="#73fc97" points="298.92,273.64 302.72,271.73 300.11,267.74 296.30,269.64" /><polygon fill="#9ef557" points="346.72,268.92 342.97,271.33 349.03,280.81 352.91,278.33" /><polygon fill="#73c8e8" points="292.47,271.50 291.43,271.04 287.52,272.87 288.63,273.30" /><polygon fill="#a1ee4b" points="358.23,286.34 362.21,283.75 356.76,275.80 352.91,278.33" /><polygon fill="#709a04" points="255.83,347.34 254.64,350.49 260.09,348.14 261.15,345.07" /><polygon fill="#90f757" points="341.22,285.69 335.40,276.05 331.58,278.35 337.28,288.07" /><polygon fill="#7dfe71" points="314.66,275.37 310.26,267.75 306.50,269.76 310.86,277.43" /><polygon fill="#7cb80d" points="323.93,313.92 324.55,316.39 328.90,313.96 328.19,311.55" /><polygon fill="#a3f357" points="356.76,275.80 350.45,266.47 346.72,268.92 352.91,278.33" /><polygon fill="#bfec97" points="356.93,237.57 360.29,234.97 357.83,230.86 354.46,233.48" /><polygon fill="#87fb62" points="323.88,282.83 327.74,280.61 322.22,271.12 318.45,273.27" /><polygon fill="#8bf34b" points="333.32,290.41 338.02,298.84 342.10,296.41 337.28,288.07" /><polygon fill="#81e532" points="333.92,301.24 329.81,303.60 332.43,309.14 336.65,306.70" /><polygon fill="#a9bce8" points="364.43,225.52 364.53,224.33 361.20,227.06 361.15,228.21" /><polygon fill="#b7f171" points="358.56,247.38 353.53,240.13 350.09,242.65 355.06,249.92" /><polygon fill="#a6ed4b" points="356.76,275.80 362.21,283.75 366.17,281.12 360.58,273.25" /><polygon fill="#adf362" points="354.14,263.98 357.81,261.46 351.53,252.43 347.96,254.90" /><polygon fill="#e5cc7a" points="417.84,213.54 414.01,208.64 410.30,212.22 414.07,217.10" /><polygon fill="#9ab20d" points="381.89,277.74 383.78,279.42 387.85,276.55 385.87,274.93" /><polygon fill="#8bf857" points="331.58,278.35 327.74,280.61 333.32,290.41 337.28,288.07" /><polygon fill="#a8dc32" points="374.00,275.77 370.10,278.46 373.87,283.28 377.89,280.52" /><polygon fill="#a7f257" points="354.14,263.98 350.45,266.47 356.76,275.80 360.58,273.25" /><polygon fill="#48dec1" points="244.85,310.16 247.29,312.37 252.14,310.64 249.76,308.42" /><polygon fill="#50d932" points="261.15,339.61 266.29,337.40 264.84,329.97 259.83,332.06" /><polygon fill="#86f34b" points="333.92,301.24 338.02,298.84 333.32,290.41 329.35,292.72" /><polygon fill="#82fc62" points="314.66,275.37 320.00,285.01 323.88,282.83 318.45,273.27" /><polygon fill="#999104" points="441.29,231.65 444.54,232.01 449.02,228.11 445.63,227.84" /><polygon fill="#aaeb4b" points="366.17,281.12 370.10,278.46 364.38,270.66 360.58,273.25" /><polygon fill="#87f857" points="333.32,290.41 327.74,280.61 323.88,282.83 329.35,292.72" /><polygon fill="#46eb5b" points="257.60,323.79 262.51,321.83 259.74,314.33 254.89,316.20" /><polygon fill="#78fe71" points="306.50,269.76 302.72,271.73 307.03,279.45 310.86,277.43" /><polygon fill="#b1f162" points="351.53,252.43 357.81,261.46 361.45,258.90 355.06,249.92" /><polygon fill="#6efc97" points="292.47,271.50 295.11,275.51 298.92,273.64 296.30,269.64" /><polygon fill="#acf057" points="364.38,270.66 357.81,261.46 354.14,263.98 360.58,273.25" /><polygon fill="#7ee532" points="332.43,309.14 329.81,303.60 325.68,305.92 328.19,311.55" /><polygon fill="#bbef71" points="356.93,237.57 353.53,240.13 358.56,247.38 362.02,244.80" /><polygon fill="#4ae447" points="264.84,329.97 262.51,321.83 257.60,323.79 259.83,332.06" /><polygon fill="#7ab80d" points="320.20,318.78 324.55,316.39 323.93,313.92 319.67,316.25" /><polygon fill="#acdb32" points="381.89,277.74 377.88,273.06 374.00,275.77 377.89,280.52" /><polygon fill="#c3e997" points="357.83,230.86 360.29,234.97 363.61,232.34 361.15,228.21" /><polygon fill="#70c7e8" points="287.52,272.87 283.60,274.64 284.77,275.04 288.63,273.30" /><polygon fill="#d9bec1" points="413.06,205.52 414.01,208.64 417.67,205.02 416.74,201.84" /><polygon fill="#82f34b" points="325.36,294.99 329.81,303.60 333.92,301.24 329.35,292.72" /><polygon fill="#d0bd32" points="432.11,232.99 436.33,229.30 430.06,224.86 426.01,228.48" /><polygon fill="#82f857" points="323.88,282.83 320.00,285.01 325.36,294.99 329.35,292.72" /><polygon fill="#aeea4b" points="364.38,270.66 370.10,278.46 374.00,275.77 368.15,268.05" /><polygon fill="#7dfc62" points="316.11,287.15 320.00,285.01 314.66,275.37 310.86,277.43" /><polygon fill="#9cb10d" points="387.85,276.55 391.88,273.66 389.81,272.09 385.87,274.93" /><polygon fill="#e1c95b" points="419.65,222.85 423.54,219.27 417.84,213.54 414.07,217.10" /><polygon fill="#acbae8" points="367.82,221.55 364.53,224.33 364.43,225.52 367.66,222.79" /><polygon fill="#b0ee57" points="361.45,258.90 357.81,261.46 364.38,270.66 368.15,268.05" /><polygon fill="#b6ef62" points="361.45,258.90 365.06,256.31 358.56,247.38 355.06,249.92" /><polygon fill="#73fe71" points="307.03,279.45 302.72,271.73 298.92,273.64 303.19,281.41" /><polygon fill="#dac447" points="430.06,224.86 423.54,219.27 419.65,222.85 426.01,228.48" /><polygon fill="#7ae532" points="325.68,305.92 321.54,308.21 323.93,313.92 328.19,311.55" /><polygon fill="#7df34b" points="325.68,305.92 329.81,303.60 325.36,294.99 321.35,297.22" /><polygon fill="#c0ed71" points="365.45,242.18 360.29,234.97 356.93,237.57 362.02,244.80" /><polygon fill="#69fb97" points="291.29,277.32 295.11,275.51 292.47,271.50 288.63,273.30" /><polygon fill="#7df857" points="325.36,294.99 320.00,285.01 316.11,287.15 321.35,297.22" /><polygon fill="#afd932" points="381.73,270.31 377.88,273.06 381.89,277.74 385.87,274.93" /><polygon fill="#5abf18" points="261.15,339.61 255.98,341.76 255.83,347.34 261.15,345.07" /><polygon fill="#b2e84b" points="374.00,275.77 377.88,273.06 371.89,265.40 368.15,268.05" /><polygon fill="#78fb62" points="307.03,279.45 312.20,289.24 316.11,287.15 310.86,277.43" /><polygon fill="#b4ec57" points="371.89,265.40 365.06,256.31 361.45,258.90 368.15,268.05" /><polygon fill="#78b80d" points="315.39,318.54 315.83,321.13 320.20,318.78 319.67,316.25" /><polygon fill="#c7e697" points="363.61,232.34 366.89,229.67 364.43,225.52 361.15,228.21" /><polygon fill="#3fed7a" points="252.14,310.64 247.29,312.37 250.04,318.00 254.89,316.20" /><polygon fill="#baed62" points="358.56,247.38 365.06,256.31 368.63,253.69 362.02,244.80" /><polygon fill="#6dc6e8" points="284.77,275.04 283.60,274.64 279.67,276.35 280.90,276.72" /><polygon fill="#9eb00d" points="389.81,272.09 391.88,273.66 395.89,270.74 393.73,269.23" /><polygon fill="#6efd71" points="298.92,273.64 295.11,275.51 299.34,283.33 303.19,281.41" /><polygon fill="#79f34b" points="317.33,299.41 321.54,308.21 325.68,305.92 321.35,297.22" /><polygon fill="#76e432" points="323.93,313.92 321.54,308.21 317.39,310.45 319.67,316.25" /><polygon fill="#bcaa18" points="440.50,225.58 436.33,229.30 441.29,231.65 445.63,227.84" /><polygon fill="#78f857" points="316.11,287.15 312.20,289.24 317.33,299.41 321.35,297.22" /><polygon fill="#aeb8e8" points="370.85,220.03 371.06,218.74 367.82,221.55 367.66,222.79" /><polygon fill="#b6e64b" points="371.89,265.40 377.88,273.06 381.73,270.31 375.60,262.72" /><polygon fill="#c4ea71" points="363.61,232.34 360.29,234.97 365.45,242.18 368.84,239.54" /><polygon fill="#e8c87a" points="417.67,205.02 414.01,208.64 417.84,213.54 421.55,209.94" /><polygon fill="#b9ea57" points="368.63,253.69 365.06,256.31 371.89,265.40 375.60,262.72" /><polygon fill="#b3d732" points="389.81,272.09 385.55,267.54 381.73,270.31 385.87,274.93" /><polygon fill="#73fb62" points="308.27,291.29 312.20,289.24 307.03,279.45 303.19,281.41" /><polygon fill="#6f9a04" points="249.17,352.79 254.64,350.49 255.83,347.34 250.50,349.55" /><polygon fill="#65fa97" points="284.77,275.04 287.45,279.07 291.29,277.32 288.63,273.30" /><polygon fill="#beeb62" points="368.63,253.69 372.17,251.04 365.45,242.18 362.02,244.80" /><polygon fill="#45dcc1" points="242.43,314.04 247.29,312.37 244.85,310.16 239.92,311.82" /><polygon fill="#4cd732" points="254.80,334.08 255.98,341.76 261.15,339.61 259.83,332.06" /><polygon fill="#42e95b" points="250.04,318.00 252.68,325.69 257.60,323.79 254.89,316.20" /><polygon fill="#75b80d" points="311.45,323.45 315.83,321.13 315.39,318.54 311.10,320.79" /><polygon fill="#cbe397" points="364.43,225.52 366.89,229.67 370.13,226.97 367.66,222.79" /><polygon fill="#74f34b" points="317.39,310.45 321.54,308.21 317.33,299.41 313.30,301.55" /><polygon fill="#74f857" points="317.33,299.41 312.20,289.24 308.27,291.29 313.30,301.55" /><polygon fill="#69fc71" points="299.34,283.33 295.11,275.51 291.29,277.32 295.48,285.19" /><polygon fill="#46e247" points="257.60,323.79 252.68,325.69 254.80,334.08 259.83,332.06" /><polygon fill="#a0ae0d" points="395.89,270.74 399.87,267.79 397.61,266.34 393.73,269.23" /><polygon fill="#72e432" points="317.39,310.45 313.22,312.66 315.39,318.54 319.67,316.25" /><polygon fill="#9a9004" points="449.02,228.11 453.46,224.17 449.93,223.99 445.63,227.84" /><polygon fill="#bae44b" points="381.73,270.31 385.55,267.54 379.27,260.01 375.60,262.72" /><polygon fill="#bde857" points="379.27,260.01 372.17,251.04 368.63,253.69 375.60,262.72" /><polygon fill="#6ac6e8" points="279.67,276.35 275.72,278.00 277.03,278.35 280.90,276.72" /><polygon fill="#dcbac1" points="417.67,205.02 421.26,201.35 420.36,198.11 416.74,201.84" /><polygon fill="#6ffa62" points="299.34,283.33 304.34,293.29 308.27,291.29 303.19,281.41" /><polygon fill="#d3ba32" points="430.06,224.86 436.33,229.30 440.50,225.58 434.05,221.20" /><polygon fill="#c8e771" points="372.19,236.86 366.89,229.67 363.61,232.34 368.84,239.54" /><polygon fill="#e4c55b" points="417.84,213.54 423.54,219.27 427.37,215.65 421.55,209.94" /><polygon fill="#b6d532" points="389.34,264.74 385.55,267.54 389.81,272.09 393.73,269.23" /><polygon fill="#c2e862" points="365.45,242.18 372.17,251.04 375.67,248.36 368.84,239.54" /><polygon fill="#b0b6e8" points="374.24,215.90 371.06,218.74 370.85,220.03 373.98,217.24" /><polygon fill="#ddc147" points="427.37,215.65 423.54,219.27 430.06,224.86 434.05,221.20" /><polygon fill="#60f997" points="283.61,280.77 287.45,279.07 284.77,275.04 280.90,276.72" /><polygon fill="#70f24b" points="309.25,303.66 313.22,312.66 317.39,310.45 313.30,301.55" /><polygon fill="#6ff757" points="308.27,291.29 304.34,293.29 309.25,303.66 313.30,301.55" /><polygon fill="#cfe097" points="370.13,226.97 373.32,224.23 370.85,220.03 367.66,222.79" /><polygon fill="#73b70d" points="306.81,323.01 307.06,325.72 311.45,323.45 311.10,320.79" /><polygon fill="#bee14b" points="379.27,260.01 385.55,267.54 389.34,264.74 382.91,257.27" /><polygon fill="#c1e557" points="375.67,248.36 372.17,251.04 379.27,260.01 382.91,257.27" /><polygon fill="#64fb71" points="291.29,277.32 287.45,279.07 291.61,287.01 295.48,285.19" /><polygon fill="#58be18" points="255.83,347.34 255.98,341.76 250.80,343.86 250.50,349.55" /><polygon fill="#3beb7a" points="250.04,318.00 247.29,312.37 242.43,314.04 245.17,319.73" /><polygon fill="#6ee332" points="315.39,318.54 313.22,312.66 309.05,314.83 311.10,320.79" /><polygon fill="#6afa62" points="300.39,295.24 304.34,293.29 299.34,283.33 295.48,285.19" /><polygon fill="#a2ad0d" points="397.61,266.34 399.87,267.79 403.82,264.82 401.46,263.43" /><polygon fill="#cce471" points="370.13,226.97 366.89,229.67 372.19,236.86 375.49,234.15" /><polygon fill="#bad332" points="397.61,266.34 393.09,261.91 389.34,264.74 393.73,269.23" /><polygon fill="#c6e562" points="375.67,248.36 379.14,245.64 372.19,236.86 368.84,239.54" /><polygon fill="#68c5e8" points="277.03,278.35 275.72,278.00 271.77,279.59 273.14,279.92" /><polygon fill="#ebc47a" points="425.21,206.29 421.26,201.35 417.67,205.02 421.55,209.94" /><polygon fill="#bea718" points="449.93,223.99 444.63,221.81 440.50,225.58 445.63,227.84" /><polygon fill="#6af757" points="309.25,303.66 304.34,293.29 300.39,295.24 305.20,305.72" /><polygon fill="#6bf24b" points="309.05,314.83 313.22,312.66 309.25,303.66 305.20,305.72" /><polygon fill="#b2b4e8" points="377.06,214.41 377.38,213.02 374.24,215.90 373.98,217.24" /><polygon fill="#5bf797" points="277.03,278.35 279.76,282.41 283.61,280.77 280.90,276.72" /><polygon fill="#41d9c1" points="234.99,313.40 237.56,315.63 242.43,314.04 239.92,311.82" /><polygon fill="#c5e357" points="386.52,254.50 379.14,245.64 375.67,248.36 382.91,257.27" /><polygon fill="#3ee65b" points="247.75,327.53 252.68,325.69 250.04,318.00 245.17,319.73" /><polygon fill="#c2df4b" points="389.34,264.74 393.09,261.91 386.52,254.50 382.91,257.27" /><polygon fill="#49d532" points="250.80,343.86 255.98,341.76 254.80,334.08 249.76,336.05" /><polygon fill="#6e9904" points="245.16,351.71 243.67,355.04 249.17,352.79 250.50,349.55" /><polygon fill="#d3dd97" points="370.85,220.03 373.32,224.23 376.46,221.47 373.98,217.24" /><polygon fill="#60fa71" points="291.61,287.01 287.45,279.07 283.61,280.77 287.72,288.77" /><polygon fill="#65f962" points="291.61,287.01 296.44,297.15 300.39,295.24 295.48,285.19" /><polygon fill="#71b70d" points="302.66,327.96 307.06,325.72 306.81,323.01 302.51,325.18" /><polygon fill="#6ae332" points="309.05,314.83 304.87,316.95 306.81,323.01 311.10,320.79" /><polygon fill="#42e047" points="254.80,334.08 252.68,325.69 247.75,327.53 249.76,336.05" /><polygon fill="#d0e171" points="378.75,231.41 373.32,224.23 370.13,226.97 375.49,234.15" /><polygon fill="#cae262" points="372.19,236.86 379.14,245.64 382.56,242.90 375.49,234.15" /><polygon fill="#bdd032" points="396.81,259.06 393.09,261.91 397.61,266.34 401.46,263.43" /><polygon fill="#a4ac0d" points="403.82,264.82 407.73,261.82 405.27,260.49 401.46,263.43" /><polygon fill="#deb7c1" points="420.36,198.11 421.26,201.35 424.80,197.65 423.91,194.34" /><polygon fill="#e6c15b" points="427.37,215.65 431.15,212.00 425.21,206.29 421.55,209.94" /><polygon fill="#d5b632" points="440.50,225.58 444.63,221.81 438.00,217.50 434.05,221.20" /><polygon fill="#9a8f04" points="449.93,223.99 453.46,224.17 457.86,220.19 454.18,220.10" /><polygon fill="#66f657" points="300.39,295.24 296.44,297.15 301.13,307.73 305.20,305.72" /><polygon fill="#65c4e8" points="271.77,279.59 267.81,281.11 269.26,281.42 273.14,279.92" /><polygon fill="#67f14b" points="301.13,307.73 304.87,316.95 309.05,314.83 305.20,305.72" /><polygon fill="#e0bd47" points="438.00,217.50 431.15,212.00 427.37,215.65 434.05,221.20" /><polygon fill="#c9e057" points="382.56,242.90 379.14,245.64 386.52,254.50 390.09,251.71" /><polygon fill="#56f697" points="275.90,283.99 279.76,282.41 277.03,278.35 273.14,279.92" /><polygon fill="#c6dc4b" points="386.52,254.50 393.09,261.91 396.81,259.06 390.09,251.71" /><polygon fill="#b4b2e8" points="380.45,210.10 377.38,213.02 377.06,214.41 380.09,211.55" /><polygon fill="#60f862" points="292.47,299.00 296.44,297.15 291.61,287.01 287.72,288.77" /><polygon fill="#5bf971" points="283.61,280.77 279.76,282.41 283.83,290.47 287.72,288.77" /><polygon fill="#d6da97" points="376.46,221.47 379.54,218.67 377.06,214.41 373.98,217.24" /><polygon fill="#66e232" points="306.81,323.01 304.87,316.95 300.68,319.03 302.51,325.18" /><polygon fill="#37e87a" points="242.43,314.04 237.56,315.63 240.30,321.38 245.17,319.73" /><polygon fill="#6fb60d" points="298.20,327.31 298.26,330.15 302.66,327.96 302.51,325.18" /><polygon fill="#cedf62" points="382.56,242.90 385.94,240.13 378.75,231.41 375.49,234.15" /><polygon fill="#d4de71" points="376.46,221.47 373.32,224.23 378.75,231.41 381.96,228.64" /><polygon fill="#55bc18" points="250.80,343.86 245.61,345.90 245.16,351.71 250.50,349.55" /><polygon fill="#c0ce32" points="405.27,260.49 400.50,256.18 396.81,259.06 401.46,263.43" /><polygon fill="#a5aa0d" points="405.27,260.49 407.73,261.82 411.61,258.79 409.05,257.52" /><polygon fill="#61f557" points="301.13,307.73 296.44,297.15 292.47,299.00 297.06,309.70" /><polygon fill="#62f04b" points="300.68,319.03 304.87,316.95 301.13,307.73 297.06,309.70" /><polygon fill="#edc07a" points="424.80,197.65 421.26,201.35 425.21,206.29 428.81,202.61" /><polygon fill="#ccdd57" points="393.62,248.89 385.94,240.13 382.56,242.90 390.09,251.71" /><polygon fill="#62c3e8" points="269.26,281.42 267.81,281.11 263.84,282.57 265.36,282.86" /><polygon fill="#bfa518" points="448.70,218.01 444.63,221.81 449.93,223.99 454.18,220.10" /><polygon fill="#c9d94b" points="396.81,259.06 400.50,256.18 393.62,248.89 390.09,251.71" /><polygon fill="#3ae45b" points="240.30,321.38 242.81,329.29 247.75,327.53 245.17,319.73" /><polygon fill="#3dd7c1" points="232.69,317.15 237.56,315.63 234.99,313.40 230.04,314.91" /><polygon fill="#52f497" points="269.26,281.42 272.04,285.52 275.90,283.99 273.14,279.92" /><polygon fill="#5bf662" points="283.83,290.47 288.50,300.80 292.47,299.00 287.72,288.77" /><polygon fill="#45d332" points="244.71,337.95 245.61,345.90 250.80,343.86 249.76,336.05" /><polygon fill="#56f771" points="283.83,290.47 279.76,282.41 275.90,283.99 279.94,292.12" /><polygon fill="#b6b0e8" points="383.06,208.67 383.48,207.16 380.45,210.10 380.09,211.55" /><polygon fill="#62e132" points="300.68,319.03 296.48,321.06 298.20,327.31 302.51,325.18" /><polygon fill="#dad697" points="377.06,214.41 379.54,218.67 382.58,215.85 380.09,211.55" /><polygon fill="#d2dc62" points="378.75,231.41 385.94,240.13 389.28,237.33 381.96,228.64" /><polygon fill="#3edd47" points="247.75,327.53 242.81,329.29 244.71,337.95 249.76,336.05" /><polygon fill="#6d9804" points="238.16,357.22 243.67,355.04 245.16,351.71 239.79,353.80" /><polygon fill="#d7db71" points="385.13,225.84 379.54,218.67 376.46,221.47 381.96,228.64" /><polygon fill="#6db50d" points="293.84,332.30 298.26,330.15 298.20,327.31 293.88,329.39" /><polygon fill="#e9bd5b" points="425.21,206.29 431.15,212.00 434.87,208.30 428.81,202.61" /><polygon fill="#e0b3c1" points="424.80,197.65 428.26,193.90 427.40,190.53 423.91,194.34" /><polygon fill="#c3cb32" points="404.14,253.28 400.50,256.18 405.27,260.49 409.05,257.52" /><polygon fill="#5cf357" points="292.47,299.00 288.50,300.80 292.99,311.61 297.06,309.70" /><polygon fill="#d7b332" points="438.00,217.50 444.63,221.81 448.70,218.01 441.89,213.76" /><polygon fill="#5eee4b" points="292.99,311.61 296.48,321.06 300.68,319.03 297.06,309.70" /><polygon fill="#a7a90d" points="411.61,258.79 415.45,255.75 412.79,254.53 409.05,257.52" /><polygon fill="#e2b947" points="434.87,208.30 431.15,212.00 438.00,217.50 441.89,213.76" /><polygon fill="#d0da57" points="389.28,237.33 385.94,240.13 393.62,248.89 397.11,246.04" /><polygon fill="#9b8e04" points="457.86,220.19 462.21,216.16 458.38,216.17 454.18,220.10" /><polygon fill="#cdd64b" points="393.62,248.89 400.50,256.18 404.14,253.28 397.11,246.04" /><polygon fill="#57f562" points="284.53,302.55 288.50,300.80 283.83,290.47 279.94,292.12" /><polygon fill="#60c1e8" points="263.84,282.57 259.88,283.96 261.47,284.23 265.36,282.86" /><polygon fill="#4df297" points="268.17,286.97 272.04,285.52 269.26,281.42 265.36,282.86" /><polygon fill="#33e57a" points="240.30,321.38 237.56,315.63 232.69,317.15 235.41,322.97" /><polygon fill="#51f571" points="275.90,283.99 272.04,285.52 276.04,293.71 279.94,292.12" /><polygon fill="#d5d962" points="389.28,237.33 392.56,234.50 385.13,225.84 381.96,228.64" /><polygon fill="#5edf32" points="298.20,327.31 296.48,321.06 292.28,323.05 293.88,329.39" /><polygon fill="#b8aee8" points="386.44,204.18 383.48,207.16 383.06,208.67 385.97,205.75" /><polygon fill="#ddd397" points="382.58,215.85 385.55,212.99 383.06,208.67 380.09,211.55" /><polygon fill="#dbd771" points="382.58,215.85 379.54,218.67 385.13,225.84 388.24,223.01" /><polygon fill="#53bb18" points="245.16,351.71 245.61,345.90 240.41,347.87 239.79,353.80" /><polygon fill="#58f257" points="292.99,311.61 288.50,300.80 284.53,302.55 288.91,313.48" /><polygon fill="#f0bc7a" points="432.33,198.89 428.26,193.90 424.80,197.65 428.81,202.61" /><polygon fill="#c6c932" points="412.79,254.53 407.74,250.35 404.14,253.28 409.05,257.52" /><polygon fill="#6bb50d" points="289.56,331.43 289.43,334.40 293.84,332.30 293.88,329.39" /><polygon fill="#59ed4b" points="292.28,323.05 296.48,321.06 292.99,311.61 288.91,313.48" /><polygon fill="#d3d757" points="400.55,243.17 392.56,234.50 389.28,237.33 397.11,246.04" /><polygon fill="#36e15b" points="237.86,330.99 242.81,329.29 240.30,321.38 235.41,322.97" /><polygon fill="#a9a70d" points="412.79,254.53 415.45,255.75 419.26,252.68 416.49,251.52" /><polygon fill="#3ad4c1" points="225.08,316.33 227.80,318.58 232.69,317.15 230.04,314.91" /><polygon fill="#c1a218" points="458.38,216.17 452.73,214.17 448.70,218.01 454.18,220.10" /><polygon fill="#d0d34b" points="404.14,253.28 407.74,250.35 400.55,243.17 397.11,246.04" /><polygon fill="#52f362" points="276.04,293.71 280.56,304.25 284.53,302.55 279.94,292.12" /><polygon fill="#42d032" points="240.41,347.87 245.61,345.90 244.71,337.95 239.64,339.78" /><polygon fill="#3bda47" points="244.71,337.95 242.81,329.29 237.86,330.99 239.64,339.78" /><polygon fill="#4df471" points="276.04,293.71 272.04,285.52 268.17,286.97 272.15,295.24" /><polygon fill="#49f097" points="261.47,284.23 264.31,288.37 268.17,286.97 265.36,282.86" /><polygon fill="#5dc0e8" points="261.47,284.23 259.88,283.96 255.91,285.28 257.58,285.53" /><polygon fill="#d9d562" points="385.13,225.84 392.56,234.50 395.80,231.65 388.24,223.01" /><polygon fill="#ebb95b" points="434.87,208.30 438.53,204.57 432.33,198.89 428.81,202.61" /><polygon fill="#e2afc1" points="427.40,190.53 428.26,193.90 431.65,190.11 430.81,186.67" /><polygon fill="#5bde32" points="292.28,323.05 288.08,324.99 289.56,331.43 293.88,329.39" /><polygon fill="#6c9704" points="234.42,355.84 232.62,359.35 238.16,357.22 239.79,353.80" /><polygon fill="#ded471" points="391.29,220.16 385.55,212.99 382.58,215.85 388.24,223.01" /><polygon fill="#e0cf97" points="383.06,208.67 385.55,212.99 388.47,210.11 385.97,205.75" /><polygon fill="#d9af32" points="448.70,218.01 452.73,214.17 445.72,209.99 441.89,213.76" /><polygon fill="#baace8" points="388.82,202.80 389.33,201.17 386.44,204.18 385.97,205.75" /><polygon fill="#53f057" points="284.53,302.55 280.56,304.25 284.82,315.30 288.91,313.48" /><polygon fill="#e4b547" points="445.72,209.99 438.53,204.57 434.87,208.30 441.89,213.76" /><polygon fill="#c9c632" points="411.30,247.40 407.74,250.35 412.79,254.53 416.49,251.52" /><polygon fill="#55eb4b" points="284.82,315.30 288.08,324.99 292.28,323.05 288.91,313.48" /><polygon fill="#69b40d" points="285.01,336.46 289.43,334.40 289.56,331.43 285.25,333.42" /><polygon fill="#d7d357" points="395.80,231.65 392.56,234.50 400.55,243.17 403.95,240.28" /><polygon fill="#2fe27a" points="232.69,317.15 227.80,318.58 230.53,324.47 235.41,322.97" /><polygon fill="#9b8d04" points="458.38,216.17 462.21,216.16 466.52,212.09 462.54,212.20" /><polygon fill="#d3d04b" points="400.55,243.17 407.74,250.35 411.30,247.40 403.95,240.28" /><polygon fill="#4ef162" points="276.58,305.88 280.56,304.25 276.04,293.71 272.15,295.24" /><polygon fill="#aaa50d" points="419.26,252.68 423.01,249.58 420.15,248.49 416.49,251.52" /><polygon fill="#48f171" points="268.17,286.97 264.31,288.37 268.25,296.71 272.15,295.24" /><polygon fill="#dcd262" points="395.80,231.65 398.99,228.77 391.29,220.16 388.24,223.01" /><polygon fill="#44ee97" points="260.45,289.69 264.31,288.37 261.47,284.23 257.58,285.53" /><polygon fill="#f2b77a" points="431.65,190.11 428.26,193.90 432.33,198.89 435.79,195.13" /><polygon fill="#50b918" points="240.41,347.87 235.19,349.78 234.42,355.84 239.79,353.80" /><polygon fill="#5bbfe8" points="255.91,285.28 251.95,286.53 253.69,286.76 257.58,285.53" /><polygon fill="#57dc32" points="289.56,331.43 288.08,324.99 283.88,326.88 285.25,333.42" /><polygon fill="#e1d071" points="388.47,210.11 385.55,212.99 391.29,220.16 394.29,217.28" /><polygon fill="#e3cb97" points="388.47,210.11 391.33,207.20 388.82,202.80 385.97,205.75" /><polygon fill="#4fee57" points="284.82,315.30 280.56,304.25 276.58,305.88 280.74,317.06" /><polygon fill="#32de5b" points="230.53,324.47 232.90,332.61 237.86,330.99 235.41,322.97" /><polygon fill="#bca9e8" points="392.16,198.14 389.33,201.17 388.82,202.80 391.60,199.83" /><polygon fill="#37d1c1" points="222.92,319.93 227.80,318.58 225.08,316.33 220.12,317.67" /><polygon fill="#cbc332" points="420.15,248.49 414.82,244.43 411.30,247.40 416.49,251.52" /><polygon fill="#51ea4b" points="283.88,326.88 288.08,324.99 284.82,315.30 280.74,317.06" /><polygon fill="#c2a018" points="456.69,210.29 452.73,214.17 458.38,216.17 462.54,212.20" /><polygon fill="#dad057" points="407.29,237.36 398.99,228.77 395.80,231.65 403.95,240.28" /><polygon fill="#3fce32" points="234.57,341.54 235.19,349.78 240.41,347.87 239.64,339.78" /><polygon fill="#37d847" points="237.86,330.99 232.90,332.61 234.57,341.54 239.64,339.78" /><polygon fill="#67b30d" points="280.93,335.36 280.59,338.46 285.01,336.46 285.25,333.42" /><polygon fill="#d6cd4b" points="411.30,247.40 414.82,244.43 407.29,237.36 403.95,240.28" /><polygon fill="#edb55b" points="432.33,198.89 438.53,204.57 442.12,200.80 435.79,195.13" /><polygon fill="#49ef62" points="268.25,296.71 272.61,307.46 276.58,305.88 272.15,295.24" /><polygon fill="#e4abc1" points="431.65,190.11 434.97,186.29 434.15,182.77 430.81,186.67" /><polygon fill="#99f3af" points="317.53,232.35 316.42,230.55 313.72,232.26 314.85,234.04" /><polygon fill="#94f4af" points="313.72,232.26 310.99,233.93 312.15,235.69 314.85,234.04" /><polygon fill="#aca40d" points="420.15,248.49 423.01,249.58 426.73,246.46 423.76,245.44" /><polygon fill="#9df2af" points="319.10,228.81 316.42,230.55 317.53,232.35 320.19,230.62" /><polygon fill="#44ef71" points="268.25,296.71 264.31,288.37 260.45,289.69 264.36,298.11" /><polygon fill="#90f5af" points="312.15,235.69 310.99,233.93 308.24,235.55 309.42,237.31" /><polygon fill="#a2f1af" points="322.82,228.86 321.76,227.03 319.10,228.81 320.19,230.62" /><polygon fill="#dbac32" points="445.72,209.99 452.73,214.17 456.69,210.29 449.49,206.17" /><polygon fill="#dfce62" points="391.29,220.16 398.99,228.77 402.12,225.87 394.29,217.28" /><polygon fill="#e6b147" points="442.12,200.80 438.53,204.57 445.72,209.99 449.49,206.17" /><polygon fill="#8bf5af" points="308.24,235.55 305.47,237.14 306.68,238.88 309.42,237.31" /><polygon fill="#40ec97" points="253.69,286.76 256.59,290.95 260.45,289.69 257.58,285.53" /><polygon fill="#6b9704" points="227.07,361.41 232.62,359.35 234.42,355.84 229.03,357.80" /><polygon fill="#a6efaf" points="324.38,225.22 321.76,227.03 322.82,228.86 325.42,227.06" /><polygon fill="#86f6af" points="306.68,238.88 305.47,237.14 302.69,238.68 303.92,240.41" /><polygon fill="#e4cc71" points="397.23,214.38 391.33,207.20 388.47,210.11 394.29,217.28" /><polygon fill="#58bde8" points="253.69,286.76 251.95,286.53 247.99,287.71 249.81,287.92" /><polygon fill="#53db32" points="283.88,326.88 279.68,328.71 280.93,335.36 285.25,333.42" /><polygon fill="#abeeaf" points="327.99,225.23 326.97,223.37 324.38,225.22 325.42,227.06" /><polygon fill="#4bec57" points="276.58,305.88 272.61,307.46 276.66,318.77 280.74,317.06" /><polygon fill="#2bdf7a" points="230.53,324.47 227.80,318.58 222.92,319.93 225.64,325.89" /><polygon fill="#e6c797" points="388.82,202.80 391.33,207.20 394.12,204.26 391.60,199.83" /><polygon fill="#82f6af" points="302.69,238.68 299.88,240.18 301.14,241.90 303.92,240.41" /><polygon fill="#afecaf" points="329.53,221.48 326.97,223.37 327.99,225.23 330.53,223.37" /><polygon fill="#4de84b" points="276.66,318.77 279.68,328.71 283.88,326.88 280.74,317.06" /><polygon fill="#bda7e8" points="394.31,196.83 394.92,195.08 392.16,198.14 391.60,199.83" /><polygon fill="#cec032" points="418.28,241.44 414.82,244.43 420.15,248.49 423.76,245.44" /><polygon fill="#ddcc57" points="402.12,225.87 398.99,228.77 407.29,237.36 410.59,234.42" /><polygon fill="#9c8c04" points="466.52,212.09 470.77,207.97 466.63,208.19 462.54,212.20" /><polygon fill="#7df6af" points="301.14,241.90 299.88,240.18 297.07,241.63 298.35,243.34" /><polygon fill="#b3eaaf" points="333.03,221.47 332.05,219.57 329.53,221.48 330.53,223.37" /><polygon fill="#9bfc7b" points="318.92,240.53 321.62,238.83 317.53,232.35 314.85,234.04" /><polygon fill="#96fd7b" points="312.15,235.69 316.19,242.20 318.92,240.53 314.85,234.04" /><polygon fill="#f4b37a" points="439.18,191.34 434.97,186.29 431.65,190.11 435.79,195.13" /><polygon fill="#a0fb7b" points="317.53,232.35 321.62,238.83 324.31,237.09 320.19,230.62" /><polygon fill="#d9c94b" points="407.29,237.36 414.82,244.43 418.28,241.44 410.59,234.42" /><polygon fill="#45ed62" points="268.63,308.98 272.61,307.46 268.25,296.71 264.36,298.11" /><polygon fill="#91fe7b" points="313.44,243.83 316.19,242.20 312.15,235.69 309.42,237.31" /><polygon fill="#65b20d" points="276.17,340.42 280.59,338.46 280.93,335.36 276.61,337.24" /><polygon fill="#a4f97b" points="324.31,237.09 326.96,235.31 322.82,228.86 320.19,230.62" /><polygon fill="#4eb718" points="234.42,355.84 235.19,349.78 229.97,351.61 229.03,357.80" /><polygon fill="#8cfe7b" points="306.68,238.88 310.67,245.43 313.44,243.83 309.42,237.31" /><polygon fill="#79f6af" points="297.07,241.63 294.24,243.04 295.54,244.74 298.35,243.34" /><polygon fill="#a9f87b" points="322.82,228.86 326.96,235.31 329.59,233.50 325.42,227.06" /><polygon fill="#2edb5b" points="227.95,334.15 232.90,332.61 230.53,324.47 225.64,325.89" /><polygon fill="#b7e8af" points="334.54,217.62 332.05,219.57 333.03,221.47 335.50,219.54" /><polygon fill="#3fed71" points="260.45,289.69 256.59,290.95 260.47,299.45 264.36,298.11" /><polygon fill="#e2ca62" points="402.12,225.87 405.20,222.94 397.23,214.38 394.29,217.28" /><polygon fill="#87ff7b" points="307.89,246.98 310.67,245.43 306.68,238.88 303.92,240.41" /><polygon fill="#aef67b" points="329.59,233.50 332.19,231.66 327.99,225.23 325.42,227.06" /><polygon fill="#ada20d" points="426.73,246.46 430.40,243.33 427.32,242.36 423.76,245.44" /><polygon fill="#34cec1" points="215.16,318.91 218.03,321.19 222.92,319.93 220.12,317.67" /><polygon fill="#3ce997" points="252.74,292.14 256.59,290.95 253.69,286.76 249.81,287.92" /><polygon fill="#82ff7b" points="301.14,241.90 305.09,248.49 307.89,246.98 303.92,240.41" /><polygon fill="#74f5af" points="295.54,244.74 294.24,243.04 291.40,244.39 292.73,246.09" /><polygon fill="#b3f47b" points="327.99,225.23 332.19,231.66 334.76,229.79 330.53,223.37" /><polygon fill="#e7c871" points="394.12,204.26 391.33,207.20 397.23,214.38 400.11,211.45" /><polygon fill="#3ccb32" points="229.97,351.61 235.19,349.78 234.57,341.54 229.50,343.22" /><polygon fill="#bbe6af" points="337.93,217.59 336.98,215.65 334.54,217.62 335.50,219.54" /><polygon fill="#34d547" points="234.57,341.54 232.90,332.61 227.95,334.15 229.50,343.22" /><polygon fill="#46ea57" points="276.66,318.77 272.61,307.46 268.63,308.98 272.58,320.42" /><polygon fill="#c39d18" points="466.63,208.19 460.60,206.37 456.69,210.29 462.54,212.20" /><polygon fill="#50d932" points="280.93,335.36 279.68,328.71 275.48,330.49 276.61,337.24" /><polygon fill="#efb05b" points="442.12,200.80 445.65,197.00 439.18,191.34 435.79,195.13" /><polygon fill="#56bce8" points="247.99,287.71 244.04,288.81 245.94,289.00 249.81,287.92" /><polygon fill="#7dff7b" points="302.28,249.96 305.09,248.49 301.14,241.90 298.35,243.34" /><polygon fill="#e9c397" points="394.12,204.26 396.84,201.31 394.31,196.83 391.60,199.83" /><polygon fill="#b7f27b" points="334.76,229.79 337.29,227.88 333.03,221.47 330.53,223.37" /><polygon fill="#e5a7c1" points="434.15,182.77 434.97,186.29 438.20,182.43 437.41,178.83" /><polygon fill="#49e64b" points="275.48,330.49 279.68,328.71 276.66,318.77 272.58,320.42" /><polygon fill="#6ff5af" points="291.40,244.39 288.55,245.70 289.91,247.39 292.73,246.09" /><polygon fill="#e0c957" points="413.83,231.46 405.20,222.94 402.12,225.87 410.59,234.42" /><polygon fill="#d0bd32" points="427.32,242.36 421.69,238.43 418.28,241.44 423.76,245.44" /><polygon fill="#bfe3af" points="339.39,213.64 336.98,215.65 337.93,217.59 340.31,215.61" /><polygon fill="#9bfb6e" points="328.81,250.16 321.62,238.83 318.92,240.53 326.03,251.92" /><polygon fill="#bfa4e8" points="397.61,191.99 394.92,195.08 394.31,196.83 396.94,193.80" /><polygon fill="#96fc6e" points="318.92,240.53 316.19,242.20 323.22,253.64 326.03,251.92" /><polygon fill="#9ffa6e" points="324.31,237.09 321.62,238.83 328.81,250.16 331.58,248.37" /><polygon fill="#78ff7b" points="295.54,244.74 299.46,251.38 302.28,249.96 298.35,243.34" /><polygon fill="#e8ad47" points="453.19,202.33 445.65,197.00 442.12,200.80 449.49,206.17" /><polygon fill="#dda832" points="456.69,210.29 460.60,206.37 453.19,202.33 449.49,206.17" /><polygon fill="#91fd6e" points="323.22,253.64 316.19,242.20 313.44,243.83 320.39,255.33" /><polygon fill="#a4f86e" points="334.32,246.55 326.96,235.31 324.31,237.09 331.58,248.37" /><polygon fill="#bcf07b" points="333.03,221.47 337.29,227.88 339.79,225.95 335.50,219.54" /><polygon fill="#41eb62" points="260.47,299.45 264.67,310.43 268.63,308.98 264.36,298.11" /><polygon fill="#dcc64b" points="418.28,241.44 421.69,238.43 413.83,231.46 410.59,234.42" /><polygon fill="#8cfd6e" points="313.44,243.83 310.67,245.43 317.54,256.98 320.39,255.33" /><polygon fill="#a9f76e" points="329.59,233.50 326.96,235.31 334.32,246.55 337.04,244.70" /><polygon fill="#6bf4af" points="289.91,247.39 288.55,245.70 285.69,246.96 287.09,248.65" /><polygon fill="#63b10d" points="272.30,339.08 271.75,342.32 276.17,340.42 276.61,337.24" /><polygon fill="#27db7a" points="222.92,319.93 218.03,321.19 220.75,327.23 225.64,325.89" /><polygon fill="#6a9604" points="223.62,359.70 221.51,363.40 227.07,361.41 229.03,357.80" /><polygon fill="#87fe6e" points="317.54,256.98 310.67,245.43 307.89,246.98 314.68,258.59" /><polygon fill="#73fe7b" points="296.63,252.76 299.46,251.38 295.54,244.74 292.73,246.09" /><polygon fill="#aef56e" points="339.72,242.81 332.19,231.66 329.59,233.50 337.04,244.70" /><polygon fill="#c3e1af" points="342.66,213.60 341.75,211.61 339.39,213.64 340.31,215.61" /><polygon fill="#e5c662" points="397.23,214.38 405.20,222.94 408.21,220.00 400.11,211.45" /><polygon fill="#3bea71" points="260.47,299.45 256.59,290.95 252.74,292.14 256.59,300.71" /><polygon fill="#c0ed7b" points="339.79,225.95 342.25,223.99 337.93,217.59 335.50,219.54" /><polygon fill="#82fe6e" points="307.89,246.98 305.09,248.49 311.81,260.17 314.68,258.59" /><polygon fill="#b2f36e" points="334.76,229.79 332.19,231.66 339.72,242.81 342.38,240.90" /><polygon fill="#aea00d" points="427.32,242.36 430.40,243.33 434.02,240.17 430.83,239.27" /><polygon fill="#38e697" points="245.94,289.00 248.90,293.25 252.74,292.14 249.81,287.92" /><polygon fill="#6efe7b" points="289.91,247.39 293.79,254.09 296.63,252.76 292.73,246.09" /><polygon fill="#eac471" points="402.91,208.50 396.84,201.31 394.12,204.26 400.11,211.45" /><polygon fill="#66f3af" points="285.69,246.96 282.84,248.17 284.26,249.85 287.09,248.65" /><polygon fill="#f6ae7a" points="438.20,182.43 434.97,186.29 439.18,191.34 442.48,187.50" /><polygon fill="#42e857" points="268.63,308.98 264.67,310.43 268.51,322.01 272.58,320.42" /><polygon fill="#7dfe6e" points="311.81,260.17 305.09,248.49 302.28,249.96 308.93,261.70" /><polygon fill="#c4eb7b" points="337.93,217.59 342.25,223.99 344.67,222.01 340.31,215.61" /><polygon fill="#9c8b04" points="466.63,208.19 470.77,207.97 474.97,203.81 470.67,204.14" /><polygon fill="#b7f16e" points="345.01,238.96 337.29,227.88 334.76,229.79 342.38,240.90" /><polygon fill="#c7deaf" points="344.07,209.55 341.75,211.61 342.66,213.60 344.96,211.57" /><polygon fill="#4cd732" points="275.48,330.49 271.29,332.22 272.30,339.08 276.61,337.24" /><polygon fill="#53bae8" points="245.94,289.00 244.04,288.81 240.10,289.83 242.08,290.00" /><polygon fill="#ecbf97" points="394.31,196.83 396.84,201.31 399.49,198.33 396.94,193.80" /><polygon fill="#2bd85b" points="220.75,327.23 222.99,335.61 227.95,334.15 225.64,325.89" /><polygon fill="#45e44b" points="268.51,322.01 271.29,332.22 275.48,330.49 272.58,320.42" /><polygon fill="#9afa69" points="334.78,265.96 337.69,264.13 328.81,250.16 326.03,251.92" /><polygon fill="#e3c557" points="408.21,220.00 405.20,222.94 413.83,231.46 417.02,228.48" /><polygon fill="#78fe6e" points="302.28,249.96 299.46,251.38 306.03,263.19 308.93,261.70" /><polygon fill="#96fb69" points="323.22,253.64 331.86,267.76 334.78,265.96 326.03,251.92" /><polygon fill="#9ff969" points="328.81,250.16 337.69,264.13 340.58,262.27 331.58,248.37" /><polygon fill="#4cb518" points="229.97,351.61 224.74,353.38 223.62,359.70 229.03,357.80" /><polygon fill="#91fc69" points="328.91,269.53 331.86,267.76 323.22,253.64 320.39,255.33" /><polygon fill="#69fd7b" points="290.95,255.37 293.79,254.09 289.91,247.39 287.09,248.65" /><polygon fill="#bbef6e" points="339.79,225.95 337.29,227.88 345.01,238.96 347.60,236.99" /><polygon fill="#a4f869" points="340.58,262.27 343.44,260.38 334.32,246.55 331.58,248.37" /><polygon fill="#d3ba32" points="425.05,235.40 421.69,238.43 427.32,242.36 430.83,239.27" /><polygon fill="#31cbc1" points="213.15,322.36 218.03,321.19 215.16,318.91 210.20,320.07" /><polygon fill="#8cfc69" points="317.54,256.98 325.96,271.26 328.91,269.53 320.39,255.33" /><polygon fill="#c8e87b" points="344.67,222.01 347.05,220.00 342.66,213.60 340.31,215.61" /><polygon fill="#62f2af" points="284.26,249.85 282.84,248.17 279.97,249.33 281.43,251.00" /><polygon fill="#c0a2e8" points="399.50,190.76 400.22,188.87 397.61,191.99 396.94,193.80" /><polygon fill="#a9f669" points="334.32,246.55 343.44,260.38 346.28,258.46 337.04,244.70" /><polygon fill="#3de862" points="260.72,311.82 264.67,310.43 260.47,299.45 256.59,300.71" /><polygon fill="#dfc24b" points="413.83,231.46 421.69,238.43 425.05,235.40 417.02,228.48" /><polygon fill="#cbdbaf" points="347.21,209.51 346.34,207.47 344.07,209.55 344.96,211.57" /><polygon fill="#73fd6e" points="306.03,263.19 299.46,251.38 296.63,252.76 303.13,264.64" /><polygon fill="#87fd69" points="322.98,272.96 325.96,271.26 317.54,256.98 314.68,258.59" /><polygon fill="#30d247" points="227.95,334.15 222.99,335.61 224.43,344.83 229.50,343.22" /><polygon fill="#adf469" points="346.28,258.46 349.09,256.51 339.72,242.81 337.04,244.70" /><polygon fill="#f1ac5b" points="439.18,191.34 445.65,197.00 449.10,193.16 442.48,187.50" /><polygon fill="#39c932" points="224.43,344.83 224.74,353.38 229.97,351.61 229.50,343.22" /><polygon fill="#bfec6e" points="350.15,235.00 342.25,223.99 339.79,225.95 347.60,236.99" /><polygon fill="#c59b18" points="464.44,202.42 460.60,206.37 466.63,208.19 470.67,204.14" /><polygon fill="#64fc7b" points="284.26,249.85 288.10,256.61 290.95,255.37 287.09,248.65" /><polygon fill="#e8c262" points="408.21,220.00 411.16,217.03 402.91,208.50 400.11,211.45" /><polygon fill="#82fd69" points="311.81,260.17 320.00,274.62 322.98,272.96 314.68,258.59" /><polygon fill="#37e771" points="252.74,292.14 248.90,293.25 252.72,301.91 256.59,300.71" /><polygon fill="#61b00d" points="267.34,344.17 271.75,342.32 272.30,339.08 267.99,340.85" /><polygon fill="#b2f269" points="339.72,242.81 349.09,256.51 351.88,254.54 342.38,240.90" /><polygon fill="#e7a3c1" points="438.20,182.43 441.35,178.53 440.58,174.85 437.41,178.83" /><polygon fill="#cce57b" points="342.66,213.60 347.05,220.00 349.39,217.97 344.96,211.57" /><polygon fill="#6efd6e" points="296.63,252.76 293.79,254.09 300.22,266.04 303.13,264.64" /><polygon fill="#5df1af" points="279.97,249.33 277.11,250.43 278.59,252.09 281.43,251.00" /><polygon fill="#7dfd69" points="317.01,276.24 320.00,274.62 311.81,260.17 308.93,261.70" /><polygon fill="#c4ea6e" points="344.67,222.01 342.25,223.99 350.15,235.00 352.67,232.98" /><polygon fill="#34e397" points="245.08,294.28 248.90,293.25 245.94,289.00 242.08,290.00" /><polygon fill="#eaa947" points="449.10,193.16 445.65,197.00 453.19,202.33 456.83,198.44" /><polygon fill="#b6f069" points="351.88,254.54 354.63,252.54 345.01,238.96 342.38,240.90" /><polygon fill="#edc071" points="399.49,198.33 396.84,201.31 402.91,208.50 405.65,205.53" /><polygon fill="#ced8af" points="348.56,205.37 346.34,207.47 347.21,209.51 349.42,207.43" /><polygon fill="#dea532" points="453.19,202.33 460.60,206.37 464.44,202.42 456.83,198.44" /><polygon fill="#3ee557" points="268.51,322.01 264.67,310.43 260.72,311.82 264.45,323.54" /><polygon fill="#b09e0d" points="434.02,240.17 437.58,236.99 434.29,236.16 430.83,239.27" /><polygon fill="#9af965" points="346.77,278.39 337.69,264.13 334.78,265.96 343.72,280.30" /><polygon fill="#95fa65" points="334.78,265.96 331.86,267.76 340.66,282.19 343.72,280.30" /><polygon fill="#9ff865" points="340.58,262.27 337.69,264.13 346.77,278.39 349.79,276.45" /><polygon fill="#91fb65" points="340.66,282.19 331.86,267.76 328.91,269.53 337.59,284.05" /><polygon fill="#5ffb7b" points="285.26,257.79 288.10,256.61 284.26,249.85 281.43,251.00" /><polygon fill="#a4f765" points="352.79,274.48 343.44,260.38 340.58,262.27 349.79,276.45" /><polygon fill="#24d87a" points="220.75,327.23 218.03,321.19 213.15,322.36 215.87,328.48" /><polygon fill="#78fd69" points="306.03,263.19 314.01,277.83 317.01,276.24 308.93,261.70" /><polygon fill="#49d532" points="272.30,339.08 271.29,332.22 267.10,333.88 267.99,340.85" /><polygon fill="#69fc6e" points="300.22,266.04 293.79,254.09 290.95,255.37 297.31,267.40" /><polygon fill="#eebb97" points="399.49,198.33 402.06,195.33 399.50,190.76 396.94,193.80" /><polygon fill="#8cfc65" points="328.91,269.53 325.96,271.26 334.50,285.88 337.59,284.05" /><polygon fill="#d0e27b" points="349.39,217.97 351.68,215.91 347.21,209.51 344.96,211.57" /><polygon fill="#bbee69" points="345.01,238.96 354.63,252.54 357.36,250.52 347.60,236.99" /><polygon fill="#a8f565" points="346.28,258.46 343.44,260.38 352.79,274.48 355.77,272.48" /><polygon fill="#51b8e8" points="240.10,289.83 236.17,290.76 238.24,290.93 242.08,290.00" /><polygon fill="#e5c157" points="420.14,225.48 411.16,217.03 408.21,220.00 417.02,228.48" /><polygon fill="#41e14b" points="267.10,333.88 271.29,332.22 268.51,322.01 264.45,323.54" /><polygon fill="#c8e76e" points="355.14,230.95 347.05,220.00 344.67,222.01 352.67,232.98" /><polygon fill="#87fc65" points="334.50,285.88 325.96,271.26 322.98,272.96 331.40,287.67" /><polygon fill="#59efaf" points="278.59,252.09 277.11,250.43 274.26,251.47 275.77,253.14" /><polygon fill="#699504" points="215.93,365.32 221.51,363.40 223.62,359.70 218.22,361.52" /><polygon fill="#adf465" points="358.73,270.46 349.09,256.51 346.28,258.46 355.77,272.48" /><polygon fill="#d5b632" points="434.29,236.16 428.36,232.35 425.05,235.40 430.83,239.27" /><polygon fill="#73fc69" points="311.00,279.37 314.01,277.83 306.03,263.19 303.13,264.64" /><polygon fill="#39e562" points="252.72,301.91 256.77,313.14 260.72,311.82 256.59,300.71" /><polygon fill="#d2d5af" points="351.57,205.33 350.73,203.24 348.56,205.37 349.42,207.43" /><polygon fill="#c19fe8" points="402.75,185.74 400.22,188.87 399.50,190.76 401.98,187.69" /><polygon fill="#82fc65" points="322.98,272.96 320.00,274.62 328.29,289.43 331.40,287.67" /><polygon fill="#f8a97a" points="445.71,183.64 441.35,178.53 438.20,182.43 442.48,187.50" /><polygon fill="#bfec69" points="357.36,250.52 360.04,248.47 350.15,235.00 347.60,236.99" /><polygon fill="#e1be4b" points="425.05,235.40 428.36,232.35 420.14,225.48 417.02,228.48" /><polygon fill="#5bf97b" points="278.59,252.09 282.41,258.92 285.26,257.79 281.43,251.00" /><polygon fill="#b1f265" points="351.88,254.54 349.09,256.51 358.73,270.46 361.66,268.42" /><polygon fill="#64fb6e" points="290.95,255.37 288.10,256.61 294.40,268.71 297.31,267.40" /><polygon fill="#9af85f" points="351.31,292.48 354.48,290.49 346.77,278.39 343.72,280.30" /><polygon fill="#95f95f" points="340.66,282.19 348.12,294.46 351.31,292.48 343.72,280.30" /><polygon fill="#95e130" points="357.61,302.65 360.94,300.55 359.23,297.91 355.96,299.97" /><polygon fill="#9ff75f" points="346.77,278.39 354.48,290.49 357.63,288.47 349.79,276.45" /><polygon fill="#91e230" points="352.67,302.01 354.26,304.73 357.61,302.65 355.96,299.97" /><polygon fill="#99e030" points="359.23,297.91 360.94,300.55 364.26,298.43 362.49,295.83" /><polygon fill="#d4df7b" points="347.21,209.51 351.68,215.91 353.92,213.84 349.42,207.43" /><polygon fill="#90fa5f" points="344.92,296.40 348.12,294.46 340.66,282.19 337.59,284.05" /><polygon fill="#cce46e" points="349.39,217.97 347.05,220.00 355.14,230.95 357.58,228.89" /><polygon fill="#a3f65f" points="357.63,288.47 360.77,286.42 352.79,274.48 349.79,276.45" /><polygon fill="#8de230" points="350.89,306.78 354.26,304.73 352.67,302.01 349.37,304.02" /><polygon fill="#9cdf30" points="364.26,298.43 367.57,296.29 365.72,293.73 362.49,295.83" /><polygon fill="#ebbe62" points="402.91,208.50 411.16,217.03 414.05,214.05 405.65,205.53" /><polygon fill="#7dfc65" points="328.29,289.43 320.00,274.62 317.01,276.24 325.17,291.16" /><polygon fill="#27d45b" points="218.04,336.98 222.99,335.61 220.75,327.23 215.87,328.48" /><polygon fill="#33e471" points="252.72,301.91 248.90,293.25 245.08,294.28 248.87,303.03" /><polygon fill="#6efc69" points="300.22,266.04 307.99,280.88 311.00,279.37 303.13,264.64" /><polygon fill="#8cfa5f" points="334.50,285.88 341.71,298.32 344.92,296.40 337.59,284.05" /><polygon fill="#9d8a04" points="474.97,203.81 479.10,199.61 474.64,200.04 470.67,204.14" /><polygon fill="#b6f065" points="364.56,266.36 354.63,252.54 351.88,254.54 361.66,268.42" /><polygon fill="#99f454" points="359.23,297.91 354.48,290.49 351.31,292.48 355.96,299.97" /><polygon fill="#a8f45f" points="352.79,274.48 360.77,286.42 363.88,284.35 355.77,272.48" /><polygon fill="#89e330" points="346.06,306.00 347.52,308.81 350.89,306.78 349.37,304.02" /><polygon fill="#95f554" points="351.31,292.48 348.12,294.46 352.67,302.01 355.96,299.97" /><polygon fill="#9ef354" points="357.63,288.47 354.48,290.49 359.23,297.91 362.49,295.83" /><polygon fill="#a0de30" points="365.72,293.73 367.57,296.29 370.85,294.12 368.94,291.60" /><polygon fill="#54eeaf" points="274.26,251.47 271.40,252.46 272.95,254.12 275.77,253.14" /><polygon fill="#c3e969" points="350.15,235.00 360.04,248.47 362.70,246.41 352.67,232.98" /><polygon fill="#5fae0d" points="263.70,342.57 262.93,345.96 267.34,344.17 267.99,340.85" /><polygon fill="#90f654" points="352.67,302.01 348.12,294.46 344.92,296.40 349.37,304.02" /><polygon fill="#a2f254" points="365.72,293.73 360.77,286.42 357.63,288.47 362.49,295.83" /><polygon fill="#87fb5f" points="338.48,300.20 341.71,298.32 334.50,285.88 331.40,287.67" /><polygon fill="#4ab318" points="223.62,359.70 224.74,353.38 219.51,355.06 218.22,361.52" /><polygon fill="#2ec8c1" points="205.24,321.12 208.28,323.43 213.15,322.36 210.20,320.07" /><polygon fill="#acf25f" points="363.88,284.35 366.98,282.27 358.73,270.46 355.77,272.48" /><polygon fill="#85e330" points="344.14,310.81 347.52,308.81 346.06,306.00 342.74,307.96" /><polygon fill="#8bf754" points="344.92,296.40 341.71,298.32 346.06,306.00 349.37,304.02" /><polygon fill="#d5d2af" points="352.84,201.09 350.73,203.24 351.57,205.33 353.67,203.21" /><polygon fill="#78fc65" points="317.01,276.24 314.01,277.83 322.05,292.85 325.17,291.16" /><polygon fill="#60fa6e" points="294.40,268.71 288.10,256.61 285.26,257.79 291.49,269.97" /><polygon fill="#30e097" points="238.24,290.93 241.27,295.24 245.08,294.28 242.08,290.00" /><polygon fill="#a4dc30" points="370.85,294.12 374.12,291.94 372.14,289.46 368.94,291.60" /><polygon fill="#a7f154" points="363.88,284.35 360.77,286.42 365.72,293.73 368.94,291.60" /><polygon fill="#efbb71" points="408.32,202.54 402.06,195.33 399.49,198.33 405.65,205.53" /><polygon fill="#56f87b" points="279.57,260.00 282.41,258.92 278.59,252.09 275.77,253.14" /><polygon fill="#3ae357" points="260.72,311.82 256.77,313.14 260.40,325.00 264.45,323.54" /><polygon fill="#baed65" points="357.36,250.52 354.63,252.54 364.56,266.36 367.43,264.27" /><polygon fill="#82fb5f" points="328.29,289.43 335.25,302.06 338.48,300.20 331.40,287.67" /><polygon fill="#d0e16e" points="359.97,226.81 351.68,215.91 349.39,217.97 357.58,228.89" /><polygon fill="#2dcf47" points="224.43,344.83 222.99,335.61 218.04,336.98 219.35,346.36" /><polygon fill="#f3a85b" points="449.10,193.16 452.46,189.28 445.71,183.64 442.48,187.50" /><polygon fill="#87f754" points="346.06,306.00 341.71,298.32 338.48,300.20 342.74,307.96" /><polygon fill="#69fb69" points="304.97,282.34 307.99,280.88 300.22,266.04 297.31,267.40" /><polygon fill="#b1f15f" points="358.73,270.46 366.98,282.27 370.05,280.16 361.66,268.42" /><polygon fill="#81e330" points="339.42,309.89 340.75,312.78 344.14,310.81 342.74,307.96" /><polygon fill="#b19c0d" points="434.29,236.16 437.58,236.99 441.09,233.80 437.68,233.03" /><polygon fill="#d8db7b" points="353.92,213.84 356.11,211.74 351.57,205.33 349.42,207.43" /><polygon fill="#abef54" points="372.14,289.46 366.98,282.27 363.88,284.35 368.94,291.60" /><polygon fill="#36c632" points="219.51,355.06 224.74,353.38 224.43,344.83 219.35,346.36" /><polygon fill="#a7db30" points="372.14,289.46 374.12,291.94 377.36,289.74 375.32,287.29" /><polygon fill="#c7e669" points="362.70,246.41 365.31,244.32 355.14,230.95 352.67,232.98" /><polygon fill="#f0b697" points="399.50,190.76 402.06,195.33 404.55,192.31 401.98,187.69" /><polygon fill="#45d332" points="267.10,333.88 262.93,335.49 263.70,342.57 267.99,340.85" /><polygon fill="#73fc65" points="322.05,292.85 314.01,277.83 311.00,279.37 318.92,294.51" /><polygon fill="#e8bd57" points="414.05,214.05 411.16,217.03 420.14,225.48 423.20,222.46" /><polygon fill="#82f754" points="338.48,300.20 335.25,302.06 339.42,309.89 342.74,307.96" /><polygon fill="#7dfb5f" points="332.02,303.88 335.25,302.06 328.29,289.43 325.17,291.16" /><polygon fill="#e89fc1" points="440.58,174.85 441.35,178.53 444.41,174.60 443.66,170.83" /><polygon fill="#3ddf4b" points="260.40,325.00 262.93,335.49 267.10,333.88 264.45,323.54" /><polygon fill="#c69818" points="474.64,200.04 468.21,198.43 464.44,202.42 470.67,204.14" /><polygon fill="#4fb6e8" points="238.24,290.93 236.17,290.76 232.26,291.62 234.41,291.77" /><polygon fill="#bfeb65" points="370.27,262.17 360.04,248.47 357.36,250.52 367.43,264.27" /><polygon fill="#afed54" points="370.05,280.16 366.98,282.27 372.14,289.46 375.32,287.29" /><polygon fill="#b5ef5f" points="370.05,280.16 373.09,278.03 364.56,266.36 361.66,268.42" /><polygon fill="#7ee330" points="337.35,314.72 340.75,312.78 339.42,309.89 336.08,311.79" /><polygon fill="#50ecaf" points="272.95,254.12 271.40,252.46 268.56,253.39 270.13,255.05" /><polygon fill="#5bf86e" points="285.26,257.79 282.41,258.92 288.58,271.18 291.49,269.97" /><polygon fill="#abd930" points="377.36,289.74 380.58,287.52 378.47,285.11 375.32,287.29" /><polygon fill="#eba547" points="460.39,194.53 452.46,189.28 449.10,193.16 456.83,198.44" /><polygon fill="#35e262" points="252.84,314.39 256.77,313.14 252.72,301.91 248.87,303.03" /><polygon fill="#65fa69" points="294.40,268.71 301.96,283.75 304.97,282.34 297.31,267.40" /><polygon fill="#d8ceaf" points="355.71,201.08 354.90,198.93 352.84,201.09 353.67,203.21" /><polygon fill="#51f67b" points="272.95,254.12 276.74,261.03 279.57,260.00 275.77,253.14" /><polygon fill="#7df754" points="339.42,309.89 335.25,302.06 332.02,303.88 336.08,311.79" /><polygon fill="#d7b332" points="431.60,229.28 428.36,232.35 434.29,236.16 437.68,233.03" /><polygon fill="#d3de6e" points="353.92,213.84 351.68,215.91 359.97,226.81 362.31,224.71" /><polygon fill="#78fb5f" points="322.05,292.85 328.78,305.68 332.02,303.88 325.17,291.16" /><polygon fill="#dfa132" points="464.44,202.42 468.21,198.43 460.39,194.53 456.83,198.44" /><polygon fill="#e4ba4b" points="420.14,225.48 428.36,232.35 431.60,229.28 423.20,222.46" /><polygon fill="#b4eb54" points="378.47,285.11 373.09,278.03 370.05,280.16 375.32,287.29" /><polygon fill="#6efb65" points="311.00,279.37 307.99,280.88 315.79,296.12 318.92,294.51" /><polygon fill="#cbe369" points="355.14,230.95 365.31,244.32 367.88,242.22 357.58,228.89" /><polygon fill="#c39de8" points="404.38,184.60 405.19,182.58 402.75,185.74 401.98,187.69" /><polygon fill="#baec5f" points="364.56,266.36 373.09,278.03 376.10,275.88 367.43,264.27" /><polygon fill="#dbd87b" points="351.57,205.33 356.11,211.74 358.25,209.63 353.67,203.21" /><polygon fill="#7ae330" points="332.75,313.66 333.95,316.64 337.35,314.72 336.08,311.79" /><polygon fill="#20d47a" points="213.15,322.36 208.28,323.43 210.99,329.63 215.87,328.48" /><polygon fill="#c3e865" points="362.70,246.41 360.04,248.47 370.27,262.17 373.08,260.04" /><polygon fill="#aed730" points="378.47,285.11 380.58,287.52 383.77,285.28 381.60,282.91" /><polygon fill="#edba62" points="414.05,214.05 416.86,211.05 408.32,202.54 405.65,205.53" /><polygon fill="#2fe171" points="245.08,294.28 241.27,295.24 245.04,304.08 248.87,303.03" /><polygon fill="#78f754" points="332.02,303.88 328.78,305.68 332.75,313.66 336.08,311.79" /><polygon fill="#73fa5f" points="325.53,307.44 328.78,305.68 322.05,292.85 318.92,294.51" /><polygon fill="#b8e954" points="376.10,275.88 373.09,278.03 378.47,285.11 381.60,282.91" /><polygon fill="#56f76e" points="288.58,271.18 282.41,258.92 279.57,260.00 285.68,272.34" /><polygon fill="#60f969" points="298.95,285.12 301.96,283.75 294.40,268.71 291.49,269.97" /><polygon fill="#4ceaaf" points="268.56,253.39 265.72,254.25 267.33,255.92 270.13,255.05" /><polygon fill="#beea5f" points="376.10,275.88 379.09,273.72 370.27,262.17 367.43,264.27" /><polygon fill="#6afa65" points="315.79,296.12 307.99,280.88 304.97,282.34 312.66,297.70" /><polygon fill="#76e330" points="330.55,318.52 333.95,316.64 332.75,313.66 329.41,315.49" /><polygon fill="#5dad0d" points="258.54,347.69 262.93,345.96 263.70,342.57 259.41,344.23" /><polygon fill="#d7db6e" points="364.60,222.59 356.11,211.74 353.92,213.84 362.31,224.71" /><polygon fill="#cfe069" points="367.88,242.22 370.42,240.10 359.97,226.81 357.58,228.89" /><polygon fill="#f9a47a" points="444.41,174.60 441.35,178.53 445.71,183.64 448.84,179.74" /><polygon fill="#4cf47b" points="273.92,261.99 276.74,261.03 272.95,254.12 270.13,255.05" /><polygon fill="#f1b771" points="404.55,192.31 402.06,195.33 408.32,202.54 410.91,199.54" /><polygon fill="#c7e665" points="375.85,257.90 365.31,244.32 362.70,246.41 373.08,260.04" /><polygon fill="#b2d530" points="383.77,285.28 386.94,283.03 384.69,280.70 381.60,282.91" /><polygon fill="#2cdd97" points="237.48,296.11 241.27,295.24 238.24,290.93 234.41,291.77" /><polygon fill="#689404" points="212.80,363.26 210.34,367.17 215.93,365.32 218.22,361.52" /><polygon fill="#36e057" points="260.40,325.00 256.77,313.14 252.84,314.39 256.36,326.40" /><polygon fill="#dbcbaf" points="356.90,196.74 354.90,198.93 355.71,201.08 357.69,198.92" /><polygon fill="#74f754" points="332.75,313.66 328.78,305.68 325.53,307.44 329.41,315.49" /><polygon fill="#dfd47b" points="358.25,209.63 360.33,207.50 355.71,201.08 353.67,203.21" /><polygon fill="#bce754" points="384.69,280.70 379.09,273.72 376.10,275.88 381.60,282.91" /><polygon fill="#6ffa5f" points="315.79,296.12 322.29,309.16 325.53,307.44 318.92,294.51" /><polygon fill="#24d15b" points="210.99,329.63 213.09,338.27 218.04,336.98 215.87,328.48" /><polygon fill="#c2e75f" points="370.27,262.17 379.09,273.72 382.04,271.54 373.08,260.04" /><polygon fill="#b29a0d" points="441.09,233.80 444.54,230.58 441.02,229.89 437.68,233.03" /><polygon fill="#72e230" points="326.07,317.30 327.15,320.37 330.55,318.52 329.41,315.49" /><polygon fill="#f2b297" points="404.55,192.31 406.96,189.27 404.38,184.60 401.98,187.69" /><polygon fill="#eab957" points="426.20,219.42 416.86,211.05 414.05,214.05 423.20,222.46" /><polygon fill="#65f965" points="304.97,282.34 301.96,283.75 309.53,299.23 312.66,297.70" /><polygon fill="#5bf869" points="288.58,271.18 295.94,286.45 298.95,285.12 291.49,269.97" /><polygon fill="#42d032" points="263.70,342.57 262.93,335.49 258.77,337.03 259.41,344.23" /><polygon fill="#51f56e" points="279.57,260.00 276.74,261.03 282.78,273.45 285.68,272.34" /><polygon fill="#39dc4b" points="258.77,337.03 262.93,335.49 260.40,325.00 256.36,326.40" /><polygon fill="#b5d330" points="384.69,280.70 386.94,283.03 390.07,280.77 387.76,278.47" /><polygon fill="#4db4e8" points="232.26,291.62 228.37,292.38 230.61,292.52 234.41,291.77" /><polygon fill="#6ff654" points="325.53,307.44 322.29,309.16 326.07,317.30 329.41,315.49" /><polygon fill="#cbe365" points="367.88,242.22 365.31,244.32 375.85,257.90 378.58,255.75" /><polygon fill="#2bc5c1" points="203.42,324.40 208.28,323.43 205.24,321.12 200.29,322.07" /><polygon fill="#9d8804" points="474.64,200.04 479.10,199.61 483.17,195.36 478.55,195.92" /><polygon fill="#d3dd69" points="359.97,226.81 370.42,240.10 372.90,237.96 362.31,224.71" /><polygon fill="#dbd76e" points="358.25,209.63 356.11,211.74 364.60,222.59 366.84,220.46" /><polygon fill="#48e8af" points="267.33,255.92 265.72,254.25 262.89,255.06 264.54,256.72" /><polygon fill="#31df62" points="245.04,304.08 248.93,315.56 252.84,314.39 248.87,303.03" /><polygon fill="#c0e454" points="382.04,271.54 379.09,273.72 384.69,280.70 387.76,278.47" /><polygon fill="#48b118" points="219.51,355.06 214.28,356.67 212.80,363.26 218.22,361.52" /><polygon fill="#6af95f" points="319.04,310.85 322.29,309.16 315.79,296.12 312.66,297.70" /><polygon fill="#48f27b" points="267.33,255.92 271.10,262.90 273.92,261.99 270.13,255.05" /><polygon fill="#f4a35b" points="445.71,183.64 452.46,189.28 455.75,185.38 448.84,179.74" /><polygon fill="#2acb47" points="218.04,336.98 213.09,338.27 214.28,347.80 219.35,346.36" /><polygon fill="#d9af32" points="441.02,229.89 434.78,226.20 431.60,229.28 437.68,233.03" /><polygon fill="#e6b64b" points="431.60,229.28 434.78,226.20 426.20,219.42 423.20,222.46" /><polygon fill="#c6e55f" points="382.04,271.54 384.96,269.35 375.85,257.90 373.08,260.04" /><polygon fill="#dec7af" points="359.62,196.75 358.83,194.55 356.90,196.74 357.69,198.92" /><polygon fill="#6ee230" points="323.75,322.18 327.15,320.37 326.07,317.30 322.73,319.07" /><polygon fill="#c49ae8" points="407.55,179.40 405.19,182.58 404.38,184.60 406.68,181.50" /><polygon fill="#e2d07b" points="355.71,201.08 360.33,207.50 362.36,205.36 357.69,198.92" /><polygon fill="#34c332" points="214.28,347.80 214.28,356.67 219.51,355.06 219.35,346.36" /><polygon fill="#60f865" points="309.53,299.23 301.96,283.75 298.95,285.12 306.41,300.73" /><polygon fill="#efb662" points="408.32,202.54 416.86,211.05 419.60,208.03 410.91,199.54" /><polygon fill="#b8d130" points="390.07,280.77 393.17,278.49 390.79,276.23 387.76,278.47" /><polygon fill="#6af554" points="326.07,317.30 322.29,309.16 319.04,310.85 322.73,319.07" /><polygon fill="#2bde71" points="245.04,304.08 241.27,295.24 237.48,296.11 241.22,305.04" /><polygon fill="#56f669" points="292.94,287.72 295.94,286.45 288.58,271.18 285.68,272.34" /><polygon fill="#e99bc1" points="444.41,174.60 447.37,170.63 446.64,166.78 443.66,170.83" /><polygon fill="#cfe065" points="381.28,253.58 370.42,240.10 367.88,242.22 378.58,255.75" /><polygon fill="#4df36e" points="282.78,273.45 276.74,261.03 273.92,261.99 279.89,274.50" /><polygon fill="#c4e254" points="390.79,276.23 384.96,269.35 382.04,271.54 387.76,278.47" /><polygon fill="#c69518" points="471.91,194.41 468.21,198.43 474.64,200.04 478.55,195.92" /><polygon fill="#d6da69" points="372.90,237.96 375.34,235.80 364.60,222.59 362.31,224.71" /><polygon fill="#65f85f" points="309.53,299.23 315.80,312.50 319.04,310.85 312.66,297.70" /><polygon fill="#eda147" points="455.75,185.38 452.46,189.28 460.39,194.53 463.87,190.58" /><polygon fill="#ded36e" points="369.03,218.31 360.33,207.50 358.25,209.63 366.84,220.46" /><polygon fill="#cae25f" points="375.85,257.90 384.96,269.35 387.85,267.14 378.58,255.75" /><polygon fill="#f4b271" points="413.41,196.52 406.96,189.27 404.55,192.31 410.91,199.54" /><polygon fill="#44e6af" points="262.89,255.06 260.08,255.80 261.76,257.47 264.54,256.72" /><polygon fill="#33dd57" points="252.84,314.39 248.93,315.56 252.34,327.72 256.36,326.40" /><polygon fill="#29da97" points="230.61,292.52 233.72,296.90 237.48,296.11 234.41,291.77" /><polygon fill="#6ae130" points="319.40,320.80 320.36,323.96 323.75,322.18 322.73,319.07" /><polygon fill="#e19d32" points="460.39,194.53 468.21,198.43 471.91,194.41 463.87,190.58" /><polygon fill="#43f07b" points="268.30,263.75 271.10,262.90 267.33,255.92 264.54,256.72" /><polygon fill="#5bac0d" points="255.14,345.82 254.16,349.35 258.54,347.69 259.41,344.23" /><polygon fill="#1dd07a" points="210.99,329.63 208.28,323.43 203.42,324.40 206.13,330.69" /><polygon fill="#5bf765" points="298.95,285.12 295.94,286.45 303.29,302.18 306.41,300.73" /><polygon fill="#66f454" points="319.04,310.85 315.80,312.50 319.40,320.80 322.73,319.07" /><polygon fill="#bccf30" points="390.79,276.23 393.17,278.49 396.24,276.20 393.79,273.98" /><polygon fill="#e1c3af" points="360.71,192.33 358.83,194.55 359.62,196.75 361.48,194.57" /><polygon fill="#e5cc7b" points="362.36,205.36 364.32,203.20 359.62,196.75 357.69,198.92" /><polygon fill="#52f469" points="282.78,273.45 289.95,288.95 292.94,287.72 285.68,272.34" /><polygon fill="#d2dd65" points="372.90,237.96 370.42,240.10 381.28,253.58 383.92,251.39" /><polygon fill="#c8df54" points="387.85,267.14 384.96,269.35 390.79,276.23 393.79,273.98" /><polygon fill="#ecb457" points="419.60,208.03 416.86,211.05 426.20,219.42 429.12,216.38" /><polygon fill="#f4ad97" points="404.38,184.60 406.96,189.27 409.29,186.22 406.68,181.50" /><polygon fill="#60f75f" points="312.56,314.11 315.80,312.50 309.53,299.23 306.41,300.73" /><polygon fill="#48f16e" points="273.92,261.99 271.10,262.90 277.02,275.50 279.89,274.50" /><polygon fill="#b3980d" points="441.02,229.89 444.54,230.58 447.93,227.35 444.29,226.73" /><polygon fill="#dad669" points="364.60,222.59 375.34,235.80 377.73,233.64 366.84,220.46" /><polygon fill="#36d94b" points="252.34,327.72 254.63,338.51 258.77,337.03 256.36,326.40" /><polygon fill="#3fce32" points="258.77,337.03 254.63,338.51 255.14,345.82 259.41,344.23" /><polygon fill="#cedf5f" points="387.85,267.14 390.69,264.92 381.28,253.58 378.58,255.75" /><polygon fill="#fba07a" points="451.88,175.81 447.37,170.63 444.41,174.60 448.84,179.74" /><polygon fill="#4bb2e8" points="230.61,292.52 228.37,292.38 224.50,293.05 226.83,293.18" /><polygon fill="#2ddc62" points="245.04,316.66 248.93,315.56 245.04,304.08 241.22,305.04" /><polygon fill="#e1d06e" points="362.36,205.36 360.33,207.50 369.03,218.31 371.16,216.15" /><polygon fill="#66e030" points="316.96,325.70 320.36,323.96 319.40,320.80 316.07,322.50" /><polygon fill="#61f354" points="319.40,320.80 315.80,312.50 312.56,314.11 316.07,322.50" /><polygon fill="#57f565" points="303.29,302.18 295.94,286.45 292.94,287.72 300.17,303.58" /><polygon fill="#bfcc30" points="396.24,276.20 399.28,273.90 396.76,271.71 393.79,273.98" /><polygon fill="#40e3af" points="261.76,257.47 260.08,255.80 257.29,256.48 259.00,258.15" /><polygon fill="#689304" points="204.74,368.93 210.34,367.17 212.80,363.26 207.39,364.93" /><polygon fill="#e8b24b" points="426.20,219.42 434.78,226.20 437.89,223.10 429.12,216.38" /><polygon fill="#21cd5b" points="208.15,339.46 213.09,338.27 210.99,329.63 206.13,330.69" /><polygon fill="#3fed7b" points="261.76,257.47 265.52,264.54 268.30,263.75 264.54,256.72" /><polygon fill="#dbac32" points="437.89,223.10 434.78,226.20 441.02,229.89 444.29,226.73" /><polygon fill="#cbdc54" points="396.76,271.71 390.69,264.92 387.85,267.14 393.79,273.98" /><polygon fill="#c597e8" points="408.90,178.38 409.81,176.21 407.55,179.40 406.68,181.50" /><polygon fill="#d6d965" points="386.53,249.20 375.34,235.80 372.90,237.96 383.92,251.39" /><polygon fill="#f1b162" points="419.60,208.03 422.26,205.00 413.41,196.52 410.91,199.54" /><polygon fill="#4df269" points="286.97,290.12 289.95,288.95 282.78,273.45 279.89,274.50" /><polygon fill="#5cf65f" points="303.29,302.18 309.33,315.68 312.56,314.11 306.41,300.73" /><polygon fill="#e3bfaf" points="363.27,192.38 362.51,190.11 360.71,192.33 361.48,194.57" /><polygon fill="#28db71" points="237.48,296.11 233.72,296.90 237.43,305.93 241.22,305.04" /><polygon fill="#e8c87b" points="359.62,196.75 364.32,203.20 366.23,201.03 361.48,194.57" /><polygon fill="#d1dc5f" points="381.28,253.58 390.69,264.92 393.50,262.69 383.92,251.39" /><polygon fill="#28c2c1" points="195.36,322.92 198.57,325.27 203.42,324.40 200.29,322.07" /><polygon fill="#ddd369" points="377.73,233.64 380.07,231.46 369.03,218.31 366.84,220.46" /><polygon fill="#44ef6e" points="277.02,275.50 271.10,262.90 268.30,263.75 274.16,276.44" /><polygon fill="#63df30" points="312.75,324.15 313.58,327.41 316.96,325.70 316.07,322.50" /><polygon fill="#f69e5b" points="455.75,185.38 458.94,181.44 451.88,175.81 448.84,179.74" /><polygon fill="#27c847" points="214.28,347.80 213.09,338.27 208.15,339.46 209.22,349.16" /><polygon fill="#f5ae71" points="409.29,186.22 406.96,189.27 413.41,196.52 415.83,193.48" /><polygon fill="#9d8704" points="483.17,195.36 487.17,191.08 482.37,191.75 478.55,195.92" /><polygon fill="#e4cc6e" points="373.24,213.98 364.32,203.20 362.36,205.36 371.16,216.15" /><polygon fill="#5df254" points="312.56,314.11 309.33,315.68 312.75,324.15 316.07,322.50" /><polygon fill="#46af18" points="212.80,363.26 214.28,356.67 209.05,358.19 207.39,364.93" /><polygon fill="#2fda57" points="252.34,327.72 248.93,315.56 245.04,316.66 248.35,328.98" /><polygon fill="#25d697" points="229.98,297.60 233.72,296.90 230.61,292.52 226.83,293.18" /><polygon fill="#52f465" points="292.94,287.72 289.95,288.95 297.07,304.94 300.17,303.58" /><polygon fill="#c2ca30" points="396.76,271.71 399.28,273.90 402.27,271.59 399.68,269.44" /><polygon fill="#cfd954" points="393.50,262.69 390.69,264.92 396.76,271.71 399.68,269.44" /><polygon fill="#31c032" points="209.05,358.19 214.28,356.67 214.28,347.80 209.22,349.16" /><polygon fill="#5aaa0d" points="249.79,350.95 254.16,349.35 255.14,345.82 250.89,347.35" /><polygon fill="#d9d665" points="377.73,233.64 375.34,235.80 386.53,249.20 389.09,246.99" /><polygon fill="#3beb7b" points="262.75,265.26 265.52,264.54 261.76,257.47 259.00,258.15" /><polygon fill="#57f45f" points="306.11,317.20 309.33,315.68 303.29,302.18 300.17,303.58" /><polygon fill="#3ce1af" points="257.29,256.48 254.52,257.09 256.26,258.76 259.00,258.15" /><polygon fill="#ea97c1" points="446.64,166.78 447.37,170.63 450.23,166.63 449.52,162.69" /><polygon fill="#49f069" points="277.02,275.50 284.00,291.24 286.97,290.12 279.89,274.50" /><polygon fill="#eeb057" points="431.96,213.32 422.26,205.00 419.60,208.03 429.12,216.38" /><polygon fill="#f6a997" points="409.29,186.22 411.52,183.15 408.90,178.38 406.68,181.50" /><polygon fill="#d5d85f" points="393.50,262.69 396.26,260.45 386.53,249.20 383.92,251.39" /><polygon fill="#ebc47b" points="366.23,201.03 368.06,198.85 363.27,192.38 361.48,194.57" /><polygon fill="#ee9c47" points="467.27,186.60 458.94,181.44 455.75,185.38 463.87,190.58" /><polygon fill="#e6bbaf" points="364.25,187.87 362.51,190.11 363.27,192.38 364.99,190.18" /><polygon fill="#e0cf69" points="369.03,218.31 380.07,231.46 382.35,229.27 371.16,216.15" /><polygon fill="#32d64b" points="250.51,339.91 254.63,338.51 252.34,327.72 248.35,328.98" /><polygon fill="#c79218" points="482.37,191.75 475.53,190.35 471.91,194.41 478.55,195.92" /><polygon fill="#40ec6e" points="268.30,263.75 265.52,264.54 271.32,277.32 274.16,276.44" /><polygon fill="#3ccb32" points="255.14,345.82 254.63,338.51 250.51,339.91 250.89,347.35" /><polygon fill="#5fde30" points="310.21,329.08 313.58,327.41 312.75,324.15 309.44,325.77" /><polygon fill="#b4960d" points="447.93,227.35 451.25,224.11 447.50,223.56 444.29,226.73" /><polygon fill="#2ad962" points="237.43,305.93 241.18,317.68 245.04,316.66 241.22,305.04" /><polygon fill="#1acc7a" points="203.42,324.40 198.57,325.27 201.28,331.65 206.13,330.69" /><polygon fill="#49b0e8" points="224.50,293.05 220.66,293.63 223.09,293.75 226.83,293.18" /><polygon fill="#58f154" points="312.75,324.15 309.33,315.68 306.11,317.20 309.44,325.77" /><polygon fill="#e29932" points="471.91,194.41 475.53,190.35 467.27,186.60 463.87,190.58" /><polygon fill="#c5c730" points="402.27,271.59 405.23,269.27 402.57,267.16 399.68,269.44" /><polygon fill="#e7c86e" points="366.23,201.03 364.32,203.20 373.24,213.98 375.25,211.80" /><polygon fill="#4ef265" points="297.07,304.94 289.95,288.95 286.97,290.12 293.98,306.25" /><polygon fill="#d2d654" points="402.57,267.16 396.26,260.45 393.50,262.69 399.68,269.44" /><polygon fill="#eaae4b" points="437.89,223.10 440.93,220.00 431.96,213.32 429.12,216.38" /><polygon fill="#53f25f" points="297.07,304.94 302.90,318.69 306.11,317.20 300.17,303.58" /><polygon fill="#ddd265" points="391.59,244.77 380.07,231.46 377.73,233.64 389.09,246.99" /><polygon fill="#dca832" points="447.50,223.56 440.93,220.00 437.89,223.10 444.29,226.73" /><polygon fill="#f3ad62" points="413.41,196.52 422.26,205.00 424.83,201.96 415.83,193.48" /><polygon fill="#c695e8" points="411.97,173.00 409.81,176.21 408.90,178.38 411.01,175.25" /><polygon fill="#24d771" points="237.43,305.93 233.72,296.90 229.98,297.60 233.67,306.73" /><polygon fill="#37e87b" points="256.26,258.76 260.01,265.92 262.75,265.26 259.00,258.15" /><polygon fill="#44ee69" points="281.05,292.30 284.00,291.24 277.02,275.50 274.16,276.44" /><polygon fill="#38deaf" points="256.26,258.76 254.52,257.09 251.77,257.63 253.55,259.30" /><polygon fill="#d8d55f" points="386.53,249.20 396.26,260.45 398.98,258.20 389.09,246.99" /><polygon fill="#fc9b7a" points="450.23,166.63 447.37,170.63 451.88,175.81 454.82,171.85" /><polygon fill="#e3cb69" points="382.35,229.27 384.57,227.07 373.24,213.98 371.16,216.15" /><polygon fill="#edc07b" points="363.27,192.38 368.06,198.85 369.83,196.66 364.99,190.18" /><polygon fill="#5bdc30" points="306.14,327.35 306.84,330.70 310.21,329.08 309.44,325.77" /><polygon fill="#e8b7af" points="366.64,187.97 365.91,185.63 364.25,187.87 364.99,190.18" /><polygon fill="#3bea6e" points="271.32,277.32 265.52,264.54 262.75,265.26 268.50,278.13" /><polygon fill="#f7a971" points="418.16,190.44 411.52,183.15 409.29,186.22 415.83,193.48" /><polygon fill="#54ef54" points="306.11,317.20 302.90,318.69 306.14,327.35 309.44,325.77" /><polygon fill="#1ec95b" points="201.28,331.65 203.23,340.55 208.15,339.46 206.13,330.69" /><polygon fill="#2cd757" points="245.04,316.66 241.18,317.68 244.37,330.16 248.35,328.98" /><polygon fill="#22d397" points="223.09,293.75 226.28,298.22 229.98,297.60 226.83,293.18" /><polygon fill="#c7c530" points="402.57,267.16 405.23,269.27 408.14,266.95 405.40,264.87" /><polygon fill="#49f065" points="286.97,290.12 284.00,291.24 290.91,307.51 293.98,306.25" /><polygon fill="#d6d254" points="398.98,258.20 396.26,260.45 402.57,267.16 405.40,264.87" /><polygon fill="#eac46e" points="377.19,209.61 368.06,198.85 366.23,201.03 375.25,211.80" /><polygon fill="#679204" points="201.98,366.50 199.14,370.61 204.74,368.93 207.39,364.93" /><polygon fill="#4ef15f" points="299.70,320.12 302.90,318.69 297.07,304.94 293.98,306.25" /><polygon fill="#e0cf65" points="382.35,229.27 380.07,231.46 391.59,244.77 394.05,242.55" /><polygon fill="#26bec1" points="193.74,326.03 198.57,325.27 195.36,322.92 190.44,323.65" /><polygon fill="#58a90d" points="246.66,348.80 245.44,352.48 249.79,350.95 250.89,347.35" /><polygon fill="#f0ac57" points="424.83,201.96 422.26,205.00 431.96,213.32 434.73,210.25" /><polygon fill="#f7a497" points="408.90,178.38 411.52,183.15 413.65,180.08 411.01,175.25" /><polygon fill="#40ec69" points="271.32,277.32 278.12,293.31 281.05,292.30 274.16,276.44" /><polygon fill="#dcd15f" points="398.98,258.20 401.65,255.94 391.59,244.77 389.09,246.99" /><polygon fill="#f79a5b" points="451.88,175.81 458.94,181.44 462.04,177.48 454.82,171.85" /><polygon fill="#33e57b" points="257.29,266.51 260.01,265.92 256.26,258.76 253.55,259.30" /><polygon fill="#25c447" points="208.15,339.46 203.23,340.55 204.17,350.42 209.22,349.16" /><polygon fill="#2fd34b" points="244.37,330.16 246.41,341.25 250.51,339.91 248.35,328.98" /><polygon fill="#34dbaf" points="251.77,257.63 249.05,258.10 250.86,259.78 253.55,259.30" /><polygon fill="#26d562" points="237.34,318.62 241.18,317.68 237.43,305.93 233.67,306.73" /><polygon fill="#e6c769" points="373.24,213.98 384.57,227.07 386.74,224.87 375.25,211.80" /><polygon fill="#39c932" points="250.51,339.91 246.41,341.25 246.66,348.80 250.89,347.35" /><polygon fill="#58db30" points="303.50,332.28 306.84,330.70 306.14,327.35 302.86,328.88" /><polygon fill="#44ac18" points="209.05,358.19 203.83,359.62 201.98,366.50 207.39,364.93" /><polygon fill="#47aee8" points="223.09,293.75 220.66,293.63 216.86,294.12 219.37,294.23" /><polygon fill="#f0bc7b" points="369.83,196.66 371.53,194.47 366.64,187.97 364.99,190.18" /><polygon fill="#50ed54" points="306.14,327.35 302.90,318.69 299.70,320.12 302.86,328.88" /><polygon fill="#b5940d" points="447.50,223.56 451.25,224.11 454.50,220.86 450.62,220.38" /><polygon fill="#9e8604" points="482.37,191.75 487.17,191.08 491.10,186.75 486.12,187.55" /><polygon fill="#37e76e" points="262.75,265.26 260.01,265.92 265.70,278.89 268.50,278.13" /><polygon fill="#eab3af" points="367.50,183.38 365.91,185.63 366.64,187.97 368.22,185.75" /><polygon fill="#2fbd32" points="204.17,350.42 203.83,359.62 209.05,358.19 209.22,349.16" /><polygon fill="#eb93c1" points="450.23,166.63 452.98,162.61 452.28,158.57 449.52,162.69" /><polygon fill="#45ed65" points="290.91,307.51 284.00,291.24 281.05,292.30 287.85,308.71" /><polygon fill="#cac230" points="408.14,266.95 411.01,264.61 408.20,262.57 405.40,264.87" /><polygon fill="#d9cf54" points="408.20,262.57 401.65,255.94 398.98,258.20 405.40,264.87" /><polygon fill="#ebaa4b" points="431.96,213.32 440.93,220.00 443.89,216.88 434.73,210.25" /><polygon fill="#f5a862" points="424.83,201.96 427.32,198.91 418.16,190.44 415.83,193.48" /><polygon fill="#ecbf6e" points="369.83,196.66 368.06,198.85 377.19,209.61 379.07,207.42" /><polygon fill="#4aef5f" points="290.91,307.51 296.53,321.51 299.70,320.12 293.98,306.25" /><polygon fill="#21d471" points="229.98,297.60 226.28,298.22 229.94,307.44 233.67,306.73" /><polygon fill="#ef9847" points="462.04,177.48 458.94,181.44 467.27,186.60 470.57,182.59" /><polygon fill="#dea432" points="443.89,216.88 440.93,220.00 447.50,223.56 450.62,220.38" /><polygon fill="#e3cb65" points="396.45,240.32 384.57,227.07 382.35,229.27 394.05,242.55" /><polygon fill="#c692e8" points="413.03,172.11 414.03,169.78 411.97,173.00 411.01,175.25" /><polygon fill="#17c87a" points="201.28,331.65 198.57,325.27 193.74,326.03 196.45,332.50" /><polygon fill="#dfce5f" points="391.59,244.77 401.65,255.94 404.27,253.68 394.05,242.55" /><polygon fill="#c88f18" points="479.06,186.26 475.53,190.35 482.37,191.75 486.12,187.55" /><polygon fill="#3ce969" points="275.21,294.26 278.12,293.31 271.32,277.32 268.50,278.13" /><polygon fill="#e39532" points="467.27,186.60 475.53,190.35 479.06,186.26 470.57,182.59" /><polygon fill="#2fe27b" points="250.86,259.78 254.60,267.04 257.29,266.51 253.55,259.30" /><polygon fill="#f9a471" points="413.65,180.08 411.52,183.15 418.16,190.44 420.40,187.39" /><polygon fill="#28d357" points="244.37,330.16 241.18,317.68 237.34,318.62 240.43,331.26" /><polygon fill="#e9c369" points="386.74,224.87 388.84,222.66 377.19,209.61 375.25,211.80" /><polygon fill="#31d8af" points="250.86,259.78 249.05,258.10 246.36,258.50 248.21,260.19" /><polygon fill="#54d930" points="299.59,330.36 300.16,333.82 303.50,332.28 302.86,328.88" /><polygon fill="#1fcf97" points="222.61,298.73 226.28,298.22 223.09,293.75 219.37,294.23" /><polygon fill="#4beb54" points="299.70,320.12 296.53,321.51 299.59,330.36 302.86,328.88" /><polygon fill="#f2b77b" points="366.64,187.97 371.53,194.47 373.15,192.27 368.22,185.75" /><polygon fill="#33e46e" points="265.70,278.89 260.01,265.92 257.29,266.51 262.92,279.58" /><polygon fill="#fd967a" points="457.66,167.87 452.98,162.61 450.23,166.63 454.82,171.85" /><polygon fill="#40eb65" points="281.05,292.30 278.12,293.31 284.82,309.86 287.85,308.71" /><polygon fill="#ccbf30" points="408.20,262.57 411.01,264.61 413.82,262.28 410.94,260.27" /><polygon fill="#dccb54" points="404.27,253.68 401.65,255.94 408.20,262.57 410.94,260.27" /><polygon fill="#ecafaf" points="369.72,183.54 369.00,181.13 367.50,183.38 368.22,185.75" /><polygon fill="#f2a757" points="437.41,207.17 427.32,198.91 424.83,201.96 434.73,210.25" /><polygon fill="#45ec5f" points="293.36,322.86 296.53,321.51 290.91,307.51 287.85,308.71" /><polygon fill="#efbb6e" points="380.88,205.22 371.53,194.47 369.83,196.66 379.07,207.42" /><polygon fill="#f99f97" points="413.65,180.08 415.69,177.00 413.03,172.11 411.01,175.25" /><polygon fill="#e6c765" points="386.74,224.87 384.57,227.07 396.45,240.32 398.79,238.08" /><polygon fill="#56a70d" points="241.12,353.94 245.44,352.48 246.66,348.80 242.46,350.18" /><polygon fill="#1bc55b" points="198.33,341.54 203.23,340.55 201.28,331.65 196.45,332.50" /><polygon fill="#e2ca5f" points="404.27,253.68 406.84,251.41 396.45,240.32 394.05,242.55" /><polygon fill="#23d262" points="229.94,307.44 233.54,319.47 237.34,318.62 233.67,306.73" /><polygon fill="#2cd04b" points="242.33,342.51 246.41,341.25 244.37,330.16 240.43,331.26" /><polygon fill="#38e669" points="265.70,278.89 272.33,295.15 275.21,294.26 268.50,278.13" /><polygon fill="#45ace8" points="216.86,294.12 213.09,294.50 215.70,294.60 219.37,294.23" /><polygon fill="#36c632" points="246.66,348.80 246.41,341.25 242.33,342.51 242.46,350.18" /><polygon fill="#2bdf7b" points="251.94,267.49 254.60,267.04 250.86,259.78 248.21,260.19" /><polygon fill="#ecbf69" points="377.19,209.61 388.84,222.66 390.88,220.44 379.07,207.42" /><polygon fill="#5a7906" points="497.33,179.67 494.94,182.39 491.10,186.75 493.38,184.17" /><polygon fill="#23bac1" points="185.54,324.27 188.94,326.67 193.74,326.03 190.44,323.65" /><polygon fill="#b5920d" points="454.50,220.86 457.67,217.59 453.68,217.19 450.62,220.38" /><polygon fill="#47e954" points="299.59,330.36 296.53,321.51 293.36,322.86 296.34,331.80" /><polygon fill="#51d730" points="296.85,335.31 300.16,333.82 299.59,330.36 296.34,331.80" /><polygon fill="#9af8a0" points="297.68,202.56 295.87,199.65 294.47,200.53 296.31,203.43" /><polygon fill="#95f9a0" points="294.47,200.53 293.06,201.39 294.92,204.27 296.31,203.43" /><polygon fill="#f6a462" points="418.16,190.44 427.32,198.91 429.72,195.85 420.40,187.39" /><polygon fill="#9ff7a0" points="297.26,198.74 295.87,199.65 297.68,202.56 299.03,201.67" /><polygon fill="#2dd5af" points="246.36,258.50 243.69,258.82 245.58,260.52 248.21,260.19" /><polygon fill="#eda64b" points="443.89,216.88 446.77,213.76 437.41,207.17 434.73,210.25" /><polygon fill="#669104" points="193.55,372.20 199.14,370.61 201.98,366.50 196.57,367.98" /><polygon fill="#90faa0" points="294.92,204.27 293.06,201.39 291.63,202.22 293.52,205.08" /><polygon fill="#a3f5a0" points="300.37,200.76 298.63,197.80 297.26,198.74 299.03,201.67" /><polygon fill="#f8955b" points="462.04,177.48 465.03,173.49 457.66,167.87 454.82,171.85" /><polygon fill="#1ed071" points="229.94,307.44 226.28,298.22 222.61,298.73 226.24,308.06" /><polygon fill="#8cfaa0" points="291.63,202.22 290.18,203.03 292.11,205.87 293.52,205.08" /><polygon fill="#a8f4a0" points="299.97,196.85 298.63,197.80 300.37,200.76 301.69,199.83" /><polygon fill="#f4b37b" points="373.15,192.27 374.69,190.07 369.72,183.54 368.22,185.75" /><polygon fill="#2fe16e" points="257.29,266.51 254.60,267.04 260.18,280.21 262.92,279.58" /><polygon fill="#3ce865" points="284.82,309.86 278.12,293.31 275.21,294.26 281.80,310.96" /><polygon fill="#87faa0" points="292.11,205.87 290.18,203.03 288.73,203.81 290.69,206.64" /><polygon fill="#22c147" points="204.17,350.42 203.23,340.55 198.33,341.54 199.14,351.58" /><polygon fill="#dfc854" points="413.64,257.97 406.84,251.41 404.27,253.68 410.94,260.27" /><polygon fill="#cfbc30" points="413.82,262.28 416.59,259.94 413.64,257.97 410.94,260.27" /><polygon fill="#acf2a0" points="302.99,198.88 301.30,195.88 299.97,196.85 301.69,199.83" /><polygon fill="#c78fe8" points="415.98,166.54 414.03,169.78 413.03,172.11 414.93,168.96" /><polygon fill="#dfa132" points="453.68,217.19 446.77,213.76 443.89,216.88 450.62,220.38" /><polygon fill="#82fba0" points="288.73,203.81 287.27,204.56 289.26,207.37 290.69,206.64" /><polygon fill="#eeabaf" points="370.43,178.87 369.00,181.13 369.72,183.54 371.14,181.32" /><polygon fill="#b1f0a0" points="302.60,194.88 301.30,195.88 302.99,198.88 304.27,197.90" /><polygon fill="#41ea5f" points="284.82,309.86 290.23,324.15 293.36,322.86 287.85,308.71" /><polygon fill="#e8c365" points="401.07,235.84 388.84,222.66 386.74,224.87 398.79,238.08" /><polygon fill="#f1b76e" points="373.15,192.27 371.53,194.47 380.88,205.22 382.62,203.02" /><polygon fill="#7dfba0" points="289.26,207.37 287.27,204.56 285.80,205.28 287.83,208.08" /><polygon fill="#b5eea0" points="305.52,196.92 303.88,193.87 302.60,194.88 304.27,197.90" /><polygon fill="#43aa18" points="201.98,366.50 203.83,359.62 198.63,360.95 196.57,367.98" /><polygon fill="#fa9f71" points="422.54,184.33 415.69,177.00 413.65,180.08 420.40,187.39" /><polygon fill="#ec8ec1" points="452.28,158.57 452.98,162.61 455.62,158.55 454.93,154.42" /><polygon fill="#2cba32" points="198.63,360.95 203.83,359.62 204.17,350.42 199.14,351.58" /><polygon fill="#78faa0" points="285.80,205.28 284.33,205.97 286.39,208.76 287.83,208.08" /><polygon fill="#e5c65f" points="396.45,240.32 406.84,251.41 409.35,249.14 398.79,238.08" /><polygon fill="#baeca0" points="305.14,192.84 303.88,193.87 305.52,196.92 306.75,195.91" /><polygon fill="#25d057" points="237.34,318.62 233.54,319.47 236.51,332.27 240.43,331.26" /><polygon fill="#1ccb97" points="215.70,294.60 218.98,299.15 222.61,298.73 219.37,294.23" /><polygon fill="#9e8504" points="491.10,186.75 494.94,182.39 489.78,183.32 486.12,187.55" /><polygon fill="#34e369" points="269.47,295.97 272.33,295.15 265.70,278.89 262.92,279.58" /><polygon fill="#73faa0" points="286.39,208.76 284.33,205.97 282.86,206.63 284.95,209.41" /><polygon fill="#f09447" points="473.77,178.55 465.03,173.49 462.04,177.48 470.57,182.59" /><polygon fill="#beeaa0" points="307.95,194.89 306.37,191.79 305.14,192.84 306.75,195.91" /><polygon fill="#14c47a" points="193.74,326.03 188.94,326.67 191.65,333.23 196.45,332.50" /><polygon fill="#27db7b" points="245.58,260.52 249.31,267.88 251.94,267.49 248.21,260.19" /><polygon fill="#eebb69" points="390.88,220.44 392.84,218.23 380.88,205.22 379.07,207.42" /><polygon fill="#6ffaa0" points="282.86,206.63 281.38,207.25 283.50,210.02 284.95,209.41" /><polygon fill="#43e754" points="293.36,322.86 290.23,324.15 293.12,333.19 296.34,331.80" /><polygon fill="#4dd530" points="293.12,333.19 293.56,336.75 296.85,335.31 296.34,331.80" /><polygon fill="#c2e7a0" points="307.57,190.72 306.37,191.79 307.95,194.89 309.13,193.85" /><polygon fill="#f3a357" points="429.72,195.85 427.32,198.91 437.41,207.17 440.01,204.08" /><polygon fill="#fa9a97" points="413.03,172.11 415.69,177.00 417.62,173.91 414.93,168.96" /><polygon fill="#c88d18" points="489.78,183.32 482.50,182.14 479.06,186.26 486.12,187.55" /><polygon fill="#2ad2af" points="245.58,260.52 243.69,258.82 241.07,259.07 242.99,260.78" /><polygon fill="#e39132" points="479.06,186.26 482.50,182.14 473.77,178.55 470.57,182.59" /><polygon fill="#38e665" points="275.21,294.26 272.33,295.15 278.82,312.00 281.80,310.96" /><polygon fill="#6af9a0" points="283.50,210.02 281.38,207.25 279.90,207.85 282.06,210.61" /><polygon fill="#f6ae7b" points="369.72,183.54 374.69,190.07 376.16,187.87 371.14,181.32" /><polygon fill="#2cde6e" points="260.18,280.21 254.60,267.04 251.94,267.49 257.47,280.76" /><polygon fill="#e2c454" points="409.35,249.14 406.84,251.41 413.64,257.97 416.28,255.67" /><polygon fill="#c6e5a0" points="310.28,192.80 308.73,189.64 307.57,190.72 309.13,193.85" /><polygon fill="#d1b830" points="413.64,257.97 416.59,259.94 419.31,257.60 416.28,255.67" /><polygon fill="#20ce62" points="229.77,320.24 233.54,319.47 229.94,307.44 226.24,308.06" /><polygon fill="#3de75f" points="287.11,325.38 290.23,324.15 284.82,309.86 281.80,310.96" /><polygon fill="#55a50d" points="238.28,351.49 236.82,355.32 241.12,353.94 242.46,350.18" /><polygon fill="#29cd4b" points="236.51,332.27 238.29,343.69 242.33,342.51 240.43,331.26" /><polygon fill="#9bfc7d" points="302.75,213.71 304.15,212.83 297.68,202.56 296.31,203.43" /><polygon fill="#96fd7d" points="294.92,204.27 301.34,214.57 302.75,213.71 296.31,203.43" /><polygon fill="#a0fb7d" points="297.68,202.56 304.15,212.83 305.53,211.93 299.03,201.67" /><polygon fill="#efa6af" points="372.47,179.10 371.77,176.61 370.43,178.87 371.14,181.32" /><polygon fill="#91fe7d" points="299.92,215.40 301.34,214.57 294.92,204.27 293.52,205.08" /><polygon fill="#65f8a0" points="279.90,207.85 278.42,208.41 280.62,211.16 282.06,210.61" /><polygon fill="#a4f97d" points="305.53,211.93 306.89,211.00 300.37,200.76 299.03,201.67" /><polygon fill="#ebbf65" points="390.88,220.44 388.84,222.66 401.07,235.84 403.29,233.60" /><polygon fill="#f3b26e" points="384.27,200.82 374.69,190.07 373.15,192.27 382.62,203.02" /><polygon fill="#fe917a" points="455.62,158.55 452.98,162.61 457.66,167.87 460.38,163.86" /><polygon fill="#8cfe7d" points="292.11,205.87 298.49,216.21 299.92,215.40 293.52,205.08" /><polygon fill="#cae2a0" points="309.87,188.55 308.73,189.64 310.28,192.80 311.39,191.74" /><polygon fill="#a9f87d" points="300.37,200.76 306.89,211.00 308.24,210.06 301.69,199.83" /><polygon fill="#43a9e8" points="215.70,294.60 213.09,294.50 209.36,294.77 212.07,294.87" /><polygon fill="#87ff7d" points="297.05,216.99 298.49,216.21 292.11,205.87 290.69,206.64" /><polygon fill="#aef67d" points="308.24,210.06 309.56,209.10 302.99,198.88 301.69,199.83" /><polygon fill="#e7c25f" points="409.35,249.14 411.80,246.88 401.07,235.84 398.79,238.08" /><polygon fill="#34c332" points="242.33,342.51 238.29,343.69 238.28,351.49 242.46,350.18" /><polygon fill="#82ff7d" points="289.26,207.37 295.60,217.75 297.05,216.99 290.69,206.64" /><polygon fill="#b3f47d" points="302.99,198.88 309.56,209.10 310.87,208.12 304.27,197.90" /><polygon fill="#60f7a0" points="280.62,211.16 278.42,208.41 276.94,208.93 279.18,211.68" /><polygon fill="#f89f62" points="429.72,195.85 432.02,192.79 422.54,184.33 420.40,187.39" /><polygon fill="#30e069" points="260.18,280.21 266.64,296.73 269.47,295.97 262.92,279.58" /><polygon fill="#cedfa0" points="312.47,190.66 310.98,187.45 309.87,188.55 311.39,191.74" /><polygon fill="#7dff7d" points="294.15,218.48 295.60,217.75 289.26,207.37 287.83,208.08" /><polygon fill="#1bcc71" points="222.61,298.73 218.98,299.15 222.59,308.58 226.24,308.06" /><polygon fill="#eea14b" points="437.41,207.17 446.77,213.76 449.57,210.63 440.01,204.08" /><polygon fill="#19c15b" points="191.65,333.23 193.46,342.42 198.33,341.54 196.45,332.50" /><polygon fill="#b7f27d" points="310.87,208.12 312.15,207.12 305.52,196.92 304.27,197.90" /><polygon fill="#b6900d" points="453.68,217.19 457.67,217.59 460.76,214.32 456.64,213.99" /><polygon fill="#a06b06" points="193.55,372.20 187.95,373.69 184.34,374.70 190.10,373.17" /><polygon fill="#78ff7d" points="286.39,208.76 292.69,219.18 294.15,218.48 287.83,208.08" /><polygon fill="#bcf07d" points="305.52,196.92 312.15,207.12 313.41,206.10 306.75,195.91" /><polygon fill="#5cf5a0" points="276.94,208.93 275.47,209.42 277.74,212.16 279.18,211.68" /><polygon fill="#c88ce8" points="416.73,165.81 417.82,163.31 415.98,166.54 414.93,168.96" /><polygon fill="#f0b669" points="380.88,205.22 392.84,218.23 394.74,216.01 382.62,203.02" /><polygon fill="#3fe454" points="293.12,333.19 290.23,324.15 287.11,325.38 289.91,334.53" /><polygon fill="#24d87b" points="246.72,268.19 249.31,267.88 245.58,260.52 242.99,260.78" /><polygon fill="#d1dca0" points="312.05,186.33 310.98,187.45 312.47,190.66 313.52,189.58" /><polygon fill="#4ad330" points="290.29,338.14 293.56,336.75 293.12,333.19 289.91,334.53" /><polygon fill="#e19d32" points="449.57,210.63 446.77,213.76 453.68,217.19 456.64,213.99" /><polygon fill="#73fe7d" points="291.23,219.85 292.69,219.18 286.39,208.76 284.95,209.41" /><polygon fill="#c0ed7d" points="313.41,206.10 314.64,205.08 307.95,194.89 306.75,195.91" /><polygon fill="#fb9b71" points="417.62,173.91 415.69,177.00 422.54,184.33 424.57,181.26" /><polygon fill="#34e365" points="278.82,312.00 272.33,295.15 269.47,295.97 275.86,312.98" /><polygon fill="#27ceaf" points="241.07,259.07 238.48,259.24 240.45,260.96 242.99,260.78" /><polygon fill="#e4c054" points="418.86,253.37 411.80,246.88 409.35,249.14 416.28,255.67" /><polygon fill="#21b7c1" points="184.17,327.19 188.94,326.67 185.54,324.27 180.67,324.76" /><polygon fill="#28db6e" points="251.94,267.49 249.31,267.88 254.79,281.25 257.47,280.76" /><polygon fill="#57f4a0" points="277.74,212.16 275.47,209.42 274.01,209.87 276.32,212.61" /><polygon fill="#f8a97b" points="376.16,187.87 377.54,185.68 372.47,179.10 371.14,181.32" /><polygon fill="#6efe7d" points="283.50,210.02 289.77,220.49 291.23,219.85 284.95,209.41" /><polygon fill="#d3b530" points="419.31,257.60 421.96,255.27 418.86,253.37 416.28,255.67" /><polygon fill="#22cc57" points="236.51,332.27 233.54,319.47 229.77,320.24 232.64,333.21" /><polygon fill="#c4eb7d" points="307.95,194.89 314.64,205.08 315.84,204.03 309.13,193.85" /><polygon fill="#d5d8a0" points="314.54,188.48 313.08,185.21 312.05,186.33 313.52,189.58" /><polygon fill="#f8905b" points="457.66,167.87 465.03,173.49 467.91,169.47 460.38,163.86" /><polygon fill="#39e55f" points="278.82,312.00 284.02,326.57 287.11,325.38 281.80,310.96" /><polygon fill="#19c797" points="215.39,299.47 218.98,299.15 215.70,294.60 212.07,294.87" /><polygon fill="#edba65" points="405.43,231.36 392.84,218.23 390.88,220.44 403.29,233.60" /><polygon fill="#69fd7d" points="288.31,221.10 289.77,220.49 283.50,210.02 282.06,210.61" /><polygon fill="#1fbd47" points="198.33,341.54 193.46,342.42 194.13,352.63 199.14,351.58" /><polygon fill="#f1a2af" points="373.03,174.36 371.77,176.61 372.47,179.10 373.72,176.88" /><polygon fill="#f5ae6e" points="376.16,187.87 374.69,190.07 384.27,200.82 385.85,198.62" /><polygon fill="#c8e87d" points="315.84,204.03 317.02,202.98 310.28,192.80 309.13,193.85" /><polygon fill="#5a7a06" points="498.69,177.98 494.94,182.39 497.33,179.67 501.20,175.14" /><polygon fill="#659004" points="191.18,369.37 187.95,373.69 193.55,372.20 196.57,367.98" /><polygon fill="#53f2a0" points="274.01,209.87 272.55,210.29 274.90,213.02 276.32,212.61" /><polygon fill="#eabe5f" points="401.07,235.84 411.80,246.88 414.19,244.61 403.29,233.60" /><polygon fill="#d8d5a0" points="314.08,184.08 313.08,185.21 314.54,188.48 315.52,187.38" /><polygon fill="#64fc7d" points="280.62,211.16 286.85,221.67 288.31,221.10 282.06,210.61" /><polygon fill="#f59e57" points="442.51,201.00 432.02,192.79 429.72,195.85 440.01,204.08" /><polygon fill="#2cdd69" points="263.85,297.43 266.64,296.73 260.18,280.21 257.47,280.76" /><polygon fill="#fb9697" points="417.62,173.91 419.43,170.82 416.73,165.81 414.93,168.96" /><polygon fill="#cce57d" points="310.28,192.80 317.02,202.98 318.17,201.91 311.39,191.74" /><polygon fill="#ec8ac1" points="455.62,158.55 458.13,154.48 457.46,150.24 454.93,154.42" /><polygon fill="#4ef0a0" points="274.90,213.02 272.55,210.29 271.11,210.67 273.49,213.40" /><polygon fill="#2ab632" points="194.13,352.63 193.44,362.18 198.63,360.95 199.14,351.58" /><polygon fill="#1dca62" points="222.59,308.58 226.04,320.91 229.77,320.24 226.24,308.06" /><polygon fill="#41a718" points="198.63,360.95 193.44,362.18 191.18,369.37 196.57,367.98" /><polygon fill="#5ffb7d" points="285.40,222.22 286.85,221.67 280.62,211.16 279.18,211.68" /><polygon fill="#dcd1a0" points="316.46,186.27 315.04,182.94 314.08,184.08 315.52,187.38" /><polygon fill="#f2b269" points="394.74,216.01 396.56,213.80 384.27,200.82 382.62,203.02" /><polygon fill="#3be254" points="287.11,325.38 284.02,326.57 286.74,335.82 289.91,334.53" /><polygon fill="#d0e27d" points="318.17,201.91 319.28,200.84 312.47,190.66 311.39,191.74" /><polygon fill="#f08f47" points="467.91,169.47 465.03,173.49 473.77,178.55 476.87,174.49" /><polygon fill="#26c94b" points="234.29,344.78 238.29,343.69 236.51,332.27 232.64,333.21" /><polygon fill="#20d47b" points="240.45,260.96 244.17,268.42 246.72,268.19 242.99,260.78" /><polygon fill="#47d130" points="286.74,335.82 287.06,339.48 290.29,338.14 289.91,334.53" /><polygon fill="#12c07a" points="191.65,333.23 188.94,326.67 184.17,327.19 186.89,333.85" /><polygon fill="#53a40d" points="232.56,356.63 236.82,355.32 238.28,351.49 234.14,352.71" /><polygon fill="#9e8404" points="489.78,183.32 494.94,182.39 498.69,177.98 493.35,179.05" /><polygon fill="#30e065" points="269.47,295.97 266.64,296.73 272.94,313.90 275.86,312.98" /><polygon fill="#42a7e8" points="209.36,294.77 205.68,294.94 208.49,295.04 212.07,294.87" /><polygon fill="#5bf97d" points="277.74,212.16 283.95,222.73 285.40,222.22 279.18,211.68" /><polygon fill="#9bfb74" points="315.57,230.89 304.15,212.83 302.75,213.71 314.09,231.83" /><polygon fill="#96fc74" points="302.75,213.71 301.34,214.57 312.59,232.74 314.09,231.83" /><polygon fill="#4aeea0" points="271.11,210.67 269.67,211.01 272.09,213.74 273.49,213.40" /><polygon fill="#a0fa74" points="305.53,211.93 304.15,212.83 315.57,230.89 317.04,229.94" /><polygon fill="#e7bc54" points="414.19,244.61 411.80,246.88 418.86,253.37 421.38,251.07" /><polygon fill="#91fd74" points="312.59,232.74 301.34,214.57 299.92,215.40 311.08,233.63" /><polygon fill="#a4f974" points="318.50,228.96 306.89,211.00 305.53,211.93 317.04,229.94" /><polygon fill="#24d76e" points="254.79,281.25 249.31,267.88 246.72,268.19 252.16,281.66" /><polygon fill="#d4df7d" points="312.47,190.66 319.28,200.84 320.36,199.75 313.52,189.58" /><polygon fill="#24cbaf" points="240.45,260.96 238.48,259.24 235.94,259.33 237.94,261.06" /><polygon fill="#f9a47b" points="372.47,179.10 377.54,185.68 378.84,183.49 373.72,176.88" /><polygon fill="#8cfe74" points="299.92,215.40 298.49,216.21 309.57,234.50 311.08,233.63" /><polygon fill="#f99a62" points="422.54,184.33 432.02,192.79 434.22,189.72 424.57,181.26" /><polygon fill="#dfcea0" points="315.96,181.79 315.04,182.94 316.46,186.27 317.36,185.16" /><polygon fill="#31c032" points="238.28,351.49 238.29,343.69 234.29,344.78 234.14,352.71" /><polygon fill="#a9f774" points="308.24,210.06 306.89,211.00 318.50,228.96 319.93,227.96" /><polygon fill="#d5b230" points="418.86,253.37 421.96,255.27 424.56,252.93 421.38,251.07" /><polygon fill="#35e25f" points="280.97,327.69 284.02,326.57 278.82,312.00 275.86,312.98" /><polygon fill="#18c871" points="222.59,308.58 218.98,299.15 215.39,299.47 218.99,309.01" /><polygon fill="#87fe74" points="309.57,234.50 298.49,216.21 297.05,216.99 308.04,235.35" /><polygon fill="#aef674" points="321.35,226.95 309.56,209.10 308.24,210.06 319.93,227.96" /><polygon fill="#f0b665" points="394.74,216.01 392.84,218.23 405.43,231.36 407.51,229.13" /><polygon fill="#e48d32" points="473.77,178.55 482.50,182.14 485.84,178.00 476.87,174.49" /><polygon fill="#f09d4b" points="449.57,210.63 452.27,207.49 442.51,201.00 440.01,204.08" /><polygon fill="#82fe74" points="297.05,216.99 295.60,217.75 306.51,236.16 308.04,235.35" /><polygon fill="#56f87d" points="282.51,223.21 283.95,222.73 277.74,212.16 276.32,212.61" /><polygon fill="#c98a18" points="485.84,178.00 482.50,182.14 489.78,183.32 493.35,179.05" /><polygon fill="#b2f474" points="310.87,208.12 309.56,209.10 321.35,226.95 322.75,225.92" /><polygon fill="#f7a96e" points="387.35,196.43 377.54,185.68 376.16,187.87 385.85,198.62" /><polygon fill="#f29daf" points="374.88,174.67 374.19,172.11 373.03,174.36 373.72,176.88" /><polygon fill="#d8db7d" points="320.36,199.75 321.41,198.66 314.54,188.48 313.52,189.58" /><polygon fill="#45eca0" points="272.09,213.74 269.67,211.01 268.25,211.31 270.70,214.04" /><polygon fill="#b78e0d" points="460.76,214.32 463.76,211.04 459.52,210.79 456.64,213.99" /><polygon fill="#7dfe74" points="306.51,236.16 295.60,217.75 294.15,218.48 304.97,236.96" /><polygon fill="#ecba5f" points="414.19,244.61 416.52,242.34 405.43,231.36 403.29,233.60" /><polygon fill="#c88ae8" points="419.54,160.06 417.82,163.31 416.73,165.81 418.40,162.65" /><polygon fill="#fe8c7a" points="462.97,159.82 458.13,154.48 455.62,158.55 460.38,163.86" /><polygon fill="#b7f274" points="324.12,224.88 312.15,207.12 310.87,208.12 322.75,225.92" /><polygon fill="#e2caa0" points="318.22,184.04 316.84,180.64 315.96,181.79 317.36,185.16" /><polygon fill="#78fe74" points="294.15,218.48 292.69,219.18 303.43,237.72 304.97,236.96" /><polygon fill="#e29932" points="459.52,210.79 452.27,207.49 449.57,210.63 456.64,213.99" /><polygon fill="#29da69" points="254.79,281.25 261.09,298.06 263.85,297.43 257.47,280.76" /><polygon fill="#fc9671" points="426.49,178.20 419.43,170.82 417.62,173.91 424.57,181.26" /><polygon fill="#bbef74" points="313.41,206.10 312.15,207.12 324.12,224.88 325.47,223.82" /><polygon fill="#51f67d" points="274.90,213.02 281.07,223.65 282.51,223.21 276.32,212.61" /><polygon fill="#dbd87d" points="314.54,188.48 321.41,198.66 322.42,197.56 315.52,187.38" /><polygon fill="#73fe74" points="303.43,237.72 292.69,219.18 291.23,219.85 301.89,238.46" /><polygon fill="#1fc957" points="229.77,320.24 226.04,320.91 228.80,334.05 232.64,333.21" /><polygon fill="#16bd5b" points="188.61,343.19 193.46,342.42 191.65,333.23 186.89,333.85" /><polygon fill="#c0ed74" points="326.80,222.75 314.64,205.08 313.41,206.10 325.47,223.82" /><polygon fill="#41eaa0" points="268.25,211.31 266.84,211.57 269.33,214.30 270.70,214.04" /><polygon fill="#16c397" points="208.49,295.04 211.86,299.69 215.39,299.47 212.07,294.87" /><polygon fill="#f4ad69" points="384.27,200.82 396.56,213.80 398.30,211.59 385.85,198.62" /><polygon fill="#37df54" points="286.74,335.82 284.02,326.57 280.97,327.69 283.60,337.05" /><polygon fill="#e5c6a0" points="317.67,179.48 316.84,180.64 318.22,184.04 319.05,182.92" /><polygon fill="#1dd07b" points="241.67,268.58 244.17,268.42 240.45,260.96 237.94,261.06" /><polygon fill="#6efd74" points="291.23,219.85 289.77,220.49 300.35,239.16 301.89,238.46" /><polygon fill="#4cf47d" points="279.65,224.06 281.07,223.65 274.90,213.02 273.49,213.40" /><polygon fill="#43cf30" points="283.85,340.76 287.06,339.48 286.74,335.82 283.60,337.05" /><polygon fill="#c4ea74" points="315.84,204.03 314.64,205.08 326.80,222.75 328.10,221.67" /><polygon fill="#dfd47d" points="322.42,197.56 323.39,196.46 316.46,186.27 315.52,187.38" /><polygon fill="#2ddd65" points="272.94,313.90 266.64,296.73 263.85,297.43 270.05,314.75" /><polygon fill="#e9b854" points="423.84,248.77 416.52,242.34 414.19,244.61 421.38,251.07" /><polygon fill="#69fc74" points="300.35,239.16 289.77,220.49 288.31,221.10 298.81,239.84" /><polygon fill="#21d36e" points="246.72,268.19 244.17,268.42 249.56,282.00 252.16,281.66" /><polygon fill="#f69957" points="434.22,189.72 432.02,192.79 442.51,201.00 444.90,197.91" /><polygon fill="#3de7a0" points="269.33,214.30 266.84,211.57 265.45,211.79 267.98,214.52" /><polygon fill="#fba07b" points="378.84,183.49 380.04,181.30 374.88,174.67 373.72,176.88" /><polygon fill="#c8e874" points="329.37,220.57 317.02,202.98 315.84,204.03 328.10,221.67" /><polygon fill="#21c7af" points="235.94,259.33 233.45,259.34 235.49,261.08 237.94,261.06" /><polygon fill="#fc9197" points="416.73,165.81 419.43,170.82 421.13,167.73 418.40,162.65" /><polygon fill="#a06c06" points="184.34,374.70 187.95,373.69 182.36,375.08 178.58,376.14" /><polygon fill="#31df5f" points="272.94,313.90 277.94,328.76 280.97,327.69 275.86,312.98" /><polygon fill="#1fb3c1" points="175.83,325.12 179.44,327.58 184.17,327.19 180.67,324.76" /><polygon fill="#d7ae30" points="424.56,252.93 427.09,250.60 423.84,248.77 421.38,251.07" /><polygon fill="#48f27d" points="272.09,213.74 278.24,224.43 279.65,224.06 273.49,213.40" /><polygon fill="#e7c2a0" points="319.82,181.80 318.46,178.33 317.67,179.48 319.05,182.92" /><polygon fill="#f2b165" points="409.52,226.90 396.56,213.80 394.74,216.01 407.51,229.13" /><polygon fill="#f98b5b" points="467.91,169.47 470.68,165.43 462.97,159.82 460.38,163.86" /><polygon fill="#1ac662" points="222.36,321.49 226.04,320.91 222.59,308.58 218.99,309.01" /><polygon fill="#e2d07d" points="316.46,186.27 323.39,196.46 324.33,195.35 317.36,185.16" /><polygon fill="#64fb74" points="288.31,221.10 286.85,221.67 297.28,240.49 298.81,239.84" /><polygon fill="#f8a46e" points="378.84,183.49 377.54,185.68 387.35,196.43 388.76,194.24" /><polygon fill="#cce574" points="318.17,201.91 317.02,202.98 329.37,220.57 330.61,219.47" /><polygon fill="#f399af" points="375.26,169.87 374.19,172.11 374.88,174.67 375.94,172.47" /><polygon fill="#efb55f" points="405.43,231.36 416.52,242.34 418.77,240.08 407.51,229.13" /><polygon fill="#1db947" points="194.13,352.63 193.46,342.42 188.61,343.19 189.14,353.58" /><polygon fill="#23c64b" points="228.80,334.05 230.32,345.79 234.29,344.78 232.64,333.21" /><polygon fill="#39e5a0" points="265.45,211.79 264.08,211.97 266.65,214.71 267.98,214.52" /><polygon fill="#5ffa74" points="297.28,240.49 286.85,221.67 285.40,222.22 295.75,241.10" /><polygon fill="#43f07d" points="276.85,224.76 278.24,224.43 272.09,213.74 270.70,214.04" /><polygon fill="#25d669" points="258.38,298.61 261.09,298.06 254.79,281.25 252.16,281.66" /><polygon fill="#d0e274" points="331.82,218.35 319.28,200.84 318.17,201.91 330.61,219.47" /><polygon fill="#40a4e8" points="208.49,295.04 205.68,294.94 202.06,295.00 204.96,295.09" /><polygon fill="#eabea0" points="319.21,177.17 318.46,178.33 319.82,181.80 320.56,180.68" /><polygon fill="#e5cc7d" points="324.33,195.35 325.22,194.24 318.22,184.04 317.36,185.16" /><polygon fill="#fa9562" points="434.22,189.72 436.31,186.66 426.49,178.20 424.57,181.26" /><polygon fill="#52a20d" points="230.04,353.86 228.33,357.84 232.56,356.63 234.14,352.71" /><polygon fill="#ed86c1" points="457.46,150.24 458.13,154.48 460.50,150.38 459.85,146.04" /><polygon fill="#658f04" points="182.36,375.08 187.95,373.69 191.18,369.37 185.80,370.65" /><polygon fill="#15c471" points="215.39,299.47 211.86,299.69 215.43,309.33 218.99,309.01" /><polygon fill="#5a7c06" points="504.96,170.57 502.34,173.55 498.69,177.98 501.20,175.14" /><polygon fill="#2fbd32" points="234.29,344.78 230.32,345.79 230.04,353.86 234.14,352.71" /><polygon fill="#5bf974" points="285.40,222.22 283.95,222.73 294.23,241.68 295.75,241.10" /><polygon fill="#f6a969" points="398.30,211.59 399.96,209.39 387.35,196.43 385.85,198.62" /><polygon fill="#34dc54" points="280.97,327.69 277.94,328.76 280.49,338.22 283.60,337.05" /><polygon fill="#d4de74" points="320.36,199.75 319.28,200.84 331.82,218.35 332.99,217.23" /><polygon fill="#f1984b" points="442.51,201.00 452.27,207.49 454.88,204.36 444.90,197.91" /><polygon fill="#28b332" points="188.27,363.31 193.44,362.18 194.13,352.63 189.14,353.58" /><polygon fill="#1acc7b" points="235.49,261.08 239.22,268.66 241.67,268.58 237.94,261.06" /><polygon fill="#3fed7d" points="269.33,214.30 275.47,225.05 276.85,224.76 270.70,214.04" /><polygon fill="#35e2a0" points="266.65,214.71 264.08,211.97 262.73,212.11 265.34,214.85" /><polygon fill="#f18b47" points="479.86,170.41 470.68,165.43 467.91,169.47 476.87,174.49" /><polygon fill="#40cc30" points="280.49,338.22 280.67,341.99 283.85,340.76 283.60,337.05" /><polygon fill="#40a518" points="191.18,369.37 193.44,362.18 188.27,363.31 185.80,370.65" /><polygon fill="#0fbc7a" points="184.17,327.19 179.44,327.58 182.15,334.35 186.89,333.85" /><polygon fill="#e8c87d" points="318.22,184.04 325.22,194.24 326.08,193.12 319.05,182.92" /><polygon fill="#c887e8" points="419.95,159.50 421.13,156.82 419.54,160.06 418.40,162.65" /><polygon fill="#29d965" points="263.85,297.43 261.09,298.06 267.20,315.54 270.05,314.75" /><polygon fill="#ecbaa0" points="321.24,179.56 319.91,176.02 319.21,177.17 320.56,180.68" /><polygon fill="#9bfb70" points="328.23,254.45 329.84,253.43 315.57,230.89 314.09,231.83" /><polygon fill="#96fc70" points="312.59,232.74 326.60,255.45 328.23,254.45 314.09,231.83" /><polygon fill="#9ffa70" points="315.57,230.89 329.84,253.43 331.45,252.39 317.04,229.94" /><polygon fill="#56f774" points="294.23,241.68 283.95,222.73 282.51,223.21 292.72,242.23" /><polygon fill="#91fd70" points="324.96,256.42 326.60,255.45 312.59,232.74 311.08,233.63" /><polygon fill="#1ed06e" points="249.56,282.00 244.17,268.42 241.67,268.58 247.01,282.27" /><polygon fill="#ebb454" points="418.77,240.08 416.52,242.34 423.84,248.77 426.23,246.48" /><polygon fill="#b78c0d" points="459.52,210.79 463.76,211.04 466.68,207.76 462.31,207.59" /><polygon fill="#a4f970" points="331.45,252.39 333.04,251.33 318.50,228.96 317.04,229.94" /><polygon fill="#fd9171" points="421.13,167.73 419.43,170.82 426.49,178.20 428.30,175.14" /><polygon fill="#d7db74" points="334.13,216.11 321.41,198.66 320.36,199.75 332.99,217.23" /><polygon fill="#8cfd70" points="309.57,234.50 323.31,257.38 324.96,256.42 311.08,233.63" /><polygon fill="#fc9b7b" points="374.88,174.67 380.04,181.30 381.16,179.13 375.94,172.47" /><polygon fill="#a9f770" points="318.50,228.96 333.04,251.33 334.61,250.26 319.93,227.96" /><polygon fill="#2edc5f" points="274.96,329.76 277.94,328.76 272.94,313.90 270.05,314.75" /><polygon fill="#1ec3af" points="235.49,261.08 233.45,259.34 231.00,259.27 233.08,261.02" /><polygon fill="#e39532" points="454.88,204.36 452.27,207.49 459.52,210.79 462.31,207.59" /><polygon fill="#87fe70" points="321.66,258.32 323.31,257.38 309.57,234.50 308.04,235.35" /><polygon fill="#d9ab30" points="423.84,248.77 427.09,250.60 429.56,248.27 426.23,246.48" /><polygon fill="#aef570" points="334.61,250.26 336.17,249.17 321.35,226.95 319.93,227.96" /><polygon fill="#f4ad65" points="398.30,211.59 396.56,213.80 409.52,226.90 411.44,224.67" /><polygon fill="#3beb7d" points="274.11,225.31 275.47,225.05 269.33,214.30 267.98,214.52" /><polygon fill="#9e8304" points="498.69,177.98 502.34,173.55 496.81,174.76 493.35,179.05" /><polygon fill="#1cc557" points="228.80,334.05 226.04,320.91 222.36,321.49 225.01,334.80" /><polygon fill="#13bf97" points="208.38,299.80 211.86,299.69 208.49,295.04 204.96,295.09" /><polygon fill="#82fe70" points="306.51,236.16 320.00,259.23 321.66,258.32 308.04,235.35" /><polygon fill="#31dfa0" points="262.73,212.11 261.41,212.21 264.05,214.95 265.34,214.85" /><polygon fill="#fa9f6e" points="390.08,192.06 380.04,181.30 378.84,183.49 388.76,194.24" /><polygon fill="#b2f370" points="321.35,226.95 336.17,249.17 337.70,248.07 322.75,225.92" /><polygon fill="#51f674" points="282.51,223.21 281.07,223.65 291.21,242.74 292.72,242.23" /><polygon fill="#ebc47d" points="326.08,193.12 326.89,192.01 319.82,181.80 319.05,182.92" /><polygon fill="#e58932" points="485.84,178.00 489.07,173.83 479.86,170.41 476.87,174.49" /><polygon fill="#f1b15f" points="418.77,240.08 420.96,237.83 409.52,226.90 407.51,229.13" /><polygon fill="#eeb5a0" points="320.56,174.86 319.91,176.02 321.24,179.56 321.88,178.44" /><polygon fill="#dbd774" points="322.42,197.56 321.41,198.66 334.13,216.11 335.24,214.98" /><polygon fill="#f494af" points="376.91,170.28 376.23,167.64 375.26,169.87 375.94,172.47" /><polygon fill="#7dfe70" points="318.34,260.11 320.00,259.23 306.51,236.16 304.97,236.96" /><polygon fill="#b7f170" points="337.70,248.07 339.21,246.96 324.12,224.88 322.75,225.92" /><polygon fill="#ff877a" points="460.50,150.38 458.13,154.48 462.97,159.82 465.44,155.77" /><polygon fill="#c98718" points="496.81,174.76 489.07,173.83 485.84,178.00 493.35,179.05" /><polygon fill="#22d369" points="249.56,282.00 255.71,299.09 258.38,298.61 252.16,281.66" /><polygon fill="#78fe70" points="303.43,237.72 316.68,260.97 318.34,260.11 304.97,236.96" /><polygon fill="#bbef70" points="324.12,224.88 339.21,246.96 340.70,245.83 325.47,223.82" /><polygon fill="#37e87d" points="266.65,214.71 272.77,225.53 274.11,225.31 267.98,214.52" /><polygon fill="#4df474" points="291.21,242.74 281.07,223.65 279.65,224.06 289.73,243.22" /><polygon fill="#fc8c97" points="421.13,167.73 422.71,164.64 419.95,159.50 418.40,162.65" /><polygon fill="#f79557" points="447.20,194.82 436.31,186.66 434.22,189.72 444.90,197.91" /><polygon fill="#edc07d" points="319.82,181.80 326.89,192.01 327.65,190.90 320.56,180.68" /><polygon fill="#ded474" points="336.31,213.84 323.39,196.46 322.42,197.56 335.24,214.98" /><polygon fill="#73fd70" points="315.01,261.81 316.68,260.97 303.43,237.72 301.89,238.46" /><polygon fill="#2edca0" points="264.05,214.95 261.41,212.21 260.10,212.26 262.78,215.01" /><polygon fill="#14b95b" points="182.15,334.35 183.80,343.84 188.61,343.19 186.89,333.85" /><polygon fill="#bfed70" points="340.70,245.83 342.17,244.69 326.80,222.75 325.47,223.82" /><polygon fill="#f8a469" points="387.35,196.43 399.96,209.39 401.53,207.19 388.76,194.24" /><polygon fill="#17c262" points="215.43,309.33 218.74,321.96 222.36,321.49 218.99,309.01" /><polygon fill="#f0b1a0" points="322.48,177.33 321.16,173.71 320.56,174.86 321.88,178.44" /><polygon fill="#30d954" points="280.49,338.22 277.94,328.76 274.96,329.76 277.42,339.34" /><polygon fill="#17c87b" points="236.81,268.66 239.22,268.66 235.49,261.08 233.08,261.02" /><polygon fill="#6efd70" points="300.35,239.16 313.35,262.61 315.01,261.81 301.89,238.46" /><polygon fill="#c4ea70" points="326.80,222.75 342.17,244.69 343.61,243.54 328.10,221.67" /><polygon fill="#48f274" points="279.65,224.06 278.24,224.43 288.25,243.66 289.73,243.22" /><polygon fill="#26d665" points="267.20,315.54 261.09,298.06 258.38,298.61 264.39,316.26" /><polygon fill="#3dca30" points="277.54,343.16 280.67,341.99 280.49,338.22 277.42,339.34" /><polygon fill="#33e57d" points="271.46,225.71 272.77,225.53 266.65,214.71 265.34,214.85" /><polygon fill="#20c24b" points="226.40,346.71 230.32,345.79 228.80,334.05 225.01,334.80" /><polygon fill="#e2d074" points="324.33,195.35 323.39,196.46 336.31,213.84 337.33,212.71" /><polygon fill="#1bcc6e" points="241.67,268.58 239.22,268.66 244.52,282.45 247.01,282.27" /><polygon fill="#edaf54" points="428.55,244.20 420.96,237.83 418.77,240.08 426.23,246.48" /><polygon fill="#f0bc7d" points="327.65,190.90 328.37,189.79 321.24,179.56 320.56,180.68" /><polygon fill="#69fc70" points="311.70,263.39 313.35,262.61 300.35,239.16 298.81,239.84" /><polygon fill="#fd967b" points="381.16,179.13 382.17,176.97 376.91,170.28 375.94,172.47" /><polygon fill="#2ad8a0" points="260.10,212.26 258.83,212.27 261.54,215.03 262.78,215.01" /><polygon fill="#3fa2e8" points="202.06,295.00 198.49,294.94 201.49,295.04 204.96,295.09" /><polygon fill="#c8e770" points="343.61,243.54 345.02,242.39 329.37,220.57 328.10,221.67" /><polygon fill="#2ad85f" points="267.20,315.54 272.01,330.71 274.96,329.76 270.05,314.75" /><polygon fill="#fa9062" points="426.49,178.20 436.31,186.66 438.28,183.60 428.30,175.14" /><polygon fill="#1cbfaf" points="231.00,259.27 228.62,259.11 230.73,260.88 233.08,261.02" /><polygon fill="#1dafc1" points="174.75,327.85 179.44,327.58 175.83,325.12 171.04,325.35" /><polygon fill="#12c071" points="215.43,309.33 211.86,299.69 208.38,299.80 211.93,309.55" /><polygon fill="#f5a865" points="413.29,222.46 399.96,209.39 398.30,211.59 411.44,224.67" /><polygon fill="#f2aca0" points="321.71,172.57 321.16,173.71 322.48,177.33 323.02,176.22" /><polygon fill="#dba730" points="429.56,248.27 431.96,245.96 428.55,244.20 426.23,246.48" /><polygon fill="#f9875b" points="462.97,159.82 470.68,165.43 473.32,161.38 465.44,155.77" /><polygon fill="#44ef74" points="288.25,243.66 278.24,224.43 276.85,224.76 286.79,244.07" /><polygon fill="#fb9b6e" points="381.16,179.13 380.04,181.30 390.08,192.06 391.31,189.89" /><polygon fill="#64fb70" points="297.28,240.49 310.05,264.13 311.70,263.39 298.81,239.84" /><polygon fill="#51a00d" points="224.14,358.98 228.33,357.84 230.04,353.86 225.98,354.91" /><polygon fill="#e5cc74" points="338.32,211.57 325.22,194.24 324.33,195.35 337.33,212.71" /><polygon fill="#cce470" points="329.37,220.57 345.02,242.39 346.40,241.22 330.61,219.47" /><polygon fill="#2cba32" points="230.04,353.86 230.32,345.79 226.40,346.71 225.98,354.91" /><polygon fill="#2fe27d" points="264.05,214.95 270.16,225.84 271.46,225.71 265.34,214.85" /><polygon fill="#f2ac5f" points="409.52,226.90 420.96,237.83 423.06,235.59 411.44,224.67" /><polygon fill="#f2944b" points="454.88,204.36 457.38,201.23 447.20,194.82 444.90,197.91" /><polygon fill="#f590af" points="377.10,165.42 376.23,167.64 376.91,170.28 377.77,168.11" /><polygon fill="#1bb547" points="188.61,343.19 183.80,343.84 184.19,354.41 189.14,353.58" /><polygon fill="#a16e06" points="182.36,375.08 176.79,376.36 172.83,377.47 178.58,376.14" /><polygon fill="#f2b77d" points="321.24,179.56 328.37,189.79 329.05,188.68 321.88,178.44" /><polygon fill="#c984e8" points="422.59,153.58 421.13,156.82 419.95,159.50 421.37,156.35" /><polygon fill="#1fcf69" points="253.09,299.50 255.71,299.09 249.56,282.00 247.01,282.27" /><polygon fill="#60fa70" points="308.41,264.85 310.05,264.13 297.28,240.49 295.75,241.10" /><polygon fill="#27d5a0" points="261.54,215.03 258.83,212.27 257.58,212.24 260.33,215.01" /><polygon fill="#fe8c71" points="429.98,172.08 422.71,164.64 421.13,167.73 428.30,175.14" /><polygon fill="#d0e170" points="346.40,241.22 347.75,240.05 331.82,218.35 330.61,219.47" /><polygon fill="#3fed74" points="276.85,224.76 275.47,225.05 285.35,244.43 286.79,244.07" /><polygon fill="#f4a8a0" points="323.51,175.13 322.21,171.43 321.71,172.57 323.02,176.22" /><polygon fill="#ed82c1" points="460.50,150.38 462.74,146.26 462.10,141.81 459.85,146.04" /><polygon fill="#e8c874" points="326.08,193.12 325.22,194.24 338.32,211.57 339.27,210.43" /><polygon fill="#b88a0d" points="466.68,207.76 469.49,204.48 464.99,204.39 462.31,207.59" /><polygon fill="#11bb97" points="201.49,295.04 204.96,299.79 208.38,299.80 204.96,295.09" /><polygon fill="#f99f69" points="401.53,207.19 403.02,205.01 390.08,192.06 388.76,194.24" /><polygon fill="#e39132" points="464.99,204.39 457.38,201.23 454.88,204.36 462.31,207.59" /><polygon fill="#2bdf7d" points="268.89,225.94 270.16,225.84 264.05,214.95 262.78,215.01" /><polygon fill="#1ac157" points="222.36,321.49 218.74,321.96 221.28,335.45 225.01,334.80" /><polygon fill="#5bf970" points="294.23,241.68 306.77,265.53 308.41,264.85 295.75,241.10" /><polygon fill="#2dd654" points="274.96,329.76 272.01,330.71 274.39,340.39 277.42,339.34" /><polygon fill="#d4de70" points="331.82,218.35 347.75,240.05 349.07,238.88 332.99,217.23" /><polygon fill="#14c47b" points="230.73,260.88 234.47,268.57 236.81,268.66 233.08,261.02" /><polygon fill="#f4b37d" points="329.05,188.68 329.67,187.58 322.48,177.33 321.88,178.44" /><polygon fill="#648e04" points="180.45,371.82 176.79,376.36 182.36,375.08 185.80,370.65" /><polygon fill="#9bfb6d" points="344.64,276.76 329.84,253.43 328.23,254.45 342.86,277.88" /><polygon fill="#26af32" points="184.19,354.41 183.13,364.33 188.27,363.31 189.14,353.58" /><polygon fill="#0db77a" points="182.15,334.35 179.44,327.58 174.75,327.85 177.47,334.72" /><polygon fill="#96fc6d" points="328.23,254.45 326.60,255.45 341.08,278.98 342.86,277.88" /><polygon fill="#9ffa6d" points="331.45,252.39 329.84,253.43 344.64,276.76 346.40,275.63" /><polygon fill="#f18647" points="473.32,161.38 470.68,165.43 479.86,170.41 482.72,166.31" /><polygon fill="#91fd6d" points="341.08,278.98 326.60,255.45 324.96,256.42 339.29,280.06" /><polygon fill="#a4f86d" points="348.14,274.48 333.04,251.33 331.45,252.39 346.40,275.63" /><polygon fill="#3bea74" points="285.35,244.43 275.47,225.05 274.11,225.31 283.93,244.76" /><polygon fill="#22d265" points="258.38,298.61 255.71,299.09 261.63,316.91 264.39,316.26" /><polygon fill="#23d1a0" points="257.58,212.24 256.36,212.16 259.15,214.94 260.33,215.01" /><polygon fill="#5a7d06" points="505.89,169.08 502.34,173.55 504.96,170.57 508.63,165.95" /><polygon fill="#8cfd6d" points="324.96,256.42 323.31,257.38 337.49,281.12 339.29,280.06" /><polygon fill="#3ac730" points="274.39,340.39 274.44,344.27 277.54,343.16 277.42,339.34" /><polygon fill="#a9f76d" points="334.61,250.26 333.04,251.33 348.14,274.48 349.88,273.32" /><polygon fill="#18c86e" points="244.52,282.45 239.22,268.66 236.81,268.66 242.07,282.56" /><polygon fill="#eac474" points="340.17,209.29 326.89,192.01 326.08,193.12 339.27,210.43" /><polygon fill="#3ea218" points="188.27,363.31 183.13,364.33 180.45,371.82 185.80,370.65" /><polygon fill="#56f770" points="305.15,266.19 306.77,265.53 294.23,241.68 292.72,242.23" /><polygon fill="#87fd6d" points="337.49,281.12 323.31,257.38 321.66,258.32 335.69,282.16" /><polygon fill="#f5a3a0" points="322.66,170.31 322.21,171.43 323.51,175.13 323.95,174.03" /><polygon fill="#efab54" points="423.06,235.59 420.96,237.83 428.55,244.20 430.79,241.93" /><polygon fill="#adf56d" points="351.59,272.14 336.17,249.17 334.61,250.26 349.88,273.32" /><polygon fill="#fe917b" points="376.91,170.28 382.17,176.97 383.09,174.82 377.77,168.11" /><polygon fill="#fd8797" points="419.95,159.50 422.71,164.64 424.15,161.56 421.37,156.35" /><polygon fill="#d7db70" points="349.07,238.88 350.35,237.70 334.13,216.11 332.99,217.23" /><polygon fill="#27d55f" points="269.11,331.58 272.01,330.71 267.20,315.54 264.39,316.26" /><polygon fill="#f79057" points="438.28,183.60 436.31,186.66 447.20,194.82 449.38,191.74" /><polygon fill="#19bbaf" points="230.73,260.88 228.62,259.11 226.29,258.87 228.44,260.65" /><polygon fill="#82fe6d" points="321.66,258.32 320.00,259.23 333.89,283.18 335.69,282.16" /><polygon fill="#27db7d" points="261.54,215.03 267.65,225.99 268.89,225.94 262.78,215.01" /><polygon fill="#b2f36d" points="337.70,248.07 336.17,249.17 351.59,272.14 353.29,270.96" /><polygon fill="#f7a465" points="401.53,207.19 399.96,209.39 413.29,222.46 415.05,220.26" /><polygon fill="#14be62" points="215.16,322.34 218.74,321.96 215.43,309.33 211.93,309.55" /><polygon fill="#dca430" points="428.55,244.20 431.96,245.96 434.28,243.65 430.79,241.93" /><polygon fill="#f6ae7d" points="322.48,177.33 329.67,187.58 330.25,186.49 323.02,176.22" /><polygon fill="#fc966e" points="392.44,187.74 382.17,176.97 381.16,179.13 391.31,189.89" /><polygon fill="#7dfe6d" points="333.89,283.18 320.00,259.23 318.34,260.11 332.08,284.18" /><polygon fill="#37e874" points="274.11,225.31 272.77,225.53 282.53,245.05 283.93,244.76" /><polygon fill="#b7f16d" points="354.97,269.76 339.21,246.96 337.70,248.07 353.29,270.96" /><polygon fill="#51f570" points="291.21,242.74 303.54,266.80 305.15,266.19 292.72,242.23" /><polygon fill="#ff827a" points="467.77,151.71 462.74,146.26 460.50,150.38 465.44,155.77" /><polygon fill="#f4a85f" points="423.06,235.59 425.09,233.36 413.29,222.46 411.44,224.67" /><polygon fill="#e58532" points="479.86,170.41 489.07,173.83 492.18,169.63 482.72,166.31" /><polygon fill="#f58baf" points="378.54,165.95 377.86,163.22 377.10,165.42 377.77,168.11" /><polygon fill="#edc074" points="327.65,190.90 326.89,192.01 340.17,209.29 341.03,208.16" /><polygon fill="#9e8104" points="496.81,174.76 502.34,173.55 505.89,169.08 500.16,170.44" /><polygon fill="#20cea0" points="259.15,214.94 256.36,212.16 255.18,212.04 258.00,214.84" /><polygon fill="#dbd770" points="334.13,216.11 350.35,237.70 351.60,236.52 335.24,214.98" /><polygon fill="#78fd6d" points="318.34,260.11 316.68,260.97 330.27,285.15 332.08,284.18" /><polygon fill="#bbef6d" points="340.70,245.83 339.21,246.96 354.97,269.76 356.62,268.56" /><polygon fill="#1ccb69" points="244.52,282.45 250.52,299.84 253.09,299.50 247.01,282.27" /><polygon fill="#f79fa0" points="324.34,172.96 323.05,169.19 322.66,170.31 323.95,174.03" /><polygon fill="#1ebe4b" points="221.28,335.45 222.53,347.54 226.40,346.71 225.01,334.80" /><polygon fill="#ca8418" points="492.18,169.63 489.07,173.83 496.81,174.76 500.16,170.44" /><polygon fill="#24d87d" points="266.44,226.01 267.65,225.99 261.54,215.03 260.33,215.01" /><polygon fill="#73fd6d" points="330.27,285.15 316.68,260.97 315.01,261.81 328.47,286.10" /><polygon fill="#fb8c62" points="438.28,183.60 440.14,180.55 429.98,172.08 428.30,175.14" /><polygon fill="#bfec6d" points="358.25,267.34 342.17,244.69 340.70,245.83 356.62,268.56" /><polygon fill="#4df370" points="301.95,267.39 303.54,266.80 291.21,242.74 289.73,243.22" /><polygon fill="#10bb71" points="208.38,299.80 204.96,299.79 208.50,309.66 211.93,309.55" /><polygon fill="#12b55b" points="179.04,344.36 183.80,343.84 182.15,334.35 177.47,334.72" /><polygon fill="#f8a97d" points="330.25,186.49 330.78,185.40 323.51,175.13 323.02,176.22" /><polygon fill="#33e574" points="282.53,245.05 272.77,225.53 271.46,225.71 281.16,245.30" /><polygon fill="#ded470" points="351.60,236.52 352.81,235.34 336.31,213.84 335.24,214.98" /><polygon fill="#fa9a69" points="390.08,192.06 403.02,205.01 404.41,202.85 391.31,189.89" /><polygon fill="#6efd6d" points="315.01,261.81 313.35,262.61 326.67,287.02 328.47,286.10" /><polygon fill="#efbb74" points="341.84,207.03 328.37,189.79 327.65,190.90 341.03,208.16" /><polygon fill="#c4ea6d" points="343.61,243.54 342.17,244.69 358.25,267.34 359.86,266.12" /><polygon fill="#12c07b" points="232.18,268.40 234.47,268.57 230.73,260.88 228.44,260.65" /><polygon fill="#1dcaa0" points="255.18,212.04 254.02,211.88 256.88,214.68 258.00,214.84" /><polygon fill="#29d254" points="274.39,340.39 272.01,330.71 269.11,331.58 271.40,341.38" /><polygon fill="#f28f4b" points="447.20,194.82 457.38,201.23 459.78,198.11 449.38,191.74" /><polygon fill="#4f9e0d" points="221.97,355.87 220.00,360.01 224.14,358.98 225.98,354.91" /><polygon fill="#2ab632" points="226.40,346.71 222.53,347.54 221.97,355.87 225.98,354.91" /><polygon fill="#1fcf65" points="261.63,316.91 255.71,299.09 253.09,299.50 258.92,317.48" /><polygon fill="#48f170" points="288.25,243.66 300.37,267.94 301.95,267.39 289.73,243.22" /><polygon fill="#f89aa0" points="323.39,168.08 323.05,169.19 324.34,172.96 324.67,171.89" /><polygon fill="#69fc6d" points="326.67,287.02 313.35,262.61 311.70,263.39 324.88,287.92" /><polygon fill="#20d47d" points="259.15,214.94 265.26,225.98 266.44,226.01 260.33,215.01" /><polygon fill="#fe8771" points="424.15,161.56 422.71,164.64 429.98,172.08 431.54,169.04" /><polygon fill="#15c46e" points="236.81,268.66 234.47,268.57 239.69,282.58 242.07,282.56" /><polygon fill="#c8e76d" points="361.44,264.89 345.02,242.39 343.61,243.54 359.86,266.12" /><polygon fill="#e1d070" points="336.31,213.84 352.81,235.34 353.97,234.15 337.33,212.71" /><polygon fill="#38c530" points="271.39,345.31 274.44,344.27 274.39,340.39 271.40,341.38" /><polygon fill="#2fe274" points="271.46,225.71 270.16,225.84 279.81,245.51 281.16,245.30" /><polygon fill="#fe8c7b" points="383.09,174.82 383.90,172.69 378.54,165.95 377.77,168.11" /><polygon fill="#1babc1" points="166.29,325.44 170.11,327.97 174.75,327.85 171.04,325.35" /><polygon fill="#f9a47d" points="323.51,175.13 330.78,185.40 331.25,184.33 323.95,174.03" /><polygon fill="#f1a754" points="432.96,239.67 425.09,233.36 423.06,235.59 430.79,241.93" /><polygon fill="#23d15f" points="261.63,316.91 266.25,332.39 269.11,331.58 264.39,316.26" /><polygon fill="#17b7af" points="226.29,258.87 224.02,258.54 226.22,260.34 228.44,260.65" /><polygon fill="#fa825b" points="473.32,161.38 475.82,157.31 467.77,151.71 465.44,155.77" /><polygon fill="#f2b774" points="329.05,188.68 328.37,189.79 341.84,207.03 342.60,205.91" /><polygon fill="#f89f65" points="416.73,218.07 403.02,205.01 401.53,207.19 415.05,220.26" /><polygon fill="#0fb697" points="201.61,299.67 204.96,299.79 201.49,295.04 198.09,294.86" /><polygon fill="#64fb6d" points="311.70,263.39 310.05,264.13 323.10,288.78 324.88,287.92" /><polygon fill="#17bd57" points="221.28,335.45 218.74,321.96 215.16,322.34 217.60,336.00" /><polygon fill="#fd916e" points="383.09,174.82 382.17,176.97 392.44,187.74 393.47,185.61" /><polygon fill="#cce46d" points="346.40,241.22 345.02,242.39 361.44,264.89 362.99,263.66" /><polygon fill="#44ef70" points="298.82,268.45 300.37,267.94 288.25,243.66 286.79,244.07" /><polygon fill="#1ac6a0" points="256.88,214.68 254.02,211.88 252.91,211.67 255.80,214.49" /><polygon fill="#dea030" points="434.28,243.65 436.52,241.36 432.96,239.67 430.79,241.93" /><polygon fill="#b8870d" points="464.99,204.39 469.49,204.48 472.19,201.20 467.57,201.20" /><polygon fill="#e48d32" points="459.78,198.11 457.38,201.23 464.99,204.39 467.57,201.20" /><polygon fill="#19b147" points="184.19,354.41 183.80,343.84 179.04,344.36 179.28,355.11" /><polygon fill="#9afa6a" points="355.43,298.01 357.35,296.80 344.64,276.76 342.86,277.88" /><polygon fill="#e4cc70" points="353.97,234.15 355.10,232.97 338.32,211.57 337.33,212.71" /><polygon fill="#96fb6a" points="341.08,278.98 353.50,299.21 355.43,298.01 342.86,277.88" /><polygon fill="#f6a35f" points="413.29,222.46 425.09,233.36 427.04,231.14 415.05,220.26" /><polygon fill="#9ff96a" points="344.64,276.76 357.35,296.80 359.27,295.57 346.40,275.63" /><polygon fill="#f686af" points="378.52,161.04 377.86,163.22 378.54,165.95 379.19,163.82" /><polygon fill="#f995a0" points="324.95,170.83 323.67,166.99 323.39,168.08 324.67,171.89" /><polygon fill="#91fc6a" points="351.56,300.39 353.50,299.21 341.08,278.98 339.29,280.06" /><polygon fill="#1dd07d" points="264.11,225.91 265.26,225.98 259.15,214.94 258.00,214.84" /><polygon fill="#a4f86a" points="359.27,295.57 361.17,294.34 348.14,274.48 346.40,275.63" /><polygon fill="#60fa6d" points="323.10,288.78 310.05,264.13 308.41,264.85 321.32,289.62" /><polygon fill="#2bde74" points="279.81,245.51 270.16,225.84 268.89,225.94 278.49,245.68" /><polygon fill="#19c769" points="248.00,300.09 250.52,299.84 244.52,282.45 242.07,282.56" /><polygon fill="#8cfd6a" points="337.49,281.12 349.61,301.55 351.56,300.39 339.29,280.06" /><polygon fill="#a9f66a" points="348.14,274.48 361.17,294.34 363.06,293.09 349.88,273.32" /><polygon fill="#d0e16d" points="364.50,262.43 347.75,240.05 346.40,241.22 362.99,263.66" /><polygon fill="#fba07d" points="331.25,184.33 331.67,183.27 324.34,172.96 323.95,174.03" /><polygon fill="#87fd6a" points="347.67,302.70 349.61,301.55 337.49,281.12 335.69,282.16" /><polygon fill="#fd8297" points="424.15,161.56 425.47,158.50 422.65,153.22 421.37,156.35" /><polygon fill="#f4b274" points="343.31,204.79 329.67,187.58 329.05,188.68 342.60,205.91" /><polygon fill="#ed7dc1" points="462.10,141.81 462.74,146.26 464.83,142.13 464.21,137.57" /><polygon fill="#adf46a" points="363.06,293.09 364.94,291.83 351.59,272.14 349.88,273.32" /><polygon fill="#f88b57" points="451.45,188.67 440.14,180.55 438.28,183.60 449.38,191.74" /><polygon fill="#a26f06" points="172.83,377.47 176.79,376.36 171.24,377.53 167.10,378.68" /><polygon fill="#40ed70" points="285.35,244.43 297.28,268.92 298.82,268.45 286.79,244.07" /><polygon fill="#82fd6a" points="333.89,283.18 345.72,303.83 347.67,302.70 335.69,282.16" /><polygon fill="#12ba62" points="208.50,309.66 211.66,322.60 215.16,322.34 211.93,309.55" /><polygon fill="#b2f36a" points="351.59,272.14 364.94,291.83 366.79,290.56 353.29,270.96" /><polygon fill="#fb9669" points="404.41,202.85 405.70,200.70 392.44,187.74 391.31,189.89" /><polygon fill="#5bf86d" points="308.41,264.85 306.77,265.53 319.56,290.43 321.32,289.62" /><polygon fill="#e7c870" points="338.32,211.57 355.10,232.97 356.19,231.80 339.27,210.43" /><polygon fill="#18c2a0" points="252.91,211.67 251.83,211.41 254.76,214.25 255.80,214.49" /><polygon fill="#d3de6d" points="349.07,238.88 347.75,240.05 364.50,262.43 365.99,261.19" /><polygon fill="#7dfd6a" points="343.77,304.93 345.72,303.83 333.89,283.18 332.08,284.18" /><polygon fill="#0bb37a" points="174.75,327.85 170.11,327.97 172.83,334.95 177.47,334.72" /><polygon fill="#0fbc7b" points="226.22,260.34 229.96,268.15 232.18,268.40 228.44,260.65" /><polygon fill="#b6f16a" points="366.79,290.56 368.63,289.29 354.97,269.76 353.29,270.96" /><polygon fill="#1acc7d" points="256.88,214.68 262.99,225.79 264.11,225.91 258.00,214.84" /><polygon fill="#f28247" points="485.46,162.19 475.82,157.31 473.32,161.38 482.72,166.31" /><polygon fill="#fa90a0" points="323.89,165.91 323.67,166.99 324.95,170.83 325.18,169.79" /><polygon fill="#28db74" points="268.89,225.94 267.65,225.99 277.20,245.81 278.49,245.68" /><polygon fill="#26cf54" points="269.11,331.58 266.25,332.39 268.46,342.30 271.40,341.38" /><polygon fill="#24ac32" points="178.03,365.22 183.13,364.33 184.19,354.41 179.28,355.11" /><polygon fill="#1ccb65" points="253.09,299.50 250.52,299.84 256.26,317.98 258.92,317.48" /><polygon fill="#78fd6a" points="330.27,285.15 341.83,306.02 343.77,304.93 332.08,284.18" /><polygon fill="#fc9b7d" points="324.34,172.96 331.67,183.27 332.04,182.22 324.67,171.89" /><polygon fill="#f6ae74" points="330.25,186.49 329.67,187.58 343.31,204.79 343.97,203.69" /><polygon fill="#bbee6a" points="354.97,269.76 368.63,289.29 370.45,288.00 356.62,268.56" /><polygon fill="#13bf6e" points="239.69,282.58 234.47,268.57 232.18,268.40 237.37,282.52" /><polygon fill="#648d04" points="171.24,377.53 176.79,376.36 180.45,371.82 175.12,372.88" /><polygon fill="#56f76d" points="319.56,290.43 306.77,265.53 305.15,266.19 317.81,291.21" /><polygon fill="#3bea70" points="295.76,269.36 297.28,268.92 285.35,244.43 283.93,244.76" /><polygon fill="#1bba4b" points="218.72,348.27 222.53,347.54 221.28,335.45 217.60,336.00" /><polygon fill="#fb8762" points="429.98,172.08 440.14,180.55 441.87,177.51 431.54,169.04" /><polygon fill="#ff877b" points="378.54,165.95 383.90,172.69 384.61,170.59 379.19,163.82" /><polygon fill="#d7da6d" points="367.44,259.96 350.35,237.70 349.07,238.88 365.99,261.19" /><polygon fill="#0eb771" points="208.50,309.66 204.96,299.79 201.61,299.67 205.13,309.66" /><polygon fill="#eac470" points="356.19,231.80 357.23,230.62 340.17,209.29 339.27,210.43" /><polygon fill="#3da018" points="180.45,371.82 183.13,364.33 178.03,365.22 175.12,372.88" /><polygon fill="#35c230" points="268.46,342.30 268.39,346.28 271.39,345.31 271.40,341.38" /><polygon fill="#73fd6a" points="339.89,307.08 341.83,306.02 330.27,285.15 328.47,286.10" /><polygon fill="#15b3af" points="226.22,260.34 224.02,258.54 221.82,258.11 224.06,259.94" /><polygon fill="#f2a254" points="427.04,231.14 425.09,233.36 432.96,239.67 435.04,237.43" /><polygon fill="#20ce5f" points="263.45,333.12 266.25,332.39 261.63,316.91 258.92,317.48" /><polygon fill="#bfec6a" points="370.45,288.00 372.24,286.72 358.25,267.34 356.62,268.56" /><polygon fill="#597f06" points="512.18,161.30 509.32,164.58 505.89,169.08 508.63,165.95" /><polygon fill="#f99a65" points="404.41,202.85 403.02,205.01 416.73,218.07 418.31,215.90" /><polygon fill="#15bea0" points="254.76,214.25 251.83,211.41 250.79,211.11 253.76,213.97" /><polygon fill="#9af861" points="365.21,309.13 357.35,296.80 355.43,298.01 363.16,310.42" /><polygon fill="#fd8c6e" points="394.40,183.49 383.90,172.69 383.09,174.82 393.47,185.61" /><polygon fill="#95f961" points="355.43,298.01 353.50,299.21 361.11,311.70 363.16,310.42" /><polygon fill="#9ff761" points="359.27,295.57 357.35,296.80 365.21,309.13 367.25,307.83" /><polygon fill="#90fa61" points="361.11,311.70 353.50,299.21 351.56,300.39 359.05,312.96" /><polygon fill="#ff7d7a" points="464.83,142.13 462.74,146.26 467.77,151.71 469.96,147.63" /><polygon fill="#a3f661" points="369.27,306.52 361.17,294.34 359.27,295.57 367.25,307.83" /><polygon fill="#24d774" points="277.20,245.81 267.65,225.99 266.44,226.01 275.94,245.89" /><polygon fill="#17c87d" points="261.91,225.63 262.99,225.79 256.88,214.68 255.80,214.49" /><polygon fill="#52f56d" points="305.15,266.19 303.54,266.80 316.08,291.96 317.81,291.21" /><polygon fill="#6efc6a" points="326.67,287.02 337.95,308.12 339.89,307.08 328.47,286.10" /><polygon fill="#fa8ca0" points="325.34,168.77 324.06,164.85 323.89,165.91 325.18,169.79" /><polygon fill="#8cfb61" points="351.56,300.39 349.61,301.55 356.99,314.20 359.05,312.96" /><polygon fill="#98ed44" points="365.84,314.75 367.97,313.41 365.21,309.13 363.16,310.42" /><polygon fill="#a8f561" points="363.06,293.09 361.17,294.34 369.27,306.52 371.29,305.21" /><polygon fill="#93ee44" points="361.11,311.70 363.71,316.08 365.84,314.75 363.16,310.42" /><polygon fill="#9cec44" points="365.21,309.13 367.97,313.41 370.08,312.07 367.25,307.83" /><polygon fill="#c3e96a" points="358.25,267.34 372.24,286.72 374.01,285.43 359.86,266.12" /><polygon fill="#df9c30" points="432.96,239.67 436.52,241.36 438.68,239.08 435.04,237.43" /><polygon fill="#e58132" points="492.18,169.63 495.17,165.42 485.46,162.19 482.72,166.31" /><polygon fill="#37e770" points="282.53,245.05 294.27,269.76 295.76,269.36 283.93,244.76" /><polygon fill="#dad76d" points="351.60,236.52 350.35,237.70 367.44,259.96 368.85,258.72" /><polygon fill="#8fef44" points="361.57,317.39 363.71,316.08 361.11,311.70 359.05,312.96" /><polygon fill="#f682af" points="379.74,161.70 379.07,158.89 378.52,161.04 379.19,163.82" /><polygon fill="#f7a974" points="344.58,202.59 330.78,185.40 330.25,186.49 343.97,203.69" /><polygon fill="#a0eb44" points="370.08,312.07 372.19,310.71 369.27,306.52 367.25,307.83" /><polygon fill="#fd967d" points="332.04,182.22 332.35,181.18 324.95,170.83 324.67,171.89" /><polygon fill="#f79f5f" points="427.04,231.14 428.89,228.94 416.73,218.07 415.05,220.26" /><polygon fill="#87fb61" points="356.99,314.20 349.61,301.55 347.67,302.70 354.92,315.43" /><polygon fill="#f38b4b" points="459.78,198.11 462.06,194.99 451.45,188.67 449.38,191.74" /><polygon fill="#adf361" points="373.29,303.88 364.94,291.83 363.06,293.09 371.29,305.21" /><polygon fill="#fe8271" points="432.96,166.01 425.47,158.50 424.15,161.56 431.54,169.04" /><polygon fill="#8bef44" points="356.99,314.20 359.43,318.68 361.57,317.39 359.05,312.96" /><polygon fill="#16c369" points="239.69,282.58 245.55,300.26 248.00,300.09 242.07,282.56" /><polygon fill="#a4ea44" points="369.27,306.52 372.19,310.71 374.28,309.34 371.29,305.21" /><polygon fill="#edbf70" points="340.17,209.29 357.23,230.62 358.22,229.45 341.03,208.16" /><polygon fill="#28b332" points="221.97,355.87 222.53,347.54 218.72,348.27 218.01,356.73" /><polygon fill="#82fb61" points="347.67,302.70 345.72,303.83 352.86,316.64 354.92,315.43" /><polygon fill="#9e8004" points="505.89,169.08 509.32,164.58 503.40,166.09 500.16,170.44" /><polygon fill="#4e9c0d" points="215.91,360.96 220.00,360.01 221.97,355.87 218.01,356.73" /><polygon fill="#69fb6a" points="336.03,309.14 337.95,308.12 326.67,287.02 324.88,287.92" /><polygon fill="#86f044" points="357.29,319.97 359.43,318.68 356.99,314.20 354.92,315.43" /><polygon fill="#b1f161" points="366.79,290.56 364.94,291.83 373.29,303.88 375.27,302.54" /><polygon fill="#a9e844" points="374.28,309.34 376.36,307.97 373.29,303.88 371.29,305.21" /><polygon fill="#10b05b" points="172.83,334.95 174.32,344.75 179.04,344.36 177.47,334.72" /><polygon fill="#c7e76a" points="374.01,285.43 375.75,284.13 361.44,264.89 359.86,266.12" /><polygon fill="#ca8118" points="503.40,166.09 495.17,165.42 492.18,169.63 500.16,170.44" /><polygon fill="#4df36d" points="316.08,291.96 303.54,266.80 301.95,267.39 314.37,292.67" /><polygon fill="#0db297" points="194.76,294.56 198.34,299.43 201.61,299.67 198.09,294.86" /><polygon fill="#82f044" points="352.86,316.64 355.15,321.23 357.29,319.97 354.92,315.43" /><polygon fill="#7dfb61" points="352.86,316.64 345.72,303.83 343.77,304.93 350.80,317.84" /><polygon fill="#13baa0" points="250.79,211.11 249.80,210.77 252.80,213.64 253.76,213.97" /><polygon fill="#ade744" points="373.29,303.88 376.36,307.97 378.43,306.58 375.27,302.54" /><polygon fill="#b6ef61" points="377.24,301.20 368.63,289.29 366.79,290.56 375.27,302.54" /><polygon fill="#fc9169" points="392.44,187.74 405.70,200.70 406.89,198.57 393.47,185.61" /><polygon fill="#ded36d" points="370.23,257.48 352.81,235.34 351.60,236.52 368.85,258.72" /><polygon fill="#21d474" points="266.44,226.01 265.26,225.98 274.71,245.93 275.94,245.89" /><polygon fill="#15b957" points="215.16,322.34 211.66,322.60 213.98,336.45 217.60,336.00" /><polygon fill="#14c47d" points="254.76,214.25 260.87,225.43 261.91,225.63 255.80,214.49" /><polygon fill="#65fa6a" points="323.10,288.78 334.11,310.13 336.03,309.14 324.88,287.92" /><polygon fill="#33e470" points="292.81,270.12 294.27,269.76 282.53,245.05 281.16,245.30" /><polygon fill="#fa87a0" points="324.17,163.81 324.06,164.85 325.34,168.77 325.45,167.77" /><polygon fill="#0db77b" points="227.81,267.80 229.96,268.15 226.22,260.34 224.06,259.94" /><polygon fill="#7df044" points="353.01,322.47 355.15,321.23 352.86,316.64 350.80,317.84" /><polygon fill="#78fb61" points="343.77,304.93 341.83,306.02 348.74,319.01 350.80,317.84" /><polygon fill="#f9a474" points="331.25,184.33 330.78,185.40 344.58,202.59 345.14,201.51" /><polygon fill="#cbe46a" points="361.44,264.89 375.75,284.13 377.47,282.84 362.99,263.66" /><polygon fill="#b1e544" points="378.43,306.58 380.47,305.20 377.24,301.20 375.27,302.54" /><polygon fill="#fe917d" points="324.95,170.83 332.35,181.18 332.60,180.16 325.18,169.79" /><polygon fill="#baed61" points="370.45,288.00 368.63,289.29 377.24,301.20 379.18,299.86" /><polygon fill="#efbb70" points="358.22,229.45 359.16,228.29 341.84,207.03 341.03,208.16" /><polygon fill="#e48932" points="470.04,198.01 462.06,194.99 459.78,198.11 467.57,201.20" /><polygon fill="#b8850d" points="472.19,201.20 474.79,197.92 470.04,198.01 467.57,201.20" /><polygon fill="#23cb54" points="268.46,342.30 266.25,332.39 263.45,333.12 265.58,343.15" /><polygon fill="#19c765" points="256.26,317.98 250.52,299.84 248.00,300.09 253.66,318.40" /><polygon fill="#48f16d" points="301.95,267.39 300.37,267.94 312.67,293.35 314.37,292.67" /><polygon fill="#79f044" points="348.74,319.01 350.88,323.70 353.01,322.47 350.80,317.84" /><polygon fill="#10bb6e" points="232.18,268.40 229.96,268.15 235.11,282.37 237.37,282.52" /><polygon fill="#fd7d97" points="422.65,153.22 425.47,158.50 426.64,155.45 423.79,150.09" /><polygon fill="#73fb61" points="348.74,319.01 341.83,306.02 339.89,307.08 346.69,320.16" /><polygon fill="#1aa7c1" points="165.53,327.95 170.11,327.97 166.29,325.44 161.60,325.38" /><polygon fill="#b5e344" points="377.24,301.20 380.47,305.20 382.50,303.81 379.18,299.86" /><polygon fill="#60f96a" points="332.21,311.09 334.11,310.13 323.10,288.78 321.32,289.62" /><polygon fill="#ff827b" points="384.61,170.59 385.21,168.51 379.74,161.70 379.19,163.82" /><polygon fill="#fa7d5b" points="467.77,151.71 475.82,157.31 478.18,153.23 469.96,147.63" /><polygon fill="#e1d06d" points="353.97,234.15 352.81,235.34 370.23,257.48 371.57,256.25" /><polygon fill="#beea61" points="381.10,298.51 372.24,286.72 370.45,288.00 379.18,299.86" /><polygon fill="#f88757" points="441.87,177.51 440.14,180.55 451.45,188.67 453.39,185.61" /><polygon fill="#cfe16a" points="377.47,282.84 379.15,281.54 364.50,262.43 362.99,263.66" /><polygon fill="#13afaf" points="221.82,258.11 219.70,257.60 221.97,259.44 224.06,259.94" /><polygon fill="#10b662" points="208.22,322.76 211.66,322.60 208.50,309.66 205.13,309.66" /><polygon fill="#11b5a0" points="252.80,213.64 249.80,210.77 248.84,210.38 251.88,213.27" /><polygon fill="#1dd074" points="274.71,245.93 265.26,225.98 264.11,225.91 273.52,245.93" /><polygon fill="#74ef44" points="348.75,324.91 350.88,323.70 348.74,319.01 346.69,320.16" /><polygon fill="#2fe170" points="279.81,245.51 291.38,270.43 292.81,270.12 281.16,245.30" /><polygon fill="#33bf30" points="265.44,347.19 268.39,346.28 268.46,342.30 265.58,343.15" /><polygon fill="#1dca5f" points="256.26,317.98 260.71,333.79 263.45,333.12 258.92,317.48" /><polygon fill="#f39e54" points="437.04,235.21 428.89,228.94 427.04,231.14 435.04,237.43" /><polygon fill="#12c07d" points="259.88,225.19 260.87,225.43 254.76,214.25 253.76,213.97" /><polygon fill="#fa9565" points="419.79,213.75 405.70,200.70 404.41,202.85 418.31,215.90" /><polygon fill="#6ffa61" points="339.89,307.08 337.95,308.12 344.65,321.29 346.69,320.16" /><polygon fill="#b8e144" points="382.50,303.81 384.50,302.41 381.10,298.51 379.18,299.86" /><polygon fill="#fe876e" points="384.61,170.59 383.90,172.69 394.40,183.49 395.22,181.41" /><polygon fill="#faa074" points="345.64,200.44 331.67,183.27 331.25,184.33 345.14,201.51" /><polygon fill="#fb82a0" points="325.51,166.78 324.21,162.78 324.17,163.81 325.45,167.77" /><polygon fill="#c2e861" points="374.01,285.43 372.24,286.72 381.10,298.51 383.00,297.16" /><polygon fill="#f1b770" points="341.84,207.03 359.16,228.29 360.06,227.14 342.60,205.91" /><polygon fill="#17ad47" points="179.04,344.36 174.32,344.75 174.42,355.69 179.28,355.11" /><polygon fill="#fe8c7d" points="332.60,180.16 332.80,179.16 325.34,168.77 325.18,169.79" /><polygon fill="#5bf86a" points="319.56,290.43 330.32,312.02 332.21,311.09 321.32,289.62" /><polygon fill="#44ef6d" points="312.67,293.35 300.37,267.94 298.82,268.45 311.00,293.99" /><polygon fill="#70ef44" points="344.65,321.29 346.63,326.09 348.75,324.91 346.69,320.16" /><polygon fill="#f67daf" points="379.50,156.76 379.07,158.89 379.74,161.70 380.17,159.62" /><polygon fill="#d3dd6a" points="364.50,262.43 379.15,281.54 380.81,280.24 365.99,261.19" /><polygon fill="#e4cc6d" points="372.86,255.03 355.10,232.97 353.97,234.15 371.57,256.25" /><polygon fill="#f89a5f" points="416.73,218.07 428.89,228.94 430.66,226.76 418.31,215.90" /><polygon fill="#bcde44" points="381.10,298.51 384.50,302.41 386.48,301.02 383.00,297.16" /><polygon fill="#6af961" points="344.65,321.29 337.95,308.12 336.03,309.14 342.61,322.40" /><polygon fill="#e09930" points="438.68,239.08 440.76,236.82 437.04,235.21 435.04,237.43" /><polygon fill="#13bf69" points="243.16,300.35 245.55,300.26 239.69,282.58 237.37,282.52" /><polygon fill="#ed79c1" points="464.83,142.13 466.76,138.00 466.15,133.31 464.21,137.57" /><polygon fill="#fc8262" points="441.87,177.51 443.46,174.48 432.96,166.01 431.54,169.04" /><polygon fill="#c6e561" points="384.88,295.81 375.75,284.13 374.01,285.43 383.00,297.16" /><polygon fill="#0bb271" points="201.61,299.67 198.34,299.43 201.84,309.54 205.13,309.66" /><polygon fill="#19b64b" points="213.98,336.45 214.97,348.89 218.72,348.27 217.60,336.00" /><polygon fill="#1acc74" points="264.11,225.91 262.99,225.79 272.37,245.89 273.52,245.93" /><polygon fill="#2bde70" points="289.97,270.71 291.38,270.43 279.81,245.51 278.49,245.68" /><polygon fill="#0fb1a0" points="248.84,210.38 247.94,209.94 251.00,212.86 251.88,213.27" /><polygon fill="#56f66a" points="328.45,312.93 330.32,312.02 319.56,290.43 317.81,291.21" /><polygon fill="#6cee44" points="344.52,327.25 346.63,326.09 344.65,321.29 342.61,322.40" /><polygon fill="#0fbc7d" points="252.80,213.64 258.92,224.90 259.88,225.19 253.76,213.97" /><polygon fill="#09ae7a" points="172.83,334.95 170.11,327.97 165.53,327.95 168.26,335.04" /><polygon fill="#c0dc44" points="386.48,301.02 388.44,299.62 384.88,295.81 383.00,297.16" /><polygon fill="#40ec6d" points="298.82,268.45 297.28,268.92 309.35,294.59 311.00,293.99" /><polygon fill="#f3b270" points="360.06,227.14 360.90,226.00 343.31,204.79 342.60,205.91" /><polygon fill="#fb9b74" points="332.04,182.22 331.67,183.27 345.64,200.44 346.09,199.38" /><polygon fill="#d7da6a" points="380.81,280.24 382.43,278.95 367.44,259.96 365.99,261.19" /><polygon fill="#65f861" points="336.03,309.14 334.11,310.13 340.59,323.48 342.61,322.40" /><polygon fill="#fc8c69" points="406.89,198.57 407.98,196.46 394.40,183.49 393.47,185.61" /><polygon fill="#fb7da0" points="324.20,161.78 324.21,162.78 325.51,166.78 325.50,165.82" /><polygon fill="#ff877d" points="325.34,168.77 332.80,179.16 332.94,178.18 325.45,167.77" /><polygon fill="#cae261" points="377.47,282.84 375.75,284.13 384.88,295.81 386.72,294.46" /><polygon fill="#f27d47" points="478.18,153.23 475.82,157.31 485.46,162.19 488.05,158.06" /><polygon fill="#e7c86d" points="356.19,231.80 355.10,232.97 372.86,255.03 374.11,253.81" /><polygon fill="#0bb37b" points="221.97,259.44 225.73,267.37 227.81,267.80 224.06,259.94" /><polygon fill="#a27006" points="171.24,377.53 165.72,378.57 161.39,379.76 167.10,378.68" /><polygon fill="#22a832" points="174.42,355.69 172.97,365.99 178.03,365.22 179.28,355.11" /><polygon fill="#fe7d71" points="426.64,155.45 425.47,158.50 432.96,166.01 434.25,162.99" /><polygon fill="#67ed44" points="340.59,323.48 342.42,328.39 344.52,327.25 342.61,322.40" /><polygon fill="#f3864b" points="451.45,188.67 462.06,194.99 464.22,191.88 453.39,185.61" /><polygon fill="#52f46a" points="316.08,291.96 326.60,313.80 328.45,312.93 317.81,291.21" /><polygon fill="#0eb76e" points="235.11,282.37 229.96,268.15 227.81,267.80 232.93,282.14" /><polygon fill="#c3d944" points="384.88,295.81 388.44,299.62 390.37,298.23 386.72,294.46" /><polygon fill="#17c365" points="248.00,300.09 245.55,300.26 251.13,318.75 253.66,318.40" /><polygon fill="#60f761" points="340.59,323.48 334.11,310.13 332.21,311.09 338.58,324.54" /><polygon fill="#20c854" points="263.45,333.12 260.71,333.79 262.75,343.93 265.58,343.15" /><polygon fill="#28db70" points="277.20,245.81 288.60,270.94 289.97,270.71 278.49,245.68" /><polygon fill="#dad76a" points="367.44,259.96 382.43,278.95 384.01,277.66 368.85,258.72" /><polygon fill="#ff7d7b" points="379.74,161.70 385.21,168.51 385.69,166.45 380.17,159.62" /><polygon fill="#17c874" points="272.37,245.89 262.99,225.79 261.91,225.63 271.25,245.80" /><polygon fill="#cedf61" points="388.54,293.11 379.15,281.54 377.47,282.84 386.72,294.46" /><polygon fill="#26af32" points="218.72,348.27 214.97,348.89 214.12,357.49 218.01,356.73" /><polygon fill="#3bea6d" points="309.35,294.59 297.28,268.92 295.76,269.36 307.73,295.16" /><polygon fill="#0daca0" points="251.00,212.86 247.94,209.94 247.07,209.46 250.17,212.40" /><polygon fill="#0bad97" points="195.14,299.07 198.34,299.43 194.76,294.56 191.52,294.14" /><polygon fill="#0db77d" points="258.01,224.56 258.92,224.90 252.80,213.64 251.88,213.27" /><polygon fill="#638c04" points="169.83,373.81 165.72,378.57 171.24,377.53 175.12,372.88" /><polygon fill="#f5ae70" points="343.31,204.79 360.90,226.00 361.69,224.87 343.97,203.69" /><polygon fill="#4d9a0d" points="214.12,357.49 211.87,361.80 215.91,360.96 218.01,356.73" /><polygon fill="#11abaf" points="221.97,259.44 219.70,257.60 217.65,256.99 219.96,258.86" /><polygon fill="#3c9d18" points="178.03,365.22 172.97,365.99 169.83,373.81 175.12,372.88" /><polygon fill="#fc9674" points="346.48,198.34 332.35,181.18 332.04,182.22 346.09,199.38" /><polygon fill="#ff787a" points="471.98,143.55 466.76,138.00 464.83,142.13 469.96,147.63" /><polygon fill="#eac46d" points="375.32,252.59 357.23,230.62 356.19,231.80 374.11,253.81" /><polygon fill="#63ec44" points="340.34,329.50 342.42,328.39 340.59,323.48 338.58,324.54" /><polygon fill="#13b457" points="213.98,336.45 211.66,322.60 208.22,322.76 210.43,336.79" /><polygon fill="#fa78a0" points="325.43,164.88 324.12,160.81 324.20,161.78 325.50,165.82" /><polygon fill="#fe826e" points="395.93,179.34 385.21,168.51 384.61,170.59 395.22,181.41" /><polygon fill="#ff827d" points="332.94,178.18 333.02,177.21 325.51,166.78 325.45,167.77" /><polygon fill="#fb9165" points="406.89,198.57 405.70,200.70 419.79,213.75 421.17,211.62" /><polygon fill="#1ac65f" points="258.02,334.37 260.71,333.79 256.26,317.98 253.66,318.40" /><polygon fill="#f49954" points="430.66,226.76 428.89,228.94 437.04,235.21 438.94,233.00" /><polygon fill="#c7d644" points="390.37,298.23 392.26,296.83 388.54,293.11 386.72,294.46" /><polygon fill="#30bc30" points="262.75,343.93 262.55,348.02 265.44,347.19 265.58,343.15" /><polygon fill="#5cf661" points="332.21,311.09 330.32,312.02 336.59,325.57 338.58,324.54" /><polygon fill="#4df36a" points="324.77,314.64 326.60,313.80 316.08,291.96 314.37,292.67" /><polygon fill="#598006" points="512.62,160.05 509.32,164.58 512.18,161.30 515.61,156.62" /><polygon fill="#d2dc61" points="380.81,280.24 379.15,281.54 388.54,293.11 390.32,291.76" /><polygon fill="#e57e32" points="485.46,162.19 495.17,165.42 498.03,161.20 488.05,158.06" /><polygon fill="#ddd36a" points="384.01,277.66 385.55,276.38 370.23,257.48 368.85,258.72" /><polygon fill="#f679af" points="380.48,157.56 379.81,154.65 379.50,156.76 380.17,159.62" /><polygon fill="#e58532" points="464.22,191.88 462.06,194.99 470.04,198.01 472.38,194.83" /><polygon fill="#fd7897" points="426.64,155.45 427.66,152.42 424.79,146.99 423.79,150.09" /><polygon fill="#24d770" points="287.27,271.13 288.60,270.94 277.20,245.81 275.94,245.89" /><polygon fill="#0eac5b" points="169.67,345.00 174.32,344.75 172.83,334.95 168.26,335.04" /><polygon fill="#11bb69" points="235.11,282.37 240.85,300.35 243.16,300.35 237.37,282.52" /><polygon fill="#37e76d" points="295.76,269.36 294.27,269.76 306.13,295.69 307.73,295.16" /><polygon fill="#f9955f" points="430.66,226.76 432.33,224.60 419.79,213.75 418.31,215.90" /><polygon fill="#15c474" points="261.91,225.63 260.87,225.43 270.18,245.66 271.25,245.80" /><polygon fill="#5feb44" points="336.59,325.57 338.28,330.58 340.34,329.50 338.58,324.54" /><polygon fill="#b8830d" points="470.04,198.01 474.79,197.92 477.27,194.66 472.38,194.83" /><polygon fill="#e19530" points="437.04,235.21 440.76,236.82 442.74,234.59 438.94,233.00" /><polygon fill="#0ba8a0" points="247.07,209.46 246.26,208.93 249.39,211.90 250.17,212.40" /><polygon fill="#f7a970" points="361.69,224.87 362.43,223.75 344.58,202.59 343.97,203.69" /><polygon fill="#f88257" points="455.20,182.56 443.46,174.48 441.87,177.51 453.39,185.61" /><polygon fill="#0bb37d" points="251.00,212.86 257.14,224.19 258.01,224.56 251.88,213.27" /><polygon fill="#cad444" points="388.54,293.11 392.26,296.83 394.13,295.45 390.32,291.76" /><polygon fill="#ecbf6d" points="358.22,229.45 357.23,230.62 375.32,252.59 376.48,251.39" /><polygon fill="#0eb162" points="201.84,309.54 204.86,322.79 208.22,322.76 205.13,309.66" /><polygon fill="#57f561" points="336.59,325.57 330.32,312.02 328.45,312.93 334.62,326.57" /><polygon fill="#fd9174" points="332.60,180.16 332.35,181.18 346.48,198.34 346.81,197.32" /><polygon fill="#9e7f04" points="503.40,166.09 509.32,164.58 512.62,160.05 506.50,161.73" /><polygon fill="#49f16a" points="312.67,293.35 322.95,315.45 324.77,314.64 314.37,292.67" /><polygon fill="#ca7e18" points="498.03,161.20 495.17,165.42 503.40,166.09 506.50,161.73" /><polygon fill="#fa73a0" points="323.99,159.85 324.12,160.81 325.43,164.88 325.30,163.97" /><polygon fill="#d5d961" points="392.07,290.42 382.43,278.95 380.81,280.24 390.32,291.76" /><polygon fill="#ff7d7d" points="325.51,166.78 333.02,177.21 333.05,176.28 325.50,165.82" /><polygon fill="#fd8769" points="394.40,183.49 407.98,196.46 408.96,194.38 395.22,181.41" /><polygon fill="#e1cf6a" points="370.23,257.48 385.55,276.38 387.06,275.10 371.57,256.25" /><polygon fill="#09ae7b" points="223.73,266.84 225.73,267.37 221.97,259.44 219.96,258.86" /><polygon fill="#5bea44" points="336.23,331.64 338.28,330.58 336.59,325.57 334.62,326.57" /><polygon fill="#33e46d" points="306.13,295.69 294.27,269.76 292.81,270.12 304.57,296.18" /><polygon fill="#21d470" points="274.71,245.93 285.97,271.28 287.27,271.13 275.94,245.89" /><polygon fill="#18a3c1" points="156.97,325.16 161.02,327.78 165.53,327.95 161.60,325.38" /><polygon fill="#cdd144" points="394.13,295.45 395.96,294.06 392.07,290.42 390.32,291.76" /><polygon fill="#f9785b" points="478.18,153.23 480.39,149.14 471.98,143.55 469.96,147.63" /><polygon fill="#52f361" points="328.45,312.93 326.60,313.80 332.66,327.54 334.62,326.57" /><polygon fill="#12c074" points="270.18,245.66 260.87,225.43 259.88,225.19 269.15,245.48" /><polygon fill="#fc7d62" points="432.96,166.01 443.46,174.48 444.92,171.48 434.25,162.99" /><polygon fill="#0aae71" points="201.84,309.54 198.34,299.43 195.14,299.07 198.63,309.29" /><polygon fill="#0cb26e" points="227.81,267.80 225.73,267.37 230.82,281.81 232.93,282.14" /><polygon fill="#14bf65" points="251.13,318.75 245.55,300.26 243.16,300.35 248.66,319.01" /><polygon fill="#efbb6d" points="377.58,250.19 359.16,228.29 358.22,229.45 376.48,251.39" /><polygon fill="#f9a470" points="344.58,202.59 362.43,223.75 363.11,222.65 345.14,201.51" /><polygon fill="#44ee6a" points="321.17,316.23 322.95,315.45 312.67,293.35 311.00,293.99" /><polygon fill="#ff787b" points="385.69,166.45 386.05,164.43 380.48,157.56 380.17,159.62" /><polygon fill="#d9d561" points="384.01,277.66 382.43,278.95 392.07,290.42 393.79,289.08" /><polygon fill="#09ae7d" points="256.32,223.77 257.14,224.19 251.00,212.86 250.17,212.40" /><polygon fill="#0aa3a0" points="249.39,211.90 246.26,208.93 245.50,208.36 248.66,211.35" /><polygon fill="#1dc454" points="262.75,343.93 260.71,333.79 258.02,334.37 259.99,344.63" /><polygon fill="#fe8c74" points="347.08,196.32 332.80,179.16 332.60,180.16 346.81,197.32" /><polygon fill="#17b24b" points="211.29,349.41 214.97,348.89 213.98,336.45 210.43,336.79" /><polygon fill="#e4cb6a" points="387.06,275.10 388.52,273.83 372.86,255.03 371.57,256.25" /><polygon fill="#10a6af" points="217.65,256.99 215.68,256.29 218.04,258.18 219.96,258.86" /><polygon fill="#ff787d" points="333.05,176.28 333.01,175.36 325.43,164.88 325.50,165.82" /><polygon fill="#fa6fa0" points="325.11,163.08 323.79,158.93 323.99,159.85 325.30,163.97" /><polygon fill="#56e844" points="332.66,327.54 334.20,332.67 336.23,331.64 334.62,326.57" /><polygon fill="#fe7d6e" points="385.69,166.45 385.21,168.51 395.93,179.34 396.52,177.31" /><polygon fill="#15a947" points="174.42,355.69 174.32,344.75 169.67,345.00 169.62,356.13" /><polygon fill="#fc8c65" points="422.45,209.52 407.98,196.46 406.89,198.57 421.17,211.62" /><polygon fill="#18c25f" points="251.13,318.75 255.40,334.88 258.02,334.37 253.66,318.40" /><polygon fill="#d1cd44" points="392.07,290.42 395.96,294.06 397.76,292.68 393.79,289.08" /><polygon fill="#4ef161" points="332.66,327.54 326.60,313.80 324.77,314.64 330.73,328.49" /><polygon fill="#fe7871" points="435.38,160.00 427.66,152.42 426.64,155.45 434.25,162.99" /><polygon fill="#2fe16d" points="292.81,270.12 291.38,270.43 303.04,296.63 304.57,296.18" /><polygon fill="#f59554" points="440.75,230.82 432.33,224.60 430.66,226.76 438.94,233.00" /><polygon fill="#1ed070" points="284.71,271.38 285.97,271.28 274.71,245.93 273.52,245.93" /><polygon fill="#2eb830" points="259.72,348.78 262.55,348.02 262.75,343.93 259.99,344.63" /><polygon fill="#ec75c1" points="466.15,133.31 466.76,138.00 468.52,133.86 467.92,129.05" /><polygon fill="#f574af" points="380.00,152.59 379.81,154.65 380.48,157.56 380.68,155.54" /><polygon fill="#dcd261" points="395.47,287.75 385.55,276.38 384.01,277.66 393.79,289.08" /><polygon fill="#10bb74" points="259.88,225.19 258.92,224.90 268.17,245.26 269.15,245.48" /><polygon fill="#40ec6a" points="309.35,294.59 319.41,316.97 321.17,316.23 311.00,293.99" /><polygon fill="#f1b76d" points="360.06,227.14 359.16,228.29 377.58,250.19 378.64,249.01" /><polygon fill="#f3824b" points="464.22,191.88 466.25,188.80 455.20,182.56 453.39,185.61" /><polygon fill="#fa9f70" points="363.11,222.65 363.74,221.57 345.64,200.44 345.14,201.51" /><polygon fill="#0fb669" points="238.60,300.26 240.85,300.35 235.11,282.37 232.93,282.14" /><polygon fill="#07a97d" points="249.39,211.90 255.55,223.30 256.32,223.77 250.17,212.40" /><polygon fill="#089fa0" points="245.50,208.36 244.80,207.75 247.99,210.76 248.66,211.35" /><polygon fill="#e7c76a" points="372.86,255.03 388.52,273.83 389.94,272.57 374.11,253.81" /><polygon fill="#09a997" points="188.35,293.59 192.04,298.58 195.14,299.07 191.52,294.14" /><polygon fill="#fe8774" points="332.94,178.18 332.80,179.16 347.08,196.32 347.28,195.35" /><polygon fill="#fa905f" points="419.79,213.75 432.33,224.60 433.90,222.47 421.17,211.62" /><polygon fill="#07a97a" points="165.53,327.95 161.02,327.78 163.75,334.98 168.26,335.04" /><polygon fill="#52e744" points="332.20,333.66 334.20,332.67 332.66,327.54 330.73,328.49" /><polygon fill="#fe737d" points="325.43,164.88 333.01,175.36 332.91,174.47 325.30,163.97" /><polygon fill="#24ac32" points="214.12,357.49 214.97,348.89 211.29,349.41 210.29,358.14" /><polygon fill="#f96aa0" points="323.52,158.03 323.79,158.93 325.11,163.08 324.86,162.22" /><polygon fill="#e29130" points="442.74,234.59 444.63,232.37 440.75,230.82 438.94,233.00" /><polygon fill="#d4ca44" points="397.76,292.68 399.51,291.32 395.47,287.75 393.79,289.08" /><polygon fill="#11b057" points="208.22,322.76 204.86,322.79 206.97,337.01 210.43,336.79" /><polygon fill="#49ef61" points="324.77,314.64 322.95,315.45 328.83,329.40 330.73,328.49" /><polygon fill="#f17947" points="490.50,153.92 480.39,149.14 478.18,153.23 488.05,158.06" /><polygon fill="#fd8269" points="408.96,194.38 409.83,192.33 395.93,179.34 395.22,181.41" /><polygon fill="#4c980d" points="207.91,362.53 211.87,361.80 214.12,357.49 210.29,358.14" /><polygon fill="#2cde6d" points="303.04,296.63 291.38,270.43 289.97,270.71 301.54,297.04" /><polygon fill="#07a97b" points="218.04,258.18 221.82,266.22 223.73,266.84 219.96,258.86" /><polygon fill="#dfce61" points="387.06,275.10 385.55,276.38 395.47,287.75 397.10,286.43" /><polygon fill="#1bcc70" points="272.37,245.89 283.50,271.44 284.71,271.38 273.52,245.93" /><polygon fill="#3ce96a" points="317.68,317.67 319.41,316.97 309.35,294.59 307.73,295.16" /><polygon fill="#21a532" points="167.97,366.63 172.97,365.99 174.42,355.69 169.62,356.13" /><polygon fill="#f3b26d" points="379.65,247.85 360.90,226.00 360.06,227.14 378.64,249.01" /><polygon fill="#0db774" points="268.17,245.26 258.92,224.90 258.01,224.56 267.23,244.98" /><polygon fill="#fc7397" points="424.79,146.99 427.66,152.42 428.53,149.41 425.62,143.91" /><polygon fill="#fb9b70" points="345.64,200.44 363.74,221.57 364.30,220.50 346.09,199.38" /><polygon fill="#e9c36a" points="389.94,272.57 391.31,271.32 375.32,252.59 374.11,253.81" /><polygon fill="#0aae6e" points="230.82,281.81 225.73,267.37 223.73,266.84 228.79,281.39" /><polygon fill="#a37206" points="161.39,379.76 165.72,378.57 160.24,379.49 155.70,380.72" /><polygon fill="#06a47d" points="254.83,222.79 255.55,223.30 249.39,211.90 248.66,211.35" /><polygon fill="#4ee544" points="328.83,329.40 330.22,334.63 332.20,333.66 330.73,328.49" /><polygon fill="#fe8274" points="347.43,194.39 333.02,177.21 332.94,178.18 347.28,195.35" /><polygon fill="#e58132" points="474.60,191.67 466.25,188.80 464.22,191.88 472.38,194.83" /><polygon fill="#fe737b" points="380.48,157.56 386.05,164.43 386.30,162.45 380.68,155.54" /><polygon fill="#fe737a" points="468.52,133.86 466.76,138.00 471.98,143.55 473.84,139.46" /><polygon fill="#12ba65" points="243.16,300.35 240.85,300.35 246.27,319.18 248.66,319.01" /><polygon fill="#0cad62" points="201.58,322.71 204.86,322.79 201.84,309.54 198.63,309.29" /><polygon fill="#f87d57" points="444.92,171.48 443.46,174.48 455.20,182.56 456.87,179.54" /><polygon fill="#d6c744" points="395.47,287.75 399.51,291.32 401.23,289.95 397.10,286.43" /><polygon fill="#fe6e7d" points="332.91,174.47 332.74,173.61 325.11,163.08 325.30,163.97" /><polygon fill="#45ed61" points="328.83,329.40 322.95,315.45 321.17,316.23 326.94,330.27" /><polygon fill="#0ea2af" points="218.04,258.18 215.68,256.29 213.80,255.49 216.20,257.40" /><polygon fill="#1bc054" points="258.02,334.37 255.40,334.88 257.29,345.26 259.99,344.63" /><polygon fill="#b9810d" points="477.27,194.66 479.61,191.41 474.60,191.67 472.38,194.83" /><polygon fill="#3a9b18" points="169.83,373.81 172.97,365.99 167.97,366.63 164.59,374.61" /><polygon fill="#e2ca61" points="398.70,285.12 388.52,273.83 387.06,275.10 397.10,286.43" /><polygon fill="#fe786e" points="396.99,175.31 386.05,164.43 385.69,166.45 396.52,177.31" /><polygon fill="#638b04" points="160.24,379.49 165.72,378.57 169.83,373.81 164.59,374.61" /><polygon fill="#28da6d" points="289.97,270.71 288.60,270.94 300.08,297.41 301.54,297.04" /><polygon fill="#38e76a" points="306.13,295.69 315.98,318.34 317.68,317.67 307.73,295.16" /><polygon fill="#18c870" points="282.32,271.45 283.50,271.44 272.37,245.89 271.25,245.80" /><polygon fill="#fc8765" points="408.96,194.38 407.98,196.46 422.45,209.52 423.62,207.44" /><polygon fill="#e57a32" points="498.03,161.20 500.74,156.96 490.50,153.92 488.05,158.06" /><polygon fill="#f5ad6d" points="361.69,224.87 360.90,226.00 379.65,247.85 380.60,246.69" /><polygon fill="#15be5f" points="252.85,335.31 255.40,334.88 251.13,318.75 248.66,319.01" /><polygon fill="#0ca85b" points="163.75,334.98 165.08,345.11 169.67,345.00 168.26,335.04" /><polygon fill="#0bb274" points="258.01,224.56 257.14,224.19 266.34,244.67 267.23,244.98" /><polygon fill="#ecbf6a" points="375.32,252.59 391.31,271.32 392.64,270.08 376.48,251.39" /><polygon fill="#08a971" points="195.14,299.07 192.04,298.58 195.51,308.92 198.63,309.29" /><polygon fill="#f56faf" points="380.75,153.55 380.06,150.56 380.00,152.59 380.68,155.54" /><polygon fill="#4ae344" points="328.27,335.56 330.22,334.63 328.83,329.40 326.94,330.27" /><polygon fill="#fc9670" points="364.30,220.50 364.81,219.45 346.48,198.34 346.09,199.38" /><polygon fill="#fb7862" points="444.92,171.48 446.23,168.49 435.38,160.00 434.25,162.99" /><polygon fill="#f69054" points="433.90,222.47 432.33,224.60 440.75,230.82 442.46,228.67" /><polygon fill="#04a07d" points="247.99,210.76 254.17,222.24 254.83,222.79 248.66,211.35" /><polygon fill="#fe7d74" points="333.05,176.28 333.02,177.21 347.43,194.39 347.52,193.46" /><polygon fill="#2cb530" points="257.29,345.26 256.95,349.46 259.72,348.78 259.99,344.63" /><polygon fill="#0db269" points="230.82,281.81 236.44,300.08 238.60,300.26 232.93,282.14" /><polygon fill="#5a8206" points="518.90,151.91 515.79,155.50 512.62,160.05 515.61,156.62" /><polygon fill="#d9c344" points="401.23,289.95 402.91,288.60 398.70,285.12 397.10,286.43" /><polygon fill="#41ea61" points="321.17,316.23 319.41,316.97 325.09,331.12 326.94,330.27" /><polygon fill="#fd697d" points="325.11,163.08 332.74,173.61 332.52,172.78 324.86,162.22" /><polygon fill="#fa8c5f" points="433.90,222.47 435.36,220.37 422.45,209.52 421.17,211.62" /><polygon fill="#15ae4b" points="206.97,337.01 207.68,349.81 211.29,349.41 210.43,336.79" /><polygon fill="#e5c661" points="389.94,272.57 388.52,273.83 398.70,285.12 400.25,283.82" /><polygon fill="#25d76d" points="300.08,297.41 288.60,270.94 287.27,271.13 298.66,297.73" /><polygon fill="#ca7b18" points="509.46,157.34 500.74,156.96 498.03,161.20 506.50,161.73" /><polygon fill="#34e46a" points="314.32,318.97 315.98,318.34 306.13,295.69 304.57,296.18" /><polygon fill="#9e7e04" points="512.62,160.05 515.79,155.50 509.46,157.34 506.50,161.73" /><polygon fill="#fe7371" points="428.53,149.41 427.66,152.42 435.38,160.00 436.36,157.04" /><polygon fill="#fd7d69" points="395.93,179.34 409.83,192.33 410.58,190.31 396.52,177.31" /><polygon fill="#e28d30" points="440.75,230.82 444.63,232.37 446.42,230.19 442.46,228.67" /><polygon fill="#15c470" points="270.18,245.66 281.19,271.41 282.32,271.45 271.25,245.80" /><polygon fill="#06a47b" points="219.99,265.51 221.82,266.22 218.04,258.18 216.20,257.40" /><polygon fill="#179fc1" points="156.58,327.44 161.02,327.78 156.97,325.16 152.42,324.78" /><polygon fill="#f7a96d" points="381.49,245.56 362.43,223.75 361.69,224.87 380.60,246.69" /><polygon fill="#f9745b" points="471.98,143.55 480.39,149.14 482.43,145.06 473.84,139.46" /><polygon fill="#eebb6a" points="392.64,270.08 393.92,268.86 377.58,250.19 376.48,251.39" /><polygon fill="#09ae74" points="266.34,244.67 257.14,224.19 256.32,223.77 265.50,244.30" /><polygon fill="#47e144" points="325.09,331.12 326.35,336.46 328.27,335.56 326.94,330.27" /><polygon fill="#fd9170" points="346.48,198.34 364.81,219.45 365.25,218.42 346.81,197.32" /><polygon fill="#039b7d" points="253.56,221.64 254.17,222.24 247.99,210.76 247.36,210.13" /><polygon fill="#fe7874" points="347.54,192.55 333.01,175.36 333.05,176.28 347.52,193.46" /><polygon fill="#3de861" points="325.09,331.12 319.41,316.97 317.68,317.67 323.27,331.92" /><polygon fill="#dcc044" points="398.70,285.12 402.91,288.60 404.54,287.27 400.25,283.82" /><polygon fill="#08a96e" points="223.73,266.84 221.82,266.22 226.85,280.88 228.79,281.39" /><polygon fill="#08a497" points="189.03,297.96 192.04,298.58 188.35,293.59 185.29,292.90" /><polygon fill="#f37d4b" points="455.20,182.56 466.25,188.80 468.14,185.73 456.87,179.54" /><polygon fill="#fe6e7b" points="386.30,162.45 386.42,160.50 380.75,153.55 380.68,155.54" /><polygon fill="#fc647d" points="332.52,172.78 332.23,171.98 324.55,161.39 324.86,162.22" /><polygon fill="#e8c261" points="401.76,282.54 391.31,271.32 389.94,272.57 400.25,283.82" /><polygon fill="#0fb665" points="246.27,319.18 240.85,300.35 238.60,300.26 243.95,319.27" /><polygon fill="#0d9daf" points="213.80,255.49 212.02,254.59 214.45,256.53 216.20,257.40" /><polygon fill="#14a547" points="169.67,345.00 165.08,345.11 164.88,356.43 169.62,356.13" /><polygon fill="#21d36d" points="287.27,271.13 285.97,271.28 297.28,298.01 298.66,297.73" /><polygon fill="#30e16a" points="303.04,296.63 312.69,319.55 314.32,318.97 304.57,296.18" /><polygon fill="#0fac57" points="206.97,337.01 204.86,322.79 201.58,322.71 203.58,337.11" /><polygon fill="#23a832" points="211.29,349.41 207.68,349.81 206.54,358.68 210.29,358.14" /><polygon fill="#fd736e" points="386.30,162.45 386.05,164.43 396.99,175.31 397.34,173.35" /><polygon fill="#18bc54" points="257.29,345.26 255.40,334.88 252.85,335.31 254.67,345.80" /><polygon fill="#12bf70" points="280.11,271.33 281.19,271.41 270.18,245.66 269.15,245.48" /><polygon fill="#ec71c1" points="468.52,133.86 470.10,129.72 469.50,124.78 467.92,129.05" /><polygon fill="#f8a46d" points="363.11,222.65 362.43,223.75 381.49,245.56 382.33,244.44" /><polygon fill="#f1b66a" points="377.58,250.19 393.92,268.86 395.14,267.65 378.64,249.01" /><polygon fill="#43de44" points="324.46,337.32 326.35,336.46 325.09,331.12 323.27,331.92" /><polygon fill="#08a974" points="256.32,223.77 255.55,223.30 264.72,243.90 265.50,244.30" /><polygon fill="#fc6e97" points="428.53,149.41 429.23,146.44 426.29,140.85 425.62,143.91" /><polygon fill="#fc8265" points="424.67,205.40 409.83,192.33 408.96,194.38 423.62,207.44" /><polygon fill="#fd8c70" points="365.25,218.42 365.63,217.42 347.08,196.32 346.81,197.32" /><polygon fill="#4b960d" points="206.54,358.68 204.02,363.15 207.91,362.53 210.29,358.14" /><polygon fill="#02967d" points="246.79,209.46 253.00,221.00 253.56,221.64 247.36,210.13" /><polygon fill="#f46baf" points="380.00,148.57 380.06,150.56 380.75,153.55 380.69,151.61" /><polygon fill="#39e561" points="317.68,317.67 315.98,318.34 321.48,332.69 323.27,331.92" /><polygon fill="#13ba5f" points="246.27,319.18 250.38,335.65 252.85,335.31 248.66,319.01" /><polygon fill="#debc44" points="404.54,287.27 406.12,285.94 401.76,282.54 400.25,283.82" /><polygon fill="#fe7374" points="332.91,174.47 333.01,175.36 347.54,192.55 347.49,191.68" /><polygon fill="#06a47a" points="163.75,334.98 161.02,327.78 156.58,327.44 159.32,334.76" /><polygon fill="#0aa862" points="195.51,308.92 198.40,322.50 201.58,322.71 198.63,309.29" /><polygon fill="#fb5f7d" points="324.55,161.39 332.23,171.98 331.88,171.21 324.17,160.60" /><polygon fill="#f78b54" points="444.06,226.55 435.36,220.37 433.90,222.47 442.46,228.67" /><polygon fill="#0bad69" points="234.36,299.81 236.44,300.08 230.82,281.81 228.79,281.39" /><polygon fill="#eabe61" points="392.64,270.08 391.31,271.32 401.76,282.54 403.22,281.26" /><polygon fill="#f87857" points="458.39,176.54 446.23,168.49 444.92,171.48 456.87,179.54" /><polygon fill="#e57e32" points="468.14,185.73 466.25,188.80 474.60,191.67 476.68,188.54" /><polygon fill="#2ab230" points="254.26,350.06 256.95,349.46 257.29,345.26 254.67,345.80" /><polygon fill="#f17447" points="482.43,145.06 480.39,149.14 490.50,153.92 492.79,149.78" /><polygon fill="#2cdd6a" points="311.10,320.10 312.69,319.55 303.04,296.63 301.54,297.04" /><polygon fill="#1ed06d" points="297.28,298.01 285.97,271.28 284.71,271.38 295.94,298.24" /><polygon fill="#fb875f" points="422.45,209.52 435.36,220.37 436.71,218.30 423.62,207.44" /><polygon fill="#10bb70" points="268.17,245.26 279.08,271.20 280.11,271.33 269.15,245.48" /><polygon fill="#f3b26a" points="395.14,267.65 396.31,266.46 379.65,247.85 378.64,249.01" /><polygon fill="#04a07b" points="214.45,256.53 218.26,264.70 219.99,265.51 216.20,257.40" /><polygon fill="#fa9f6d" points="383.10,243.34 363.74,221.57 363.11,222.65 382.33,244.44" /><polygon fill="#b97e0d" points="474.60,191.67 479.61,191.41 481.83,188.18 476.68,188.54" /><polygon fill="#3fdc44" points="321.48,332.69 322.61,338.15 324.46,337.32 323.27,331.92" /><polygon fill="#fd7869" points="410.58,190.31 411.21,188.33 396.99,175.31 396.52,177.31" /><polygon fill="#06a474" points="264.72,243.90 255.55,223.30 254.83,222.79 263.99,243.44" /><polygon fill="#20a132" points="164.88,356.43 163.02,367.13 167.97,366.63 169.62,356.13" /><polygon fill="#06a471" points="195.51,308.92 192.04,298.58 189.03,297.96 192.49,308.42" /><polygon fill="#01917d" points="252.50,220.32 253.00,221.00 246.79,209.46 246.28,208.74" /><polygon fill="#fe8770" points="347.08,196.32 365.63,217.42 365.94,216.44 347.28,195.35" /><polygon fill="#fb7362" points="435.38,160.00 446.23,168.49 447.39,165.54 436.36,157.04" /><polygon fill="#35e261" points="321.48,332.69 315.98,318.34 314.32,318.97 319.73,333.42" /><polygon fill="#e38930" points="446.42,230.19 448.10,228.03 444.06,226.55 442.46,228.67" /><polygon fill="#fe6e7a" points="475.52,135.38 470.10,129.72 468.52,133.86 473.84,139.46" /><polygon fill="#e1b844" points="401.76,282.54 406.12,285.94 407.66,284.63 403.22,281.26" /><polygon fill="#fd6e74" points="347.38,190.83 332.74,173.61 332.91,174.47 347.49,191.68" /><polygon fill="#07a46e" points="226.85,280.88 221.82,266.22 219.99,265.51 225.00,280.27" /><polygon fill="#f95b7d" points="331.88,171.21 331.47,170.47 323.73,159.83 324.17,160.60" /><polygon fill="#edba61" points="404.62,280.01 393.92,268.86 392.64,270.08 403.22,281.26" /><polygon fill="#fd697b" points="380.75,153.55 386.42,160.50 386.41,158.60 380.69,151.61" /><polygon fill="#28da6a" points="300.08,297.41 309.55,320.60 311.10,320.10 301.54,297.04" /><polygon fill="#a37306" points="160.24,379.49 154.80,380.26 150.06,381.53 155.70,380.72" /><polygon fill="#0db165" points="238.60,300.26 236.44,300.08 241.72,319.26 243.95,319.27" /><polygon fill="#14aa4b" points="204.16,350.09 207.68,349.81 206.97,337.01 203.58,337.11" /><polygon fill="#1bcc6d" points="284.71,271.38 283.50,271.44 294.65,298.43 295.94,298.24" /><polygon fill="#0c99af" points="214.45,256.53 212.02,254.59 210.33,253.60 212.80,255.56" /><polygon fill="#fd6e71" points="437.18,154.11 429.23,146.44 428.53,149.41 436.36,157.04" /><polygon fill="#fd6e6e" points="397.57,171.44 386.42,160.50 386.30,162.45 397.34,173.35" /><polygon fill="#399818" points="167.97,366.63 163.02,367.13 159.39,375.27 164.59,374.61" /><polygon fill="#0eb770" points="278.10,271.02 279.08,271.20 268.17,245.26 267.23,244.98" /><polygon fill="#0ba35b" points="160.57,345.06 165.08,345.11 163.75,334.98 159.32,334.76" /><polygon fill="#f4ad6a" points="379.65,247.85 396.31,266.46 397.42,265.29 380.60,246.69" /><polygon fill="#fb9b6d" points="364.30,220.50 363.74,221.57 383.10,243.34 383.81,242.26" /><polygon fill="#05a074" points="254.83,222.79 254.17,222.24 263.32,242.94 263.99,243.44" /><polygon fill="#3cd944" points="320.79,338.93 322.61,338.15 321.48,332.69 319.73,333.42" /><polygon fill="#e57632" points="490.50,153.92 500.74,156.96 503.29,152.72 492.79,149.78" /><polygon fill="#628a04" points="159.39,375.27 154.80,380.26 160.24,379.49 164.59,374.61" /><polygon fill="#018c7d" points="245.83,207.99 252.07,219.60 252.50,220.32 246.28,208.74" /><polygon fill="#fe8270" points="365.94,216.44 366.19,215.49 347.43,194.39 347.28,195.35" /><polygon fill="#16b854" points="252.85,335.31 250.38,335.65 252.12,346.26 254.67,345.80" /><polygon fill="#31df61" points="314.32,318.97 312.69,319.55 318.02,334.12 319.73,333.42" /><polygon fill="#fc6974" points="332.52,172.78 332.74,173.61 347.38,190.83 347.20,190.02" /><polygon fill="#f366af" points="380.50,149.72 379.80,146.63 380.00,148.57 380.69,151.61" /><polygon fill="#fc7d65" points="410.58,190.31 409.83,192.33 424.67,205.40 425.61,203.40" /><polygon fill="#e3b544" points="407.66,284.63 409.14,283.34 404.62,280.01 403.22,281.26" /><polygon fill="#069f97" points="182.32,292.07 186.12,297.20 189.03,297.96 185.29,292.90" /><polygon fill="#f8567d" points="323.73,159.83 331.47,170.47 330.99,169.78 323.23,159.10" /><polygon fill="#efb661" points="395.14,267.65 393.92,268.86 404.62,280.01 405.98,278.77" /><polygon fill="#10b55f" points="247.99,335.90 250.38,335.65 246.27,319.18 243.95,319.27" /><polygon fill="#f3794b" points="468.14,185.73 469.89,182.69 458.39,176.54 456.87,179.54" /><polygon fill="#09a969" points="226.85,280.88 232.38,299.45 234.36,299.81 228.79,281.39" /><polygon fill="#25d76a" points="308.04,321.06 309.55,320.60 300.08,297.41 298.66,297.73" /><polygon fill="#f78754" points="436.71,218.30 435.36,220.37 444.06,226.55 445.55,224.46" /><polygon fill="#18c86d" points="294.65,298.43 283.50,271.44 282.32,271.45 293.40,298.57" /><polygon fill="#0da757" points="201.58,322.71 198.40,322.50 200.29,337.09 203.58,337.11" /><polygon fill="#5a8306" points="518.81,150.94 515.79,155.50 518.90,151.91 522.05,147.17" /><polygon fill="#169bc1" points="147.95,324.23 152.23,326.94 156.58,327.44 152.42,324.78" /><polygon fill="#f86f5b" points="482.43,145.06 484.30,140.97 475.52,135.38 473.84,139.46" /><polygon fill="#c97818" points="503.29,152.72 500.74,156.96 509.46,157.34 512.27,152.95" /><polygon fill="#0cb270" points="266.34,244.67 277.18,270.79 278.10,271.02 267.23,244.98" /><polygon fill="#28ae30" points="252.12,346.26 251.65,350.58 254.26,350.06 254.67,345.80" /><polygon fill="#f6a96a" points="397.42,265.29 398.48,264.13 381.49,245.56 380.60,246.69" /><polygon fill="#049b74" points="263.32,242.94 254.17,222.24 253.56,221.64 262.71,242.39" /><polygon fill="#039b7b" points="216.62,263.79 218.26,264.70 214.45,256.53 212.80,255.56" /><polygon fill="#fb6997" points="426.29,140.85 429.23,146.44 429.77,143.50 426.79,137.83" /><polygon fill="#fb825f" points="436.71,218.30 437.95,216.26 424.67,205.40 423.62,207.44" /><polygon fill="#fc966d" points="384.46,241.21 364.81,219.45 364.30,220.50 383.81,242.26" /><polygon fill="#21a432" points="206.54,358.68 207.68,349.81 204.16,350.09 202.87,359.11" /><polygon fill="#38d644" points="318.02,334.12 319.01,339.68 320.79,338.93 319.73,333.42" /><polygon fill="#fc7369" points="396.99,175.31 411.21,188.33 411.71,186.40 397.34,173.35" /><polygon fill="#9e7c04" points="509.46,157.34 515.79,155.50 518.81,150.94 512.27,152.95" /><polygon fill="#fe7d70" points="347.43,194.39 366.19,215.49 366.37,214.57 347.52,193.46" /><polygon fill="#2ddc61" points="318.02,334.12 312.69,319.55 311.10,320.10 316.35,334.77" /><polygon fill="#fb6474" points="346.96,189.23 332.23,171.98 332.52,172.78 347.20,190.02" /><polygon fill="#e5b144" points="404.62,280.01 409.14,283.34 410.58,282.07 405.98,278.77" /><polygon fill="#09a462" points="195.31,322.16 198.40,322.50 195.51,308.92 192.49,308.42" /><polygon fill="#059f6e" points="219.99,265.51 218.26,264.70 223.25,279.57 225.00,280.27" /><polygon fill="#f1b161" points="407.28,277.55 396.31,266.46 395.14,267.65 405.98,278.77" /><polygon fill="#4a940d" points="200.21,363.65 204.02,363.15 206.54,358.68 202.87,359.11" /><polygon fill="#fc647b" points="386.41,158.60 386.27,156.74 380.50,149.72 380.69,151.61" /><polygon fill="#f87457" points="447.39,165.54 446.23,168.49 458.39,176.54 459.76,173.57" /><polygon fill="#e38530" points="444.06,226.55 448.10,228.03 449.67,225.91 445.55,224.46" /><polygon fill="#12a147" points="164.88,356.43 165.08,345.11 160.57,345.06 160.21,356.58" /><polygon fill="#22d36a" points="297.28,298.01 306.58,321.48 308.04,321.06 298.66,297.73" /><polygon fill="#eb6cc1" points="469.50,124.78 470.10,129.72 471.49,125.59 470.90,120.52" /><polygon fill="#0b94af" points="210.33,253.60 208.74,252.50 211.25,254.50 212.80,255.56" /><polygon fill="#15c46d" points="282.32,271.45 281.19,271.41 292.21,298.66 293.40,298.57" /><polygon fill="#e57a32" points="478.62,185.42 469.89,182.69 468.14,185.73 476.68,188.54" /><polygon fill="#0bad65" points="241.72,319.26 236.44,300.08 234.36,299.81 239.58,319.16" /><polygon fill="#fc696e" points="386.41,158.60 386.42,160.50 397.57,171.44 397.66,169.56" /><polygon fill="#0aae70" points="276.31,270.52 277.18,270.79 266.34,244.67 265.50,244.30" /><polygon fill="#039674" points="253.56,221.64 253.00,221.00 262.15,241.80 262.71,242.39" /><polygon fill="#059f71" points="189.03,297.96 186.12,297.20 189.57,307.78 192.49,308.42" /><polygon fill="#f8a46a" points="381.49,245.56 398.48,264.13 399.47,263.00 382.33,244.44" /><polygon fill="#fd916d" points="365.25,218.42 364.81,219.45 384.46,241.21 385.05,240.18" /><polygon fill="#04a07a" points="156.58,327.44 152.23,326.94 154.99,334.38 159.32,334.76" /><polygon fill="#35d444" points="317.27,340.38 319.01,339.68 318.02,334.12 316.35,334.77" /><polygon fill="#fa6f62" points="447.39,165.54 448.38,162.62 437.18,154.11 436.36,157.04" /><polygon fill="#fa5f74" points="331.88,171.21 332.23,171.98 346.96,189.23 346.65,188.49" /><polygon fill="#fe7870" points="366.37,214.57 366.48,213.67 347.54,192.55 347.52,193.46" /><polygon fill="#2ad961" points="311.10,320.10 309.55,320.60 314.72,335.38 316.35,334.77" /><polygon fill="#f262af" points="379.47,144.73 379.80,146.63 380.50,149.72 380.18,147.87" /><polygon fill="#b87c0d" points="481.83,188.18 483.90,184.97 478.62,185.42 476.68,188.54" /><polygon fill="#e7ad44" points="410.58,282.07 411.95,280.82 407.28,277.55 405.98,278.77" /><polygon fill="#fc7865" points="426.42,201.44 411.21,188.33 410.58,190.31 425.61,203.40" /><polygon fill="#14b454" points="252.12,346.26 250.38,335.65 247.99,335.90 249.65,346.63" /><polygon fill="#f3ad61" points="397.42,265.29 396.31,266.46 407.28,277.55 408.52,276.35" /><polygon fill="#f07047" points="494.90,145.64 484.30,140.97 482.43,145.06 492.79,149.78" /><polygon fill="#07a469" points="230.48,298.99 232.38,299.45 226.85,280.88 225.00,280.27" /><polygon fill="#0eb15f" points="241.72,319.26 245.68,336.06 247.99,335.90 243.95,319.27" /><polygon fill="#fc6971" points="429.77,143.50 429.23,146.44 437.18,154.11 437.83,151.21" /><polygon fill="#1ecf6a" points="305.16,321.85 306.58,321.48 297.28,298.01 295.94,298.24" /><polygon fill="#12a64b" points="200.29,337.09 200.74,350.25 204.16,350.09 203.58,337.11" /><polygon fill="#13bf6d" points="292.21,298.66 281.19,271.41 280.11,271.33 291.07,298.70" /><polygon fill="#029174" points="262.15,241.80 253.00,221.00 252.50,220.32 261.66,241.16" /><polygon fill="#08a970" points="264.72,243.90 275.50,270.19 276.31,270.52 265.50,244.30" /><polygon fill="#02967b" points="211.25,254.50 215.09,262.79 216.62,263.79 212.80,255.56" /><polygon fill="#f78254" points="446.93,222.41 437.95,216.26 436.71,218.30 445.55,224.46" /><polygon fill="#fd697a" points="471.49,125.59 470.10,129.72 475.52,135.38 477.02,131.31" /><polygon fill="#1e9d32" points="158.14,367.47 163.02,367.13 164.88,356.43 160.21,356.58" /><polygon fill="#f99f6a" points="399.47,263.00 400.40,261.89 383.10,243.34 382.33,244.44" /><polygon fill="#fd8c6d" points="385.56,239.18 365.63,217.42 365.25,218.42 385.05,240.18" /><polygon fill="#f95b74" points="346.27,187.78 331.47,170.47 331.88,171.21 346.65,188.49" /><polygon fill="#fc6e69" points="411.71,186.40 412.08,184.50 397.57,171.44 397.34,173.35" /><polygon fill="#059a97" points="183.33,296.30 186.12,297.20 182.32,292.07 179.47,291.11" /><polygon fill="#32d144" points="314.72,335.38 315.58,341.05 317.27,340.38 316.35,334.77" /><polygon fill="#fb7d5f" points="424.67,205.40 437.95,216.26 439.07,214.26 425.61,203.40" /><polygon fill="#fd7370" points="347.54,192.55 366.48,213.67 366.52,212.81 347.49,191.68" /><polygon fill="#26ab30" points="249.12,351.00 251.65,350.58 252.12,346.26 249.65,346.63" /><polygon fill="#26d561" points="314.72,335.38 309.55,320.60 308.04,321.06 313.13,335.94" /><polygon fill="#049b6e" points="223.25,279.57 218.26,264.70 216.62,263.79 221.60,278.77" /><polygon fill="#e8a944" points="407.28,277.55 411.95,280.82 413.27,279.58 408.52,276.35" /><polygon fill="#fb5f7b" points="380.50,149.72 386.27,156.74 385.99,154.94 380.18,147.87" /><polygon fill="#f5a861" points="409.70,275.18 398.48,264.13 397.42,265.29 408.52,276.35" /><polygon fill="#f3744b" points="458.39,176.54 469.89,182.69 471.48,179.68 459.76,173.57" /><polygon fill="#099e5b" points="154.99,334.38 156.15,344.84 160.57,345.06 159.32,334.76" /><polygon fill="#0ca357" points="200.29,337.09 198.40,322.50 195.31,322.16 197.10,336.94" /><polygon fill="#e38130" points="449.67,225.91 451.12,223.82 446.93,222.41 445.55,224.46" /><polygon fill="#1bcb6a" points="294.65,298.43 303.80,322.17 305.16,321.85 295.94,298.24" /><polygon fill="#018c74" points="252.50,220.32 252.07,219.60 261.23,240.48 261.66,241.16" /><polygon fill="#10bb6d" points="280.11,271.33 279.08,271.20 289.99,298.70 291.07,298.70" /><polygon fill="#fa6597" points="429.77,143.50 430.13,140.60 427.11,134.85 426.79,137.83" /><polygon fill="#fb646e" points="397.62,167.74 386.27,156.74 386.41,158.60 397.66,169.56" /><polygon fill="#06a470" points="274.75,269.82 275.50,270.19 264.72,243.90 263.99,243.44" /><polygon fill="#399518" points="159.39,375.27 163.02,367.13 158.14,367.47 154.26,375.78" /><polygon fill="#0aa865" points="234.36,299.81 232.38,299.45 237.53,318.97 239.58,319.16" /><polygon fill="#e47232" points="503.29,152.72 505.68,148.47 494.90,145.64 492.79,149.78" /><polygon fill="#a47406" points="150.06,381.53 154.80,380.26 149.42,380.89 144.46,382.20" /><polygon fill="#f75674" points="330.99,169.78 331.47,170.47 346.27,187.78 345.83,187.11" /><polygon fill="#fa9a6a" points="383.10,243.34 400.40,261.89 401.27,260.81 383.81,242.26" /><polygon fill="#fd876d" points="365.94,216.44 365.63,217.42 385.56,239.18 386.01,238.21" /><polygon fill="#20a132" points="204.16,350.09 200.74,350.25 199.29,359.41 202.87,359.11" /><polygon fill="#fd6e70" points="366.52,212.81 366.49,211.98 347.38,190.83 347.49,191.68" /><polygon fill="#079f62" points="189.57,307.78 192.33,321.69 195.31,322.16 192.49,308.42" /><polygon fill="#2ecd44" points="313.94,341.66 315.58,341.05 314.72,335.38 313.13,335.94" /><polygon fill="#628804" points="149.42,380.89 154.80,380.26 159.39,375.27 154.26,375.78" /><polygon fill="#23d261" points="308.04,321.06 306.58,321.48 311.60,336.46 313.13,335.94" /><polygon fill="#f76f57" points="460.97,170.64 448.38,162.62 447.39,165.54 459.76,173.57" /><polygon fill="#fc7365" points="411.71,186.40 411.21,188.33 426.42,201.44 427.10,199.52" /><polygon fill="#eaa444" points="413.27,279.58 414.52,278.38 409.70,275.18 408.52,276.35" /><polygon fill="#1597c1" points="147.98,326.27 152.23,326.94 147.95,324.23 143.58,323.50" /><polygon fill="#f86a5b" points="475.52,135.38 484.30,140.97 485.98,136.90 477.02,131.31" /><polygon fill="#f6a361" points="399.47,263.00 398.48,264.13 409.70,275.18 410.82,274.03" /><polygon fill="#12af54" points="247.99,335.90 245.68,336.06 247.27,346.91 249.65,346.63" /><polygon fill="#069f69" points="223.25,279.57 228.69,298.43 230.48,298.99 225.00,280.27" /><polygon fill="#4a920d" points="199.29,359.41 196.49,364.02 200.21,363.65 202.87,359.11" /><polygon fill="#12ba9e" points="334.10,162.60 334.92,163.24 324.43,154.61 323.63,153.98" /><polygon fill="#018774" points="261.23,240.48 252.07,219.60 251.69,218.83 260.87,239.75" /><polygon fill="#0dac5f" points="243.47,336.13 245.68,336.06 241.72,319.26 239.58,319.16" /><polygon fill="#049b71" points="189.57,307.78 186.12,297.20 183.33,296.30 186.77,307.01" /><polygon fill="#18c76a" points="302.48,322.45 303.80,322.17 294.65,298.43 293.40,298.57" /><polygon fill="#0eb76d" points="289.99,298.70 279.08,271.20 278.10,271.02 288.96,298.64" /><polygon fill="#01917b" points="213.67,261.68 215.09,262.79 211.25,254.50 209.81,253.33" /><polygon fill="#059f70" points="263.32,242.94 274.07,269.39 274.75,269.82 263.99,243.44" /><polygon fill="#e47632" points="471.48,179.68 469.89,182.69 478.62,185.42 480.40,182.34" /><polygon fill="#c97518" points="514.92,148.55 505.68,148.47 503.29,152.72 512.27,152.95" /><polygon fill="#fa6a62" points="437.18,154.11 448.38,162.62 449.21,159.74 437.83,151.21" /><polygon fill="#f65174" points="345.31,186.47 330.45,169.11 330.99,169.78 345.83,187.11" /><polygon fill="#5a8506" points="525.04,142.41 521.67,146.36 518.81,150.94 522.05,147.17" /><polygon fill="#fe826d" points="386.39,237.27 366.19,215.49 365.94,216.44 386.01,238.21" /><polygon fill="#fb966a" points="401.27,260.81 402.07,259.76 384.46,241.21 383.81,242.26" /><polygon fill="#fb6969" points="397.57,171.44 412.08,184.50 412.32,182.66 397.66,169.56" /><polygon fill="#fc6970" points="347.38,190.83 366.49,211.98 366.39,211.19 347.20,190.02" /><polygon fill="#f77d54" points="439.07,214.26 437.95,216.26 446.93,222.41 448.19,220.40" /><polygon fill="#9e7b04" points="518.81,150.94 521.67,146.36 514.92,148.55 512.27,152.95" /><polygon fill="#fb785f" points="439.07,214.26 440.06,212.31 426.42,201.44 425.61,203.40" /><polygon fill="#2bca44" points="311.60,336.46 312.34,342.24 313.94,341.66 313.13,335.94" /><polygon fill="#03966e" points="216.62,263.79 215.09,262.79 220.06,277.86 221.60,278.77" /><polygon fill="#119c47" points="160.57,345.06 156.15,344.84 155.63,356.56 160.21,356.58" /><polygon fill="#f95b7b" points="385.99,154.94 385.58,153.19 379.72,146.08 380.18,147.87" /><polygon fill="#20ce61" points="311.60,336.46 306.58,321.48 305.16,321.85 310.11,336.94" /><polygon fill="#ea68c1" points="471.49,125.59 472.67,121.47 472.09,116.27 470.90,120.52" /><polygon fill="#fb8c9e" points="240.98,206.18 244.20,219.36 244.03,218.30 240.81,205.15" /><polygon fill="#b87a0d" points="478.62,185.42 483.90,184.97 485.81,181.79 480.40,182.34" /><polygon fill="#24a730" points="247.27,346.91 246.68,351.34 249.12,351.00 249.65,346.63" /><polygon fill="#fb6471" points="438.31,148.37 430.13,140.60 429.77,143.50 437.83,151.21" /><polygon fill="#eba044" points="409.70,275.18 414.52,278.38 415.72,277.19 410.82,274.03" /><polygon fill="#f79f61" points="411.87,272.90 400.40,261.89 399.47,263.00 410.82,274.03" /><polygon fill="#15be9e" points="322.77,153.39 333.21,161.99 334.10,162.60 323.63,153.98" /><polygon fill="#039b7a" points="154.99,334.38 152.23,326.94 147.98,326.27 150.75,333.83" /><polygon fill="#11a14b" points="197.41,350.29 200.74,350.25 200.29,337.09 197.10,336.94" /><polygon fill="#fa606e" points="385.99,154.94 386.27,156.74 397.62,167.74 397.44,165.97" /><polygon fill="#049b70" points="273.44,268.92 274.07,269.39 263.32,242.94 262.71,242.39" /><polygon fill="#0cb26d" points="278.10,271.02 277.18,270.79 288.00,298.53 288.96,298.64" /><polygon fill="#049697" points="176.74,289.99 180.65,295.26 183.33,296.30 179.47,291.11" /><polygon fill="#16c36a" points="292.21,298.66 301.23,322.67 302.48,322.45 293.40,298.57" /><polygon fill="#08a465" points="237.53,318.97 232.38,299.45 230.48,298.99 235.58,318.68" /><polygon fill="#e37e30" points="446.93,222.41 451.12,223.82 452.45,221.78 448.19,220.40" /><polygon fill="#fb6470" points="366.39,211.19 366.21,210.43 346.96,189.23 347.20,190.02" /><polygon fill="#fe7d6d" points="366.37,214.57 366.19,215.49 386.39,237.27 386.69,236.36" /><polygon fill="#fc916a" points="384.46,241.21 402.07,259.76 402.80,258.73 385.05,240.18" /><polygon fill="#f06b47" points="485.98,136.90 484.30,140.97 494.90,145.64 496.83,141.51" /><polygon fill="#fa909e" points="244.03,218.30 243.93,217.21 240.71,204.08 240.81,205.15" /><polygon fill="#29c744" points="310.80,342.76 312.34,342.24 311.60,336.46 310.11,336.94" /><polygon fill="#1dca61" points="305.16,321.85 303.80,322.17 308.68,337.36 310.11,336.94" /><polygon fill="#fb6e65" points="427.65,197.65 412.08,184.50 411.71,186.40 427.10,199.52" /><polygon fill="#f2704b" points="471.48,179.68 472.91,176.71 460.97,170.64 459.76,173.57" /><polygon fill="#fc647a" points="478.31,127.26 472.67,121.47 471.49,125.59 477.02,131.31" /><polygon fill="#f96097" points="427.11,134.85 430.13,140.60 430.30,137.76 427.25,131.92" /><polygon fill="#0a9e57" points="195.31,322.16 192.33,321.69 194.02,336.65 197.10,336.94" /><polygon fill="#059a69" points="227.01,297.76 228.69,298.43 223.25,279.57 221.60,278.77" /><polygon fill="#17c29e" points="332.24,161.45 333.21,161.99 322.77,153.39 321.83,152.85" /><polygon fill="#ec9cbb" points="241.12,196.00 241.00,197.13 240.72,201.84 240.84,200.66" /><polygon fill="#ec9c44" points="415.72,277.19 416.84,276.04 411.87,272.90 410.82,274.03" /><polygon fill="#018c7b" points="208.48,252.06 212.36,260.48 213.67,261.68 209.81,253.33" /><polygon fill="#f89a61" points="401.27,260.81 400.40,261.89 411.87,272.90 412.86,271.80" /><polygon fill="#10ab54" points="247.27,346.91 245.68,336.06 243.47,336.13 244.99,347.10" /><polygon fill="#1d9932" points="155.63,356.56 153.34,367.66 158.14,367.47 160.21,356.58" /><polygon fill="#039670" points="262.15,241.80 272.89,268.40 273.44,268.92 262.71,242.39" /><polygon fill="#0ba85f" points="237.53,318.97 241.35,336.10 243.47,336.13 239.58,319.16" /><polygon fill="#29c7bb" points="315.42,150.12 314.34,149.75 318.64,151.52 319.77,151.91" /><polygon fill="#0aad6d" points="288.00,298.53 277.18,270.79 276.31,270.52 287.09,298.37" /><polygon fill="#13bf6a" points="300.03,322.85 301.23,322.67 292.21,298.66 291.07,298.70" /><polygon fill="#069a62" points="189.47,321.08 192.33,321.69 189.57,307.78 186.77,307.01" /><polygon fill="#fa6070" points="346.96,189.23 366.21,210.43 365.97,209.71 346.65,188.49" /><polygon fill="#fa6569" points="412.32,182.66 412.42,180.86 397.62,167.74 397.66,169.56" /><polygon fill="#fd786d" points="386.92,235.48 366.48,213.67 366.37,214.57 386.69,236.36" /><polygon fill="#1e9d32" points="199.29,359.41 200.74,350.25 197.41,350.29 195.82,359.57" /><polygon fill="#f8567b" points="379.72,146.08 385.58,153.19 385.03,151.51 379.12,144.35" /><polygon fill="#fd8c6a" points="402.80,258.73 403.46,257.73 385.56,239.18 385.05,240.18" /><polygon fill="#02916e" points="220.06,277.86 215.09,262.79 213.67,261.68 218.63,276.86" /><polygon fill="#089a5b" points="151.82,344.46 156.15,344.84 154.99,334.38 150.75,333.83" /><polygon fill="#f76a57" points="449.21,159.74 448.38,162.62 460.97,170.64 462.01,167.75" /><polygon fill="#f9959e" points="240.71,204.08 243.93,217.21 243.92,216.06 240.68,202.98" /><polygon fill="#f77854" points="449.31,218.44 440.06,212.31 439.07,214.26 448.19,220.40" /><polygon fill="#fa735f" points="426.42,201.44 440.06,212.31 440.92,210.40 427.10,199.52" /><polygon fill="#eba0bb" points="241.04,199.45 241.30,194.85 241.12,196.00 240.84,200.66" /><polygon fill="#039671" points="183.33,296.30 180.65,295.26 184.09,306.09 186.77,307.01" /><polygon fill="#1ac69e" points="320.83,152.35 331.20,160.95 332.24,161.45 321.83,152.85" /><polygon fill="#26c344" points="308.68,337.36 309.31,343.24 310.80,342.76 310.11,336.94" /><polygon fill="#1ac661" points="308.68,337.36 303.80,322.17 302.48,322.45 307.31,337.74" /><polygon fill="#23a430" points="244.33,351.58 246.68,351.34 247.27,346.91 244.99,347.10" /><polygon fill="#0eb695" points="335.67,163.94 334.92,163.24 351.66,179.36 352.39,180.04" /><polygon fill="#f96562" points="449.21,159.74 449.85,156.91 438.31,148.37 437.83,151.21" /><polygon fill="#f85b6e" points="397.12,164.26 385.58,153.19 385.99,154.94 397.44,165.97" /><polygon fill="#2bcabb" points="318.64,151.52 314.34,149.75 313.20,149.42 317.45,151.19" /><polygon fill="#e36e32" points="494.90,145.64 505.68,148.47 507.89,144.23 496.83,141.51" /><polygon fill="#49900d" points="192.86,364.27 196.49,364.02 199.29,359.41 195.82,359.57" /><polygon fill="#029170" points="272.40,267.82 272.89,268.40 262.15,241.80 261.66,241.16" /><polygon fill="#389218" points="158.14,367.47 153.34,367.66 149.21,376.14 154.26,375.78" /><polygon fill="#f99561" points="413.78,270.74 402.07,259.76 401.27,260.81 412.86,271.80" /><polygon fill="#ed9844" points="411.87,272.90 416.84,276.04 417.90,274.91 412.86,271.80" /><polygon fill="#e47232" points="482.02,179.29 472.91,176.71 471.48,179.68 480.40,182.34" /><polygon fill="#08a96d" points="276.31,270.52 275.50,270.19 286.25,298.16 287.09,298.37" /><polygon fill="#079f65" points="230.48,298.99 228.69,298.43 233.73,318.28 235.58,318.68" /><polygon fill="#11bb6a" points="289.99,298.70 298.89,322.97 300.03,322.85 291.07,298.70" /><polygon fill="#f95b70" points="365.97,209.71 365.65,209.03 346.27,187.78 346.65,188.49" /><polygon fill="#1493c1" points="139.31,322.58 143.84,325.41 147.98,326.27 143.58,323.50" /><polygon fill="#a47606" points="149.42,380.89 144.10,381.36 138.92,382.71 144.46,382.20" /><polygon fill="#f7655b" points="485.98,136.90 487.47,132.84 478.31,127.26 477.02,131.31" /><polygon fill="#fd736d" points="366.52,212.81 366.48,213.67 386.92,235.48 387.07,234.64" /><polygon fill="#fa6071" points="430.30,137.76 430.13,140.60 438.31,148.37 438.59,145.57" /><polygon fill="#f89a9e" points="243.92,216.06 243.98,214.88 240.72,201.84 240.68,202.98" /><polygon fill="#e37a30" points="452.45,221.78 453.65,219.78 449.31,218.44 448.19,220.40" /><polygon fill="#628704" points="149.21,376.14 144.10,381.36 149.42,380.89 154.26,375.78" /><polygon fill="#fd876a" points="385.56,239.18 403.46,257.73 404.05,256.77 386.01,238.21" /><polygon fill="#eaa4bb" points="241.55,193.66 241.30,194.85 241.04,199.45 241.31,198.21" /><polygon fill="#1dca9e" points="330.09,160.51 331.20,160.95 320.83,152.35 319.77,151.91" /><polygon fill="#fd8795" points="251.46,241.43 244.20,219.36 244.45,220.37 251.69,242.43" /><polygon fill="#2ecdbb" points="313.20,149.42 312.01,149.15 316.20,150.90 317.45,151.19" /><polygon fill="#fa6a65" points="412.32,182.66 412.08,184.50 427.65,197.65 428.06,195.83" /><polygon fill="#049669" points="220.06,277.86 225.43,297.00 227.01,297.76 221.60,278.77" /><polygon fill="#b8780d" points="485.81,181.79 487.56,178.64 482.02,179.29 480.40,182.34" /><polygon fill="#00877b" points="211.17,259.17 212.36,260.48 208.48,252.06 207.27,250.70" /><polygon fill="#039197" points="178.11,294.07 180.65,295.26 176.74,289.99 174.13,288.73" /><polygon fill="#17c261" points="302.48,322.45 301.23,322.67 305.99,338.07 307.31,337.74" /><polygon fill="#0f9d4b" points="194.02,336.65 194.20,350.18 197.41,350.29 197.10,336.94" /><polygon fill="#23c044" points="307.88,343.67 309.31,343.24 308.68,337.36 307.31,337.74" /><polygon fill="#11bb95" points="351.66,179.36 334.92,163.24 334.10,162.60 350.84,178.72" /><polygon fill="#028c70" points="261.23,240.48 271.98,267.20 272.40,267.82 261.66,241.16" /><polygon fill="#c87218" points="507.89,144.23 505.68,148.47 514.92,148.55 517.39,144.15" /><polygon fill="#0ea754" points="243.47,336.13 241.35,336.10 242.80,347.19 244.99,347.10" /><polygon fill="#fa9061" points="402.80,258.73 402.07,259.76 413.78,270.74 414.63,269.70" /><polygon fill="#e964c1" points="472.09,116.27 472.67,121.47 473.64,117.37 473.06,112.03" /><polygon fill="#07a46d" points="286.25,298.16 275.50,270.19 274.75,269.82 285.48,297.89" /><polygon fill="#09a35f" points="239.34,335.98 241.35,336.10 237.53,318.97 235.58,318.68" /><polygon fill="#109847" points="155.63,356.56 156.15,344.84 151.82,344.46 151.15,356.38" /><polygon fill="#ee9344" points="417.90,274.91 418.89,273.82 413.78,270.74 412.86,271.80" /><polygon fill="#f75670" points="346.27,187.78 365.65,209.03 365.25,208.39 345.83,187.11" /><polygon fill="#f96069" points="397.62,167.74 412.42,180.86 412.38,179.13 397.44,165.97" /><polygon fill="#f6517b" points="385.03,151.51 384.33,149.88 378.38,142.68 379.12,144.35" /><polygon fill="#e8a9bb" points="241.65,196.94 241.88,192.45 241.55,193.66 241.31,198.21" /><polygon fill="#f79f9e" points="240.72,201.84 243.98,214.88 244.13,213.66 240.84,200.66" /><polygon fill="#0eb66a" points="297.82,323.05 298.89,322.97 289.99,298.70 288.96,298.64" /><polygon fill="#028c6e" points="213.67,261.68 212.36,260.48 217.31,275.75 218.63,276.86" /><polygon fill="#5a8606" points="524.36,141.77 521.67,146.36 525.04,142.41 527.86,137.64" /><polygon fill="#02967a" points="147.98,326.27 143.84,325.41 146.62,333.10 150.75,333.83" /><polygon fill="#fd6e6d" points="387.15,233.84 366.49,211.98 366.52,212.81 387.07,234.64" /><polygon fill="#9e7a04" points="514.92,148.55 521.67,146.36 524.36,141.77 517.39,144.15" /><polygon fill="#f75b97" points="430.30,137.76 430.29,134.96 427.19,129.04 427.25,131.92" /><polygon fill="#32d1bb" points="316.20,150.90 312.01,149.15 310.76,148.94 314.89,150.68" /><polygon fill="#20ce9e" points="318.64,151.52 328.91,160.12 330.09,160.51 319.77,151.91" /><polygon fill="#fd826a" points="404.05,256.77 404.56,255.84 386.39,237.27 386.01,238.21" /><polygon fill="#099957" points="194.02,336.65 192.33,321.69 189.47,321.08 191.05,336.23" /><polygon fill="#f26b4b" points="460.97,170.64 472.91,176.71 474.17,173.78 462.01,167.75" /><polygon fill="#f77454" points="440.92,210.40 440.06,212.31 449.31,218.44 450.31,216.52" /><polygon fill="#fd8c95" points="244.03,218.30 244.20,219.36 251.46,241.43 251.30,240.38" /><polygon fill="#fa6f5f" points="440.92,210.40 441.65,208.55 427.65,197.65 427.10,199.52" /><polygon fill="#f7566e" points="385.03,151.51 385.58,153.19 397.12,164.26 396.65,162.61" /><polygon fill="#018770" points="271.63,266.53 271.98,267.20 261.23,240.48 260.87,239.75" /><polygon fill="#13bf95" points="334.10,162.60 333.21,161.99 349.94,178.14 350.84,178.72" /><polygon fill="#059562" points="184.09,306.09 186.73,320.32 189.47,321.08 186.77,307.01" /><polygon fill="#15be61" points="305.99,338.07 301.23,322.67 300.03,322.85 304.74,338.35" /><polygon fill="#e7adbb" points="242.28,191.21 241.88,192.45 241.65,196.94 242.08,195.64" /><polygon fill="#21bc44" points="305.99,338.07 306.51,344.05 307.88,343.67 307.31,337.74" /><polygon fill="#ef6747" points="498.56,137.39 487.47,132.84 485.98,136.90 496.83,141.51" /><polygon fill="#21a030" points="242.80,347.19 242.09,351.72 244.33,351.58 244.99,347.10" /><polygon fill="#f55170" points="365.25,208.39 364.78,207.80 345.31,186.47 345.83,187.11" /><polygon fill="#f6a39e" points="244.13,213.66 244.35,212.40 241.04,199.45 240.84,200.66" /><polygon fill="#059f6d" points="274.75,269.82 274.07,269.39 284.77,297.57 285.48,297.89" /><polygon fill="#069a65" points="233.73,318.28 228.69,298.43 227.01,297.76 232.00,317.79" /><polygon fill="#35d4bb" points="310.76,148.94 309.46,148.77 313.53,150.51 314.89,150.68" /><polygon fill="#fb8c61" points="415.41,268.70 403.46,257.73 402.80,258.73 414.63,269.70" /><polygon fill="#fb5f7a" points="473.64,117.37 472.67,121.47 478.31,127.26 479.39,123.22" /><polygon fill="#f66657" points="462.86,164.91 449.85,156.91 449.21,159.74 462.01,167.75" /><polygon fill="#ef8f44" points="413.78,270.74 418.89,273.82 419.81,272.76 414.63,269.70" /><polygon fill="#23d29e" points="327.66,159.79 328.91,160.12 318.64,151.52 317.45,151.19" /><polygon fill="#1d9932" points="197.41,350.29 194.20,350.18 192.45,359.61 195.82,359.57" /><polygon fill="#0cb26a" points="288.00,298.53 296.81,323.06 297.82,323.05 288.96,298.64" /><polygon fill="#029171" points="184.09,306.09 180.65,295.26 178.11,294.07 181.55,305.02" /><polygon fill="#fc696d" points="366.39,211.19 366.49,211.98 387.15,233.84 387.15,233.07" /><polygon fill="#00827b" points="206.18,249.23 210.10,257.76 211.17,259.17 207.27,250.70" /><polygon fill="#e37630" points="449.31,218.44 453.65,219.78 454.72,217.84 450.31,216.52" /><polygon fill="#f86062" points="438.31,148.37 449.85,156.91 450.31,154.13 438.59,145.57" /><polygon fill="#fd7d6a" points="386.39,237.27 404.56,255.84 405.00,254.95 386.69,236.36" /><polygon fill="#fc9195" points="251.24,239.28 243.93,217.21 244.03,218.30 251.30,240.38" /><polygon fill="#039169" points="223.98,296.13 225.43,297.00 220.06,277.86 218.63,276.86" /><polygon fill="#f96565" points="428.33,194.06 412.42,180.86 412.32,182.66 428.06,195.83" /><polygon fill="#1c9532" points="148.64,367.68 153.34,367.66 155.63,356.56 151.15,356.38" /><polygon fill="#e5b1bb" points="242.58,194.32 242.75,189.95 242.28,191.21 242.08,195.64" /><polygon fill="#16c395" points="349.94,178.14 333.21,161.99 332.24,161.45 348.95,177.62" /><polygon fill="#38d6bb" points="313.53,150.51 309.46,148.77 308.11,148.66 312.10,150.40" /><polygon fill="#07955b" points="146.62,333.10 147.61,343.90 151.82,344.46 150.75,333.83" /><polygon fill="#f5a89e" points="241.04,199.45 244.35,212.40 244.66,211.10 241.31,198.21" /><polygon fill="#488e0d" points="192.45,359.61 189.35,364.38 192.86,364.27 195.82,359.57" /><polygon fill="#f95b71" points="438.69,142.83 430.29,134.96 430.30,137.76 438.59,145.57" /><polygon fill="#f44c7b" points="378.38,142.68 384.33,149.88 383.49,148.33 377.49,141.08" /><polygon fill="#12ba61" points="300.03,322.85 298.89,322.97 303.55,338.57 304.74,338.35" /><polygon fill="#e36e32" points="474.17,173.78 472.91,176.71 482.02,179.29 483.47,176.28" /><polygon fill="#f85b69" points="412.38,179.13 412.19,177.45 397.12,164.26 397.44,165.97" /><polygon fill="#01876e" points="217.31,275.75 212.36,260.48 211.17,259.17 216.13,274.54" /><polygon fill="#26d59e" points="316.20,150.90 326.34,159.52 327.66,159.79 317.45,151.19" /><polygon fill="#049b6d" points="284.77,297.57 274.07,269.39 273.44,268.92 284.14,297.20" /><polygon fill="#1eb844" points="305.21,344.37 306.51,344.05 305.99,338.07 304.74,338.35" /><polygon fill="#089f5f" points="233.73,318.28 237.44,335.75 239.34,335.98 235.58,318.68" /><polygon fill="#0da254" points="242.80,347.19 241.35,336.10 239.34,335.98 240.73,347.18" /><polygon fill="#fb8761" points="404.05,256.77 403.46,257.73 415.41,268.70 416.11,267.73" /><polygon fill="#fb646d" points="387.07,232.35 366.21,210.43 366.39,211.19 387.15,233.07" /><polygon fill="#0bad6a" points="295.87,323.03 296.81,323.06 288.00,298.53 287.09,298.37" /><polygon fill="#038c97" points="171.67,287.31 175.71,292.73 178.11,294.07 174.13,288.73" /><polygon fill="#e3b5bb" points="243.29,188.67 242.75,189.95 242.58,194.32 243.15,192.97" /><polygon fill="#ef8b44" points="419.81,272.76 420.65,271.73 415.41,268.70 414.63,269.70" /><polygon fill="#f5516e" points="396.04,161.03 384.33,149.88 385.03,151.51 396.65,162.61" /><polygon fill="#e36a32" points="507.89,144.23 509.90,140.01 498.56,137.39 496.83,141.51" /><polygon fill="#fb9695" points="243.92,216.06 243.93,217.21 251.24,239.28 251.26,238.13" /><polygon fill="#3cd9bb" points="308.11,148.66 306.71,148.61 310.63,150.35 312.10,150.40" /><polygon fill="#fd786a" points="405.00,254.95 405.35,254.10 386.92,235.48 386.69,236.36" /><polygon fill="#f96a5f" points="427.65,197.65 441.65,208.55 442.23,206.75 428.06,195.83" /><polygon fill="#0e984b" points="191.10,349.94 194.20,350.18 194.02,336.65 191.05,336.23" /><polygon fill="#138ec1" points="139.82,324.36 143.84,325.41 139.31,322.58 135.17,321.47" /><polygon fill="#f66f54" points="451.17,214.66 441.65,208.55 440.92,210.40 450.31,216.52" /><polygon fill="#f3ad9e" points="244.66,211.10 245.05,209.77 241.65,196.94 241.31,198.21" /><polygon fill="#b8750d" points="482.02,179.29 487.56,178.64 489.14,175.53 483.47,176.28" /><polygon fill="#378f18" points="149.21,376.14 153.34,367.66 148.64,367.68 144.24,376.33" /><polygon fill="#f6615b" points="478.31,127.26 487.47,132.84 488.73,128.81 479.39,123.22" /><polygon fill="#18c795" points="332.24,161.45 331.20,160.95 347.89,177.15 348.95,177.62" /><polygon fill="#2ad99e" points="324.95,159.31 326.34,159.52 316.20,150.90 314.89,150.68" /><polygon fill="#f65697" points="427.19,129.04 430.29,134.96 430.07,132.23 426.93,126.22" /><polygon fill="#e1b8bb" points="243.80,191.61 243.90,187.37 243.29,188.67 243.15,192.97" /><polygon fill="#059565" points="227.01,297.76 225.43,297.00 230.39,317.18 232.00,317.79" /><polygon fill="#03966d" points="273.44,268.92 272.89,268.40 283.58,296.77 284.14,297.20" /><polygon fill="#10b661" points="303.55,338.57 298.89,322.97 297.82,323.05 302.42,338.74" /><polygon fill="#209c30" points="239.95,351.76 242.09,351.72 242.80,347.19 240.73,347.18" /><polygon fill="#3fdcbb" points="310.63,150.35 306.71,148.61 305.26,148.61 309.10,150.36" /><polygon fill="#a57706" points="138.92,382.71 144.10,381.36 138.86,381.66 133.45,383.04" /><polygon fill="#618604" points="138.86,381.66 144.10,381.36 149.21,376.14 144.24,376.33" /><polygon fill="#1cb544" points="303.55,338.57 303.97,344.64 305.21,344.37 304.74,338.35" /><polygon fill="#089557" points="189.47,321.08 186.73,320.32 188.22,335.65 191.05,336.23" /><polygon fill="#007d7b" points="209.17,256.25 210.10,257.76 206.18,249.23 205.23,247.66" /><polygon fill="#fa606d" points="365.97,209.71 366.21,210.43 387.07,232.35 386.91,231.67" /><polygon fill="#f1674b" points="474.17,173.78 475.25,170.90 462.86,164.91 462.01,167.75" /><polygon fill="#fb8261" points="416.73,266.81 404.56,255.84 404.05,256.77 416.11,267.73" /><polygon fill="#09a96a" points="286.25,298.16 294.99,322.94 295.87,323.03 287.09,298.37" /><polygon fill="#038c69" points="217.31,275.75 222.65,295.15 223.98,296.13 218.63,276.86" /><polygon fill="#fa9a95" points="251.37,236.93 243.98,214.88 243.92,216.06 251.26,238.13" /><polygon fill="#f1b19e" points="241.65,196.94 245.05,209.77 245.53,208.41 242.08,195.64" /><polygon fill="#e860c1" points="473.64,117.37 474.38,113.31 473.80,107.82 473.06,112.03" /><polygon fill="#059062" points="184.13,319.41 186.73,320.32 184.09,306.09 181.55,305.02" /><polygon fill="#f08644" points="415.41,268.70 420.65,271.73 421.41,270.74 416.11,267.73" /><polygon fill="#f86065" points="412.38,179.13 412.42,180.86 428.33,194.06 428.45,192.36" /><polygon fill="#0f9447" points="151.82,344.46 147.61,343.90 146.77,356.02 151.15,356.38" /><polygon fill="#c87018" points="519.67,139.76 509.90,140.01 507.89,144.23 517.39,144.15" /><polygon fill="#fe8292" points="252.01,243.38 261.97,270.79 261.68,269.91 251.69,242.43" /><polygon fill="#2ddc9e" points="313.53,150.51 323.50,159.17 324.95,159.31 314.89,150.68" /><polygon fill="#e27230" points="454.72,217.84 455.65,215.94 451.17,214.66 450.31,216.52" /><polygon fill="#fd736a" points="386.92,235.48 405.35,254.10 405.63,253.28 387.07,234.64" /><polygon fill="#debcbb" points="244.59,186.06 243.90,187.37 243.80,191.61 244.53,190.22" /><polygon fill="#1bcb95" points="347.89,177.15 331.20,160.95 330.09,160.51 346.74,176.74" /><polygon fill="#01917a" points="146.62,333.10 143.84,325.41 139.82,324.36 142.61,332.17" /><polygon fill="#f2487b" points="383.49,148.33 382.50,146.85 376.45,139.56 377.49,141.08" /><polygon fill="#43debb" points="305.26,148.61 303.77,148.67 307.52,150.42 309.10,150.36" /><polygon fill="#01826e" points="211.17,259.17 210.10,257.76 215.07,273.22 216.13,274.54" /><polygon fill="#018c71" points="178.11,294.07 175.71,292.73 179.14,303.80 181.55,305.02" /><polygon fill="#f65669" points="397.12,164.26 412.19,177.45 411.85,175.85 396.65,162.61" /><polygon fill="#0eb792" points="351.66,179.36 372.08,200.29 372.77,200.93 352.39,180.04" /><polygon fill="#f56157" points="450.31,154.13 449.85,156.91 462.86,164.91 463.53,162.12" /><polygon fill="#02916d" points="283.58,296.77 272.89,268.40 272.40,267.82 283.10,296.29" /><polygon fill="#079a5f" points="235.65,335.41 237.44,335.75 233.73,318.28 232.00,317.79" /><polygon fill="#f65b62" points="450.31,154.13 450.57,151.41 438.69,142.83 438.59,145.57" /><polygon fill="#1c9532" points="192.45,359.61 194.20,350.18 191.10,349.94 189.21,359.50" /><polygon fill="#9e7904" points="524.36,141.77 526.85,137.18 519.67,139.76 517.39,144.15" /><polygon fill="#5a8806" points="530.48,132.85 526.85,137.18 524.36,141.77 527.86,137.64" /><polygon fill="#0eb161" points="297.82,323.05 296.81,323.06 301.37,338.85 302.42,338.74" /><polygon fill="#efb69e" points="245.53,208.41 246.09,207.01 242.58,194.32 242.08,195.64" /><polygon fill="#0c9e54" points="239.34,335.98 237.44,335.75 238.76,347.07 240.73,347.18" /><polygon fill="#f34d6e" points="383.49,148.33 384.33,149.88 396.04,161.03 395.27,159.52" /><polygon fill="#dcc0bb" points="245.33,188.82 245.34,184.73 244.59,186.06 244.53,190.22" /><polygon fill="#f85b6d" points="386.66,231.04 365.65,209.03 365.97,209.71 386.91,231.67" /><polygon fill="#f99f95" points="244.13,213.66 243.98,214.88 251.37,236.93 251.56,235.69" /><polygon fill="#1ab144" points="302.80,344.86 303.97,344.64 303.55,338.57 302.42,338.74" /><polygon fill="#31df9e" points="321.99,159.08 323.50,159.17 313.53,150.51 312.10,150.40" /><polygon fill="#47e1bb" points="307.52,150.42 303.77,148.67 302.23,148.78 305.90,150.55" /><polygon fill="#ee6347" points="488.73,128.81 487.47,132.84 498.56,137.39 500.08,133.30" /><polygon fill="#07a46a" points="294.20,322.79 294.99,322.94 286.25,298.16 285.48,297.89" /><polygon fill="#fb7d61" points="405.00,254.95 404.56,255.84 416.73,266.81 417.27,265.92" /><polygon fill="#f75671" points="430.07,132.23 430.29,134.96 438.69,142.83 438.58,140.15" /><polygon fill="#f95b7a" points="480.24,119.23 474.38,113.31 473.64,117.37 479.39,123.22" /><polygon fill="#1ecf95" points="330.09,160.51 328.91,160.12 345.51,176.40 346.74,176.74" /><polygon fill="#f8655f" points="442.23,206.75 442.67,205.01 428.33,194.06 428.06,195.83" /><polygon fill="#f08244" points="421.41,270.74 422.09,269.79 416.73,266.81 416.11,267.73" /><polygon fill="#fd8792" points="261.68,269.91 261.48,268.96 251.46,241.43 251.69,242.43" /><polygon fill="#fc6e6a" points="405.63,253.28 405.82,252.51 387.15,233.84 387.07,234.64" /><polygon fill="#f56a54" points="442.23,206.75 441.65,208.55 451.17,214.66 451.88,212.86" /><polygon fill="#d9c3bb" points="246.16,183.38 245.34,184.73 245.33,188.82 246.21,187.40" /><polygon fill="#e36a32" points="484.73,173.33 475.25,170.90 474.17,173.78 483.47,176.28" /><polygon fill="#028797" points="173.46,291.23 175.71,292.73 171.67,287.31 169.35,285.73" /><polygon fill="#488c0d" points="185.96,364.34 189.35,364.38 192.45,359.61 189.21,359.50" /><polygon fill="#edba9e" points="242.58,194.32 246.09,207.01 246.73,205.59 243.15,192.97" /><polygon fill="#10bb92" points="371.29,199.72 372.08,200.29 351.66,179.36 350.84,178.72" /><polygon fill="#049165" points="230.39,317.18 225.43,297.00 223.98,296.13 228.90,316.47" /><polygon fill="#00787b" points="204.40,245.98 208.37,254.64 209.17,256.25 205.23,247.66" /><polygon fill="#4ae3bb" points="302.23,148.78 300.66,148.95 304.23,150.74 305.90,150.55" /><polygon fill="#028c6d" points="272.40,267.82 271.98,267.20 282.69,295.76 283.10,296.29" /><polygon fill="#35e29e" points="310.63,150.35 320.42,159.06 321.99,159.08 312.10,150.40" /><polygon fill="#1c9132" points="146.77,356.02 144.04,367.52 148.64,367.68 151.15,356.38" /><polygon fill="#f8a495" points="251.85,234.40 244.35,212.40 244.13,213.66 251.56,235.69" /><polygon fill="#1f9930" points="238.76,347.07 237.93,351.70 239.95,351.76 240.73,347.18" /><polygon fill="#07905b" points="143.52,343.15 147.61,343.90 146.62,333.10 142.61,332.17" /><polygon fill="#028769" points="221.44,294.06 222.65,295.15 217.31,275.75 216.13,274.54" /><polygon fill="#f7566d" points="365.25,208.39 365.65,209.03 386.66,231.04 386.34,230.45" /><polygon fill="#0cad61" points="301.37,338.85 296.81,323.06 295.87,323.03 300.39,338.91" /><polygon fill="#0d944b" points="188.22,335.65 188.14,349.55 191.10,349.94 191.05,336.23" /><polygon fill="#f0437b" points="376.45,139.56 382.50,146.85 381.35,145.45 375.27,138.11" /><polygon fill="#d6c7bb" points="247.16,185.97 247.05,182.03 246.16,183.38 246.21,187.40" /><polygon fill="#22d395" points="345.51,176.40 328.91,160.12 327.66,159.79 344.21,176.11" /><polygon fill="#f75b65" points="428.42,190.73 412.19,177.45 412.38,179.13 428.45,192.36" /><polygon fill="#069f6a" points="284.77,297.57 293.47,322.59 294.20,322.79 285.48,297.89" /><polygon fill="#f45297" points="430.07,132.23 429.65,129.57 426.46,123.47 426.93,126.22" /><polygon fill="#18ad44" points="301.37,338.85 301.70,345.01 302.80,344.86 302.42,338.74" /><polygon fill="#4ee5bb" points="304.23,150.74 300.66,148.95 299.04,149.18 302.52,150.99" /><polygon fill="#fb7861" points="417.73,265.07 405.35,254.10 405.00,254.95 417.27,265.92" /><polygon fill="#017d6e" points="215.07,273.22 210.10,257.76 209.17,256.25 214.14,271.79" /><polygon fill="#eabe9e" points="246.73,205.59 247.46,204.15 243.80,191.61 243.15,192.97" /><polygon fill="#b7730d" points="489.14,175.53 490.54,172.47 484.73,173.33 483.47,176.28" /><polygon fill="#fd8c92" points="251.46,241.43 261.48,268.96 261.37,267.96 251.30,240.38" /><polygon fill="#f45269" points="411.85,175.85 411.35,174.31 396.04,161.03 396.65,162.61" /><polygon fill="#fb696a" points="387.15,233.84 405.82,252.51 405.93,251.78 387.15,233.07" /><polygon fill="#e26e30" points="451.17,214.66 455.65,215.94 456.44,214.11 451.88,212.86" /><polygon fill="#39e59e" points="318.79,159.10 320.42,159.06 310.63,150.35 309.10,150.36" /><polygon fill="#f07d44" points="416.73,266.81 422.09,269.79 422.69,268.88 417.27,265.92" /><polygon fill="#089057" points="188.22,335.65 186.73,320.32 184.13,319.41 185.52,334.93" /><polygon fill="#d4cabb" points="248.01,180.67 247.05,182.03 247.16,185.97 248.18,184.54" /><polygon fill="#13bf92" points="349.94,178.14 370.41,199.20 371.29,199.72 350.84,178.72" /><polygon fill="#138ac1" points="131.15,320.16 135.94,323.12 139.82,324.36 135.17,321.47" /><polygon fill="#02876d" points="282.69,295.76 271.98,267.20 271.63,266.53 282.36,295.17" /><polygon fill="#f1486e" points="394.35,158.09 382.50,146.85 383.49,148.33 395.27,159.52" /><polygon fill="#e26632" points="498.56,137.39 509.90,140.01 511.70,135.80 500.08,133.30" /><polygon fill="#f45c5b" points="488.73,128.81 489.78,124.81 480.24,119.23 479.39,123.22" /><polygon fill="#52e7bb" points="299.04,149.18 297.40,149.47 300.78,151.30 302.52,150.99" /><polygon fill="#048c62" points="179.14,303.80 181.68,318.35 184.13,319.41 181.55,305.02" /><polygon fill="#f0624b" points="462.86,164.91 475.25,170.90 476.13,168.08 463.53,162.12" /><polygon fill="#f6a995" points="244.66,211.10 244.35,212.40 251.85,234.40 252.23,233.07" /><polygon fill="#06955f" points="230.39,317.18 233.99,334.97 235.65,335.41 232.00,317.79" /><polygon fill="#f5526d" points="385.93,229.91 364.78,207.80 365.25,208.39 386.34,230.45" /><polygon fill="#0b9954" points="238.76,347.07 237.44,335.75 235.65,335.41 236.92,346.85" /><polygon fill="#e8c29e" points="243.80,191.61 247.46,204.15 248.26,202.68 244.53,190.22" /><polygon fill="#25d795" points="327.66,159.79 326.34,159.52 342.82,175.89 344.21,176.11" /><polygon fill="#378d18" points="148.64,367.68 144.04,367.52 139.36,376.34 144.24,376.33" /><polygon fill="#018771" points="179.14,303.80 175.71,292.73 173.46,291.23 176.89,302.43" /><polygon fill="#0aa861" points="295.87,323.03 294.99,322.94 299.48,338.91 300.39,338.91" /><polygon fill="#d1cdbb" points="249.27,183.10 249.03,179.31 248.01,180.67 248.18,184.54" /><polygon fill="#3de89e" points="307.52,150.42 317.10,159.21 318.79,159.10 309.10,150.36" /><polygon fill="#059a6a" points="292.83,322.33 293.47,322.59 284.77,297.57 284.14,297.20" /><polygon fill="#f35c57" points="464.00,159.40 450.57,151.41 450.31,154.13 463.53,162.12" /><polygon fill="#56e8bb" points="300.78,151.30 297.40,149.47 295.72,149.82 299.00,151.67" /><polygon fill="#f7605f" points="428.33,194.06 442.67,205.01 442.95,203.33 428.45,192.36" /><polygon fill="#17a944" points="300.68,345.11 301.70,345.01 301.37,338.85 300.39,338.91" /><polygon fill="#fb7361" points="405.63,253.28 405.35,254.10 417.73,265.07 418.10,264.26" /><polygon fill="#f55762" points="438.69,142.83 450.57,151.41 450.63,148.76 438.58,140.15" /><polygon fill="#fd9192" points="261.37,267.96 261.35,266.90 251.24,239.28 251.30,240.38" /><polygon fill="#f46654" points="452.45,211.11 442.67,205.01 442.23,206.75 451.88,212.86" /><polygon fill="#e75cc1" points="473.80,107.82 474.38,113.31 474.88,109.28 474.29,103.64" /><polygon fill="#fa656a" points="405.93,251.78 405.96,251.10 387.07,232.35 387.15,233.07" /><polygon fill="#038c65" points="223.98,296.13 222.65,295.15 227.54,315.65 228.90,316.47" /><polygon fill="#cdd1bb" points="250.12,177.95 249.03,179.31 249.27,183.10 250.43,181.65" /><polygon fill="#f4ad95" points="252.70,231.69 245.05,209.77 244.66,211.10 252.23,233.07" /><polygon fill="#e5c69e" points="248.26,202.68 249.15,201.19 245.33,188.82 244.53,190.22" /><polygon fill="#01826d" points="271.63,266.53 271.36,265.81 282.11,294.52 282.36,295.17" /><polygon fill="#15c492" points="369.44,198.74 370.41,199.20 349.94,178.14 348.95,177.62" /><polygon fill="#f07944" points="422.69,268.88 423.20,268.02 417.73,265.07 417.27,265.92" /><polygon fill="#618504" points="139.36,376.34 133.71,381.78 138.86,381.66 144.24,376.33" /><polygon fill="#0f8f47" points="146.77,356.02 147.61,343.90 143.52,343.15 142.52,355.47" /><polygon fill="#1c9132" points="191.10,349.94 188.14,349.55 186.10,359.24 189.21,359.50" /><polygon fill="#018c7a" points="139.82,324.36 135.94,323.12 138.74,331.06 142.61,332.17" /><polygon fill="#f55171" points="438.27,137.54 429.65,129.57 430.07,132.23 438.58,140.15" /><polygon fill="#5beabb" points="295.72,149.82 294.01,150.22 297.19,152.11 299.00,151.67" /><polygon fill="#028269" points="215.07,273.22 220.38,292.87 221.44,294.06 216.13,274.54" /><polygon fill="#a57906" points="138.86,381.66 133.71,381.78 128.06,383.19 133.45,383.04" /><polygon fill="#41ea9e" points="315.36,159.38 317.10,159.21 307.52,150.42 305.90,150.55" /><polygon fill="#28da95" points="342.82,175.89 326.34,159.52 324.95,159.31 341.36,175.74" /><polygon fill="#c76d18" points="511.70,135.80 509.90,140.01 519.67,139.76 521.74,135.38" /><polygon fill="#01786e" points="209.17,256.25 208.37,254.64 213.36,270.26 214.14,271.79" /><polygon fill="#1e9530" points="236.02,351.53 237.93,351.70 238.76,347.07 236.92,346.85" /><polygon fill="#f55765" points="411.85,175.85 412.19,177.45 428.42,190.73 428.23,189.17" /><polygon fill="#cad4bb" points="251.65,180.21 251.27,176.59 250.12,177.95 250.43,181.65" /><polygon fill="#028297" points="167.20,284.00 171.36,289.57 173.46,291.23 169.35,285.73" /><polygon fill="#5febbb" points="297.19,152.11 294.01,150.22 292.28,150.68 295.35,152.60" /><polygon fill="#f24d69" points="396.04,161.03 411.35,174.31 410.70,172.85 395.27,159.52" /><polygon fill="#09a361" points="299.48,338.91 294.99,322.94 294.20,322.79 298.66,338.86" /><polygon fill="#e2ca9e" points="245.33,188.82 249.15,201.19 250.12,199.68 246.21,187.40" /><polygon fill="#04966a" points="283.58,296.77 292.27,322.01 292.83,322.33 284.14,297.20" /><polygon fill="#e26632" points="476.13,168.08 475.25,170.90 484.73,173.33 485.80,170.42" /><polygon fill="#45ed9e" points="304.23,150.74 313.57,159.61 315.36,159.38 305.90,150.55" /><polygon fill="#fc9692" points="251.24,239.28 261.35,266.90 261.43,265.78 251.26,238.13" /><polygon fill="#ef446e" points="381.35,145.45 382.50,146.85 394.35,158.09 393.28,156.74" /><polygon fill="#f3b295" points="245.53,208.41 245.05,209.77 252.70,231.69 253.27,230.28" /><polygon fill="#c7d6bb" points="252.48,175.23 251.27,176.59 251.65,180.21 252.94,178.77" /><polygon fill="#fa6f61" points="418.38,263.51 405.82,252.51 405.63,253.28 418.10,264.26" /><polygon fill="#f8567a" points="474.88,109.28 474.38,113.31 480.24,119.23 480.85,115.27" /><polygon fill="#478a0d" points="186.10,359.24 182.69,364.16 185.96,364.34 189.21,359.50" /><polygon fill="#ed5e47" points="501.38,129.24 489.78,124.81 488.73,128.81 500.08,133.30" /><polygon fill="#15a444" points="299.48,338.91 299.73,345.16 300.68,345.11 300.39,338.91" /><polygon fill="#f9606a" points="387.07,232.35 405.96,251.10 405.89,250.47 386.91,231.67" /><polygon fill="#e16a30" points="456.44,214.11 457.07,212.34 452.45,211.11 451.88,212.86" /><polygon fill="#63ecbb" points="292.28,150.68 290.52,151.19 293.49,153.15 295.35,152.60" /><polygon fill="#9d7804" points="519.67,139.76 526.85,137.18 529.15,132.59 521.74,135.38" /><polygon fill="#2cdd95" points="324.95,159.31 323.50,159.17 339.83,175.65 341.36,175.74" /><polygon fill="#18c892" points="347.89,177.15 368.38,198.34 369.44,198.74 348.95,177.62" /><polygon fill="#f24d97" points="426.46,123.47 429.65,129.57 429.01,126.99 425.78,120.79" /><polygon fill="#5b8906" points="529.15,132.59 526.85,137.18 530.48,132.85 532.91,128.07" /><polygon fill="#05905f" points="232.45,334.42 233.99,334.97 230.39,317.18 228.90,316.47" /><polygon fill="#ef7444" points="417.73,265.07 423.20,268.02 423.62,267.20 418.10,264.26" /><polygon fill="#0d8f4b" points="185.32,349.00 188.14,349.55 188.22,335.65 185.52,334.93" /><polygon fill="#dfce9e" points="250.12,199.68 251.17,198.16 247.16,185.97 246.21,187.40" /><polygon fill="#c3d9bb" points="254.30,177.34 253.75,173.88 252.48,175.23 252.94,178.77" /><polygon fill="#67edbb" points="293.49,153.15 290.52,151.19 288.75,151.76 291.61,153.77" /><polygon fill="#49ef9e" points="311.73,159.92 313.57,159.61 304.23,150.74 302.52,150.99" /><polygon fill="#0a9554" points="235.65,335.41 233.99,334.97 235.20,346.52 236.92,346.85" /><polygon fill="#c0dcbb" points="255.08,172.54 253.75,173.88 254.30,177.34 255.71,175.92" /><polygon fill="#078b57" points="184.13,319.41 181.68,318.35 182.98,334.05 185.52,334.93" /><polygon fill="#b7710d" points="484.73,173.33 490.54,172.47 491.74,169.47 485.80,170.42" /><polygon fill="#f1b695" points="253.92,228.83 246.09,207.01 245.53,208.41 253.27,230.28" /><polygon fill="#068b5b" points="138.74,331.06 139.57,342.21 143.52,343.15 142.61,332.17" /><polygon fill="#f65c5f" points="442.95,203.33 443.08,201.73 428.42,190.73 428.45,192.36" /><polygon fill="#6ceebb" points="288.75,151.76 286.96,152.39 289.71,154.44 291.61,153.77" /><polygon fill="#089f61" points="294.20,322.79 293.47,322.59 297.91,338.74 298.66,338.86" /><polygon fill="#048762" points="179.38,317.14 181.68,318.35 179.14,303.80 176.89,302.43" /><polygon fill="#03916a" points="291.79,321.63 292.27,322.01 283.58,296.77 283.10,296.29" /><polygon fill="#1b8d32" points="139.55,367.18 144.04,367.52 146.77,356.02 142.52,355.47" /><polygon fill="#fb9b92" points="261.43,265.78 261.61,264.61 251.37,236.93 251.26,238.13" /><polygon fill="#dcd29e" points="247.16,185.97 251.17,198.16 252.30,196.63 248.18,184.54" /><polygon fill="#30e195" points="339.83,175.65 323.50,159.17 321.99,159.08 338.22,175.63" /><polygon fill="#038765" points="227.54,315.65 222.65,295.15 221.44,294.06 226.31,314.71" /><polygon fill="#ee5e4b" points="476.13,168.08 476.82,165.31 464.00,159.40 463.53,162.12" /><polygon fill="#f36154" points="442.95,203.33 442.67,205.01 452.45,211.11 452.86,209.44" /><polygon fill="#bcdebb" points="257.18,174.50 256.46,171.21 255.08,172.54 255.71,175.92" /><polygon fill="#4ef19e" points="300.78,151.30 309.85,160.28 311.73,159.92 302.52,150.99" /><polygon fill="#027d69" points="219.46,291.56 220.38,292.87 215.07,273.22 214.14,271.79" /><polygon fill="#fe828f" points="261.68,269.91 261.97,270.79 273.16,299.44 272.91,298.66" /><polygon fill="#f85b6a" points="405.89,250.47 405.74,249.88 386.66,231.04 386.91,231.67" /><polygon fill="#70efbb" points="289.71,154.44 286.96,152.39 285.17,153.07 287.79,155.16" /><polygon fill="#018271" points="173.46,291.23 171.36,289.57 174.80,300.89 176.89,302.43" /><polygon fill="#f96a61" points="405.93,251.78 405.82,252.51 418.38,263.51 418.58,262.79" /><polygon fill="#1bcc92" points="367.22,198.01 368.38,198.34 347.89,177.15 346.74,176.74" /><polygon fill="#02736e" points="213.36,270.26 208.37,254.64 207.71,252.92 212.72,268.63" /><polygon fill="#14a044" points="298.87,345.14 299.73,345.16 299.48,338.91 298.66,338.86" /><polygon fill="#b8e1bb" points="257.89,169.89 256.46,171.21 257.18,174.50 258.71,173.11" /><polygon fill="#0eb78f" points="372.77,200.93 372.08,200.29 393.12,222.91 393.74,223.46" /><polygon fill="#74efbb" points="285.17,153.07 283.36,153.80 285.87,155.95 287.79,155.16" /><polygon fill="#f25857" points="450.63,148.76 450.57,151.41 464.00,159.40 464.26,156.74" /><polygon fill="#f45265" points="427.87,187.68 411.35,174.31 411.85,175.85 428.23,189.17" /><polygon fill="#d9d59e" points="252.30,196.63 253.51,195.09 249.27,183.10 248.18,184.54" /><polygon fill="#f35262" points="450.63,148.76 450.48,146.18 438.27,137.54 438.58,140.15" /><polygon fill="#1286c1" points="132.21,321.66 135.94,323.12 131.15,320.16 127.29,318.63" /><polygon fill="#f04969" points="410.70,172.85 409.88,171.47 394.35,158.09 395.27,159.52" /><polygon fill="#ef7044" points="423.62,267.20 423.96,266.42 418.38,263.51 418.10,264.26" /><polygon fill="#eebb95" points="246.73,205.59 246.09,207.01 253.92,228.83 254.67,227.35" /><polygon fill="#52f39e" points="307.93,160.72 309.85,160.28 300.78,151.30 299.00,151.67" /><polygon fill="#b5e3bb" points="260.29,171.73 259.37,168.60 257.89,169.89 258.71,173.11" /><polygon fill="#f3575b" points="480.24,119.23 489.78,124.81 490.58,120.85 480.85,115.27" /><polygon fill="#ec406e" points="392.04,155.48 380.05,144.14 381.35,145.45 393.28,156.74" /><polygon fill="#79f0bb" points="285.87,155.95 283.36,153.80 281.55,154.58 283.95,156.79" /><polygon fill="#1d9130" points="235.20,346.52 234.25,351.24 236.02,351.53 236.92,346.85" /><polygon fill="#34e495" points="321.99,159.08 320.42,159.06 336.54,175.67 338.22,175.63" /><polygon fill="#e16232" points="511.70,135.80 513.28,131.62 501.38,129.24 500.08,133.30" /><polygon fill="#f44d71" points="429.01,126.99 429.65,129.57 438.27,137.54 437.74,135.01" /><polygon fill="#b1e5bb" points="260.89,167.32 259.37,168.60 260.29,171.73 261.92,170.38" /><polygon fill="#7df0bb" points="281.55,154.58 279.74,155.41 282.02,157.68 283.95,156.79" /><polygon fill="#fa9f92" points="251.37,236.93 261.61,264.61 261.89,263.38 251.56,235.69" /><polygon fill="#028c6a" points="282.69,295.76 291.39,321.19 291.79,321.63 283.10,296.29" /><polygon fill="#d5d99e" points="249.27,183.10 253.51,195.09 254.79,193.54 250.43,181.65" /><polygon fill="#079a61" points="297.91,338.74 293.47,322.59 292.83,322.33 297.25,338.56" /><polygon fill="#ade7bb" points="263.59,169.05 262.46,166.07 260.89,167.32 261.92,170.38" /><polygon fill="#1b8d32" points="186.10,359.24 188.14,349.55 185.32,349.00 183.12,358.83" /><polygon fill="#82f0bb" points="282.02,157.68 279.74,155.41 277.94,156.29 280.09,158.62" /><polygon fill="#57f59e" points="297.19,152.11 305.97,161.22 307.93,160.72 299.00,151.67" /><polygon fill="#027d97" points="169.44,287.75 171.36,289.57 167.20,284.00 165.21,282.09" /><polygon fill="#1ed092" points="345.51,176.40 365.98,197.74 367.22,198.01 346.74,176.74" /><polygon fill="#f6566a" points="386.66,231.04 405.74,249.88 405.49,249.35 386.34,230.45" /><polygon fill="#368a18" points="139.36,376.34 144.04,367.52 139.55,367.18 134.60,376.16" /><polygon fill="#a9e8bb" points="264.07,164.85 262.46,166.07 263.59,169.05 265.30,167.74" /><polygon fill="#e06630" points="452.45,211.11 457.07,212.34 457.54,210.63 452.86,209.44" /><polygon fill="#86f0bb" points="277.94,156.29 276.14,157.22 278.18,159.61 280.09,158.62" /><polygon fill="#fe878f" points="272.76,297.81 261.48,268.96 261.68,269.91 272.91,298.66" /><polygon fill="#f86561" points="418.69,262.13 405.96,251.10 405.93,251.78 418.58,262.79" /><polygon fill="#058c5f" points="227.54,315.65 231.06,333.75 232.45,334.42 228.90,316.47" /><polygon fill="#a4eabb" points="267.06,166.47 265.71,163.65 264.07,164.85 265.30,167.74" /><polygon fill="#ecbf95" points="255.51,225.84 247.46,204.15 246.73,205.59 254.67,227.35" /><polygon fill="#e558c1" points="474.88,109.28 475.13,105.30 474.53,99.51 474.29,103.64" /><polygon fill="#8befbb" points="278.18,159.61 276.14,157.22 274.35,158.19 276.27,160.65" /><polygon fill="#a0ebbb" points="267.39,162.49 265.71,163.65 267.06,166.47 268.85,165.23" /><polygon fill="#8fefbb" points="274.35,158.19 272.58,159.21 274.38,161.73 276.27,160.65" /><polygon fill="#139c44" points="297.91,338.74 298.09,345.06 298.87,345.14 298.66,338.86" /><polygon fill="#d2dc9e" points="254.79,193.54 256.14,192.00 251.65,180.21 250.43,181.65" /><polygon fill="#9cecbb" points="270.67,164.02 269.09,161.36 267.39,162.49 268.85,165.23" /><polygon fill="#93eebb" points="274.38,161.73 272.58,159.21 270.82,160.27 272.51,162.86" /><polygon fill="#98edbb" points="270.82,160.27 269.09,161.36 270.67,164.02 272.51,162.86" /><polygon fill="#38e795" points="336.54,175.67 320.42,159.06 318.79,159.10 334.80,175.79" /><polygon fill="#00877a" points="138.74,331.06 135.94,323.12 132.21,321.66 135.03,329.73" /><polygon fill="#10bb8f" points="393.12,222.91 372.08,200.29 371.29,199.72 392.39,222.43" /><polygon fill="#5cf69e" points="303.98,161.78 305.97,161.22 297.19,152.11 295.35,152.60" /><polygon fill="#099054" points="235.20,346.52 233.99,334.97 232.45,334.42 233.62,346.07" /><polygon fill="#0e8b47" points="143.52,343.15 139.57,342.21 138.40,354.73 142.52,355.47" /><polygon fill="#ee6c44" points="418.38,263.51 423.96,266.42 424.20,265.70 418.58,262.79" /><polygon fill="#f04997" points="429.01,126.99 428.15,124.49 424.87,118.20 425.78,120.79" /><polygon fill="#e16232" points="486.67,167.59 476.82,165.31 476.13,168.08 485.80,170.42" /><polygon fill="#f4575f" points="428.42,190.73 443.08,201.73 443.04,200.20 428.23,189.17" /><polygon fill="#f8a492" points="261.89,263.38 262.26,262.11 251.85,234.40 251.56,235.69" /><polygon fill="#027869" points="213.36,270.26 218.68,290.14 219.46,291.56 214.14,271.79" /><polygon fill="#038265" points="221.44,294.06 220.38,292.87 225.24,313.66 226.31,314.71" /><polygon fill="#cedf9e" points="251.65,180.21 256.14,192.00 257.57,190.45 252.94,178.77" /><polygon fill="#618404" points="128.67,381.71 133.71,381.78 139.36,376.34 134.60,376.16" /><polygon fill="#02876a" points="291.08,320.70 291.39,321.19 282.69,295.76 282.36,295.17" /><polygon fill="#47870d" points="179.57,363.81 182.69,364.16 186.10,359.24 183.12,358.83" /><polygon fill="#60f79e" points="293.49,153.15 301.96,162.41 303.98,161.78 295.35,152.60" /><polygon fill="#e9c395" points="248.26,202.68 247.46,204.15 255.51,225.84 256.44,224.29" /><polygon fill="#c66a18" points="523.58,131.02 513.28,131.62 511.70,135.80 521.74,135.38" /><polygon fill="#21d392" points="364.64,197.54 365.98,197.74 345.51,176.40 344.21,176.11" /><polygon fill="#c87517" points="178.60,363.80 182.69,364.16 179.57,363.81 175.35,363.45" /><polygon fill="#0c8b4b" points="182.98,334.05 182.65,348.30 185.32,349.00 185.52,334.93" /><polygon fill="#f25d54" points="453.10,207.84 443.08,201.73 442.95,203.33 452.86,209.44" /><polygon fill="#069561" points="292.83,322.33 292.27,322.01 296.67,338.32 297.25,338.56" /><polygon fill="#a57a06" points="128.06,383.19 133.71,381.78 128.67,381.71 122.77,383.15" /><polygon fill="#3ce995" points="318.79,159.10 317.10,159.21 332.99,175.98 334.80,175.79" /><polygon fill="#f4526a" points="405.49,249.35 405.16,248.87 385.93,229.91 386.34,230.45" /><polygon fill="#cae29e" points="257.57,190.45 259.06,188.91 254.30,177.34 252.94,178.77" /><polygon fill="#ee4469" points="394.35,158.09 409.88,171.47 408.89,170.18 393.28,156.74" /><polygon fill="#f6517a" points="481.20,111.36 475.13,105.30 474.88,109.28 480.85,115.27" /><polygon fill="#fd8c8f" points="261.37,267.96 261.48,268.96 272.76,297.81 272.71,296.90" /><polygon fill="#f24e65" points="410.70,172.85 411.35,174.31 427.87,187.68 427.35,186.27" /><polygon fill="#f76061" points="405.89,250.47 405.96,251.10 418.69,262.13 418.70,261.52" /><polygon fill="#65f89e" points="299.92,163.10 301.96,162.41 293.49,153.15 291.61,153.77" /><polygon fill="#078757" points="182.98,334.05 181.68,318.35 179.38,317.14 180.59,333.01" /><polygon fill="#038262" points="174.80,300.89 177.25,315.75 179.38,317.14 176.89,302.43" /><polygon fill="#eb5a47" points="490.58,120.85 489.78,124.81 501.38,129.24 502.43,125.22" /><polygon fill="#129844" points="297.40,344.91 298.09,345.06 297.91,338.74 297.25,338.56" /><polygon fill="#12bf8f" points="371.29,199.72 370.41,199.20 391.57,222.00 392.39,222.43" /><polygon fill="#017d71" points="174.80,300.89 171.36,289.57 169.44,287.75 172.89,299.19" /><polygon fill="#c6e59e" points="254.30,177.34 259.06,188.91 260.62,187.37 255.71,175.92" /><polygon fill="#b66f0d" points="491.74,169.47 492.73,166.52 486.67,167.59 485.80,170.42" /><polygon fill="#e7c795" points="257.46,222.72 249.15,201.19 248.26,202.68 256.44,224.29" /><polygon fill="#6af99e" points="289.71,154.44 297.86,163.85 299.92,163.10 291.61,153.77" /><polygon fill="#1d8d30" points="232.62,350.84 234.25,351.24 235.20,346.52 233.62,346.07" /><polygon fill="#ed594b" points="464.00,159.40 476.82,165.31 477.29,162.62 464.26,156.74" /><polygon fill="#f7a992" points="251.85,234.40 262.26,262.11 262.74,260.78 252.23,233.07" /><polygon fill="#399517" points="494.24,162.53 492.73,166.52 491.74,169.47 493.21,165.59" /><polygon fill="#9d7704" points="529.15,132.59 531.22,128.02 523.58,131.02 521.74,135.38" /><polygon fill="#ed6744" points="424.20,265.70 424.35,265.03 418.69,262.13 418.58,262.79" /><polygon fill="#40ec95" points="332.99,175.98 317.10,159.21 315.36,159.38 331.12,176.23" /><polygon fill="#02826a" points="282.11,294.52 290.86,320.14 291.08,320.70 282.36,295.17" /><polygon fill="#25d792" points="342.82,175.89 363.22,197.41 364.64,197.54 344.21,176.11" /><polygon fill="#c2e89e" points="260.62,187.37 262.24,185.85 257.18,174.50 255.71,175.92" /><polygon fill="#f14e62" points="438.27,137.54 450.48,146.18 450.10,143.68 437.74,135.01" /><polygon fill="#f05357" points="464.30,154.16 450.48,146.18 450.63,148.76 464.26,156.74" /><polygon fill="#5b8b06" points="535.11,123.29 531.22,128.02 529.15,132.59 532.91,128.07" /><polygon fill="#06875b" points="135.78,341.05 139.57,342.21 138.74,331.06 135.03,329.73" /><polygon fill="#6ffa9e" points="295.78,164.67 297.86,163.85 289.71,154.44 287.79,155.16" /><polygon fill="#059061" points="296.67,338.32 292.27,322.01 291.79,321.63 296.18,338.02" /><polygon fill="#f14871" points="436.98,132.57 428.15,124.49 429.01,126.99 437.74,135.01" /><polygon fill="#04875f" points="229.80,332.96 231.06,333.75 227.54,315.65 226.31,314.71" /><polygon fill="#f34d6a" points="385.93,229.91 405.16,248.87 404.73,248.44 385.43,229.42" /><polygon fill="#df6330" points="457.54,210.63 457.85,209.00 453.10,207.84 452.86,209.44" /><polygon fill="#beea9e" points="257.18,174.50 262.24,185.85 263.92,184.34 258.71,173.11" /><polygon fill="#1a8932" points="138.40,354.73 135.21,366.63 139.55,367.18 142.52,355.47" /><polygon fill="#e4cb95" points="250.12,199.68 249.15,201.19 257.46,222.72 258.57,221.13" /><polygon fill="#73fb9e" points="285.87,155.95 293.68,165.54 295.78,164.67 287.79,155.16" /><polygon fill="#fd918f" points="272.77,295.92 261.35,266.90 261.37,267.96 272.71,296.90" /><polygon fill="#f65c61" points="418.62,260.96 405.74,249.88 405.89,250.47 418.70,261.52" /><polygon fill="#44ee95" points="315.36,159.38 313.57,159.61 329.18,176.56 331.12,176.23" /><polygon fill="#027897" points="163.41,280.02 167.70,285.77 169.44,287.75 165.21,282.09" /><polygon fill="#baed9e" points="263.92,184.34 265.66,182.85 260.29,171.73 258.71,173.11" /><polygon fill="#037369" points="218.06,288.61 218.68,290.14 213.36,270.26 212.72,268.63" /><polygon fill="#088b54" points="232.45,334.42 231.06,333.75 232.17,345.51 233.62,346.07" /><polygon fill="#78fb9e" points="291.58,166.47 293.68,165.54 285.87,155.95 283.95,156.79" /><polygon fill="#15c48f" points="391.57,222.00 370.41,199.20 369.44,198.74 390.64,221.64" /><polygon fill="#f5ad92" points="262.74,260.78 263.31,259.40 252.70,231.69 252.23,233.07" /><polygon fill="#037d65" points="225.24,313.66 220.38,292.87 219.46,291.56 224.31,312.50" /><polygon fill="#f2535f" points="443.04,200.20 442.83,198.75 427.87,187.68 428.23,189.17" /><polygon fill="#119344" points="296.67,338.32 296.80,344.71 297.40,344.91 297.25,338.56" /><polygon fill="#1282c1" points="123.58,316.88 128.65,319.99 132.21,321.66 127.29,318.63" /><polygon fill="#b6ef9e" points="260.29,171.73 265.66,182.85 267.45,181.38 261.92,170.38" /><polygon fill="#1b8932" points="185.32,349.00 182.65,348.30 180.31,358.26 183.12,358.83" /><polygon fill="#7dfb9e" points="282.02,157.68 289.48,167.46 291.58,166.47 283.95,156.79" /><polygon fill="#28da92" points="361.70,197.35 363.22,197.41 342.82,175.89 341.36,175.74" /><polygon fill="#f1535b" points="490.58,120.85 491.13,116.95 481.20,111.36 480.85,115.27" /><polygon fill="#e1cf95" points="259.77,219.52 251.17,198.16 250.12,199.68 258.57,221.13" /><polygon fill="#b1f19e" points="267.45,181.38 269.29,179.93 263.59,169.05 261.92,170.38" /><polygon fill="#ec4069" points="408.89,170.18 407.74,168.98 392.04,155.48 393.28,156.74" /><polygon fill="#ec6344" points="418.69,262.13 424.35,265.03 424.40,264.41 418.70,261.52" /><polygon fill="#82fb9e" points="287.38,168.50 289.48,167.46 282.02,157.68 280.09,158.62" /><polygon fill="#f15854" points="443.04,200.20 443.08,201.73 453.10,207.84 453.18,206.32" /><polygon fill="#49f195" points="329.18,176.56 313.57,159.61 311.73,159.92 327.19,176.96" /><polygon fill="#ee4497" points="424.87,118.20 428.15,124.49 427.05,122.08 423.73,115.69" /><polygon fill="#f04965" points="426.66,184.95 409.88,171.47 410.70,172.85 427.35,186.27" /><polygon fill="#adf39e" points="263.59,169.05 269.29,179.93 271.17,178.51 265.30,167.74" /><polygon fill="#df5e32" points="501.38,129.24 513.28,131.62 514.61,127.48 502.43,125.22" /><polygon fill="#87fb9e" points="278.18,159.61 285.29,169.60 287.38,168.50 280.09,158.62" /><polygon fill="#048c61" points="291.79,321.63 291.39,321.19 295.78,337.66 296.18,338.02" /><polygon fill="#a8f59e" points="271.17,178.51 273.10,177.12 267.06,166.47 265.30,167.74" /><polygon fill="#8cfb9e" points="283.20,170.74 285.29,169.60 278.18,159.61 276.27,160.65" /><polygon fill="#a3f69e" points="267.06,166.47 273.10,177.12 275.06,175.77 268.85,165.23" /><polygon fill="#90fa9e" points="274.38,161.73 281.13,171.93 283.20,170.74 276.27,160.65" /><polygon fill="#fc968f" points="261.43,265.78 261.35,266.90 272.77,295.92 272.92,294.88" /><polygon fill="#9ff79e" points="275.06,175.77 277.06,174.45 270.67,164.02 268.85,165.23" /><polygon fill="#95f99e" points="279.08,173.17 281.13,171.93 274.38,161.73 272.51,162.86" /><polygon fill="#9af89e" points="270.67,164.02 277.06,174.45 279.08,173.17 272.51,162.86" /><polygon fill="#f3b292" points="252.70,231.69 263.31,259.40 263.99,257.98 253.27,230.28" /><polygon fill="#df5e32" points="477.29,162.62 476.82,165.31 486.67,167.59 487.32,164.82" /><polygon fill="#e454c1" points="474.53,99.51 475.13,105.30 475.10,101.38 474.49,95.43" /><polygon fill="#f55761" points="405.49,249.35 405.74,249.88 418.62,260.96 418.44,260.46" /><polygon fill="#ddd395" points="252.30,196.63 251.17,198.16 259.77,219.52 261.06,217.88" /><polygon fill="#18c88f" points="369.44,198.74 368.38,198.34 389.61,221.35 390.64,221.64" /><polygon fill="#00827a" points="132.21,321.66 128.65,319.99 131.48,328.19 135.03,329.73" /><polygon fill="#4df395" points="311.73,159.92 309.85,160.28 325.15,177.43 327.19,176.96" /><polygon fill="#368718" points="139.55,367.18 135.21,366.63 129.97,375.78 134.60,376.16" /><polygon fill="#2cde92" points="339.83,175.65 360.10,197.36 361.70,197.35 341.36,175.74" /><polygon fill="#0c864b" points="180.14,347.43 182.65,348.30 182.98,334.05 180.59,333.01" /><polygon fill="#fe828b" points="273.16,299.44 283.69,324.20 283.50,323.53 272.91,298.66" /><polygon fill="#1c8930" points="232.17,345.51 231.12,350.32 232.62,350.84 233.62,346.07" /><polygon fill="#47850d" points="180.31,358.26 176.61,363.30 179.57,363.81 183.12,358.83" /><polygon fill="#108f44" points="296.29,344.43 296.80,344.71 296.67,338.32 296.18,338.02" /><polygon fill="#037d62" points="175.30,314.20 177.25,315.75 174.80,300.89 172.89,299.19" /><polygon fill="#0e8647" points="138.40,354.73 139.57,342.21 135.78,341.05 134.44,353.78" /><polygon fill="#078257" points="179.38,317.14 177.25,315.75 178.38,331.80 180.59,333.01" /><polygon fill="#c87817" points="179.57,363.81 176.61,363.30 172.26,362.92 175.35,363.45" /><polygon fill="#017871" points="169.44,287.75 167.70,285.77 171.16,297.32 172.89,299.19" /><polygon fill="#0db78b" points="393.12,222.91 410.95,243.28 411.49,243.72 393.74,223.46" /><polygon fill="#04825f" points="225.24,313.66 228.70,332.06 229.80,332.96 226.31,314.71" /><polygon fill="#dad795" points="262.43,216.24 253.51,195.09 252.30,196.63 261.06,217.88" /><polygon fill="#eb5f44" points="424.40,264.41 424.35,263.84 418.62,260.96 418.70,261.52" /><polygon fill="#52f495" points="325.15,177.43 309.85,160.28 307.93,160.72 323.06,177.96" /><polygon fill="#036e69" points="212.24,266.88 217.60,286.96 218.06,288.61 212.72,268.63" /><polygon fill="#de5f30" points="453.10,207.84 457.85,209.00 457.98,207.45 453.18,206.32" /><polygon fill="#f1b792" points="263.99,257.98 264.78,256.51 253.92,228.83 253.27,230.28" /><polygon fill="#048761" points="295.78,337.66 291.39,321.19 291.08,320.70 295.48,337.23" /><polygon fill="#eb554b" points="477.29,162.62 477.54,160.01 464.30,154.16 464.26,156.74" /><polygon fill="#fb9b8f" points="273.19,293.78 261.61,264.61 261.43,265.78 272.92,294.88" /><polygon fill="#f44c7a" points="475.10,101.38 475.13,105.30 481.20,111.36 481.29,107.51" /><polygon fill="#ef4962" points="450.10,143.68 449.49,141.27 436.98,132.57 437.74,135.01" /><polygon fill="#037865" points="219.46,291.56 218.68,290.14 223.54,311.21 224.31,312.50" /><polygon fill="#b56d0d" points="486.67,167.59 492.73,166.52 493.50,163.65 487.32,164.82" /><polygon fill="#2fe192" points="358.42,197.45 360.10,197.36 339.83,175.65 338.22,175.63" /><polygon fill="#088754" points="232.17,345.51 231.06,333.75 229.80,332.96 230.88,344.83" /><polygon fill="#ee4f57" points="450.10,143.68 450.48,146.18 464.30,154.16 464.11,151.66" /><polygon fill="#618304" points="129.97,375.78 123.74,381.43 128.67,381.71 134.60,376.16" /><polygon fill="#f14e5f" points="427.87,187.68 442.83,198.75 442.45,197.39 427.35,186.27" /><polygon fill="#c66718" points="514.61,127.48 513.28,131.62 523.58,131.02 525.19,126.69" /><polygon fill="#ef4471" points="427.05,122.08 428.15,124.49 436.98,132.57 435.99,130.23" /><polygon fill="#f35261" points="418.16,260.02 405.16,248.87 405.49,249.35 418.44,260.46" /><polygon fill="#d7da95" points="254.79,193.54 253.51,195.09 262.43,216.24 263.89,214.58" /><polygon fill="#1bcc8f" points="389.61,221.35 368.38,198.34 367.22,198.01 388.48,221.13" /><polygon fill="#3a9717" points="493.50,163.65 492.73,166.52 494.24,162.53 495.06,159.53" /><polygon fill="#ea5647" points="503.23,121.25 491.13,116.95 490.58,120.85 502.43,125.22" /><polygon fill="#56f695" points="307.93,160.72 305.97,161.22 320.93,178.57 323.06,177.96" /><polygon fill="#23cbab" points="370.18,129.01 379.18,133.94 381.21,135.00 372.19,130.07" /><polygon fill="#a57c06" points="128.67,381.71 123.74,381.43 117.60,382.90 122.77,383.15" /><polygon fill="#fe878b" points="283.50,323.53 283.41,322.80 272.76,297.81 272.91,298.66" /><polygon fill="#ed4565" points="408.89,170.18 409.88,171.47 426.66,184.95 425.80,183.72" /><polygon fill="#108b44" points="295.78,337.66 295.87,344.10 296.29,344.43 296.18,338.02" /><polygon fill="#ef5454" points="453.08,204.88 442.83,198.75 443.04,200.20 453.18,206.32" /><polygon fill="#d3dd95" points="265.42,212.92 256.14,192.00 254.79,193.54 263.89,214.58" /><polygon fill="#efbb92" points="253.92,228.83 264.78,256.51 265.66,254.99 254.67,227.35" /><polygon fill="#10bb8b" points="410.30,242.90 410.95,243.28 393.12,222.91 392.39,222.43" /><polygon fill="#5bf895" points="320.93,178.57 305.97,161.22 303.98,161.78 318.75,179.25" /><polygon fill="#05825b" points="131.48,328.19 132.15,339.69 135.78,341.05 135.03,329.73" /><polygon fill="#ea5b44" points="418.62,260.96 424.35,263.84 424.20,263.34 418.44,260.46" /><polygon fill="#33e492" points="336.54,175.67 356.65,197.60 358.42,197.45 338.22,175.63" /><polygon fill="#048261" points="291.08,320.70 290.86,320.14 295.27,336.74 295.48,337.23" /><polygon fill="#fa9f8f" points="261.89,263.38 261.61,264.61 273.19,293.78 273.56,292.62" /><polygon fill="#9d7504" points="523.58,131.02 531.22,128.02 533.05,123.47 525.19,126.69" /><polygon fill="#1a8532" points="180.31,358.26 182.65,348.30 180.14,347.43 177.66,357.51" /><polygon fill="#cfe195" points="257.57,190.45 256.14,192.00 265.42,212.92 267.04,211.25" /><polygon fill="#f89aa0" points="201.74,267.06 198.89,250.11 199.19,252.26 202.02,269.17" /><polygon fill="#1ed08f" points="367.22,198.01 365.98,197.74 387.25,220.98 388.48,221.13" /><polygon fill="#f14e61" points="404.73,248.44 405.16,248.87 418.16,260.02 417.78,259.63" /><polygon fill="#60f995" points="303.98,161.78 301.96,162.41 316.54,180.00 318.75,179.25" /><polygon fill="#1a8532" points="131.01,365.88 135.21,366.63 138.40,354.73 134.44,353.78" /><polygon fill="#5c8c06" points="533.05,123.47 531.22,128.02 535.11,123.29 537.07,118.52" /><polygon fill="#1c8530" points="229.78,349.68 231.12,350.32 232.17,345.51 230.88,344.83" /><polygon fill="#ff7d82" points="291.31,339.02 283.69,324.20 283.98,324.79 291.56,339.53" /><polygon fill="#127dc1" points="125.26,318.09 128.65,319.99 123.58,316.88 120.06,314.90" /><polygon fill="#ecbf92" points="265.66,254.99 266.64,253.44 255.51,225.84 254.67,227.35" /><polygon fill="#047d5f" points="227.76,331.03 228.70,332.06 225.24,313.66 224.31,312.50" /><polygon fill="#fe8c8b" points="272.76,297.81 283.41,322.80 283.43,322.00 272.71,296.90" /><polygon fill="#f2a2ab" points="198.77,247.85 198.82,245.48 198.28,235.24 198.23,237.59" /><polygon fill="#cbe495" points="268.73,209.58 259.06,188.91 257.57,190.45 267.04,211.25" /><polygon fill="#1dcaa0" points="397.07,146.08 383.06,136.18 381.21,135.00 395.25,144.94" /><polygon fill="#ef4f5b" points="481.20,111.36 491.13,116.95 491.40,113.10 481.29,107.51" /><polygon fill="#0f8644" points="295.56,343.69 295.87,344.10 295.78,337.66 295.48,337.23" /><polygon fill="#37e792" points="354.81,197.84 356.65,197.60 336.54,175.67 334.80,175.79" /><polygon fill="#65fa95" points="316.54,180.00 301.96,162.41 299.92,163.10 314.30,180.81" /><polygon fill="#0bb382" points="421.93,257.47 411.93,244.23 411.49,243.72 421.55,257.05" /><polygon fill="#de5b32" points="487.74,162.13 477.54,160.01 477.29,162.62 487.32,164.82" /><polygon fill="#037365" points="223.54,311.21 218.68,290.14 218.06,288.61 222.93,309.81" /><polygon fill="#fa785f" points="291.91,339.96 295.87,344.10 295.56,343.69 291.56,339.53" /><polygon fill="#047862" points="171.16,297.32 173.54,312.48 175.30,314.20 172.89,299.19" /><polygon fill="#12c08b" points="391.57,222.00 409.55,242.58 410.30,242.90 392.39,222.43" /><polygon fill="#dc5b30" points="457.98,207.45 457.94,205.99 453.08,204.88 453.18,206.32" /><polygon fill="#0c824b" points="178.38,331.80 177.81,346.39 180.14,347.43 180.59,333.01" /><polygon fill="#017371" points="171.16,297.32 167.70,285.77 166.15,283.61 169.63,295.28" /><polygon fill="#e85644" points="424.20,263.34 423.95,262.89 418.16,260.02 418.44,260.46" /><polygon fill="#f9a48f" points="274.04,291.40 262.26,262.11 261.89,263.38 273.56,292.62" /><polygon fill="#26cfab" points="376.98,132.99 379.18,133.94 370.18,129.01 368.00,128.06" /><polygon fill="#c7e795" points="260.62,187.37 259.06,188.91 268.73,209.58 270.49,207.92" /><polygon fill="#ef4a5f" points="442.45,197.39 441.89,196.12 426.66,184.95 427.35,186.27" /><polygon fill="#077d57" points="178.38,331.80 177.25,315.75 175.30,314.20 176.35,330.42" /><polygon fill="#69fb95" points="299.92,163.10 297.86,163.85 312.03,181.69 314.30,180.81" /><polygon fill="#088254" points="229.80,332.96 228.70,332.06 229.74,344.02 230.88,344.83" /><polygon fill="#0dac5f" points="421.93,257.47 423.95,262.89 424.20,263.34 422.20,257.96" /><polygon fill="#de5a32" points="514.61,127.48 515.69,123.38 503.23,121.25 502.43,125.22" /><polygon fill="#47830d" points="173.81,362.62 176.61,363.30 180.31,358.26 177.66,357.51" /><polygon fill="#21d48f" points="387.25,220.98 365.98,197.74 364.64,197.54 385.92,220.90" /><polygon fill="#eb4065" points="424.75,182.59 407.74,168.98 408.89,170.18 425.80,183.72" /><polygon fill="#eac492" points="255.51,225.84 266.64,253.44 267.73,251.85 256.44,224.29" /><polygon fill="#e250c1" points="475.10,101.38 474.79,97.52 474.16,91.41 474.49,95.43" /><polygon fill="#c3e995" points="272.32,206.26 262.24,185.85 260.62,187.37 270.49,207.92" /><polygon fill="#007d7a" points="131.48,328.19 128.65,319.99 125.26,318.09 128.12,326.43" /><polygon fill="#6efc95" points="312.03,181.69 297.86,163.85 295.78,164.67 309.74,182.64" /><polygon fill="#3bea92" points="332.99,175.98 352.88,198.14 354.81,197.84 334.80,175.79" /><polygon fill="#c97b17" points="172.26,362.92 176.61,363.30 173.81,362.62 169.33,362.22" /><polygon fill="#ed4562" points="436.98,132.57 449.49,141.27 448.65,138.96 435.99,130.23" /><polygon fill="#ed3f71" points="434.75,127.99 425.73,119.78 427.05,122.08 435.99,130.23" /><polygon fill="#ed5054" points="442.45,197.39 442.83,198.75 453.08,204.88 452.81,203.53" /><polygon fill="#ea514b" points="464.30,154.16 477.54,160.01 477.55,157.48 464.11,151.66" /><polygon fill="#ff8282" points="283.50,323.53 283.69,324.20 291.31,339.02 291.17,338.44" /><polygon fill="#ec4b57" points="463.69,149.26 449.49,141.27 450.10,143.68 464.11,151.66" /><polygon fill="#bfec95" points="263.92,184.34 262.24,185.85 272.32,206.26 274.21,204.62" /><polygon fill="#fd918b" points="283.43,322.00 283.56,321.13 272.77,295.92 272.71,296.90" /><polygon fill="#0d8247" points="135.78,341.05 132.15,339.69 130.65,352.61 134.44,353.78" /><polygon fill="#73fd95" points="295.78,164.67 293.68,165.54 307.43,183.65 309.74,182.64" /><polygon fill="#358418" points="129.97,375.78 135.21,366.63 131.01,365.88 125.49,375.19" /><polygon fill="#0f8244" points="295.27,336.74 295.34,343.22 295.56,343.69 295.48,337.23" /><polygon fill="#b56b0d" points="493.50,163.65 494.04,160.85 487.74,162.13 487.32,164.82" /><polygon fill="#f79fa0" points="198.77,247.85 198.89,250.11 201.74,267.06 201.64,264.83" /><polygon fill="#0db782" points="411.49,243.72 410.95,243.28 421.07,256.68 421.55,257.05" /><polygon fill="#f7a98f" points="262.74,260.78 262.26,262.11 274.04,291.40 274.63,290.12" /><polygon fill="#bbee95" points="276.17,202.99 265.66,182.85 263.92,184.34 274.21,204.62" /><polygon fill="#15c48b" points="408.68,242.34 409.55,242.58 391.57,222.00 390.64,221.64" /><polygon fill="#fb7d5f" points="295.56,343.69 295.34,343.22 291.31,339.02 291.56,339.53" /><polygon fill="#e7c892" points="267.73,251.85 268.92,250.23 257.46,222.72 256.44,224.29" /><polygon fill="#78fd95" points="307.43,183.65 293.68,165.54 291.58,166.47 305.11,184.72" /><polygon fill="#e75244" points="418.16,260.02 423.95,262.89 423.60,262.51 417.78,259.63" /><polygon fill="#40ec92" points="350.89,198.53 352.88,198.14 332.99,175.98 331.12,176.23" /><polygon fill="#f1a7ab" points="198.28,235.24 198.82,245.48 199.06,243.00 198.50,232.79" /><polygon fill="#3b9a17" points="495.64,156.61 494.04,160.85 493.50,163.65 495.06,159.53" /><polygon fill="#f2487a" points="481.08,103.73 474.79,97.52 475.10,101.38 481.29,107.51" /><polygon fill="#24d78f" points="364.64,197.54 363.22,197.41 384.48,220.89 385.92,220.90" /><polygon fill="#b6f195" points="267.45,181.38 265.66,182.85 276.17,202.99 278.18,201.37" /><polygon fill="#7dfd95" points="291.58,166.47 289.48,167.46 302.78,185.84 305.11,184.72" /><polygon fill="#0fb15f" points="423.60,262.51 423.95,262.89 421.93,257.47 421.55,257.05" /><polygon fill="#20cea0" points="381.21,135.00 379.18,133.94 393.24,143.91 395.25,144.94" /><polygon fill="#1c8130" points="229.74,344.02 228.60,348.91 229.78,349.68 230.88,344.83" /><polygon fill="#04785f" points="223.54,311.21 226.98,329.88 227.76,331.03 224.31,312.50" /><polygon fill="#b2f395" points="280.25,199.78 269.29,179.93 267.45,181.38 278.18,201.37" /><polygon fill="#82fd95" points="302.78,185.84 289.48,167.46 287.38,168.50 300.45,187.03" /><polygon fill="#19c79a" points="397.07,146.08 413.86,159.18 415.41,160.37 398.71,147.34" /><polygon fill="#29d2ab" points="365.66,127.23 374.60,132.16 376.98,132.99 368.00,128.06" /><polygon fill="#e85247" points="491.40,113.10 491.13,116.95 503.23,121.25 503.75,117.34" /><polygon fill="#046e65" points="218.06,288.61 217.60,286.96 222.49,308.28 222.93,309.81" /><polygon fill="#adf495" points="271.17,178.51 269.29,179.93 280.25,199.78 282.36,198.22" /><polygon fill="#87fd95" points="287.38,168.50 285.29,169.60 298.12,188.27 300.45,187.03" /><polygon fill="#c56418" points="526.54,122.40 515.69,123.38 514.61,127.48 525.19,126.69" /><polygon fill="#e4cc92" points="257.46,222.72 268.92,250.23 270.20,248.57 258.57,221.13" /><polygon fill="#a9f695" points="284.52,196.68 273.10,177.12 271.17,178.51 282.36,198.22" /><polygon fill="#618104" points="118.96,380.94 123.74,381.43 129.97,375.78 125.49,375.19" /><polygon fill="#ff8782" points="291.13,337.80 283.41,322.80 283.50,323.53 291.17,338.44" /><polygon fill="#8cfd95" points="298.12,188.27 285.29,169.60 283.20,170.74 295.80,189.56" /><polygon fill="#fc968b" points="272.77,295.92 283.56,321.13 283.79,320.19 272.92,294.88" /><polygon fill="#a4f895" points="275.06,175.77 273.10,177.12 284.52,196.68 286.72,195.18" /><polygon fill="#1a8132" points="180.14,347.43 177.81,346.39 175.19,356.60 177.66,357.51" /><polygon fill="#44ef92" points="329.18,176.56 348.82,198.98 350.89,198.53 331.12,176.23" /><polygon fill="#91fc95" points="283.20,170.74 281.13,171.93 293.50,190.90 295.80,189.56" /><polygon fill="#ec455f" points="426.66,184.95 441.89,196.12 441.15,194.94 425.80,183.72" /><polygon fill="#f5ae8f" points="275.33,288.78 263.31,259.40 262.74,260.78 274.63,290.12" /><polygon fill="#9ff995" points="288.95,193.71 277.06,174.45 275.06,175.77 286.72,195.18" /><polygon fill="#db5830" points="453.08,204.88 457.94,205.99 457.72,204.61 452.81,203.53" /><polygon fill="#96fb95" points="293.50,190.90 281.13,171.93 279.08,173.17 291.21,192.28" /><polygon fill="#9afa95" points="279.08,173.17 277.06,174.45 288.95,193.71 291.21,192.28" /><polygon fill="#0f7d44" points="295.22,342.68 295.34,343.22 295.27,336.74 295.16,336.19" /><polygon fill="#e83c65" points="406.42,167.88 407.74,168.98 424.75,182.59 423.52,181.55" /><polygon fill="#057d5b" points="128.70,338.10 132.15,339.69 131.48,328.19 128.12,326.43" /><polygon fill="#087d54" points="229.74,344.02 228.70,332.06 227.76,331.03 228.77,343.09" /><polygon fill="#17c88b" points="389.61,221.35 407.71,242.16 408.68,242.34 390.64,221.64" /><polygon fill="#0fbc82" points="421.07,256.68 410.95,243.28 410.30,242.90 420.48,256.39" /><polygon fill="#28db8f" points="384.48,220.89 363.22,197.41 361.70,197.35 382.95,220.96" /><polygon fill="#fb825f" points="291.31,339.02 295.34,343.22 295.22,342.68 291.17,338.44" /><polygon fill="#a57d06" points="117.60,382.90 123.74,381.43 118.96,380.94 112.55,382.43" /><polygon fill="#e54e44" points="423.60,262.51 423.13,262.19 417.30,259.31 417.78,259.63" /><polygon fill="#047362" points="171.98,310.58 173.54,312.48 171.16,297.32 169.63,295.28" /><polygon fill="#026e71" points="166.15,283.61 164.81,281.28 168.30,293.07 169.63,295.28" /><polygon fill="#e1d092" points="270.20,248.57 271.59,246.88 259.77,219.52 258.57,221.13" /><polygon fill="#11b55f" points="421.07,256.68 423.13,262.19 423.60,262.51 421.55,257.05" /><polygon fill="#48f192" points="346.68,199.52 348.82,198.98 329.18,176.56 327.19,176.96" /><polygon fill="#dc5732" points="477.55,157.48 477.54,160.01 487.74,162.13 487.93,159.53" /><polygon fill="#eb4b54" points="452.34,202.27 441.89,196.12 442.45,197.39 452.81,203.53" /><polygon fill="#077857" points="175.30,314.20 173.54,312.48 174.52,328.86 176.35,330.42" /><polygon fill="#0c7d4b" points="175.68,345.17 177.81,346.39 178.38,331.80 176.35,330.42" /><polygon fill="#f6a3a0" points="201.72,262.49 198.82,245.48 198.77,247.85 201.64,264.83" /><polygon fill="#9c7404" points="533.05,123.47 534.62,118.96 526.54,122.40 525.19,126.69" /><polygon fill="#1a8132" points="130.65,352.61 126.98,364.91 131.01,365.88 134.44,353.78" /><polygon fill="#efabab" points="199.06,243.00 199.49,240.42 198.91,230.25 198.50,232.79" /><polygon fill="#ed4a5b" points="491.40,113.10 491.39,109.33 481.08,103.73 481.29,107.51" /><polygon fill="#f3b28f" points="263.99,257.98 263.31,259.40 275.33,288.78 276.14,287.39" /><polygon fill="#fb9b8b" points="283.79,320.19 284.15,319.19 273.19,293.78 272.92,294.88" /><polygon fill="#ea3b71" points="424.15,117.58 425.73,119.78 434.75,127.99 433.27,125.86" /><polygon fill="#f99a9a" points="206.53,289.95 206.27,287.93 201.74,267.06 202.02,269.17" /><polygon fill="#eb4162" points="448.65,138.96 447.55,136.76 434.75,127.99 435.99,130.23" /><polygon fill="#fe8c82" points="283.43,322.00 283.41,322.80 291.13,337.80 291.20,337.09" /><polygon fill="#23d1a0" points="393.24,143.91 379.18,133.94 376.98,132.99 391.04,143.00" /><polygon fill="#ded392" points="259.77,219.52 271.59,246.88 273.07,245.17 261.06,217.88" /><polygon fill="#46810d" points="175.19,356.60 171.19,361.76 173.81,362.62 177.66,357.51" /><polygon fill="#2bde8f" points="361.70,197.35 360.10,197.36 381.32,221.10 382.95,220.96" /><polygon fill="#0f7944" points="295.15,335.56 295.22,342.08 295.22,342.68 295.16,336.19" /><polygon fill="#5c8d06" points="538.77,113.78 534.62,118.96 533.05,123.47 537.07,118.52" /><polygon fill="#2dd6ab" points="372.05,131.46 374.60,132.16 365.66,127.23 363.15,126.51" /><polygon fill="#1acc8b" points="406.62,242.06 407.71,242.16 389.61,221.35 388.48,221.13" /><polygon fill="#4df392" points="325.15,177.43 344.48,200.12 346.68,199.52 327.19,176.96" /><polygon fill="#ea4657" points="448.65,138.96 449.49,141.27 463.69,149.26 463.02,146.96" /><polygon fill="#12c082" points="410.30,242.90 409.55,242.58 419.77,256.16 420.48,256.39" /><polygon fill="#e84d4b" points="477.55,157.48 477.32,155.05 463.69,149.26 464.11,151.66" /><polygon fill="#05735f" points="226.37,328.60 226.98,329.88 223.54,311.21 222.93,309.81" /><polygon fill="#fa875f" points="295.22,342.68 295.22,342.08 291.13,337.80 291.17,338.44" /><polygon fill="#1ccb9a" points="412.10,158.10 413.86,159.18 397.07,146.08 395.25,144.94" /><polygon fill="#c97e17" points="173.81,362.62 171.19,361.76 166.58,361.33 169.33,362.22" /><polygon fill="#1c7e30" points="227.59,348.01 228.60,348.91 229.74,344.02 228.77,343.09" /><polygon fill="#dd5732" points="503.23,121.25 515.69,123.38 516.50,119.35 503.75,117.34" /><polygon fill="#00787a" points="125.26,318.09 122.08,315.96 124.96,324.43 128.12,326.43" /><polygon fill="#13ba5f" points="422.56,261.93 423.13,262.19 421.07,256.68 420.48,256.39" /><polygon fill="#dad792" points="273.07,245.17 274.64,243.44 262.43,216.24 261.06,217.88" /><polygon fill="#f68250" points="225.62,346.33 228.60,348.91 227.59,348.01 224.56,345.40" /><polygon fill="#b4690d" points="487.74,162.13 494.04,160.85 494.34,158.14 487.93,159.53" /><polygon fill="#f1b78f" points="277.06,285.94 264.78,256.51 263.99,257.98 276.14,287.39" /><polygon fill="#ea415f" points="441.15,194.94 440.21,193.87 424.75,182.59 425.80,183.72" /><polygon fill="#52f592" points="342.22,200.81 344.48,200.12 325.15,177.43 323.06,177.96" /><polygon fill="#faa08b" points="273.19,293.78 284.15,319.19 284.61,318.12 273.56,292.62" /><polygon fill="#d95430" points="457.72,204.61 457.30,203.34 452.34,202.27 452.81,203.53" /><polygon fill="#2fe18f" points="381.32,221.10 360.10,197.36 358.42,197.45 379.59,221.32" /><polygon fill="#087854" points="227.76,331.03 226.98,329.88 227.97,342.03 228.77,343.09" /><polygon fill="#0d7d47" points="130.65,352.61 132.15,339.69 128.70,338.10 127.04,351.21" /><polygon fill="#fe9182" points="291.39,336.30 283.56,321.13 283.43,322.00 291.20,337.09" /><polygon fill="#3c9d17" points="494.34,158.14 494.04,160.85 495.64,156.61 495.97,153.78" /><polygon fill="#15b350" points="456.25,199.46 457.30,203.34 457.72,204.61 456.69,200.79" /><polygon fill="#d7da92" points="262.43,216.24 274.64,243.44 276.30,241.69 263.89,214.58" /><polygon fill="#1dd08b" points="387.25,220.98 405.43,242.03 406.62,242.06 388.48,221.13" /><polygon fill="#f4a8a0" points="199.06,243.00 198.82,245.48 201.72,262.49 202.01,260.02" /><polygon fill="#edafab" points="198.91,230.25 199.49,240.42 200.11,237.74 199.49,227.61" /><polygon fill="#358118" points="131.01,365.88 126.98,364.91 121.16,374.37 125.49,375.19" /><polygon fill="#f0437a" points="474.17,93.75 474.79,97.52 481.08,103.73 480.58,100.04" /><polygon fill="#56f792" points="320.93,178.57 339.91,201.56 342.22,200.81 323.06,177.96" /><polygon fill="#14c482" points="419.77,256.16 409.55,242.58 408.68,242.34 418.96,256.00" /><polygon fill="#fa8c5f" points="291.13,337.80 295.22,342.08 295.31,341.40 291.20,337.09" /><polygon fill="#e94754" points="441.15,194.94 441.89,196.12 452.34,202.27 451.69,201.11" /><polygon fill="#1a7e32" points="175.19,356.60 177.81,346.39 175.68,345.17 172.91,355.49" /><polygon fill="#30d9ab" points="360.48,125.93 369.32,130.88 372.05,131.46 363.15,126.51" /><polygon fill="#efbb8f" points="265.66,254.99 264.78,256.51 277.06,285.94 278.09,284.44" /><polygon fill="#27d5a0" points="376.98,132.99 374.60,132.16 388.65,142.22 391.04,143.00" /><polygon fill="#036971" points="168.30,293.07 164.81,281.28 163.68,278.78 167.20,290.68" /><polygon fill="#f89f9a" points="201.74,267.06 206.27,287.93 206.21,285.79 201.64,264.83" /><polygon fill="#056f62" points="168.30,293.07 170.63,308.50 171.98,310.58 169.63,295.28" /><polygon fill="#15be5f" points="419.77,256.16 421.89,261.74 422.56,261.93 420.48,256.39" /><polygon fill="#d3de92" points="276.30,241.69 278.06,239.92 265.42,212.92 263.89,214.58" /><polygon fill="#33e48f" points="358.42,197.45 356.65,197.60 377.77,221.62 379.59,221.32" /><polygon fill="#e64e47" points="503.98,113.51 491.39,109.33 491.40,113.10 503.75,117.34" /><polygon fill="#5bf892" points="337.54,202.40 339.91,201.56 320.93,178.57 318.75,179.25" /><polygon fill="#fb9696" points="206.53,289.95 206.97,291.84 212.38,313.12 211.98,311.38" /><polygon fill="#f9a48b" points="284.61,318.12 285.19,316.98 274.04,291.40 273.56,292.62" /><polygon fill="#077457" points="174.52,328.86 173.54,312.48 171.98,310.58 172.90,327.12" /><polygon fill="#1fcf9a" points="393.24,143.91 410.14,157.15 412.10,158.10 395.25,144.94" /><polygon fill="#056f5f" points="222.49,308.28 225.95,327.20 226.37,328.60 222.93,309.81" /><polygon fill="#c36218" points="516.50,119.35 515.69,123.38 526.54,122.40 527.61,118.17" /><polygon fill="#fd9682" points="283.79,320.19 283.56,321.13 291.39,336.30 291.68,335.45" /><polygon fill="#0c794b" points="174.52,328.86 173.74,343.77 175.68,345.17 176.35,330.42" /><polygon fill="#06785b" points="124.96,324.43 125.47,336.27 128.70,338.10 128.12,326.43" /><polygon fill="#e73771" points="431.54,123.86 422.33,115.51 424.15,117.58 433.27,125.86" /><polygon fill="#21d48b" points="404.12,242.08 405.43,242.03 387.25,220.98 385.92,220.90" /><polygon fill="#d0e192" points="265.42,212.92 278.06,239.92 279.90,238.14 267.04,211.25" /><polygon fill="#db5332" points="487.86,157.02 477.32,155.05 477.55,157.48 487.93,159.53" /><polygon fill="#e83d62" points="434.75,127.99 447.55,136.76 446.19,134.68 433.27,125.86" /><polygon fill="#60fa92" points="316.54,180.00 335.13,203.30 337.54,202.40 318.75,179.25" /><polygon fill="#618004" points="121.16,374.37 114.33,380.22 118.96,380.94 125.49,375.19" /><polygon fill="#19c796" points="415.41,160.37 413.86,159.18 430.81,173.42 432.26,174.51" /><polygon fill="#1c7a30" points="227.97,342.03 226.75,346.98 227.59,348.01 228.77,343.09" /><polygon fill="#edbf8f" points="279.24,282.89 266.64,253.44 265.66,254.99 278.09,284.44" /><polygon fill="#17c882" points="408.68,242.34 407.71,242.16 418.04,255.91 418.96,256.00" /><polygon fill="#fa905f" points="295.31,341.40 295.52,340.66 291.39,336.30 291.20,337.09" /><polygon fill="#e73d5f" points="424.75,182.59 440.21,193.87 439.08,192.90 423.52,181.55" /><polygon fill="#37e78f" points="377.77,221.62 356.65,197.60 354.81,197.84 375.85,222.00" /><polygon fill="#f68650" points="227.59,348.01 226.75,346.98 223.68,344.33 224.56,345.40" /><polygon fill="#ebb4ab" points="200.11,237.74 200.92,234.97 200.26,224.89 199.49,227.61" /><polygon fill="#e84257" points="462.09,144.77 447.55,136.76 448.65,138.96 463.02,146.96" /><polygon fill="#cce492" points="279.90,238.14 281.82,236.36 268.73,209.58 267.04,211.25" /><polygon fill="#f2aca0" points="202.49,257.45 199.49,240.42 199.06,243.00 202.01,260.02" /><polygon fill="#64fb92" points="332.68,204.27 335.13,203.30 316.54,180.00 314.30,180.81" /><polygon fill="#467e0d" points="168.77,360.71 171.19,361.76 175.19,356.60 172.91,355.49" /><polygon fill="#e6494b" points="463.69,149.26 477.32,155.05 476.83,152.73 463.02,146.96" /><polygon fill="#18c25f" points="421.10,261.63 421.89,261.74 419.77,256.16 418.96,256.00" /><polygon fill="#a67f06" points="118.96,380.94 114.33,380.22 107.66,381.73 112.55,382.43" /><polygon fill="#d75130" points="452.34,202.27 457.30,203.34 456.69,202.16 451.69,201.11" /><polygon fill="#087454" points="227.97,342.03 226.98,329.88 226.37,328.60 227.35,340.84" /><polygon fill="#eb465b" points="481.08,103.73 491.39,109.33 491.07,105.64 480.58,100.04" /><polygon fill="#f7a98b" points="274.04,291.40 285.19,316.98 285.89,315.78 274.63,290.12" /><polygon fill="#34dcab" points="366.43,130.45 369.32,130.88 360.48,125.93 357.65,125.47" /><polygon fill="#1a7e32" points="123.13,363.70 126.98,364.91 130.65,352.61 127.04,351.21" /><polygon fill="#c8e792" points="268.73,209.58 281.82,236.36 283.82,234.57 270.49,207.92" /><polygon fill="#17b750" points="456.69,202.16 457.30,203.34 456.25,199.46 455.62,198.22" /><polygon fill="#2ad8a0" points="388.65,142.22 374.60,132.16 372.05,131.46 386.07,141.57" /><polygon fill="#c98117" points="166.58,361.33 171.19,361.76 168.77,360.71 164.04,360.26" /><polygon fill="#69fc92" points="312.03,181.69 330.19,205.31 332.68,204.27 314.30,180.81" /><polygon fill="#24d78b" points="384.48,220.89 402.71,242.21 404.12,242.08 385.92,220.90" /><polygon fill="#eac48f" points="267.73,251.85 266.64,253.44 279.24,282.89 280.49,281.30" /><polygon fill="#fc9b82" points="292.09,334.52 284.15,319.19 283.79,320.19 291.68,335.45" /><polygon fill="#9c7304" points="526.54,122.40 534.62,118.96 535.91,114.49 527.61,118.17" /><polygon fill="#f7a49a" points="206.21,285.79 206.35,283.51 201.72,262.49 201.64,264.83" /><polygon fill="#e74354" points="450.83,200.06 440.21,193.87 441.15,194.94 451.69,201.11" /><polygon fill="#3bea8f" points="354.81,197.84 352.88,198.14 373.85,222.46 375.85,222.00" /><polygon fill="#d5b2cf" points="202.37,219.18 203.66,215.69 202.54,218.51 201.22,222.08" /><polygon fill="#c4ea92" points="283.82,234.57 285.89,232.78 272.32,206.26 270.49,207.92" /><polygon fill="#b3670d" points="494.34,158.14 494.38,155.53 487.86,157.02 487.93,159.53" /><polygon fill="#1acc82" points="418.04,255.91 407.71,242.16 406.62,242.06 417.00,255.90" /><polygon fill="#6efd92" points="327.68,206.42 330.19,205.31 312.03,181.69 309.74,182.64" /><polygon fill="#01737a" points="124.96,324.43 122.08,315.96 119.12,313.59 122.02,322.19" /><polygon fill="#f9955f" points="291.39,336.30 295.52,340.66 295.84,339.85 291.68,335.45" /><polygon fill="#47d1cf" points="354.66,125.15 350.89,124.79 347.83,124.61 351.52,124.97" /><polygon fill="#fa9a96" points="211.77,309.49 206.27,287.93 206.53,289.95 211.98,311.38" /><polygon fill="#5d8f06" points="535.91,114.49 534.62,118.96 538.77,113.78 540.19,109.08" /><polygon fill="#22d29a" points="407.98,156.32 410.14,157.15 393.24,143.91 391.04,143.00" /><polygon fill="#bfec92" points="272.32,206.26 285.89,232.78 288.03,231.00 274.21,204.62" /><polygon fill="#db5332" points="516.50,119.35 517.01,115.38 503.98,113.51 503.75,117.34" /><polygon fill="#3e9f17" points="496.03,151.04 494.38,155.53 494.34,158.14 495.97,153.78" /><polygon fill="#046471" points="163.68,278.78 162.77,276.11 166.32,288.11 167.20,290.68" /><polygon fill="#1ac65f" points="418.04,255.91 420.20,261.58 421.10,261.63 418.96,256.00" /><polygon fill="#73fd92" points="307.43,183.65 325.14,207.60 327.68,206.42 309.74,182.64" /><polygon fill="#f6ae8b" points="285.89,315.78 286.70,314.51 275.33,288.78 274.63,290.12" /><polygon fill="#e7c88f" points="281.85,279.66 268.92,250.23 267.73,251.85 280.49,281.30" /><polygon fill="#056a62" points="169.52,306.24 170.63,308.50 168.30,293.07 167.20,290.68" /><polygon fill="#e9b8ab" points="200.26,224.89 200.92,234.97 201.94,232.10 201.22,222.08" /><polygon fill="#bbef92" points="288.03,231.00 290.25,229.23 276.17,202.99 274.21,204.62" /><polygon fill="#28db8b" points="401.19,242.41 402.71,242.21 384.48,220.89 382.95,220.96" /><polygon fill="#40ed8f" points="373.85,222.46 352.88,198.14 350.89,198.53 371.76,223.00" /><polygon fill="#78fd92" points="322.57,208.83 325.14,207.60 307.43,183.65 305.11,184.72" /><polygon fill="#1ccb96" points="430.81,173.42 413.86,159.18 412.10,158.10 429.15,172.44" /><polygon fill="#0e7947" points="128.70,338.10 125.47,336.27 123.64,349.57 127.04,351.21" /><polygon fill="#1a7a32" points="175.68,345.17 173.74,343.77 170.85,354.20 172.91,355.49" /><polygon fill="#fba082" points="284.61,318.12 284.15,319.19 292.09,334.52 292.62,333.53" /><polygon fill="#f1b1a0" points="200.11,237.74 199.49,240.42 202.49,257.45 203.18,254.76" /><polygon fill="#1c7630" points="226.10,345.82 226.75,346.98 227.97,342.03 227.35,340.84" /><polygon fill="#ed3f7a" points="479.76,96.45 473.24,90.08 474.17,93.75 480.58,100.04" /><polygon fill="#37dfab" points="354.66,125.15 363.36,130.15 366.43,130.45 357.65,125.47" /><polygon fill="#b7f192" points="276.17,202.99 290.25,229.23 292.52,227.47 278.18,201.37" /><polygon fill="#e43371" points="420.24,113.57 422.33,115.51 431.54,123.86 429.53,121.99" /><polygon fill="#7dfe92" points="302.78,185.84 320.00,210.13 322.57,208.83 305.11,184.72" /><polygon fill="#086f57" points="171.98,310.58 170.63,308.50 171.50,325.19 172.90,327.12" /><polygon fill="#1dd082" points="406.62,242.06 405.43,242.03 415.85,255.96 417.00,255.90" /><polygon fill="#e53962" points="446.19,134.68 444.57,132.72 431.54,123.86 433.27,125.86" /><polygon fill="#b2f392" points="292.52,227.47 294.84,225.73 280.25,199.78 278.18,201.37" /><polygon fill="#f58b50" points="223.68,344.33 226.75,346.98 226.10,345.82 222.98,343.12" /><polygon fill="#82fe92" points="317.42,211.48 320.00,210.13 302.78,185.84 300.45,187.03" /><polygon fill="#d3b5cf" points="204.97,212.80 203.66,215.69 202.37,219.18 203.72,216.22" /><polygon fill="#2edca0" points="372.05,131.46 369.32,130.88 383.31,141.05 386.07,141.57" /><polygon fill="#0c744b" points="172.03,342.18 173.74,343.77 174.52,328.86 172.90,327.12" /><polygon fill="#f89a5f" points="295.84,339.85 296.27,338.97 292.09,334.52 291.68,335.45" /><polygon fill="#357e18" points="121.16,374.37 126.98,364.91 123.13,363.70 117.02,373.32" /><polygon fill="#e4cc8f" points="270.20,248.57 268.92,250.23 281.85,279.66 283.33,277.98" /><polygon fill="#096f54" points="226.37,328.60 225.95,327.20 226.91,339.52 227.35,340.84" /><polygon fill="#adf592" points="280.25,199.78 294.84,225.73 297.22,224.00 282.36,198.22" /><polygon fill="#d54d30" points="456.69,202.16 455.87,201.10 450.83,200.06 451.69,201.11" /><polygon fill="#87fd92" points="298.12,188.27 314.84,212.89 317.42,211.48 300.45,187.03" /><polygon fill="#f4b28b" points="275.33,288.78 286.70,314.51 287.63,313.18 276.14,287.39" /><polygon fill="#d95032" points="476.83,152.73 477.32,155.05 487.86,157.02 487.52,154.63" /><polygon fill="#44ef8f" points="350.89,198.53 348.82,198.98 369.59,223.61 371.76,223.00" /><polygon fill="#a9f792" points="297.22,224.00 299.65,222.31 284.52,196.68 282.36,198.22" /><polygon fill="#1dca5f" points="419.20,261.60 420.20,261.58 418.04,255.91 417.00,255.90" /><polygon fill="#4ad3cf" points="347.83,124.61 344.62,124.57 348.23,124.92 351.52,124.97" /><polygon fill="#8cfd92" points="312.26,214.35 314.84,212.89 298.12,188.27 295.80,189.56" /><polygon fill="#e44a47" points="491.07,105.64 491.39,109.33 503.98,113.51 503.91,109.76" /><polygon fill="#f5a89a" points="201.72,262.49 206.35,283.51 206.70,281.11 202.01,260.02" /><polygon fill="#a4f892" points="284.52,196.68 299.65,222.31 302.11,220.64 286.72,195.18" /><polygon fill="#e53e57" points="446.19,134.68 447.55,136.76 462.09,144.77 460.89,142.71" /><polygon fill="#91fd92" points="293.50,190.90 309.69,215.86 312.26,214.35 295.80,189.56" /><polygon fill="#19bb50" points="454.79,197.10 455.87,201.10 456.69,202.16 455.62,198.22" /><polygon fill="#2bde8b" points="381.32,221.10 399.56,242.69 401.19,242.41 382.95,220.96" /><polygon fill="#9ffa92" points="302.11,220.64 304.61,219.01 288.95,193.71 286.72,195.18" /><polygon fill="#96fc92" points="307.14,217.42 309.69,215.86 293.50,190.90 291.21,192.28" /><polygon fill="#9bfb92" points="288.95,193.71 304.61,219.01 307.14,217.42 291.21,192.28" /><polygon fill="#e43f54" points="439.08,192.90 440.21,193.87 450.83,200.06 449.78,199.13" /><polygon fill="#fc9691" points="212.38,313.12 217.89,331.20 217.53,329.61 211.98,311.38" /><polygon fill="#06745b" points="122.45,334.20 125.47,336.27 124.96,324.43 122.02,322.19" /><polygon fill="#e4454b" points="476.83,152.73 476.07,150.52 462.09,144.77 463.02,146.96" /><polygon fill="#f9a482" points="293.26,332.47 285.19,316.98 284.61,318.12 292.62,333.53" /><polygon fill="#e7bcab" points="201.94,232.10 203.15,229.14 202.37,219.18 201.22,222.08" /><polygon fill="#e1d08f" points="284.90,276.26 271.59,246.88 270.20,248.57 283.33,277.98" /><polygon fill="#26d69a" points="388.65,142.22 405.61,155.63 407.98,156.32 391.04,143.00" /><polygon fill="#477c0d" points="170.85,354.20 166.56,359.46 168.77,360.71 172.91,355.49" /><polygon fill="#c25f18" points="528.38,114.00 517.01,115.38 516.50,119.35 527.61,118.17" /><polygon fill="#f99f96" points="206.21,285.79 206.27,287.93 211.77,309.49 211.77,307.47" /><polygon fill="#20d482" points="415.85,255.96 405.43,242.03 404.12,242.08 414.59,256.10" /><polygon fill="#48f18f" points="369.59,223.61 348.82,198.98 346.68,199.52 367.33,224.30" /><polygon fill="#fe9184" points="222.48,341.77 217.89,331.20 218.44,332.66 222.98,343.12" /><polygon fill="#3be2ab" points="360.12,130.00 363.36,130.15 354.66,125.15 351.52,124.97" /><polygon fill="#18c891" points="430.81,173.42 444.85,186.36 446.19,187.35 432.26,174.51" /><polygon fill="#f79f5f" points="292.09,334.52 296.27,338.97 296.81,338.02 292.62,333.53" /><polygon fill="#efb5a0" points="204.08,251.96 200.92,234.97 200.11,237.74 203.18,254.76" /><polygon fill="#f2b78b" points="287.63,313.18 288.68,311.79 277.06,285.94 276.14,287.39" /><polygon fill="#d1b8cf" points="205.25,213.18 206.47,209.84 204.97,212.80 203.72,216.22" /><polygon fill="#617f04" points="109.88,379.26 114.33,380.22 121.16,374.37 117.02,373.32" /><polygon fill="#c98417" points="168.77,360.71 166.56,359.46 161.70,358.98 164.04,360.26" /><polygon fill="#1fcf96" points="412.10,158.10 410.14,157.15 427.28,171.60 429.15,172.44" /><polygon fill="#20ce5f" points="415.85,255.96 418.08,261.70 419.20,261.60 417.00,255.90" /><polygon fill="#2fe28b" points="397.83,243.05 399.56,242.69 381.32,221.10 379.59,221.32" /><polygon fill="#e9425b" points="491.07,105.64 490.43,102.05 479.76,96.45 480.58,100.04" /><polygon fill="#14c484" points="454.79,197.10 447.32,188.45 446.19,187.35 453.74,196.09" /><polygon fill="#ded48f" points="273.07,245.17 271.59,246.88 284.90,276.26 286.58,274.51" /><polygon fill="#31dfa0" points="383.31,141.05 369.32,130.88 366.43,130.45 380.35,140.69" /><polygon fill="#4dd5cf" points="348.23,124.92 344.62,124.57 341.27,124.67 344.79,125.03" /><polygon fill="#b2650d" points="487.86,157.02 494.38,155.53 494.14,153.03 487.52,154.63" /><polygon fill="#4df38f" points="346.68,199.52 344.48,200.12 365.00,225.08 367.33,224.30" /><polygon fill="#1d7230" points="226.91,339.52 225.64,344.52 226.10,345.82 227.35,340.84" /><polygon fill="#1a7a32" points="123.64,349.57 119.50,362.25 123.13,363.70 127.04,351.21" /><polygon fill="#066562" points="166.32,288.11 168.64,303.79 169.52,306.24 167.20,290.68" /><polygon fill="#f8a982" points="285.89,315.78 285.19,316.98 293.26,332.47 294.02,331.34" /><polygon fill="#a68006" points="107.66,381.73 114.33,380.22 109.88,379.26 102.94,380.78" /><polygon fill="#f59050" points="226.10,345.82 225.64,344.52 222.48,341.77 222.98,343.12" /><polygon fill="#24d882" points="404.12,242.08 402.71,242.21 413.21,256.32 414.59,256.10" /><polygon fill="#0a6a54" points="226.91,339.52 225.95,327.20 225.71,325.66 226.68,338.06" /><polygon fill="#016e7a" points="119.12,313.59 116.39,310.96 119.32,319.70 122.02,322.19" /><polygon fill="#3fa217" points="494.14,153.03 494.38,155.53 496.03,151.04 495.83,148.41" /><polygon fill="#f4ad9a" points="206.70,281.11 207.27,278.58 202.49,257.45 202.01,260.02" /><polygon fill="#e4c0ab" points="202.37,219.18 203.15,229.14 204.58,226.10 203.72,216.22" /><polygon fill="#efbb8b" points="277.06,285.94 288.68,311.79 289.84,310.34 278.09,284.44" /><polygon fill="#dbd78f" points="288.36,272.72 274.64,243.44 273.07,245.17 286.58,274.51" /><polygon fill="#d34a30" points="450.83,200.06 455.87,201.10 454.85,200.14 449.78,199.13" /><polygon fill="#9b7204" points="535.91,114.49 536.89,110.08 528.38,114.00 527.61,118.17" /><polygon fill="#f5a35f" points="296.81,338.02 297.47,337.01 293.26,332.47 292.62,333.53" /><polygon fill="#1b7632" points="170.85,354.20 173.74,343.77 172.03,342.18 169.00,352.71" /><polygon fill="#086a57" points="171.50,325.19 170.63,308.50 169.52,306.24 170.34,323.07" /><polygon fill="#e23562" points="431.54,123.86 444.57,132.72 442.68,130.91 429.53,121.99" /><polygon fill="#51f58f" points="365.00,225.08 344.48,200.12 342.22,200.81 362.61,225.93" /><polygon fill="#33e58b" points="377.77,221.62 395.99,243.49 397.83,243.05 379.59,221.32" /><polygon fill="#3fe4ab" points="348.23,124.92 356.73,130.00 360.12,130.00 351.52,124.97" /><polygon fill="#23d15f" points="416.85,261.87 418.08,261.70 415.85,255.96 414.59,256.10" /><polygon fill="#cfbccf" points="208.15,206.82 206.47,209.84 205.25,213.18 206.99,210.09" /><polygon fill="#1cbf50" points="454.85,200.14 455.87,201.10 454.79,197.10 453.74,196.09" /><polygon fill="#29d99a" points="403.04,155.07 405.61,155.63 388.65,142.22 386.07,141.57" /><polygon fill="#e23b54" points="448.52,198.31 437.76,192.05 439.08,192.90 449.78,199.13" /><polygon fill="#d95032" points="503.98,113.51 517.01,115.38 517.20,111.49 503.91,109.76" /><polygon fill="#fb9b91" points="217.53,329.61 217.39,327.87 211.77,309.49 211.98,311.38" /><polygon fill="#0d704b" points="171.50,325.19 170.54,340.39 172.03,342.18 172.90,327.12" /><polygon fill="#ecbaa0" points="201.94,232.10 200.92,234.97 204.08,251.96 205.19,249.06" /><polygon fill="#f8a496" points="211.99,305.31 206.35,283.51 206.21,285.79 211.77,307.47" /><polygon fill="#51d7cf" points="341.27,124.67 337.79,124.91 341.21,125.28 344.79,125.03" /><polygon fill="#d7db8f" points="276.30,241.69 274.64,243.44 288.36,272.72 290.25,270.91" /><polygon fill="#f6ae82" points="294.90,330.15 286.70,314.51 285.89,315.78 294.02,331.34" /><polygon fill="#0e7447" points="123.64,349.57 125.47,336.27 122.45,334.20 120.47,347.68" /><polygon fill="#5d9006" points="541.31,104.42 536.89,110.08 535.91,114.49 540.19,109.08" /><polygon fill="#eb3b7a" points="471.97,86.51 473.24,90.08 479.76,96.45 478.61,92.96" /><polygon fill="#e33a57" points="459.41,140.78 444.57,132.72 446.19,134.68 460.89,142.71" /><polygon fill="#56f78f" points="342.22,200.81 339.91,201.56 360.14,226.85 362.61,225.93" /><polygon fill="#d74c32" points="486.91,152.36 476.07,150.52 476.83,152.73 487.52,154.63" /><polygon fill="#fd9684" points="217.53,329.61 217.89,331.20 222.48,341.77 222.18,340.28" /><polygon fill="#edc08b" points="289.84,310.34 291.13,308.84 279.24,282.89 278.09,284.44" /><polygon fill="#27db82" points="413.21,256.32 402.71,242.21 401.19,242.41 411.73,256.61" /><polygon fill="#35e2a0" points="366.43,130.45 363.36,130.15 377.21,140.46 380.35,140.69" /><polygon fill="#1bcc91" points="443.30,185.51 444.85,186.36 430.81,173.42 429.15,172.44" /><polygon fill="#22d396" points="427.28,171.60 410.14,157.15 407.98,156.32 425.19,170.89" /><polygon fill="#37e88b" points="394.05,244.01 395.99,243.49 377.77,221.62 375.85,222.00" /><polygon fill="#f4a85f" points="293.26,332.47 297.47,337.01 298.25,335.93 294.02,331.34" /><polygon fill="#e1414b" points="462.09,144.77 476.07,150.52 475.04,148.44 460.89,142.71" /><polygon fill="#d4de8f" points="292.22,269.07 278.06,239.92 276.30,241.69 290.25,270.91" /><polygon fill="#e2c4ab" points="204.58,226.10 206.20,222.98 205.25,213.18 203.72,216.22" /><polygon fill="#17c884" points="446.19,187.35 444.85,186.36 452.47,195.20 453.74,196.09" /><polygon fill="#5bf98f" points="360.14,226.85 339.91,201.56 337.54,202.40 357.61,227.85" /><polygon fill="#27d55f" points="413.21,256.32 415.51,262.12 416.85,261.87 414.59,256.10" /><polygon fill="#357b18" points="123.13,363.70 119.50,362.25 113.09,372.01 117.02,373.32" /><polygon fill="#e24647" points="503.50,106.10 490.43,102.05 491.07,105.64 503.91,109.76" /><polygon fill="#ccbfcf" points="208.92,206.93 210.02,203.76 208.15,206.82 206.99,210.09" /><polygon fill="#1d6e30" points="225.38,343.08 225.64,344.52 226.91,339.52 226.68,338.06" /><polygon fill="#477a0d" points="164.58,358.01 166.56,359.46 170.85,354.20 169.00,352.71" /><polygon fill="#43e7ab" points="353.17,130.15 356.73,130.00 348.23,124.92 344.79,125.03" /><polygon fill="#f2b19a" points="202.49,257.45 207.27,278.58 208.05,275.93 203.18,254.76" /><polygon fill="#f4b382" points="287.63,313.18 286.70,314.51 294.90,330.15 295.90,328.89" /><polygon fill="#076f5b" points="119.32,319.70 119.68,331.87 122.45,334.20 122.02,322.19" /><polygon fill="#eac48b" points="279.24,282.89 291.13,308.84 292.53,307.28 280.49,281.30" /><polygon fill="#d0e18f" points="279.90,238.14 278.06,239.92 292.22,269.07 294.29,267.21" /><polygon fill="#54d9cf" points="341.21,125.28 337.79,124.91 334.19,125.30 337.50,125.69" /><polygon fill="#f49450" points="222.48,341.77 225.64,344.52 225.38,343.08 222.18,340.28" /><polygon fill="#60fa8f" points="337.54,202.40 335.13,203.30 355.03,228.93 357.61,227.85" /><polygon fill="#2bdf82" points="401.19,242.41 399.56,242.69 410.13,256.98 411.73,256.61" /><polygon fill="#076062" points="168.02,301.15 168.64,303.79 166.32,288.11 165.69,285.36" /><polygon fill="#3bea8b" points="373.85,222.46 392.02,244.62 394.05,244.01 375.85,222.00" /><polygon fill="#eabea0" points="206.51,246.06 203.15,229.14 201.94,232.10 205.19,249.06" /><polygon fill="#d14730" points="454.85,200.14 453.61,199.31 448.52,198.31 449.78,199.13" /><polygon fill="#2ddd9a" points="383.31,141.05 400.26,154.66 403.04,155.07 386.07,141.57" /><polygon fill="#c88717" points="161.70,358.98 166.56,359.46 164.58,358.01 159.59,357.49" /><polygon fill="#f2ac5f" points="298.25,335.93 299.14,334.78 294.90,330.15 294.02,331.34" /><polygon fill="#b1630d" points="494.14,153.03 493.63,150.65 486.91,152.36 487.52,154.63" /><polygon fill="#cce48f" points="296.45,265.34 281.82,236.36 279.90,238.14 294.29,267.21" /><polygon fill="#c15d18" points="517.20,111.49 517.01,115.38 528.38,114.00 528.84,109.91" /><polygon fill="#1ec350" points="452.47,195.20 453.61,199.31 454.85,200.14 453.74,196.09" /><polygon fill="#39e5a0" points="377.21,140.46 363.36,130.15 360.12,130.00 373.89,140.40" /><polygon fill="#fa9f91" points="211.77,309.49 217.39,327.87 217.45,325.99 211.77,307.47" /><polygon fill="#2ad85f" points="414.07,262.44 415.51,262.12 413.21,256.32 411.73,256.61" /><polygon fill="#64fb8f" points="355.03,228.93 335.13,203.30 332.68,204.27 352.39,230.08" /><polygon fill="#f6a996" points="206.70,281.11 206.35,283.51 211.99,305.31 212.42,303.02" /><polygon fill="#e63e5b" points="479.76,96.45 490.43,102.05 489.45,98.58 478.61,92.96" /><polygon fill="#df3162" points="442.68,130.91 440.50,129.24 427.26,120.27 429.53,121.99" /><polygon fill="#dfc8ab" points="205.25,213.18 206.20,222.98 208.04,219.79 206.99,210.09" /><polygon fill="#e8c88b" points="292.53,307.28 294.04,305.66 281.85,279.66 280.49,281.30" /><polygon fill="#cac2cf" points="212.08,200.64 210.02,203.76 208.92,206.93 211.04,203.73" /><polygon fill="#096657" points="169.52,306.24 168.64,303.79 169.43,320.75 170.34,323.07" /><polygon fill="#f2b782" points="297.02,327.56 288.68,311.79 287.63,313.18 295.90,328.89" /><polygon fill="#c8e78f" points="283.82,234.57 281.82,236.36 296.45,265.34 298.69,263.46" /><polygon fill="#617e04" points="113.09,372.01 105.63,378.04 109.88,379.26 117.02,373.32" /><polygon fill="#3fed8b" points="389.88,245.30 392.02,244.62 373.85,222.46 371.76,223.00" /><polygon fill="#47e9ab" points="341.21,125.28 349.47,130.46 353.17,130.15 344.79,125.03" /><polygon fill="#40a417" points="495.33,145.89 493.63,150.65 494.14,153.03 495.83,148.41" /><polygon fill="#1b7232" points="172.03,342.18 170.54,340.39 167.40,351.02 169.00,352.71" /><polygon fill="#1ed091" points="427.28,171.60 441.52,184.79 443.30,185.51 429.15,172.44" /><polygon fill="#fc9b84" points="222.08,338.65 217.39,327.87 217.53,329.61 222.18,340.28" /><polygon fill="#69fc8f" points="332.68,204.27 330.19,205.31 349.71,231.30 352.39,230.08" /><polygon fill="#58dbcf" points="334.19,125.30 330.46,125.84 333.66,126.25 337.50,125.69" /><polygon fill="#25d696" points="407.98,156.32 405.61,155.63 422.88,170.32 425.19,170.89" /><polygon fill="#2fe282" points="410.13,256.98 399.56,242.69 397.83,243.05 408.42,257.44" /><polygon fill="#1a7632" points="116.09,360.55 119.50,362.25 123.64,349.57 120.47,347.68" /><polygon fill="#02697a" points="119.32,319.70 116.39,310.96 113.92,308.08 116.88,316.96" /><polygon fill="#0d6b4b" points="169.31,338.40 170.54,340.39 171.50,325.19 170.34,323.07" /><polygon fill="#f0b15f" points="294.90,330.15 299.14,334.78 300.15,333.57 295.90,328.89" /><polygon fill="#c4ea8f" points="301.01,261.57 285.89,232.78 283.82,234.57 298.69,263.46" /><polygon fill="#e03657" points="442.68,130.91 444.57,132.72 459.41,140.78 457.64,138.99" /><polygon fill="#f0b69a" points="208.05,275.93 209.06,273.16 204.08,251.96 203.18,254.76" /><polygon fill="#6efd8f" points="349.71,231.30 330.19,205.31 327.68,206.42 346.99,232.58" /><polygon fill="#1acc84" points="452.47,195.20 444.85,186.36 443.30,185.51 450.99,194.44" /><polygon fill="#e5cc8b" points="281.85,279.66 294.04,305.66 295.67,304.00 283.33,277.98" /><polygon fill="#2edc5f" points="410.13,256.98 412.51,262.84 414.07,262.44 411.73,256.61" /><polygon fill="#e7c2a0" points="204.58,226.10 203.15,229.14 206.51,246.06 208.06,242.97" /><polygon fill="#1e6a30" points="226.64,336.46 225.32,341.49 225.38,343.08 226.68,338.06" /><polygon fill="#d54932" points="475.04,148.44 476.07,150.52 486.91,152.36 486.01,150.21" /><polygon fill="#a58206" points="109.88,379.26 105.63,378.04 98.41,379.56 102.94,380.78" /><polygon fill="#bfed8f" points="288.03,231.00 285.89,232.78 301.01,261.57 303.40,259.67" /><polygon fill="#44ef8b" points="369.59,223.61 387.65,246.07 389.88,245.30 371.76,223.00" /><polygon fill="#f0bc82" points="289.84,310.34 288.68,311.79 297.02,327.56 298.26,326.18" /><polygon fill="#30e09a" points="397.28,154.41 400.26,154.66 383.31,141.05 380.35,140.69" /><polygon fill="#c7c5cf" points="213.36,200.48 214.32,197.49 212.08,200.64 211.04,203.73" /><polygon fill="#73fd8f" points="327.68,206.42 325.14,207.60 344.24,233.93 346.99,232.58" /><polygon fill="#9b7104" points="528.38,114.00 536.89,110.08 537.56,105.74 528.84,109.91" /><polygon fill="#dccbab" points="208.04,219.79 210.08,216.54 208.92,206.93 206.99,210.09" /><polygon fill="#df3d4b" points="475.04,148.44 473.71,146.50 459.41,140.78 460.89,142.71" /><polygon fill="#3de7a0" points="360.12,130.00 356.73,130.00 370.38,140.48 373.89,140.40" /><polygon fill="#d74c32" points="517.20,111.49 517.05,107.71 503.50,106.10 503.91,109.76" /><polygon fill="#e8377a" points="477.10,89.61 470.36,83.07 471.97,86.51 478.61,92.96" /><polygon fill="#33e582" points="397.83,243.05 395.99,243.49 406.61,257.97 408.42,257.44" /><polygon fill="#f39950" points="225.38,343.08 225.32,341.49 222.08,338.65 222.18,340.28" /><polygon fill="#5bdccf" points="333.66,126.25 330.46,125.84 326.62,126.53 329.70,126.97" /><polygon fill="#bbef8f" points="305.87,257.78 290.25,229.23 288.03,231.00 303.40,259.67" /><polygon fill="#0f7047" points="122.45,334.20 119.68,331.87 117.54,345.54 120.47,347.68" /><polygon fill="#cf4330" points="448.52,198.31 453.61,199.31 452.15,198.61 447.04,197.61" /><polygon fill="#78fe8f" points="344.24,233.93 325.14,207.60 322.57,208.83 341.46,235.35" /><polygon fill="#4bebab" points="345.61,130.92 349.47,130.46 341.21,125.28 337.50,125.69" /><polygon fill="#eeb55f" points="300.15,333.57 301.27,332.29 297.02,327.56 295.90,328.89" /><polygon fill="#e2d08b" points="295.67,304.00 297.41,302.29 284.90,276.26 283.33,277.98" /><polygon fill="#b7f18f" points="292.52,227.47 290.25,229.23 305.87,257.78 308.40,255.89" /><polygon fill="#f4ad96" points="213.08,300.58 207.27,278.58 206.70,281.11 212.42,303.02" /><polygon fill="#f8a491" points="217.45,325.99 217.74,323.96 211.99,305.31 211.77,307.47" /><polygon fill="#7dfe8f" points="322.57,208.83 320.00,210.13 338.65,236.82 341.46,235.35" /><polygon fill="#21c750" points="452.15,198.61 453.61,199.31 452.47,195.20 450.99,194.44" /><polygon fill="#48f28b" points="385.34,246.91 387.65,246.07 369.59,223.61 367.33,224.30" /><polygon fill="#47780d" points="167.40,351.02 162.85,356.35 164.58,358.01 169.00,352.71" /><polygon fill="#31df5f" points="410.84,263.32 412.51,262.84 410.13,256.98 408.42,257.44" /><polygon fill="#5e9106" points="537.56,105.74 536.89,110.08 541.31,104.42 542.09,99.83" /><polygon fill="#b2f38f" points="310.98,254.02 294.84,225.73 292.52,227.47 308.40,255.89" /><polygon fill="#82fe8f" points="338.65,236.82 320.00,210.13 317.42,211.48 335.84,238.35" /><polygon fill="#edc082" points="299.62,324.73 291.13,308.84 289.84,310.34 298.26,326.18" /><polygon fill="#c5c7cf" points="216.74,194.30 214.32,197.49 213.36,200.48 215.86,197.20" /><polygon fill="#29da96" points="422.88,170.32 405.61,155.63 403.04,155.07 420.34,169.89" /><polygon fill="#aef58f" points="297.22,224.00 294.84,225.73 310.98,254.02 313.62,252.16" /><polygon fill="#87fe8f" points="317.42,211.48 314.84,212.89 333.02,239.93 335.84,238.35" /><polygon fill="#e04247" points="489.45,98.58 490.43,102.05 503.50,106.10 502.75,102.56" /><polygon fill="#21d391" points="439.51,184.20 441.52,184.79 427.28,171.60 425.19,170.89" /><polygon fill="#37e882" points="406.61,257.97 395.99,243.49 394.05,244.01 404.69,258.58" /><polygon fill="#e5c6a0" points="209.82,239.78 206.20,222.98 204.58,226.10 208.06,242.97" /><polygon fill="#edba9a" points="204.08,251.96 209.06,273.16 210.29,270.27 205.19,249.06" /><polygon fill="#fba084" points="217.45,325.99 217.39,327.87 222.08,338.65 222.21,336.87" /><polygon fill="#076a5b" points="117.18,329.28 119.68,331.87 119.32,319.70 116.88,316.96" /><polygon fill="#a9f78f" points="316.30,250.31 299.65,222.31 297.22,224.00 313.62,252.16" /><polygon fill="#d9cfab" points="208.92,206.93 210.08,216.54 212.33,213.23 211.04,203.73" /><polygon fill="#8cfd8f" points="333.02,239.93 314.84,212.89 312.26,214.35 330.19,241.56" /><polygon fill="#5fdecf" points="326.62,126.53 322.67,127.37 325.63,127.84 329.70,126.97" /><polygon fill="#ded48b" points="284.90,276.26 297.41,302.29 299.26,300.54 286.58,274.51" /><polygon fill="#367818" points="113.09,372.01 119.50,362.25 116.09,360.55 109.38,370.44" /><polygon fill="#a4f98f" points="302.11,220.64 299.65,222.31 316.30,250.31 319.03,248.50" /><polygon fill="#91fd8f" points="312.26,214.35 309.69,215.86 327.38,243.24 330.19,241.56" /><polygon fill="#c88a17" points="164.58,358.01 162.85,356.35 157.73,355.78 159.59,357.49" /><polygon fill="#9ffa8f" points="321.79,246.71 304.61,219.01 302.11,220.64 319.03,248.50" /><polygon fill="#0a6157" points="169.43,320.75 168.64,303.79 168.02,301.15 168.79,318.23" /><polygon fill="#96fc8f" points="327.38,243.24 309.69,215.86 307.14,217.42 324.57,244.95" /><polygon fill="#9bfb8f" points="307.14,217.42 304.61,219.01 321.79,246.71 324.57,244.95" /><polygon fill="#b0610d" points="486.91,152.36 493.63,150.65 492.81,148.39 486.01,150.21" /><polygon fill="#ecba5f" points="297.02,327.56 301.27,332.29 302.51,330.95 298.26,326.18" /><polygon fill="#4df48b" points="365.00,225.08 382.93,247.84 385.34,246.91 367.33,224.30" /><polygon fill="#41eaa0" points="370.38,140.48 356.73,130.00 353.17,130.15 366.70,140.73" /><polygon fill="#50edab" points="333.66,126.25 341.62,131.55 345.61,130.92 337.50,125.69" /><polygon fill="#34e39a" points="377.21,140.46 394.09,154.30 397.28,154.41 380.35,140.69" /><polygon fill="#1dd084" points="443.30,185.51 441.52,184.79 449.28,193.82 450.99,194.44" /><polygon fill="#35e25f" points="406.61,257.97 409.07,263.88 410.84,263.32 408.42,257.44" /><polygon fill="#1f6630" points="225.48,339.77 225.32,341.49 226.64,336.46 226.81,334.72" /><polygon fill="#ebc482" points="292.53,307.28 291.13,308.84 299.62,324.73 301.09,323.22" /><polygon fill="#1c6e32" points="167.40,351.02 170.54,340.39 169.31,338.40 166.05,349.12" /><polygon fill="#c2cacf" points="218.55,193.89 219.35,191.10 216.74,194.30 215.86,197.20" /><polygon fill="#e43a5b" points="489.45,98.58 488.11,95.23 477.10,89.61 478.61,92.96" /><polygon fill="#dbd78b" points="299.26,300.54 301.22,298.75 288.36,272.72 286.58,274.51" /><polygon fill="#dd3357" points="455.58,137.36 440.50,129.24 442.68,130.91 457.64,138.99" /><polygon fill="#0e674b" points="169.43,320.75 168.33,336.21 169.31,338.40 170.34,323.07" /><polygon fill="#3beb82" points="394.05,244.01 392.02,244.62 402.66,259.28 404.69,258.58" /><polygon fill="#42a717" points="492.81,148.39 493.63,150.65 495.33,145.89 494.52,143.51" /><polygon fill="#51f68b" points="380.45,248.84 382.93,247.84 365.00,225.08 362.61,225.93" /><polygon fill="#63dfcf" points="325.63,127.84 322.67,127.37 318.63,128.36 321.46,128.86" /><polygon fill="#f29d50" points="222.08,338.65 225.32,341.49 225.48,339.77 222.21,336.87" /><polygon fill="#bf5a18" points="528.94,105.91 517.05,107.71 517.20,111.49 528.84,109.91" /><polygon fill="#cc4030" points="452.15,198.61 450.47,198.04 445.35,197.05 447.04,197.61" /><polygon fill="#d6d2ab" points="212.33,213.23 214.78,209.87 213.36,200.48 211.04,203.73" /><polygon fill="#f2b296" points="208.05,275.93 207.27,278.58 213.08,300.58 213.97,298.01" /><polygon fill="#eabe5f" points="302.51,330.95 303.87,329.55 299.62,324.73 298.26,326.18" /><polygon fill="#e2caa0" points="208.04,219.79 206.20,222.98 209.82,239.78 211.81,236.51" /><polygon fill="#03647a" points="113.92,308.08 111.73,304.93 114.72,313.94 116.88,316.96" /><polygon fill="#f7a991" points="211.99,305.31 217.74,323.96 218.26,321.79 212.42,303.02" /><polygon fill="#d34532" points="484.80,148.21 473.71,146.50 475.04,148.44 486.01,150.21" /><polygon fill="#54efab" points="337.50,132.34 341.62,131.55 333.66,126.25 329.70,126.97" /><polygon fill="#39e55f" points="407.20,264.52 409.07,263.88 406.61,257.97 404.69,258.58" /><polygon fill="#dc394b" points="459.41,140.78 473.71,146.50 472.08,144.71 457.64,138.99" /><polygon fill="#d7db8b" points="288.36,272.72 301.22,298.75 303.28,296.92 290.25,270.91" /><polygon fill="#24cb50" points="449.28,193.82 450.47,198.04 452.15,198.61 450.99,194.44" /><polygon fill="#e8c882" points="302.68,321.66 294.04,305.66 292.53,307.28 301.09,323.22" /><polygon fill="#1b7232" points="117.54,345.54 112.93,358.57 116.09,360.55 120.47,347.68" /><polygon fill="#ebbf9a" points="210.29,270.27 211.76,267.27 206.51,246.06 205.19,249.06" /><polygon fill="#2cdd96" points="403.04,155.07 400.26,154.66 417.58,169.62 420.34,169.89" /><polygon fill="#45eca0" points="353.17,130.15 349.47,130.46 362.85,141.15 366.70,140.73" /><polygon fill="#617c04" points="101.60,376.55 105.63,378.04 113.09,372.01 109.38,370.44" /><polygon fill="#56f78b" points="360.14,226.85 377.89,249.92 380.45,248.84 362.61,225.93" /><polygon fill="#bfcccf" points="222.12,187.87 219.35,191.10 218.55,193.89 221.43,190.56" /><polygon fill="#3fed82" points="402.66,259.28 392.02,244.62 389.88,245.30 400.54,260.05" /><polygon fill="#24d791" points="422.88,170.32 437.27,183.76 439.51,184.20 425.19,170.89" /><polygon fill="#66e0cf" points="318.63,128.36 314.50,129.50 317.19,130.05 321.46,128.86" /><polygon fill="#38e69a" points="390.69,154.36 394.09,154.30 377.21,140.46 373.89,140.40" /><polygon fill="#f9a484" points="222.56,334.95 217.74,323.96 217.45,325.99 222.21,336.87" /><polygon fill="#e5337a" points="468.38,79.76 470.36,83.07 477.10,89.61 475.23,86.39" /><polygon fill="#d4de8b" points="303.28,296.92 305.44,295.06 292.22,269.07 290.25,270.91" /><polygon fill="#e7c25f" points="299.62,324.73 303.87,329.55 305.35,328.10 301.09,323.22" /><polygon fill="#d2d6ab" points="213.36,200.48 214.78,209.87 217.43,206.46 215.86,197.20" /><polygon fill="#5bf98b" points="375.26,251.08 377.89,249.92 360.14,226.85 357.61,227.85" /><polygon fill="#e5cc82" points="295.67,304.00 294.04,305.66 302.68,321.66 304.39,320.04" /><polygon fill="#3de75f" points="402.66,259.28 405.22,265.23 407.20,264.52 404.69,258.58" /><polygon fill="#d54932" points="503.50,106.10 517.05,107.71 516.55,104.03 502.75,102.56" /><polygon fill="#47750d" points="161.37,354.47 162.85,356.35 167.40,351.02 166.05,349.12" /><polygon fill="#0f6b47" points="117.54,345.54 119.68,331.87 117.18,329.28 114.89,343.12" /><polygon fill="#58f1ab" points="325.63,127.84 333.25,133.29 337.50,132.34 329.70,126.97" /><polygon fill="#20d484" points="449.28,193.82 441.52,184.79 439.51,184.20 447.33,193.33" /><polygon fill="#bccfcf" points="224.48,187.23 225.07,184.64 222.12,187.87 221.43,190.56" /><polygon fill="#a58306" points="98.41,379.56 105.63,378.04 101.60,376.55 94.10,378.06" /><polygon fill="#206330" points="227.20,332.85 225.87,337.89 225.48,339.77 226.81,334.72" /><polygon fill="#43f082" points="389.88,245.30 387.65,246.07 398.32,260.91 400.54,260.05" /><polygon fill="#9a7004" points="537.56,105.74 537.87,101.49 528.94,105.91 528.84,109.91" /><polygon fill="#dfcea0" points="214.02,233.17 210.08,216.54 208.04,219.79 211.81,236.51" /><polygon fill="#0c5c57" points="168.02,301.15 167.66,298.33 168.42,315.51 168.79,318.23" /><polygon fill="#6ae1cf" points="317.19,130.05 314.50,129.50 310.29,130.79 312.84,131.39" /><polygon fill="#d0e28b" points="292.22,269.07 305.44,295.06 307.69,293.17 294.29,267.21" /><polygon fill="#5ffa8b" points="355.03,228.93 372.56,252.31 375.26,251.08 357.61,227.85" /><polygon fill="#f0b696" points="215.10,295.31 209.06,273.16 208.05,275.93 213.97,298.01" /><polygon fill="#4aefa0" points="362.85,141.15 349.47,130.46 345.61,130.92 358.84,141.73" /><polygon fill="#f1a250" points="225.48,339.77 225.87,337.89 222.56,334.95 222.21,336.87" /><polygon fill="#ca3d30" points="445.35,197.05 450.47,198.04 448.56,197.61 443.43,196.62" /><polygon fill="#e5c65f" points="305.35,328.10 306.93,326.59 302.68,321.66 301.09,323.22" /><polygon fill="#e8c39a" points="206.51,246.06 211.76,267.27 213.46,264.16 208.06,242.97" /><polygon fill="#c88c17" points="157.73,355.78 162.85,356.35 161.37,354.47 156.13,353.86" /><polygon fill="#ae5f0d" points="492.81,148.39 491.68,146.29 484.80,148.21 486.01,150.21" /><polygon fill="#e2d082" points="306.21,318.38 297.41,302.29 295.67,304.00 304.39,320.04" /><polygon fill="#cfd9ab" points="217.43,206.46 220.28,203.03 218.55,193.89 215.86,197.20" /><polygon fill="#08655b" points="114.72,313.94 114.96,326.42 117.18,329.28 116.88,316.96" /><polygon fill="#dd3e47" points="501.63,99.16 488.11,95.23 489.45,98.58 502.75,102.56" /><polygon fill="#f5ae91" points="218.26,321.79 219.02,319.47 213.08,300.58 212.42,303.02" /><polygon fill="#41ea5f" points="403.15,266.03 405.22,265.23 402.66,259.28 400.54,260.05" /><polygon fill="#b8d1cf" points="228.18,181.42 225.07,184.64 224.48,187.23 227.70,183.90" /><polygon fill="#da2f57" points="438.04,127.73 440.50,129.24 455.58,137.36 453.21,135.89" /><polygon fill="#cce58b" points="307.69,293.17 310.04,291.25 296.45,265.34 294.29,267.21" /><polygon fill="#30e096" points="417.58,169.62 400.26,154.66 397.28,154.41 414.60,169.51" /><polygon fill="#48f282" points="398.32,260.91 387.65,246.07 385.34,246.91 396.01,261.84" /><polygon fill="#64fb8b" points="369.80,253.61 372.56,252.31 355.03,228.93 352.39,230.08" /><polygon fill="#0f624b" points="167.64,333.80 168.33,336.21 169.43,320.75 168.79,318.23" /><polygon fill="#5df2ab" points="328.89,134.41 333.25,133.29 325.63,127.84 321.46,128.86" /><polygon fill="#6ee2cf" points="310.29,130.79 306.02,132.22 308.42,132.88 312.84,131.39" /><polygon fill="#1c6a32" points="169.31,338.40 168.33,336.21 164.98,347.00 166.05,349.12" /><polygon fill="#3ce89a" points="370.38,140.48 387.10,154.59 390.69,154.36 373.89,140.40" /><polygon fill="#5f9306" points="542.52,95.32 537.87,101.49 537.56,105.74 542.09,99.83" /><polygon fill="#27ce50" points="448.56,197.61 450.47,198.04 449.28,193.82 447.33,193.33" /><polygon fill="#28db91" points="434.80,183.47 437.27,183.76 422.88,170.32 420.34,169.89" /><polygon fill="#367518" points="116.09,360.55 112.93,358.57 105.92,368.60 109.38,370.44" /><polygon fill="#c8e88b" points="296.45,265.34 310.04,291.25 312.48,289.32 298.69,263.46" /><polygon fill="#dcd1a0" points="212.33,213.23 210.08,216.54 214.02,233.17 216.45,229.75" /><polygon fill="#43a917" points="493.40,141.27 491.68,146.29 492.81,148.39 494.52,143.51" /><polygon fill="#e2ca5f" points="302.68,321.66 306.93,326.59 308.63,325.02 304.39,320.04" /><polygon fill="#69fc8b" points="349.71,231.30 366.99,254.98 369.80,253.61 352.39,230.08" /><polygon fill="#f8a984" points="218.26,321.79 217.74,323.96 222.56,334.95 223.14,332.88" /><polygon fill="#dfd482" points="299.26,300.54 297.41,302.29 306.21,318.38 308.14,316.66" /><polygon fill="#b5d3cf" points="231.09,180.57 231.45,178.20 228.18,181.42 227.70,183.90" /><polygon fill="#e1365b" points="477.10,89.61 488.11,95.23 486.40,92.03 475.23,86.39" /><polygon fill="#d9364b" points="472.08,144.71 470.13,143.08 455.58,137.36 457.64,138.99" /><polygon fill="#45ec5f" points="398.32,260.91 400.98,266.90 403.15,266.03 400.54,260.05" /><polygon fill="#4ef1a0" points="345.61,130.92 341.62,131.55 354.67,142.48 358.84,141.73" /><polygon fill="#d04232" points="472.08,144.71 473.71,146.50 484.80,148.21 483.28,146.36" /><polygon fill="#cbdcab" points="218.55,193.89 220.28,203.03 223.32,199.57 221.43,190.56" /><polygon fill="#72e2cf" points="308.42,132.88 306.02,132.22 301.69,133.81 303.94,134.53" /><polygon fill="#4cf482" points="385.34,246.91 382.93,247.84 393.60,262.86 396.01,261.84" /><polygon fill="#c4ea8b" points="312.48,289.32 314.99,287.37 301.01,261.57 298.69,263.46" /><polygon fill="#61f3ab" points="317.19,130.05 324.43,135.69 328.89,134.41 321.46,128.86" /><polygon fill="#6efd8b" points="364.13,256.42 366.99,254.98 349.71,231.30 346.99,232.58" /><polygon fill="#24d884" points="439.51,184.20 437.27,183.76 445.16,193.00 447.33,193.33" /><polygon fill="#045f7a" points="114.72,313.94 111.73,304.93 109.84,301.50 112.87,310.65" /><polygon fill="#e6c79a" points="213.46,264.16 215.40,260.94 209.82,239.78 208.06,242.97" /><polygon fill="#eebb96" points="210.29,270.27 209.06,273.16 215.10,295.31 216.48,292.48" /><polygon fill="#b2d5cf" points="234.87,175.01 231.45,178.20 231.09,180.57 234.63,177.27" /><polygon fill="#be5818" points="516.55,104.03 517.05,107.71 528.94,105.91 528.69,102.02" /><polygon fill="#c0ed8b" points="301.01,261.57 314.99,287.37 317.59,285.41 303.40,259.67" /><polygon fill="#dfce5f" points="308.63,325.02 310.44,323.41 306.21,318.38 304.39,320.04" /><polygon fill="#dbd882" points="310.18,314.90 301.22,298.75 299.26,300.54 308.14,316.66" /><polygon fill="#76e3cf" points="301.69,133.81 297.32,135.54 299.42,136.32 303.94,134.53" /><polygon fill="#73fe8b" points="344.24,233.93 361.23,257.92 364.13,256.42 346.99,232.58" /><polygon fill="#51f682" points="393.60,262.86 382.93,247.84 380.45,248.84 391.11,263.95" /><polygon fill="#4aee5f" points="398.72,267.84 400.98,266.90 398.32,260.91 396.01,261.84" /><polygon fill="#40eb9a" points="383.31,154.98 387.10,154.59 370.38,140.48 366.70,140.73" /><polygon fill="#efa650" points="222.56,334.95 225.87,337.89 226.49,335.88 223.14,332.88" /><polygon fill="#1c6e32" points="110.05,356.31 112.93,358.57 117.54,345.54 114.89,343.12" /><polygon fill="#d8d5a0" points="219.10,226.28 214.78,209.87 212.33,213.23 216.45,229.75" /><polygon fill="#c8dfab" points="223.32,199.57 226.55,196.09 224.48,187.23 221.43,190.56" /><polygon fill="#34e396" points="397.28,154.41 394.09,154.30 411.40,169.55 414.60,169.51" /><polygon fill="#bbef8b" points="317.59,285.41 320.25,283.44 305.87,257.78 303.40,259.67" /><polygon fill="#f3b291" points="213.08,300.58 219.02,319.47 220.01,317.01 213.97,298.01" /><polygon fill="#78fe8b" points="358.29,259.48 361.23,257.92 344.24,233.93 341.46,235.35" /><polygon fill="#aed7cf" points="238.33,173.99 238.43,171.84 234.87,175.01 234.63,177.27" /><polygon fill="#66f4ab" points="319.87,137.13 324.43,135.69 317.19,130.05 312.84,131.39" /><polygon fill="#48730d" points="164.98,347.00 160.17,352.37 161.37,354.47 166.05,349.12" /><polygon fill="#e22f7a" points="472.97,83.33 466.02,76.61 468.38,79.76 475.23,86.39" /><polygon fill="#53f2a0" points="354.67,142.48 341.62,131.55 337.50,132.34 350.35,143.40" /><polygon fill="#7ae3cf" points="299.42,136.32 297.32,135.54 292.92,137.40 294.86,138.26" /><polygon fill="#b7f28b" points="305.87,257.78 320.25,283.44 322.98,281.48 308.40,255.89" /><polygon fill="#617b04" points="105.92,368.60 97.82,374.77 101.60,376.55 109.38,370.44" /><polygon fill="#d8db82" points="303.28,296.92 301.22,298.75 310.18,314.90 312.32,313.10" /><polygon fill="#2ad250" points="445.16,193.00 446.41,197.32 448.56,197.61 447.33,193.33" /><polygon fill="#7dfe8b" points="338.65,236.82 355.33,261.10 358.29,259.48 341.46,235.35" /><polygon fill="#dcd15f" points="306.21,318.38 310.44,323.41 312.36,321.75 308.14,316.66" /><polygon fill="#2cde91" points="417.58,169.62 432.09,183.34 434.80,183.47 420.34,169.89" /><polygon fill="#56f882" points="380.45,248.84 377.89,249.92 388.54,265.11 391.11,263.95" /><polygon fill="#b2f48b" points="322.98,281.48 325.77,279.51 310.98,254.02 308.40,255.89" /><polygon fill="#abd9cf" points="242.12,168.72 238.43,171.84 238.33,173.99 242.16,170.75" /><polygon fill="#fa9a68" points="154.82,351.70 149.87,344.58 151.28,346.87 156.13,353.86" /><polygon fill="#4ef05f" points="393.60,262.86 396.36,268.87 398.72,267.84 396.01,261.84" /><polygon fill="#106747" points="117.18,329.28 114.96,326.42 112.53,340.41 114.89,343.12" /><polygon fill="#82fe8b" points="352.34,262.77 355.33,261.10 338.65,236.82 335.84,238.35" /><polygon fill="#7ee3cf" points="292.92,137.40 288.49,139.41 290.27,140.35 294.86,138.26" /><polygon fill="#c4e2ab" points="224.48,187.23 226.55,196.09 229.97,192.61 227.70,183.90" /><polygon fill="#d34532" points="516.55,104.03 515.67,100.49 501.63,99.16 502.75,102.56" /><polygon fill="#f6ae84" points="223.96,330.66 219.02,319.47 218.26,321.79 223.14,332.88" /><polygon fill="#aef68b" points="310.98,254.02 325.77,279.51 328.61,277.55 313.62,252.16" /><polygon fill="#ad5d0d" points="484.80,148.21 491.68,146.29 490.22,144.33 483.28,146.36" /><polygon fill="#87fe8b" points="333.02,239.93 349.35,264.49 352.34,262.77 335.84,238.35" /><polygon fill="#e3cb9a" points="209.82,239.78 215.40,260.94 217.58,257.63 211.81,236.51" /><polygon fill="#6af5ab" points="308.42,132.88 315.24,138.74 319.87,137.13 312.84,131.39" /><polygon fill="#c78f17" points="161.37,354.47 160.17,352.37 154.82,351.70 156.13,353.86" /><polygon fill="#115e4b" points="168.42,315.51 167.23,331.18 167.64,333.80 168.79,318.23" /><polygon fill="#d4df82" points="314.56,311.26 305.44,295.06 303.28,296.92 312.32,313.10" /><polygon fill="#a9f78b" points="328.61,277.55 331.49,275.61 316.30,250.31 313.62,252.16" /><polygon fill="#a7dbcf" points="246.12,167.57 245.94,165.64 242.12,168.72 242.16,170.75" /><polygon fill="#8cfe8b" points="346.34,266.26 349.35,264.49 333.02,239.93 330.19,241.56" /><polygon fill="#d5d8a0" points="217.43,206.46 214.78,209.87 219.10,226.28 221.97,222.75" /><polygon fill="#1d6632" points="164.98,347.00 168.33,336.21 167.64,333.80 164.19,344.66" /><polygon fill="#81e3cf" points="290.27,140.35 288.49,139.41 284.06,141.54 285.68,142.56" /><polygon fill="#a4f98b" points="316.30,250.31 331.49,275.61 334.41,273.68 319.03,248.50" /><polygon fill="#d8d55f" points="312.36,321.75 314.38,320.04 310.18,314.90 308.14,316.66" /><polygon fill="#5bf982" points="388.54,265.11 377.89,249.92 375.26,251.08 385.89,266.35" /><polygon fill="#91fd8b" points="327.38,243.24 343.34,268.06 346.34,266.26 330.19,241.56" /><polygon fill="#ecbf96" points="218.10,289.52 211.76,267.27 210.29,270.27 216.48,292.48" /><polygon fill="#a0fa8b" points="334.41,273.68 337.37,271.78 321.79,246.71 319.03,248.50" /><polygon fill="#96fc8b" points="340.35,269.91 343.34,268.06 327.38,243.24 324.57,244.95" /><polygon fill="#9bfb8b" points="321.79,246.71 337.37,271.78 340.35,269.91 324.57,244.95" /><polygon fill="#9a6f04" points="528.94,105.91 537.87,101.49 537.81,97.34 528.69,102.02" /><polygon fill="#45ed9a" points="362.85,141.15 379.33,155.54 383.31,154.98 366.70,140.73" /><polygon fill="#27db84" points="445.16,193.00 437.27,183.76 434.80,183.47 442.74,192.81" /><polygon fill="#a58506" points="101.60,376.55 97.82,374.77 90.03,376.27 94.10,378.06" /><polygon fill="#57f4a0" points="337.50,132.34 333.25,133.29 345.90,144.49 350.35,143.40" /><polygon fill="#1ccb68" points="493.40,141.27 489.19,133.83 487.65,131.60 491.94,139.19" /><polygon fill="#53f25f" points="393.93,269.96 396.36,268.87 393.60,262.86 391.11,263.95" /><polygon fill="#09615b" points="113.06,323.27 114.96,326.42 114.72,313.94 112.87,310.65" /><polygon fill="#a4dccf" points="249.87,162.62 245.94,165.64 246.12,167.57 250.20,164.44" /><polygon fill="#85e3cf" points="284.06,141.54 279.64,143.81 281.09,144.91 285.68,142.56" /><polygon fill="#da3b47" points="486.40,92.03 488.11,95.23 501.63,99.16 500.12,95.90" /><polygon fill="#c0e4ab" points="229.97,192.61 233.56,189.14 231.09,180.57 227.70,183.90" /><polygon fill="#d6324b" points="455.58,137.36 470.13,143.08 467.87,141.62 453.21,135.89" /><polygon fill="#38e696" points="411.40,169.55 394.09,154.30 390.69,154.36 407.98,169.77" /><polygon fill="#d0e282" points="307.69,293.17 305.44,295.06 314.56,311.26 316.90,309.39" /><polygon fill="#a0decf" points="254.39,161.37 253.91,159.67 249.87,162.62 250.20,164.44" /><polygon fill="#6ff6ab" points="310.53,140.50 315.24,138.74 308.42,132.88 303.94,134.53" /><polygon fill="#45ac17" points="490.22,144.33 491.68,146.29 493.40,141.27 491.94,139.19" /><polygon fill="#89e3cf" points="281.09,144.91 279.64,143.81 275.23,146.19 276.52,147.39" /><polygon fill="#5ffb82" points="375.26,251.08 372.56,252.31 383.17,267.66 385.89,266.35" /><polygon fill="#ce3f32" points="481.43,144.67 470.13,143.08 472.08,144.71 483.28,146.36" /><polygon fill="#eeab50" points="226.49,335.88 227.34,333.71 223.96,330.66 223.14,332.88" /><polygon fill="#f1b791" points="220.01,317.01 221.26,314.41 215.10,295.31 213.97,298.01" /><polygon fill="#9cdfcf" points="258.04,156.79 253.91,159.67 254.39,161.37 258.67,158.39" /><polygon fill="#d5d85f" points="310.18,314.90 314.38,320.04 316.50,318.29 312.32,313.10" /><polygon fill="#8de2cf" points="275.23,146.19 270.85,148.69 271.98,149.98 276.52,147.39" /><polygon fill="#99e0cf" points="263.04,155.49 262.24,153.99 258.04,156.79 258.67,158.39" /><polygon fill="#91e2cf" points="271.98,149.98 270.85,148.69 266.52,151.29 267.48,152.68" /><polygon fill="#95e1cf" points="266.52,151.29 262.24,153.99 263.04,155.49 267.48,152.68" /><polygon fill="#57f45f" points="388.54,265.11 391.41,271.13 393.93,269.96 391.11,263.95" /><polygon fill="#d1dca0" points="225.05,219.18 220.28,203.03 217.43,206.46 221.97,222.75" /><polygon fill="#de325b" points="486.40,92.03 484.30,88.99 472.97,83.33 475.23,86.39" /><polygon fill="#bce7ab" points="231.09,180.57 233.56,189.14 237.31,185.68 234.63,177.27" /><polygon fill="#cce582" points="319.33,307.49 310.04,291.25 307.69,293.17 316.90,309.39" /><polygon fill="#377218" points="105.92,368.60 112.93,358.57 110.05,356.31 102.74,366.45" /><polygon fill="#5f9406" points="537.81,97.34 537.87,101.49 542.52,95.32 542.57,90.90" /><polygon fill="#e0cf9a" points="217.58,257.63 220.00,254.22 214.02,233.17 211.81,236.51" /><polygon fill="#2fe191" points="429.14,183.38 432.09,183.34 417.58,169.62 414.60,169.51" /><polygon fill="#2dd550" points="444.03,197.19 446.41,197.32 445.16,193.00 442.74,192.81" /><polygon fill="#74f7ab" points="299.42,136.32 305.78,142.42 310.53,140.50 303.94,134.53" /><polygon fill="#64fc82" points="383.17,267.66 372.56,252.31 369.80,253.61 380.39,269.05" /><polygon fill="#5cf6a0" points="345.90,144.49 333.25,133.29 328.89,134.41 341.31,145.76" /><polygon fill="#065b7a" points="109.84,301.50 108.27,297.80 111.34,307.08 112.87,310.65" /><polygon fill="#d1dc5f" points="316.50,318.29 318.72,316.50 314.56,311.26 312.32,313.10" /><polygon fill="#49f09a" points="375.17,156.29 379.33,155.54 362.85,141.15 358.84,141.73" /><polygon fill="#5cf55f" points="388.82,272.38 391.41,271.13 388.54,265.11 385.89,266.35" /><polygon fill="#f4b384" points="220.01,317.01 219.02,319.47 223.96,330.66 225.03,328.29" /><polygon fill="#b8e9ab" points="237.31,185.68 241.22,182.25 238.33,173.99 234.63,177.27" /><polygon fill="#c8e882" points="312.48,289.32 310.04,291.25 319.33,307.49 321.84,305.56" /><polygon fill="#e9c396" points="213.46,264.16 211.76,267.27 218.10,289.52 219.97,286.44" /><polygon fill="#69fd82" points="369.80,253.61 366.99,254.98 377.55,270.49 380.39,269.05" /><polygon fill="#78f7ab" points="300.97,144.49 305.78,142.42 299.42,136.32 294.86,138.26" /><polygon fill="#48710d" points="159.27,350.03 160.17,352.37 164.98,347.00 164.19,344.66" /><polygon fill="#cedfa0" points="223.32,199.57 220.28,203.03 225.05,219.18 228.34,215.57" /><polygon fill="#cedf5f" points="314.56,311.26 318.72,316.50 321.03,314.68 316.90,309.39" /><polygon fill="#bc5518" points="528.04,98.26 515.67,100.49 516.55,104.03 528.69,102.02" /><polygon fill="#2bdf84" points="434.80,183.47 432.09,183.34 440.09,192.79 442.74,192.81" /><polygon fill="#3ce996" points="390.69,154.36 387.10,154.59 404.33,170.16 407.98,169.77" /><polygon fill="#c4eb82" points="324.44,303.62 314.99,287.37 312.48,289.32 321.84,305.56" /><polygon fill="#b4ebab" points="238.33,173.99 241.22,182.25 245.28,178.85 242.16,170.75" /><polygon fill="#60f75f" points="383.17,267.66 386.16,273.68 388.82,272.38 385.89,266.35" /><polygon fill="#df2b7a" points="463.26,73.64 466.02,76.61 472.97,83.33 470.32,80.45" /><polygon fill="#60f7a0" points="328.89,134.41 324.43,135.69 336.60,147.19 341.31,145.76" /><polygon fill="#6efe82" points="377.55,270.49 366.99,254.98 364.13,256.42 374.66,272.00" /><polygon fill="#7df7ab" points="290.27,140.35 296.15,146.71 300.97,144.49 294.86,138.26" /><polygon fill="#1c6a32" points="112.53,340.41 107.46,353.76 110.05,356.31 114.89,343.12" /><polygon fill="#12594b" points="167.14,328.34 167.23,331.18 168.42,315.51 168.35,312.59" /><polygon fill="#f99f68" points="148.77,342.05 149.87,344.58 154.82,351.70 153.80,349.30" /><polygon fill="#ddd29a" points="214.02,233.17 220.00,254.22 222.65,250.73 216.45,229.75" /><polygon fill="#efbb91" points="215.10,295.31 221.26,314.41 222.75,311.66 216.48,292.48" /><polygon fill="#c0ed82" points="317.59,285.41 314.99,287.37 324.44,303.62 327.12,301.66" /><polygon fill="#afedab" points="245.28,178.85 249.48,175.50 246.12,167.57 242.16,170.75" /><polygon fill="#ac5b0d" points="490.22,144.33 488.42,142.55 481.43,144.67 483.28,146.36" /><polygon fill="#ecaf50" points="223.96,330.66 227.34,333.71 228.43,331.40 225.03,328.29" /><polygon fill="#cae25f" points="321.03,314.68 323.43,312.83 319.33,307.49 316.90,309.39" /><polygon fill="#73fe82" points="364.13,256.42 361.23,257.92 371.72,273.58 374.66,272.00" /><polygon fill="#82f7ab" points="291.30,149.07 296.15,146.71 290.27,140.35 285.68,142.56" /><polygon fill="#1e6232" points="167.64,333.80 167.23,331.18 163.71,342.09 164.19,344.66" /><polygon fill="#c69217" points="154.82,351.70 160.17,352.37 159.27,350.03 153.80,349.30" /><polygon fill="#65f85f" points="383.44,275.06 386.16,273.68 383.17,267.66 380.39,269.05" /><polygon fill="#4ef29a" points="354.67,142.48 370.83,157.21 375.17,156.29 358.84,141.73" /><polygon fill="#116347" points="112.53,340.41 114.96,326.42 113.06,323.27 110.49,337.42" /><polygon fill="#cae2a0" points="231.83,211.93 226.55,196.09 223.32,199.57 228.34,215.57" /><polygon fill="#abefab" points="246.12,167.57 249.48,175.50 253.80,172.21 250.20,164.44" /><polygon fill="#bcf082" points="329.86,299.68 320.25,283.44 317.59,285.41 327.12,301.66" /><polygon fill="#33e491" points="411.40,169.55 425.96,183.58 429.14,183.38 414.60,169.51" /><polygon fill="#617a04" points="94.32,372.68 97.82,374.77 105.92,368.60 102.74,366.45" /><polygon fill="#87f7ab" points="281.09,144.91 286.46,151.57 291.30,149.07 285.68,142.56" /><polygon fill="#d32f4b" points="467.87,141.62 465.26,140.35 450.53,134.60 453.21,135.89" /><polygon fill="#78ff82" points="371.72,273.58 361.23,257.92 358.29,259.48 368.74,275.20" /><polygon fill="#31d850" points="440.09,192.79 441.42,197.22 444.03,197.19 442.74,192.81" /><polygon fill="#d04232" points="501.63,99.16 515.67,100.49 514.39,97.10 500.12,95.90" /><polygon fill="#65f8a0" points="336.60,147.19 324.43,135.69 319.87,137.13 331.79,148.80" /><polygon fill="#c6e55f" points="319.33,307.49 323.43,312.83 325.92,310.96 321.84,305.56" /><polygon fill="#1fcf68" points="487.65,131.60 485.76,129.55 490.13,137.27 491.94,139.19" /><polygon fill="#a7f1ab" points="253.80,172.21 258.24,168.98 254.39,161.37 250.20,164.44" /><polygon fill="#e6c796" points="222.09,283.23 215.40,260.94 213.46,264.16 219.97,286.44" /><polygon fill="#6af95f" points="377.55,270.49 380.65,276.50 383.44,275.06 380.39,269.05" /><polygon fill="#b7f282" points="322.98,281.48 320.25,283.44 329.86,299.68 332.67,297.70" /><polygon fill="#8bf7ab" points="281.64,154.19 286.46,151.57 281.09,144.91 276.52,147.39" /><polygon fill="#7dff82" points="358.29,259.48 355.33,261.10 365.73,276.89 368.74,275.20" /><polygon fill="#cb3c32" points="467.87,141.62 470.13,143.08 481.43,144.67 479.24,143.17" /><polygon fill="#0b5c5b" points="111.34,307.08 111.49,319.84 113.06,323.27 112.87,310.65" /><polygon fill="#a2f2ab" points="254.39,161.37 258.24,168.98 262.77,165.83 258.67,158.39" /><polygon fill="#f2b784" points="226.35,325.78 221.26,314.41 220.01,317.01 225.03,328.29" /><polygon fill="#47ae17" points="490.13,137.27 488.42,142.55 490.22,144.33 491.94,139.19" /><polygon fill="#90f6ab" points="271.98,149.98 276.84,156.94 281.64,154.19 276.52,147.39" /><polygon fill="#9ef3ab" points="262.77,165.83 267.39,162.77 263.04,155.49 258.67,158.39" /><polygon fill="#b3f482" points="335.53,295.72 325.77,279.51 322.98,281.48 332.67,297.70" /><polygon fill="#95f5ab" points="272.09,159.80 276.84,156.94 271.98,149.98 267.48,152.68" /><polygon fill="#99f4ab" points="263.04,155.49 267.39,162.77 272.09,159.80 267.48,152.68" /><polygon fill="#c2e75f" points="325.92,310.96 328.48,309.06 324.44,303.62 321.84,305.56" /><polygon fill="#82ff82" points="365.73,276.89 355.33,261.10 352.34,262.77 362.70,278.62" /><polygon fill="#40ec96" points="404.33,170.16 387.10,154.59 383.31,154.98 400.47,170.73" /><polygon fill="#d83747" points="498.20,92.80 484.30,88.99 486.40,92.03 500.12,95.90" /><polygon fill="#6ffa5f" points="377.82,278.00 380.65,276.50 377.55,270.49 374.66,272.00" /><polygon fill="#d9d69a" points="222.65,250.73 225.54,247.16 219.10,226.28 216.45,229.75" /><polygon fill="#c6e5a0" points="229.97,192.61 226.55,196.09 231.83,211.93 235.51,208.29" /><polygon fill="#aef682" points="328.61,277.55 325.77,279.51 335.53,295.72 338.45,293.74" /><polygon fill="#87ff82" points="352.34,262.77 349.35,264.49 359.64,280.40 362.70,278.62" /><polygon fill="#2fe284" points="440.09,192.79 432.09,183.34 429.14,183.38 437.19,192.92" /><polygon fill="#996e04" points="537.81,97.34 537.35,93.31 528.04,98.26 528.69,102.02" /><polygon fill="#6af9a0" points="319.87,137.13 315.24,138.74 326.88,150.58 331.79,148.80" /><polygon fill="#a9f882" points="341.40,291.77 331.49,275.61 328.61,277.55 338.45,293.74" /><polygon fill="#8cfe82" points="359.64,280.40 349.35,264.49 346.34,266.26 356.58,282.22" /><polygon fill="#52f49a" points="366.32,158.30 370.83,157.21 354.67,142.48 350.35,143.40" /><polygon fill="#beea5f" points="324.44,303.62 328.48,309.06 331.12,307.15 327.12,301.66" /><polygon fill="#a58606" points="90.03,376.27 97.82,374.77 94.32,372.68 86.24,374.15" /><polygon fill="#a4f982" points="334.41,273.68 331.49,275.61 341.40,291.77 344.40,289.82" /><polygon fill="#91fe82" points="346.34,266.26 343.34,268.06 353.52,284.07 356.58,282.22" /><polygon fill="#73fa5f" points="371.72,273.58 374.94,279.56 377.82,278.00 374.66,272.00" /><polygon fill="#db2e5b" points="472.97,83.33 484.30,88.99 481.78,86.13 470.32,80.45" /><polygon fill="#a0fb82" points="347.42,287.88 337.37,271.78 334.41,273.68 344.40,289.82" /><polygon fill="#96fd82" points="353.52,284.07 343.34,268.06 340.35,269.91 350.46,285.96" /><polygon fill="#ecbf91" points="222.75,311.66 224.51,308.78 218.10,289.52 216.48,292.48" /><polygon fill="#9bfc82" points="340.35,269.91 337.37,271.78 347.42,287.88 350.46,285.96" /><polygon fill="#e8b2b4" points="142.08,275.62 143.81,261.18 143.30,265.32 141.57,279.77" /><polygon fill="#21d48e" points="483.51,127.69 485.76,129.55 474.82,120.24 472.43,118.25" /><polygon fill="#baec5f" points="331.12,307.15 333.82,305.22 329.86,299.68 327.12,301.66" /><polygon fill="#eab350" points="228.43,331.40 229.78,328.95 226.35,325.78 225.03,328.29" /><polygon fill="#c2e7a0" points="239.38,204.64 233.56,189.14 229.97,192.61 235.51,208.29" /><polygon fill="#78fa5f" points="372.02,281.17 374.94,279.56 371.72,273.58 368.74,275.20" /><polygon fill="#37e791" points="422.54,183.95 425.96,183.58 411.40,169.55 407.98,169.77" /><polygon fill="#496f0d" points="163.71,342.09 158.69,347.46 159.27,350.03 164.19,344.66" /><polygon fill="#6ffaa0" points="326.88,150.58 315.24,138.74 310.53,140.50 321.89,152.52" /><polygon fill="#377018" points="110.05,356.31 107.46,353.76 99.87,364.00 102.74,366.45" /><polygon fill="#e3cb96" points="217.58,257.63 215.40,260.94 222.09,283.23 224.47,279.92" /><polygon fill="#b5ee5f" points="329.86,299.68 333.82,305.22 336.59,303.29 332.67,297.70" /><polygon fill="#7dfb5f" points="365.73,276.89 369.07,282.84 372.02,281.17 368.74,275.20" /><polygon fill="#14554b" points="168.59,309.46 167.37,325.28 167.14,328.34 168.35,312.59" /><polygon fill="#34db50" points="438.57,197.40 441.42,197.22 440.09,192.79 437.19,192.92" /><polygon fill="#d6d99a" points="219.10,226.28 225.54,247.16 228.66,243.53 221.97,222.75" /><polygon fill="#36d9b4" points="432.34,96.17 418.57,91.46 414.54,90.18 428.29,94.89" /><polygon fill="#609506" points="542.21,86.60 537.35,93.31 537.81,97.34 542.57,90.90" /><polygon fill="#b1f05f" points="336.59,303.29 339.41,301.35 335.53,295.72 332.67,297.70" /><polygon fill="#44ee96" points="383.31,154.98 379.33,155.54 396.40,171.47 400.47,170.73" /><polygon fill="#82fb5f" points="366.10,284.55 369.07,282.84 365.73,276.89 362.70,278.62" /><polygon fill="#57f59a" points="345.90,144.49 361.65,159.58 366.32,158.30 350.35,143.40" /><polygon fill="#beeaa0" points="237.31,185.68 233.56,189.14 239.38,204.64 243.43,200.99" /><polygon fill="#f0bc84" points="222.75,311.66 221.26,314.41 226.35,325.78 227.92,323.12" /><polygon fill="#acf25f" points="335.53,295.72 339.41,301.35 342.28,299.41 338.45,293.74" /><polygon fill="#f7a468" points="153.11,346.65 147.98,339.27 148.77,342.05 153.80,349.30" /><polygon fill="#205e32" points="163.71,342.09 167.23,331.18 167.14,328.34 163.55,339.28" /><polygon fill="#87fa5f" points="359.64,280.40 363.10,286.30 366.10,284.55 362.70,278.62" /><polygon fill="#aa5a0d" points="481.43,144.67 488.42,142.55 486.27,140.95 479.24,143.17" /><polygon fill="#73faa0" points="310.53,140.50 305.78,142.42 316.84,154.63 321.89,152.52" /><polygon fill="#a8f45f" points="342.28,299.41 345.19,297.48 341.40,291.77 338.45,293.74" /><polygon fill="#8cfa5f" points="360.10,288.09 363.10,286.30 359.64,280.40 356.58,282.22" /><polygon fill="#eeb0a8" points="141.41,283.70 141.60,301.06 141.78,297.21 141.57,279.77" /><polygon fill="#c69517" points="159.27,350.03 158.69,347.46 153.11,346.65 153.80,349.30" /><polygon fill="#a3f55f" points="341.40,291.77 345.19,297.48 348.13,295.56 344.40,289.82" /><polygon fill="#bb5318" points="514.39,97.10 515.67,100.49 528.04,98.26 526.97,94.65" /><polygon fill="#90fa5f" points="353.52,284.07 357.09,289.92 360.10,288.09 356.58,282.22" /><polygon fill="#1d6632" points="105.21,350.90 107.46,353.76 112.53,340.41 110.49,337.42" /><polygon fill="#33e584" points="429.14,183.38 425.96,183.58 434.05,193.23 437.19,192.92" /><polygon fill="#9ff75f" points="348.13,295.56 351.10,293.66 347.42,287.88 344.40,289.82" /><polygon fill="#95f95f" points="354.09,291.78 357.09,289.92 353.52,284.07 350.46,285.96" /><polygon fill="#9af85f" points="347.42,287.88 351.10,293.66 354.09,291.78 350.46,285.96" /><polygon fill="#baeca0" points="247.65,197.37 241.22,182.25 237.31,185.68 243.43,200.99" /><polygon fill="#eac491" points="218.10,289.52 224.51,308.78 226.53,305.76 219.97,286.44" /><polygon fill="#78fba0" points="316.84,154.63 305.78,142.42 300.97,144.49 311.73,156.89" /><polygon fill="#c93932" points="476.69,141.86 465.26,140.35 467.87,141.62 479.24,143.17" /><polygon fill="#d2dd9a" points="228.66,243.53 232.01,239.83 225.05,219.18 221.97,222.75" /><polygon fill="#22d368" points="490.13,137.27 485.76,129.55 483.51,127.69 487.96,135.55" /><polygon fill="#125e47" points="113.06,323.27 111.49,319.84 108.79,334.12 110.49,337.42" /><polygon fill="#e0cf96" points="227.10,276.50 220.00,254.22 217.58,257.63 224.47,279.92" /><polygon fill="#2fdaa8" points="432.34,96.17 447.97,103.94 451.61,105.40 436.04,97.68" /><polygon fill="#e8b750" points="226.35,325.78 229.78,328.95 231.37,326.35 227.92,323.12" /><polygon fill="#5bf79a" points="356.84,161.04 361.65,159.58 345.90,144.49 341.31,145.76" /><polygon fill="#3bea91" points="404.33,170.16 418.89,184.50 422.54,183.95 407.98,169.77" /><polygon fill="#49b017" points="486.27,140.95 488.42,142.55 490.13,137.27 487.96,135.55" /><polygon fill="#b5efa0" points="245.28,178.85 241.22,182.25 247.65,197.37 252.02,193.77" /><polygon fill="#f3ad9d" points="143.65,318.56 141.60,301.06 141.78,304.67 143.80,322.02" /><polygon fill="#7dfba0" points="300.97,144.49 296.15,146.71 306.58,159.31 311.73,156.89" /><polygon fill="#ce3f32" points="514.39,97.10 512.69,93.87 498.20,92.80 500.12,95.90" /><polygon fill="#49f096" points="396.40,171.47 379.33,155.54 375.17,156.29 392.13,172.40" /><polygon fill="#0c575b" points="110.27,316.10 111.49,319.84 111.34,307.08 110.17,303.22" /><polygon fill="#f7a98e" points="144.30,325.23 147.98,339.27 147.53,336.24 143.80,322.02" /><polygon fill="#38de50" points="434.05,193.23 435.47,197.76 438.57,197.40 437.19,192.92" /><polygon fill="#617904" points="99.87,364.00 91.12,370.27 94.32,372.68 102.74,366.45" /><polygon fill="#e6b6b4" points="144.67,256.84 143.81,261.18 142.08,275.62 142.96,271.24" /><polygon fill="#b1f1a0" points="256.54,190.22 249.48,175.50 245.28,178.85 252.02,193.77" /><polygon fill="#d53447" points="481.78,86.13 484.30,88.99 498.20,92.80 495.85,89.89" /><polygon fill="#82fba0" points="306.58,159.31 296.15,146.71 291.30,149.07 301.41,161.88" /><polygon fill="#edc084" points="229.76,320.32 224.51,308.78 222.75,311.66 227.92,323.12" /><polygon fill="#cfe09a" points="225.05,219.18 232.01,239.83 235.59,236.09 228.34,215.57" /><polygon fill="#2ad99d" points="469.66,116.45 454.87,107.08 451.61,105.40 466.51,114.87" /><polygon fill="#acf2a0" points="253.80,172.21 249.48,175.50 256.54,190.22 261.20,186.72" /><polygon fill="#24d78e" points="469.66,116.45 480.88,126.02 483.51,127.69 472.43,118.25" /><polygon fill="#87fba0" points="291.30,149.07 286.46,151.57 296.24,164.58 301.41,161.88" /><polygon fill="#60f89a" points="336.60,147.19 351.88,162.69 356.84,161.04 341.31,145.76" /><polygon fill="#d82b5b" points="481.78,86.13 478.83,83.47 467.24,77.77 470.32,80.45" /><polygon fill="#39dcb4" points="414.54,90.18 410.17,89.13 423.87,93.84 428.29,94.89" /><polygon fill="#4a6d0d" points="158.43,344.64 158.69,347.46 163.71,342.09 163.55,339.28" /><polygon fill="#37e884" points="434.05,193.23 425.96,183.58 422.54,183.95 430.67,193.71" /><polygon fill="#a8f4a0" points="265.97,183.28 258.24,168.98 253.80,172.21 261.20,186.72" /><polygon fill="#e7c891" points="226.53,305.76 228.81,302.61 222.09,283.23 219.97,286.44" /><polygon fill="#ddd396" points="222.65,250.73 220.00,254.22 227.10,276.50 229.98,272.97" /><polygon fill="#8cfaa0" points="296.24,164.58 286.46,151.57 281.64,154.19 291.08,167.42" /><polygon fill="#986d04" points="528.04,98.26 537.35,93.31 536.46,89.42 526.97,94.65" /><polygon fill="#a3f6a0" points="262.77,165.83 258.24,168.98 265.97,183.28 270.84,179.91" /><polygon fill="#90faa0" points="281.64,154.19 276.84,156.94 285.94,170.38 291.08,167.42" /><polygon fill="#9ff7a0" points="275.80,176.64 267.39,162.77 262.77,165.83 270.84,179.91" /><polygon fill="#95f9a0" points="285.94,170.38 276.84,156.94 272.09,159.80 280.84,173.45" /><polygon fill="#4df296" points="375.17,156.29 370.83,157.21 387.65,173.52 392.13,172.40" /><polygon fill="#a58806" points="94.32,372.68 91.12,370.27 82.75,371.71 86.24,374.15" /><polygon fill="#9af8a0" points="272.09,159.80 267.39,162.77 275.80,176.64 280.84,173.45" /><polygon fill="#40ec91" points="415.01,185.23 418.89,184.50 404.33,170.16 400.47,170.73" /><polygon fill="#215b32" points="167.14,328.34 167.37,325.28 163.73,336.25 163.55,339.28" /><polygon fill="#e6bb50" points="231.37,326.35 233.23,323.61 229.76,320.32 227.92,323.12" /><polygon fill="#cbe39a" points="235.59,236.09 239.38,232.31 231.83,211.93 228.34,215.57" /><polygon fill="#a9580d" points="486.27,140.95 483.74,139.55 476.69,141.86 479.24,143.17" /><polygon fill="#ecb4a8" points="141.78,297.21 142.32,293.11 142.08,275.62 141.57,279.77" /><polygon fill="#ea973e" points="82.75,371.71 76.35,367.57 80.03,370.14 86.24,374.15" /><polygon fill="#f6a968" points="147.53,336.24 147.98,339.27 153.11,346.65 152.75,343.76" /><polygon fill="#65f99a" points="346.80,164.50 351.88,162.69 336.60,147.19 331.79,148.80" /><polygon fill="#386d18" points="99.87,364.00 107.46,353.76 105.21,350.90 97.33,361.23" /><polygon fill="#c59717" points="153.11,346.65 158.69,347.46 158.43,344.64 152.75,343.76" /><polygon fill="#3ce150" points="432.14,198.28 435.47,197.76 434.05,193.23 430.67,193.71" /><polygon fill="#c63632" points="462.32,139.27 465.26,140.35 476.69,141.86 473.79,140.76" /><polygon fill="#ebc484" points="226.53,305.76 224.51,308.78 229.76,320.32 231.86,317.38" /><polygon fill="#33dda8" points="443.94,102.71 447.97,103.94 432.34,96.17 428.29,94.89" /><polygon fill="#619606" points="536.46,89.42 537.35,93.31 542.21,86.60 541.41,82.43" /><polygon fill="#dad696" points="233.11,269.36 225.54,247.16 222.65,250.73 229.98,272.97" /><polygon fill="#25d668" points="483.51,127.69 480.88,126.02 485.41,134.02 487.96,135.55" /><polygon fill="#c7e69a" points="231.83,211.93 239.38,232.31 243.38,228.50 235.51,208.29" /><polygon fill="#1e6232" points="108.79,334.12 103.31,347.72 105.21,350.90 110.49,337.42" /><polygon fill="#e4cc91" points="222.09,283.23 228.81,302.61 231.35,299.34 224.47,279.92" /><polygon fill="#e4bab4" points="144.22,266.64 145.88,252.30 144.67,256.84 142.96,271.24" /><polygon fill="#3beb84" points="422.54,183.95 418.89,184.50 427.05,194.38 430.67,193.71" /><polygon fill="#28c23e" points="542.21,86.60 541.28,79.21 540.45,74.82 541.41,82.43" /><polygon fill="#4bb217" points="485.41,134.02 483.74,139.55 486.27,140.95 487.96,135.55" /><polygon fill="#6afa9a" points="326.88,150.58 341.60,166.50 346.80,164.50 331.79,148.80" /><polygon fill="#f1b19d" points="141.78,297.21 141.60,301.06 143.65,318.56 143.86,314.84" /><polygon fill="#52f496" points="387.65,173.52 370.83,157.21 366.32,158.30 382.99,174.82" /><polygon fill="#b95018" points="525.46,91.20 512.69,93.87 514.39,97.10 526.97,94.65" /><polygon fill="#145a47" points="108.79,334.12 111.49,319.84 110.27,316.10 107.47,330.50" /><polygon fill="#f5ae8e" points="147.53,336.24 147.44,332.94 143.65,318.56 143.80,322.02" /><polygon fill="#44ef91" points="396.40,171.47 410.90,186.15 415.01,185.23 400.47,170.73" /><polygon fill="#0e535b" points="109.36,299.07 109.45,312.06 110.27,316.10 110.17,303.22" /><polygon fill="#3ddfb4" points="423.87,93.84 410.17,89.13 405.47,88.31 419.09,93.05" /><polygon fill="#e3bf50" points="229.76,320.32 233.23,323.61 235.35,320.74 231.86,317.38" /><polygon fill="#c3e89a" points="243.38,228.50 247.58,224.68 239.38,204.64 235.51,208.29" /><polygon fill="#2ddc9d" points="451.61,105.40 447.97,103.94 462.97,113.51 466.51,114.87" /><polygon fill="#cb3c32" points="498.20,92.80 512.69,93.87 510.53,90.83 495.85,89.89" /><polygon fill="#6efb9a" points="336.31,168.67 341.60,166.50 326.88,150.58 321.89,152.52" /><polygon fill="#28db8e" points="477.85,124.56 480.88,126.02 469.66,116.45 466.51,114.87" /><polygon fill="#d6da96" points="228.66,243.53 225.54,247.16 233.11,269.36 236.50,265.66" /><polygon fill="#40e350" points="427.05,194.38 428.57,198.98 432.14,198.28 430.67,193.71" /><polygon fill="#d23047" points="493.06,87.18 478.83,83.47 481.78,86.13 495.85,89.89" /><polygon fill="#4a6b0d" points="163.73,336.25 158.53,341.57 158.43,344.64 163.55,339.28" /><polygon fill="#e8c884" points="234.23,314.30 228.81,302.61 226.53,305.76 231.86,317.38" /><polygon fill="#d4275b" points="467.24,77.77 478.83,83.47 475.44,81.03 463.74,75.30" /><polygon fill="#627804" points="88.27,367.53 91.12,370.27 99.87,364.00 97.33,361.23" /><polygon fill="#56f696" points="366.32,158.30 361.65,159.58 378.14,176.31 382.99,174.82" /><polygon fill="#bfeb9a" points="239.38,204.64 247.58,224.68 251.97,220.85 243.43,200.99" /><polygon fill="#235732" points="163.73,336.25 167.37,325.28 167.93,321.99 164.27,332.97" /><polygon fill="#e1d091" points="231.35,299.34 234.17,295.95 227.10,276.50 224.47,279.92" /><polygon fill="#eab9a8" points="142.08,275.62 142.32,293.11 143.25,288.77 142.96,271.24" /><polygon fill="#73fc9a" points="316.84,154.63 330.93,171.00 336.31,168.67 321.89,152.52" /><polygon fill="#3fed84" points="427.05,194.38 418.89,184.50 415.01,185.23 423.19,195.22" /><polygon fill="#a7560d" points="476.69,141.86 483.74,139.55 480.84,138.37 473.79,140.76" /><polygon fill="#48f191" points="406.56,187.26 410.90,186.15 396.40,171.47 392.13,172.40" /><polygon fill="#f4ad68" points="152.75,340.61 147.44,332.94 147.53,336.24 152.75,343.76" /><polygon fill="#baed9a" points="251.97,220.85 256.55,217.03 247.65,197.37 243.43,200.99" /><polygon fill="#c33432" points="470.51,139.87 459.03,138.41 462.32,139.27 473.79,140.76" /><polygon fill="#c49a17" points="158.43,344.64 158.53,341.57 152.75,340.61 152.75,343.76" /><polygon fill="#36e0a8" points="423.87,93.84 439.53,101.73 443.94,102.71 428.29,94.89" /><polygon fill="#78fc9a" points="325.49,173.50 330.93,171.00 316.84,154.63 311.73,156.89" /><polygon fill="#d3dd96" points="240.13,261.89 232.01,239.83 228.66,243.53 236.50,265.66" /><polygon fill="#976c04" points="536.46,89.42 535.11,85.70 525.46,91.20 526.97,94.65" /><polygon fill="#e1beb4" points="147.47,247.56 145.88,252.30 144.22,266.64 145.88,261.83" /><polygon fill="#e1c350" points="235.35,320.74 237.72,317.73 234.23,314.30 231.86,317.38" /><polygon fill="#5bf896" points="378.14,176.31 361.65,159.58 356.84,161.04 373.13,177.98" /><polygon fill="#b6f09a" points="247.65,197.37 256.55,217.03 261.28,213.23 252.02,193.77" /><polygon fill="#29da68" points="485.41,134.02 480.88,126.02 477.85,124.56 482.47,132.71" /><polygon fill="#a48906" points="82.75,371.71 91.12,370.27 88.27,367.53 79.60,368.92" /><polygon fill="#44e650" points="424.77,199.86 428.57,198.98 427.05,194.38 423.19,195.22" /><polygon fill="#efb69d" points="144.47,310.87 142.32,293.11 141.78,297.21 143.86,314.84" /><polygon fill="#7dfc9a" points="306.58,159.31 320.00,176.16 325.49,173.50 311.73,156.89" /><polygon fill="#396a18" points="105.21,350.90 103.31,347.72 95.15,358.12 97.33,361.23" /><polygon fill="#41e1b4" points="405.47,88.31 400.43,87.74 413.95,92.51 419.09,93.05" /><polygon fill="#4db417" points="480.84,138.37 483.74,139.55 485.41,134.02 482.47,132.71" /><polygon fill="#e5cc84" points="231.35,299.34 228.81,302.61 234.23,314.30 236.86,311.10" /><polygon fill="#d0bdcd" points="153.12,234.10 149.43,242.64 151.78,237.53 155.39,229.16" /><polygon fill="#ded391" points="227.10,276.50 234.17,295.95 237.24,292.44 229.98,272.97" /><polygon fill="#e99b3e" points="73.01,364.64 76.35,367.57 82.75,371.71 79.60,368.92" /><polygon fill="#f4b28e" points="143.65,318.56 147.44,332.94 147.73,329.39 143.86,314.84" /><polygon fill="#b1f29a" points="261.28,213.23 266.17,209.46 256.54,190.22 252.02,193.77" /><polygon fill="#82fc9a" points="314.47,178.96 320.00,176.16 306.58,159.31 301.41,161.88" /><polygon fill="#43f084" points="415.01,185.23 410.90,186.15 419.10,196.25 423.19,195.22" /><polygon fill="#4df391" points="387.65,173.52 402.02,188.55 406.56,187.26 392.13,172.40" /><polygon fill="#cfe096" points="235.59,236.09 232.01,239.83 240.13,261.89 243.99,258.05" /><polygon fill="#205e32" points="101.80,344.21 103.31,347.72 108.79,334.12 107.47,330.50" /><polygon fill="#50d9cd" points="380.30,87.02 389.36,87.41 395.06,87.44 385.81,87.05" /><polygon fill="#31df9d" points="462.97,113.51 447.97,103.94 443.94,102.71 459.03,112.38" /><polygon fill="#155647" points="110.27,316.10 109.45,312.06 106.55,326.57 107.47,330.50" /><polygon fill="#adf49a" points="256.54,190.22 266.17,209.46 271.20,205.73 261.20,186.72" /><polygon fill="#60f996" points="356.84,161.04 351.88,162.69 367.96,179.84 373.13,177.98" /><polygon fill="#87fc9a" points="296.24,164.58 308.93,181.91 314.47,178.96 301.41,161.88" /><polygon fill="#104f5b" points="109.03,307.72 109.45,312.06 109.36,299.07 108.96,294.61" /><polygon fill="#629806" points="540.14,78.43 535.11,85.70 536.46,89.42 541.41,82.43" /><polygon fill="#b74e18" points="510.53,90.83 512.69,93.87 525.46,91.20 523.49,87.94" /><polygon fill="#2bde8e" points="462.97,113.51 474.43,123.33 477.85,124.56 466.51,114.87" /><polygon fill="#4b690d" points="159.00,338.26 158.53,341.57 163.73,336.25 164.27,332.97" /><polygon fill="#a8f59a" points="271.20,205.73 276.36,202.06 265.97,183.28 261.20,186.72" /><polygon fill="#dec750" points="234.23,314.30 237.72,317.73 240.37,314.58 236.86,311.10" /><polygon fill="#8cfc9a" points="303.39,184.99 308.93,181.91 296.24,164.58 291.08,167.42" /><polygon fill="#2bc53e" points="540.45,74.82 539.14,70.57 540.14,78.43 541.41,82.43" /><polygon fill="#e8bda8" points="143.25,288.77 144.59,284.19 144.22,266.64 142.96,271.24" /><polygon fill="#245332" points="167.93,321.99 168.85,318.48 165.17,329.45 164.27,332.97" /><polygon fill="#a4f79a" points="265.97,183.28 276.36,202.06 281.62,198.47 270.84,179.91" /><polygon fill="#91fb9a" points="285.94,170.38 297.88,188.20 303.39,184.99 291.08,167.42" /><polygon fill="#c93932" points="510.53,90.83 507.90,88.00 493.06,87.18 495.85,89.89" /><polygon fill="#9ff89a" points="281.62,198.47 286.97,194.95 275.80,176.64 270.84,179.91" /><polygon fill="#95fa9a" points="292.39,191.52 297.88,188.20 285.94,170.38 280.84,173.45" /><polygon fill="#cf2d47" points="475.44,81.03 478.83,83.47 493.06,87.18 489.80,84.70" /><polygon fill="#9af99a" points="275.80,176.64 286.97,194.95 292.39,191.52 280.84,173.45" /><polygon fill="#48e850" points="419.10,196.25 420.73,200.93 424.77,199.86 423.19,195.22" /><polygon fill="#dbd791" points="237.24,292.44 240.58,288.83 233.11,269.36 229.98,272.97" /><polygon fill="#cbe396" points="248.09,254.16 239.38,232.31 235.59,236.09 243.99,258.05" /><polygon fill="#d1245b" points="475.44,81.03 471.59,78.83 459.80,73.06 463.74,75.30" /><polygon fill="#a5550d" points="480.84,138.37 477.55,137.41 470.51,139.87 473.79,140.76" /><polygon fill="#e2d084" points="239.77,307.76 234.17,295.95 231.35,299.34 236.86,311.10" /><polygon fill="#dfc2b4" points="147.94,256.81 149.43,242.64 147.47,247.56 145.88,261.83" /><polygon fill="#65fa96" points="367.96,179.84 351.88,162.69 346.80,164.50 362.64,181.89" /><polygon fill="#3ae3a8" points="434.73,101.01 439.53,101.73 423.87,93.84 419.09,93.05" /><polygon fill="#c03132" points="455.38,137.77 459.03,138.41 470.51,139.87 466.85,139.22" /><polygon fill="#51f591" points="397.26,190.04 402.02,188.55 387.65,173.52 382.99,174.82" /><polygon fill="#f2b268" points="147.73,329.39 147.44,332.94 152.75,340.61 153.13,337.19" /><polygon fill="#48f284" points="419.10,196.25 410.90,186.15 406.56,187.26 414.78,197.47" /><polygon fill="#cec0cd" points="151.78,237.53 154.53,232.26 158.03,224.08 155.39,229.16" /><polygon fill="#c39d17" points="152.75,340.61 158.53,341.57 159.00,338.26 153.13,337.19" /><polygon fill="#45e4b4" points="413.95,92.51 400.43,87.74 395.06,87.44 408.44,92.26" /><polygon fill="#627704" points="95.15,358.12 85.78,364.43 88.27,367.53 97.33,361.23" /><polygon fill="#c7e696" points="243.38,228.50 239.38,232.31 248.09,254.16 252.41,250.22" /><polygon fill="#53dbcd" points="383.34,87.67 389.36,87.41 380.30,87.02 374.50,87.26" /><polygon fill="#edba9d" points="143.25,288.77 142.32,293.11 144.47,310.87 145.48,306.64" /><polygon fill="#dbcb50" points="240.37,314.58 243.28,311.32 239.77,307.76 236.86,311.10" /><polygon fill="#2cdd68" points="477.85,124.56 474.43,123.33 479.13,131.63 482.47,132.71" /><polygon fill="#69fb96" points="346.80,164.50 341.60,166.50 357.19,184.12 362.64,181.89" /><polygon fill="#4fb617" points="479.13,131.63 477.55,137.41 480.84,138.37 482.47,132.71" /><polygon fill="#d7db91" points="233.11,269.36 240.58,288.83 244.18,285.12 236.50,265.66" /><polygon fill="#f1b78e" points="147.73,329.39 148.41,325.57 144.47,310.87 143.86,314.84" /><polygon fill="#4cea50" points="416.47,202.18 420.73,200.93 419.10,196.25 414.78,197.47" /><polygon fill="#dfd484" points="237.24,292.44 234.17,295.95 239.77,307.76 242.94,304.31" /><polygon fill="#56f791" points="378.14,176.31 392.31,191.72 397.26,190.04 382.99,174.82" /><polygon fill="#976b04" points="525.46,91.20 535.11,85.70 533.27,82.16 523.49,87.94" /><polygon fill="#35e29d" points="443.94,102.71 439.53,101.73 454.67,111.52 459.03,112.38" /><polygon fill="#c3e996" points="256.94,246.26 247.58,224.68 243.38,228.50 252.41,250.22" /><polygon fill="#4cf484" points="406.56,187.26 402.02,188.55 410.23,198.87 414.78,197.47" /><polygon fill="#396718" points="95.15,358.12 103.31,347.72 101.80,344.21 93.38,354.66" /><polygon fill="#6efc96" points="357.19,184.12 341.60,166.50 336.31,168.67 351.62,186.52" /><polygon fill="#e5c1a8" points="144.22,266.64 144.59,284.19 146.34,279.38 145.88,261.83" /><polygon fill="#4c670d" points="165.17,329.45 159.86,334.68 159.00,338.26 164.27,332.97" /><polygon fill="#2fe18e" points="470.58,122.36 474.43,123.33 462.97,113.51 459.03,112.38" /><polygon fill="#a48b06" points="88.27,367.53 85.78,364.43 76.83,365.76 79.60,368.92" /><polygon fill="#175247" points="106.55,326.57 109.45,312.06 109.03,307.72 106.05,322.31" /><polygon fill="#dcc6b4" points="151.78,237.53 149.43,242.64 147.94,256.81 150.41,251.59" /><polygon fill="#215a32" points="106.55,326.57 100.71,340.36 101.80,344.21 107.47,330.50" /><polygon fill="#cbc3cd" points="158.03,224.08 154.53,232.26 157.68,226.84 161.04,218.85" /><polygon fill="#d3de91" points="244.18,285.12 248.03,281.32 240.13,261.89 236.50,265.66" /><polygon fill="#d8ce50" points="239.77,307.76 243.28,311.32 246.45,307.93 242.94,304.31" /><polygon fill="#e89f3e" points="76.83,365.76 70.03,361.33 73.01,364.64 79.60,368.92" /><polygon fill="#bfec96" points="251.97,220.85 247.58,224.68 256.94,246.26 261.67,242.27" /><polygon fill="#3ee5a8" points="413.95,92.51 429.53,100.57 434.73,101.01 419.09,93.05" /><polygon fill="#a4530d" points="470.51,139.87 477.55,137.41 473.86,136.69 466.85,139.22" /><polygon fill="#73fc96" points="336.31,168.67 330.93,171.00 345.95,189.10 351.62,186.52" /><polygon fill="#5bf891" points="387.17,193.59 392.31,191.72 378.14,176.31 373.13,177.98" /><polygon fill="#49e6b4" points="395.06,87.44 389.36,87.41 402.57,92.30 408.44,92.26" /><polygon fill="#b54c18" points="521.02,84.89 507.90,88.00 510.53,90.83 523.49,87.94" /><polygon fill="#57dccd" points="368.42,87.78 377.01,88.22 383.34,87.67 374.50,87.26" /><polygon fill="#50ec50" points="410.23,198.87 411.99,203.61 416.47,202.18 414.78,197.47" /><polygon fill="#dbd884" points="246.38,300.74 240.58,288.83 237.24,292.44 242.94,304.31" /><polygon fill="#cb2a47" points="486.05,82.47 471.59,78.83 475.44,81.03 489.80,84.70" /><polygon fill="#639906" points="533.27,82.16 535.11,85.70 540.14,78.43 538.37,74.60" /><polygon fill="#f0b668" points="153.90,333.52 148.41,325.57 147.73,329.39 153.13,337.19" /><polygon fill="#c63632" points="493.06,87.18 507.90,88.00 504.78,85.40 489.80,84.70" /><polygon fill="#51f684" points="410.23,198.87 402.02,188.55 397.26,190.04 405.48,200.47" /><polygon fill="#bbee96" points="266.59,238.29 256.55,217.03 251.97,220.85 261.67,242.27" /><polygon fill="#c19f17" points="159.00,338.26 159.86,334.68 153.90,333.52 153.13,337.19" /><polygon fill="#78fd96" points="345.95,189.10 330.93,171.00 325.49,173.50 340.21,191.84" /><polygon fill="#2ec83e" points="540.14,78.43 539.14,70.57 537.32,66.50 538.37,74.60" /><polygon fill="#ebbe9d" points="146.90,302.14 144.59,284.19 143.25,288.77 145.48,306.64" /><polygon fill="#d0e191" points="240.13,261.89 248.03,281.32 252.13,277.44 243.99,258.05" /><polygon fill="#30e068" points="479.13,131.63 474.43,123.33 470.58,122.36 475.38,130.79" /><polygon fill="#b6f096" points="261.28,213.23 256.55,217.03 266.59,238.29 271.69,234.31" /><polygon fill="#60fa91" points="367.96,179.84 381.85,195.65 387.17,193.59 373.13,177.98" /><polygon fill="#51b817" points="473.86,136.69 477.55,137.41 479.13,131.63 475.38,130.79" /><polygon fill="#d5d250" points="246.45,307.93 249.88,304.44 246.38,300.74 242.94,304.31" /><polygon fill="#7dfd96" points="325.49,173.50 320.00,176.16 334.39,194.74 340.21,191.84" /><polygon fill="#efbb8e" points="144.47,310.87 148.41,325.57 149.51,321.48 145.48,306.64" /><polygon fill="#39e59d" points="454.67,111.52 439.53,101.73 434.73,101.01 449.90,110.93" /><polygon fill="#c9c6cd" points="157.68,226.84 161.23,221.27 164.44,213.50 161.04,218.85" /><polygon fill="#d8db84" points="244.18,285.12 240.58,288.83 246.38,300.74 250.08,297.08" /><polygon fill="#54ee50" points="407.30,205.23 411.99,203.61 410.23,198.87 405.48,200.47" /><polygon fill="#d9c9b4" points="153.31,246.18 154.53,232.26 151.78,237.53 150.41,251.59" /><polygon fill="#e3c5a8" points="146.34,279.38 148.52,274.33 147.94,256.81 145.88,261.83" /><polygon fill="#627504" points="83.70,360.96 85.78,364.43 95.15,358.12 93.38,354.66" /><polygon fill="#b2f296" points="276.94,230.34 266.17,209.46 261.28,213.23 271.69,234.31" /><polygon fill="#82fd96" points="334.39,194.74 320.00,176.16 314.47,178.96 328.53,197.79" /><polygon fill="#56f884" points="397.26,190.04 392.31,191.72 400.51,202.26 405.48,200.47" /><polygon fill="#4d650d" points="161.12,330.85 159.86,334.68 165.17,329.45 166.47,325.69" /><polygon fill="#5bdecd" points="370.37,89.08 377.01,88.22 368.42,87.78 362.06,88.59" /><polygon fill="#cce491" points="252.13,277.44 256.47,273.50 248.09,254.16 243.99,258.05" /><polygon fill="#33e48e" points="454.67,111.52 466.32,121.64 470.58,122.36 459.03,112.38" /><polygon fill="#adf496" points="271.20,205.73 266.17,209.46 276.94,230.34 282.34,226.42" /><polygon fill="#4de8b4" points="402.57,92.30 389.36,87.41 383.34,87.67 396.35,92.63" /><polygon fill="#42e8a8" points="423.94,100.42 429.53,100.57 413.95,92.51 408.44,92.26" /><polygon fill="#87fd96" points="314.47,178.96 308.93,181.91 322.65,200.99 328.53,197.79" /><polygon fill="#64fb91" points="376.38,197.89 381.85,195.65 367.96,179.84 362.64,181.89" /><polygon fill="#a9f696" points="287.87,222.54 276.36,202.06 271.20,205.73 282.34,226.42" /><polygon fill="#8cfc96" points="322.65,200.99 308.93,181.91 303.39,184.99 316.75,204.31" /><polygon fill="#a2520d" points="473.86,136.69 469.76,136.22 462.80,138.82 466.85,139.22" /><polygon fill="#966a04" points="533.27,82.16 530.92,78.84 521.02,84.89 523.49,87.94" /><polygon fill="#d2d550" points="246.38,300.74 249.88,304.44 253.57,300.84 250.08,297.08" /><polygon fill="#194e47" points="109.03,307.72 109.05,303.05 106.01,317.71 106.05,322.31" /><polygon fill="#a4f896" points="281.62,198.47 276.36,202.06 287.87,222.54 293.50,218.72" /><polygon fill="#3a6418" points="101.80,344.21 100.71,340.36 92.04,350.84 93.38,354.66" /><polygon fill="#91fc96" points="303.39,184.99 297.88,188.20 310.87,207.76 316.75,204.31" /><polygon fill="#d4df84" points="254.04,293.31 248.03,281.32 244.18,285.12 250.08,297.08" /><polygon fill="#9ff996" points="299.23,214.98 286.97,194.95 281.62,198.47 293.50,218.72" /><polygon fill="#96fb96" points="310.87,207.76 297.88,188.20 292.39,191.52 305.02,211.32" /><polygon fill="#59ef50" points="400.51,202.26 402.41,207.04 407.30,205.23 405.48,200.47" /><polygon fill="#9afa96" points="292.39,191.52 286.97,194.95 299.23,214.98 305.02,211.32" /><polygon fill="#225732" points="100.06,336.15 100.71,340.36 106.55,326.57 106.05,322.31" /><polygon fill="#c8e791" points="248.09,254.16 256.47,273.50 261.05,269.50 252.41,250.22" /><polygon fill="#5bf984" points="400.51,202.26 392.31,191.72 387.17,193.59 395.36,204.24" /><polygon fill="#eebb68" points="149.51,321.48 148.41,325.57 153.90,333.52 155.09,329.57" /><polygon fill="#c6c9cd" points="164.44,213.50 161.23,221.27 165.19,215.57 168.21,208.04" /><polygon fill="#69fc91" points="357.19,184.12 370.75,200.32 376.38,197.89 362.64,181.89" /><polygon fill="#c0a217" points="153.90,333.52 159.86,334.68 161.12,330.85 155.09,329.57" /><polygon fill="#a38c06" points="76.83,365.76 85.78,364.43 83.70,360.96 74.46,362.21" /><polygon fill="#e8c29d" points="146.34,279.38 144.59,284.19 146.90,302.14 148.77,297.40" /><polygon fill="#c82747" points="467.26,76.89 471.59,78.83 486.05,82.47 481.80,80.51" /><polygon fill="#b34a18" points="504.78,85.40 507.90,88.00 521.02,84.89 518.02,82.08" /><polygon fill="#5edfcd" points="355.44,89.69 363.45,90.25 370.37,89.08 362.06,88.59" /><polygon fill="#d6cdb4" points="157.68,226.84 154.53,232.26 153.31,246.18 156.64,240.58" /><polygon fill="#e7a33e" points="67.47,357.63 70.03,361.33 76.83,365.76 74.46,362.21" /><polygon fill="#c33432" points="504.78,85.40 501.15,83.06 486.05,82.47 489.80,84.70" /><polygon fill="#34e368" points="470.58,122.36 466.32,121.64 471.20,130.22 475.38,130.79" /><polygon fill="#ced850" points="253.57,300.84 257.52,297.14 254.04,293.31 250.08,297.08" /><polygon fill="#53ba17" points="471.20,130.22 469.76,136.22 473.86,136.69 475.38,130.79" /><polygon fill="#e0c9a8" points="147.94,256.81 148.52,274.33 151.15,269.06 150.41,251.59" /><polygon fill="#c4ea91" points="261.05,269.50 265.84,265.45 256.94,246.26 252.41,250.22" /><polygon fill="#3de89d" points="434.73,101.01 429.53,100.57 444.71,110.62 449.90,110.93" /><polygon fill="#d0e284" points="252.13,277.44 248.03,281.32 254.04,293.31 258.25,289.46" /><polygon fill="#edc08e" points="149.51,321.48 151.04,317.13 146.90,302.14 145.48,306.64" /><polygon fill="#51eab4" points="383.34,87.67 377.01,88.22 389.78,93.28 396.35,92.63" /><polygon fill="#6efd91" points="365.00,202.92 370.75,200.32 357.19,184.12 351.62,186.52" /><polygon fill="#5df150" points="397.32,209.03 402.41,207.04 400.51,202.26 395.36,204.24" /><polygon fill="#649a06" points="536.07,70.98 530.92,78.84 533.27,82.16 538.37,74.60" /><polygon fill="#5ffb84" points="387.17,193.59 381.85,195.65 390.02,206.40 395.36,204.24" /><polygon fill="#46eaa8" points="402.57,92.30 417.95,100.57 423.94,100.42 408.44,92.26" /><polygon fill="#4e630d" points="168.16,321.68 162.80,326.76 161.12,330.85 166.47,325.69" /><polygon fill="#37e78e" points="461.62,121.20 466.32,121.64 454.67,111.52 449.90,110.93" /><polygon fill="#31cb3e" points="537.32,66.50 534.96,62.64 536.07,70.98 538.37,74.60" /><polygon fill="#bfec91" points="256.94,246.26 265.84,265.45 270.84,261.38 261.67,242.27" /><polygon fill="#c3cbcd" points="165.19,215.57 169.55,209.75 172.36,202.48 168.21,208.04" /><polygon fill="#73fd91" points="345.95,189.10 359.13,205.70 365.00,202.92 351.62,186.52" /><polygon fill="#cbdb50" points="254.04,293.31 257.52,297.14 261.70,293.36 258.25,289.46" /><polygon fill="#a0510d" points="462.80,138.82 469.76,136.22 465.24,136.03 458.36,138.67" /><polygon fill="#cce584" points="262.70,285.54 256.47,273.50 252.13,277.44 258.25,289.46" /><polygon fill="#62e1cd" points="356.25,91.74 363.45,90.25 355.44,89.69 348.57,91.08" /><polygon fill="#62f250" points="390.02,206.40 392.05,211.21 397.32,209.03 395.36,204.24" /><polygon fill="#637404" points="92.04,350.84 82.06,357.11 83.70,360.96 93.38,354.66" /><polygon fill="#64fc84" points="390.02,206.40 381.85,195.65 376.38,197.89 384.51,208.76" /><polygon fill="#bbef91" points="270.84,261.38 276.03,257.28 266.59,238.29 261.67,242.27" /><polygon fill="#d3d0b4" points="160.41,234.83 161.23,221.27 157.68,226.84 156.64,240.58" /><polygon fill="#78fe91" points="353.16,208.65 359.13,205.70 345.95,189.10 340.21,191.84" /><polygon fill="#1b4a47" points="106.01,317.71 109.05,303.05 109.53,298.08 106.46,312.77" /><polygon fill="#e5c69d" points="151.09,292.40 148.52,274.33 146.34,279.38 148.77,297.40" /><polygon fill="#ecbf68" points="156.72,325.36 151.04,317.13 149.51,321.48 155.09,329.57" /><polygon fill="#bfa417" points="161.12,330.85 162.80,326.76 156.72,325.36 155.09,329.57" /><polygon fill="#55ebb4" points="389.78,93.28 377.01,88.22 370.37,89.08 382.87,94.26" /><polygon fill="#ddcca8" points="151.15,269.06 154.23,263.57 153.31,246.18 150.41,251.59" /><polygon fill="#b7f191" points="266.59,238.29 276.03,257.28 281.41,253.19 271.69,234.31" /><polygon fill="#c8e884" points="261.05,269.50 256.47,273.50 262.70,285.54 267.39,281.55" /><polygon fill="#c7de50" points="261.70,293.36 266.13,289.50 262.70,285.54 258.25,289.46" /><polygon fill="#245332" points="106.01,317.71 99.89,331.59 100.06,336.15 106.05,322.31" /><polygon fill="#3c6218" points="92.04,350.84 100.71,340.36 100.06,336.15 91.16,346.64" /><polygon fill="#956904" points="521.02,84.89 530.92,78.84 528.02,75.76 518.02,82.08" /><polygon fill="#7dfe91" points="334.39,194.74 347.12,211.75 353.16,208.65 340.21,191.84" /><polygon fill="#c0cecd" points="172.36,202.48 169.55,209.75 174.31,203.85 176.88,196.85" /><polygon fill="#69fd84" points="376.38,197.89 370.75,200.32 378.84,211.29 384.51,208.76" /><polygon fill="#41eb9d" points="444.71,110.62 429.53,100.57 423.94,100.42 439.10,110.62" /><polygon fill="#66f350" points="386.61,213.57 392.05,211.21 390.02,206.40 384.51,208.76" /><polygon fill="#38e668" points="471.20,130.22 466.32,121.64 461.62,121.20 466.60,129.92" /><polygon fill="#56bc17" points="465.24,136.03 469.76,136.22 471.20,130.22 466.60,129.92" /><polygon fill="#c42547" points="477.03,78.84 462.44,75.23 467.26,76.89 481.80,80.51" /><polygon fill="#4beca8" points="411.58,101.05 417.95,100.57 402.57,92.30 396.35,92.63" /><polygon fill="#eac48e" points="146.90,302.14 151.04,317.13 153.02,312.51 148.77,297.40" /><polygon fill="#b2f391" points="281.41,253.19 286.95,249.10 276.94,230.34 271.69,234.31" /><polygon fill="#66e2cd" points="341.47,92.78 348.81,93.55 356.25,91.74 348.57,91.08" /><polygon fill="#82fe91" points="341.02,215.00 347.12,211.75 334.39,194.74 328.53,197.79" /><polygon fill="#4f610d" points="164.91,322.42 162.80,326.76 168.16,321.68 170.27,317.44" /><polygon fill="#c03132" points="486.05,82.47 501.15,83.06 496.98,81.00 481.80,80.51" /><polygon fill="#a38d06" points="83.70,360.96 82.06,357.11 72.54,358.26 74.46,362.21" /><polygon fill="#c4eb84" points="272.29,277.51 265.84,265.45 261.05,269.50 267.39,281.55" /><polygon fill="#b14818" points="514.48,79.54 501.15,83.06 504.78,85.40 518.02,82.08" /><polygon fill="#aef591" points="276.94,230.34 286.95,249.10 292.63,245.03 282.34,226.42" /><polygon fill="#c3e150" points="262.70,285.54 266.13,289.50 270.78,285.58 267.39,281.55" /><polygon fill="#87fe91" points="322.65,200.99 334.88,218.39 341.02,215.00 328.53,197.79" /><polygon fill="#3bea8e" points="444.71,110.62 456.49,121.05 461.62,121.20 449.90,110.93" /><polygon fill="#6efe84" points="378.84,211.29 370.75,200.32 365.00,202.92 373.04,213.99" /><polygon fill="#d0d3b4" points="165.19,215.57 161.23,221.27 160.41,234.83 164.61,228.92" /><polygon fill="#6bf450" points="378.84,211.29 381.03,216.10 386.61,213.57 384.51,208.76" /><polygon fill="#a9f791" points="292.63,245.03 298.44,241.00 287.87,222.54 282.34,226.42" /><polygon fill="#8cfd91" points="328.73,221.90 334.88,218.39 322.65,200.99 316.75,204.31" /><polygon fill="#9e4f0d" points="465.24,136.03 460.30,136.12 453.52,138.80 458.36,138.67" /><polygon fill="#e5a73e" points="72.54,358.26 65.35,353.52 67.47,357.63 74.46,362.21" /><polygon fill="#a4f891" points="287.87,222.54 298.44,241.00 304.37,237.02 293.50,218.72" /><polygon fill="#91fd91" points="310.87,207.76 322.58,225.54 328.73,221.90 316.75,204.31" /><polygon fill="#59edb4" points="370.37,89.08 363.45,90.25 375.65,95.56 382.87,94.26" /><polygon fill="#bdd0cd" points="174.31,203.85 179.47,197.87 181.76,191.15 176.88,196.85" /><polygon fill="#9ffa91" points="304.37,237.02 310.37,233.11 299.23,214.98 293.50,218.72" /><polygon fill="#96fc91" points="316.45,229.28 322.58,225.54 310.87,207.76 305.02,211.32" /><polygon fill="#c0ed84" points="270.84,261.38 265.84,265.45 272.29,277.51 277.40,273.43" /><polygon fill="#9bfb91" points="299.23,214.98 310.37,233.11 316.45,229.28 305.02,211.32" /><polygon fill="#659b06" points="528.02,75.76 530.92,78.84 536.07,70.98 533.20,67.61" /><polygon fill="#bfe350" points="270.78,285.58 275.65,281.61 272.29,277.51 267.39,281.55" /><polygon fill="#73fe84" points="365.00,202.92 359.13,205.70 367.12,216.87 373.04,213.99" /><polygon fill="#6ae3cd" points="341.12,95.68 348.81,93.55 341.47,92.78 334.17,94.79" /><polygon fill="#e2ca9d" points="151.15,269.06 148.52,274.33 151.09,292.40 153.88,287.16" /><polygon fill="#dad0a8" points="153.31,246.18 154.23,263.57 157.77,257.88 156.64,240.58" /><polygon fill="#6ff550" points="375.30,218.80 381.03,216.10 378.84,211.29 373.04,213.99" /><polygon fill="#e9c368" points="153.02,312.51 151.04,317.13 156.72,325.36 158.79,320.89" /><polygon fill="#bda717" points="156.72,325.36 162.80,326.76 164.91,322.42 158.79,320.89" /><polygon fill="#34ce3e" points="536.07,70.98 534.96,62.64 532.03,59.01 533.20,67.61" /><polygon fill="#bcf084" points="282.71,269.32 276.03,257.28 270.84,261.38 277.40,273.43" /><polygon fill="#4feea8" points="389.78,93.28 404.82,101.85 411.58,101.05 396.35,92.63" /><polygon fill="#45ed9d" points="423.94,100.42 417.95,100.57 433.06,110.93 439.10,110.62" /><polygon fill="#1d4647" points="109.53,298.08 110.50,292.78 107.42,307.50 106.46,312.77" /><polygon fill="#78ff84" points="367.12,216.87 359.13,205.70 353.16,208.65 361.09,219.91" /><polygon fill="#bbe650" points="272.29,277.51 275.65,281.61 280.73,277.60 277.40,273.43" /><polygon fill="#637304" points="80.91,352.86 82.06,357.11 92.04,350.84 91.16,346.64" /><polygon fill="#3ce968" points="461.62,121.20 456.49,121.05 461.56,129.92 466.60,129.92" /><polygon fill="#58bd17" points="461.56,129.92 460.30,136.12 465.24,136.03 466.60,129.92" /><polygon fill="#cdd6b4" points="169.25,222.87 169.55,209.75 165.19,215.57 164.61,228.92" /><polygon fill="#bad3cd" points="181.76,191.15 179.47,197.87 185.02,191.84 187.00,185.41" /><polygon fill="#e7c88e" points="153.02,312.51 155.47,307.62 151.09,292.40 148.77,297.40" /><polygon fill="#74f550" points="367.12,216.87 369.45,221.67 375.30,218.80 373.04,213.99" /><polygon fill="#b7f284" points="281.41,253.19 276.03,257.28 282.71,269.32 288.20,265.20" /><polygon fill="#515f0d" points="172.81,312.96 167.48,317.82 164.91,322.42 170.27,317.44" /><polygon fill="#6ee3cd" points="326.68,97.10 333.23,98.13 341.12,95.68 334.17,94.79" /><polygon fill="#265032" points="100.24,326.66 99.89,331.59 106.01,317.71 106.46,312.77" /><polygon fill="#7dff84" points="353.16,208.65 347.12,211.75 354.98,223.10 361.09,219.91" /><polygon fill="#5eeeb4" points="375.65,95.56 363.45,90.25 356.25,91.74 368.12,97.20" /><polygon fill="#c12247" points="457.13,73.88 462.44,75.23 477.03,78.84 471.72,77.49" /><polygon fill="#3d5f18" points="100.06,336.15 99.89,331.59 90.78,342.05 91.16,346.64" /><polygon fill="#b7e850" points="280.73,277.60 285.99,273.55 282.71,269.32 277.40,273.43" /><polygon fill="#3fed8e" points="450.92,121.21 456.49,121.05 444.71,110.62 439.10,110.62" /><polygon fill="#79f650" points="363.50,224.70 369.45,221.67 367.12,216.87 361.09,219.91" /><polygon fill="#946804" points="528.02,75.76 524.55,72.94 514.48,79.54 518.02,82.08" /><polygon fill="#b3f484" points="293.85,261.09 286.95,249.10 281.41,253.19 288.20,265.20" /><polygon fill="#9c4e0d" points="453.52,138.80 460.30,136.12 454.94,136.51 448.28,139.21" /><polygon fill="#82ff84" points="354.98,223.10 347.12,211.75 341.02,215.00 348.81,226.44" /><polygon fill="#d7d3a8" points="157.77,257.88 161.78,251.99 160.41,234.83 156.64,240.58" /><polygon fill="#bd2f32" points="496.98,81.00 492.25,79.25 477.03,78.84 481.80,80.51" /><polygon fill="#b6d5cd" points="185.02,191.84 190.93,185.78 192.59,179.66 187.00,185.41" /><polygon fill="#b3ea50" points="282.71,269.32 285.99,273.55 291.43,269.50 288.20,265.20" /><polygon fill="#aef684" points="292.63,245.03 286.95,249.10 293.85,261.09 299.65,256.99" /><polygon fill="#dfce9d" points="157.14,281.68 154.23,263.57 151.15,269.06 153.88,287.16" /><polygon fill="#87ff84" points="341.02,215.00 334.88,218.39 342.59,229.92 348.81,226.44" /><polygon fill="#7df650" points="354.98,223.10 357.47,227.87 363.50,224.70 361.09,219.91" /><polygon fill="#af4618" points="496.98,81.00 501.15,83.06 514.48,79.54 510.37,77.28" /><polygon fill="#72e4cd" points="325.16,100.91 333.23,98.13 326.68,97.10 319.03,99.71" /><polygon fill="#53f0a8" points="397.69,102.99 404.82,101.85 389.78,93.28 382.87,94.26" /><polygon fill="#c9d9b4" points="174.31,203.85 169.55,209.75 169.25,222.87 174.32,216.72" /><polygon fill="#a9f884" points="305.57,252.92 298.44,241.00 292.63,245.03 299.65,256.99" /><polygon fill="#8cfe84" points="342.59,229.92 334.88,218.39 328.73,221.90 336.35,233.51" /><polygon fill="#a28f06" points="72.54,358.26 82.06,357.11 80.91,352.86 71.12,353.89" /><polygon fill="#afec50" points="291.43,269.50 297.03,265.44 293.85,261.09 288.20,265.20" /><polygon fill="#bca917" points="164.91,322.42 167.48,317.82 161.32,316.14 158.79,320.89" /><polygon fill="#e6c768" points="161.32,316.14 155.47,307.62 153.02,312.51 158.79,320.89" /><polygon fill="#49ef9d" points="433.06,110.93 417.95,100.57 411.58,101.05 426.60,111.58" /><polygon fill="#a4f984" points="304.37,237.02 298.44,241.00 305.57,252.92 311.59,248.89" /><polygon fill="#91fe84" points="328.73,221.90 322.58,225.54 330.10,237.22 336.35,233.51" /><polygon fill="#82f650" points="351.37,231.19 357.47,227.87 354.98,223.10 348.81,226.44" /><polygon fill="#62f0b4" points="356.25,91.74 348.81,93.55 360.30,99.19 368.12,97.20" /><polygon fill="#a0fb84" points="317.71,244.92 310.37,233.11 304.37,237.02 311.59,248.89" /><polygon fill="#96fd84" points="330.10,237.22 322.58,225.54 316.45,229.28 323.88,241.03" /><polygon fill="#9bfc84" points="316.45,229.28 310.37,233.11 317.71,244.92 323.88,241.03" /><polygon fill="#abee50" points="293.85,261.09 297.03,265.44 302.77,261.40 299.65,256.99" /><polygon fill="#b3d7cd" points="192.59,179.66 190.93,185.78 197.21,179.71 198.51,173.90" /><polygon fill="#86f650" points="342.59,229.92 345.23,234.63 351.37,231.19 348.81,226.44" /><polygon fill="#e4ab3e" points="63.73,348.98 65.35,353.52 72.54,358.26 71.12,353.89" /><polygon fill="#5bbf17" points="454.94,136.51 460.30,136.12 461.56,129.92 456.08,130.22" /><polygon fill="#40ec68" points="461.56,129.92 456.49,121.05 450.92,121.21 456.08,130.22" /><polygon fill="#e4cc8e" points="151.09,292.40 155.47,307.62 158.40,302.48 153.88,287.16" /><polygon fill="#76e4cd" points="311.25,102.61 316.93,104.01 325.16,100.91 319.03,99.71" /><polygon fill="#525d0d" points="170.51,312.97 167.48,317.82 172.81,312.96 175.79,308.24" /><polygon fill="#a6ef50" points="302.77,261.40 308.63,257.38 305.57,252.92 299.65,256.99" /><polygon fill="#669c06" points="529.73,64.49 524.55,72.94 528.02,75.76 533.20,67.61" /><polygon fill="#8bf550" points="339.06,238.20 345.23,234.63 342.59,229.92 336.35,233.51" /><polygon fill="#a2f150" points="305.57,252.92 308.63,257.38 314.59,253.41 311.59,248.89" /><polygon fill="#90f550" points="330.10,237.22 332.89,241.87 339.06,238.20 336.35,233.51" /><polygon fill="#d3d7a8" points="160.41,234.83 161.78,251.99 166.25,245.94 164.61,228.92" /><polygon fill="#44ef8e" points="433.06,110.93 444.90,121.70 450.92,121.21 439.10,110.62" /><polygon fill="#9df250" points="314.59,253.41 320.64,249.49 317.71,244.92 311.59,248.89" /><polygon fill="#c6dcb4" points="179.82,210.46 179.47,197.87 174.31,203.85 174.32,216.72" /><polygon fill="#94f450" points="326.74,245.64 332.89,241.87 330.10,237.22 323.88,241.03" /><polygon fill="#99f350" points="317.71,244.92 320.64,249.49 326.74,245.64 323.88,241.03" /><polygon fill="#9a4d0d" points="454.94,136.51 449.15,137.21 442.64,139.92 448.28,139.21" /><polygon fill="#afd9cd" points="197.21,179.71 203.83,173.65 204.75,168.17 198.51,173.90" /><polygon fill="#37d13e" points="532.03,59.01 528.49,55.64 529.73,64.49 533.20,67.61" /><polygon fill="#67f1b4" points="360.30,99.19 348.81,93.55 341.12,95.68 352.21,101.51" /><polygon fill="#58f2a8" points="375.65,95.56 390.20,104.48 397.69,102.99 382.87,94.26" /><polygon fill="#647204" points="90.78,342.05 80.27,348.19 80.91,352.86 91.16,346.64" /><polygon fill="#dcd29d" points="157.77,257.88 154.23,263.57 157.14,281.68 160.89,275.97" /><polygon fill="#284c32" points="107.42,307.50 101.12,321.36 100.24,326.66 106.46,312.77" /><polygon fill="#7ae5cd" points="308.58,107.42 316.93,104.01 311.25,102.61 303.35,105.82" /><polygon fill="#3e5d18" points="90.78,342.05 99.89,331.59 100.24,326.66 90.94,337.07" /><polygon fill="#4ef19d" points="411.58,101.05 404.82,101.85 419.73,112.56 426.60,111.58" /><polygon fill="#acdbcd" points="204.75,168.17 203.83,173.65 210.76,167.64 211.28,162.48" /><polygon fill="#baac17" points="161.32,316.14 167.48,317.82 170.51,312.97 164.33,311.14" /><polygon fill="#e3cb68" points="158.40,302.48 155.47,307.62 161.32,316.14 164.33,311.14" /><polygon fill="#ba2c32" points="477.03,78.84 492.25,79.25 486.94,77.83 471.72,77.49" /><polygon fill="#7ee5cd" points="295.37,109.30 300.13,111.13 308.58,107.42 303.35,105.82" /><polygon fill="#936804" points="514.48,79.54 524.55,72.94 520.47,70.42 510.37,77.28" /><polygon fill="#c2dfb4" points="185.02,191.84 179.47,197.87 179.82,210.46 185.74,204.14" /><polygon fill="#ac4418" points="505.66,75.34 492.25,79.25 496.98,81.00 510.37,77.28" /><polygon fill="#e1d08e" points="158.40,302.48 161.82,297.08 157.14,281.68 153.88,287.16" /><polygon fill="#d0daa8" points="166.25,245.94 171.20,239.72 169.25,222.87 164.61,228.92" /><polygon fill="#6bf2b4" points="341.12,95.68 333.23,98.13 343.89,104.18 352.21,101.51" /><polygon fill="#5dc017" points="450.16,130.84 449.15,137.21 454.94,136.51 456.08,130.22" /><polygon fill="#535b0d" points="179.21,303.30 174.01,307.87 170.51,312.97 175.79,308.24" /><polygon fill="#44ee68" points="450.92,121.21 444.90,121.70 450.16,130.84 456.08,130.22" /><polygon fill="#a8dccd" points="210.76,167.64 218.00,161.69 218.09,156.87 211.28,162.48" /><polygon fill="#81e5cd" points="291.62,115.14 300.13,111.13 295.37,109.30 287.35,113.07" /><polygon fill="#5cf3a8" points="382.36,106.32 390.20,104.48 375.65,95.56 368.12,97.20" /><polygon fill="#f2b785" points="63.73,348.98 62.64,343.99 59.51,332.46 60.66,337.66" /><polygon fill="#48f18e" points="438.45,122.52 444.90,121.70 433.06,110.93 426.60,111.58" /><polygon fill="#984c0d" points="442.64,139.92 449.15,137.21 442.94,138.23 436.61,140.93" /><polygon fill="#a29006" points="80.91,352.86 80.27,348.19 70.22,349.10 71.12,353.89" /><polygon fill="#a4decd" points="218.09,156.87 218.00,161.69 225.51,155.84 225.15,151.34" /><polygon fill="#d9d59d" points="165.13,270.05 161.78,251.99 157.77,257.88 160.89,275.97" /><polygon fill="#85e5cd" points="279.31,117.09 283.08,119.43 291.62,115.14 287.35,113.07" /><polygon fill="#bee1b4" points="192.06,197.77 190.93,185.78 185.02,191.84 185.74,204.14" /><polygon fill="#a1dfcd" points="225.51,155.84 233.26,150.10 232.44,145.93 225.15,151.34" /><polygon fill="#70f2b4" points="343.89,104.18 333.23,98.13 325.16,100.91 335.35,107.20" /><polygon fill="#89e4cd" points="274.55,123.98 283.08,119.43 279.31,117.09 271.28,121.37" /><polygon fill="#52f39d" points="419.73,112.56 404.82,101.85 397.69,102.99 412.45,113.90" /><polygon fill="#e2af3e" points="70.22,349.10 62.64,343.99 63.73,348.98 71.12,353.89" /><polygon fill="#2fe285" points="524.31,52.57 528.49,55.64 519.58,47.92 515.24,44.71" /><polygon fill="#9de1cd" points="232.44,145.93 233.26,150.10 241.22,144.50 239.93,140.66" /><polygon fill="#8de4cd" points="263.29,125.89 266.06,128.79 274.55,123.98 271.28,121.37" /><polygon fill="#679d06" points="520.47,70.42 524.55,72.94 529.73,64.49 525.64,61.68" /><polygon fill="#ccdda8" points="169.25,222.87 171.20,239.72 176.61,233.36 174.32,216.72" /><polygon fill="#99e2cd" points="241.22,144.50 249.36,139.07 247.59,135.55 239.93,140.66" /><polygon fill="#91e3cd" points="257.66,133.82 266.06,128.79 263.29,125.89 255.38,130.62" /><polygon fill="#b8ae17" points="170.51,312.97 174.01,307.87 167.83,305.89 164.33,311.14" /><polygon fill="#95e3cd" points="247.59,135.55 249.36,139.07 257.66,133.82 255.38,130.62" /><polygon fill="#2a4932" points="102.58,315.68 101.12,321.36 107.42,307.50 108.91,301.88" /><polygon fill="#e0cf68" points="167.83,305.89 161.82,297.08 158.40,302.48 164.33,311.14" /><polygon fill="#61f5a8" points="360.30,99.19 374.21,108.53 382.36,106.32 368.12,97.20" /><polygon fill="#bae4b4" points="197.21,179.71 190.93,185.78 192.06,197.77 198.77,191.37" /><polygon fill="#647104" points="80.19,343.11 80.27,348.19 90.78,342.05 90.94,337.07" /><polygon fill="#555a0d" points="177.98,302.54 174.01,307.87 179.21,303.30 183.09,298.14" /><polygon fill="#ded48e" points="157.14,281.68 161.82,297.08 165.73,291.44 160.89,275.97" /><polygon fill="#60c117" points="442.94,138.23 449.15,137.21 450.16,130.84 443.80,131.79" /><polygon fill="#3ad43e" points="529.73,64.49 528.49,55.64 524.31,52.57 525.64,61.68" /><polygon fill="#74f3b4" points="325.16,100.91 316.93,104.01 326.64,110.55 335.35,107.20" /><polygon fill="#49f068" points="450.16,130.84 444.90,121.70 438.45,122.52 443.80,131.79" /><polygon fill="#405a18" points="100.24,326.66 101.12,321.36 91.67,331.69 90.94,337.07" /><polygon fill="#b62a32" points="486.94,77.83 481.05,76.77 465.87,76.49 471.72,77.49" /><polygon fill="#964b0d" points="442.94,138.23 436.31,139.59 430.18,142.27 436.61,140.93" /><polygon fill="#4df48e" points="419.73,112.56 431.56,123.69 438.45,122.52 426.60,111.58" /><polygon fill="#d5d99d" points="166.25,245.94 161.78,251.99 165.13,270.05 169.87,263.92" /><polygon fill="#926704" points="520.47,70.42 515.76,68.22 505.66,75.34 510.37,77.28" /><polygon fill="#b6e6b4" points="205.85,184.98 203.83,173.65 197.21,179.71 198.77,191.37" /><polygon fill="#57f59d" points="397.69,102.99 390.20,104.48 404.78,115.60 412.45,113.90" /><polygon fill="#aa4318" points="486.94,77.83 492.25,79.25 505.66,75.34 500.34,73.76" /><polygon fill="#c9e0a8" points="176.61,233.36 182.48,226.88 179.82,210.46 174.32,216.72" /><polygon fill="#79f3b4" points="326.64,110.55 316.93,104.01 308.58,107.42 317.77,114.23" /><polygon fill="#66f6a8" points="365.75,111.09 374.21,108.53 360.30,99.19 352.21,101.51" /><polygon fill="#b6b017" points="167.83,305.89 174.01,307.87 177.98,302.54 171.82,300.39" /><polygon fill="#b2e8b4" points="210.76,167.64 203.83,173.65 205.85,184.98 213.28,178.62" /><polygon fill="#ddd368" points="165.73,291.44 161.82,297.08 167.83,305.89 171.82,300.39" /><polygon fill="#7df3b4" points="308.58,107.42 300.13,111.13 308.79,118.24 317.77,114.23" /><polygon fill="#f0bc85" points="59.51,332.46 62.64,343.99 62.13,338.54 58.93,326.80" /><polygon fill="#56580d" points="187.42,292.78 182.44,296.99 177.98,302.54 183.09,298.14" /><polygon fill="#a19106" points="70.22,349.10 80.27,348.19 80.19,343.11 69.90,343.85" /><polygon fill="#dbd78e" points="165.73,291.44 170.16,285.57 165.13,270.05 160.89,275.97" /><polygon fill="#62c317" points="437.00,133.09 436.31,139.59 442.94,138.23 443.80,131.79" /><polygon fill="#4df268" points="438.45,122.52 431.56,123.69 437.00,133.09 443.80,131.79" /><polygon fill="#d2dc9d" points="175.11,257.62 171.20,239.72 166.25,245.94 169.87,263.92" /><polygon fill="#c5e3a8" points="179.82,210.46 182.48,226.88 188.80,220.31 185.74,204.14" /><polygon fill="#944a0d" points="430.18,142.27 436.31,139.59 429.27,141.28 423.37,143.92" /><polygon fill="#aeeab4" points="221.02,172.31 218.00,161.69 210.76,167.64 213.28,178.62" /><polygon fill="#2c4532" points="110.97,295.91 104.64,309.63 102.58,315.68 108.91,301.88" /><polygon fill="#51f58e" points="424.24,125.22 431.56,123.69 419.73,112.56 412.45,113.90" /><polygon fill="#82f3b4" points="308.79,118.24 300.13,111.13 291.62,115.14 299.73,122.55" /><polygon fill="#6af7a8" points="343.89,104.18 357.03,114.02 365.75,111.09 352.21,101.51" /><polygon fill="#e0b33e" points="62.13,338.54 62.64,343.99 70.22,349.10 69.90,343.85" /><polygon fill="#5bf69d" points="404.78,115.60 390.20,104.48 382.36,106.32 396.74,117.67" /><polygon fill="#33e585" points="510.23,41.81 519.45,49.83 524.31,52.57 515.24,44.71" /><polygon fill="#699e06" points="520.88,59.20 515.76,68.22 520.47,70.42 525.64,61.68" /><polygon fill="#aaebb4" points="225.51,155.84 218.00,161.69 221.02,172.31 229.06,166.09" /><polygon fill="#b32832" points="465.87,76.49 481.05,76.77 474.55,76.09 459.47,75.85" /><polygon fill="#86f3b4" points="291.62,115.14 283.08,119.43 290.63,127.17 299.73,122.55" /><polygon fill="#657004" points="91.67,331.69 80.72,337.58 80.19,343.11 90.94,337.07" /><polygon fill="#415818" points="91.67,331.69 101.12,321.36 102.58,315.68 93.01,325.89" /><polygon fill="#a6edb4" points="237.36,159.98 233.26,150.10 225.51,155.84 229.06,166.09" /><polygon fill="#8bf3b4" points="290.63,127.17 283.08,119.43 274.55,123.98 281.53,132.06" /><polygon fill="#3dd73e" points="524.31,52.57 519.45,49.83 520.88,59.20 525.64,61.68" /><polygon fill="#c1e5a8" points="188.80,220.31 195.55,213.67 192.06,197.77 185.74,204.14" /><polygon fill="#b4b217" points="177.98,302.54 182.44,296.99 176.32,294.66 171.82,300.39" /><polygon fill="#dad668" points="176.32,294.66 170.16,285.57 165.73,291.44 171.82,300.39" /><polygon fill="#58560d" points="187.39,291.23 182.44,296.99 187.42,292.78 192.21,287.22" /><polygon fill="#a1eeb4" points="241.22,144.50 233.26,150.10 237.36,159.98 245.89,154.01" /><polygon fill="#8ff2b4" points="274.55,123.98 266.06,128.79 272.46,137.21 281.53,132.06" /><polygon fill="#6ff7a8" points="348.05,117.31 357.03,114.02 343.89,104.18 335.35,107.20" /><polygon fill="#d7db8e" points="165.13,270.05 170.16,285.57 175.09,279.48 169.87,263.92" /><polygon fill="#cedf9d" points="176.61,233.36 171.20,239.72 175.11,257.62 180.83,251.15" /><polygon fill="#a74118" points="494.37,72.55 481.05,76.77 486.94,77.83 500.34,73.76" /><polygon fill="#916604" points="505.66,75.34 515.76,68.22 510.39,66.39 500.34,73.76" /><polygon fill="#9df0b4" points="254.60,148.21 249.36,139.07 241.22,144.50 245.89,154.01" /><polygon fill="#94f2b4" points="272.46,137.21 266.06,128.79 257.66,133.82 263.47,142.60" /><polygon fill="#98f1b4" points="257.66,133.82 249.36,139.07 254.60,148.21 263.47,142.60" /><polygon fill="#65c417" points="429.27,141.28 436.31,139.59 437.00,133.09 429.78,134.74" /><polygon fill="#924a0d" points="429.27,141.28 421.83,143.32 416.19,145.90 423.37,143.92" /><polygon fill="#52f468" points="437.00,133.09 431.56,123.69 424.24,125.22 429.78,134.74" /><polygon fill="#60f89d" points="382.36,106.32 374.21,108.53 388.33,120.11 396.74,117.67" /><polygon fill="#56f78e" points="404.78,115.60 416.52,127.11 424.24,125.22 412.45,113.90" /><polygon fill="#bde8a8" points="192.06,197.77 195.55,213.67 202.72,206.98 198.77,191.37" /><polygon fill="#74f8a8" points="326.64,110.55 338.87,120.96 348.05,117.31 335.35,107.20" /><polygon fill="#2f4232" points="107.33,303.21 104.64,309.63 110.97,295.91 113.62,289.61" /><polygon fill="#a09306" points="80.19,343.11 80.72,337.58 70.19,338.14 69.90,343.85" /><polygon fill="#edc085" points="62.13,338.54 62.24,332.63 58.96,320.69 58.93,326.80" /><polygon fill="#cae29d" points="187.04,244.53 182.48,226.88 176.61,233.36 180.83,251.15" /><polygon fill="#5a550d" points="197.45,281.48 192.83,285.27 187.39,291.23 192.21,287.22" /><polygon fill="#b2b417" points="176.32,294.66 182.44,296.99 187.39,291.23 181.32,288.71" /><polygon fill="#d6da68" points="175.09,279.48 170.16,285.57 176.32,294.66 181.32,288.71" /><polygon fill="#d4de8e" points="175.09,279.48 180.54,273.20 175.11,257.62 169.87,263.92" /><polygon fill="#b9eaa8" points="202.72,206.98 210.29,200.28 205.85,184.98 198.77,191.37" /><polygon fill="#af2632" points="474.55,76.09 467.44,75.83 452.51,75.60 459.47,75.85" /><polygon fill="#65f99d" points="388.33,120.11 374.21,108.53 365.75,111.09 379.60,122.93" /><polygon fill="#90490d" points="416.19,145.90 421.83,143.32 414.00,145.72 408.66,148.22" /><polygon fill="#78f8a8" points="329.50,124.95 338.87,120.96 326.64,110.55 317.77,114.23" /><polygon fill="#68c517" points="422.14,136.75 421.83,143.32 429.27,141.28 429.78,134.74" /><polygon fill="#6a9f06" points="510.39,66.39 515.76,68.22 520.88,59.20 515.44,57.08" /><polygon fill="#deb73e" points="70.19,338.14 62.24,332.63 62.13,338.54 69.90,343.85" /><polygon fill="#56f668" points="424.24,125.22 416.52,127.11 422.14,136.75 429.78,134.74" /><polygon fill="#5bf98e" points="408.39,129.38 416.52,127.11 404.78,115.60 396.74,117.67" /><polygon fill="#37e885" points="513.90,47.46 519.45,49.83 510.23,41.81 504.53,39.28" /><polygon fill="#435518" points="102.58,315.68 104.64,309.63 95.00,319.68 93.01,325.89" /><polygon fill="#e6c1a4" points="60.57,298.82 59.88,305.53 58.96,320.69 59.66,314.10" /><polygon fill="#656f04" points="81.88,331.62 80.72,337.58 91.67,331.69 93.01,325.89" /><polygon fill="#b4eca8" points="205.85,184.98 210.29,200.28 218.22,193.59 213.28,178.62" /><polygon fill="#7df8a8" points="308.79,118.24 320.00,129.28 329.50,124.95 317.77,114.23" /><polygon fill="#c6e59d" points="188.80,220.31 182.48,226.88 187.04,244.53 193.73,237.80" /><polygon fill="#a54018" points="474.55,76.09 481.05,76.77 494.37,72.55 487.75,71.74" /><polygon fill="#41d93e" points="520.88,59.20 519.45,49.83 513.90,47.46 515.44,57.08" /><polygon fill="#5b530d" points="198.74,279.12 192.83,285.27 197.45,281.48 203.15,275.57" /><polygon fill="#906504" points="510.39,66.39 504.34,64.95 494.37,72.55 500.34,73.76" /><polygon fill="#3ee6a4" points="490.45,33.51 483.93,31.32 498.11,37.15 504.53,39.28" /><polygon fill="#6afa9d" points="365.75,111.09 357.03,114.02 370.56,126.12 379.60,122.93" /><polygon fill="#b0b617" points="187.39,291.23 192.83,285.27 186.83,282.55 181.32,288.71" /><polygon fill="#b0eea8" points="218.22,193.59 226.50,186.95 221.02,172.31 213.28,178.62" /><polygon fill="#d0e18e" points="175.11,257.62 180.54,273.20 186.49,266.72 180.83,251.15" /><polygon fill="#d3dd68" points="186.83,282.55 180.54,273.20 175.09,279.48 181.32,288.71" /><polygon fill="#8e480d" points="414.00,145.72 405.82,148.47 400.79,150.87 408.66,148.22" /><polygon fill="#82f8a8" points="310.40,133.93 320.00,129.28 308.79,118.24 299.73,122.55" /><polygon fill="#6ac617" points="414.00,145.72 421.83,143.32 422.14,136.75 414.11,139.13" /><polygon fill="#60fa8e" points="388.33,120.11 399.88,132.02 408.39,129.38 396.74,117.67" /><polygon fill="#5bf768" points="422.14,136.75 416.52,127.11 408.39,129.38 414.11,139.13" /><polygon fill="#acf0a8" points="221.02,172.31 226.50,186.95 235.10,180.37 229.06,166.09" /><polygon fill="#87f8a8" points="290.63,127.17 300.74,138.89 310.40,133.93 299.73,122.55" /><polygon fill="#c2e89d" points="200.87,230.97 195.55,213.67 188.80,220.31 193.73,237.80" /><polygon fill="#a7f2a8" points="235.10,180.37 243.96,173.90 237.36,159.98 229.06,166.09" /><polygon fill="#6ffa9d" points="370.56,126.12 357.03,114.02 348.05,117.31 361.24,129.69" /><polygon fill="#a09406" points="70.19,338.14 80.72,337.58 81.88,331.62 71.15,331.97" /><polygon fill="#8bf8a8" points="291.06,144.14 300.74,138.89 290.63,127.17 281.53,132.06" /><polygon fill="#5d520d" points="209.28,269.53 205.13,272.82 198.74,279.12 203.15,275.57" /><polygon fill="#ebc485" points="58.96,320.69 62.24,332.63 63.02,326.23 59.66,314.10" /><polygon fill="#a3f3a8" points="237.36,159.98 243.96,173.90 253.07,167.57 245.89,154.01" /><polygon fill="#90f7a8" points="272.46,137.21 281.41,149.66 291.06,144.14 281.53,132.06" /><polygon fill="#aeb817" points="186.83,282.55 192.83,285.27 198.74,279.12 192.84,276.21" /><polygon fill="#cce48e" points="186.49,266.72 192.94,260.09 187.04,244.53 180.83,251.15" /><polygon fill="#8c480d" points="400.79,150.87 405.82,148.47 397.28,151.58 392.60,153.86" /><polygon fill="#445318" points="95.00,319.68 104.64,309.63 107.33,303.21 97.66,313.06" /><polygon fill="#9ef5a8" points="253.07,167.57 262.37,161.40 254.60,148.21 245.89,154.01" /><polygon fill="#95f7a8" points="271.83,155.42 281.41,149.66 272.46,137.21 263.47,142.60" /><polygon fill="#99f6a8" points="254.60,148.21 262.37,161.40 271.83,155.42 263.47,142.60" /><polygon fill="#cfe068" points="186.49,266.72 180.54,273.20 186.83,282.55 192.84,276.21" /><polygon fill="#beeb9d" points="202.72,206.98 195.55,213.67 200.87,230.97 208.46,224.08" /><polygon fill="#6ba006" points="509.28,55.37 504.34,64.95 510.39,66.39 515.44,57.08" /><polygon fill="#64fb8e" points="391.02,135.05 399.88,132.02 388.33,120.11 379.60,122.93" /><polygon fill="#6dc617" points="405.69,141.89 405.82,148.47 414.00,145.72 414.11,139.13" /><polygon fill="#666e04" points="95.00,319.68 83.72,325.20 81.88,331.62 93.01,325.89" /><polygon fill="#dcba3e" points="63.02,326.23 62.24,332.63 70.19,338.14 71.15,331.97" /><polygon fill="#3beb85" points="498.11,37.15 507.61,45.49 513.90,47.46 504.53,39.28" /><polygon fill="#e4c5a4" points="61.06,307.03 61.94,291.66 60.57,298.82 59.66,314.10" /><polygon fill="#60f968" points="408.39,129.38 399.88,132.02 405.69,141.89 414.11,139.13" /><polygon fill="#73fb9d" points="348.05,117.31 338.87,120.96 351.68,133.62 361.24,129.69" /><polygon fill="#a23e18" points="480.47,71.37 467.44,75.83 474.55,76.09 487.75,71.74" /><polygon fill="#4ae4b8" points="453.05,25.66 468.76,28.26 476.71,29.56 460.93,26.95" /><polygon fill="#5f510d" points="211.98,266.38 205.13,272.82 209.28,269.53 215.85,263.36" /><polygon fill="#8f6504" points="494.37,72.55 504.34,64.95 497.58,63.93 487.75,71.74" /><polygon fill="#45dc3e" points="513.90,47.46 507.61,45.49 509.28,55.37 515.44,57.08" /><polygon fill="#42e9a4" points="498.11,37.15 483.93,31.32 476.71,29.56 490.95,35.46" /><polygon fill="#8a470d" points="397.28,151.58 388.43,155.04 384.12,157.18 392.60,153.86" /><polygon fill="#baed9d" points="216.46,217.15 210.29,200.28 202.72,206.98 208.46,224.08" /><polygon fill="#c8e78e" points="187.04,244.53 192.94,260.09 199.88,253.32 193.73,237.80" /><polygon fill="#acba17" points="198.74,279.12 205.13,272.82 199.34,269.69 192.84,276.21" /><polygon fill="#78fb9d" points="351.68,133.62 338.87,120.96 329.50,124.95 341.92,137.91" /><polygon fill="#cbe368" points="199.34,269.69 192.94,260.09 186.49,266.72 192.84,276.21" /><polygon fill="#69fc8e" points="370.56,126.12 381.83,138.46 391.02,135.05 379.60,122.93" /><polygon fill="#70c717" points="397.28,151.58 405.82,148.47 405.69,141.89 396.92,145.01" /><polygon fill="#65fa68" points="405.69,141.89 399.88,132.02 391.02,135.05 396.92,145.01" /><polygon fill="#b6ef9d" points="218.22,193.59 210.29,200.28 216.46,217.15 224.85,210.22" /><polygon fill="#614f0d" points="222.84,257.08 219.27,259.83 211.98,266.38 215.85,263.36" /><polygon fill="#7dfc9d" points="329.50,124.95 320.00,129.28 331.99,142.54 341.92,137.91" /><polygon fill="#87470d" points="384.12,157.18 388.43,155.04 379.30,158.85 375.37,160.83" /><polygon fill="#9f9506" points="81.88,331.62 83.72,325.20 72.82,325.32 71.15,331.97" /><polygon fill="#465018" points="107.33,303.21 110.68,296.41 101.03,306.03 97.66,313.06" /><polygon fill="#c4ea8e" points="199.88,253.32 207.29,246.44 200.87,230.97 193.73,237.80" /><polygon fill="#e8c885" points="63.02,326.23 64.52,319.35 61.06,307.03 59.66,314.10" /><polygon fill="#a9bc17" points="199.34,269.69 205.13,272.82 211.98,266.38 206.33,263.04" /><polygon fill="#d8c8b8" points="64.03,284.05 66.88,275.99 71.32,260.79 68.52,268.75" /><polygon fill="#6efd8e" points="372.35,142.24 381.83,138.46 370.56,126.12 361.24,129.69" /><polygon fill="#b1f19d" points="233.61,203.31 226.50,186.95 218.22,193.59 224.85,210.22" /><polygon fill="#c7e668" points="199.88,253.32 192.94,260.09 199.34,269.69 206.33,263.04" /><polygon fill="#82fc9d" points="331.99,142.54 320.00,129.28 310.40,133.93 321.94,147.51" /><polygon fill="#73c817" points="387.81,148.50 388.43,155.04 397.28,151.58 396.92,145.01" /><polygon fill="#676d04" points="86.28,318.34 83.72,325.20 95.00,319.68 97.66,313.06" /><polygon fill="#a03d18" points="459.71,76.01 467.44,75.83 480.47,71.37 472.50,71.48" /><polygon fill="#634e0d" points="226.98,253.19 219.27,259.83 222.84,257.08 230.22,250.73" /><polygon fill="#6ca006" points="497.58,63.93 504.34,64.95 509.28,55.37 502.38,54.09" /><polygon fill="#69fb68" points="391.02,135.05 381.83,138.46 387.81,148.50 396.92,145.01" /><polygon fill="#e1c9a4" points="64.03,284.05 61.94,291.66 61.06,307.03 63.21,299.48" /><polygon fill="#d9be3e" points="72.82,325.32 64.52,319.35 63.02,326.23 71.15,331.97" /><polygon fill="#3fed85" points="500.57,43.97 507.61,45.49 498.11,37.15 490.95,35.46" /><polygon fill="#adf39d" points="235.10,180.37 226.50,186.95 233.61,203.31 242.68,196.46" /><polygon fill="#85470d" points="379.30,158.85 369.90,163.00 366.39,164.80 375.37,160.83" /><polygon fill="#4ee6b8" points="460.08,27.45 468.76,28.26 453.05,25.66 444.50,24.84" /><polygon fill="#87fb9d" points="310.40,133.93 300.74,138.89 311.81,152.79 321.94,147.51" /><polygon fill="#c0ed8e" points="200.87,230.97 207.29,246.44 215.15,239.48 208.46,224.08" /><polygon fill="#8e6404" points="497.58,63.93 490.11,63.38 480.47,71.37 487.75,71.74" /><polygon fill="#a8f59d" points="252.05,189.70 243.96,173.90 235.10,180.37 242.68,196.46" /><polygon fill="#73fe8e" points="351.68,133.62 362.60,146.39 372.35,142.24 361.24,129.69" /><polygon fill="#a7bd17" points="211.98,266.38 219.27,259.83 213.78,256.27 206.33,263.04" /><polygon fill="#8cfb9d" points="311.81,152.79 300.74,138.89 291.06,144.14 301.66,158.36" /><polygon fill="#46eba4" points="476.71,29.56 468.76,28.26 483.02,34.24 490.95,35.46" /><polygon fill="#48de3e" points="509.28,55.37 507.61,45.49 500.57,43.97 502.38,54.09" /><polygon fill="#654d0d" points="237.97,244.33 235.10,246.49 226.98,253.19 230.22,250.73" /><polygon fill="#c3e968" points="213.78,256.27 207.29,246.44 199.88,253.32 206.33,263.04" /><polygon fill="#75c817" points="379.30,158.85 388.43,155.04 387.81,148.50 378.40,152.37" /><polygon fill="#a4f69d" points="253.07,167.57 243.96,173.90 252.05,189.70 261.65,183.06" /><polygon fill="#90fa9d" points="291.06,144.14 281.41,149.66 291.51,164.20 301.66,158.36" /><polygon fill="#83470d" points="366.39,164.80 369.90,163.00 360.29,167.48 357.21,169.08" /><polygon fill="#9ff89d" points="271.47,176.58 262.37,161.40 253.07,167.57 261.65,183.06" /><polygon fill="#6efc68" points="387.81,148.50 381.83,138.46 372.35,142.24 378.40,152.37" /><polygon fill="#95fa9d" points="291.51,164.20 281.41,149.66 271.83,155.42 281.43,170.28" /><polygon fill="#9af99d" points="271.83,155.42 262.37,161.40 271.47,176.58 281.43,170.28" /><polygon fill="#bbef8e" points="215.15,239.48 223.44,232.46 216.46,217.15 208.46,224.08" /><polygon fill="#78fe8e" points="352.62,150.89 362.60,146.39 351.68,133.62 341.92,137.91" /><polygon fill="#484e18" points="101.03,306.03 110.68,296.41 114.70,289.26 105.13,298.60" /><polygon fill="#674c0d" points="243.59,239.75 235.10,246.49 237.97,244.33 246.07,237.91" /><polygon fill="#a4bf17" points="213.78,256.27 219.27,259.83 226.98,253.19 221.67,249.40" /><polygon fill="#81460d" points="360.29,167.48 350.49,172.28 347.87,173.66 357.21,169.08" /><polygon fill="#bfec68" points="215.15,239.48 207.29,246.44 213.78,256.27 221.67,249.40" /><polygon fill="#78c817" points="368.73,156.59 369.90,163.00 379.30,158.85 378.40,152.37" /><polygon fill="#9e9606" points="72.82,325.32 83.72,325.20 86.28,318.34 75.23,318.19" /><polygon fill="#d5cbb8" points="71.32,260.79 66.88,275.99 70.53,267.49 74.86,252.44" /><polygon fill="#b7f18e" points="216.46,217.15 223.44,232.46 232.13,225.41 224.85,210.22" /><polygon fill="#9d3c18" points="463.85,72.07 451.37,76.65 459.71,76.01 472.50,71.48" /><polygon fill="#73fc68" points="372.35,142.24 362.60,146.39 368.73,156.59 378.40,152.37" /><polygon fill="#e5cc85" points="61.06,307.03 64.52,319.35 66.78,311.97 63.21,299.48" /><polygon fill="#694b0d" points="254.49,231.48 252.42,233.01 243.59,239.75 246.07,237.91" /><polygon fill="#7dfe8e" points="331.99,142.54 342.47,155.75 352.62,150.89 341.92,137.91" /><polygon fill="#686c04" points="101.03,306.03 89.60,311.03 86.28,318.34 97.66,313.06" /><polygon fill="#7e460d" points="347.87,173.66 350.49,172.28 340.56,177.39 338.40,178.52" /><polygon fill="#52e8b8" points="435.27,24.54 450.66,27.18 460.08,27.45 444.50,24.84" /><polygon fill="#6ea106" points="494.72,53.30 490.11,63.38 497.58,63.93 502.38,54.09" /><polygon fill="#a2c017" points="226.98,253.19 235.10,246.49 229.98,242.48 221.67,249.40" /><polygon fill="#decda4" points="66.15,291.46 66.88,275.99 64.03,284.05 63.21,299.48" /><polygon fill="#b2f48e" points="232.13,225.41 241.18,218.38 233.61,203.31 224.85,210.22" /><polygon fill="#7bc917" points="360.29,167.48 369.90,163.00 368.73,156.59 358.83,161.15" /><polygon fill="#d7c23e" points="66.78,311.97 64.52,319.35 72.82,325.32 75.23,318.19" /><polygon fill="#bbee68" points="229.98,242.48 223.44,232.46 215.15,239.48 221.67,249.40" /><polygon fill="#43f085" points="483.02,34.24 492.75,42.92 500.57,43.97 490.95,35.46" /><polygon fill="#8d6404" points="480.47,71.37 490.11,63.38 481.90,63.31 472.50,71.48" /><polygon fill="#82fe8e" points="332.17,160.93 342.47,155.75 331.99,142.54 321.94,147.51" /><polygon fill="#78fd68" points="368.73,156.59 362.60,146.39 352.62,150.89 358.83,161.15" /><polygon fill="#4aeda4" points="483.02,34.24 468.76,28.26 460.08,27.45 474.32,33.53" /><polygon fill="#aef58e" points="233.61,203.31 241.18,218.38 250.56,211.39 242.68,196.46" /><polygon fill="#9fc117" points="229.98,242.48 235.10,246.49 243.59,239.75 238.69,235.52" /><polygon fill="#87fe8e" points="311.81,152.79 321.78,166.42 332.17,160.93 321.94,147.51" /><polygon fill="#4ce03e" points="500.57,43.97 492.75,42.92 494.72,53.30 502.38,54.09" /><polygon fill="#7ec917" points="348.73,166.06 350.49,172.28 360.29,167.48 358.83,161.15" /><polygon fill="#b6f068" points="232.13,225.41 223.44,232.46 229.98,242.48 238.69,235.52" /><polygon fill="#4a4c18" points="114.70,289.26 119.43,281.76 109.99,290.77 105.13,298.60" /><polygon fill="#a9f78e" points="250.56,211.39 260.23,204.48 252.05,189.70 242.68,196.46" /><polygon fill="#7dfd68" points="352.62,150.89 342.47,155.75 348.73,166.06 358.83,161.15" /><polygon fill="#8cfe8e" points="311.35,172.20 321.78,166.42 311.81,152.79 301.66,158.36" /><polygon fill="#9dc317" points="243.59,239.75 252.42,233.01 247.75,228.56 238.69,235.52" /><polygon fill="#a4f98e" points="252.05,189.70 260.23,204.48 270.15,197.67 261.65,183.06" /><polygon fill="#91fd8e" points="291.51,164.20 300.92,178.25 311.35,172.20 301.66,158.36" /><polygon fill="#81c917" points="340.56,177.39 350.49,172.28 348.73,166.06 338.50,171.28" /><polygon fill="#d2cfb8" points="70.53,267.49 75.00,258.57 79.17,243.70 74.86,252.44" /><polygon fill="#9b3a18" points="442.41,77.77 451.37,76.65 463.85,72.07 454.53,73.18" /><polygon fill="#9ffa8e" points="270.15,197.67 280.27,191.01 271.47,176.58 261.65,183.06" /><polygon fill="#b2f268" points="247.75,228.56 241.18,218.38 232.13,225.41 238.69,235.52" /><polygon fill="#96fc8e" points="290.54,184.53 300.92,178.25 291.51,164.20 281.43,170.28" /><polygon fill="#9bfb8e" points="271.47,176.58 280.27,191.01 290.54,184.53 281.43,170.28" /><polygon fill="#9d9806" points="86.28,318.34 89.60,311.03 78.43,310.59 75.23,318.19" /><polygon fill="#82fd68" points="348.73,166.06 342.47,155.75 332.17,160.93 338.50,171.28" /><polygon fill="#9ac417" points="247.75,228.56 252.42,233.01 261.55,226.31 257.14,221.63" /><polygon fill="#c3cbcd" points="90.22,225.19 96.95,214.13 91.28,223.15 84.29,234.61" /><polygon fill="#686b04" points="93.70,303.27 89.60,311.03 101.03,306.03 105.13,298.60" /><polygon fill="#84c917" points="328.16,176.80 330.53,182.77 340.56,177.39 338.50,171.28" /><polygon fill="#e2d085" points="66.78,311.97 69.85,304.11 66.15,291.46 63.21,299.48" /><polygon fill="#56eab8" points="440.50,27.48 450.66,27.18 435.27,24.54 425.36,24.77" /><polygon fill="#adf468" points="250.56,211.39 241.18,218.38 247.75,228.56 257.14,221.63" /><polygon fill="#87fd68" points="332.17,160.93 321.78,166.42 328.16,176.80 338.50,171.28" /><polygon fill="#97c517" points="261.55,226.31 270.96,219.66 266.81,214.77 257.14,221.63" /><polygon fill="#6fa206" points="481.90,63.31 490.11,63.38 494.72,53.30 486.29,53.01" /><polygon fill="#62e1cd" points="414.79,25.58 401.53,26.88 390.80,28.22 403.57,26.98" /><polygon fill="#dbd1a4" points="70.53,267.49 66.88,275.99 66.15,291.46 69.92,282.96" /><polygon fill="#87c817" points="320.46,188.42 330.53,182.77 328.16,176.80 317.78,182.60" /><polygon fill="#8c6304" points="481.90,63.31 472.95,63.78 463.85,72.07 472.50,71.48" /><polygon fill="#a9f668" points="266.81,214.77 260.23,204.48 250.56,211.39 257.14,221.63" /><polygon fill="#95c617" points="266.81,214.77 270.96,219.66 280.58,213.11 276.71,208.01" /><polygon fill="#48f285" points="484.13,42.40 492.75,42.92 483.02,34.24 474.32,33.53" /><polygon fill="#d4c53e" points="78.43,310.59 69.85,304.11 66.78,311.97 75.23,318.19" /><polygon fill="#8cfc68" points="328.16,176.80 321.78,166.42 311.35,172.20 317.78,182.60" /><polygon fill="#8ac817" points="307.39,188.64 310.38,194.30 320.46,188.42 317.78,182.60" /><polygon fill="#92c617" points="280.58,213.11 290.39,206.67 286.81,201.38 276.71,208.01" /><polygon fill="#8cc817" points="300.34,200.40 310.38,194.30 307.39,188.64 297.05,194.92" /><polygon fill="#8fc717" points="286.81,201.38 290.39,206.67 300.34,200.40 297.05,194.92" /><polygon fill="#a4f768" points="270.15,197.67 260.23,204.48 266.81,214.77 276.71,208.01" /><polygon fill="#4fefa4" points="460.08,27.45 450.66,27.18 464.84,33.38 474.32,33.53" /><polygon fill="#91fc68" points="311.35,172.20 300.92,178.25 307.39,188.64 317.78,182.60" /><polygon fill="#4c4a18" points="109.99,290.77 119.43,281.76 124.87,273.93 115.63,282.58" /><polygon fill="#9ff968" points="286.81,201.38 280.27,191.01 270.15,197.67 276.71,208.01" /><polygon fill="#96fb68" points="307.39,188.64 300.92,178.25 290.54,184.53 297.05,194.92" /><polygon fill="#9afa68" points="290.54,184.53 280.27,191.01 286.81,201.38 297.05,194.92" /><polygon fill="#50e23e" points="494.72,53.30 492.75,42.92 484.13,42.40 486.29,53.01" /><polygon fill="#983918" points="444.53,74.84 432.85,79.40 442.41,77.77 454.53,73.18" /><polygon fill="#cfd2b8" points="79.17,243.70 75.00,258.57 80.32,249.25 84.29,234.61" /><polygon fill="#c0cecd" points="103.38,204.85 96.95,214.13 90.22,225.19 96.97,215.48" /><polygon fill="#9c9906" points="78.43,310.59 89.60,311.03 93.70,303.27 82.46,302.51" /><polygon fill="#696a04" points="109.99,290.77 98.62,295.09 93.70,303.27 105.13,298.60" /><polygon fill="#66e2cd" points="390.80,28.22 379.52,30.13 391.73,29.00 403.57,26.98" /><polygon fill="#5aebb8" points="414.79,25.58 429.61,28.38 440.50,27.48 425.36,24.77" /><polygon fill="#dfd485" points="66.15,291.46 69.85,304.11 73.75,295.76 69.92,282.96" /><polygon fill="#8b6304" points="463.85,72.07 472.95,63.78 463.25,64.79 454.53,73.18" /><polygon fill="#d8d4a4" points="74.55,274.01 75.00,258.57 70.53,267.49 69.92,282.96" /><polygon fill="#70a206" points="477.07,53.27 472.95,63.78 481.90,63.31 486.29,53.01" /><polygon fill="#4e4818" points="124.87,273.93 131.03,265.80 122.06,274.03 115.63,282.58" /><polygon fill="#4cf485" points="464.84,33.38 474.72,42.44 484.13,42.40 474.32,33.53" /><polygon fill="#d1c83e" points="73.75,295.76 69.85,304.11 78.43,310.59 82.46,302.51" /><polygon fill="#53f1a4" points="464.84,33.38 450.66,27.18 440.50,27.48 454.57,33.82" /><polygon fill="#953918" points="422.70,81.56 432.85,79.40 444.53,74.84 433.87,77.07" /><polygon fill="#bdd0cd" points="104.56,205.50 110.57,195.36 103.38,204.85 96.97,215.48" /><polygon fill="#cbd5b8" points="80.32,249.25 86.52,239.56 90.22,225.19 84.29,234.61" /><polygon fill="#54e43e" points="484.13,42.40 474.72,42.44 477.07,53.27 486.29,53.01" /><polygon fill="#6ae3cd" points="391.73,29.00 379.52,30.13 367.72,32.64 379.30,31.66" /><polygon fill="#5eedb8" points="418.01,29.92 429.61,28.38 414.79,25.58 403.57,26.98" /><polygon fill="#6a6904" points="104.38,286.49 98.62,295.09 109.99,290.77 115.63,282.58" /><polygon fill="#9b9a06" points="93.70,303.27 98.62,295.09 87.35,293.97 82.46,302.51" /><polygon fill="#504618" points="122.06,274.03 131.03,265.80 137.93,257.38 129.29,265.15" /><polygon fill="#8a6204" points="463.25,64.79 452.82,66.39 444.53,74.84 454.53,73.18" /><polygon fill="#dbd885" points="73.75,295.76 78.54,286.94 74.55,274.01 69.92,282.96" /><polygon fill="#d4d8a4" points="80.32,249.25 75.00,258.57 74.55,274.01 80.08,264.62" /><polygon fill="#72a306" points="463.25,64.79 472.95,63.78 477.07,53.27 467.06,54.12" /><polygon fill="#bad3cd" points="118.52,185.69 110.57,195.36 104.56,205.50 112.97,195.30" /><polygon fill="#923818" points="422.58,79.88 411.98,84.25 422.70,81.56 433.87,77.07" /><polygon fill="#6ee3cd" points="367.72,32.64 355.44,35.75 366.33,34.98 379.30,31.66" /><polygon fill="#51f685" points="464.49,43.08 474.72,42.44 464.84,33.38 454.57,33.82" /><polygon fill="#57f3a4" points="440.50,27.48 429.61,28.38 443.51,34.88 454.57,33.82" /><polygon fill="#cecb3e" points="87.35,293.97 78.54,286.94 73.75,295.76 82.46,302.51" /><polygon fill="#c8d8b8" points="90.22,225.19 86.52,239.56 93.60,229.51 96.97,215.48" /><polygon fill="#58e53e" points="477.07,53.27 474.72,42.44 464.49,43.08 467.06,54.12" /><polygon fill="#63eeb8" points="391.73,29.00 405.72,32.11 418.01,29.92 403.57,26.98" /><polygon fill="#6b6804" points="122.06,274.03 110.99,277.49 104.38,286.49 115.63,282.58" /><polygon fill="#534418" points="137.93,257.38 145.55,248.70 137.33,255.98 129.29,265.15" /><polygon fill="#b6d5cd" points="122.20,184.93 127.22,175.88 118.52,185.69 112.97,195.30" /><polygon fill="#9a9b06" points="87.35,293.97 98.62,295.09 104.38,286.49 93.13,284.99" /><polygon fill="#886204" points="444.53,74.84 452.82,66.39 441.67,68.60 433.87,77.07" /><polygon fill="#8f3718" points="400.72,87.49 411.98,84.25 422.58,79.88 410.68,83.28" /><polygon fill="#72e4cd" points="366.33,34.98 355.44,35.75 342.73,39.48 352.86,38.96" /><polygon fill="#d1dba4" points="86.53,254.82 86.52,239.56 80.32,249.25 80.08,264.62" /><polygon fill="#d8db85" points="74.55,274.01 78.54,286.94 84.24,277.66 80.08,264.62" /><polygon fill="#73a306" points="456.26,55.58 452.82,66.39 463.25,64.79 467.06,54.12" /><polygon fill="#c4dab8" points="93.60,229.51 101.59,219.17 104.56,205.50 96.97,215.48" /><polygon fill="#5cf4a4" points="443.51,34.88 429.61,28.38 418.01,29.92 431.69,36.60" /><polygon fill="#56f885" points="443.51,34.88 453.46,44.34 464.49,43.08 454.57,33.82" /><polygon fill="#cbce3e" points="84.24,277.66 78.54,286.94 87.35,293.97 93.13,284.99" /><polygon fill="#b3d7cd" points="136.64,165.99 127.22,175.88 122.20,184.93 132.23,174.44" /><polygon fill="#67efb8" points="392.77,34.98 405.72,32.11 391.73,29.00 379.30,31.66" /><polygon fill="#554318" points="137.33,255.98 145.55,248.70 153.89,239.81 146.16,246.54" /><polygon fill="#76e5cd" points="342.73,39.48 329.64,43.82 338.96,43.61 352.86,38.96" /><polygon fill="#6c6804" points="118.48,268.13 110.99,277.49 122.06,274.03 129.29,265.15" /><polygon fill="#5ce73e" points="464.49,43.08 453.46,44.34 456.26,55.58 467.06,54.12" /><polygon fill="#8d3718" points="398.21,87.29 388.97,91.28 400.72,87.49 410.68,83.28" /><polygon fill="#876204" points="441.67,68.60 429.81,71.44 422.58,79.88 433.87,77.07" /><polygon fill="#999c06" points="104.38,286.49 110.99,277.49 99.82,275.58 93.13,284.99" /><polygon fill="#afd9cd" points="143.03,163.89 146.75,156.06 136.64,165.99 132.23,174.44" /><polygon fill="#cddea4" points="93.60,229.51 86.52,239.56 86.53,254.82 93.91,244.63" /><polygon fill="#c1ddb8" points="104.56,205.50 101.59,219.17 110.47,208.55 112.97,195.30" /><polygon fill="#74a406" points="441.67,68.60 452.82,66.39 456.26,55.58 444.69,57.68" /><polygon fill="#7ae5cd" points="338.96,43.61 329.64,43.82 316.23,48.78 324.68,48.91" /><polygon fill="#d4df85" points="84.24,277.66 90.87,267.95 86.53,254.82 80.08,264.62" /><polygon fill="#584118" points="153.89,239.81 162.94,230.73 155.76,236.89 146.16,246.54" /><polygon fill="#6bf0b8" points="366.33,34.98 379.21,38.55 392.77,34.98 379.30,31.66" /><polygon fill="#61f6a4" points="418.01,29.92 405.72,32.11 419.12,39.00 431.69,36.60" /><polygon fill="#8a3618" points="376.76,95.62 388.97,91.28 398.21,87.29 385.22,91.90" /><polygon fill="#5bf985" points="441.64,46.26 453.46,44.34 443.51,34.88 431.69,36.60" /><polygon fill="#c8d13e" points="99.82,275.58 90.87,267.95 84.24,277.66 93.13,284.99" /><polygon fill="#6d6704" points="137.33,255.98 126.84,258.43 118.48,268.13 129.29,265.15" /><polygon fill="#acdbcd" points="157.53,146.15 146.75,156.06 143.03,163.89 154.55,153.33" /><polygon fill="#7ee5cd" points="316.23,48.78 302.57,54.33 310.10,54.87 324.68,48.91" /><polygon fill="#866104" points="422.58,79.88 429.81,71.44 417.28,74.92 410.68,83.28" /><polygon fill="#60e83e" points="456.26,55.58 453.46,44.34 441.64,46.26 444.69,57.68" /><polygon fill="#bde0b8" points="110.47,208.55 120.23,197.73 122.20,184.93 112.97,195.30" /><polygon fill="#989d06" points="99.82,275.58 110.99,277.49 118.48,268.13 107.43,265.77" /><polygon fill="#5a4018" points="155.76,236.89 162.94,230.73 172.67,221.52 166.13,227.07" /><polygon fill="#c9e1a4" points="102.24,234.09 101.59,219.17 93.60,229.51 93.91,244.63" /><polygon fill="#a8ddcd" points="166.75,142.84 168.92,136.32 157.53,146.15 154.55,153.33" /><polygon fill="#70f0b8" points="365.08,42.82 379.21,38.55 366.33,34.98 352.86,38.96" /><polygon fill="#873618" points="371.76,97.12 364.14,100.52 376.76,95.62 385.22,91.90" /><polygon fill="#81e5cd" points="310.10,54.87 302.57,54.33 288.73,60.47 295.30,61.46" /><polygon fill="#76a406" points="432.36,60.45 429.81,71.44 441.67,68.60 444.69,57.68" /><polygon fill="#d0e285" points="86.53,254.82 90.87,267.95 98.45,257.83 93.91,244.63" /><polygon fill="#65f7a4" points="419.12,39.00 405.72,32.11 392.77,34.98 405.85,42.11" /><polygon fill="#6e6604" points="136.07,248.43 126.84,258.43 137.33,255.98 146.16,246.54" /><polygon fill="#a5decd" points="180.88,126.62 168.92,136.32 166.75,142.84 179.57,132.47" /><polygon fill="#5ffb85" points="419.12,39.00 429.04,48.88 441.64,46.26 431.69,36.60" /><polygon fill="#85e5cd" points="288.73,60.47 274.78,67.17 280.37,68.66 295.30,61.46" /><polygon fill="#5d3e18" points="172.67,221.52 183.04,212.21 177.21,217.12 166.13,227.07" /><polygon fill="#c5d43e" points="98.45,257.83 90.87,267.95 99.82,275.58 107.43,265.77" /><polygon fill="#856104" points="417.28,74.92 404.11,79.06 398.21,87.29 410.68,83.28" /><polygon fill="#b9e2b8" points="122.20,184.93 120.23,197.73 130.86,186.75 132.23,174.44" /><polygon fill="#843518" points="351.16,105.97 364.14,100.52 371.76,97.12 357.89,102.94" /><polygon fill="#a1dfcd" points="192.95,122.29 193.35,117.11 180.88,126.62 179.57,132.47" /><polygon fill="#74f1b8" points="338.96,43.61 350.46,47.80 365.08,42.82 352.86,38.96" /><polygon fill="#89e5cd" points="280.37,68.66 274.78,67.17 260.81,74.40 265.39,76.43" /><polygon fill="#64e93e" points="441.64,46.26 429.04,48.88 432.36,60.45 444.69,57.68" /><polygon fill="#969e06" points="118.48,268.13 126.84,258.43 115.98,255.60 107.43,265.77" /><polygon fill="#c5e4a4" points="110.47,208.55 101.59,219.17 102.24,234.09 111.51,223.26" /><polygon fill="#9de1cd" points="206.25,107.86 193.35,117.11 192.95,122.29 206.81,112.37" /><polygon fill="#8de4cd" points="260.81,74.40 246.88,82.13 250.45,84.74 265.39,76.43" /><polygon fill="#5f3d18" points="177.21,217.12 183.04,212.21 194.03,202.86 188.97,207.11" /><polygon fill="#99e2cd" points="221.07,102.76 219.53,98.91 206.25,107.86 206.81,112.37" /><polygon fill="#91e3cd" points="250.45,84.74 246.88,82.13 233.10,90.31 235.65,93.53" /><polygon fill="#77a506" points="417.28,74.92 429.81,71.44 432.36,60.45 419.32,63.91" /><polygon fill="#6af8a4" points="392.77,34.98 379.21,38.55 391.90,45.94 405.85,42.11" /><polygon fill="#95e3cd" points="233.10,90.31 219.53,98.91 221.07,102.76 235.65,93.53" /><polygon fill="#6f6504" points="155.76,236.89 146.16,238.19 136.07,248.43 146.16,246.54" /><polygon fill="#cce585" points="98.45,257.83 107.00,247.35 102.24,234.09 93.91,244.63" /><polygon fill="#b5e4b8" points="130.86,186.75 142.32,175.67 143.03,163.89 132.23,174.44" /><polygon fill="#846104" points="398.21,87.29 404.11,79.06 390.37,83.87 385.22,91.90" /><polygon fill="#79f1b8" points="335.40,53.49 350.46,47.80 338.96,43.61 324.68,48.91" /><polygon fill="#64fc85" points="415.71,52.20 429.04,48.88 419.12,39.00 405.85,42.11" /><polygon fill="#c2d73e" points="115.98,255.60 107.00,247.35 98.45,257.83 107.43,265.77" /><polygon fill="#c1e6a4" points="121.72,212.17 120.23,197.73 110.47,208.55 111.51,223.26" /><polygon fill="#68ea3e" points="432.36,60.45 429.04,48.88 415.71,52.20 419.32,63.91" /><polygon fill="#959f06" points="115.98,255.60 126.84,258.43 136.07,248.43 125.45,245.11" /><polygon fill="#b1e6b8" points="143.03,163.89 142.32,175.67 154.56,164.56 154.55,153.33" /><polygon fill="#706504" points="157.07,227.74 146.16,238.19 155.76,236.89 166.13,227.07" /><polygon fill="#6ff8a4" points="391.90,45.94 379.21,38.55 365.08,42.82 377.33,50.50" /><polygon fill="#7df2b8" points="310.10,54.87 320.00,59.87 335.40,53.49 324.68,48.91" /><polygon fill="#79a506" points="405.59,68.07 404.11,79.06 417.28,74.92 419.32,63.91" /><polygon fill="#836104" points="390.37,83.87 376.09,89.33 371.76,97.12 385.22,91.90" /><polygon fill="#c8e885" points="102.24,234.09 107.00,247.35 116.50,236.54 111.51,223.26" /><polygon fill="#ade8b8" points="154.56,164.56 167.55,153.49 166.75,142.84 154.55,153.33" /><polygon fill="#69fd85" points="391.90,45.94 401.67,56.26 415.71,52.20 405.85,42.11" /><polygon fill="#82f2b8" points="304.33,66.92 320.00,59.87 310.10,54.87 295.30,61.46" /><polygon fill="#bed93e" points="116.50,236.54 107.00,247.35 115.98,255.60 125.45,245.11" /><polygon fill="#bde9a4" points="130.86,186.75 120.23,197.73 121.72,212.17 132.84,200.89" /><polygon fill="#716404" points="177.21,217.12 168.79,217.15 157.07,227.74 166.13,227.07" /><polygon fill="#94a006" points="136.07,248.43 146.16,238.19 135.85,234.35 125.45,245.11" /><polygon fill="#74f9a4" points="365.08,42.82 350.46,47.80 362.21,55.81 377.33,50.50" /><polygon fill="#816104" points="371.76,97.12 376.09,89.33 361.36,95.44 357.89,102.94" /><polygon fill="#6ceb3e" points="415.71,52.20 401.67,56.26 405.59,68.07 419.32,63.91" /><polygon fill="#a9eab8" points="166.75,142.84 167.55,153.49 181.20,142.52 179.57,132.47" /><polygon fill="#86f1b8" points="280.37,68.66 288.49,74.62 304.33,66.92 295.30,61.46" /><polygon fill="#7aa506" points="390.37,83.87 404.11,79.06 405.59,68.07 391.23,72.94" /><polygon fill="#c4eb85" points="116.50,236.54 126.96,225.46 121.72,212.17 111.51,223.26" /><polygon fill="#a5ebb8" points="181.20,142.52 195.45,131.73 192.95,122.29 179.57,132.47" /><polygon fill="#726404" points="181.25,206.47 168.79,217.15 177.21,217.12 188.97,207.11" /><polygon fill="#8bf1b8" points="272.58,82.92 288.49,74.62 280.37,68.66 265.39,76.43" /><polygon fill="#b9eba4" points="144.83,189.48 142.32,175.67 130.86,186.75 132.84,200.89" /><polygon fill="#6efe85" points="386.99,61.05 401.67,56.26 391.90,45.94 377.33,50.50" /><polygon fill="#806104" points="361.36,95.44 346.24,102.19 343.69,109.33 357.89,102.94" /><polygon fill="#a1edb8" points="192.95,122.29 195.45,131.73 210.22,121.20 206.81,112.37" /><polygon fill="#8ff0b8" points="250.45,84.74 256.69,91.78 272.58,82.92 265.39,76.43" /><polygon fill="#badc3e" points="135.85,234.35 126.96,225.46 116.50,236.54 125.45,245.11" /><polygon fill="#78f9a4" points="362.21,55.81 350.46,47.80 335.40,53.49 346.61,61.84" /><polygon fill="#93a006" points="135.85,234.35 146.16,238.19 157.07,227.74 147.14,223.37" /><polygon fill="#9ceeb8" points="210.22,121.20 225.41,110.98 221.07,102.76 206.81,112.37" /><polygon fill="#94f0b8" points="240.94,101.16 256.69,91.78 250.45,84.74 235.65,93.53" /><polygon fill="#98efb8" points="221.07,102.76 225.41,110.98 240.94,101.16 235.65,93.53" /><polygon fill="#71ec3e" points="405.59,68.07 401.67,56.26 386.99,61.05 391.23,72.94" /><polygon fill="#7ca506" points="376.30,78.51 376.09,89.33 390.37,83.87 391.23,72.94" /><polygon fill="#736304" points="201.37,197.09 194.41,195.78 181.25,206.47 188.97,207.11" /><polygon fill="#7f6104" points="343.69,109.33 346.24,102.19 330.82,109.55 329.22,116.28" /><polygon fill="#b5eda4" points="154.56,164.56 142.32,175.67 144.83,189.48 157.66,178.00" /><polygon fill="#c0ed85" points="121.72,212.17 126.96,225.46 138.34,214.15 132.84,200.89" /><polygon fill="#7dfaa4" points="335.40,53.49 320.00,59.87 330.62,68.59 346.61,61.84" /><polygon fill="#73fe85" points="362.21,55.81 371.73,66.58 386.99,61.05 377.33,50.50" /><polygon fill="#746304" points="208.20,185.12 194.41,195.78 201.37,197.09 214.33,187.11" /><polygon fill="#91a106" points="157.07,227.74 168.79,217.15 159.28,212.23 147.14,223.37" /><polygon fill="#7e6104" points="330.82,109.55 315.20,117.49 314.57,123.76 329.22,116.28" /><polygon fill="#b7de3e" points="138.34,214.15 126.96,225.46 135.85,234.35 147.14,223.37" /><polygon fill="#7da506" points="361.36,95.44 376.09,89.33 376.30,78.51 360.88,84.79" /><polygon fill="#75ec3e" points="386.99,61.05 371.73,66.58 376.30,78.51 391.23,72.94" /><polygon fill="#b0efa4" points="171.26,166.54 167.55,153.49 154.56,164.56 157.66,178.00" /><polygon fill="#756204" points="227.79,177.25 222.54,174.59 208.20,185.12 214.33,187.11" /><polygon fill="#7c6104" points="314.57,123.76 315.20,117.49 299.46,125.96 299.83,131.72" /><polygon fill="#82faa4" points="330.62,68.59 320.00,59.87 304.33,66.92 314.32,76.03" /><polygon fill="#bcf085" points="138.34,214.15 150.61,202.70 144.83,189.48 132.84,200.89" /><polygon fill="#776204" points="237.36,164.23 222.54,174.59 227.79,177.25 241.68,167.57" /><polygon fill="#7b6104" points="299.46,125.96 283.70,134.93 285.08,140.13 299.83,131.72" /><polygon fill="#90a206" points="159.28,212.23 168.79,217.15 181.25,206.47 172.24,201.00" /><polygon fill="#78ff85" points="355.97,72.84 371.73,66.58 362.21,55.81 346.61,61.84" /><polygon fill="#786204" points="255.92,158.11 252.55,154.13 237.36,164.23 241.68,167.57" /><polygon fill="#7a6104" points="285.08,140.13 283.70,134.93 268.03,144.34 270.41,148.95" /><polygon fill="#acf1a4" points="181.20,142.52 167.55,153.49 171.26,166.54 185.57,155.16" /><polygon fill="#796104" points="268.03,144.34 252.55,154.13 255.92,158.11 270.41,148.95" /><polygon fill="#7fa606" points="345.04,91.76 346.24,102.19 361.36,95.44 360.88,84.79" /><polygon fill="#b3e03e" points="159.28,212.23 150.61,202.70 138.34,214.15 147.14,223.37" /><polygon fill="#87f9a4" points="304.33,66.92 288.49,74.62 297.81,84.14 314.32,76.03" /><polygon fill="#79ed3e" points="376.30,78.51 371.73,66.58 355.97,72.84 360.88,84.79" /><polygon fill="#a8f3a4" points="200.50,143.94 195.45,131.73 181.20,142.52 185.57,155.16" /><polygon fill="#b7f285" points="144.83,189.48 150.61,202.70 163.72,191.16 157.66,178.00" /><polygon fill="#8bf9a4" points="297.81,84.14 288.49,74.62 272.58,82.92 281.21,92.88" /><polygon fill="#8fa206" points="181.25,206.47 194.41,195.78 185.95,189.75 172.24,201.00" /><polygon fill="#7dff85" points="330.62,68.59 339.78,79.82 355.97,72.84 346.61,61.84" /><polygon fill="#80a606" points="330.82,109.55 346.24,102.19 345.04,91.76 328.87,99.39" /><polygon fill="#a3f4a4" points="210.22,121.20 195.45,131.73 200.50,143.94 215.97,132.96" /><polygon fill="#90f8a4" points="272.58,82.92 256.69,91.78 264.61,102.18 281.21,92.88" /><polygon fill="#afe23e" points="163.72,191.16 150.61,202.70 159.28,212.23 172.24,201.00" /><polygon fill="#9ef6a4" points="231.88,122.29 225.41,110.98 210.22,121.20 215.97,132.96" /><polygon fill="#95f8a4" points="264.61,102.18 256.69,91.78 240.94,101.16 248.13,112.01" /><polygon fill="#9af7a4" points="240.94,101.16 225.41,110.98 231.88,122.29 248.13,112.01" /><polygon fill="#7ded3e" points="355.97,72.84 339.78,79.82 345.04,91.76 360.88,84.79" /><polygon fill="#8da306" points="185.95,189.75 194.41,195.78 208.20,185.12 200.35,178.54" /><polygon fill="#b3f485" points="163.72,191.16 177.62,179.60 171.26,166.54 157.66,178.00" /><polygon fill="#82a506" points="312.48,107.64 315.20,117.49 330.82,109.55 328.87,99.39" /><polygon fill="#82ff85" points="323.26,87.49 339.78,79.82 330.62,68.59 314.32,76.03" /><polygon fill="#8ca306" points="208.20,185.12 222.54,174.59 215.34,167.46 200.35,178.54" /><polygon fill="#abe43e" points="185.95,189.75 177.62,179.60 163.72,191.16 172.24,201.00" /><polygon fill="#83a506" points="299.46,125.96 315.20,117.49 312.48,107.64 295.97,116.48" /><polygon fill="#82ed3e" points="345.04,91.76 339.78,79.82 323.26,87.49 328.87,99.39" /><polygon fill="#aef685" points="171.26,166.54 177.62,179.60 192.23,168.11 185.57,155.16" /><polygon fill="#8ba406" points="215.34,167.46 222.54,174.59 237.36,164.23 230.85,156.57" /><polygon fill="#87ff85" points="297.81,84.14 306.52,95.82 323.26,87.49 314.32,76.03" /><polygon fill="#85a506" points="279.44,125.85 283.70,134.93 299.46,125.96 295.97,116.48" /><polygon fill="#89a406" points="237.36,164.23 252.55,154.13 246.77,145.96 230.85,156.57" /><polygon fill="#86a506" points="268.03,144.34 283.70,134.93 279.44,125.85 263.00,135.70" /><polygon fill="#88a506" points="246.77,145.96 252.55,154.13 268.03,144.34 263.00,135.70" /><polygon fill="#a7e53e" points="192.23,168.11 177.62,179.60 185.95,189.75 200.35,178.54" /><polygon fill="#a9f885" points="192.23,168.11 207.47,156.75 200.50,143.94 185.57,155.16" /><polygon fill="#86ed3e" points="323.26,87.49 306.52,95.82 312.48,107.64 328.87,99.39" /><polygon fill="#8cfe85" points="289.65,104.77 306.52,95.82 297.81,84.14 281.21,92.88" /><polygon fill="#a4f985" points="200.50,143.94 207.47,156.75 223.25,145.62 215.97,132.96" /><polygon fill="#91fe85" points="264.61,102.18 272.78,114.29 289.65,104.77 281.21,92.88" /><polygon fill="#a3e73e" points="215.34,167.46 207.47,156.75 192.23,168.11 200.35,178.54" /><polygon fill="#8aec3e" points="312.48,107.64 306.52,95.82 289.65,104.77 295.97,116.48" /><polygon fill="#a0fb85" points="223.25,145.62 239.47,134.78 231.88,122.29 215.97,132.96" /><polygon fill="#96fd85" points="256.02,124.31 272.78,114.29 264.61,102.18 248.13,112.01" /><polygon fill="#9bfc85" points="231.88,122.29 239.47,134.78 256.02,124.31 248.13,112.01" /><polygon fill="#9fe83e" points="223.25,145.62 207.47,156.75 215.34,167.46 230.85,156.57" /><polygon fill="#8eec3e" points="289.65,104.77 272.78,114.29 279.44,125.85 295.97,116.48" /><polygon fill="#9be93e" points="246.77,145.96 239.47,134.78 223.25,145.62 230.85,156.57" /><polygon fill="#93eb3e" points="279.44,125.85 272.78,114.29 256.02,124.31 263.00,135.70" /><polygon fill="#97ea3e" points="256.02,124.31 239.47,134.78 246.77,145.96 263.00,135.70" /></g><g fill="black" font-family="Arial" font-size="12" text-anchor="end"><circle cx="363.89" cy="309.87" r="2" /><polyline fill="none" points="363.89,309.87 389.98,351.41 489.98,351.41" stroke="black" /><text x="489.98" y="346.41">Shader</text><text font-weight="bold" x="489.98" y="363.41">Normal/RGB</text></g></svg>
</div>
</div>
</div>
</div>
</body>
</html>