This repository has been archived by the owner on Jul 15, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
figure.html
1334 lines (1321 loc) · 204 KB
/
figure.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
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en"><head><meta charset="UTF-8"/><meta name="viewport" content="width=device-width, initial-scale=1.0"/><title>Figure · Makie Plotting Ecosystem</title><link href="https://fonts.googleapis.com/css?family=Lato|Roboto+Mono" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/fontawesome.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/solid.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.0/css/brands.min.css" rel="stylesheet" type="text/css"/><link href="https://cdnjs.cloudflare.com/ajax/libs/KaTeX/0.11.1/katex.min.css" rel="stylesheet" type="text/css"/><script>documenterBaseURL="."</script><script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.6/require.min.js" data-main="assets/documenter.js"></script><script src="siteinfo.js"></script><script src="../versions.js"></script><link class="docs-theme-link" rel="stylesheet" type="text/css" href="assets/themes/documenter-dark.css" data-theme-name="documenter-dark" data-theme-primary-dark/><link class="docs-theme-link" rel="stylesheet" type="text/css" href="assets/themes/documenter-light.css" data-theme-name="documenter-light" data-theme-primary/><script src="assets/themeswap.js"></script><link href="assets/favicon.ico" rel="icon" type="image/x-icon"/><link href="assets/syntaxtheme.css" rel="stylesheet" type="text/css"/></head><body><div id="documenter"><nav class="docs-sidebar"><a class="docs-logo" href="index.html"><img src="assets/logo.png" alt="Makie Plotting Ecosystem logo"/></a><div class="docs-package-name"><span class="docs-autofit">Makie Plotting Ecosystem</span></div><form class="docs-search" action="search.html"><input class="docs-search-query" id="documenter-search-query" name="q" type="text" placeholder="Search docs"/></form><ul class="docs-menu"><li><a class="tocitem" href="index.html">Home</a></li><li><span class="tocitem">Basics</span><ul><li><a class="tocitem" href="basic-tutorial.html">Basic Tutorial</a></li><li><a class="tocitem" href="makielayout/tutorial.html">Layout Tutorial</a></li><li><a class="tocitem" href="animation.html">Animations</a></li><li><a class="tocitem" href="interaction.html">Observables & Interaction</a></li><li><input class="collapse-toggle" id="menuitem-2-5" type="checkbox"/><label class="tocitem" for="menuitem-2-5"><span class="docs-label">Plotting Functions</span><i class="docs-chevron"></i></label><ul class="collapsed"><li><a class="tocitem" href="plotting_functions/arrows.html">arrows</a></li><li><a class="tocitem" href="plotting_functions/band.html">band</a></li><li><a class="tocitem" href="plotting_functions/barplot.html">barplot</a></li><li><a class="tocitem" href="plotting_functions/contour.html">contour</a></li><li><a class="tocitem" href="plotting_functions/contourf.html">contourf</a></li><li><a class="tocitem" href="plotting_functions/density.html">density</a></li><li><a class="tocitem" href="plotting_functions/errorbars.html">errorbars</a></li><li><a class="tocitem" href="plotting_functions/heatmap.html">heatmap</a></li><li><a class="tocitem" href="plotting_functions/hist.html">hist</a></li><li><a class="tocitem" href="plotting_functions/image.html">image</a></li><li><a class="tocitem" href="plotting_functions/lines.html">lines</a></li><li><a class="tocitem" href="plotting_functions/linesegments.html">linesegments</a></li><li><a class="tocitem" href="plotting_functions/mesh.html">mesh</a></li><li><a class="tocitem" href="plotting_functions/meshscatter.html">meshscatter</a></li><li><a class="tocitem" href="plotting_functions/poly.html">poly</a></li><li><a class="tocitem" href="plotting_functions/rangebars.html">rangebars</a></li><li><a class="tocitem" href="plotting_functions/scatter.html">scatter</a></li><li><a class="tocitem" href="plotting_functions/scatterlines.html">scatterlines</a></li><li><a class="tocitem" href="plotting_functions/stem.html">stem</a></li><li><a class="tocitem" href="plotting_functions/surface.html">surface</a></li><li><a class="tocitem" href="plotting_functions/text.html">text</a></li><li><a class="tocitem" href="plotting_functions/volume.html">volume</a></li></ul></li><li><a class="tocitem" href="theming.html">Theming</a></li></ul></li><li><span class="tocitem">Documentation</span><ul><li><a class="tocitem" href="plot_method_signatures.html">Plot Method Signatures</a></li><li class="is-active"><a class="tocitem" href="figure.html">Figure</a><ul class="internal"><li><a class="tocitem" href="#Creating-A-Figure"><span>Creating A Figure</span></a></li><li><a class="tocitem" href="#Placing-Layoutables-Into-A-Figure"><span>Placing Layoutables Into A Figure</span></a></li><li><a class="tocitem" href="#FigurePositions-and-FigureSubpositions"><span>FigurePositions and FigureSubpositions</span></a></li><li><a class="tocitem" href="#Retrieving-Objects-From-A-Figure"><span>Retrieving Objects From A Figure</span></a></li></ul></li><li><input class="collapse-toggle" id="menuitem-3-3" type="checkbox"/><label class="tocitem" for="menuitem-3-3"><span class="docs-label">Layoutables & Widgets</span><i class="docs-chevron"></i></label><ul class="collapsed"><li><a class="tocitem" href="makielayout/layoutables.html">Layoutables</a></li><li><a class="tocitem" href="makielayout/axis.html">Axis</a></li><li><a class="tocitem" href="makielayout/box.html">Box</a></li><li><a class="tocitem" href="makielayout/button.html">Button</a></li><li><a class="tocitem" href="makielayout/colorbar.html">Colorbar</a></li><li><a class="tocitem" href="makielayout/gridlayout.html">GridLayout</a></li><li><a class="tocitem" href="makielayout/label.html">Label</a></li><li><a class="tocitem" href="makielayout/legend.html">Legend</a></li><li><a class="tocitem" href="makielayout/lscene.html">LScene</a></li><li><a class="tocitem" href="makielayout/menu.html">Menu</a></li><li><a class="tocitem" href="makielayout/slider.html">Slider</a></li><li><a class="tocitem" href="makielayout/toggle.html">Toggle</a></li></ul></li><li><a class="tocitem" href="makielayout/layouting.html">How layouts work</a></li><li><a class="tocitem" href="generated/colors.html">Colors</a></li><li><a class="tocitem" href="generated/plot-attributes.html">Plot attributes</a></li><li><a class="tocitem" href="recipes.html">Plot Recipes</a></li><li><a class="tocitem" href="backends_and_output.html">Backends & Output</a></li><li><a class="tocitem" href="scenes.html">Scenes</a></li><li><a class="tocitem" href="lighting.html">Lighting</a></li><li><a class="tocitem" href="cameras.html">Cameras</a></li><li><a class="tocitem" href="faq.html">Frequently Asked Questions</a></li><li><a class="tocitem" href="abstractplotting_api.html">API Reference AbstractPlotting</a></li><li><a class="tocitem" href="makielayout/reference.html">API Reference MakieLayout</a></li><li><a class="tocitem" href="generated/axis.html">Integrated Axes (Axis2D / Axis3D)</a></li></ul></li></ul><div class="docs-version-selector field has-addons"><div class="control"><span class="docs-label button is-static is-size-7">Version</span></div><div class="docs-selector control is-expanded"><div class="select is-fullwidth is-size-7"><select id="documenter-version-selector"></select></div></div></div></nav><div class="docs-main"><header class="docs-navbar"><nav class="breadcrumb"><ul class="is-hidden-mobile"><li><a class="is-disabled">Documentation</a></li><li class="is-active"><a href="figure.html">Figure</a></li></ul><ul class="is-hidden-tablet"><li class="is-active"><a href="figure.html">Figure</a></li></ul></nav><div class="docs-right"><a class="docs-edit-link" href="https://github.com/JuliaPlots/AbstractPlotting.jl/blob/master/docs/src/figure.md#" title="Edit on GitHub"><span class="docs-icon fab"></span><span class="docs-label is-hidden-touch">Edit on GitHub</span></a><a class="docs-settings-button fas fa-cog" id="documenter-settings-button" href="#" title="Settings"></a><a class="docs-sidebar-button fa fa-bars is-hidden-desktop" id="documenter-sidebar-button" href="#"></a></div></header><article class="content" id="documenter-page"><h1 id="Figure"><a class="docs-heading-anchor" href="#Figure">Figure</a><a id="Figure-1"></a><a class="docs-heading-anchor-permalink" href="#Figure" title="Permalink"></a></h1><p>The <code>Figure</code> object contains a top-level <code>Scene</code> and a <code>GridLayout</code>, as well as a list of layoutables that have been placed into it, like <code>Axis</code>, <code>Colorbar</code>, <code>Slider</code>, <code>Legend</code>, etc.</p><div class="admonition is-info"><header class="admonition-header">Note</header><div class="admonition-body"><p>Wherever you see the old <code>scene, layout = layoutscene()</code> workflow from MakieLayout, you can imagine that the <code>Figure</code> takes over the role of both <code>scene</code> and <code>layout</code>, plus additional conveniences like keeping track of layoutables.</p></div></div><h2 id="Creating-A-Figure"><a class="docs-heading-anchor" href="#Creating-A-Figure">Creating A Figure</a><a id="Creating-A-Figure-1"></a><a class="docs-heading-anchor-permalink" href="#Creating-A-Figure" title="Permalink"></a></h2><p>You can create a figure explicitly with the <code>Figure()</code> function, and set attributes of the underlying scene. The most important one of which is the <code>resolution</code>.</p><pre><code class="language-julia">f = Figure()
f = Figure(resolution = (600, 400))</code></pre><p>A figure is also created implicitly when you use simple, non-mutating plotting commands like <code>plot()</code>, <code>scatter()</code>, <code>lines()</code>, etc. Because these commands also create an axis for the plot to live in and the plot itself, they return a compound object <code>FigureAxisPlot</code>, which just stores these three parts. To access the figure you can either destructure that object into its three parts or access the figure field directly.</p><pre><code class="language-julia">figureaxisplot = scatter(rand(100, 2))
figure = figureaxisplot.figure
# destructuring syntax
figure, axis, plot = scatter(rand(100, 2))
# you can also ignore components
figure, _ = scatter(rand(100, 2))</code></pre><p>You can pass arguments to the created figure in a dict-like object to the special <code>figure</code> keyword:</p><pre><code class="language-julia">scatter(rand(100, 2), figure = (resolution = (600, 400),))</code></pre><h2 id="Placing-Layoutables-Into-A-Figure"><a class="docs-heading-anchor" href="#Placing-Layoutables-Into-A-Figure">Placing Layoutables Into A Figure</a><a id="Placing-Layoutables-Into-A-Figure-1"></a><a class="docs-heading-anchor-permalink" href="#Placing-Layoutables-Into-A-Figure" title="Permalink"></a></h2><p>All layoutables take their parent figure as the first argument, then you can place them in the figure layout via indexing syntax.</p><pre><code class="language-julia">f = Figure()
ax = f[1, 1] = Axis(f)
sl = f[2, 1] = Slider(f)</code></pre><h2 id="FigurePositions-and-FigureSubpositions"><a class="docs-heading-anchor" href="#FigurePositions-and-FigureSubpositions">FigurePositions and FigureSubpositions</a><a id="FigurePositions-and-FigureSubpositions-1"></a><a class="docs-heading-anchor-permalink" href="#FigurePositions-and-FigureSubpositions" title="Permalink"></a></h2><p>The indexing syntax of <code>Figure</code> is implemented to work seamlessly with layouting. If you index into the figure, a <code>FigurePosition</code> object that stores this indexing operation is created. This object can be used to plot a new axis into a certain layout position in the figure, for example like this:</p><pre><code class="language-julia">using CairoMakie
f = Figure(resolution = (800, 600))
pos = f[1, 1]
scatter(pos, rand(100, 2))
pos2 = f[1, 2]
lines(pos2, cumsum(randn(100)))
# you don't have to store the position in a variable first, of course
heatmap(f[1, 3], randn(10, 10))
f</code></pre><img src='data:image/svg+xml;utf-8,<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800pt" height="600pt" viewBox="0 0 800 600" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 2.140625 -2.484375 L 4.203125 -2.484375 L 4.203125 0 L 2.140625 0 Z M 2.140625 -2.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 8.109375 -7.859375 C 9.054688 -7.660156 9.796875 -7.238281 10.328125 -6.59375 C 10.859375 -5.957031 11.125 -5.171875 11.125 -4.234375 C 11.125 -2.796875 10.628906 -1.679688 9.640625 -0.890625 C 8.648438 -0.109375 7.242188 0.28125 5.421875 0.28125 C 4.804688 0.28125 4.175781 0.21875 3.53125 0.09375 C 2.882812 -0.0195312 2.21875 -0.195312 1.53125 -0.4375 L 1.53125 -2.34375 C 2.070312 -2.019531 2.664062 -1.773438 3.3125 -1.609375 C 3.96875 -1.453125 4.648438 -1.375 5.359375 -1.375 C 6.597656 -1.375 7.539062 -1.617188 8.1875 -2.109375 C 8.832031 -2.597656 9.15625 -3.304688 9.15625 -4.234375 C 9.15625 -5.097656 8.851562 -5.769531 8.25 -6.25 C 7.65625 -6.738281 6.820312 -6.984375 5.75 -6.984375 L 4.046875 -6.984375 L 4.046875 -8.609375 L 5.828125 -8.609375 C 6.796875 -8.609375 7.535156 -8.800781 8.046875 -9.1875 C 8.554688 -9.570312 8.8125 -10.128906 8.8125 -10.859375 C 8.8125 -11.609375 8.546875 -12.179688 8.015625 -12.578125 C 7.492188 -12.984375 6.738281 -13.1875 5.75 -13.1875 C 5.207031 -13.1875 4.625 -13.125 4 -13 C 3.382812 -12.882812 2.707031 -12.707031 1.96875 -12.46875 L 1.96875 -14.21875 C 2.71875 -14.425781 3.414062 -14.582031 4.0625 -14.6875 C 4.71875 -14.789062 5.335938 -14.84375 5.921875 -14.84375 C 7.421875 -14.84375 8.601562 -14.5 9.46875 -13.8125 C 10.34375 -13.132812 10.78125 -12.21875 10.78125 -11.0625 C 10.78125 -10.257812 10.546875 -9.578125 10.078125 -9.015625 C 9.617188 -8.460938 8.960938 -8.078125 8.109375 -7.859375 Z M 8.109375 -7.859375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 6.609375 -8.078125 C 5.722656 -8.078125 5.019531 -7.773438 4.5 -7.171875 C 3.976562 -6.566406 3.71875 -5.734375 3.71875 -4.671875 C 3.71875 -3.628906 3.976562 -2.800781 4.5 -2.1875 C 5.019531 -1.582031 5.722656 -1.28125 6.609375 -1.28125 C 7.492188 -1.28125 8.191406 -1.582031 8.703125 -2.1875 C 9.222656 -2.800781 9.484375 -3.628906 9.484375 -4.671875 C 9.484375 -5.734375 9.222656 -6.566406 8.703125 -7.171875 C 8.191406 -7.773438 7.492188 -8.078125 6.609375 -8.078125 Z M 10.515625 -14.265625 L 10.515625 -12.46875 C 10.023438 -12.695312 9.523438 -12.875 9.015625 -13 C 8.515625 -13.125 8.015625 -13.1875 7.515625 -13.1875 C 6.210938 -13.1875 5.21875 -12.742188 4.53125 -11.859375 C 3.84375 -10.984375 3.453125 -9.65625 3.359375 -7.875 C 3.742188 -8.445312 4.222656 -8.882812 4.796875 -9.1875 C 5.378906 -9.488281 6.019531 -9.640625 6.71875 -9.640625 C 8.1875 -9.640625 9.34375 -9.191406 10.1875 -8.296875 C 11.039062 -7.410156 11.46875 -6.203125 11.46875 -4.671875 C 11.46875 -3.179688 11.023438 -1.984375 10.140625 -1.078125 C 9.253906 -0.171875 8.078125 0.28125 6.609375 0.28125 C 4.921875 0.28125 3.628906 -0.363281 2.734375 -1.65625 C 1.835938 -2.945312 1.390625 -4.820312 1.390625 -7.28125 C 1.390625 -9.582031 1.9375 -11.414062 3.03125 -12.78125 C 4.125 -14.15625 5.59375 -14.84375 7.4375 -14.84375 C 7.9375 -14.84375 8.4375 -14.789062 8.9375 -14.6875 C 9.445312 -14.59375 9.972656 -14.453125 10.515625 -14.265625 Z M 10.515625 -14.265625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.203125 -0.296875 L 2.203125 -2.09375 C 2.691406 -1.863281 3.191406 -1.6875 3.703125 -1.5625 C 4.210938 -1.4375 4.710938 -1.375 5.203125 -1.375 C 6.503906 -1.375 7.492188 -1.8125 8.171875 -2.6875 C 8.859375 -3.5625 9.253906 -4.894531 9.359375 -6.6875 C 8.984375 -6.125 8.503906 -5.691406 7.921875 -5.390625 C 7.335938 -5.085938 6.695312 -4.9375 6 -4.9375 C 4.539062 -4.9375 3.382812 -5.378906 2.53125 -6.265625 C 1.6875 -7.148438 1.265625 -8.359375 1.265625 -9.890625 C 1.265625 -11.378906 1.707031 -12.578125 2.59375 -13.484375 C 3.476562 -14.390625 4.65625 -14.84375 6.125 -14.84375 C 7.8125 -14.84375 9.097656 -14.195312 9.984375 -12.90625 C 10.867188 -11.613281 11.3125 -9.738281 11.3125 -7.28125 C 11.3125 -4.976562 10.765625 -3.140625 9.671875 -1.765625 C 8.585938 -0.398438 7.125 0.28125 5.28125 0.28125 C 4.789062 0.28125 4.289062 0.226562 3.78125 0.125 C 3.269531 0.03125 2.742188 -0.109375 2.203125 -0.296875 Z M 6.125 -6.484375 C 7.007812 -6.484375 7.707031 -6.785156 8.21875 -7.390625 C 8.738281 -7.992188 9 -8.828125 9 -9.890625 C 9 -10.929688 8.738281 -11.753906 8.21875 -12.359375 C 7.707031 -12.972656 7.007812 -13.28125 6.125 -13.28125 C 5.238281 -13.28125 4.535156 -12.972656 4.015625 -12.359375 C 3.503906 -11.753906 3.25 -10.929688 3.25 -9.890625 C 3.25 -8.828125 3.503906 -7.992188 4.015625 -7.390625 C 4.535156 -6.785156 5.238281 -6.484375 6.125 -6.484375 Z M 6.125 -6.484375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 0.984375 -6.28125 L 6.234375 -6.28125 L 6.234375 -4.671875 L 0.984375 -4.671875 Z M 0.984375 -6.28125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 3.84375 -1.65625 L 10.71875 -1.65625 L 10.71875 0 L 1.46875 0 L 1.46875 -1.65625 C 2.21875 -2.4375 3.238281 -3.476562 4.53125 -4.78125 C 5.820312 -6.082031 6.632812 -6.925781 6.96875 -7.3125 C 7.59375 -8.019531 8.03125 -8.617188 8.28125 -9.109375 C 8.53125 -9.597656 8.65625 -10.082031 8.65625 -10.5625 C 8.65625 -11.332031 8.382812 -11.960938 7.84375 -12.453125 C 7.300781 -12.941406 6.59375 -13.1875 5.71875 -13.1875 C 5.101562 -13.1875 4.453125 -13.078125 3.765625 -12.859375 C 3.078125 -12.648438 2.34375 -12.328125 1.5625 -11.890625 L 1.5625 -13.875 C 2.351562 -14.195312 3.09375 -14.4375 3.78125 -14.59375 C 4.476562 -14.757812 5.113281 -14.84375 5.6875 -14.84375 C 7.195312 -14.84375 8.398438 -14.460938 9.296875 -13.703125 C 10.191406 -12.953125 10.640625 -11.945312 10.640625 -10.6875 C 10.640625 -10.082031 10.523438 -9.507812 10.296875 -8.96875 C 10.078125 -8.4375 9.671875 -7.804688 9.078125 -7.078125 C 8.921875 -6.890625 8.40625 -6.34375 7.53125 -5.4375 C 6.65625 -4.539062 5.425781 -3.28125 3.84375 -1.65625 Z M 3.84375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d="M 1.640625 -14.578125 L 11.015625 -14.578125 L 11.015625 -13.734375 L 5.71875 0 L 3.65625 0 L 8.640625 -12.921875 L 1.640625 -12.921875 Z M 1.640625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
</g>
<clipPath id="clip1">
<path d="M 74 203 L 109 203 L 109 243 L 74 243 Z M 74 203 "/>
</clipPath>
<clipPath id="clip2">
<path d="M 74 386 L 107 386 L 107 426 L 74 426 Z M 74 386 "/>
</clipPath>
<clipPath id="clip3">
<path d="M 225 377 L 257 377 L 257 417 L 225 417 Z M 225 377 "/>
</clipPath>
<clipPath id="clip4">
<path d="M 74 258 L 107 258 L 107 298 L 74 298 Z M 74 258 "/>
</clipPath>
<clipPath id="clip5">
<path d="M 74 397 L 106 397 L 106 436 L 74 436 Z M 74 397 "/>
</clipPath>
<clipPath id="clip6">
<path d="M 224 152 L 257 152 L 257 192 L 224 192 Z M 224 152 "/>
</clipPath>
<clipPath id="clip7">
<path d="M 74 46 L 102 46 L 102 85 L 74 85 Z M 74 46 "/>
</clipPath>
<clipPath id="clip8">
<path d="M 224 414 L 257 414 L 257 453 L 224 453 Z M 224 414 "/>
</clipPath>
<clipPath id="clip9">
<path d="M 74 103 L 105 103 L 105 143 L 74 143 Z M 74 103 "/>
</clipPath>
<clipPath id="clip10">
<path d="M 229 223 L 257 223 L 257 262 L 229 262 Z M 229 223 "/>
</clipPath>
<clipPath id="clip11">
<path d="M 220 193 L 257 193 L 257 232 L 220 232 Z M 220 193 "/>
</clipPath>
<clipPath id="clip12">
<path d="M 328 38 L 511 38 L 511 524 L 328 524 Z M 328 38 "/>
</clipPath>
</defs>
<g id="surface11">
<rect x="0" y="0" width="800" height="600" style="fill:rgb(100%25,100%25,100%25);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 74 532 L 257 532 L 257 30 L 74 30 Z M 74 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 328 532 L 511 532 L 511 30 L 328 30 Z M 328 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 587 532 L 770 532 L 770 30 L 587 30 Z M 587 532 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 81.640625 532 L 81.640625 30 M 132.035156 532 L 132.035156 30 M 182.433594 532 L 182.433594 30 M 232.828125 532 L 232.828125 30 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 74 522.546875 L 257 522.546875 M 74 380.671875 L 257 380.671875 M 74 238.796875 L 257 238.796875 M 74 96.921875 L 257 96.921875 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 334.636719 532 L 334.636719 30 M 385.050781 532 L 385.050781 30 M 435.464844 532 L 435.464844 30 M 485.878906 532 L 485.878906 30 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 328 401.339844 L 511 401.339844 M 328 263.148438 L 511 263.148438 M 328 124.957031 L 511 124.957031 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 587 532 L 587 30 M 632.75 532 L 632.75 30 M 678.5 532 L 678.5 30 M 724.25 532 L 724.25 30 M 770 532 L 770 30 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 587 532 L 770 532 M 587 406.5 L 770 406.5 M 587 281 L 770 281 M 587 155.5 L 770 155.5 M 587 30 L 770 30 "/>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="66.402344" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="79.125" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="85.484375" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="117.035156" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="129.761719" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="136.117188" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="167.199219" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="179.921875" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-4" x="186.28125" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="217.597656" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="230.324219" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="236.679688" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="28.839844" y="529.472656"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="41.566406" y="529.472656"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="47.921875" y="529.472656"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="29.316406" y="387.597656"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="42.042969" y="387.597656"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="48.402344" y="387.597656"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="28.847656" y="245.71875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="41.574219" y="245.71875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-4" x="47.933594" y="245.71875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="28.859375" y="103.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="41.585938" y="103.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="47.941406" y="103.84375"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="328.941406" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="372.886719" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="385.613281" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-4" x="423.363281" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="436.089844" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="473.847656" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="486.570312" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-6" x="276.265625" y="408.265625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-7" x="283.484375" y="408.265625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="296.210938" y="408.265625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="302.566406" y="408.265625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="282.839844" y="270.070312"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="295.5625" y="270.070312"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="301.921875" y="270.070312"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-7" x="283.484375" y="131.878906"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="296.210938" y="131.878906"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="302.566406" y="131.878906"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="571.761719" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="584.484375" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="590.84375" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-7" x="617.757812" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="630.484375" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="636.84375" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="663.148438" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="675.875" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="682.230469" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-9" x="709.171875" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="721.898438" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="728.253906" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-10" x="747.957031" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="760.683594" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="773.40625" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="779.765625" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="541.839844" y="538.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="554.5625" y="538.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="560.921875" y="538.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-7" x="542.484375" y="413.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="555.210938" y="413.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="561.566406" y="413.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="541.839844" y="287.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="554.5625" y="287.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="560.921875" y="287.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-9" x="542.484375" y="162.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="555.210938" y="162.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="561.566406" y="162.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-10" x="529.113281" y="36.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="541.839844" y="36.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="554.5625" y="36.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="560.921875" y="36.921875"/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.007812 145.855469 C 229.007812 152.523438 219.007812 152.523438 219.007812 145.855469 C 219.007812 139.191406 229.007812 139.191406 229.007812 145.855469 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 125.175781 87.585938 C 125.175781 94.25 115.175781 94.25 115.175781 87.585938 C 115.175781 80.917969 125.175781 80.917969 125.175781 87.585938 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 200.519531 367.152344 C 200.519531 373.820312 190.519531 373.820312 190.519531 367.152344 C 190.519531 360.484375 200.519531 360.484375 200.519531 367.152344 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 115.882812 129.570312 C 115.882812 136.238281 105.882812 136.238281 105.882812 129.570312 C 105.882812 122.90625 115.882812 122.90625 115.882812 129.570312 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 202.257812 78.375 C 202.257812 85.042969 192.257812 85.042969 192.257812 78.375 C 192.257812 71.710938 202.257812 71.710938 202.257812 78.375 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 214.734375 64.269531 C 214.734375 70.9375 204.734375 70.9375 204.734375 64.269531 C 204.734375 57.601562 214.734375 57.601562 214.734375 64.269531 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.210938 329.136719 C 109.210938 335.804688 99.210938 335.804688 99.210938 329.136719 C 99.210938 322.46875 109.210938 322.46875 109.210938 329.136719 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.191406 338.660156 C 194.191406 345.328125 184.191406 345.328125 184.191406 338.660156 C 184.191406 331.992188 194.191406 331.992188 194.191406 338.660156 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.617188 289.285156 C 186.617188 295.953125 176.617188 295.953125 176.617188 289.285156 C 176.617188 282.621094 186.617188 282.621094 186.617188 289.285156 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 196.457031 73.496094 C 196.457031 80.160156 186.457031 80.160156 186.457031 73.496094 C 186.457031 66.828125 196.457031 66.828125 196.457031 73.496094 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 149.65625 488.136719 C 149.65625 494.804688 139.65625 494.804688 139.65625 488.136719 C 139.65625 481.472656 149.65625 481.472656 149.65625 488.136719 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 93.953125 223.027344 C 93.953125 229.691406 83.953125 229.691406 83.953125 223.027344 C 83.953125 216.359375 93.953125 216.359375 93.953125 223.027344 "/>
<g clip-path="url(%23clip1)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 93.953125 223.027344 C 93.953125 229.691406 83.953125 229.691406 83.953125 223.027344 C 83.953125 216.359375 93.953125 216.359375 93.953125 223.027344 "/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 92.164062 405.882812 C 92.164062 412.550781 82.164062 412.550781 82.164062 405.882812 C 82.164062 399.21875 92.164062 399.21875 92.164062 405.882812 "/>
<g clip-path="url(%23clip2)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 92.164062 405.882812 C 92.164062 412.550781 82.164062 412.550781 82.164062 405.882812 C 82.164062 399.21875 92.164062 399.21875 92.164062 405.882812 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 194.996094 346.546875 C 194.996094 353.214844 184.996094 353.214844 184.996094 346.546875 C 184.996094 339.878906 194.996094 339.878906 194.996094 346.546875 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 224.207031 131.144531 C 224.207031 137.8125 214.207031 137.8125 214.207031 131.144531 C 214.207031 124.480469 224.207031 124.480469 224.207031 131.144531 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.25 371.539062 C 124.25 378.203125 114.25 378.203125 114.25 371.539062 C 114.25 364.871094 124.25 364.871094 124.25 371.539062 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.507812 68.242188 C 227.507812 74.910156 217.507812 74.910156 217.507812 68.242188 C 217.507812 61.574219 227.507812 61.574219 227.507812 68.242188 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 165.199219 354.847656 C 165.199219 361.511719 155.199219 361.511719 155.199219 354.847656 C 155.199219 348.179688 165.199219 348.179688 165.199219 354.847656 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.140625 317.554688 C 143.140625 324.222656 133.140625 324.222656 133.140625 317.554688 C 133.140625 310.890625 143.140625 310.890625 143.140625 317.554688 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 167.664062 67.933594 C 167.664062 74.601562 157.664062 74.601562 157.664062 67.933594 C 157.664062 61.265625 167.664062 61.265625 167.664062 67.933594 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 177.421875 406.785156 C 177.421875 413.453125 167.421875 413.453125 167.421875 406.785156 C 167.421875 400.121094 177.421875 400.121094 177.421875 406.785156 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 235.234375 437.464844 C 235.234375 444.132812 225.234375 444.132812 225.234375 437.464844 C 225.234375 430.800781 235.234375 430.800781 235.234375 437.464844 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 198.800781 190.59375 C 198.800781 197.257812 188.800781 197.257812 188.800781 190.59375 C 188.800781 183.925781 198.800781 183.925781 198.800781 190.59375 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 162.570312 128.238281 C 162.570312 134.90625 152.570312 134.90625 152.570312 128.238281 C 152.570312 121.570312 162.570312 121.570312 162.570312 128.238281 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.257812 117.777344 C 140.257812 124.441406 130.257812 124.441406 130.257812 117.777344 C 130.257812 111.109375 140.257812 111.109375 140.257812 117.777344 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 166.585938 468.617188 C 166.585938 475.28125 156.585938 475.28125 156.585938 468.617188 C 156.585938 461.949219 166.585938 461.949219 166.585938 468.617188 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 201.34375 167.761719 C 201.34375 174.425781 191.34375 174.425781 191.34375 167.761719 C 191.34375 161.09375 201.34375 161.09375 201.34375 167.761719 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 137.191406 172.976562 C 137.191406 179.644531 127.191406 179.644531 127.191406 172.976562 C 127.191406 166.3125 137.191406 166.3125 137.191406 172.976562 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 171.523438 103.933594 C 171.523438 110.597656 161.523438 110.597656 161.523438 103.933594 C 161.523438 97.265625 171.523438 97.265625 171.523438 103.933594 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 227.796875 396.542969 C 227.796875 403.210938 217.796875 403.210938 217.796875 396.542969 C 217.796875 389.878906 227.796875 389.878906 227.796875 396.542969 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 160.339844 404.992188 C 160.339844 411.660156 150.339844 411.660156 150.339844 404.992188 C 150.339844 398.324219 160.339844 398.324219 160.339844 404.992188 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 185.4375 136.496094 C 185.4375 143.164062 175.4375 143.164062 175.4375 136.496094 C 175.4375 129.832031 185.4375 129.832031 185.4375 136.496094 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.929688 277.019531 C 127.929688 283.6875 117.929688 283.6875 117.929688 277.019531 C 117.929688 270.351562 127.929688 270.351562 127.929688 277.019531 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 209.460938 171.320312 C 209.460938 177.988281 199.460938 177.988281 199.460938 171.320312 C 199.460938 164.65625 209.460938 164.65625 209.460938 171.320312 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 250.066406 397 C 250.066406 403.667969 240.066406 403.667969 240.066406 397 C 240.066406 390.332031 250.066406 390.332031 250.066406 397 "/>
<g clip-path="url(%23clip3)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 250.066406 397 C 250.066406 403.667969 240.066406 403.667969 240.066406 397 C 240.066406 390.332031 250.066406 390.332031 250.066406 397 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 135.625 364.832031 C 135.625 371.5 125.625 371.5 125.625 364.832031 C 125.625 358.167969 135.625 358.167969 135.625 364.832031 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 228.714844 241.257812 C 228.714844 247.925781 218.714844 247.925781 218.714844 241.257812 C 218.714844 234.589844 228.714844 234.589844 228.714844 241.257812 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.628906 347.652344 C 213.628906 354.320312 203.628906 354.320312 203.628906 347.652344 C 203.628906 340.984375 213.628906 340.984375 213.628906 347.652344 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 92.519531 277.984375 C 92.519531 284.652344 82.519531 284.652344 82.519531 277.984375 C 82.519531 271.316406 92.519531 271.316406 92.519531 277.984375 "/>
<g clip-path="url(%23clip4)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 92.519531 277.984375 C 92.519531 284.652344 82.519531 284.652344 82.519531 277.984375 C 82.519531 271.316406 92.519531 271.316406 92.519531 277.984375 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 191.820312 445.683594 C 191.820312 452.351562 181.820312 452.351562 181.820312 445.683594 C 181.820312 439.019531 191.820312 439.019531 191.820312 445.683594 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 237.339844 116.234375 C 237.339844 122.902344 227.339844 122.902344 227.339844 116.234375 C 227.339844 109.570312 237.339844 109.570312 237.339844 116.234375 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.667969 154.839844 C 155.667969 161.503906 145.667969 161.503906 145.667969 154.839844 C 145.667969 148.171875 155.667969 148.171875 155.667969 154.839844 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 114.476562 489.460938 C 114.476562 496.128906 104.476562 496.128906 104.476562 489.460938 C 104.476562 482.792969 114.476562 482.792969 114.476562 489.460938 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.808594 345.339844 C 178.808594 352.003906 168.808594 352.003906 168.808594 345.339844 C 168.808594 338.671875 178.808594 338.671875 178.808594 345.339844 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 109.125 66.4375 C 109.125 73.105469 99.125 73.105469 99.125 66.4375 C 99.125 59.773438 109.125 59.773438 109.125 66.4375 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 120.664062 487.691406 C 120.664062 494.359375 110.664062 494.359375 110.664062 487.691406 C 110.664062 481.027344 120.664062 481.027344 120.664062 487.691406 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 90.863281 416.679688 C 90.863281 423.347656 80.863281 423.347656 80.863281 416.679688 C 80.863281 410.015625 90.863281 410.015625 90.863281 416.679688 "/>
<g clip-path="url(%23clip5)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.863281 416.679688 C 90.863281 423.347656 80.863281 423.347656 80.863281 416.679688 C 80.863281 410.015625 90.863281 410.015625 90.863281 416.679688 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.703125 69.425781 C 151.703125 76.09375 141.703125 76.09375 141.703125 69.425781 C 141.703125 62.757812 151.703125 62.757812 151.703125 69.425781 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.90625 356.546875 C 229.90625 363.214844 219.90625 363.214844 219.90625 356.546875 C 219.90625 349.878906 229.90625 349.878906 229.90625 356.546875 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 219.695312 240.730469 C 219.695312 247.398438 209.695312 247.398438 209.695312 240.730469 C 209.695312 234.0625 219.695312 234.0625 219.695312 240.730469 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 164.066406 356.566406 C 164.066406 363.234375 154.066406 363.234375 154.066406 356.566406 C 154.066406 349.902344 164.066406 349.902344 164.066406 356.566406 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 103.652344 157.964844 C 103.652344 164.632812 93.652344 164.632812 93.652344 157.964844 C 93.652344 151.300781 103.652344 151.300781 103.652344 157.964844 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 242.0625 444 C 242.0625 450.667969 232.0625 450.667969 232.0625 444 C 232.0625 437.332031 242.0625 437.332031 242.0625 444 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 124.324219 260.78125 C 124.324219 267.445312 114.324219 267.445312 114.324219 260.78125 C 114.324219 254.113281 124.324219 254.113281 124.324219 260.78125 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 174.75 505 C 174.75 511.664062 164.75 511.664062 164.75 505 C 164.75 498.332031 174.75 498.332031 174.75 505 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 236.25 155.8125 C 236.25 162.476562 226.25 162.476562 226.25 155.8125 C 226.25 149.144531 236.25 149.144531 236.25 155.8125 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.507812 312.296875 C 192.507812 318.964844 182.507812 318.964844 182.507812 312.296875 C 182.507812 305.632812 192.507812 305.632812 192.507812 312.296875 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 127.453125 427.308594 C 127.453125 433.976562 117.453125 433.976562 117.453125 427.308594 C 117.453125 420.640625 127.453125 420.640625 127.453125 427.308594 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 190.1875 287.488281 C 190.1875 294.15625 180.1875 294.15625 180.1875 287.488281 C 180.1875 280.820312 190.1875 280.820312 190.1875 287.488281 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 150.277344 116.449219 C 150.277344 123.117188 140.277344 123.117188 140.277344 116.449219 C 140.277344 109.785156 150.277344 109.785156 150.277344 116.449219 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 139.066406 302.492188 C 139.066406 309.160156 129.066406 309.160156 129.066406 302.492188 C 129.066406 295.828125 139.066406 295.828125 139.066406 302.492188 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 213.191406 508.828125 C 213.191406 515.496094 203.191406 515.496094 203.191406 508.828125 C 203.191406 502.160156 213.191406 502.160156 213.191406 508.828125 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 249.105469 172 C 249.105469 178.667969 239.105469 178.667969 239.105469 172 C 239.105469 165.335938 249.105469 165.335938 249.105469 172 "/>
<g clip-path="url(%23clip6)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 249.105469 172 C 249.105469 178.667969 239.105469 178.667969 239.105469 172 C 239.105469 165.335938 249.105469 165.335938 249.105469 172 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 178.308594 130.164062 C 178.308594 136.832031 168.308594 136.832031 168.308594 130.164062 C 168.308594 123.496094 178.308594 123.496094 178.308594 130.164062 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 192.40625 368.175781 C 192.40625 374.84375 182.40625 374.84375 182.40625 368.175781 C 182.40625 361.507812 192.40625 361.507812 192.40625 368.175781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 87.316406 65.304688 C 87.316406 71.96875 77.316406 71.96875 77.316406 65.304688 C 77.316406 58.636719 87.316406 58.636719 87.316406 65.304688 "/>
<g clip-path="url(%23clip7)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 87.316406 65.304688 C 87.316406 71.96875 77.316406 71.96875 77.316406 65.304688 C 77.316406 58.636719 87.316406 58.636719 87.316406 65.304688 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 121.613281 178.476562 C 121.613281 185.140625 111.613281 185.140625 111.613281 178.476562 C 111.613281 171.808594 121.613281 171.808594 121.613281 178.476562 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 172.746094 237.605469 C 172.746094 244.273438 162.746094 244.273438 162.746094 237.605469 C 162.746094 230.941406 172.746094 230.941406 172.746094 237.605469 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 248.585938 433.414062 C 248.585938 440.082031 238.585938 440.082031 238.585938 433.414062 C 238.585938 426.75 248.585938 426.75 248.585938 433.414062 "/>
<g clip-path="url(%23clip8)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 248.585938 433.414062 C 248.585938 440.082031 238.585938 440.082031 238.585938 433.414062 C 238.585938 426.75 248.585938 426.75 248.585938 433.414062 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 142.300781 52.816406 C 142.300781 59.484375 132.300781 59.484375 132.300781 52.816406 C 132.300781 46.152344 142.300781 46.152344 142.300781 52.816406 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.445312 363.3125 C 203.445312 369.976562 193.445312 369.976562 193.445312 363.3125 C 193.445312 356.644531 203.445312 356.644531 203.445312 363.3125 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 218.550781 454.628906 C 218.550781 461.296875 208.550781 461.296875 208.550781 454.628906 C 208.550781 447.960938 218.550781 447.960938 218.550781 454.628906 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 238.679688 256.566406 C 238.679688 263.234375 228.679688 263.234375 228.679688 256.566406 C 228.679688 249.902344 238.679688 249.902344 238.679688 256.566406 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.785156 453.027344 C 108.785156 459.695312 98.785156 459.695312 98.785156 453.027344 C 98.785156 446.363281 108.785156 446.363281 108.785156 453.027344 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 126.25 92.652344 C 126.25 99.316406 116.25 99.316406 116.25 92.652344 C 116.25 85.984375 126.25 85.984375 126.25 92.652344 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 108.949219 95.082031 C 108.949219 101.75 98.949219 101.75 98.949219 95.082031 C 98.949219 88.417969 108.949219 88.417969 108.949219 95.082031 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 112.203125 229.140625 C 112.203125 235.808594 102.203125 235.808594 102.203125 229.140625 C 102.203125 222.472656 112.203125 222.472656 112.203125 229.140625 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 129.992188 505.375 C 129.992188 512.042969 119.992188 512.042969 119.992188 505.375 C 119.992188 498.707031 129.992188 498.707031 129.992188 505.375 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.59375 509.183594 C 144.59375 515.847656 134.59375 515.847656 134.59375 509.183594 C 134.59375 502.515625 144.59375 502.515625 144.59375 509.183594 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 104.761719 350.859375 C 104.761719 357.527344 94.761719 357.527344 94.761719 350.859375 C 94.761719 344.191406 104.761719 344.191406 104.761719 350.859375 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 151.644531 485.09375 C 151.644531 491.761719 141.644531 491.761719 141.644531 485.09375 C 141.644531 478.425781 151.644531 478.425781 151.644531 485.09375 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.03125 137.679688 C 119.03125 144.347656 109.03125 144.347656 109.03125 137.679688 C 109.03125 131.011719 119.03125 131.011719 119.03125 137.679688 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 223.011719 480.320312 C 223.011719 486.988281 213.011719 486.988281 213.011719 480.320312 C 213.011719 473.65625 223.011719 473.65625 223.011719 480.320312 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 229.71875 82.796875 C 229.71875 89.460938 219.71875 89.460938 219.71875 82.796875 C 219.71875 76.128906 229.71875 76.128906 229.71875 82.796875 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 210.917969 473.816406 C 210.917969 480.480469 200.917969 480.480469 200.917969 473.816406 C 200.917969 467.148438 210.917969 467.148438 210.917969 473.816406 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 148.167969 196.300781 C 148.167969 202.96875 138.167969 202.96875 138.167969 196.300781 C 138.167969 189.632812 148.167969 189.632812 148.167969 196.300781 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 143.066406 409.429688 C 143.066406 416.09375 133.066406 416.09375 133.066406 409.429688 C 133.066406 402.761719 143.066406 402.761719 143.066406 409.429688 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 140.957031 266.480469 C 140.957031 273.148438 130.957031 273.148438 130.957031 266.480469 C 130.957031 259.816406 140.957031 259.816406 140.957031 266.480469 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 240.667969 278.132812 C 240.667969 284.800781 230.667969 284.800781 230.667969 278.132812 C 230.667969 271.464844 240.667969 271.464844 240.667969 278.132812 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.726562 453.09375 C 203.726562 459.761719 193.726562 459.761719 193.726562 453.09375 C 193.726562 446.429688 203.726562 446.429688 203.726562 453.09375 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 90.390625 123.015625 C 90.390625 129.683594 80.390625 129.683594 80.390625 123.015625 C 80.390625 116.347656 90.390625 116.347656 90.390625 123.015625 "/>
<g clip-path="url(%23clip9)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 90.390625 123.015625 C 90.390625 129.683594 80.390625 129.683594 80.390625 123.015625 C 80.390625 116.347656 90.390625 116.347656 90.390625 123.015625 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 204.320312 192.015625 C 204.320312 198.679688 194.320312 198.679688 194.320312 192.015625 C 194.320312 185.347656 204.320312 185.347656 204.320312 192.015625 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 253.683594 242.496094 C 253.683594 249.160156 243.683594 249.160156 243.683594 242.496094 C 243.683594 235.828125 253.683594 235.828125 253.683594 242.496094 "/>
<g clip-path="url(%23clip10)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 253.683594 242.496094 C 253.683594 249.160156 243.683594 249.160156 243.683594 242.496094 C 243.683594 235.828125 253.683594 235.828125 253.683594 242.496094 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 144.53125 140.949219 C 144.53125 147.617188 134.53125 147.617188 134.53125 140.949219 C 134.53125 134.28125 144.53125 134.28125 144.53125 140.949219 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 203.109375 354.21875 C 203.109375 360.886719 193.109375 360.886719 193.109375 354.21875 C 193.109375 347.550781 203.109375 347.550781 203.109375 354.21875 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;" d="M 244.824219 212.847656 C 244.824219 219.515625 234.824219 219.515625 234.824219 212.847656 C 234.824219 206.183594 244.824219 206.183594 244.824219 212.847656 "/>
<g clip-path="url(%23clip11)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 244.824219 212.847656 C 244.824219 219.515625 234.824219 219.515625 234.824219 212.847656 C 234.824219 206.183594 244.824219 206.183594 244.824219 212.847656 "/>
</g>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 154.601562 185.230469 C 154.601562 191.898438 144.601562 191.898438 144.601562 185.230469 C 144.601562 178.566406 154.601562 178.566406 154.601562 185.230469 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 186.925781 264.046875 C 186.925781 270.714844 176.925781 270.714844 176.925781 264.046875 C 176.925781 257.378906 186.925781 257.378906 186.925781 264.046875 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 119.175781 74.5625 C 119.175781 81.230469 109.175781 81.230469 109.175781 74.5625 C 109.175781 67.894531 119.175781 67.894531 119.175781 74.5625 "/>
<path style="fill-rule:nonzero;fill:rgb(65.098041%25,65.098041%25,65.098041%25);fill-opacity:1;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 155.964844 211.449219 C 155.964844 218.117188 145.964844 218.117188 145.964844 211.449219 C 145.964844 204.785156 155.964844 204.785156 155.964844 211.449219 "/>
<g clip-path="url(%23clip12)" clip-rule="nonzero">
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 336.316406 186.160156 L 338 294.511719 L 339.679688 316.898438 L 341.359375 260.789062 L 343.039062 197.785156 L 344.71875 186.96875 L 346.402344 158.457031 L 348.082031 170.601562 L 349.761719 181.109375 L 351.441406 187.011719 L 353.121094 210.214844 L 354.804688 196.6875 L 356.484375 127.484375 L 358.164062 84.480469 L 359.84375 83.988281 L 361.523438 124.207031 L 363.207031 87.566406 L 364.886719 73.460938 L 366.566406 181.101562 L 368.246094 124.5625 L 369.925781 179.75 L 371.609375 213.730469 L 373.289062 147.699219 L 374.96875 180.335938 L 376.648438 179.089844 L 378.328125 230.949219 L 380.007812 297.6875 L 381.691406 268.054688 L 383.371094 259.917969 L 385.050781 276.34375 L 386.730469 224.492188 L 388.410156 278.003906 L 390.09375 270.832031 L 391.773438 227.121094 L 393.453125 156.476562 L 395.132812 223.84375 L 396.8125 162.664062 L 398.496094 87.433594 L 400.175781 119.503906 L 401.855469 220.773438 L 403.535156 164.015625 L 405.214844 188.472656 L 406.898438 256.824219 L 408.578125 314.226562 L 410.257812 278.578125 L 411.9375 284.5 L 413.617188 301.632812 L 415.300781 264.417969 L 416.980469 281.140625 L 418.660156 265.175781 L 420.339844 261.3125 L 422.019531 290.992188 L 423.699219 248.140625 L 425.382812 184.472656 L 427.0625 143.652344 L 428.742188 57.753906 L 430.421875 67 L 432.101562 74.988281 L 433.785156 79.117188 L 435.464844 136.859375 L 437.144531 128.152344 L 438.824219 295.179688 L 440.503906 338.246094 L 442.1875 429.820312 L 443.867188 454.175781 L 445.546875 375.015625 L 447.226562 381.683594 L 448.90625 382.941406 L 450.589844 311.621094 L 452.269531 286.964844 L 453.949219 331.34375 L 455.628906 423.617188 L 457.308594 454.867188 L 458.992188 509.183594 L 460.671875 402.625 L 462.351562 327.378906 L 464.03125 243.34375 L 465.710938 303.257812 L 467.390625 314.210938 L 469.074219 263.285156 L 470.753906 169.820312 L 472.433594 199.058594 L 474.113281 138.714844 L 475.792969 196.914062 L 477.476562 147.890625 L 479.15625 131.722656 L 480.835938 123.425781 L 482.515625 135.222656 L 484.195312 52.816406 L 485.878906 121.078125 L 487.558594 125.453125 L 489.238281 74.554688 L 490.917969 86.191406 L 492.597656 87.285156 L 494.28125 108.960938 L 495.960938 121.429688 L 497.640625 221.296875 L 499.320312 188.535156 L 501 139.46875 L 502.683594 118.539062 "/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.99842%25,40.854576%25,55.616474%25);fill-opacity:1;" d="M 587 532 L 605.800781 532 L 605.800781 481.300781 L 587 481.300781 Z M 587 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.609944%25,65.892947%25,51.711285%25);fill-opacity:1;" d="M 587 481.800781 L 605.800781 481.800781 L 605.800781 431.101562 L 587 431.101562 Z M 587 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.295483%25,49.808392%25,55.75974%25);fill-opacity:1;" d="M 587 431.601562 L 605.800781 431.601562 L 605.800781 380.902344 L 587 380.902344 Z M 587 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.726998%25,75.743043%25,42.930171%25);fill-opacity:1;" d="M 587 381.398438 L 605.800781 381.398438 L 605.800781 330.699219 L 587 330.699219 Z M 587 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.375934%25,23.689191%25,51.821005%25);fill-opacity:1;" d="M 587 331.199219 L 605.800781 331.199219 L 605.800781 280.5 L 587 280.5 Z M 587 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.380476%25,31.317726%25,54.352659%25);fill-opacity:1;" d="M 587 281 L 605.800781 281 L 605.800781 230.300781 L 587 230.300781 Z M 587 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.939583%25,48.173866%25,55.806285%25);fill-opacity:1;" d="M 587 230.800781 L 605.800781 230.800781 L 605.800781 180.101562 L 587 180.101562 Z M 587 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.365166%25,58.220422%25,54.71521%25);fill-opacity:1;" d="M 587 180.601562 L 605.800781 180.601562 L 605.800781 129.902344 L 587 129.902344 Z M 587 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.600838%25,65.880662%25,51.71839%25);fill-opacity:1;" d="M 587 130.398438 L 605.800781 130.398438 L 605.800781 79.699219 L 587 79.699219 Z M 587 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.144612%25,24.409638%25,52.148372%25);fill-opacity:1;" d="M 587 80.199219 L 605.800781 80.199219 L 605.800781 30 L 587 30 Z M 587 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.571233%25,39.587253%25,55.521494%25);fill-opacity:1;" d="M 605.300781 532 L 624.101562 532 L 624.101562 481.300781 L 605.300781 481.300781 Z M 605.300781 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.009089%25,47.999257%25,55.808729%25);fill-opacity:1;" d="M 605.300781 481.800781 L 624.101562 481.800781 L 624.101562 431.101562 L 605.300781 431.101562 Z M 605.300781 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(21.162699%25,36.135328%25,55.182219%25);fill-opacity:1;" d="M 605.300781 431.601562 L 624.101562 431.601562 L 624.101562 380.902344 L 605.300781 380.902344 Z M 605.300781 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.535258%25,49.199918%25,55.777067%25);fill-opacity:1;" d="M 605.300781 381.398438 L 624.101562 381.398438 L 624.101562 330.699219 L 605.300781 330.699219 Z M 605.300781 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.018652%25,60.982394%25,53.915519%25);fill-opacity:1;" d="M 605.300781 331.199219 L 624.101562 331.199219 L 624.101562 280.5 L 605.300781 280.5 Z M 605.300781 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.256095%25,42.558604%25,55.703396%25);fill-opacity:1;" d="M 605.300781 281 L 624.101562 281 L 624.101562 230.300781 L 605.300781 230.300781 Z M 605.300781 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(99.324799%25,90.615702%25,14.393599%25);fill-opacity:1;" d="M 605.300781 230.800781 L 624.101562 230.800781 L 624.101562 180.101562 L 605.300781 180.101562 Z M 605.300781 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.315513%25,63.275689%25,53.027833%25);fill-opacity:1;" d="M 605.300781 180.601562 L 624.101562 180.601562 L 624.101562 129.902344 L 605.300781 129.902344 Z M 605.300781 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.600457%25,46.530333%25,55.805391%25);fill-opacity:1;" d="M 605.300781 130.398438 L 624.101562 130.398438 L 624.101562 79.699219 L 605.300781 79.699219 Z M 605.300781 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.357911%25,31.368005%25,54.363716%25);fill-opacity:1;" d="M 605.300781 80.199219 L 624.101562 80.199219 L 624.101562 30 L 605.300781 30 Z M 605.300781 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.532559%25,30.978876%25,54.278153%25);fill-opacity:1;" d="M 623.601562 532 L 642.402344 532 L 642.402344 481.300781 L 623.601562 481.300781 Z M 623.601562 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.18957%25,59.131408%25,54.477334%25);fill-opacity:1;" d="M 623.601562 481.800781 L 642.402344 481.800781 L 642.402344 431.101562 L 623.601562 431.101562 Z M 623.601562 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.477817%25,71.008027%25,48.033795%25);fill-opacity:1;" d="M 623.601562 431.601562 L 642.402344 431.601562 L 642.402344 380.902344 L 623.601562 380.902344 Z M 623.601562 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.898633%25,43.387109%25,55.741268%25);fill-opacity:1;" d="M 623.601562 381.398438 L 642.402344 381.398438 L 642.402344 330.699219 L 623.601562 330.699219 Z M 623.601562 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.642257%25,22.782913%25,51.370353%25);fill-opacity:1;" d="M 623.601562 331.199219 L 642.402344 331.199219 L 642.402344 280.5 L 623.601562 280.5 Z M 623.601562 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.485947%25,42.030972%25,55.676484%25);fill-opacity:1;" d="M 623.601562 281 L 642.402344 281 L 642.402344 230.300781 L 623.601562 230.300781 Z M 623.601562 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.701442%25,41.536298%25,55.651248%25);fill-opacity:1;" d="M 623.601562 230.800781 L 642.402344 230.800781 L 642.402344 180.101562 L 623.601562 180.101562 Z M 623.601562 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.87789%25,43.436846%25,55.742633%25);fill-opacity:1;" d="M 623.601562 180.601562 L 642.402344 180.601562 L 642.402344 129.902344 L 623.601562 129.902344 Z M 623.601562 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(24.918874%25,27.711338%25,53.381413%25);fill-opacity:1;" d="M 623.601562 130.398438 L 642.402344 130.398438 L 642.402344 79.699219 L 623.601562 79.699219 Z M 623.601562 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.829167%25,45.962226%25,55.804098%25);fill-opacity:1;" d="M 623.601562 80.199219 L 642.402344 80.199219 L 642.402344 30 L 623.601562 30 Z M 623.601562 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.144904%25,31.842604%25,54.468066%25);fill-opacity:1;" d="M 641.898438 532 L 660.699219 532 L 660.699219 481.300781 L 641.898438 481.300781 Z M 641.898438 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.700401%25,0.4874%25,32.941499%25);fill-opacity:1;" d="M 641.898438 481.800781 L 660.699219 481.800781 L 660.699219 431.101562 L 641.898438 431.101562 Z M 641.898438 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.022669%25,38.593248%25,55.443841%25);fill-opacity:1;" d="M 641.898438 431.601562 L 660.699219 431.601562 L 660.699219 380.902344 L 641.898438 380.902344 Z M 641.898438 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(22.031687%25,34.269109%25,54.913515%25);fill-opacity:1;" d="M 641.898438 381.398438 L 660.699219 381.398438 L 660.699219 330.699219 L 641.898438 330.699219 Z M 641.898438 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.185153%25,9.349833%25,41.576385%25);fill-opacity:1;" d="M 641.898438 331.199219 L 660.699219 331.199219 L 660.699219 280.5 L 641.898438 280.5 Z M 641.898438 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.164394%25,55.46872%25,55.259162%25);fill-opacity:1;" d="M 641.898438 281 L 660.699219 281 L 660.699219 230.300781 L 641.898438 230.300781 Z M 641.898438 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.466394%25,54.620463%25,55.370784%25);fill-opacity:1;" d="M 641.898438 230.800781 L 660.699219 230.800781 L 660.699219 180.101562 L 641.898438 180.101562 Z M 641.898438 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(25.405973%25,26.450935%25,52.944899%25);fill-opacity:1;" d="M 641.898438 180.601562 L 660.699219 180.601562 L 660.699219 129.902344 L 641.898438 129.902344 Z M 641.898438 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.274909%25,12.816837%25,44.653153%25);fill-opacity:1;" d="M 641.898438 130.398438 L 660.699219 130.398438 L 660.699219 79.699219 L 641.898438 79.699219 Z M 641.898438 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.005732%25,60.437036%25,54.107761%25);fill-opacity:1;" d="M 641.898438 80.199219 L 660.699219 80.199219 L 660.699219 30 L 641.898438 30 Z M 641.898438 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.009156%25,60.581601%25,54.056799%25);fill-opacity:1;" d="M 660.199219 532 L 679 532 L 679 481.300781 L 660.199219 481.300781 Z M 660.199219 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.838253%25,50.978643%25,55.707151%25);fill-opacity:1;" d="M 660.199219 481.800781 L 679 481.800781 L 679 431.101562 L 660.199219 431.101562 Z M 660.199219 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.389804%25,19.935139%25,49.825495%25);fill-opacity:1;" d="M 660.199219 431.601562 L 679 431.601562 L 679 380.902344 L 660.199219 380.902344 Z M 660.199219 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.914628%25,6.670644%25,39.108521%25);fill-opacity:1;" d="M 660.199219 381.398438 L 679 381.398438 L 679 330.699219 L 660.199219 330.699219 Z M 660.199219 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.07628%25,47.832364%25,55.808347%25);fill-opacity:1;" d="M 660.199219 331.199219 L 679 331.199219 L 679 280.5 L 660.199219 280.5 Z M 660.199219 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.996226%25,36.492628%25,55.222452%25);fill-opacity:1;" d="M 660.199219 281 L 679 281 L 679 230.300781 L 660.199219 230.300781 Z M 660.199219 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.017121%25,43.107176%25,55.73138%25);fill-opacity:1;" d="M 660.199219 230.800781 L 679 230.800781 L 679 180.101562 L 660.199219 180.101562 Z M 660.199219 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.882128%25,48.319668%25,55.802131%25);fill-opacity:1;" d="M 660.199219 180.601562 L 679 180.601562 L 679 129.902344 L 660.199219 129.902344 Z M 660.199219 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.012967%25,16.370958%25,47.458243%25);fill-opacity:1;" d="M 660.199219 130.398438 L 679 130.398438 L 679 79.699219 L 660.199219 79.699219 Z M 660.199219 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.361983%25,47.12269%25,55.806738%25);fill-opacity:1;" d="M 660.199219 80.199219 L 679 80.199219 L 679 30 L 660.199219 30 Z M 660.199219 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.261286%25,13.300665%25,45.060378%25);fill-opacity:1;" d="M 678.5 532 L 697.300781 532 L 697.300781 481.300781 L 678.5 481.300781 Z M 678.5 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.19317%25,45.078737%25,55.787617%25);fill-opacity:1;" d="M 678.5 481.800781 L 697.300781 481.800781 L 697.300781 431.101562 L 678.5 431.101562 Z M 678.5 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(21.886927%25,34.580082%25,54.962969%25);fill-opacity:1;" d="M 678.5 431.601562 L 697.300781 431.601562 L 697.300781 380.902344 L 678.5 380.902344 Z M 678.5 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.222266%25,58.961785%25,54.521626%25);fill-opacity:1;" d="M 678.5 381.398438 L 697.300781 381.398438 L 697.300781 330.699219 L 678.5 330.699219 Z M 678.5 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.222002%25,47.470397%25,55.807525%25);fill-opacity:1;" d="M 678.5 331.199219 L 697.300781 331.199219 L 697.300781 280.5 L 678.5 280.5 Z M 678.5 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.635791%25,57.160681%25,54.948843%25);fill-opacity:1;" d="M 678.5 281 L 697.300781 281 L 697.300781 230.300781 L 678.5 230.300781 Z M 678.5 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.416007%25,39.929044%25,55.548191%25);fill-opacity:1;" d="M 678.5 230.800781 L 697.300781 230.800781 L 697.300781 180.101562 L 678.5 180.101562 Z M 678.5 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.093364%25,59.630519%25,54.347003%25);fill-opacity:1;" d="M 678.5 180.601562 L 697.300781 180.601562 L 697.300781 129.902344 L 678.5 129.902344 Z M 678.5 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.637361%25,46.438664%25,55.805182%25);fill-opacity:1;" d="M 678.5 130.398438 L 697.300781 130.398438 L 697.300781 79.699219 L 678.5 79.699219 Z M 678.5 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.206563%25,9.681486%25,41.88157%25);fill-opacity:1;" d="M 678.5 80.199219 L 697.300781 80.199219 L 697.300781 30 L 678.5 30 Z M 678.5 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.308325%25,58.515316%25,54.638207%25);fill-opacity:1;" d="M 696.800781 532 L 715.601562 532 L 715.601562 481.300781 L 696.800781 481.300781 Z M 696.800781 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.870439%25,45.859709%25,55.803865%25);fill-opacity:1;" d="M 696.800781 481.800781 L 715.601562 481.800781 L 715.601562 431.101562 L 696.800781 431.101562 Z M 696.800781 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.10293%25,62.663704%25,53.308302%25);fill-opacity:1;" d="M 696.800781 431.601562 L 715.601562 431.601562 L 715.601562 380.902344 L 696.800781 380.902344 Z M 696.800781 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.512311%25,51.823097%25,55.649561%25);fill-opacity:1;" d="M 696.800781 381.398438 L 715.601562 381.398438 L 715.601562 330.699219 L 696.800781 330.699219 Z M 696.800781 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(25.213906%25,26.981735%25,53.152019%25);fill-opacity:1;" d="M 696.800781 331.199219 L 715.601562 331.199219 L 715.601562 280.5 L 696.800781 280.5 Z M 696.800781 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.632519%25,67.272526%25,50.913936%25);fill-opacity:1;" d="M 696.800781 281 L 715.601562 281 L 715.601562 230.300781 L 696.800781 230.300781 Z M 696.800781 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.83427%25,22.129498%25,51.045436%25);fill-opacity:1;" d="M 696.800781 230.800781 L 715.601562 230.800781 L 715.601562 180.101562 L 696.800781 180.101562 Z M 696.800781 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.097212%25,38.429114%25,55.43102%25);fill-opacity:1;" d="M 696.800781 180.601562 L 715.601562 180.601562 L 715.601562 129.902344 L 696.800781 129.902344 Z M 696.800781 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.453114%25,23.426557%25,51.690406%25);fill-opacity:1;" d="M 696.800781 130.398438 L 715.601562 130.398438 L 715.601562 79.699219 L 696.800781 79.699219 Z M 696.800781 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.571032%25,46.60342%25,55.805558%25);fill-opacity:1;" d="M 696.800781 80.199219 L 715.601562 80.199219 L 715.601562 30 L 696.800781 30 Z M 696.800781 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(25.044617%25,27.407646%25,53.291166%25);fill-opacity:1;" d="M 715.101562 532 L 733.902344 532 L 733.902344 481.300781 L 715.101562 481.300781 Z M 715.101562 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.496105%25,44.352332%25,55.767715%25);fill-opacity:1;" d="M 715.101562 481.800781 L 733.902344 481.800781 L 733.902344 431.101562 L 715.101562 431.101562 Z M 715.101562 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.097758%25,7.996052%25,40.330645%25);fill-opacity:1;" d="M 715.101562 431.601562 L 733.902344 431.601562 L 733.902344 380.902344 L 715.101562 380.902344 Z M 715.101562 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.283842%25,49.837929%25,55.758899%25);fill-opacity:1;" d="M 715.101562 381.398438 L 733.902344 381.398438 L 733.902344 330.699219 L 715.101562 330.699219 Z M 715.101562 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.212357%25,50.019336%25,55.753732%25);fill-opacity:1;" d="M 715.101562 331.199219 L 733.902344 331.199219 L 733.902344 280.5 L 715.101562 280.5 Z M 715.101562 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.025797%25,61.283976%25,53.809202%25);fill-opacity:1;" d="M 715.101562 281 L 733.902344 281 L 733.902344 230.300781 L 715.101562 230.300781 Z M 715.101562 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(21.774805%25,34.820944%25,55.001277%25);fill-opacity:1;" d="M 715.101562 230.800781 L 733.902344 230.800781 L 733.902344 180.101562 L 715.101562 180.101562 Z M 715.101562 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(25.601888%25,25.909507%25,52.73363%25);fill-opacity:1;" d="M 715.101562 180.601562 L 733.902344 180.601562 L 733.902344 129.902344 L 715.101562 129.902344 Z M 715.101562 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(25.833592%25,25.269175%25,52.483767%25);fill-opacity:1;" d="M 715.101562 130.398438 L 733.902344 130.398438 L 733.902344 79.699219 L 715.101562 79.699219 Z M 715.101562 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.88853%25,48.303425%25,55.802596%25);fill-opacity:1;" d="M 715.101562 80.199219 L 733.902344 80.199219 L 733.902344 30 L 715.101562 30 Z M 715.101562 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.876481%25,17.478858%25,48.269549%25);fill-opacity:1;" d="M 733.398438 532 L 752.199219 532 L 752.199219 481.300781 L 733.398438 481.300781 Z M 733.398438 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.546845%25,54.400843%25,55.396998%25);fill-opacity:1;" d="M 733.398438 481.800781 L 752.199219 481.800781 L 752.199219 431.101562 L 733.398438 431.101562 Z M 733.398438 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(24.062778%25,29.77896%25,53.995824%25);fill-opacity:1;" d="M 733.398438 431.601562 L 752.199219 431.601562 L 752.199219 380.902344 L 733.398438 380.902344 Z M 733.398438 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.235252%25,47.437486%25,55.807453%25);fill-opacity:1;" d="M 733.398438 381.398438 L 752.199219 381.398438 L 752.199219 330.699219 L 733.398438 330.699219 Z M 733.398438 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.550153%25,74.77172%25,44.131547%25);fill-opacity:1;" d="M 733.398438 331.199219 L 752.199219 331.199219 L 752.199219 280.5 L 733.398438 280.5 Z M 733.398438 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.517123%25,31.013268%25,54.285717%25);fill-opacity:1;" d="M 733.398438 281 L 752.199219 281 L 752.199219 230.300781 L 733.398438 230.300781 Z M 733.398438 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.918461%25,17.138085%25,48.020002%25);fill-opacity:1;" d="M 733.398438 230.800781 L 752.199219 230.800781 L 752.199219 180.101562 L 733.398438 180.101562 Z M 733.398438 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.53488%25,51.764619%25,55.653548%25);fill-opacity:1;" d="M 733.398438 180.601562 L 752.199219 180.601562 L 752.199219 129.902344 L 733.398438 129.902344 Z M 733.398438 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.505776%25,3.920132%25,36.546421%25);fill-opacity:1;" d="M 733.398438 130.398438 L 752.199219 130.398438 L 752.199219 79.699219 L 733.398438 79.699219 Z M 733.398438 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.766457%25,41.387054%25,55.643636%25);fill-opacity:1;" d="M 733.398438 80.199219 L 752.199219 80.199219 L 752.199219 30 L 733.398438 30 Z M 733.398438 80.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.317446%25,49.752656%25,55.761325%25);fill-opacity:1;" d="M 751.699219 532 L 770 532 L 770 481.300781 L 751.699219 481.300781 Z M 751.699219 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.787719%25,36.940145%25,55.272841%25);fill-opacity:1;" d="M 751.699219 481.800781 L 770 481.800781 L 770 431.101562 L 751.699219 431.101562 Z M 751.699219 481.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.860886%25,17.605445%25,48.362246%25);fill-opacity:1;" d="M 751.699219 431.601562 L 770 431.601562 L 770 380.902344 L 751.699219 380.902344 Z M 751.699219 431.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.134332%25,47.688162%25,55.80802%25);fill-opacity:1;" d="M 751.699219 381.398438 L 770 381.398438 L 770 330.699219 L 751.699219 330.699219 Z M 751.699219 381.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.189616%25,62.913251%25,53.193933%25);fill-opacity:1;" d="M 751.699219 331.199219 L 770 331.199219 L 770 280.5 L 751.699219 280.5 Z M 751.699219 331.199219 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(21.780589%25,34.808517%25,54.999298%25);fill-opacity:1;" d="M 751.699219 281 L 770 281 L 770 230.300781 L 751.699219 230.300781 Z M 751.699219 281 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.52486%25,71.038628%25,48.007295%25);fill-opacity:1;" d="M 751.699219 230.800781 L 770 230.800781 L 770 180.101562 L 751.699219 180.101562 Z M 751.699219 230.800781 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(25.933111%25,24.994142%25,52.376449%25);fill-opacity:1;" d="M 751.699219 180.601562 L 770 180.601562 L 770 129.902344 L 751.699219 129.902344 Z M 751.699219 180.601562 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.330329%25,58.401161%25,54.668015%25);fill-opacity:1;" d="M 751.699219 130.398438 L 770 130.398438 L 770 79.699219 L 751.699219 79.699219 Z M 751.699219 130.398438 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.511033%25,68.036318%25,50.369298%25);fill-opacity:1;" d="M 751.699219 80.199219 L 770 80.199219 L 770 30 L 751.699219 30 Z M 751.699219 80.199219 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 81.640625 532.5 L 81.640625 542.5 M 132.035156 532.5 L 132.035156 542.5 M 182.433594 532.5 L 182.433594 542.5 M 232.828125 532.5 L 232.828125 542.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.5 522.546875 L 63.5 522.546875 M 73.5 380.671875 L 63.5 380.671875 M 73.5 238.796875 L 63.5 238.796875 M 73.5 96.921875 L 63.5 96.921875 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 334.636719 532.5 L 334.636719 542.5 M 385.050781 532.5 L 385.050781 542.5 M 435.464844 532.5 L 435.464844 542.5 M 485.878906 532.5 L 485.878906 542.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.5 401.339844 L 317.5 401.339844 M 327.5 263.148438 L 317.5 263.148438 M 327.5 124.957031 L 317.5 124.957031 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 587 532.5 L 587 542.5 M 632.75 532.5 L 632.75 542.5 M 678.5 532.5 L 678.5 542.5 M 724.25 532.5 L 724.25 542.5 M 770 532.5 L 770 542.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 586.5 532 L 576.5 532 M 586.5 406.5 L 576.5 406.5 M 586.5 281 L 576.5 281 M 586.5 155.5 L 576.5 155.5 M 586.5 30 L 576.5 30 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.5 532 L 257.5 532 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 74 532.5 L 74 29.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 73.5 30 L 257.5 30 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 257 532.5 L 257 29.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.5 532 L 511.5 532 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 328 532.5 L 328 29.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 327.5 30 L 511.5 30 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 511 532.5 L 511 29.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 586.5 532 L 770.5 532 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 587 532.5 L 587 29.5 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 586.5 30 L 770.5 30 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:1;stroke-miterlimit:10;" d="M 770 532.5 L 770 29.5 "/>
</g>
</svg>
'/><p>You can also index further into a <code>FigurePosition</code>, which creates a <code>FigureSubposition</code>. With <code>FigureSubposition</code>s you can describe positions in arbitrarily nested grid layouts. Often, a desired plot layout can only be achieved with nesting, and repeatedly indexing makes this easy.</p><pre><code class="language-julia">using CairoMakie
f = Figure(resolution = (800, 600))
f[1, 1] = Axis(f, title = "I'm not nested")
f[1, 2][1, 1] = Axis(f, title = "I'm nested")
# plotting into nested positions also works
heatmap(f[1, 2][2, 1], randn(20, 20))
f</code></pre><img src='data:image/svg+xml;utf-8,<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="800pt" height="600pt" viewBox="0 0 800 600" version="1.1">
<defs>
<g>
<symbol overflow="visible" id="glyph0-0">
<path style="stroke:none;" d="M 1 3.53125 L 1 -14.109375 L 11 -14.109375 L 11 3.53125 Z M 2.125 2.421875 L 9.890625 2.421875 L 9.890625 -12.984375 L 2.125 -12.984375 Z M 2.125 2.421875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-1">
<path style="stroke:none;" d="M 6.359375 -13.28125 C 5.335938 -13.28125 4.570312 -12.78125 4.0625 -11.78125 C 3.550781 -10.78125 3.296875 -9.28125 3.296875 -7.28125 C 3.296875 -5.28125 3.550781 -3.78125 4.0625 -2.78125 C 4.570312 -1.78125 5.335938 -1.28125 6.359375 -1.28125 C 7.378906 -1.28125 8.144531 -1.78125 8.65625 -2.78125 C 9.164062 -3.78125 9.421875 -5.28125 9.421875 -7.28125 C 9.421875 -9.28125 9.164062 -10.78125 8.65625 -11.78125 C 8.144531 -12.78125 7.378906 -13.28125 6.359375 -13.28125 Z M 6.359375 -14.84375 C 7.992188 -14.84375 9.238281 -14.195312 10.09375 -12.90625 C 10.957031 -11.613281 11.390625 -9.738281 11.390625 -7.28125 C 11.390625 -4.820312 10.957031 -2.945312 10.09375 -1.65625 C 9.238281 -0.363281 7.992188 0.28125 6.359375 0.28125 C 4.722656 0.28125 3.472656 -0.363281 2.609375 -1.65625 C 1.742188 -2.945312 1.3125 -4.820312 1.3125 -7.28125 C 1.3125 -9.738281 1.742188 -11.613281 2.609375 -12.90625 C 3.472656 -14.195312 4.722656 -14.84375 6.359375 -14.84375 Z M 6.359375 -14.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-2">
<path style="stroke:none;" d="M 3.84375 -1.65625 L 10.71875 -1.65625 L 10.71875 0 L 1.46875 0 L 1.46875 -1.65625 C 2.21875 -2.4375 3.238281 -3.476562 4.53125 -4.78125 C 5.820312 -6.082031 6.632812 -6.925781 6.96875 -7.3125 C 7.59375 -8.019531 8.03125 -8.617188 8.28125 -9.109375 C 8.53125 -9.597656 8.65625 -10.082031 8.65625 -10.5625 C 8.65625 -11.332031 8.382812 -11.960938 7.84375 -12.453125 C 7.300781 -12.941406 6.59375 -13.1875 5.71875 -13.1875 C 5.101562 -13.1875 4.453125 -13.078125 3.765625 -12.859375 C 3.078125 -12.648438 2.34375 -12.328125 1.5625 -11.890625 L 1.5625 -13.875 C 2.351562 -14.195312 3.09375 -14.4375 3.78125 -14.59375 C 4.476562 -14.757812 5.113281 -14.84375 5.6875 -14.84375 C 7.195312 -14.84375 8.398438 -14.460938 9.296875 -13.703125 C 10.191406 -12.953125 10.640625 -11.945312 10.640625 -10.6875 C 10.640625 -10.082031 10.523438 -9.507812 10.296875 -8.96875 C 10.078125 -8.4375 9.671875 -7.804688 9.078125 -7.078125 C 8.921875 -6.890625 8.40625 -6.34375 7.53125 -5.4375 C 6.65625 -4.539062 5.425781 -3.28125 3.84375 -1.65625 Z M 3.84375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-3">
<path style="stroke:none;" d="M 2.15625 -14.578125 L 9.90625 -14.578125 L 9.90625 -12.921875 L 3.96875 -12.921875 L 3.96875 -9.34375 C 4.25 -9.445312 4.53125 -9.519531 4.8125 -9.5625 C 5.101562 -9.613281 5.394531 -9.640625 5.6875 -9.640625 C 7.3125 -9.640625 8.597656 -9.191406 9.546875 -8.296875 C 10.503906 -7.410156 10.984375 -6.203125 10.984375 -4.671875 C 10.984375 -3.109375 10.492188 -1.890625 9.515625 -1.015625 C 8.535156 -0.148438 7.15625 0.28125 5.375 0.28125 C 4.769531 0.28125 4.148438 0.226562 3.515625 0.125 C 2.878906 0.0195312 2.222656 -0.132812 1.546875 -0.34375 L 1.546875 -2.328125 C 2.128906 -2.003906 2.734375 -1.765625 3.359375 -1.609375 C 3.984375 -1.453125 4.644531 -1.375 5.34375 -1.375 C 6.46875 -1.375 7.359375 -1.671875 8.015625 -2.265625 C 8.671875 -2.859375 9 -3.660156 9 -4.671875 C 9 -5.691406 8.671875 -6.5 8.015625 -7.09375 C 7.359375 -7.6875 6.46875 -7.984375 5.34375 -7.984375 C 4.8125 -7.984375 4.285156 -7.921875 3.765625 -7.796875 C 3.242188 -7.679688 2.707031 -7.5 2.15625 -7.25 Z M 2.15625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-4">
<path style="stroke:none;" d="M 1.640625 -14.578125 L 11.015625 -14.578125 L 11.015625 -13.734375 L 5.71875 0 L 3.65625 0 L 8.640625 -12.921875 L 1.640625 -12.921875 Z M 1.640625 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-5">
<path style="stroke:none;" d="M 2.484375 -1.65625 L 5.703125 -1.65625 L 5.703125 -12.78125 L 2.203125 -12.078125 L 2.203125 -13.875 L 5.6875 -14.578125 L 7.65625 -14.578125 L 7.65625 -1.65625 L 10.875 -1.65625 L 10.875 0 L 2.484375 0 Z M 2.484375 -1.65625 "/>
</symbol>
<symbol overflow="visible" id="glyph0-6">
<path style="stroke:none;" d="M 1.96875 -14.578125 L 3.9375 -14.578125 L 3.9375 0 L 1.96875 0 Z M 1.96875 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-7">
<path style="stroke:none;" d="M 3.578125 -14.578125 L 3.578125 -9.15625 L 1.921875 -9.15625 L 1.921875 -14.578125 Z M 3.578125 -14.578125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-8">
<path style="stroke:none;" d="M 10.40625 -8.84375 C 10.851562 -9.644531 11.390625 -10.238281 12.015625 -10.625 C 12.640625 -11.007812 13.375 -11.203125 14.21875 -11.203125 C 15.351562 -11.203125 16.226562 -10.800781 16.84375 -10 C 17.46875 -9.207031 17.78125 -8.078125 17.78125 -6.609375 L 17.78125 0 L 15.984375 0 L 15.984375 -6.546875 C 15.984375 -7.585938 15.796875 -8.363281 15.421875 -8.875 C 15.046875 -9.382812 14.476562 -9.640625 13.71875 -9.640625 C 12.789062 -9.640625 12.054688 -9.328125 11.515625 -8.703125 C 10.972656 -8.085938 10.703125 -7.25 10.703125 -6.1875 L 10.703125 0 L 8.890625 0 L 8.890625 -6.546875 C 8.890625 -7.597656 8.703125 -8.375 8.328125 -8.875 C 7.960938 -9.382812 7.394531 -9.640625 6.625 -9.640625 C 5.707031 -9.640625 4.976562 -9.328125 4.4375 -8.703125 C 3.894531 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.234375 C 4.03125 -9.910156 4.519531 -10.40625 5.09375 -10.71875 C 5.664062 -11.039062 6.347656 -11.203125 7.140625 -11.203125 C 7.929688 -11.203125 8.601562 -11 9.15625 -10.59375 C 9.71875 -10.1875 10.132812 -9.601562 10.40625 -8.84375 Z M 10.40625 -8.84375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-9">
<path style="stroke:none;" d=""/>
</symbol>
<symbol overflow="visible" id="glyph0-10">
<path style="stroke:none;" d="M 10.984375 -6.609375 L 10.984375 0 L 9.1875 0 L 9.1875 -6.546875 C 9.1875 -7.578125 8.984375 -8.347656 8.578125 -8.859375 C 8.171875 -9.378906 7.566406 -9.640625 6.765625 -9.640625 C 5.785156 -9.640625 5.015625 -9.328125 4.453125 -8.703125 C 3.898438 -8.085938 3.625 -7.25 3.625 -6.1875 L 3.625 0 L 1.8125 0 L 1.8125 -10.9375 L 3.625 -10.9375 L 3.625 -9.234375 C 4.050781 -9.890625 4.554688 -10.378906 5.140625 -10.703125 C 5.722656 -11.035156 6.394531 -11.203125 7.15625 -11.203125 C 8.414062 -11.203125 9.367188 -10.8125 10.015625 -10.03125 C 10.660156 -9.257812 10.984375 -8.117188 10.984375 -6.609375 Z M 10.984375 -6.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-11">
<path style="stroke:none;" d="M 6.125 -9.671875 C 5.15625 -9.671875 4.390625 -9.296875 3.828125 -8.546875 C 3.273438 -7.796875 3 -6.765625 3 -5.453125 C 3 -4.148438 3.273438 -3.117188 3.828125 -2.359375 C 4.390625 -1.609375 5.15625 -1.234375 6.125 -1.234375 C 7.082031 -1.234375 7.835938 -1.609375 8.390625 -2.359375 C 8.953125 -3.117188 9.234375 -4.148438 9.234375 -5.453125 C 9.234375 -6.753906 8.953125 -7.78125 8.390625 -8.53125 C 7.835938 -9.289062 7.082031 -9.671875 6.125 -9.671875 Z M 6.125 -11.203125 C 7.6875 -11.203125 8.910156 -10.691406 9.796875 -9.671875 C 10.691406 -8.660156 11.140625 -7.253906 11.140625 -5.453125 C 11.140625 -3.671875 10.691406 -2.269531 9.796875 -1.25 C 8.910156 -0.226562 7.6875 0.28125 6.125 0.28125 C 4.550781 0.28125 3.320312 -0.226562 2.4375 -1.25 C 1.550781 -2.269531 1.109375 -3.671875 1.109375 -5.453125 C 1.109375 -7.253906 1.550781 -8.660156 2.4375 -9.671875 C 3.320312 -10.691406 4.550781 -11.203125 6.125 -11.203125 Z M 6.125 -11.203125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-12">
<path style="stroke:none;" d="M 3.65625 -14.046875 L 3.65625 -10.9375 L 7.359375 -10.9375 L 7.359375 -9.546875 L 3.65625 -9.546875 L 3.65625 -3.609375 C 3.65625 -2.710938 3.773438 -2.132812 4.015625 -1.875 C 4.265625 -1.625 4.765625 -1.5 5.515625 -1.5 L 7.359375 -1.5 L 7.359375 0 L 5.515625 0 C 4.128906 0 3.171875 -0.253906 2.640625 -0.765625 C 2.117188 -1.285156 1.859375 -2.234375 1.859375 -3.609375 L 1.859375 -9.546875 L 0.53125 -9.546875 L 0.53125 -10.9375 L 1.859375 -10.9375 L 1.859375 -14.046875 Z M 3.65625 -14.046875 "/>
</symbol>
<symbol overflow="visible" id="glyph0-13">
<path style="stroke:none;" d="M 11.234375 -5.921875 L 11.234375 -5.046875 L 2.984375 -5.046875 C 3.054688 -3.804688 3.425781 -2.859375 4.09375 -2.203125 C 4.757812 -1.554688 5.691406 -1.234375 6.890625 -1.234375 C 7.578125 -1.234375 8.242188 -1.316406 8.890625 -1.484375 C 9.535156 -1.660156 10.179688 -1.914062 10.828125 -2.25 L 10.828125 -0.5625 C 10.179688 -0.28125 9.519531 -0.0703125 8.84375 0.0625 C 8.164062 0.207031 7.476562 0.28125 6.78125 0.28125 C 5.03125 0.28125 3.644531 -0.222656 2.625 -1.234375 C 1.613281 -2.253906 1.109375 -3.628906 1.109375 -5.359375 C 1.109375 -7.148438 1.585938 -8.570312 2.546875 -9.625 C 3.515625 -10.675781 4.820312 -11.203125 6.46875 -11.203125 C 7.9375 -11.203125 9.097656 -10.726562 9.953125 -9.78125 C 10.804688 -8.832031 11.234375 -7.546875 11.234375 -5.921875 Z M 9.4375 -6.453125 C 9.425781 -7.429688 9.148438 -8.210938 8.609375 -8.796875 C 8.078125 -9.378906 7.367188 -9.671875 6.484375 -9.671875 C 5.484375 -9.671875 4.679688 -9.390625 4.078125 -8.828125 C 3.472656 -8.265625 3.125 -7.46875 3.03125 -6.4375 Z M 9.4375 -6.453125 "/>
</symbol>
<symbol overflow="visible" id="glyph0-14">
<path style="stroke:none;" d="M 8.859375 -10.609375 L 8.859375 -8.921875 C 8.347656 -9.179688 7.816406 -9.375 7.265625 -9.5 C 6.722656 -9.632812 6.160156 -9.703125 5.578125 -9.703125 C 4.679688 -9.703125 4.007812 -9.5625 3.5625 -9.28125 C 3.125 -9.007812 2.90625 -8.601562 2.90625 -8.0625 C 2.90625 -7.644531 3.0625 -7.316406 3.375 -7.078125 C 3.695312 -6.835938 4.335938 -6.609375 5.296875 -6.390625 L 5.921875 -6.265625 C 7.191406 -5.984375 8.09375 -5.59375 8.625 -5.09375 C 9.164062 -4.601562 9.4375 -3.910156 9.4375 -3.015625 C 9.4375 -2.003906 9.035156 -1.203125 8.234375 -0.609375 C 7.429688 -0.015625 6.328125 0.28125 4.921875 0.28125 C 4.335938 0.28125 3.726562 0.222656 3.09375 0.109375 C 2.457031 -0.00390625 1.785156 -0.175781 1.078125 -0.40625 L 1.078125 -2.25 C 1.742188 -1.90625 2.398438 -1.644531 3.046875 -1.46875 C 3.691406 -1.300781 4.332031 -1.21875 4.96875 -1.21875 C 5.8125 -1.21875 6.457031 -1.363281 6.90625 -1.65625 C 7.363281 -1.945312 7.59375 -2.351562 7.59375 -2.875 C 7.59375 -3.363281 7.425781 -3.738281 7.09375 -4 C 6.769531 -4.257812 6.050781 -4.507812 4.9375 -4.75 L 4.3125 -4.90625 C 3.195312 -5.132812 2.390625 -5.488281 1.890625 -5.96875 C 1.398438 -6.457031 1.15625 -7.128906 1.15625 -7.984375 C 1.15625 -9.003906 1.519531 -9.796875 2.25 -10.359375 C 2.976562 -10.921875 4.015625 -11.203125 5.359375 -11.203125 C 6.023438 -11.203125 6.648438 -11.148438 7.234375 -11.046875 C 7.816406 -10.953125 8.359375 -10.804688 8.859375 -10.609375 Z M 8.859375 -10.609375 "/>
</symbol>
<symbol overflow="visible" id="glyph0-15">
<path style="stroke:none;" d="M 9.078125 -9.28125 L 9.078125 -15.203125 L 10.875 -15.203125 L 10.875 0 L 9.078125 0 L 9.078125 -1.640625 C 8.703125 -0.992188 8.222656 -0.507812 7.640625 -0.1875 C 7.066406 0.125 6.378906 0.28125 5.578125 0.28125 C 4.253906 0.28125 3.175781 -0.242188 2.34375 -1.296875 C 1.519531 -2.347656 1.109375 -3.734375 1.109375 -5.453125 C 1.109375 -7.171875 1.519531 -8.554688 2.34375 -9.609375 C 3.175781 -10.671875 4.253906 -11.203125 5.578125 -11.203125 C 6.378906 -11.203125 7.066406 -11.039062 7.640625 -10.71875 C 8.222656 -10.40625 8.703125 -9.925781 9.078125 -9.28125 Z M 2.953125 -5.453125 C 2.953125 -4.140625 3.222656 -3.101562 3.765625 -2.34375 C 4.316406 -1.59375 5.066406 -1.21875 6.015625 -1.21875 C 6.960938 -1.21875 7.707031 -1.59375 8.25 -2.34375 C 8.800781 -3.101562 9.078125 -4.140625 9.078125 -5.453125 C 9.078125 -6.773438 8.800781 -7.8125 8.25 -8.5625 C 7.707031 -9.320312 6.960938 -9.703125 6.015625 -9.703125 C 5.066406 -9.703125 4.316406 -9.320312 3.765625 -8.5625 C 3.222656 -7.8125 2.953125 -6.773438 2.953125 -5.453125 Z M 2.953125 -5.453125 "/>
</symbol>
</g>
</defs>
<g id="surface16">
<rect x="0" y="0" width="800" height="600" style="fill:rgb(100%25,100%25,100%25);fill-opacity:1;stroke:none;"/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 80 532 L 390 532 L 390 63 L 80 63 Z M 80 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 460 268 L 770 268 L 770 63 L 460 63 Z M 460 268 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(100%25,100%25,100%25);fill-opacity:1;" d="M 460 532 L 770 532 L 770 327 L 460 327 Z M 460 532 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 80 532 L 80 63 M 157.5 532 L 157.5 63 M 235 532 L 235 63 M 312.5 532 L 312.5 63 M 390 532 L 390 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 80 532 L 390 532 M 80 414.75 L 390 414.75 M 80 297.5 L 390 297.5 M 80 180.25 L 390 180.25 M 80 63 L 390 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 460 268 L 460 63 M 537.5 268 L 537.5 63 M 615 268 L 615 63 M 692.5 268 L 692.5 63 M 770 268 L 770 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 460 268 L 770 268 M 460 216.75 L 770 216.75 M 460 165.5 L 770 165.5 M 460 114.25 L 770 114.25 M 460 63 L 770 63 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 460 532 L 460 327 M 537.5 532 L 537.5 327 M 615 532 L 615 327 M 692.5 532 L 692.5 327 M 770 532 L 770 327 "/>
<path style="fill:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke:rgb(0%25,0%25,0%25);stroke-opacity:0.12;stroke-miterlimit:10;" d="M 460 532 L 770 532 M 460 480.75 L 770 480.75 M 460 429.5 L 770 429.5 M 460 378.25 L 770 378.25 M 460 327 L 770 327 "/>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="74.300781" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="145.6875" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="158.414062" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="222.828125" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="235.550781" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-4" x="300.601562" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="313.324219" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="371.136719" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="383.863281" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="396.585938" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="53.921875" y="538.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="41.839844" y="421.671875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="54.566406" y="421.671875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="41.195312" y="304.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="53.921875" y="304.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-4" x="41.839844" y="187.171875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="54.566406" y="187.171875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="28.472656" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="41.195312" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="53.921875" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-6" x="163.183594" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-7" x="169.082031" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="174.578125" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-9" x="194.0625" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-10" x="200.421875" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-11" x="213.09375" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-12" x="225.332031" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-9" x="233.171875" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-10" x="239.53125" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-13" x="252.207031" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-14" x="264.511719" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-12" x="274.929688" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-13" x="282.773438" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-15" x="295.078125" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="454.300781" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="525.6875" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="538.414062" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="602.828125" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="615.550781" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-4" x="680.601562" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="693.324219" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="751.136719" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="763.863281" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="776.585938" y="302.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="433.921875" y="274.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="421.839844" y="223.671875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="434.566406" y="223.671875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="421.195312" y="172.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="433.921875" y="172.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-4" x="421.839844" y="121.171875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="434.566406" y="121.171875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="408.472656" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="421.195312" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="433.921875" y="69.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-6" x="562.738281" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-7" x="568.636719" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-8" x="574.136719" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-9" x="593.617188" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-10" x="599.976562" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-13" x="612.652344" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-14" x="624.957031" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-12" x="635.375" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-13" x="643.21875" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-15" x="655.523438" y="48.28125"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="454.300781" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="532.011719" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="602.5" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="615.226562" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="680.320312" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="693.046875" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="757.867188" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="770.589844" y="566.5625"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="433.921875" y="538.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="434.566406" y="487.671875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="421.195312" y="436.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="433.921875" y="436.421875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-5" x="421.839844" y="385.171875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-3" x="434.566406" y="385.171875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-2" x="421.195312" y="333.921875"/>
</g>
<g style="fill:rgb(0%25,0%25,0%25);fill-opacity:1;">
<use xlink:href="%23glyph0-1" x="433.921875" y="333.921875"/>
</g>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.051078%25,16.061573%25,47.231683%25);fill-opacity:1;" d="M 460 532 L 476 532 L 476 521.25 L 460 521.25 Z M 460 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.304059%25,49.786627%25,55.76036%25);fill-opacity:1;" d="M 460 521.75 L 476 521.75 L 476 511 L 460 511 Z M 460 521.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(35.508323%25,78.384501%25,39.101982%25);fill-opacity:1;" d="M 460 511.5 L 476 511.5 L 476 500.75 L 460 500.75 Z M 460 511.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.376796%25,47.085893%25,55.806649%25);fill-opacity:1;" d="M 460 501.25 L 476 501.25 L 476 490.5 L 460 490.5 Z M 460 501.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.922601%25,64.965636%25,52.247244%25);fill-opacity:1;" d="M 460 491 L 476 491 L 476 480.25 L 460 480.25 Z M 460 491 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.467174%25,49.372691%25,55.77215%25);fill-opacity:1;" d="M 460 480.75 L 476 480.75 L 476 470 L 460 470 Z M 460 480.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(22.758643%25,32.703227%25,54.657298%25);fill-opacity:1;" d="M 460 470.5 L 476 470.5 L 476 459.75 L 460 459.75 Z M 460 470.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.703585%25,66.019279%25,51.638269%25);fill-opacity:1;" d="M 460 460.25 L 476 460.25 L 476 449.5 L 460 449.5 Z M 460 460.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.272125%25,63.150781%25,53.085077%25);fill-opacity:1;" d="M 460 450 L 476 450 L 476 439.25 L 460 439.25 Z M 460 450 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(66.106093%25,86.080104%25,20.085482%25);fill-opacity:1;" d="M 460 439.75 L 476 439.75 L 476 429 L 460 429 Z M 460 439.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.253898%25,44.933119%25,55.783623%25);fill-opacity:1;" d="M 460 429.5 L 476 429.5 L 476 418.75 L 460 418.75 Z M 460 429.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.377559%25,58.156133%25,54.731995%25);fill-opacity:1;" d="M 460 419.25 L 476 419.25 L 476 408.5 L 460 408.5 Z M 460 419.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.131238%25,70.132029%25,48.792341%25);fill-opacity:1;" d="M 460 409 L 476 409 L 476 398.25 L 460 398.25 Z M 460 409 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.023267%25,61.177188%25,53.846848%25);fill-opacity:1;" d="M 460 398.75 L 476 398.75 L 476 388 L 460 388 Z M 460 398.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.220281%25,40.36001%25,55.581862%25);fill-opacity:1;" d="M 460 388.5 L 476 388.5 L 476 377.75 L 460 377.75 Z M 460 388.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(21.302487%25,35.835302%25,55.148435%25);fill-opacity:1;" d="M 460 378.25 L 476 378.25 L 476 367.5 L 460 367.5 Z M 460 378.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.783743%25,30.419216%25,54.155099%25);fill-opacity:1;" d="M 460 368 L 476 368 L 476 357.25 L 460 357.25 Z M 460 368 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.140372%25,62.771493%25,53.258902%25);fill-opacity:1;" d="M 460 357.75 L 476 357.75 L 476 347 L 460 347 Z M 460 357.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.702855%25,64.390773%25,52.516794%25);fill-opacity:1;" d="M 460 347.5 L 476 347.5 L 476 336.75 L 460 336.75 Z M 460 347.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.474371%25,63.733011%25,52.818245%25);fill-opacity:1;" d="M 460 337.25 L 476 337.25 L 476 327 L 460 327 Z M 460 337.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.492265%25,63.784522%25,52.794635%25);fill-opacity:1;" d="M 475.5 532 L 491.5 532 L 491.5 521.25 L 475.5 521.25 Z M 475.5 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(99.324799%25,90.615702%25,14.393599%25);fill-opacity:1;" d="M 475.5 521.75 L 491.5 521.75 L 491.5 511 L 475.5 511 Z M 475.5 521.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.433288%25,42.151853%25,55.682647%25);fill-opacity:1;" d="M 475.5 511.5 L 491.5 511.5 L 491.5 500.75 L 475.5 500.75 Z M 475.5 511.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.127147%25,76.342088%25,42.151982%25);fill-opacity:1;" d="M 475.5 501.25 L 491.5 501.25 L 491.5 490.5 L 475.5 490.5 Z M 475.5 501.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(32.653862%25,77.314931%25,40.724683%25);fill-opacity:1;" d="M 475.5 491 L 491.5 491 L 491.5 480.25 L 475.5 480.25 Z M 475.5 491 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.791%25,56.663883%25,55.03996%25);fill-opacity:1;" d="M 475.5 480.75 L 491.5 480.75 L 491.5 470 L 475.5 470 Z M 475.5 480.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.163186%25,38.283849%25,55.419672%25);fill-opacity:1;" d="M 475.5 470.5 L 491.5 470.5 L 491.5 459.75 L 475.5 459.75 Z M 475.5 470.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.084479%25,65.184027%25,52.121019%25);fill-opacity:1;" d="M 475.5 460.25 L 491.5 460.25 L 491.5 449.5 L 475.5 449.5 Z M 475.5 460.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.330676%25,69.611233%25,49.24331%25);fill-opacity:1;" d="M 475.5 450 L 491.5 450 L 491.5 439.25 L 475.5 439.25 Z M 475.5 450 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.975638%25,40.906873%25,55.619138%25);fill-opacity:1;" d="M 475.5 439.75 L 491.5 439.75 L 491.5 429 L 475.5 429 Z M 475.5 439.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.426974%25,49.474707%25,55.769241%25);fill-opacity:1;" d="M 475.5 429.5 L 491.5 429.5 L 491.5 418.75 L 475.5 418.75 Z M 475.5 429.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(43.355155%25,80.891633%25,34.478375%25);fill-opacity:1;" d="M 475.5 419.25 L 491.5 419.25 L 491.5 408.5 L 475.5 408.5 Z M 475.5 419.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.528417%25,19.284533%25,49.426165%25);fill-opacity:1;" d="M 475.5 409 L 491.5 409 L 491.5 398.25 L 475.5 398.25 Z M 475.5 409 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.309062%25,69.59601%25,49.255788%25);fill-opacity:1;" d="M 475.5 398.75 L 491.5 398.75 L 491.5 388 L 475.5 388 Z M 475.5 398.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(47.507498%25,82.063711%25,31.960487%25);fill-opacity:1;" d="M 475.5 388.5 L 491.5 388.5 L 491.5 377.75 L 475.5 377.75 Z M 475.5 388.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.632234%25,30.756789%25,54.229319%25);fill-opacity:1;" d="M 475.5 378.25 L 491.5 378.25 L 491.5 367.5 L 475.5 367.5 Z M 475.5 378.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.558784%25,63.976014%25,52.706873%25);fill-opacity:1;" d="M 475.5 368 L 491.5 368 L 491.5 357.25 L 475.5 357.25 Z M 475.5 368 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(30.037639%25,76.307625%25,42.202544%25);fill-opacity:1;" d="M 475.5 357.75 L 491.5 357.75 L 491.5 347 L 475.5 347 Z M 475.5 357.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.371055%25,52.189058%25,55.624598%25);fill-opacity:1;" d="M 475.5 347.5 L 491.5 347.5 L 491.5 336.75 L 475.5 336.75 Z M 475.5 347.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.117538%25,71.424186%25,47.673431%25);fill-opacity:1;" d="M 475.5 337.25 L 491.5 337.25 L 491.5 327 L 475.5 327 Z M 475.5 337.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.13604%25,55.559474%25,55.242521%25);fill-opacity:1;" d="M 491 532 L 507 532 L 507 521.25 L 491 521.25 Z M 491 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.769797%25,56.731749%25,55.027509%25);fill-opacity:1;" d="M 491 521.75 L 507 521.75 L 507 511 L 491 511 Z M 491 521.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(28.858891%25,75.801897%25,42.857382%25);fill-opacity:1;" d="M 491 511.5 L 507 511.5 L 507 500.75 L 491 500.75 Z M 491 511.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.717602%25,56.89882%25,54.996866%25);fill-opacity:1;" d="M 491 501.25 L 507 501.25 L 507 490.5 L 491 490.5 Z M 491 501.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.008207%25,60.541528%25,54.070932%25);fill-opacity:1;" d="M 491 491 L 507 491 L 507 480.25 L 491 480.25 Z M 491 491 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.841655%25,50.969827%25,55.707747%25);fill-opacity:1;" d="M 491 480.75 L 507 480.75 L 507 470 L 491 470 Z M 491 480.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.530185%25,44.270611%25,55.765474%25);fill-opacity:1;" d="M 491 470.5 L 507 470.5 L 507 459.75 L 491 459.75 Z M 491 470.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.056775%25,59.820342%25,54.297435%25);fill-opacity:1;" d="M 491 460.25 L 507 460.25 L 507 449.5 L 491 449.5 Z M 491 460.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(31.9666%25,77.050322%25,41.112906%25);fill-opacity:1;" d="M 491 450 L 507 450 L 507 439.25 L 491 439.25 Z M 491 450 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.906294%25,38.849494%25,55.463856%25);fill-opacity:1;" d="M 491 439.75 L 507 439.75 L 507 429 L 491 429 Z M 491 439.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.036762%25,61.746818%25,53.646046%25);fill-opacity:1;" d="M 491 429.5 L 507 429.5 L 507 418.75 L 491 418.75 Z M 491 429.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.901029%25,41.078138%25,55.627877%25);fill-opacity:1;" d="M 491 419.25 L 507 419.25 L 507 408.5 L 491 408.5 Z M 491 419.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(25.385153%25,74.25189%25,44.7745%25);fill-opacity:1;" d="M 491 409 L 507 409 L 507 398.25 L 491 398.25 Z M 491 409 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(34.337991%25,77.963358%25,39.773345%25);fill-opacity:1;" d="M 491 398.75 L 507 398.75 L 507 388 L 491 388 Z M 491 398.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.274548%25,52.439088%25,55.607551%25);fill-opacity:1;" d="M 491 388.5 L 507 388.5 L 507 377.75 L 491 377.75 Z M 491 388.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.787504%25,75.323832%25,43.448669%25);fill-opacity:1;" d="M 491 378.25 L 507 378.25 L 507 367.5 L 491 367.5 Z M 491 378.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.516012%25,65.766221%25,51.784533%25);fill-opacity:1;" d="M 491 368 L 507 368 L 507 357.25 L 491 357.25 Z M 491 368 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.66158%25,54.087639%25,55.434376%25);fill-opacity:1;" d="M 491 357.75 L 507 357.75 L 507 347 L 491 347 Z M 491 357.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(18.39902%25,42.230514%25,55.686659%25);fill-opacity:1;" d="M 491 347.5 L 507 347.5 L 507 336.75 L 491 336.75 Z M 491 347.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.590487%25,49.059764%25,55.78106%25);fill-opacity:1;" d="M 491 337.25 L 507 337.25 L 507 327 L 491 327 Z M 491 337.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.028578%25,61.401367%25,53.767824%25);fill-opacity:1;" d="M 506.5 532 L 522.5 532 L 522.5 521.25 L 506.5 521.25 Z M 506.5 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(34.385023%25,77.981466%25,39.746779%25);fill-opacity:1;" d="M 506.5 521.75 L 522.5 521.75 L 522.5 511 L 506.5 511 Z M 506.5 521.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.738562%25,69.101131%25,49.609095%25);fill-opacity:1;" d="M 506.5 511.5 L 522.5 511.5 L 522.5 500.75 L 506.5 500.75 Z M 506.5 511.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.260264%25,69.553679%25,49.286008%25);fill-opacity:1;" d="M 506.5 501.25 L 522.5 501.25 L 522.5 490.5 L 506.5 490.5 Z M 506.5 501.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.003838%25,60.35707%25,54.135954%25);fill-opacity:1;" d="M 506.5 491 L 522.5 491 L 522.5 480.25 L 506.5 480.25 Z M 506.5 491 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(20.680325%25,37.170643%25,55.298793%25);fill-opacity:1;" d="M 506.5 480.75 L 522.5 480.75 L 522.5 470 L 506.5 470 Z M 506.5 480.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.797599%25,48.534176%25,55.796021%25);fill-opacity:1;" d="M 506.5 470.5 L 522.5 470.5 L 522.5 459.75 L 506.5 459.75 Z M 506.5 470.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.773338%25,69.899201%25,48.993954%25);fill-opacity:1;" d="M 506.5 460.25 L 522.5 460.25 L 522.5 449.5 L 506.5 449.5 Z M 506.5 460.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.070021%25,59.751624%25,54.315382%25);fill-opacity:1;" d="M 506.5 450 L 522.5 450 L 522.5 439.25 L 506.5 439.25 Z M 506.5 450 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.578678%25,51.65115%25,55.661285%25);fill-opacity:1;" d="M 506.5 439.75 L 522.5 439.75 L 522.5 429 L 506.5 429 Z M 506.5 439.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(44.549251%25,81.239778%25,33.759895%25);fill-opacity:1;" d="M 506.5 429.5 L 522.5 429.5 L 522.5 418.75 L 506.5 418.75 Z M 506.5 429.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.956904%25,43.247384%25,55.737442%25);fill-opacity:1;" d="M 506.5 419.25 L 522.5 419.25 L 522.5 408.5 L 506.5 408.5 Z M 506.5 419.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.661597%25,69.826514%25,49.0569%25);fill-opacity:1;" d="M 506.5 409 L 522.5 409 L 522.5 398.25 L 506.5 398.25 Z M 506.5 409 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.052241%25,62.400192%25,53.415716%25);fill-opacity:1;" d="M 506.5 398.75 L 522.5 398.75 L 522.5 388 L 506.5 388 Z M 506.5 398.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.099431%25,59.599048%25,54.355222%25);fill-opacity:1;" d="M 506.5 388.5 L 522.5 388.5 L 522.5 377.75 L 506.5 377.75 Z M 506.5 388.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(15.212077%25,50.020051%25,55.753714%25);fill-opacity:1;" d="M 506.5 378.25 L 522.5 378.25 L 522.5 367.5 L 506.5 367.5 Z M 506.5 378.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(23.557693%25,73.321927%25,45.777607%25);fill-opacity:1;" d="M 506.5 368 L 522.5 368 L 522.5 357.25 L 506.5 357.25 Z M 506.5 368 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(16.459408%25,46.880689%25,55.806184%25);fill-opacity:1;" d="M 506.5 357.75 L 522.5 357.75 L 522.5 347 L 506.5 347 Z M 506.5 357.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(63.249743%25,85.549527%25,21.945022%25);fill-opacity:1;" d="M 506.5 347.5 L 522.5 347.5 L 522.5 336.75 L 506.5 336.75 Z M 506.5 347.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.875836%25,53.502768%25,55.504179%25);fill-opacity:1;" d="M 506.5 337.25 L 522.5 337.25 L 522.5 327 L 506.5 327 Z M 506.5 337.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(14.546703%25,51.733989%25,55.655634%25);fill-opacity:1;" d="M 522 532 L 538 532 L 538 521.25 L 522 521.25 Z M 522 532 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.005318%25,60.419554%25,54.113925%25);fill-opacity:1;" d="M 522 521.75 L 538 521.75 L 538 511 L 522 511 Z M 522 521.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.69532%25,66.008127%25,51.644713%25);fill-opacity:1;" d="M 522 511.5 L 538 511.5 L 538 500.75 L 522 500.75 Z M 522 511.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.230341%25,69.527721%25,49.304539%25);fill-opacity:1;" d="M 522 501.25 L 538 501.25 L 538 490.5 L 522 490.5 Z M 522 501.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(27.335906%25,75.122327%25,43.6979%25);fill-opacity:1;" d="M 522 491 L 538 491 L 538 480.25 L 522 480.25 Z M 522 491 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.446749%25,63.653493%25,52.854687%25);fill-opacity:1;" d="M 522 480.75 L 538 480.75 L 538 470 L 522 470 Z M 522 480.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(49.521697%25,82.572585%25,30.709031%25);fill-opacity:1;" d="M 522 470.5 L 538 470.5 L 538 459.75 L 522 459.75 Z M 522 470.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.007753%25,45.523345%25,55.799794%25);fill-opacity:1;" d="M 522 460.25 L 538 460.25 L 538 449.5 L 522 449.5 Z M 522 460.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.539985%25,54.419571%25,55.394763%25);fill-opacity:1;" d="M 522 450 L 538 450 L 538 439.25 L 522 439.25 Z M 522 450 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.919708%25,56.251913%25,55.115515%25);fill-opacity:1;" d="M 522 439.75 L 538 439.75 L 538 429 L 522 429 Z M 522 439.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(22.640988%25,72.838789%25,46.280003%25);fill-opacity:1;" d="M 522 429.5 L 538 429.5 L 538 418.75 L 522 418.75 Z M 522 429.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.778027%25,64.607179%25,52.417618%25);fill-opacity:1;" d="M 522 419.25 L 538 419.25 L 538 408.5 L 522 408.5 Z M 522 419.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.849396%25,56.476969%25,55.074239%25);fill-opacity:1;" d="M 522 409 L 538 409 L 538 398.25 L 522 398.25 Z M 522 409 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.744277%25,53.861898%25,55.461317%25);fill-opacity:1;" d="M 522 398.75 L 538 398.75 L 538 388 L 522 388 Z M 522 398.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(17.028815%25,45.472842%25,55.798411%25);fill-opacity:1;" d="M 522 388.5 L 538 388.5 L 538 377.75 L 522 377.75 Z M 522 388.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.357647%25,58.259439%25,54.705024%25);fill-opacity:1;" d="M 522 378.25 L 538 378.25 L 538 367.5 L 522 367.5 Z M 522 378.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(26.272389%25,24.041559%25,51.996225%25);fill-opacity:1;" d="M 522 368 L 538 368 L 538 357.25 L 522 357.25 Z M 522 368 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(12.064976%25,59.777796%25,54.308546%25);fill-opacity:1;" d="M 522 357.75 L 538 357.75 L 538 347 L 522 347 Z M 522 357.75 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(13.450384%25,65.677679%25,51.835704%25);fill-opacity:1;" d="M 522 347.5 L 538 347.5 L 538 336.75 L 522 336.75 Z M 522 347.5 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.965266%25,38.719642%25,55.453712%25);fill-opacity:1;" d="M 522 337.25 L 538 337.25 L 538 327 L 522 327 Z M 522 337.25 "/>
<path style=" stroke:none;fill-rule:nonzero;fill:rgb(19.609851%25,39.502224%25,55.514848%25);fill-opacity:1;" d="M 537.5 532 L 553.5 532 L 553.5 521.25 L 537.5 521.25 Z M 537.5 532 "/>