aboutsummaryrefslogtreecommitdiffstats
path: root/web/posters/poster.SVG
blob: b284ebf6c9d1b8c00a9f67b4d2a30f618a74d460 (plain)
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
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 1.0//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg xmlns="http://www.w3.org/2000/svg">

<!-- Constructed by RISC OS Draw -->
<path style="stroke-width:1.25;stroke:none;fill:#787974;" d="M 1049.865234 686.162109 L 0.994141 686.162109 L 0.994141 617.101562 L 1049.865234 617.101562 L 1049.865234 686.162109 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#AEB2B7;" d="M 1049.865234 616.771484 L 0.994141 616.771484 L 0.994141 587.939453 L 1049.865234 587.939453 L 1049.865234 616.771484 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#D5E7F0;" d="M 1049.865234 592.910156 L 0.994141 592.910156 L 0.994141 47.302734 L 1049.865234 47.302734 L 1049.865234 592.910156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#888C8E;" d="M 1049.865234 621.244141 L 0.994141 621.244141 L 0.994141 616.273438 L 1049.865234 616.273438 L 1049.865234 621.244141 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#EDEFF1;" d="M 266.224609 56.822266 C 256.400391 53.867188  244.447266 54.646484  238.927734 63.9375 C 237.607422 66.160156  242.988281 69.863281  240.246094 72.667969 C 238.318359 74.638672  229.984375 75.095703  227.330078 75.142578 C 219.865234 75.277344  188.552734 69.115234  187.34375 82.585938 C 186.386719 93.251953  203.873047 84.849609  208.464844 90.021484 C 204.054688 95.296875  165.130859 102.990234  187.15625 109.804688 C 194.724609 112.146484  209.251953 105.785156  216.890625 104.056641 C 221.318359 103.052734  228.511719 99.576172  233.087891 101.380859 C 237.251953 103.021484  237.804688 109.107422  240.677734 110.955078 C 260.8125 123.904297  288.154297 98.427734  309.234375 110.072266 C 314.53125 112.996094  314.919922 117.392578  321.667969 119.580078 C 326.1875 121.042969  334.429688 120.449219  339.144531 119.509766 C 347.255859 117.896484  356.226562 114.507812  358.082031 105.699219 C 367.787109 103.763672  432.482422 103.183594  429.208984 93.929688 C 426.871094 87.316406  398.693359 89.742188  393.568359 89.742188 C 388.044922 89.742188  375.771484 92.267578  370.933594 89.84375 C 363.146484 85.941406  367.96875 83.445312  365.056641 77.257812 C 358.076172 62.431641  353.595703 71.179688  341.052734 69.763672 C 327.939453 68.285156  336.753906 53.771484  323.478516 51.027344 C 312.699219 48.798828  312.050781 59.015625  301.658203 52.638672 C 294.808594 48.4375  294.876953 47.302734  283.402344 47.302734 L 266.224609 56.822266 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#EDEFF1;" d="M 376.441406 155.478516 C 374.388672 154.976562  370.589844 155.353516  368.365234 155.716797 C 370.382812 167.513672  416.779297 156.433594  426.707031 157.044922 C 425.765625 179.464844  444.529297 159.755859  452.814453 159.335938 C 457.660156 159.091797  463.039062 164.414062  467.298828 166.072266 C 475.515625 169.267578  483.503906 169.662109  491.808594 166 C 504.205078 160.537109  505.941406 159.556641  519.625 159.666016 C 532.214844 159.767578  562.720703 158.990234  572.46875 151.425781 C 569.294922 144.119141  553.505859 147.673828  547.072266 147.605469 C 533.136719 147.451172  534.792969 146.080078  527.992188 136.787109 C 525.236328 133.019531  522.4375 128.341797  517.068359 126.773438 C 511.078125 125.025391  505.730469 129.623047  500.660156 128.369141 C 492.523438 126.355469  496.986328 122.201172  493.675781 117.271484 C 490.052734 111.875  485.810547 108.726562  478.638672 106.712891 C 464.822266 102.833984  456.564453 110.359375  445.673828 117.373047 C 434.453125 124.597656  424.740234 116.414062  416.933594 124.119141 C 411.582031 129.404297  411.896484 138.03125  405.076172 143.25 C 399.15625 147.78125  390.722656 148.310547  384.615234 152.753906 L 376.441406 155.478516 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 137.15625 592.246094 L 1.367188 592.246094 L 1.367188 206.322266 L 137.15625 206.322266 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 292.117188 592.246094 L 129.169922 592.246094 L 129.169922 234.478516 L 292.117188 234.478516 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 459.857422 592.246094 L 229.8125 592.246094 L 229.8125 207.886719 L 459.857422 207.886719 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 549.318359 592.246094 L 437.490234 592.246094 L 437.490234 278.279297 L 549.318359 278.279297 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 605.232422 592.246094 L 515.771484 592.246094 L 515.771484 245.427734 L 605.232422 245.427734 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 771.373047 591.134766 L 582.865234 591.134766 L 582.865234 190.677734 L 771.373047 190.677734 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 910.357422 591.134766 L 741.021484 591.134766 L 741.021484 115.591797 L 910.357422 115.591797 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 932.722656 591.134766 L 886.394531 591.134766 L 886.394531 218.833984 L 932.722656 218.833984 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 1003.013672 589.570312 L 919.943359 589.570312 L 919.943359 318.951172 L 1003.013672 318.951172 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#C3D6E0;" d="M 1049.341797 595.828125 L 974.257812 595.828125 L 974.257812 175.035156 L 1049.341797 175.035156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#5D2E19;" d="M 160.064453 349.333984 L 0.994141 349.333984 L 0.994141 279.740234 L 160.064453 279.740234 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#CF7F58;" d="M 160.064453 592.910156 L 0.994141 592.910156 L 0.994141 354.304688 L 160.064453 354.304688 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#954C2A;" d="M 160.064453 597.880859 L 0.994141 597.880859 L 0.994141 553.142578 L 160.064453 553.142578 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#CF7F58;" d="M 115.326172 354.304688 C 115.326172 373.521484  99.746094 389.101562  80.529297 389.101562 C 61.310547 389.101562  45.732422 373.521484  45.732422 354.304688 C 45.732422 335.085938  61.310547 319.507812  80.529297 319.507812 C 99.746094 319.507812  115.326172 335.085938  115.326172 354.304688 " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 30.818359 364.246094 C 22.583984 364.246094  15.90625 370.923828  15.90625 379.158203 L 15.90625 413.955078 L 45.732422 413.955078 L 45.732422 379.158203 C 45.732422 370.923828  39.054688 364.246094  30.818359 364.246094 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 42.998047 376.673828 C 41.847656 371  36.832031 366.732422  30.818359 366.732422 C 24.806641 366.732422  19.792969 371  18.640625 376.673828 L 42.998047 376.673828 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 29.576172 394.072266 L 18.392578 394.072266 L 18.392578 379.160156 L 29.576172 379.160156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 43.246094 394.072266 L 31.9375 394.072266 L 31.9375 379.160156 L 43.246094 379.160156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 29.576172 411.46875 L 18.392578 411.46875 L 18.392578 396.556641 L 29.576172 396.556641 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 43.246094 411.46875 L 31.9375 411.46875 L 31.9375 396.556641 L 43.246094 396.556641 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 31.8125 377.792969 L 29.576172 377.792969 L 29.576172 366.607422 L 31.8125 366.607422 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 130.238281 364.246094 C 122.001953 364.246094  115.326172 370.923828  115.326172 379.158203 L 115.326172 413.955078 L 145.152344 413.955078 L 145.152344 379.158203 C 145.152344 370.923828  138.474609 364.246094  130.238281 364.246094 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.416016 376.673828 C 141.265625 371  136.25 366.732422  130.238281 366.732422 C 124.226562 366.732422  119.210938 371  118.060547 376.673828 L 142.416016 376.673828 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 128.996094 394.072266 L 117.810547 394.072266 L 117.810547 379.160156 L 128.996094 379.160156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.666016 394.072266 L 131.357422 394.072266 L 131.357422 379.160156 L 142.666016 379.160156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 128.996094 411.46875 L 117.810547 411.46875 L 117.810547 396.556641 L 128.996094 396.556641 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.666016 411.46875 L 131.357422 411.46875 L 131.357422 396.556641 L 142.666016 396.556641 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 131.232422 377.792969 L 128.996094 377.792969 L 128.996094 366.607422 L 131.232422 366.607422 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 80.529297 364.246094 C 72.292969 364.246094  65.615234 370.923828  65.615234 379.158203 L 65.615234 413.955078 L 95.441406 413.955078 L 95.441406 379.158203 C 95.441406 370.923828  88.765625 364.246094  80.529297 364.246094 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 92.707031 376.673828 C 91.554688 371  86.541016 366.732422  80.529297 366.732422 C 74.517578 366.732422  69.501953 371  68.349609 376.673828 L 92.707031 376.673828 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 79.287109 394.072266 L 68.101562 394.072266 L 68.101562 379.160156 L 79.287109 379.160156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 92.957031 394.072266 L 81.648438 394.072266 L 81.648438 379.160156 L 92.957031 379.160156 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 79.287109 411.46875 L 68.101562 411.46875 L 68.101562 396.556641 L 79.287109 396.556641 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 92.957031 411.46875 L 81.648438 411.46875 L 81.648438 396.556641 L 92.957031 396.556641 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 81.523438 377.792969 L 79.285156 377.792969 L 79.285156 366.607422 L 81.523438 366.607422 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 30.818359 443.78125 C 22.583984 443.78125  15.90625 450.458984  15.90625 458.695312 L 15.90625 493.490234 L 45.732422 493.490234 L 45.732422 458.695312 C 45.732422 450.458984  39.054688 443.78125  30.818359 443.78125 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 42.998047 456.208984 C 41.847656 450.535156  36.832031 446.267578  30.818359 446.267578 C 24.806641 446.267578  19.792969 450.535156  18.640625 456.208984 L 42.998047 456.208984 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 29.576172 473.607422 L 18.392578 473.607422 L 18.392578 458.695312 L 29.576172 458.695312 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 43.246094 473.607422 L 31.9375 473.607422 L 31.9375 458.695312 L 43.246094 458.695312 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 29.576172 491.005859 L 18.392578 491.005859 L 18.392578 476.09375 L 29.576172 476.09375 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 43.246094 491.005859 L 31.9375 491.005859 L 31.9375 476.09375 L 43.246094 476.09375 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 31.8125 457.326172 L 29.576172 457.326172 L 29.576172 446.142578 L 31.8125 446.142578 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 130.238281 443.78125 C 122.001953 443.78125  115.326172 450.458984  115.326172 458.695312 L 115.326172 493.490234 L 145.152344 493.490234 L 145.152344 458.695312 C 145.152344 450.458984  138.474609 443.78125  130.238281 443.78125 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.416016 456.208984 C 141.265625 450.535156  136.25 446.267578  130.238281 446.267578 C 124.226562 446.267578  119.210938 450.535156  118.060547 456.208984 L 142.416016 456.208984 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 128.996094 473.607422 L 117.810547 473.607422 L 117.810547 458.695312 L 128.996094 458.695312 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.666016 473.607422 L 131.357422 473.607422 L 131.357422 458.695312 L 142.666016 458.695312 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 128.996094 491.005859 L 117.810547 491.005859 L 117.810547 476.09375 L 128.996094 476.09375 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.666016 491.005859 L 131.357422 491.005859 L 131.357422 476.09375 L 142.666016 476.09375 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 131.232422 457.326172 L 128.996094 457.326172 L 128.996094 446.142578 L 131.232422 446.142578 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 80.529297 443.78125 C 72.292969 443.78125  65.615234 450.458984  65.615234 458.695312 L 65.615234 493.490234 L 95.441406 493.490234 L 95.441406 458.695312 C 95.441406 450.458984  88.765625 443.78125  80.529297 443.78125 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 92.707031 456.208984 C 91.554688 450.535156  86.541016 446.267578  80.529297 446.267578 C 74.517578 446.267578  69.501953 450.535156  68.349609 456.208984 L 92.707031 456.208984 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 79.287109 473.607422 L 68.101562 473.607422 L 68.101562 458.695312 L 79.287109 458.695312 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 92.957031 473.607422 L 81.648438 473.607422 L 81.648438 458.695312 L 92.957031 458.695312 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 79.287109 491.005859 L 68.101562 491.005859 L 68.101562 476.09375 L 79.287109 476.09375 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 92.957031 491.005859 L 81.648438 491.005859 L 81.648438 476.09375 L 92.957031 476.09375 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 81.523438 457.326172 L 79.285156 457.326172 L 79.285156 446.142578 L 81.523438 446.142578 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 30.818359 518.345703 C 22.583984 518.345703  15.90625 525.021484  15.90625 533.257812 L 15.90625 568.054688 L 45.732422 568.054688 L 45.732422 533.257812 C 45.732422 525.021484  39.054688 518.345703  30.818359 518.345703 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 42.998047 530.773438 C 41.847656 525.101562  36.832031 520.830078  30.818359 520.830078 C 24.806641 520.830078  19.792969 525.101562  18.640625 530.773438 L 42.998047 530.773438 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 29.576172 548.169922 L 18.392578 548.169922 L 18.392578 533.257812 L 29.576172 533.257812 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 43.246094 548.169922 L 31.9375 548.169922 L 31.9375 533.257812 L 43.246094 533.257812 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 29.576172 565.570312 L 18.392578 565.570312 L 18.392578 550.65625 L 29.576172 550.65625 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 43.246094 565.570312 L 31.9375 565.570312 L 31.9375 550.65625 L 43.246094 550.65625 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 31.8125 531.890625 L 29.576172 531.890625 L 29.576172 520.705078 L 31.8125 520.705078 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 130.238281 518.345703 C 122.001953 518.345703  115.326172 525.021484  115.326172 533.257812 L 115.326172 568.054688 L 145.152344 568.054688 L 145.152344 533.257812 C 145.152344 525.021484  138.474609 518.345703  130.238281 518.345703 " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.416016 530.773438 C 141.265625 525.101562  136.25 520.830078  130.238281 520.830078 C 124.226562 520.830078  119.210938 525.101562  118.060547 530.773438 L 142.416016 530.773438 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 128.996094 548.169922 L 117.810547 548.169922 L 117.810547 533.257812 L 128.996094 533.257812 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.666016 548.169922 L 131.357422 548.169922 L 131.357422 533.257812 L 142.666016 533.257812 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 128.996094 565.570312 L 117.810547 565.570312 L 117.810547 550.65625 L 128.996094 550.65625 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#84A0B9;" d="M 142.666016 565.570312 L 131.357422 565.570312 L 131.357422 550.65625 L 142.666016 550.65625 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 131.232422 531.890625 L 128.996094 531.890625 L 128.996094 520.705078 L 131.232422 520.705078 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#AE6439;" d="M 100.412109 533.257812 C 100.412109 544.240234  91.509766 553.142578  80.529297 553.142578 C 69.548828 553.142578  60.646484 544.240234  60.646484 533.257812 C 60.646484 522.277344  69.548828 513.375  80.529297 513.375 C 91.509766 513.375  100.412109 522.277344  100.412109 533.257812 " />
<path style="stroke-width:1.25;stroke:none;fill:#AE6439;" d="M 100.412109 582.96875 L 60.646484 582.96875 L 60.646484 533.257812 L 100.412109 533.257812 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#BD9472;" d="M 95.441406 587.9375 L 65.615234 587.9375 L 65.615234 528.287109 L 95.441406 528.287109 Z " />
<path style="stroke-width:1.988281;stroke:#DCCECD;fill:none;" d="M 95.441406 587.9375 L 65.615234 587.9375 L 65.615234 528.287109 L 95.441406 528.287109 L 95.441406 587.9375 Z " />
<path style="stroke-width:1.988281;stroke:none;fill:#96867B;" d="M 100.412109 587.9375 L 60.646484 587.9375 L 60.646484 582.966797 L 100.412109 582.966797 Z " />
<path style="stroke-width:1.988281;stroke:none;fill:#96867B;" d="M 105.384766 592.910156 L 55.673828 592.910156 L 55.673828 587.9375 L 105.384766 587.9375 Z " />
<path style="stroke-width:1.988281;stroke:none;fill:#96867B;" d="M 110.353516 597.880859 L 50.703125 597.880859 L 50.703125 592.910156 L 110.353516 592.910156 Z " />
<path style="stroke-width:1.988281;stroke:none;fill:#FAFAFB;" d="M 90.470703 339.390625 C 90.470703 344.882812  86.019531 349.333984  80.529297 349.333984 C 75.037109 349.333984  70.585938 344.882812  70.585938 339.390625 C 70.585938 333.900391  75.037109 329.449219  80.529297 329.449219 C 86.019531 329.449219  90.470703 333.900391  90.470703 339.390625 " />
<path style="stroke-width:1.988281;stroke:none;fill:#84A0B9;" d="M 87.488281 339.390625 C 87.488281 343.234375  84.373047 346.351562  80.529297 346.351562 C 76.685547 346.351562  73.568359 343.234375  73.568359 339.390625 C 73.568359 335.548828  76.685547 332.431641  80.529297 332.431641 C 84.373047 332.431641  87.488281 335.548828  87.488281 339.390625 " />
<path style="stroke-width:1.988281;stroke:none;fill:#B6A588;" d="M 50.703125 354.304688 L 0.994141 354.304688 L 0.994141 349.333984 L 50.703125 349.333984 L 50.703125 354.304688 Z " />
<path style="stroke-width:1.988281;stroke:none;fill:#B6A588;" d="M 160.064453 354.304688 L 110.353516 354.304688 L 110.353516 349.333984 L 160.064453 349.333984 Z " />
<path style="stroke-width:1.988281;stroke:none;fill:#B6A588;" d="M 80.529297 324.478516 C 97.001953 324.478516  110.353516 337.832031  110.353516 354.304688 L 115.326172 354.304688 C 115.326172 335.085938  99.746094 319.507812  80.529297 319.507812 C 61.310547 319.507812  45.732422 335.085938  45.732422 354.304688 L 50.703125 354.304688 C 50.703125 337.832031  64.056641 324.478516  80.529297 324.478516 " />
<path style="stroke-width:1.988281;stroke:none;fill:#84A0B9;" d="M 80.529297 538.230469 L 75.558594 543.201172 L 80.529297 548.169922 L 85.5 543.201172 L 80.529297 538.230469 Z " />
<path style="stroke-width:0.992188;stroke:#FFF;fill:none;" d="M 80.529297 538.230469 L 75.558594 543.201172 L 80.529297 548.169922 L 85.5 543.201172 L 80.529297 538.230469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 45.732422 418.927734 L 15.90625 418.927734 L 15.90625 413.955078 L 45.732422 413.955078 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 95.441406 418.927734 L 65.615234 418.927734 L 65.615234 413.955078 L 95.441406 413.955078 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 145.152344 418.927734 L 115.326172 418.927734 L 115.326172 413.955078 L 145.152344 413.955078 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 45.732422 498.462891 L 15.90625 498.462891 L 15.90625 493.490234 L 45.732422 493.490234 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 95.441406 498.462891 L 65.615234 498.462891 L 65.615234 493.490234 L 95.441406 493.490234 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 145.152344 498.462891 L 115.326172 498.462891 L 115.326172 493.490234 L 145.152344 493.490234 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 45.732422 573.025391 L 15.90625 573.025391 L 15.90625 568.054688 L 45.732422 568.054688 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AE6439;" d="M 145.152344 573.025391 L 115.326172 573.025391 L 115.326172 568.054688 L 145.152344 568.054688 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#67A649;" d="M 274.197266 370.751953 C 276.232422 366.414062  280.121094 364.580078  282.605469 369.169922 C 283.78125 368.628906  286.648438 365.59375  287.636719 365.609375 C 291.580078 365.666016  290.128906 369.958984  292.037109 370.636719 C 294.792969 371.611328  296.253906 368.167969  298.816406 369.955078 C 300.738281 371.294922  300.587891 374.511719  300.40625 376.605469 C 306.597656 375.207031  305.707031 380.75  305.625 384.802734 C 307.65625 384.511719  309.412109 384.513672  311.365234 384.820312 C 310.736328 380.525391  313.34375 375.949219  317.494141 379.642578 C 318.236328 377.003906  322.871094 367.640625  324.304688 375.761719 C 327.152344 371.810547  336.291016 370.525391  334.591797 377.443359 C 336.691406 376.837891  338.929688 376.347656  341.097656 376.029297 C 343.410156 380.972656  345.414062 380.283203  349.5 382.832031 C 350.824219 383.658203  352.578125 386.636719  354.021484 386.910156 C 358.570312 387.775391  363.296875 380.839844  367.572266 384.117188 C 370.552734 381.552734  370.40625 374.177734  376.400391 377.199219 C 375.943359 371.253906  380.839844 366.369141  386.943359 368.982422 C 389.166016 367.177734  395.125 360.064453  396.566406 366.222656 C 398.8125 365.552734  402.435547 362.654297  404.712891 362.664062 C 407.388672 362.673828  408.128906 364.835938  409.691406 365.005859 C 412.722656 365.333984  420.611328 360.066406  421.955078 366.162109 C 426.203125 366.457031  428.830078 363.894531  433.476562 364.896484 C 434.683594 372.865234  440.177734 362.197266  444.826172 366.427734 C 445.861328 367.367188  446.773438 371.958984  447.162109 373.21875 C 449.951172 382.263672  452.083984 391.535156  453.886719 400.855469 C 457.955078 421.865234  464.658203 446.652344  462.697266 468.060547 C 461.509766 481.044922  459.974609 499.789062  451.701172 510.166016 C 439.246094 525.785156  416.414062 531.208984  397.5 534.677734 C 385.070312 536.960938  373.558594 537.986328  360.910156 537.761719 C 346.798828 537.511719  331.982422 537.808594  317.994141 536.105469 C 308.259766 534.919922  298.974609 533.798828  289.986328 529.601562 C 280.658203 525.244141  276.521484 518.615234  271.347656 510.011719 C 263.193359 496.451172  265.75 478.921875  262.267578 463.951172 L 274.197266 370.751953 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5A5E54;" d="M 329.572266 478.080078 C 336.019531 480.685547  337.681641 493.556641  338.021484 499.427734 C 338.558594 508.681641  337.033203 517.800781  336.609375 526.720703 C 339.158203 526.882812  341.865234 526.884766  344.412109 526.71875 C 344.3125 520.167969  345.246094 511.824219  347.109375 505.558594 C 349.083984 498.927734  351.214844 495.994141  356.203125 491.513672 C 355.179688 485.962891  351.416016 492.003906  349.458984 493.490234 C 345.767578 496.291016  343.960938 495.0625  342.611328 490.519531 C 340.123047 482.15625  344.347656 475.494141  348.238281 468.638672 C 345.357422 463.191406  343.923828 472.056641  342.384766 472.998047 C 338.755859 475.21875  337.763672 469.414062  335.925781 467.34375 C 330.623047 469.998047  339.017578 476.449219  338.447266 480.490234 C 334.316406 480.445312  330.921875 473.046875  330.457031 469.642578 C 330.21875 467.888672  330.099609 460.580078  327.5625 465.158203 C 326.304688 467.425781  328.191406 470.558594  328.005859 473.035156 C 325.599609 473.513672  320.119141 471.261719  318.490234 473.957031 C 316.558594 477.146484  323.039062 477.314453  325.099609 477.583984 L 329.572266 478.080078 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#A0C84A;" d="M 330.568359 393.574219 C 327.34375 391.785156  321.126953 391.441406  321.542969 396.482422 C 315.888672 396.847656  313.335938 393.78125  313.09375 400.955078 C 310.966797 400.988281  308.814453 401.539062  307.884766 403.626953 C 312.974609 409.279297  295.707031 403.371094  302.220703 411.482422 C 298.570312 414.761719  290.207031 411.136719  295.583984 418.044922 C 294.763672 418.539062  294.201172 419.923828  293.435547 420.417969 C 294.849609 422.066406  296.972656 423.138672  295.818359 425.423828 C 295.285156 426.480469  293.203125 425.296875  292.878906 425.960938 C 292.017578 427.716797  293.472656 427.806641  293.298828 428.869141 C 292.847656 431.615234  294.058594 431.517578  290.785156 432.333984 C 288.806641 432.826172  286.044922 431.294922  284.9375 433.332031 C 283.880859 435.271484  287.382812 436.275391  285.726562 438.347656 C 284.447266 439.947266  280.460938 436.310547  279.904297 440.650391 C 279.509766 443.726562  283.378906 443.677734  283.986328 445.660156 C 284.849609 448.478516  282.326172 447.667969  281.84375 449.351562 C 280.978516 452.359375  282.775391 451.892578  283.740234 454.167969 C 285.164062 457.53125  283.101562 457.876953  282.447266 460.40625 C 280.884766 466.458984  287.212891 463.566406  288.3125 468.998047 C 288.644531 470.634766  287.535156 473.875  289.259766 475.044922 C 291.443359 476.529297  293.322266 472.925781  295.298828 476.205078 C 296.882812 478.837891  294.632812 480.59375  297.154297 483.171875 C 299.785156 485.861328  300.304688 484.921875  302.755859 482.472656 C 306.816406 485.617188  304.351562 492.076172  310.683594 489.6875 C 311.603516 489.339844  311.363281 487.568359  312.669922 487.455078 C 313.677734 487.367188  314.171875 489.027344  314.634766 489.029297 C 315.441406 489.033203  316.101562 490.330078  317.144531 490.056641 C 318.875 489.601562  317.896484 488.056641  318.648438 487.501953 C 319.884766 486.589844  318.414062 484.552734  321.546875 485.998047 C 323.304688 486.810547  321.951172 490.181641  324.710938 489.050781 C 329.724609 486.994141  323.566406 480.677734  323.101562 478.466797 C 322.689453 476.511719  323.005859 475.548828  324.082031 473.580078 C 324.541016 472.740234  326.195312 472.792969  326.513672 471.642578 C 326.71875 470.910156  325.78125 468.761719  325.683594 469.025391 C 326.238281 467.552734  326.919922 465.310547  329.458984 465.494141 C 331.533203 465.644531  330.869141 467.203125  332.666016 468.017578 C 335.009766 469.076172  334.808594 467.820312  336.642578 467.542969 C 337.292969 467.445312  337.318359 465.826172  338.505859 465.980469 C 339.849609 466.154297  339.242188 468.091797  339.478516 468.162109 C 342.638672 469.121094  344.228516 468.951172  344.064453 474.03125 C 346.902344 474.445312  349.494141 474.910156  348.388672 478.503906 C 344.257812 478.449219  344.376953 485.078125  349.990234 483.0625 C 353.738281 487.068359  347.5625 486.5625  347.560547 489.511719 C 347.558594 492.679688  350.966797 490.488281  352.474609 492.375 C 354.216797 494.556641  350.625 497.181641  352.990234 499.105469 C 357.037109 502.396484  359.246094 497.041016  358.941406 494.064453 C 362.917969 491.791016  363.111328 497.267578  365.896484 495.451172 C 368.767578 493.580078  365.923828 488.470703  364.033203 487.066406 C 364.779297 483.09375  369.742188 485.3125  368.910156 488.949219 C 371.560547 489.556641  373.378906 487.65625  372.898438 485.091797 C 378.119141 484.740234  373.3125 491.347656  379.701172 489.972656 C 380.283203 488.5625  379.603516 484.800781  380.714844 484.123047 C 383.052734 482.701172  384.441406 486.255859  386.351562 485.607422 C 389.298828 484.609375  388.121094 481.191406  387.880859 479.572266 C 387.486328 476.917969  386.271484 476.757812  389.228516 474.587891 C 390.748047 473.474609  392.822266 474.414062  393.708984 472.017578 C 394.855469 468.917969  391.867188 469.25  392.322266 466.373047 C 393.068359 461.642578  399.716797 465.074219  397.298828 458.667969 C 396.365234 456.191406  394.503906 457.632812  395.677734 454.195312 C 396.230469 452.576172  398.751953 451.982422  399.078125 450.244141 C 399.632812 447.298828  396.833984 447.888672  396.285156 446.691406 C 394.894531 443.654297  396.691406 443.035156  397.712891 440.263672 C 399.660156 434.984375  394.578125 437.021484  395.5625 431.453125 C 395.912109 429.480469  397.736328 427.369141  395.585938 425.851562 C 393.763672 424.566406  391.761719 426.857422  389.808594 426.826172 C 388.089844 421.5625  394.154297 418.042969  386.714844 417.300781 C 384.861328 417.115234  383.851562 419.939453  382.339844 416.332031 C 381.660156 414.707031  383.408203 411.646484  382.673828 409.558594 C 381.800781 409.84375  380.816406 409.380859  379.869141 409.929688 C 378.867188 405.96875  385.335938 403.1875  380.800781 400.498047 C 379.908203 399.96875  378.791016 401.730469  377.78125 400.927734 C 376.498047 399.904297  377.591797 398.990234  376.794922 398.039062 C 375.875 396.9375  373.855469 394.154297  372.361328 397.513672 C 369.496094 396.783203  368.826172 393.541016  365.861328 393.914062 C 364.201172 394.123047  364.171875 395.513672  361.945312 395.597656 C 361.708984 395.605469  360.216797 394.125  359.371094 394.039062 C 358.490234 393.947266  358.107422 396.498047  356.904297 396.142578 C 355.419922 395.705078  356.054688 393.685547  355.060547 392.705078 C 353.097656 390.767578  351.648438 390.582031  349.568359 392.914062 C 348.5625 391.029297  347.980469 388.917969  345.591797 388.654297 C 342.294922 393.890625  340.634766 390.460938  336.505859 389.152344 C 334.970703 391.09375  333.615234 393.003906  333.550781 395.5625 L 330.568359 393.574219 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 317.892578 425.886719 C 317.892578 426.982422  317.001953 427.875  315.902344 427.875 C 314.804688 427.875  313.916016 426.982422  313.916016 425.886719 C 313.916016 424.789062  314.804688 423.896484  315.902344 423.896484 C 317.001953 423.896484  317.892578 424.789062  317.892578 425.886719 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 324.353516 430.236328 C 324.353516 431.402344  323.408203 432.347656  322.242188 432.347656 C 321.074219 432.347656  320.128906 431.402344  320.128906 430.236328 C 320.128906 429.068359  321.074219 428.123047  322.242188 428.123047 C 323.408203 428.123047  324.353516 429.068359  324.353516 430.236328 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 332.058594 424.517578 C 332.058594 425.824219  331.001953 426.878906  329.697266 426.878906 C 328.394531 426.878906  327.335938 425.824219  327.335938 424.517578 C 327.335938 423.214844  328.394531 422.15625  329.697266 422.15625 C 331.001953 422.15625  332.058594 423.214844  332.058594 424.517578 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 335.291016 436.449219 C 335.291016 437.478516  334.455078 438.3125  333.425781 438.3125 C 332.396484 438.3125  331.5625 437.478516  331.5625 436.449219 C 331.5625 435.419922  332.396484 434.583984  333.425781 434.583984 C 334.455078 434.583984  335.291016 435.419922  335.291016 436.449219 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 341.005859 434.833984 C 341.005859 435.794922  340.228516 436.574219  339.267578 436.574219 C 338.306641 436.574219  337.527344 435.794922  337.527344 434.833984 C 337.527344 433.873047  338.306641 433.09375  339.267578 433.09375 C 340.228516 433.09375  341.005859 433.873047  341.005859 434.833984 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 336.78125 450.492188 C 336.78125 451.316406  336.115234 451.982422  335.291016 451.982422 C 334.466797 451.982422  333.798828 451.316406  333.798828 450.492188 C 333.798828 449.667969  334.466797 449  335.291016 449 C 336.115234 449  336.78125 449.667969  336.78125 450.492188 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 326.34375 450.615234 C 326.34375 451.783203  325.396484 452.728516  324.228516 452.728516 C 323.0625 452.728516  322.117188 451.783203  322.117188 450.615234 C 322.117188 449.449219  323.0625 448.503906  324.228516 448.503906 C 325.396484 448.503906  326.34375 449.449219  326.34375 450.615234 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 334.792969 458.197266 C 334.792969 459.294922  333.902344 460.185547  332.804688 460.185547 C 331.707031 460.185547  330.816406 459.294922  330.816406 458.197266 C 330.816406 457.097656  331.707031 456.208984  332.804688 456.208984 C 333.902344 456.208984  334.792969 457.097656  334.792969 458.197266 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 351.943359 456.208984 C 351.943359 457.169922  351.164062 457.949219  350.203125 457.949219 C 349.242188 457.949219  348.462891 457.169922  348.462891 456.208984 C 348.462891 455.248047  349.242188 454.46875  350.203125 454.46875 C 351.164062 454.46875  351.943359 455.248047  351.943359 456.208984 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 350.203125 461.056641 C 350.203125 462.083984  349.367188 462.919922  348.339844 462.919922 C 347.308594 462.919922  346.474609 462.083984  346.474609 461.056641 C 346.474609 460.025391  347.308594 459.191406  348.339844 459.191406 C 349.367188 459.191406  350.203125 460.025391  350.203125 461.056641 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 356.416016 464.535156 C 356.416016 465.564453  355.582031 466.400391  354.552734 466.400391 C 353.523438 466.400391  352.6875 465.564453  352.6875 464.535156 C 352.6875 463.505859  353.523438 462.669922  354.552734 462.669922 C 355.582031 462.669922  356.416016 463.505859  356.416016 464.535156 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 348.960938 474.849609 C 348.960938 475.949219  348.070312 476.837891  346.972656 476.837891 C 345.875 476.837891  344.982422 475.949219  344.982422 474.849609 C 344.982422 473.751953  345.875 472.861328  346.972656 472.861328 C 348.070312 472.861328  348.960938 473.751953  348.960938 474.849609 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 321.371094 464.410156 C 321.371094 465.371094  320.59375 466.150391  319.630859 466.150391 C 318.669922 466.150391  317.892578 465.371094  317.892578 464.410156 C 317.892578 463.449219  318.669922 462.669922  319.630859 462.669922 C 320.59375 462.669922  321.371094 463.449219  321.371094 464.410156 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 315.40625 452.853516 C 315.40625 453.882812  314.572266 454.716797  313.541016 454.716797 C 312.513672 454.716797  311.677734 453.882812  311.677734 452.853516 C 311.677734 451.824219  312.513672 450.990234  313.541016 450.990234 C 314.572266 450.990234  315.40625 451.824219  315.40625 452.853516 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 318.140625 446.638672 C 318.140625 447.806641  317.193359 448.751953  316.027344 448.751953 C 314.861328 448.751953  313.916016 447.806641  313.916016 446.638672 C 313.916016 445.472656  314.861328 444.527344  316.027344 444.527344 C 317.193359 444.527344  318.140625 445.472656  318.140625 446.638672 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 353.683594 419.794922 C 353.683594 421.101562  352.625 422.15625  351.322266 422.15625 C 350.017578 422.15625  348.960938 421.101562  348.960938 419.794922 C 348.960938 418.492188  350.017578 417.435547  351.322266 417.435547 C 352.625 417.435547  353.683594 418.492188  353.683594 419.794922 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 355.919922 431.105469 C 355.919922 432.341797  354.917969 433.341797  353.683594 433.341797 C 352.447266 433.341797  351.445312 432.341797  351.445312 431.105469 C 351.445312 429.869141  352.447266 428.869141  353.683594 428.869141 C 354.917969 428.869141  355.919922 429.869141  355.919922 431.105469 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 365.861328 431.478516 C 365.861328 432.644531  364.916016 433.591797  363.75 433.591797 C 362.582031 433.591797  361.636719 432.644531  361.636719 431.478516 C 361.636719 430.310547  362.582031 429.365234  363.75 429.365234 C 364.916016 429.365234  365.861328 430.310547  365.861328 431.478516 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 366.359375 446.390625 C 366.359375 447.832031  365.191406 449  363.75 449 C 362.308594 449  361.138672 447.832031  361.138672 446.390625 C 361.138672 444.949219  362.308594 443.78125  363.75 443.78125 C 365.191406 443.78125  366.359375 444.949219  366.359375 446.390625 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 371.826172 445.271484 C 371.826172 446.371094  370.9375 447.261719  369.837891 447.261719 C 368.740234 447.261719  367.849609 446.371094  367.849609 445.271484 C 367.849609 444.173828  368.740234 443.285156  369.837891 443.285156 C 370.9375 443.285156  371.826172 444.173828  371.826172 445.271484 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 368.347656 456.830078 C 368.347656 457.998047  367.402344 458.941406  366.234375 458.941406 C 365.066406 458.941406  364.121094 457.998047  364.121094 456.830078 C 364.121094 455.664062  365.066406 454.716797  366.234375 454.716797 C 367.402344 454.716797  368.347656 455.664062  368.347656 456.830078 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 368.84375 468.138672 C 368.84375 469.236328  367.955078 470.126953  366.855469 470.126953 C 365.757812 470.126953  364.867188 469.236328  364.867188 468.138672 C 364.867188 467.041016  365.757812 466.150391  366.855469 466.150391 C 367.955078 466.150391  368.84375 467.041016  368.84375 468.138672 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 340.013672 410.226562 C 340.013672 411.462891  339.009766 412.464844  337.775391 412.464844 C 336.541016 412.464844  335.539062 411.462891  335.539062 410.226562 C 335.539062 408.992188  336.541016 407.990234  337.775391 407.990234 C 339.009766 407.990234  340.013672 408.992188  340.013672 410.226562 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 328.330078 404.138672 C 328.330078 405.304688  327.384766 406.25  326.21875 406.25 C 325.052734 406.25  324.105469 405.304688  324.105469 404.138672 C 324.105469 402.970703  325.052734 402.025391  326.21875 402.025391 C 327.384766 402.025391  328.330078 402.970703  328.330078 404.138672 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 337.527344 427.253906 C 337.527344 428.419922  336.582031 429.365234  335.414062 429.365234 C 334.248047 429.365234  333.302734 428.419922  333.302734 427.253906 C 333.302734 426.085938  334.248047 425.138672  335.414062 425.138672 C 336.582031 425.138672  337.527344 426.085938  337.527344 427.253906 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 334.048828 430.111328 C 334.048828 431.482422  332.933594 432.597656  331.5625 432.597656 C 330.189453 432.597656  329.076172 431.482422  329.076172 430.111328 C 329.076172 428.738281  330.189453 427.625  331.5625 427.625 C 332.933594 427.625  334.048828 428.738281  334.048828 430.111328 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 354.677734 437.070312 C 354.677734 438.306641  353.675781 439.306641  352.441406 439.306641 C 351.205078 439.306641  350.203125 438.306641  350.203125 437.070312 C 350.203125 435.833984  351.205078 434.833984  352.441406 434.833984 C 353.675781 434.833984  354.677734 435.833984  354.677734 437.070312 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 348.462891 444.900391 C 348.462891 446.203125  347.40625 447.261719  346.101562 447.261719 C 344.798828 447.261719  343.740234 446.203125  343.740234 444.900391 C 343.740234 443.595703  344.798828 442.539062  346.101562 442.539062 C 347.40625 442.539062  348.462891 443.595703  348.462891 444.900391 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 347.46875 450.615234 C 347.46875 451.783203  346.523438 452.728516  345.357422 452.728516 C 344.189453 452.728516  343.244141 451.783203  343.244141 450.615234 C 343.244141 449.449219  344.189453 448.503906  345.357422 448.503906 C 346.523438 448.503906  347.46875 449.449219  347.46875 450.615234 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 376.052734 423.400391 C 376.052734 424.636719  375.050781 425.636719  373.816406 425.636719 C 372.580078 425.636719  371.578125 424.636719  371.578125 423.400391 C 371.578125 422.164062  372.580078 421.164062  373.816406 421.164062 C 375.050781 421.164062  376.052734 422.164062  376.052734 423.400391 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 363.128906 406.748047 C 363.128906 407.708984  362.347656 408.486328  361.388672 408.486328 C 360.427734 408.486328  359.648438 407.708984  359.648438 406.748047 C 359.648438 405.787109  360.427734 405.007812  361.388672 405.007812 C 362.347656 405.007812  363.128906 405.787109  363.128906 406.748047 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 355.173828 400.658203 C 355.173828 401.6875  354.339844 402.521484  353.310547 402.521484 C 352.28125 402.521484  351.445312 401.6875  351.445312 400.658203 C 351.445312 399.628906  352.28125 398.794922  353.310547 398.794922 C 354.339844 398.794922  355.173828 399.628906  355.173828 400.658203 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 309.193359 439.804688 C 309.193359 441.039062  308.191406 442.041016  306.955078 442.041016 C 305.720703 442.041016  304.71875 441.039062  304.71875 439.804688 C 304.71875 438.570312  305.720703 437.566406  306.955078 437.566406 C 308.191406 437.566406  309.193359 438.570312  309.193359 439.804688 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 302.232422 454.46875 C 302.232422 455.705078  301.232422 456.705078  299.996094 456.705078 C 298.759766 456.705078  297.759766 455.705078  297.759766 454.46875 C 297.759766 453.232422  298.759766 452.232422  299.996094 452.232422 C 301.232422 452.232422  302.232422 453.232422  302.232422 454.46875 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 310.435547 465.28125 C 310.435547 466.447266  309.490234 467.392578  308.322266 467.392578 C 307.15625 467.392578  306.210938 466.447266  306.210938 465.28125 C 306.210938 464.113281  307.15625 463.167969  308.322266 463.167969 C 309.490234 463.167969  310.435547 464.113281  310.435547 465.28125 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 317.146484 471.619141 C 317.146484 472.990234  316.033203 474.105469  314.660156 474.105469 C 313.287109 474.105469  312.175781 472.990234  312.175781 471.619141 C 312.175781 470.246094  313.287109 469.132812  314.660156 469.132812 C 316.033203 469.132812  317.146484 470.246094  317.146484 471.619141 " />
<path style="stroke-width:0.992188;stroke:none;fill:#CB6D63;" d="M 318.884766 479.449219 C 318.884766 480.751953  317.830078 481.810547  316.523438 481.810547 C 315.220703 481.810547  314.164062 480.751953  314.164062 479.449219 C 314.164062 478.142578  315.220703 477.087891  316.523438 477.087891 C 317.830078 477.087891  318.884766 478.142578  318.884766 479.449219 " />
<path style="stroke-width:0.992188;stroke:none;fill:#F1C474;" d="M 324.105469 597.880859 L 160.064453 597.880859 L 160.064453 394.072266 L 324.105469 394.072266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#574F3A;" d="M 323.607422 597.880859 L 160.064453 597.880859 L 160.064453 561.59375 L 323.607422 561.59375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#DDAC39;" d="M 209.773438 463.664062 L 174.214844 463.664062 L 174.214844 409.232422 L 209.773438 409.232422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 208.451172 462.523438 L 175.583984 462.523438 L 175.583984 410.875 L 208.451172 410.875 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#889DB9;" d="M 206.103516 460.175781 L 177.929688 460.175781 L 177.929688 413.222656 L 206.103516 413.222656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 177.929688 413.222656 L 177.929688 431.136719 L 180.277344 431.136719 C 180.277344 431.136719  187.320312 422.177734  187.320312 413.222656 L 177.929688 413.222656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 177.929688 429.65625 L 180.277344 429.65625 C 180.277344 429.65625  187.320312 446.089844  184.972656 460.175781 L 177.929688 460.175781 L 177.929688 429.65625 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 182.625 413.298828 C 182.625 413.298828  192.017578 428.560547  201.408203 413.298828 L 182.625 413.298828 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 205.867188 413.222656 L 205.867188 430.589844 L 203.521484 430.589844 C 203.521484 430.589844  196.476562 421.90625  196.476562 413.222656 L 205.867188 413.222656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 205.867188 429.65625 L 203.521484 429.65625 C 203.521484 429.65625  196.476562 446.089844  198.824219 460.175781 L 205.867188 460.175781 L 205.867188 429.65625 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 187.892578 460.65625 L 185.703125 460.65625 L 185.703125 412.789062 L 187.892578 412.789062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 197.738281 460.382812 L 195.822266 460.382812 L 195.822266 412.242188 L 197.738281 412.242188 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 206.923828 424.185547 L 177.65625 424.185547 L 177.65625 421.837891 L 206.923828 421.837891 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 206.376953 434.853516 L 177.109375 434.853516 L 177.109375 432.505859 L 206.376953 432.505859 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#DDAC39;" d="M 260.246094 463.417969 L 224.6875 463.417969 L 224.6875 408.984375 L 260.246094 408.984375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 258.921875 462.275391 L 226.054688 462.275391 L 226.054688 410.626953 L 258.921875 410.626953 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#889DB9;" d="M 256.574219 459.927734 L 228.402344 459.927734 L 228.402344 412.972656 L 256.574219 412.972656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 228.402344 412.972656 L 228.402344 430.888672 L 230.75 430.888672 C 230.75 430.888672  237.791016 421.931641  237.791016 412.972656 L 228.402344 412.972656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 228.402344 429.40625 L 230.75 429.40625 C 230.75 429.40625  237.791016 445.841797  235.445312 459.927734 L 228.402344 459.927734 L 228.402344 429.40625 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 233.097656 413.052734 C 233.097656 413.052734  242.488281 428.310547  251.878906 413.052734 L 233.097656 413.052734 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 256.339844 412.972656 L 256.339844 430.341797 L 253.992188 430.341797 C 253.992188 430.341797  246.947266 421.65625  246.947266 412.972656 L 256.339844 412.972656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 256.339844 429.40625 L 253.992188 429.40625 C 253.992188 429.40625  246.947266 445.841797  249.294922 459.927734 L 256.339844 459.927734 L 256.339844 429.40625 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 238.363281 460.40625 L 236.173828 460.40625 L 236.173828 412.539062 L 238.363281 412.539062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 248.210938 460.134766 L 246.294922 460.134766 L 246.294922 411.994141 L 248.210938 411.994141 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 257.396484 423.9375 L 228.128906 423.9375 L 228.128906 421.587891 L 257.396484 421.587891 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 256.847656 434.605469 L 227.580078 434.605469 L 227.580078 432.257812 L 256.847656 432.257812 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#DDAC39;" d="M 309.955078 463.664062 L 274.396484 463.664062 L 274.396484 409.232422 L 309.955078 409.232422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 308.630859 462.523438 L 275.763672 462.523438 L 275.763672 410.875 L 308.630859 410.875 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#889DB9;" d="M 306.285156 460.175781 L 278.111328 460.175781 L 278.111328 413.222656 L 306.285156 413.222656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 278.111328 413.222656 L 278.111328 431.136719 L 280.458984 431.136719 C 280.458984 431.136719  287.501953 422.177734  287.501953 413.222656 L 278.111328 413.222656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 278.111328 429.65625 L 280.458984 429.65625 C 280.458984 429.65625  287.501953 446.089844  285.154297 460.175781 L 278.111328 460.175781 L 278.111328 429.65625 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 282.806641 413.298828 C 282.806641 413.298828  292.197266 428.560547  301.589844 413.298828 L 282.806641 413.298828 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 306.048828 413.222656 L 306.048828 430.589844 L 303.701172 430.589844 C 303.701172 430.589844  296.658203 421.90625  296.658203 413.222656 L 306.048828 413.222656 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 306.048828 429.65625 L 303.701172 429.65625 C 303.701172 429.65625  296.658203 446.089844  299.005859 460.175781 L 306.048828 460.175781 L 306.048828 429.65625 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 288.072266 460.65625 L 285.884766 460.65625 L 285.884766 412.789062 L 288.072266 412.789062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 297.919922 460.382812 L 296.003906 460.382812 L 296.003906 412.242188 L 297.919922 412.242188 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 307.103516 424.185547 L 277.835938 424.185547 L 277.835938 421.837891 L 307.103516 421.837891 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 306.558594 434.853516 L 277.291016 434.853516 L 277.291016 432.505859 L 306.558594 432.505859 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#DDAC39;" d="M 209.773438 547.921875 L 174.214844 547.921875 L 174.214844 493.490234 L 209.773438 493.490234 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 208.451172 546.78125 L 175.583984 546.78125 L 175.583984 495.132812 L 208.451172 495.132812 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#889DB9;" d="M 206.103516 544.433594 L 177.929688 544.433594 L 177.929688 497.480469 L 206.103516 497.480469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 177.929688 497.480469 L 177.929688 515.394531 L 180.277344 515.394531 C 180.277344 515.394531  187.320312 506.4375  187.320312 497.480469 L 177.929688 497.480469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 177.929688 513.914062 L 180.277344 513.914062 C 180.277344 513.914062  187.320312 530.347656  184.972656 544.433594 L 177.929688 544.433594 L 177.929688 513.914062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 182.625 497.558594 C 182.625 497.558594  192.017578 512.816406  201.408203 497.558594 L 182.625 497.558594 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 205.867188 497.480469 L 205.867188 514.847656 L 203.521484 514.847656 C 203.521484 514.847656  196.476562 506.164062  196.476562 497.480469 L 205.867188 497.480469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 205.867188 513.914062 L 203.521484 513.914062 C 203.521484 513.914062  196.476562 530.347656  198.824219 544.433594 L 205.867188 544.433594 L 205.867188 513.914062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 187.892578 544.914062 L 185.703125 544.914062 L 185.703125 497.044922 L 187.892578 497.044922 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 197.738281 544.640625 L 195.822266 544.640625 L 195.822266 496.5 L 197.738281 496.5 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 206.923828 508.443359 L 177.65625 508.443359 L 177.65625 506.09375 L 206.923828 506.09375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 206.376953 519.111328 L 177.109375 519.111328 L 177.109375 516.763672 L 206.376953 516.763672 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#DDAC39;" d="M 260.246094 547.921875 L 224.6875 547.921875 L 224.6875 493.490234 L 260.246094 493.490234 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 258.921875 546.78125 L 226.054688 546.78125 L 226.054688 495.132812 L 258.921875 495.132812 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#889DB9;" d="M 256.574219 544.433594 L 228.402344 544.433594 L 228.402344 497.480469 L 256.574219 497.480469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 228.402344 497.480469 L 228.402344 515.394531 L 230.75 515.394531 C 230.75 515.394531  237.791016 506.4375  237.791016 497.480469 L 228.402344 497.480469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 228.402344 513.914062 L 230.75 513.914062 C 230.75 513.914062  237.791016 530.347656  235.445312 544.433594 L 228.402344 544.433594 L 228.402344 513.914062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 233.097656 497.558594 C 233.097656 497.558594  242.488281 512.816406  251.878906 497.558594 L 233.097656 497.558594 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 256.339844 497.480469 L 256.339844 514.847656 L 253.992188 514.847656 C 253.992188 514.847656  246.947266 506.164062  246.947266 497.480469 L 256.339844 497.480469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#557182;" d="M 256.339844 513.914062 L 253.992188 513.914062 C 253.992188 513.914062  246.947266 530.347656  249.294922 544.433594 L 256.339844 544.433594 L 256.339844 513.914062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 238.363281 544.914062 L 236.173828 544.914062 L 236.173828 497.044922 L 238.363281 497.044922 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 248.210938 544.640625 L 246.294922 544.640625 L 246.294922 496.5 L 248.210938 496.5 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 257.396484 508.443359 L 228.128906 508.443359 L 228.128906 506.09375 L 257.396484 506.09375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 256.847656 519.111328 L 227.580078 519.111328 L 227.580078 516.763672 L 256.847656 516.763672 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AC6E31;" d="M 324.105469 404.013672 L 160.064453 404.013672 L 160.064453 329.449219 L 324.105469 329.449219 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 161.65625 402.527344 L 160.072266 402.527344 L 160.072266 329.947266 L 161.65625 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 166.410156 402.527344 L 164.826172 402.527344 L 164.826172 329.947266 L 166.410156 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 171.160156 402.527344 L 169.576172 402.527344 L 169.576172 329.947266 L 171.160156 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 175.912109 402.527344 L 174.330078 402.527344 L 174.330078 329.947266 L 175.912109 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 180.664062 402.527344 L 179.080078 402.527344 L 179.080078 329.947266 L 180.664062 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 185.416016 402.527344 L 183.832031 402.527344 L 183.832031 329.947266 L 185.416016 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 190.167969 402.527344 L 188.583984 402.527344 L 188.583984 329.947266 L 190.167969 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 194.919922 402.527344 L 193.335938 402.527344 L 193.335938 329.947266 L 194.919922 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 199.671875 402.527344 L 198.087891 402.527344 L 198.087891 329.947266 L 199.671875 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 204.423828 402.527344 L 202.839844 402.527344 L 202.839844 329.947266 L 204.423828 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 209.173828 402.527344 L 207.589844 402.527344 L 207.589844 329.947266 L 209.173828 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 213.927734 402.527344 L 212.34375 402.527344 L 212.34375 329.947266 L 213.927734 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 218.679688 402.527344 L 217.095703 402.527344 L 217.095703 329.947266 L 218.679688 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 223.429688 402.527344 L 221.847656 402.527344 L 221.847656 329.947266 L 223.429688 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 228.183594 402.527344 L 226.599609 402.527344 L 226.599609 329.947266 L 228.183594 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 232.933594 402.527344 L 231.349609 402.527344 L 231.349609 329.947266 L 232.933594 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 237.685547 402.527344 L 236.101562 402.527344 L 236.101562 329.947266 L 237.685547 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 242.4375 402.527344 L 240.853516 402.527344 L 240.853516 329.947266 L 242.4375 329.947266 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 247.197266 402.6875 L 245.613281 402.6875 L 245.613281 330.107422 L 247.197266 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 251.949219 402.6875 L 250.365234 402.6875 L 250.365234 330.107422 L 251.949219 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 256.701172 402.6875 L 255.117188 402.6875 L 255.117188 330.107422 L 256.701172 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 261.453125 402.6875 L 259.869141 402.6875 L 259.869141 330.107422 L 261.453125 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 266.205078 402.6875 L 264.621094 402.6875 L 264.621094 330.107422 L 266.205078 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 270.957031 402.6875 L 269.373047 402.6875 L 269.373047 330.107422 L 270.957031 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 275.708984 402.6875 L 274.125 402.6875 L 274.125 330.107422 L 275.708984 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 280.460938 402.6875 L 278.876953 402.6875 L 278.876953 330.107422 L 280.460938 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 285.210938 402.6875 L 283.628906 402.6875 L 283.628906 330.107422 L 285.210938 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 289.962891 402.6875 L 288.378906 402.6875 L 288.378906 330.107422 L 289.962891 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 294.714844 402.6875 L 293.130859 402.6875 L 293.130859 330.107422 L 294.714844 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 299.46875 402.6875 L 297.884766 402.6875 L 297.884766 330.107422 L 299.46875 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 304.21875 402.6875 L 302.634766 402.6875 L 302.634766 330.107422 L 304.21875 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 308.972656 402.6875 L 307.388672 402.6875 L 307.388672 330.107422 L 308.972656 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 313.722656 402.6875 L 312.138672 402.6875 L 312.138672 330.107422 L 313.722656 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 318.474609 402.6875 L 316.890625 402.6875 L 316.890625 330.107422 L 318.474609 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9A5C2A;" d="M 323.226562 402.6875 L 321.642578 402.6875 L 321.642578 330.107422 L 323.226562 330.107422 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F1C474;" d="M 209.773438 334.419922 L 194.861328 334.419922 L 194.861328 314.537109 L 209.773438 314.537109 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F1C474;" d="M 274.396484 334.419922 L 289.308594 334.419922 L 289.308594 314.537109 L 274.396484 314.537109 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AC6E31;" d="M 209.773438 314.537109 L 194.861328 314.537109 L 194.861328 309.566406 L 209.773438 309.566406 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#AC6E31;" d="M 289.308594 314.537109 L 274.396484 314.537109 L 274.396484 309.566406 L 289.308594 309.566406 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FFF;" d="M 309.193359 558.113281 L 274.396484 558.113281 L 274.396484 493.490234 L 309.193359 493.490234 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#8A5C2E;" d="M 304.222656 558.113281 L 279.367188 558.113281 L 279.367188 498.462891 L 304.222656 498.462891 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#B8AEAC;" d="M 311.179688 566.414062 L 272.40625 566.414062 L 272.40625 558.113281 L 311.179688 558.113281 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#A8A09D;" d="M 314.412109 574.716797 L 269.175781 574.716797 L 269.175781 566.414062 L 314.412109 566.414062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9F9590;" d="M 317.642578 583.017578 L 265.945312 583.017578 L 265.945312 574.716797 L 317.642578 574.716797 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#928883;" d="M 320.875 591.320312 L 262.714844 591.320312 L 262.714844 583.017578 L 320.875 583.017578 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#918681;" d="M 324.105469 599.621094 L 259.482422 599.621094 L 259.482422 591.320312 L 324.105469 591.320312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#291E1C;" d="M 276.632812 526.919922 C 276.632812 528.087891  275.6875 529.033203  274.521484 529.033203 C 273.353516 529.033203  272.408203 528.087891  272.408203 526.919922 C 272.408203 525.753906  273.353516 524.808594  274.521484 524.808594 C 275.6875 524.808594  276.632812 525.753906  276.632812 526.919922 " />
<path style="stroke-width:0.992188;stroke:none;fill:#291E1C;" d="M 311.677734 526.794922 C 311.677734 528.03125  310.677734 529.033203  309.441406 529.033203 C 308.205078 529.033203  307.205078 528.03125  307.205078 526.794922 C 307.205078 525.560547  308.205078 524.560547  309.441406 524.560547 C 310.677734 524.560547  311.677734 525.560547  311.677734 526.794922 " />
<path style="stroke-width:0.992188;stroke:none;fill:#291E1C;" d="M 261.339844 591.667969 L 259.865234 591.667969 L 259.865234 560.349609 L 261.339844 560.349609 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#291E1C;" d="M 324.041016 591.417969 L 322.677734 591.417969 L 322.677734 560.101562 L 324.041016 560.101562 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#291E1C;" d="M 274.396484 526.298828 L 259.482422 561.162109 C 259.482422 561.162109  255.009766 568.076172  257.992188 571.535156 L 258.986328 570.669922 C 258.986328 570.669922  256.998047 569.806641  258.738281 565.771484 L 274.892578 527.451172 L 274.396484 526.298828 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#291E1C;" d="M 309.162109 525.056641 L 324.074219 559.919922 C 324.074219 559.919922  328.548828 566.833984  325.566406 570.292969 L 324.572266 569.427734 C 324.572266 569.427734  326.560547 568.5625  324.820312 564.529297 L 308.664062 526.208984 L 309.162109 525.056641 Z " />
<path style="stroke-width:0.992188;stroke:#291E1C;fill:none;" d="M 267.1875 543.945312 L 267.1875 574.765625 " />
<path style="stroke-width:0.992188;stroke:#291E1C;fill:none;" d="M 316.152344 574.517578 L 316.152344 542.951172 " />
<path style="stroke-width:0.992188;stroke:none;fill:#F7F6F6;" d="M 209.277344 597.880859 L 175.972656 597.880859 L 175.972656 580.980469 L 209.277344 580.980469 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7492AC;" d="M 191.380859 594.898438 L 178.953125 594.898438 L 178.953125 583.464844 L 191.380859 583.464844 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7492AC;" d="M 206.294922 595.396484 L 193.867188 595.396484 L 193.867188 583.466797 L 206.294922 583.466797 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7B4D25;" d="M 202.316406 389.101562 L 281.853516 389.101562 L 242.083984 343.652344 L 202.316406 389.101562 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F1C474;" d="M 207.998047 389.101562 L 242.083984 349.333984 L 276.171875 389.101562 L 207.998047 389.101562 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#F1C474;" d="M 274.064453 404.841797 L 210.4375 404.841797 L 210.4375 388.271484 L 274.064453 388.271484 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#DDAC39;" d="M 253.683594 395.230469 L 228.498047 395.230469 L 228.498047 367.0625 L 253.683594 367.0625 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FAFAFB;" d="M 252.357422 393.740234 L 230.154297 393.740234 L 230.154297 368.884766 L 252.357422 368.884766 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#889DB9;" d="M 250.037109 391.585938 L 232.142578 391.585938 L 232.142578 371.039062 L 250.037109 371.039062 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 242.083984 391.917969 L 239.763672 391.917969 L 239.763672 370.376953 L 242.083984 370.376953 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#FDFDFC;" d="M 250.371094 382.140625 L 231.148438 382.140625 L 231.148438 379.820312 L 250.371094 379.820312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#76644D;" d="M 363.873047 592.910156 L 324.105469 592.910156 L 324.105469 508.404297 L 363.873047 508.404297 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 327.691406 593.076172 L 326.425781 593.076172 L 326.425781 508.570312 L 327.691406 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 331.490234 593.076172 L 330.224609 593.076172 L 330.224609 508.570312 L 331.490234 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 335.291016 593.076172 L 334.023438 593.076172 L 334.023438 508.570312 L 335.291016 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 339.089844 593.076172 L 337.822266 593.076172 L 337.822266 508.570312 L 339.089844 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 342.888672 593.076172 L 341.623047 593.076172 L 341.623047 508.570312 L 342.888672 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 346.6875 593.076172 L 345.421875 593.076172 L 345.421875 508.570312 L 346.6875 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 350.488281 593.076172 L 349.222656 593.076172 L 349.222656 508.570312 L 350.488281 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 354.285156 593.076172 L 353.019531 593.076172 L 353.019531 508.570312 L 354.285156 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 358.085938 593.076172 L 356.818359 593.076172 L 356.818359 508.570312 L 358.085938 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#5C4F3D;" d="M 361.884766 593.076172 L 360.617188 593.076172 L 360.617188 508.570312 L 361.884766 508.570312 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#989593;" d="M 344.572266 593.669922 L 328.693359 593.669922 L 328.693359 570.712891 L 344.572266 570.712891 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7E7F7F;" d="M 332.066406 591.621094 C 332.066406 592.105469  331.705078 592.498047  331.257812 592.498047 C 330.8125 592.498047  330.449219 592.105469  330.449219 591.621094 L 330.449219 572.878906 C 330.449219 572.396484  330.8125 572.001953  331.257812 572.001953 C 331.705078 572.001953  332.066406 572.396484  332.066406 572.878906 L 332.066406 591.621094 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7E7F7F;" d="M 335.771484 591.621094 C 335.771484 592.105469  335.324219 592.498047  334.775391 592.498047 C 334.224609 592.498047  333.779297 592.105469  333.779297 591.621094 L 333.779297 572.878906 C 333.779297 572.396484  334.224609 572.001953  334.775391 572.001953 C 335.324219 572.001953  335.771484 572.396484  335.771484 572.878906 L 335.771484 591.621094 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7E7F7F;" d="M 339.751953 591.621094 C 339.751953 592.105469  339.304688 592.498047  338.755859 592.498047 C 338.207031 592.498047  337.759766 592.105469  337.759766 591.621094 L 337.759766 572.878906 C 337.759766 572.396484  338.207031 572.001953  338.755859 572.001953 C 339.304688 572.001953  339.751953 572.396484  339.751953 572.878906 L 339.751953 591.621094 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7E7F7F;" d="M 343.011719 591.621094 C 343.011719 592.105469  342.679688 592.498047  342.271484 592.498047 C 341.865234 592.498047  341.535156 592.105469  341.535156 591.621094 L 341.535156 572.878906 C 341.535156 572.396484  341.865234 572.001953  342.271484 572.001953 C 342.679688 572.001953  343.011719 572.396484  343.011719 572.878906 L 343.011719 591.621094 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#75808A;" d="M 344.927734 570.978516 L 328.074219 570.978516 L 328.074219 568.324219 L 344.927734 568.324219 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#75808A;" d="M 344.927734 595.396484 L 328.322266 595.396484 L 328.322266 593.255859 L 344.927734 593.255859 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#959496;" d="M 328.839844 569.101562 L 344.027344 569.101562 C 344.027344 569.101562  347.064453 569.101562  344.027344 567.519531 C 340.990234 565.9375  331.878906 565.9375  328.839844 567.519531 C 325.802734 569.101562  328.839844 569.101562  328.839844 569.101562 " />
<path style="stroke-width:0.992188;stroke:none;fill:#959496;" d="M 333.912109 567.130859 C 333.912109 567.130859  333.380859 564.210938  336.300781 564.078125 C 339.220703 563.945312  338.822266 567.529297  338.822266 567.529297 L 337.496094 567.396484 C 337.496094 567.396484  337.628906 565.271484  336.167969 565.138672 C 334.708984 565.007812  335.240234 567.130859  335.240234 567.130859 L 333.912109 567.130859 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#83787D;" d="M 756.578125 354.304688 L 597.507812 354.304688 L 597.507812 278.746094 L 756.578125 278.746094 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#9C3047;" d="M 756.578125 591.916016 L 597.507812 591.916016 L 597.507812 353.310547 L 756.578125 353.310547 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#772136;" d="M 756.578125 596.886719 L 597.507812 596.886719 L 597.507812 555.876953 L 756.578125 555.876953 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#77213A;" d="M 696.927734 532.263672 C 696.927734 543.246094  688.023438 552.148438  677.042969 552.148438 C 666.0625 552.148438  657.160156 543.246094  657.160156 532.263672 C 657.160156 521.28125  666.0625 512.380859  677.042969 512.380859 C 688.023438 512.380859  696.927734 521.28125  696.927734 532.263672 " />
<path style="stroke-width:0.992188;stroke:none;fill:#77213A;" d="M 696.927734 581.972656 L 657.160156 581.972656 L 657.160156 532.263672 L 696.927734 532.263672 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#B5822F;" d="M 691.458984 586.945312 L 662.794922 586.945312 L 662.794922 528.287109 L 691.458984 528.287109 Z " />
<path style="stroke-width:1.490234;stroke:#DCCECD;fill:none;" d="M 691.458984 586.945312 L 662.792969 586.945312 L 662.792969 528.287109 L 691.458984 528.287109 L 691.458984 586.945312 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#AD9C94;" d="M 696.927734 587.265625 L 657.160156 587.265625 L 657.160156 581.982422 L 696.927734 581.982422 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#C0ADA3;" d="M 699.578125 592.878906 L 653.845703 592.878906 L 653.845703 586.976562 L 699.578125 586.976562 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#AD9C94;" d="M 702.560547 597.03125 L 650.53125 597.03125 L 650.53125 591.439453 L 702.560547 591.439453 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 626.222656 360.541016 C 617.039062 360.541016  609.595703 367.984375  609.595703 377.167969 L 609.595703 415.962891 L 642.849609 415.962891 L 642.849609 377.167969 C 642.849609 367.984375  635.404297 360.541016  626.222656 360.541016 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 644.234375 374.390625 C 642.523438 364.986328  635.080078 357.908203  626.152344 357.908203 C 617.226562 357.908203  609.78125 364.986328  608.072266 374.390625 L 644.234375 374.390625 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 642.849609 421.505859 L 609.595703 421.505859 L 609.595703 415.962891 L 642.849609 415.962891 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 609.871094 421.228516 L 608.070312 421.228516 L 608.070312 374.257812 L 609.871094 374.257812 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 642.294922 421.367188 L 644.095703 421.367188 L 644.095703 374.257812 L 642.294922 374.257812 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 640.492188 414.162109 L 611.535156 414.162109 L 611.535156 376.199219 L 640.492188 376.199219 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 621.511719 414.855469 L 620.402344 414.855469 L 620.402344 375.642578 L 621.511719 375.642578 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 631.625 414.439453 L 630.378906 414.439453 L 630.378906 374.951172 L 631.625 374.951172 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.048828 386.3125 L 611.121094 386.3125 L 611.121094 385.066406 L 641.048828 385.066406 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.048828 396.011719 L 611.259766 396.011719 L 611.259766 394.902344 L 641.048828 394.902344 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.1875 405.710938 L 610.84375 405.710938 L 610.84375 404.324219 L 641.1875 404.324219 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 677.423828 360.042969 C 668.240234 360.042969  660.796875 367.488281  660.796875 376.669922 L 660.796875 415.466797 L 694.048828 415.466797 L 694.048828 376.669922 C 694.048828 367.488281  686.605469 360.042969  677.423828 360.042969 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 695.433594 373.892578 C 693.724609 364.490234  686.279297 357.410156  677.353516 357.410156 C 668.427734 357.410156  660.982422 364.490234  659.273438 373.892578 L 695.433594 373.892578 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 694.048828 421.007812 L 660.794922 421.007812 L 660.794922 415.466797 L 694.048828 415.466797 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 661.072266 420.730469 L 659.271484 420.730469 L 659.271484 373.759766 L 661.072266 373.759766 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 693.496094 420.869141 L 695.296875 420.869141 L 695.296875 373.761719 L 693.496094 373.761719 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 691.693359 413.664062 L 662.736328 413.664062 L 662.736328 375.701172 L 691.693359 375.701172 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 672.710938 414.357422 L 671.603516 414.357422 L 671.603516 375.146484 L 672.710938 375.146484 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 682.826172 413.941406 L 681.580078 413.941406 L 681.580078 374.453125 L 682.826172 374.453125 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 692.248047 385.814453 L 662.318359 385.814453 L 662.318359 384.568359 L 692.248047 384.568359 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 692.248047 395.513672 L 662.458984 395.513672 L 662.458984 394.40625 L 692.248047 394.40625 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 692.386719 405.212891 L 662.042969 405.212891 L 662.042969 403.826172 L 692.386719 403.826172 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 729.617188 360.042969 C 720.435547 360.042969  712.992188 367.488281  712.992188 376.669922 L 712.992188 415.466797 L 746.244141 415.466797 L 746.244141 376.669922 C 746.244141 367.488281  738.800781 360.042969  729.617188 360.042969 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 747.628906 373.892578 C 745.919922 364.490234  738.474609 357.410156  729.548828 357.410156 C 720.623047 357.410156  713.177734 364.490234  711.46875 373.892578 L 747.628906 373.892578 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 746.244141 421.007812 L 712.990234 421.007812 L 712.990234 415.466797 L 746.244141 415.466797 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 713.267578 420.730469 L 711.466797 420.730469 L 711.466797 373.759766 L 713.267578 373.759766 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 745.691406 420.869141 L 747.492188 420.869141 L 747.492188 373.761719 L 745.691406 373.761719 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 743.888672 413.664062 L 714.929688 413.664062 L 714.929688 375.701172 L 743.888672 375.701172 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 724.90625 414.357422 L 723.798828 414.357422 L 723.798828 375.146484 L 724.90625 375.146484 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 735.021484 413.941406 L 733.773438 413.941406 L 733.773438 374.453125 L 735.021484 374.453125 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 744.443359 385.814453 L 714.513672 385.814453 L 714.513672 384.568359 L 744.443359 384.568359 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 744.443359 395.513672 L 714.654297 395.513672 L 714.654297 394.40625 L 744.443359 394.40625 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 744.582031 405.212891 L 714.238281 405.212891 L 714.238281 403.826172 L 744.582031 403.826172 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 626.71875 437.09375 C 617.537109 437.09375  610.09375 444.537109  610.09375 453.720703 L 610.09375 492.515625 L 643.345703 492.515625 L 643.345703 453.720703 C 643.345703 444.537109  635.902344 437.09375  626.71875 437.09375 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 644.730469 450.943359 C 643.021484 441.539062  635.576172 434.460938  626.650391 434.460938 C 617.724609 434.460938  610.277344 441.539062  608.568359 450.943359 L 644.730469 450.943359 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 643.345703 498.058594 L 610.091797 498.058594 L 610.091797 492.515625 L 643.345703 492.515625 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 610.369141 497.78125 L 608.568359 497.78125 L 608.568359 450.810547 L 610.369141 450.810547 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 642.791016 497.919922 L 644.59375 497.919922 L 644.59375 450.810547 L 642.791016 450.810547 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 640.990234 490.714844 L 612.03125 490.714844 L 612.03125 452.75 L 640.990234 452.75 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 622.007812 491.40625 L 620.898438 491.40625 L 620.898438 452.195312 L 622.007812 452.195312 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 632.123047 490.992188 L 630.875 490.992188 L 630.875 451.503906 L 632.123047 451.503906 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.544922 462.865234 L 611.615234 462.865234 L 611.615234 461.619141 L 641.544922 461.619141 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.544922 472.5625 L 611.755859 472.5625 L 611.755859 471.455078 L 641.544922 471.455078 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.683594 482.263672 L 611.339844 482.263672 L 611.339844 480.876953 L 641.683594 480.876953 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 677.919922 436.595703 C 668.736328 436.595703  661.292969 444.041016  661.292969 453.222656 L 661.292969 492.017578 L 694.546875 492.017578 L 694.546875 453.222656 C 694.546875 444.041016  687.103516 436.595703  677.919922 436.595703 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 695.931641 450.445312 C 694.222656 441.042969  686.777344 433.962891  677.849609 433.962891 C 668.923828 433.962891  661.478516 441.042969  659.769531 450.445312 L 695.931641 450.445312 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 694.546875 497.560547 L 661.292969 497.560547 L 661.292969 492.017578 L 694.546875 492.017578 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 661.570312 497.285156 L 659.769531 497.285156 L 659.769531 450.3125 L 661.570312 450.3125 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 693.992188 497.421875 L 695.794922 497.421875 L 695.794922 450.3125 L 693.992188 450.3125 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 692.191406 490.216797 L 663.232422 490.216797 L 663.232422 452.253906 L 692.191406 452.253906 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 673.208984 490.910156 L 672.099609 490.910156 L 672.099609 451.699219 L 673.208984 451.699219 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 683.324219 490.494141 L 682.076172 490.494141 L 682.076172 451.005859 L 683.324219 451.005859 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 692.746094 462.367188 L 662.816406 462.367188 L 662.816406 461.121094 L 692.746094 461.121094 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 692.746094 472.066406 L 662.957031 472.066406 L 662.957031 470.958984 L 692.746094 470.958984 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 692.884766 481.765625 L 662.541016 481.765625 L 662.541016 480.378906 L 692.884766 480.378906 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 730.115234 436.595703 C 720.931641 436.595703  713.488281 444.041016  713.488281 453.222656 L 713.488281 492.017578 L 746.742188 492.017578 L 746.742188 453.222656 C 746.742188 444.041016  739.298828 436.595703  730.115234 436.595703 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 748.126953 450.445312 C 746.416016 441.042969  738.972656 433.962891  730.044922 433.962891 C 721.119141 433.962891  713.673828 441.042969  711.964844 450.445312 L 748.126953 450.445312 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 746.742188 497.560547 L 713.488281 497.560547 L 713.488281 492.017578 L 746.742188 492.017578 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 713.765625 497.285156 L 711.964844 497.285156 L 711.964844 450.3125 L 713.765625 450.3125 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 746.1875 497.421875 L 747.990234 497.421875 L 747.990234 450.3125 L 746.1875 450.3125 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 744.386719 490.216797 L 715.427734 490.216797 L 715.427734 452.253906 L 744.386719 452.253906 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 725.404297 490.910156 L 724.294922 490.910156 L 724.294922 451.699219 L 725.404297 451.699219 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 735.519531 490.494141 L 734.271484 490.494141 L 734.271484 451.005859 L 735.519531 451.005859 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 744.941406 462.367188 L 715.011719 462.367188 L 715.011719 461.121094 L 744.941406 461.121094 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 744.941406 472.066406 L 715.152344 472.066406 L 715.152344 470.958984 L 744.941406 470.958984 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 745.080078 481.765625 L 714.736328 481.765625 L 714.736328 480.378906 L 745.080078 480.378906 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 626.71875 514.638672 C 617.537109 514.638672  610.09375 522.083984  610.09375 531.267578 L 610.09375 570.0625 L 643.345703 570.0625 L 643.345703 531.267578 C 643.345703 522.083984  635.902344 514.638672  626.71875 514.638672 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 644.730469 528.490234 C 643.021484 519.085938  635.576172 512.007812  626.650391 512.007812 C 617.724609 512.007812  610.277344 519.085938  608.568359 528.490234 L 644.730469 528.490234 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 643.345703 575.605469 L 610.091797 575.605469 L 610.091797 570.0625 L 643.345703 570.0625 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 610.369141 575.328125 L 608.568359 575.328125 L 608.568359 528.357422 L 610.369141 528.357422 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 642.791016 575.466797 L 644.59375 575.466797 L 644.59375 528.357422 L 642.791016 528.357422 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 640.990234 568.261719 L 612.03125 568.261719 L 612.03125 530.296875 L 640.990234 530.296875 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 622.007812 568.955078 L 620.898438 568.955078 L 620.898438 529.744141 L 622.007812 529.744141 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 632.123047 568.539062 L 630.875 568.539062 L 630.875 529.048828 L 632.123047 529.048828 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.544922 540.410156 L 611.615234 540.410156 L 611.615234 539.164062 L 641.544922 539.164062 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.544922 550.111328 L 611.755859 550.111328 L 611.755859 549.001953 L 641.544922 549.001953 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 641.683594 559.810547 L 611.339844 559.810547 L 611.339844 558.423828 L 641.683594 558.423828 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 730.115234 514.142578 C 720.931641 514.142578  713.488281 521.587891  713.488281 530.769531 L 713.488281 569.566406 L 746.742188 569.566406 L 746.742188 530.769531 C 746.742188 521.587891  739.298828 514.142578  730.115234 514.142578 " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 748.126953 527.994141 C 746.416016 518.587891  738.972656 511.511719  730.044922 511.511719 C 721.119141 511.511719  713.673828 518.587891  711.964844 527.994141 L 748.126953 527.994141 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#77213A;" d="M 746.742188 575.107422 L 713.488281 575.107422 L 713.488281 569.566406 L 746.742188 569.566406 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 713.765625 574.830078 L 711.964844 574.830078 L 711.964844 527.859375 L 713.765625 527.859375 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#772136;" d="M 746.1875 574.96875 L 747.990234 574.96875 L 747.990234 527.861328 L 746.1875 527.861328 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 744.386719 567.763672 L 715.427734 567.763672 L 715.427734 529.800781 L 744.386719 529.800781 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 725.404297 568.457031 L 724.294922 568.457031 L 724.294922 529.246094 L 725.404297 529.246094 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 735.519531 568.041016 L 734.271484 568.041016 L 734.271484 528.552734 L 735.519531 528.552734 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 744.941406 539.914062 L 715.011719 539.914062 L 715.011719 538.667969 L 744.941406 538.667969 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 744.941406 549.613281 L 715.152344 549.613281 L 715.152344 548.503906 L 744.941406 548.503906 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#FFF;" d="M 745.080078 559.3125 L 714.736328 559.3125 L 714.736328 557.925781 L 745.080078 557.925781 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 756.412109 353.476562 L 597.34375 353.476562 L 597.34375 349.167969 L 756.412109 349.167969 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#9C3047;" d="M 660.970703 353.806641 L 626.835938 353.806641 L 626.835938 317.664062 L 643.738281 302.109375 L 660.970703 317.664062 L 660.970703 353.806641 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#093644;" d="M 653.183594 342.212891 L 633.794922 342.212891 L 633.794922 319.341797 L 653.183594 319.341797 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 651.878906 340.839844 L 635.1875 340.839844 L 635.1875 320.859375 L 651.878906 320.859375 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#093644;" d="M 644.068359 341.212891 L 642.744141 341.212891 L 642.744141 320.003906 L 644.068359 320.003906 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#093644;" d="M 652.021484 329.283203 L 634.789062 329.283203 L 634.789062 327.958984 L 652.021484 327.958984 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 621.783203 318.636719 L 623.833984 320.6875 L 643.902344 302.605469 L 643.902344 299.001953 L 621.783203 318.636719 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 665.898438 318.636719 L 663.849609 320.6875 L 643.779297 302.605469 L 643.779297 299.001953 L 665.898438 318.636719 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 625.634766 349.333984 L 626.753906 349.333984 L 626.753906 317.767578 L 625.634766 317.767578 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 662.171875 349.208984 L 661.052734 349.208984 L 661.052734 318.015625 L 662.171875 318.015625 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#9C3047;" d="M 727.498047 354.138672 L 693.365234 354.138672 L 693.365234 317.996094 L 710.265625 302.441406 L 727.498047 317.996094 L 727.498047 354.138672 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#093644;" d="M 719.710938 342.542969 L 700.324219 342.542969 L 700.324219 319.673828 L 719.710938 319.673828 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#84A0B9;" d="M 718.40625 341.169922 L 701.714844 341.169922 L 701.714844 321.191406 L 718.40625 321.191406 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#093644;" d="M 710.597656 341.544922 L 709.271484 341.544922 L 709.271484 320.337891 L 710.597656 320.337891 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#093644;" d="M 718.550781 329.615234 L 701.318359 329.615234 L 701.318359 328.289062 L 718.550781 328.289062 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 688.310547 318.96875 L 690.361328 321.019531 L 710.431641 302.9375 L 710.431641 299.333984 L 688.310547 318.96875 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 732.427734 318.96875 L 730.378906 321.019531 L 710.306641 302.9375 L 710.306641 299.333984 L 732.427734 318.96875 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 692.162109 349.664062 L 693.28125 349.664062 L 693.28125 318.099609 L 692.162109 318.099609 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4D4144;" d="M 728.699219 349.541016 L 727.580078 349.541016 L 727.580078 318.347656 L 728.699219 318.347656 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#C0ADA3;" d="M 705.542969 600.365234 L 647.548828 600.365234 L 647.548828 595.726562 L 705.542969 595.726562 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#22221B;" d="M 653.304688 545.580078 C 653.304688 547.904297  652.1875 549.787109  650.8125 549.787109 C 649.433594 549.787109  648.318359 547.904297  648.318359 545.580078 C 648.318359 543.257812  649.433594 541.373047  650.8125 541.373047 C 652.1875 541.373047  653.304688 543.257812  653.304688 545.580078 " />
<path style="stroke-width:1.490234;stroke:none;fill:#555C5A;" d="M 651.427734 545.720703 C 651.427734 546.185547  651.207031 546.5625  650.935547 546.5625 C 650.664062 546.5625  650.443359 546.185547  650.443359 545.720703 L 650.443359 534.875 C 650.443359 534.412109  650.664062 534.035156  650.935547 534.035156 C 651.207031 534.035156  651.427734 534.412109  651.427734 534.875 L 651.427734 545.720703 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#47443C;" d="M 647.21875 528.986328 L 648.714844 536.466797 L 653.203125 536.466797 L 654.511719 528.986328 L 647.21875 528.986328 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#252425;" d="M 646.472656 529.103516 L 650.746094 524.6875 L 655.236328 529.103516 L 646.472656 529.103516 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#F0BC4F;" d="M 648.013672 529.734375 L 649.134766 535.833984 L 650.679688 535.833984 L 650.679688 529.734375 L 648.013672 529.734375 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#F0BC4F;" d="M 651.240234 529.734375 L 651.240234 535.833984 L 652.710938 535.833984 L 653.623047 529.734375 L 651.240234 529.734375 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#252425;" d="M 651.521484 524.265625 C 651.521484 524.654297  651.205078 524.966797  650.818359 524.966797 C 650.431641 524.966797  650.117188 524.654297  650.117188 524.265625 C 650.117188 523.878906  650.431641 523.564453  650.818359 523.564453 C 651.205078 523.564453  651.521484 523.878906  651.521484 524.265625 " />
<path style="stroke-width:1.490234;stroke:none;fill:#22221B;" d="M 706.990234 545.828125 C 706.990234 548.152344  705.875 550.035156  704.498047 550.035156 C 703.121094 550.035156  702.003906 548.152344  702.003906 545.828125 C 702.003906 543.503906  703.121094 541.623047  704.498047 541.623047 C 705.875 541.623047  706.990234 543.503906  706.990234 545.828125 " />
<path style="stroke-width:1.490234;stroke:none;fill:#555C5A;" d="M 705.113281 545.96875 C 705.113281 546.433594  704.892578 546.810547  704.621094 546.810547 C 704.349609 546.810547  704.130859 546.433594  704.130859 545.96875 L 704.130859 535.125 C 704.130859 534.660156  704.349609 534.283203  704.621094 534.283203 C 704.892578 534.283203  705.113281 534.660156  705.113281 535.125 L 705.113281 545.96875 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#47443C;" d="M 700.90625 529.236328 L 702.402344 536.714844 L 706.888672 536.714844 L 708.197266 529.236328 L 700.90625 529.236328 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#252425;" d="M 700.158203 529.351562 L 704.431641 524.935547 L 708.921875 529.351562 L 700.158203 529.351562 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#F0BC4F;" d="M 701.701172 529.982422 L 702.822266 536.083984 L 704.365234 536.083984 L 704.365234 529.982422 L 701.701172 529.982422 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#F0BC4F;" d="M 704.925781 529.982422 L 704.925781 536.083984 L 706.398438 536.083984 L 707.308594 529.982422 L 704.925781 529.982422 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#252425;" d="M 705.207031 524.513672 C 705.207031 524.902344  704.892578 525.216797  704.503906 525.216797 C 704.117188 525.216797  703.804688 524.902344  703.804688 524.513672 C 703.804688 524.126953  704.117188 523.8125  704.503906 523.8125 C 704.892578 523.8125  705.207031 524.126953  705.207031 524.513672 " />
<path style="stroke-width:1.490234;stroke:none;fill:#8C9794;" d="M 597.507812 597.880859 L 363.873047 597.880859 L 363.873047 418.927734 L 597.507812 418.927734 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#788779;" d="M 597.507812 435.003906 L 363.873047 435.003906 L 363.873047 423.896484 L 597.507812 423.896484 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#4B291A;" d="M 358.902344 428.869141 L 602.478516 428.869141 L 592.537109 344.361328 L 368.84375 344.361328 L 358.902344 428.869141 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#6E7876;" d="M 363.873047 597.880859 L 597.507812 597.880859 L 597.507812 577.998047 L 363.873047 577.998047 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#E0E2E3;" d="M 453.349609 577.998047 L 373.816406 577.998047 L 373.816406 513.375 L 453.349609 513.375 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#788779;" d="M 584.583984 599.869141 L 537.855469 599.869141 L 537.855469 393.078125 L 584.583984 393.078125 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#E0E2E3;" d="M 537.857422 577.998047 L 458.322266 577.998047 L 458.322266 513.375 L 537.857422 513.375 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#E0E2E3;" d="M 579.910156 597.880859 L 543.048828 597.880859 L 543.048828 513.816406 L 579.910156 513.816406 Z " />
<path style="stroke-width:1.490234;stroke:none;fill:#8AA5BB;" d="M 449.373047 574.019531 L 377.791016 574.019531 L 377.791016 517.777344 L 449.373047 517.777344 Z " />
<path style="stroke-width:1.533203;stroke:#57798B;fill:none;" d="M 449.373047 574.019531 L 377.791016 574.019531 L 377.791016 517.777344 L 449.373047 517.777344 L 449.373047 574.019531 Z " />
<path style="stroke-width:1.533203;stroke:none;fill:#8AA5BB;" d="M 534.376953 574.517578 L 462.298828 574.517578 L 462.298828 517.847656 L 534.376953 517.847656 Z " />
<path style="stroke-width:1.544922;stroke:#57798B;fill:none;" d="M 534.376953 574.517578 L 462.298828 574.517578 L 462.298828 517.847656 L 534.376953 517.847656 L 534.376953 574.517578 Z " />
<path style="stroke-width:1.544922;stroke:none;fill:#87A3B9;" d="M 575.814453 573.15625 L 547.142578 573.15625 L 547.142578 518.761719 L 575.814453 518.761719 Z " />
<path style="stroke-width:1.349609;stroke:#57798B;fill:none;" d="M 575.814453 573.15625 L 547.144531 573.15625 L 547.144531 518.761719 L 575.814453 518.761719 L 575.814453 573.15625 Z " />
<path style="stroke-width:1.349609;stroke:none;fill:#E8E9E9;" d="M 404.138672 483.548828 L 374.3125 483.548828 L 374.3125 440.466797 L 404.138672 440.466797 Z " />
<path style="stroke-width:1.349609;stroke:none;fill:#8DA9BE;" d="M 400.824219 460.351562 L 377.626953 460.351562 L 377.626953 443.78125 L 400.824219 443.78125 Z " />
<path style="stroke-width:0.90625;stroke:#57798B;fill:none;" d="M 400.824219 460.351562 L 377.626953 460.351562 L 377.626953 443.78125 L 400.824219 443.78125 L 400.824219 460.351562 Z " />
<path style="stroke-width:0.90625;stroke:none;fill:#8DA9BE;" d="M 400.824219 480.234375 L 377.626953 480.234375 L 377.626953 463.664062 L 400.824219 463.664062 Z " />
<path style="stroke-width:0.992188;stroke:#57798B;fill:none;" d="M 400.824219 480.234375 L 377.626953 480.234375 L 377.626953 463.664062 L 400.824219 463.664062 L 400.824219 480.234375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#E8E9E9;" d="M 440.425781 483.548828 L 410.599609 483.548828 L 410.599609 440.466797 L 440.425781 440.466797 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#8DA9BE;" d="M 437.111328 460.351562 L 413.914062 460.351562 L 413.914062 443.78125 L 437.111328 443.78125 Z " />
<path style="stroke-width:0.90625;stroke:#57798B;fill:none;" d="M 437.111328 460.351562 L 413.914062 460.351562 L 413.914062 443.78125 L 437.111328 443.78125 L 437.111328 460.351562 Z " />
<path style="stroke-width:0.90625;stroke:none;fill:#8DA9BE;" d="M 437.111328 480.234375 L 413.914062 480.234375 L 413.914062 463.664062 L 437.111328 463.664062 Z " />
<path style="stroke-width:0.992188;stroke:#57798B;fill:none;" d="M 437.111328 480.234375 L 413.914062 480.234375 L 413.914062 463.664062 L 437.111328 463.664062 L 437.111328 480.234375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#E8E9E9;" d="M 493.117188 483.548828 L 463.291016 483.548828 L 463.291016 440.466797 L 493.117188 440.466797 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#8DA9BE;" d="M 489.804688 460.351562 L 466.607422 460.351562 L 466.607422 443.78125 L 489.804688 443.78125 Z " />
<path style="stroke-width:0.90625;stroke:#57798B;fill:none;" d="M 489.804688 460.351562 L 466.607422 460.351562 L 466.607422 443.78125 L 489.804688 443.78125 L 489.804688 460.351562 Z " />
<path style="stroke-width:0.90625;stroke:none;fill:#8DA9BE;" d="M 489.804688 480.234375 L 466.607422 480.234375 L 466.607422 463.664062 L 489.804688 463.664062 Z " />
<path style="stroke-width:0.992188;stroke:#57798B;fill:none;" d="M 489.804688 480.234375 L 466.607422 480.234375 L 466.607422 463.664062 L 489.804688 463.664062 L 489.804688 480.234375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#E8E9E9;" d="M 529.40625 483.548828 L 499.580078 483.548828 L 499.580078 440.466797 L 529.40625 440.466797 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#8DA9BE;" d="M 526.091797 460.351562 L 502.894531 460.351562 L 502.894531 443.78125 L 526.091797 443.78125 Z " />
<path style="stroke-width:0.90625;stroke:#57798B;fill:none;" d="M 526.091797 460.351562 L 502.894531 460.351562 L 502.894531 443.78125 L 526.091797 443.78125 L 526.091797 460.351562 Z " />
<path style="stroke-width:0.90625;stroke:none;fill:#8DA9BE;" d="M 526.091797 480.234375 L 502.894531 480.234375 L 502.894531 463.664062 L 526.091797 463.664062 Z " />
<path style="stroke-width:0.992188;stroke:#57798B;fill:none;" d="M 526.091797 480.234375 L 502.894531 480.234375 L 502.894531 463.664062 L 526.091797 463.664062 L 526.091797 480.234375 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7297AD;" d="M 378.644531 543.574219 L 378.644531 572.826172 L 448.521484 572.826172 L 448.521484 550.800781 C 448.521484 550.800781  440.986328 549.080078  433.791016 557.685547 C 426.599609 566.289062  420.089844 551.490234  420.089844 551.490234 C 420.089844 551.490234  413.583984 530.154297  408.787109 539.101562 C 403.992188 548.048828  414.267578 551.490234  407.074219 555.964844 C 399.880859 560.4375  405.361328 544.951172  399.880859 543.919922 C 394.400391 542.886719  389.947266 549.080078  389.947266 549.080078 C 389.947266 549.080078  384.810547 535.314453  378.644531 543.574219 " />
<path style="stroke-width:0.992188;stroke:none;fill:#7297AD;" d="M 462.8125 553.050781 L 462.8125 573.316406 L 533.861328 573.316406 L 533.861328 540.6875 C 533.861328 540.6875  524.849609 532.101562  523.117188 538.283203 C 521.384766 544.466797  520.345703 552.708984  520.345703 552.708984 C 520.345703 552.708984  514.798828 561.294922  513.759766 549.617188 C 512.720703 537.939453  503.708984 542.404297  501.630859 544.466797 C 499.550781 546.527344  490.539062 550.304688  490.539062 550.304688 C 490.539062 550.304688  491.580078 536.222656  482.914062 538.970703 C 474.25 541.71875  477.369141 557.517578  477.369141 557.517578 L 473.210938 558.203125 L 472.169922 544.810547 L 462.8125 553.050781 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#7297AD;" d="M 547.826172 551.892578 L 547.826172 571.671875 L 575.132812 571.671875 L 575.132812 545.628906 C 575.132812 545.628906  570.996094 541.673828  568.787109 552.222656 C 566.582031 562.771484  562.443359 552.550781  562.443359 552.550781 C 562.443359 552.550781  555.550781 538.705078  553.619141 547.607422 C 551.6875 556.507812  556.929688 558.15625  552.791016 560.134766 C 548.654297 562.111328  551.964844 550.574219  547.826172 551.892578 " />
<path style="stroke-width:0.992188;stroke:none;fill:#9DA7B1;" d="M 580.949219 600.365234 L 540.972656 600.365234 L 540.972656 592.412109 L 580.949219 592.412109 Z " />
<path style="stroke-width:0.992188;stroke:none;fill:#788779;" d="M 584.583984 393.326172 C 584.583984 406.091797  574.123047 416.441406  561.220703 416.441406 C 548.316406 416.441406  537.857422 406.091797  537.857422 393.326172 C 537.857422 380.560547  548.316406 370.210938  561.220703 370.210938 C 574.123047 370.210938  584.583984 380.560547  584.583984 393.326172 " />
<path style="stroke-width:0.992188;stroke:none;fill:#86A1B6;" d="M 543.822266 513.375 L 543.822266 395.832031 C 543.822266 395.832031  544.3125 376.673828  561.958984 376.673828 C 579.605469 376.673828  579.115234 394.796875  579.115234 394.796875 L 579.115234 513.375 L 543.822266 513.375 Z " />
<path style="stroke-width:1.564453;stroke:#D2DBE2;fill:none;" d="M 543.822266 513.375 L 543.822266 395.832031 C 543.822266 395.832031  544.3125 376.673828  561.958984 376.673828 C 579.605469 376.673828  579.115234 394.796875  579.115234 394.796875 L 579.115234 513.375 L 543.822266 513.375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D9E0E4;" d="M 562.214844 513.375 L 560.224609 513.375 L 560.224609 376.673828 L 562.214844 376.673828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D9E0E4;" d="M 579.115234 395.5625 L 543.822266 395.5625 L 543.822266 393.574219 L 579.115234 393.574219 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D9E0E4;" d="M 579.613281 434.335938 L 543.822266 434.335938 L 543.822266 432.347656 L 579.613281 432.347656 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D9E0E4;" d="M 579.115234 475.097656 L 542.828125 475.097656 L 542.828125 473.109375 L 579.115234 473.109375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#788779;" d="M 404.46875 488.519531 L 373.816406 488.519531 L 373.816406 483.548828 L 404.46875 483.548828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#788779;" d="M 440.591797 488.519531 L 410.103516 488.519531 L 410.103516 483.548828 L 440.591797 483.548828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#788779;" d="M 493.615234 488.355469 L 462.960938 488.355469 L 462.960938 483.382812 L 493.615234 483.382812 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#788779;" d="M 529.738281 488.355469 L 499.25 488.355469 L 499.25 483.382812 L 529.738281 483.382812 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9D4C59;" d="M 457.078125 521.056641 C 457.078125 521.056641  457.078125 524.671875  460.806641 524.671875 C 464.535156 524.671875  464.535156 521.056641  464.535156 521.056641 C 464.535156 521.056641  464.535156 524.310547  468.263672 524.492188 C 471.992188 524.671875  471.992188 521.056641  471.992188 521.056641 C 471.992188 521.056641  471.992188 524.671875  475.720703 524.671875 C 479.447266 524.671875  479.447266 521.056641  479.447266 521.056641 C 479.447266 521.056641  479.447266 524.671875  483.175781 524.671875 C 486.902344 524.671875  486.902344 521.056641  486.902344 521.056641 C 486.902344 521.056641  486.902344 524.671875  490.632812 524.671875 C 494.361328 524.671875  494.361328 521.056641  494.361328 521.056641 C 494.361328 521.056641  494.361328 524.671875  498.089844 524.671875 C 501.816406 524.671875  501.816406 521.056641  501.816406 521.056641 C 501.816406 521.056641  501.816406 524.671875  505.544922 524.671875 C 509.273438 524.671875  509.273438 521.056641  509.273438 521.056641 C 509.273438 521.056641  509.273438 524.671875  513.001953 524.671875 C 516.730469 524.671875  516.730469 521.056641  516.730469 521.056641 C 516.730469 521.056641  516.730469 524.671875  520.458984 524.671875 C 524.185547 524.671875  524.185547 521.056641  524.185547 521.056641 C 524.185547 521.056641  524.185547 524.671875  527.912109 524.671875 C 531.644531 524.671875  531.644531 521.056641  531.644531 521.056641 C 531.644531 521.056641  531.644531 524.671875  535.371094 524.671875 C 539.099609 524.671875  539.099609 521.056641  539.099609 521.056641 L 539.099609 517.441406 L 457.078125 517.441406 L 457.078125 521.056641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#B85B6A;" d="M 457.078125 517.441406 L 458.941406 508.404297 L 537.236328 508.404297 L 539.099609 517.441406 L 457.078125 517.441406 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9D4C59;" d="M 372.572266 521.056641 C 372.572266 521.056641  372.572266 524.671875  376.322266 524.671875 C 380.072266 524.671875  380.072266 521.056641  380.072266 521.056641 C 380.072266 521.056641  380.072266 524.310547  383.826172 524.492188 C 387.576172 524.671875  387.576172 521.056641  387.576172 521.056641 C 387.576172 521.056641  387.576172 524.671875  391.326172 524.671875 C 395.076172 524.671875  395.076172 521.056641  395.076172 521.056641 C 395.076172 521.056641  395.076172 524.671875  398.828125 524.671875 C 402.578125 524.671875  402.578125 521.056641  402.578125 521.056641 C 402.578125 521.056641  402.578125 524.671875  406.330078 524.671875 C 410.080078 524.671875  410.080078 521.056641  410.080078 521.056641 C 410.080078 521.056641  410.080078 524.671875  413.832031 524.671875 C 417.582031 524.671875  417.582031 521.056641  417.582031 521.056641 C 417.582031 521.056641  417.582031 524.671875  421.332031 524.671875 C 425.083984 524.671875  425.083984 521.056641  425.083984 521.056641 C 425.083984 521.056641  425.083984 524.671875  428.833984 524.671875 C 432.585938 524.671875  432.585938 521.056641  432.585938 521.056641 C 432.585938 521.056641  432.585938 524.671875  436.335938 524.671875 C 440.085938 524.671875  440.085938 521.056641  440.085938 521.056641 C 440.085938 521.056641  440.085938 524.671875  443.835938 524.671875 C 447.589844 524.671875  447.589844 521.056641  447.589844 521.056641 C 447.589844 521.056641  447.589844 524.671875  451.339844 524.671875 C 455.089844 524.671875  455.089844 521.056641  455.089844 521.056641 L 455.089844 517.441406 L 372.572266 517.441406 L 372.572266 521.056641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#B85B6A;" d="M 372.572266 517.441406 L 374.447266 508.404297 L 453.214844 508.404297 L 455.089844 517.441406 L 372.572266 517.441406 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#ECE8E6;" d="M 895.765625 597.880859 L 756.580078 597.880859 L 756.580078 393.277344 L 895.765625 393.277344 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 795.265625 432.25 L 771.492188 432.25 L 771.492188 398.150391 L 795.265625 398.150391 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 793.566406 430.544922 L 773.189453 430.544922 L 773.189453 399.853516 L 793.566406 399.853516 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 793.566406 411.789062 L 773.189453 411.789062 L 773.189453 410.083984 L 793.566406 410.083984 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#BAB6B6;" d="M 895.765625 583.265625 L 756.580078 583.265625 L 756.580078 580.423828 L 895.765625 580.423828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 838.058594 432.25 L 814.285156 432.25 L 814.285156 398.150391 L 838.058594 398.150391 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 836.361328 430.544922 L 815.982422 430.544922 L 815.982422 399.853516 L 836.361328 399.853516 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 836.361328 411.789062 L 815.982422 411.789062 L 815.982422 410.083984 L 836.361328 410.083984 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 880.851562 432.25 L 857.078125 432.25 L 857.078125 398.150391 L 880.851562 398.150391 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 879.154297 430.544922 L 858.777344 430.544922 L 858.777344 399.853516 L 879.154297 399.853516 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 879.154297 411.789062 L 858.777344 411.789062 L 858.777344 410.083984 L 879.154297 410.083984 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 795.265625 500.449219 L 771.492188 500.449219 L 771.492188 466.349609 L 795.265625 466.349609 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 793.566406 498.744141 L 773.189453 498.744141 L 773.189453 468.054688 L 793.566406 468.054688 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 793.566406 479.990234 L 773.189453 479.990234 L 773.189453 478.285156 L 793.566406 478.285156 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 838.058594 500.449219 L 814.285156 500.449219 L 814.285156 466.349609 L 838.058594 466.349609 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 836.361328 498.744141 L 815.982422 498.744141 L 815.982422 468.054688 L 836.361328 468.054688 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 836.361328 479.990234 L 815.982422 479.990234 L 815.982422 478.285156 L 836.361328 478.285156 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 880.851562 500.449219 L 857.078125 500.449219 L 857.078125 466.349609 L 880.851562 466.349609 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 879.154297 498.744141 L 858.777344 498.744141 L 858.777344 468.054688 L 879.154297 468.054688 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 879.154297 479.990234 L 858.777344 479.990234 L 858.777344 478.285156 L 879.154297 478.285156 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 838.058594 568.652344 L 814.285156 568.652344 L 814.285156 534.552734 L 838.058594 534.552734 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 836.361328 566.947266 L 815.982422 566.947266 L 815.982422 536.255859 L 836.361328 536.255859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 836.361328 548.191406 L 815.982422 548.191406 L 815.982422 546.486328 L 836.361328 546.486328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 880.851562 568.652344 L 857.078125 568.652344 L 857.078125 534.552734 L 880.851562 534.552734 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 879.154297 566.947266 L 858.777344 566.947266 L 858.777344 536.255859 L 879.154297 536.255859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#67543A;" d="M 879.154297 548.191406 L 858.777344 548.191406 L 858.777344 546.486328 L 879.154297 546.486328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D0CECF;" d="M 895.765625 597.880859 L 756.580078 597.880859 L 756.580078 583.265625 L 895.765625 583.265625 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#00749C;" d="M 796.345703 588.138672 L 771.490234 588.138672 L 771.490234 534.552734 L 796.345703 534.552734 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#8CB0C6;" d="M 791.375 558.908203 L 776.462891 558.908203 L 776.462891 539.421875 L 791.375 539.421875 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#40595F;" d="M 796.345703 593.009766 L 771.490234 593.009766 L 771.490234 588.138672 L 796.345703 588.138672 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#778994;" d="M 801.316406 597.880859 L 766.521484 597.880859 L 766.521484 593.009766 L 801.316406 593.009766 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#40595F;" d="M 895.765625 393.277344 L 756.580078 393.277344 L 756.580078 325.076172 L 895.765625 325.076172 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 865.939453 368.919922 L 855.998047 368.919922 L 855.998047 349.433594 L 865.939453 349.433594 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#93B0C4;" d="M 880.851562 368.919922 L 870.910156 368.919922 L 870.910156 349.433594 L 880.851562 349.433594 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#ECE8E6;" d="M 855.251953 325.076172 L 842.824219 325.076172 L 842.824219 310.460938 L 855.251953 310.460938 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#ECE8E6;" d="M 856.992188 310.460938 L 841.083984 310.460938 L 841.083984 305.589844 L 856.992188 305.589844 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D0CECF;" d="M 895.765625 398.148438 L 756.580078 398.148438 L 756.580078 393.277344 L 895.765625 393.277344 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D0CECF;" d="M 895.765625 456.607422 L 756.580078 456.607422 L 756.580078 446.865234 L 895.765625 446.865234 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#D0CECF;" d="M 895.765625 524.808594 L 756.580078 524.808594 L 756.580078 515.066406 L 895.765625 515.066406 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#BAB6B6;" d="M 895.765625 458.027344 L 756.580078 458.027344 L 756.580078 455.185547 L 895.765625 455.185547 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#BAB6B6;" d="M 895.765625 527.650391 L 756.580078 527.650391 L 756.580078 524.806641 L 895.765625 524.806641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#E5AC88;" d="M 895.617188 596.080078 L 1049.865234 596.080078 L 1049.865234 385.285156 L 895.617188 385.285156 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#BE7262;" d="M 896.083984 596.080078 L 1049.865234 596.080078 L 1049.865234 558.548828 L 896.083984 558.548828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#DB8C64;" d="M 1003.123047 457.265625 L 1036.558594 457.265625 L 1036.558594 400.96875 L 1003.123047 400.96875 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 1004.367188 456.083984 L 1035.271484 456.083984 L 1035.271484 402.664062 L 1004.367188 402.664062 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#889DB9;" d="M 1006.574219 453.65625 L 1033.066406 453.65625 L 1033.066406 405.09375 L 1006.574219 405.09375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1033.064453 405.09375 L 1033.064453 423.623047 L 1030.857422 423.623047 C 1030.857422 423.623047  1024.236328 414.357422  1024.236328 405.09375 L 1033.064453 405.09375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1033.064453 422.091797 L 1030.857422 422.091797 C 1030.857422 422.091797  1024.236328 439.087891  1026.443359 453.65625 L 1033.064453 453.65625 L 1033.064453 422.091797 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1028.650391 405.173828 C 1028.650391 405.173828  1019.820312 420.955078  1010.990234 405.173828 L 1028.650391 405.173828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1006.794922 405.09375 L 1006.794922 423.056641 L 1009.003906 423.056641 C 1009.003906 423.056641  1015.625 414.074219  1015.625 405.09375 L 1006.794922 405.09375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1006.794922 422.091797 L 1009.003906 422.091797 C 1009.003906 422.091797  1015.625 439.087891  1013.417969 453.65625 L 1006.794922 453.65625 L 1006.794922 422.091797 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 1023.697266 454.154297 L 1025.755859 454.154297 L 1025.755859 404.646484 L 1023.697266 404.646484 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 1014.439453 453.871094 L 1016.240234 453.871094 L 1016.240234 404.080078 L 1014.439453 404.080078 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 1005.802734 416.433594 L 1033.322266 416.433594 L 1033.322266 414.003906 L 1005.802734 414.003906 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 1006.316406 427.466797 L 1033.835938 427.466797 L 1033.835938 425.037109 L 1006.316406 425.037109 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#DB8C64;" d="M 955.664062 457.007812 L 989.099609 457.007812 L 989.099609 400.710938 L 955.664062 400.710938 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 956.910156 455.826172 L 987.814453 455.826172 L 987.814453 402.408203 L 956.910156 402.408203 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#889DB9;" d="M 959.115234 453.400391 L 985.605469 453.400391 L 985.605469 404.835938 L 959.115234 404.835938 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 985.607422 404.835938 L 985.607422 423.365234 L 983.398438 423.365234 C 983.398438 423.365234  976.777344 414.099609  976.777344 404.835938 L 985.607422 404.835938 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 985.607422 421.833984 L 983.398438 421.833984 C 983.398438 421.833984  976.777344 438.830078  978.984375 453.400391 L 985.607422 453.400391 L 985.607422 421.833984 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 981.191406 404.917969 C 981.191406 404.917969  972.361328 420.699219  963.53125 404.917969 L 981.191406 404.917969 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 959.335938 404.835938 L 959.335938 422.798828 L 961.544922 422.798828 C 961.544922 422.798828  968.166016 413.816406  968.166016 404.835938 L 959.335938 404.835938 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 959.335938 421.833984 L 961.544922 421.833984 C 961.544922 421.833984  968.166016 438.830078  965.958984 453.400391 L 959.335938 453.400391 L 959.335938 421.833984 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 976.240234 453.896484 L 978.298828 453.896484 L 978.298828 404.388672 L 976.240234 404.388672 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 966.980469 453.613281 L 968.78125 453.613281 L 968.78125 403.822266 L 966.980469 403.822266 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 958.34375 416.175781 L 985.865234 416.175781 L 985.865234 413.748047 L 958.34375 413.748047 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 958.859375 427.208984 L 986.378906 427.208984 L 986.378906 424.779297 L 958.859375 424.779297 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#DB8C64;" d="M 908.923828 457.265625 L 942.359375 457.265625 L 942.359375 400.96875 L 908.923828 400.96875 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 910.166016 456.083984 L 941.072266 456.083984 L 941.072266 402.664062 L 910.166016 402.664062 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#889DB9;" d="M 912.375 453.65625 L 938.865234 453.65625 L 938.865234 405.09375 L 912.375 405.09375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 938.865234 405.09375 L 938.865234 423.623047 L 936.658203 423.623047 C 936.658203 423.623047  930.035156 414.357422  930.035156 405.09375 L 938.865234 405.09375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 938.865234 422.091797 L 936.658203 422.091797 C 936.658203 422.091797  930.035156 439.087891  932.242188 453.65625 L 938.865234 453.65625 L 938.865234 422.091797 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 934.449219 405.173828 C 934.449219 405.173828  925.619141 420.955078  916.789062 405.173828 L 934.449219 405.173828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 912.595703 405.09375 L 912.595703 423.056641 L 914.802734 423.056641 C 914.802734 423.056641  921.425781 414.074219  921.425781 405.09375 L 912.595703 405.09375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 912.595703 422.091797 L 914.802734 422.091797 C 914.802734 422.091797  921.425781 439.087891  919.21875 453.65625 L 912.595703 453.65625 L 912.595703 422.091797 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 929.498047 454.154297 L 931.554688 454.154297 L 931.554688 404.646484 L 929.498047 404.646484 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 920.240234 453.871094 L 922.039062 453.871094 L 922.039062 404.080078 L 920.240234 404.080078 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 911.601562 416.433594 L 939.121094 416.433594 L 939.121094 414.003906 L 911.601562 414.003906 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 912.117188 427.466797 L 939.636719 427.466797 L 939.636719 425.037109 L 912.117188 425.037109 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#DB8C64;" d="M 1003.123047 544.410156 L 1036.558594 544.410156 L 1036.558594 488.113281 L 1003.123047 488.113281 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 1004.367188 543.230469 L 1035.271484 543.230469 L 1035.271484 489.810547 L 1004.367188 489.810547 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#889DB9;" d="M 1006.574219 540.802734 L 1033.066406 540.802734 L 1033.066406 492.240234 L 1006.574219 492.240234 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1033.064453 492.238281 L 1033.064453 510.767578 L 1030.857422 510.767578 C 1030.857422 510.767578  1024.236328 501.503906  1024.236328 492.238281 L 1033.064453 492.238281 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1033.064453 509.236328 L 1030.857422 509.236328 C 1030.857422 509.236328  1024.236328 526.232422  1026.443359 540.802734 L 1033.064453 540.802734 L 1033.064453 509.236328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1028.650391 492.320312 C 1028.650391 492.320312  1019.820312 508.101562  1010.990234 492.320312 L 1028.650391 492.320312 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1006.794922 492.238281 L 1006.794922 510.201172 L 1009.003906 510.201172 C 1009.003906 510.201172  1015.625 501.21875  1015.625 492.238281 L 1006.794922 492.238281 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 1006.794922 509.236328 L 1009.003906 509.236328 C 1009.003906 509.236328  1015.625 526.232422  1013.417969 540.802734 L 1006.794922 540.802734 L 1006.794922 509.236328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 1023.697266 541.298828 L 1025.755859 541.298828 L 1025.755859 491.791016 L 1023.697266 491.791016 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 1014.439453 541.015625 L 1016.240234 541.015625 L 1016.240234 491.224609 L 1014.439453 491.224609 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 1005.802734 503.578125 L 1033.322266 503.578125 L 1033.322266 501.150391 L 1005.802734 501.150391 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 1006.316406 514.611328 L 1033.835938 514.611328 L 1033.835938 512.181641 L 1006.316406 512.181641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#DB8C64;" d="M 955.664062 544.410156 L 989.099609 544.410156 L 989.099609 488.113281 L 955.664062 488.113281 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 956.910156 543.230469 L 987.814453 543.230469 L 987.814453 489.810547 L 956.910156 489.810547 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#889DB9;" d="M 959.115234 540.802734 L 985.605469 540.802734 L 985.605469 492.240234 L 959.115234 492.240234 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 985.607422 492.238281 L 985.607422 510.767578 L 983.398438 510.767578 C 983.398438 510.767578  976.777344 501.503906  976.777344 492.238281 L 985.607422 492.238281 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 985.607422 509.236328 L 983.398438 509.236328 C 983.398438 509.236328  976.777344 526.232422  978.984375 540.802734 L 985.607422 540.802734 L 985.607422 509.236328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 981.191406 492.320312 C 981.191406 492.320312  972.361328 508.101562  963.53125 492.320312 L 981.191406 492.320312 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 959.335938 492.238281 L 959.335938 510.201172 L 961.544922 510.201172 C 961.544922 510.201172  968.166016 501.21875  968.166016 492.238281 L 959.335938 492.238281 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#557182;" d="M 959.335938 509.236328 L 961.544922 509.236328 C 961.544922 509.236328  968.166016 526.232422  965.958984 540.802734 L 959.335938 540.802734 L 959.335938 509.236328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 976.240234 541.298828 L 978.298828 541.298828 L 978.298828 491.791016 L 976.240234 491.791016 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 966.980469 541.015625 L 968.78125 541.015625 L 968.78125 491.224609 L 966.980469 491.224609 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 958.34375 503.578125 L 985.865234 503.578125 L 985.865234 501.150391 L 958.34375 501.150391 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 958.859375 514.611328 L 986.378906 514.611328 L 986.378906 512.181641 L 958.859375 512.181641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#64421F;" d="M 895.617188 395.570312 L 1049.865234 395.570312 L 1049.865234 318.449219 L 895.617188 318.449219 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1048.367188 394.03125 L 1049.857422 394.03125 L 1049.857422 318.962891 L 1048.367188 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1043.898438 394.03125 L 1045.386719 394.03125 L 1045.386719 318.962891 L 1043.898438 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1039.429688 394.03125 L 1040.919922 394.03125 L 1040.919922 318.962891 L 1039.429688 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1034.960938 394.03125 L 1036.451172 394.03125 L 1036.451172 318.962891 L 1034.960938 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1030.494141 394.03125 L 1031.984375 394.03125 L 1031.984375 318.962891 L 1030.494141 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1026.027344 394.03125 L 1027.515625 394.03125 L 1027.515625 318.962891 L 1026.027344 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1021.558594 394.03125 L 1023.046875 394.03125 L 1023.046875 318.962891 L 1021.558594 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1017.089844 394.03125 L 1018.580078 394.03125 L 1018.580078 318.962891 L 1017.089844 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1012.621094 394.03125 L 1014.111328 394.03125 L 1014.111328 318.962891 L 1012.621094 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1008.154297 394.03125 L 1009.642578 394.03125 L 1009.642578 318.962891 L 1008.154297 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 1003.6875 394.03125 L 1005.175781 394.03125 L 1005.175781 318.962891 L 1003.6875 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 999.216797 394.03125 L 1000.705078 394.03125 L 1000.705078 318.962891 L 999.216797 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 994.75 394.03125 L 996.238281 394.03125 L 996.238281 318.962891 L 994.75 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 990.28125 394.03125 L 991.771484 394.03125 L 991.771484 318.962891 L 990.28125 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 985.8125 394.03125 L 987.302734 394.03125 L 987.302734 318.962891 L 985.8125 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 981.345703 394.03125 L 982.833984 394.03125 L 982.833984 318.962891 L 981.345703 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 976.876953 394.03125 L 978.365234 394.03125 L 978.365234 318.962891 L 976.876953 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 972.408203 394.03125 L 973.896484 394.03125 L 973.896484 318.962891 L 972.408203 318.962891 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 967.933594 394.199219 L 969.423828 394.199219 L 969.423828 319.130859 L 967.933594 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 963.464844 394.199219 L 964.955078 394.199219 L 964.955078 319.130859 L 963.464844 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 958.998047 394.199219 L 960.486328 394.199219 L 960.486328 319.130859 L 958.998047 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 954.529297 394.199219 L 956.017578 394.199219 L 956.017578 319.130859 L 954.529297 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 950.060547 394.199219 L 951.550781 394.199219 L 951.550781 319.130859 L 950.060547 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 945.59375 394.199219 L 947.082031 394.199219 L 947.082031 319.130859 L 945.59375 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 941.125 394.199219 L 942.615234 394.199219 L 942.615234 319.130859 L 941.125 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 936.65625 394.199219 L 938.146484 394.199219 L 938.146484 319.130859 L 936.65625 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 932.1875 394.199219 L 933.677734 394.199219 L 933.677734 319.130859 L 932.1875 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 927.720703 394.199219 L 929.208984 394.199219 L 929.208984 319.130859 L 927.720703 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 923.251953 394.199219 L 924.740234 394.199219 L 924.740234 319.130859 L 923.251953 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 918.785156 394.199219 L 920.273438 394.199219 L 920.273438 319.130859 L 918.785156 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 914.316406 394.199219 L 915.804688 394.199219 L 915.804688 319.130859 L 914.316406 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 909.847656 394.199219 L 911.335938 394.199219 L 911.335938 319.130859 L 909.847656 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 905.378906 394.199219 L 906.867188 394.199219 L 906.867188 319.130859 L 905.378906 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 900.912109 394.199219 L 902.400391 394.199219 L 902.400391 319.130859 L 900.912109 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#9A5C2A;" d="M 896.443359 394.199219 L 897.931641 394.199219 L 897.931641 319.130859 L 896.443359 319.130859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FFF;" d="M 909.638672 554.951172 L 942.359375 554.951172 L 942.359375 488.113281 L 909.638672 488.113281 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#85502B;" d="M 911.662109 554.951172 L 940.003906 554.951172 L 940.003906 490.4375 L 911.662109 490.4375 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#DA8331;" d="M 1010.134766 380.146484 L 935.347656 380.146484 L 972.740234 333.138672 L 1010.134766 380.146484 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#E5AC88;" d="M 1004.791016 380.146484 L 972.740234 339.013672 L 940.689453 380.146484 L 1004.791016 380.146484 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#E5AC88;" d="M 942.669922 396.425781 L 1002.5 396.425781 L 1002.5 379.287109 L 942.669922 379.287109 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#DB8C64;" d="M 961.833984 386.486328 L 985.517578 386.486328 L 985.517578 357.351562 L 961.833984 357.351562 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FAFAFB;" d="M 963.080078 384.943359 L 983.958984 384.943359 L 983.958984 359.236328 L 963.080078 359.236328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#889DB9;" d="M 965.261719 382.716797 L 982.089844 382.716797 L 982.089844 361.466797 L 965.261719 361.466797 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 972.740234 383.058594 L 974.921875 383.058594 L 974.921875 360.779297 L 972.740234 360.779297 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#FDFDFC;" d="M 964.951172 372.947266 L 983.023438 372.947266 L 983.023438 370.548828 L 964.951172 370.548828 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 942.658203 562.255859 L 909.519531 562.255859 L 909.519531 554.632812 L 942.658203 554.632812 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 951.273438 567.427734 L 938.349609 567.427734 L 938.349609 560.267578 L 951.273438 560.267578 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 958.564453 573.457031 L 946.302734 573.457031 L 946.302734 565.919922 L 958.564453 565.919922 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 964.861328 578.734375 L 951.9375 578.734375 L 951.9375 572.326172 L 964.861328 572.326172 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 970.164062 584.388672 L 957.902344 584.388672 L 957.902344 577.605469 L 970.164062 577.605469 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 975.798828 589.287109 L 963.205078 589.287109 L 963.205078 583.257812 L 975.798828 583.257812 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#F7F6F6;" d="M 903.507812 595.916016 L 934.826172 595.916016 L 934.826172 578.435547 L 903.507812 578.435547 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#7492AC;" d="M 920.335938 592.830078 L 932.021484 592.830078 L 932.021484 581.005859 L 920.335938 581.005859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#7492AC;" d="M 906.3125 593.345703 L 917.998047 593.345703 L 917.998047 581.005859 L 906.3125 581.005859 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 982.09375 594.5625 L 969.832031 594.5625 L 969.832031 587.779297 L 982.09375 587.779297 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 989.052734 598.708984 L 975.796875 598.708984 L 975.796875 593.056641 L 989.052734 593.056641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 914.490234 598.044922 L 909.517578 598.044922 L 909.517578 561.591797 L 914.490234 561.591797 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#756B65;" d="M 937.853516 560.597656 L 937.853516 598.378906 L 980.933594 598.378906 L 937.853516 560.597656 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#816246;" d="M 878.751953 606.601562 C 878.751953 608.28125  872.714844 609.646484  865.267578 609.646484 C 857.818359 609.646484  851.78125 608.28125  851.78125 606.601562 C 851.78125 604.917969  857.818359 603.554688  865.267578 603.554688 C 872.714844 603.554688  878.751953 604.917969  878.751953 606.601562 " />
<path style="stroke-width:1.564453;stroke:none;fill:#97887D;" d="M 848.019531 540.1875 C 849.933594 545.302734  852.949219 549.789062  856.982422 552.869141 C 861.513672 556.326172  857.919922 562.472656  860.964844 567.179688 C 861.779297 568.4375  861.912109 567.923828  862.210938 569.753906 C 862.503906 571.566406  862.03125 573.458984  862.398438 575.287109 C 863.044922 578.498047  864.478516 580.382812  864.462891 583.996094 C 864.443359 588.123047  863.798828 592.751953  862.888672 596.753906 C 862.322266 599.25  861.259766 602.025391  860.998047 604.527344 C 863.255859 604.601562  865.435547 605.0625  867.650391 604.525391 C 868.144531 598.466797  866.730469 590.693359  869.119141 585.189453 C 871.3125 580.132812  867.667969 576.386719  868.447266 571.21875 C 868.892578 568.279297  871.494141 567.21875  872.380859 564.597656 C 873.191406 562.205078  872.048828 559.972656  874.355469 558.4375 C 876.572266 556.960938  878.710938 556.583984  880.896484 554.615234 C 883.177734 552.560547  884.853516 549.830078  885.662109 546.597656 C 888.410156 546.212891  891.304688 545.261719  893.359375 543.087891 C 892.566406 541.386719  887.947266 544.466797  886.402344 544.789062 C 886.111328 542.619141  887.494141 539.675781  887.861328 537.498047 C 888.396484 534.314453  889.166016 530.976562  889.345703 527.726562 C 889.492188 525.064453  888.697266 522.757812  888.103516 526.564453 C 887.806641 528.460938  887.541016 530.435547  887.3125 532.320312 C 885.650391 532.003906  885.193359 528.695312  883.416016 528.333984 C 883.205078 530.349609  884.955078 532.046875  885.679688 533.742188 C 886.441406 535.513672  886.380859 536.806641  886.166016 538.787109 C 885.898438 541.261719  884.898438 549.298828  882.419922 550.039062 C 882.347656 547.136719  881.96875 544.28125  881.878906 541.363281 C 881.798828 538.769531  882.072266 535.292969  881.150391 532.960938 C 878.285156 533.917969  882.365234 549.212891  880.396484 552.658203 C 878.269531 556.384766  871.5 555.425781  871.136719 560.154297 C 870.794922 560.261719  870.3125 560.267578  869.970703 560.154297 C 867.826172 556.404297  868.525391 550.800781  870.923828 547.445312 C 873.951172 543.212891  879.916016 536.566406  876.835938 530.351562 C 876.037109 531.767578  876.267578 533.792969  875.865234 535.503906 C 873.894531 535.931641  872.630859 533.548828  870.707031 533.857422 C 871.412109 537.169922  876.164062 536.064453  874.097656 540.115234 C 873.324219 541.634766  872.001953 542.830078  870.986328 544.023438 C 869.392578 545.892578  868.888672 546.65625  867.189453 544.269531 C 863.474609 539.048828  862.958984 529.867188  863.150391 523.425781 C 863.208984 521.509766  862.425781 519.181641  861.265625 522.201172 C 860.609375 523.908203  861.357422 527.023438  861.138672 528.837891 C 859.494141 529.332031  855.541016 523.830078  855.789062 527.513672 C 855.923828 529.53125  858.78125 530.642578  859.964844 531.552734 C 861.857422 533.011719  861.615234 534.601562  862.259766 537.048828 C 863.101562 540.248047  864.21875 542.527344  865.513672 545.414062 C 866.412109 547.414062  866.103516 548.8125  865.876953 550.982422 C 865.601562 553.625  866.039062 556.142578  866.746094 558.634766 C 867.5 561.285156  867.6875 562.65625  867.003906 565.419922 C 866.496094 567.46875  865.880859 569.388672  865.398438 571.419922 C 864.628906 570.314453  864.919922 569.152344  864.644531 567.804688 C 864.351562 566.373047  864.089844 566.246094  863.455078 565.056641 C 862.185547 562.673828  862.166016 561.060547  862.205078 558.119141 C 862.240234 555.511719  860.957031 553.613281  861.402344 550.902344 C 861.738281 548.865234  862.894531 544.421875  861.677734 542.517578 C 859.753906 539.511719  861.0625 547.097656  860.529297 548.378906 C 859.382812 551.136719  857.744141 548.128906  855.986328 547.140625 C 853.6875 545.847656  852.878906 545.664062  853 542.226562 C 853.068359 540.257812  854.583984 532.21875  851.791016 532.396484 C 851.53125 534.023438  853.298828 539.4375  851.509766 540.134766 C 849.503906 540.916016  847.841797 534.650391  847.328125 533.285156 C 846.9375 532.248047  846.333984 528.917969  845.027344 529.142578 C 843.642578 529.378906  844.732422 531.480469  844.962891 532.138672 C 845.458984 533.5625  846.460938 533.908203  845.535156 535.263672 C 844.804688 536.333984  843.023438 535.951172  842.039062 536.128906 C 840.664062 536.375  835.835938 538.607422  839.039062 538.810547 C 839.726562 538.851562  841.669922 537.402344  842.242188 537.914062 C 843.224609 538.787109  841.902344 540.753906  841.539062 541.558594 C 841.091797 542.550781  839.554688 544.621094  840.794922 545.349609 C 842.064453 546.09375  842.912109 544.076172  843.337891 543.054688 C 843.833984 541.873047  843.904297 540.070312  844.515625 539.087891 C 845.041016 538.240234  846.447266 537.685547  846.527344 537.869141 L 848.019531 540.1875 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 831.769531 491.248047 C 830.578125 491.257812  829.716797 489.306641  828.275391 490.060547 C 826.865234 490.798828  827.714844 492.517578  827.960938 493.53125 C 826.357422 493.476562  824.619141 492.085938  824.28125 494.15625 C 824.171875 494.837891  825.482422 494.767578  825.410156 495.294922 C 825.214844 496.751953  824.949219 495.865234  824.294922 496.837891 C 823.980469 497.306641  823.3125 496.9375  823.130859 497.679688 C 822.71875 499.337891  824.333984 498.587891  824.535156 499.064453 C 825.121094 500.464844  824.183594 500.949219  824.275391 502.53125 C 827.273438 502.03125  825.337891 508.101562  822.773438 504 C 822.054688 502.851562  822.462891 500.654297  820.445312 500.789062 C 818.775391 500.902344  819.107422 502.572266  818.746094 503.689453 C 817.089844 503.542969  816.521484 501.798828  814.697266 502.306641 C 814.804688 503.013672  815.126953 503.789062  815.535156 504.378906 C 814.773438 505.005859  812.648438 504.927734  812.335938 505.212891 C 811.134766 506.304688  812.628906 506.361328  812.353516 507.263672 C 812.15625 507.916016  812.8125 507.873047  812.308594 508.597656 C 812.068359 508.941406  810.664062 508.523438  810.347656 508.998047 C 809.822266 509.789062  810.267578 510.287109  811.148438 510.707031 C 811.832031 511.03125  813.322266 509.144531  813.767578 510.673828 C 814.005859 511.503906  812.09375 512.085938  812.09375 512.693359 C 812.097656 514.787109  815.285156 513.21875  815.587891 511.580078 C 818.146484 511.263672  816.472656 514.085938  816.160156 515.09375 C 815.804688 516.248047  816.804688 516.716797  815.179688 517.359375 C 813.236328 518.130859  813.287109 516.214844  812.259766 515.878906 C 811.142578 515.511719  810.158203 516.214844  809.150391 517.583984 C 808.611328 518.314453  807.898438 517.34375  808.035156 518.865234 C 808.121094 519.837891  809.451172 520.552734  810.255859 520.568359 C 811.505859 523.351562  807.734375 522.251953  807.162109 524.326172 C 806.316406 527.402344  809.144531 525.671875  810.308594 526.035156 C 812.414062 526.695312  810.847656 529.111328  812.552734 530.130859 C 814.148438 531.085938  814.849609 528.253906  816.705078 528.103516 C 817.478516 529.671875  817.146484 531.337891  819.314453 531.224609 C 820.169922 531.179688  819.552734 529.732422  820.960938 530.0625 C 822.503906 530.423828  821.955078 532.216797  822.474609 532.966797 C 823.810547 534.886719  824.861328 533.935547  826.580078 534.722656 C 827.683594 535.228516  827.914062 537.533203  829.740234 537.046875 C 830.708984 536.789062  830.228516 535.373047  831.480469 535.390625 C 832.324219 535.402344  832.617188 536.154297  833.15625 536.5625 C 833.517578 536.835938  833.736328 537.851562  834.349609 537.966797 C 835.648438 538.214844  835.191406 537.080078  835.873047 536.845703 C 837.521484 536.279297  838.873047 537.347656  840.193359 536.486328 C 842.433594 535.029297  840.521484 533.044922  840.8125 531.191406 C 841.121094 529.222656  842.902344 529.482422  843.730469 528.044922 C 844.523438 526.667969  844.103516 525.244141  844.806641 523.664062 C 847.410156 517.798828  850.660156 511.136719  852.076172 504.822266 C 852.974609 500.820312  853.611328 496.142578  852.294922 492.15625 C 850.878906 487.859375  850.9375 490.685547  848.535156 491.347656 C 845.777344 492.105469  847.101562 489.837891  846.355469 488.333984 C 845.517578 486.646484  842.789062 485.824219  843.328125 488.615234 C 840.767578 489.109375  841.140625 482.65625  838.130859 484.326172 C 836.835938 485.044922  838.898438 487.396484  837.222656 487.736328 C 835.96875 487.992188  835.755859 485.738281  834.140625 486.138672 C 833.322266 488.361328  836.201172 490.150391  835.205078 492.203125 C 833.638672 495.431641  833.304688 490.214844  832.558594 489.552734 C 832.388672 489.628906  832.265625 489.740234  832.060547 489.798828 L 831.769531 491.248047 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 853.810547 460.361328 C 853.175781 459.080078  851.990234 458.261719  850.648438 457.90625 C 849.488281 459.537109  849.945312 461.447266  850.707031 462.896484 C 848.408203 462.974609  842.917969 464.181641  847.675781 466.548828 C 847.15625 467.701172  846.091797 468.066406  844.763672 467.800781 C 844.378906 468.466797  844.220703 469.15625  844.306641 469.869141 C 848.746094 471.882812  843.9375 472.466797  843.753906 473.826172 C 843.542969 475.378906  846.003906 475.472656  846.033203 476.533203 C 846.09375 478.724609  844.320312 478.373047  843.359375 477.263672 C 842.566406 478.044922  842.373047 478.685547  842.566406 479.873047 C 843.056641 479.847656  843.6875 480.041016  844.175781 480.003906 C 844.904297 482.810547  842.214844 481.238281  841.9375 482.419922 C 841.505859 484.271484  842.517578 484.779297  842.867188 486.400391 C 838.667969 486.164062  840.923828 495.626953  845.140625 490.945312 C 846.90625 492.697266  845.742188 494.240234  846.40625 496.427734 C 847.525391 500.103516  848.191406 497.259766  850.023438 498.679688 C 852.326172 500.466797  851.017578 504.332031  850.863281 507.013672 C 850.634766 510.96875  852.095703 511.701172  853.037109 515.169922 C 857.490234 509.701172  856.427734 527.080078  859.902344 519.900391 C 861.412109 521.023438  860.876953 522.511719  861.726562 523.873047 C 863.636719 526.931641  862.455078 525.542969  865.056641 524.744141 C 865.474609 524.617188  864.714844 523.46875  865.525391 523.302734 C 866.304688 523.144531  867.587891 524.285156  867.392578 524.341797 C 868.441406 524.042969  869.486328 524.666016  869.982422 522.644531 C 870.976562 522.931641  871.322266 522.412109  872.177734 523.287109 C 873.939453 521.775391  872.740234 520.427734  873.388672 518.654297 C 874.15625 516.554688  875.3125 517.074219  876.125 515.269531 C 877.095703 513.121094  875.191406 512.742188  875.640625 510.824219 C 876.113281 508.810547  878.654297 508.289062  878.539062 506.111328 C 877.472656 505.730469  876.464844 505.101562  875.607422 504.300781 C 876.316406 503.111328  880.691406 498.261719  876.052734 499.013672 C 877.486328 494.601562  874.957031 494.505859  874.681641 491.271484 C 874.503906 489.195312  877.251953 488.660156  874.255859 487.771484 C 872.681641 487.302734  871.066406 488.494141  870.353516 489.59375 C 868.544922 488.210938  870.226562 482.587891  866.839844 485.550781 C 865.03125 483.857422  868.671875 479.683594  864.751953 480.306641 C 863.644531 476.78125  867.443359 477.599609  868.625 479.349609 C 870.193359 472.306641  872.759766 481.888672  873.298828 476.119141 C 873.330078 475.804688  872.138672 474.599609  872.169922 474.185547 C 872.25 473.175781  873.677734 472.431641  873.710938 471.576172 C 873.8125 469.003906  873.123047 469.498047  870.396484 468.900391 C 871.136719 464.685547  870.640625 465.390625  866.492188 465.082031 C 866.449219 463.849609  866.402344 462.541016  866.361328 461.308594 C 864.748047 460.357422  863.585938 461.240234  863.03125 462.503906 C 862.410156 460.271484  861.509766 456.244141  859.117188 459.457031 C 859.058594 458.185547  858.910156 456.869141  858.521484 455.628906 C 856.976562 454.275391  855.302734 454.589844  855.146484 456.847656 C 854.287109 456.279297  853.152344 455.386719  852.476562 454.75 C 851.541016 455.478516  852.490234 455.261719  852.505859 455.576172 L 853.810547 460.361328 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 825.099609 532.357422 C 823.21875 531.464844  822.601562 531.771484  822.208984 533.228516 C 822.042969 533.84375  823.128906 533.775391  822.324219 534.548828 C 821.783203 535.070312  821.3125 534.431641  820.708984 534.517578 C 818.558594 534.822266  818.945312 535.400391  819.445312 536.755859 C 820.175781 538.736328  820.220703 537.576172  818.523438 538.921875 C 817.177734 539.986328  817.396484 541.757812  819.439453 541.449219 C 820.638672 541.267578  820.962891 539.748047  822.048828 540.498047 C 823.121094 541.238281  821.769531 543.222656  823.578125 542.808594 C 825.193359 542.4375  824.384766 540.765625  824.251953 539.726562 C 827.023438 538.208984  825.083984 542.884766  827.5 542.8125 C 828.283203 542.791016  829.554688 541.1875  829.677734 543.402344 C 829.769531 545.09375  828.171875 544.990234  827.111328 544.972656 C 825.541016 544.947266  825.074219 544.404297  824.919922 546.277344 C 824.804688 547.703125  826.34375 548.511719  824.023438 547.582031 C 823.148438 547.232422  820.884766 545.341797  820.513672 547.572266 C 820.181641 549.574219  822.818359 548.667969  821.353516 550.6875 C 820.880859 551.339844  818.210938 552.292969  819.255859 553.847656 C 820.585938 555.830078  821.802734 552.25  822.828125 552.289062 C 824.71875 552.361328  823.177734 554.738281  823.714844 555.646484 C 825.160156 558.083984  825.777344 554.242188  826.193359 553.707031 C 828 551.384766  827.958984 558.84375  830.314453 553.800781 C 830.724609 552.923828  830.921875 551.324219  832.005859 552.628906 C 832.880859 553.685547  830.927734 555.498047  832.273438 556.302734 C 833.283203 556.904297  833.957031 554.998047  834.673828 555.154297 C 836.164062 555.478516  834.988281 557.544922  835.53125 558.261719 C 837.099609 560.339844  837.277344 555.851562  838.378906 555.654297 C 838.755859 556.623047  839.630859 557.486328  840.548828 556.726562 C 841.933594 555.580078  839.691406 554.714844  840.755859 553.681641 C 842.412109 552.074219  843.583984 558.494141  844.910156 554.560547 C 845.490234 552.833984  844.527344 552.966797  845.785156 551.6875 C 846.449219 551.011719  848.90625 548.548828  846.4375 547.769531 C 845.570312 547.496094  844.152344 549.6875  844.009766 547.535156 C 843.947266 546.589844  846.412109 545.363281  844.675781 544.576172 C 843.650391 544.113281  842.865234 546.039062  841.998047 545.205078 C 841.232422 544.46875  842.951172 542.449219  840.990234 542.130859 C 839.701172 541.921875  839.412109 544.501953  838.134766 542.851562 C 837.255859 541.710938  838.804688 541.130859  839.0625 540.164062 C 839.410156 538.869141  838.511719 539.583984  838.304688 538.458984 C 838.09375 537.294922  839.8125 536.271484  838.552734 534.800781 C 836.794922 532.748047  835.958984 535.71875  834.496094 535.205078 C 833.009766 534.681641  833.705078 531.863281  832.072266 531.675781 C 829.822266 531.417969  830.765625 534.527344  829.222656 531.910156 C 828.6875 531.001953  828.759766 529.613281  827.058594 529.964844 L 825.099609 532.357422 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 841.414062 524.744141 C 841.978516 527.576172  842.044922 525.875  843.816406 526.916016 C 845.263672 527.765625  844.431641 527.972656  843.806641 529.037109 C 843.337891 529.837891  842.208984 531.033203  843.630859 531.503906 C 845.205078 532.025391  845.361328 529.375  846.638672 529.902344 C 847.572266 530.289062  846.744141 532.091797  847.933594 532.324219 C 849.345703 532.597656  849.277344 529.597656  850.341797 531.525391 C 850.839844 532.431641  849.673828 534.296875  850.527344 534.982422 C 852.097656 536.244141  852.628906 533.523438  853.541016 533.21875 C 855.238281 532.650391  854.253906 534.095703  855.052734 534.753906 C 856.181641 535.681641  857.375 534.744141  857.089844 533.228516 C 856.847656 531.947266  855.009766 531.703125  854.726562 530.785156 C 854.263672 529.294922  856.259766 529.669922  856.871094 528.623047 C 857.990234 526.710938  853.693359 522.882812  857.568359 523.412109 C 857.986328 523.46875  857.621094 524.556641  858.595703 524.289062 C 859.183594 524.125  859.478516 522.591797  859.695312 522.173828 C 860.578125 520.474609  860.669922 520.126953  862.076172 521.439453 C 863.691406 522.947266  863.943359 523.646484  866.003906 522.371094 C 867.375 523.851562  866.603516 524.445312  866.205078 525.875 C 865.580078 528.121094  867.357422 527.904297  867.769531 526.078125 C 870.267578 525.974609  868.253906 528.259766  868.199219 529.09375 C 868.03125 531.660156  870.011719 529.03125  870.53125 530.613281 C 871.169922 532.5625  866.498047 531.837891  865.802734 533.240234 C 864.523438 535.820312  867.701172 534.945312  868.839844 534.056641 C 870.085938 535.382812  868.042969 537.474609  869.244141 538.408203 C 871.826172 540.412109  871.152344 534.199219  871.691406 533.648438 C 872.875 532.439453  874.738281 534.550781  874.701172 531.320312 C 874.6875 530.021484  873.771484 527.273438  876.416016 528.035156 C 876.359375 528.748047  875.503906 530.847656  876.029297 531.496094 C 877.048828 532.75  877.529297 530.570312  878.339844 530.201172 C 879.753906 531.5625  877.427734 534.111328  878.771484 534.982422 C 879.826172 535.666016  879.580078 534.087891  880.298828 533.640625 C 881.267578 533.039062  881.367188 533.730469  882.294922 533.613281 C 885.382812 533.220703  883.287109 530.917969  883.798828 529.052734 C 884.003906 528.302734  886.972656 522.375  882.949219 524.240234 C 881.923828 523.316406  883.09375 521.085938  883.441406 519.992188 C 883.617188 519.439453  884.228516 519.117188  884.048828 518.251953 C 883.869141 517.394531  883.607422 517.796875  883.169922 517.1875 C 882.753906 516.611328  882.287109 517.111328  882.068359 516.205078 C 881.916016 515.591797  882.621094 514.492188  882.742188 513.869141 C 883.291016 511.048828  881.107422 509.958984  878.871094 508.818359 C 877.537109 508.138672  876.875 507.753906  875.351562 507.599609 C 873.5 507.410156  872.623047 507.746094  871.142578 506.222656 C 869.953125 505  869.185547 503.591797  867.898438 502.396484 C 865.976562 500.613281  864.552734 500.205078  862.064453 499.412109 C 858.054688 498.136719  851.832031 495.78125  847.853516 498.404297 C 846.369141 499.384766  843.9375 501.498047  842.960938 502.925781 C 842.277344 503.927734  842.03125 505.03125  841.167969 505.990234 C 840.925781 505.998047  841.007812 505.876953  840.759766 505.822266 L 841.414062 524.744141 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 871.646484 472.107422 C 868.820312 473.257812  871.580078 475.150391  872.037109 476.486328 C 872.875 478.9375  870.423828 478.65625  869.941406 480.417969 C 869.308594 482.71875  871.28125 482.216797  872.298828 482.597656 C 874.191406 483.306641  872.923828 483.388672  873.191406 485.347656 C 874.943359 486.164062  876.177734 483.978516  877.041016 486.083984 C 877.580078 487.400391  876.923828 489.257812  878.642578 489.912109 C 878.025391 491.605469  875.6875 493.623047  878.166016 494.509766 C 879.027344 494.816406  879.310547 493.826172  879.980469 494.708984 C 880.566406 495.482422  879.478516 496.751953  879.558594 497.519531 C 880.630859 497.554688  881.033203 498.546875  880.589844 499.458984 C 879.646484 501.400391  879.162109 499.443359  878.171875 499.558594 C 875.898438 499.824219  877.201172 501.136719  877.285156 502.533203 C 875.869141 502.441406  873.775391 503.224609  873.857422 504.957031 C 873.947266 506.886719  875.792969 505.882812  876.277344 507.498047 C 876.726562 508.994141  874.962891 510.257812  875.759766 512.085938 C 876.302734 513.332031  877.009766 512.986328  877.796875 513.691406 C 878.826172 514.615234  879.03125 515.150391  879.263672 516.708984 C 879.529297 518.5  879.287109 519.359375  880.177734 520.867188 C 880.78125 521.888672  881.683594 523.806641  882.902344 524.167969 C 884.033203 524.5  885.179688 523.144531  886.207031 523.419922 C 887.9375 523.882812  886.673828 525.685547  886.677734 526.892578 C 887.238281 526.841797  889.054688 525.841797  889.482422 526.025391 C 890.566406 526.498047  890.089844 528.476562  890.162109 529.464844 C 892.080078 530.298828  893.376953 529.169922  893.580078 527.169922 C 893.701172 525.998047  893.433594 523.001953  895.757812 524.685547 C 898.205078 522.919922  895.335938 521.070312  895.773438 519.470703 C 896.009766 518.609375  897.203125 518.460938  897.328125 517.355469 C 897.441406 516.353516  896.921875 515.326172  895.833984 515.806641 C 895.234375 514.935547  896.263672 512.943359  897.361328 513.039062 C 899.076172 513.189453  897.542969 516.318359  899.5 516.476562 C 900.333984 515.501953  899.957031 513.160156  901.277344 513.621094 C 901.828125 513.814453  903.929688 517.183594  904.076172 514.097656 C 904.152344 512.462891  902.611328 512.65625  903.398438 510.976562 C 903.695312 510.341797  905.847656 509.056641  904.292969 507.802734 C 903.128906 506.861328  902.099609 508.931641  901.703125 506.972656 C 901.472656 505.837891  903.919922 503.013672  901.179688 502.763672 C 899.787109 502.636719  899.601562 505.320312  898.488281 504.271484 C 897.486328 503.326172  898.986328 501.121094  897.919922 499.951172 C 896.162109 498.019531  896.28125 500.357422  895.576172 501.003906 C 895.224609 501.326172  894.714844 501.873047  894.017578 501.449219 C 893.009766 500.833984  894.132812 500.09375  893.804688 499.296875 C 893.056641 497.490234  890.982422 497.486328  889.945312 498.814453 C 889.416016 499.490234  889.822266 500.15625  888.845703 500.574219 C 887.607422 501.101562  887.230469 500.298828  886.880859 499.574219 C 886.445312 498.669922  886.240234 496.466797  886.53125 495.59375 C 886.939453 494.371094  888.892578 493.552734  888.626953 492.070312 C 888.402344 490.814453  886.589844 490.894531  886.416016 489.681641 C 886.226562 488.359375  887.873047 487.964844  888.236328 486.914062 C 888.916016 484.945312  886.910156 485.142578  886.693359 483.804688 C 886.4375 482.216797  888.697266 481.542969  886.208984 481.021484 C 885.726562 480.919922  885.09375 481.740234  884.681641 481.433594 C 884.113281 481.009766  884.677734 480.066406  884.648438 479.558594 C 884.548828 477.705078  883.986328 477.257812  882.787109 479.119141 C 881.910156 480.480469  880.814453 482.136719  881.158203 479.302734 C 881.273438 478.361328  881.880859 477.912109  881.232422 477.269531 C 880.412109 476.458984  880.03125 477.324219  879.478516 477.376953 C 878.787109 477.441406  878.966797 478.529297  878.167969 477.554688 C 877.505859 476.746094  878.433594 476.15625  878.394531 475.367188 C 878.324219 473.951172  877.275391 473.177734  876.142578 474.697266 C 875.986328 474.681641  875.474609 474.556641  875.322266 474.490234 C 874.837891 473.181641  875.259766 473.09375  874.246094 472.103516 C 873.716797 471.587891  872.990234 471.263672  872.298828 471.021484 L 871.646484 472.107422 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 859.466797 536.056641 C 858.660156 535.501953  856.554688 535.207031  856.396484 536.708984 C 856.251953 538.070312  858.130859 536.902344  856.806641 538.447266 C 856.244141 539.105469  854.242188 539.248047  854.650391 540.753906 C 855.017578 542.111328  856.064453 540.810547  857.044922 541.125 C 857.115234 541.480469  855.285156 547.5  857.958984 544.716797 C 858.375 544.283203  857.875 542.623047  858.988281 543.060547 C 859.611328 543.306641  858.974609 544.4375  859.673828 544.820312 C 861.798828 545.980469  860.548828 541.75  862.457031 543.228516 C 862.974609 543.628906  862.746094 544.748047  863.371094 544.988281 C 864.748047 545.521484  864.728516 544.033203  864.908203 543.228516 C 865.056641 542.560547  864.259766 541.9375  865.169922 541.53125 C 865.857422 541.226562  866.09375 542.388672  866.861328 542.166016 C 867.728516 541.914062  868.080078 540.472656  867.470703 539.789062 C 866.996094 539.255859  866 540  865.322266 539.539062 C 864.103516 538.710938  866.464844 535.867188  864.039062 536.070312 C 861.666016 536.271484  863.8125 540.757812  860.365234 539.279297 C 860.162109 538.115234  862.023438 535.373047  860.119141 534.96875 L 859.466797 536.056641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 895.572266 530.619141 C 895.085938 530.472656  893.388672 530.070312  892.923828 530.597656 C 892.509766 531.066406  893.019531 531.802734  892.957031 531.970703 C 892.746094 532.529297  893.552734 532.359375  892.580078 533.025391 C 892.195312 533.291016  891.455078 532.808594  890.994141 533.164062 C 889.166016 534.578125  891.351562 534.833984  891.667969 535.556641 C 892.492188 537.435547  890.810547 536.298828  889.865234 536.958984 C 888.404297 537.976562  889.492188 538.302734  890.128906 539.107422 C 890.414062 539.466797  891.152344 539.080078  891.1875 539.966797 C 891.232422 541.044922  890.015625 540.720703  889.701172 541.101562 C 889.09375 541.839844  888.410156 542.789062  890.166016 542.824219 C 891.003906 542.841797  892.830078 540.794922  893.195312 542.576172 C 893.416016 543.652344  891.427734 544.271484  891.425781 545.359375 C 891.425781 547.515625  893.396484 546.136719  893.847656 546.525391 C 895.089844 547.587891  893.074219 549.123047  892.888672 549.970703 C 892.376953 552.333984  894.777344 552.650391  895.794922 550.869141 C 895.939453 550.615234  896.201172 548.669922  896.648438 548.591797 C 897.583984 548.427734  896.994141 548.994141  897.585938 549.371094 C 898.033203 549.65625  897.939453 550.650391  898.960938 550.376953 C 899.955078 550.109375  899.498047 548.861328  899.869141 548.220703 C 900.263672 547.539062  899.919922 547.216797  901.015625 547.357422 C 901.986328 547.482422  901.404297 548.226562  902.076172 548.46875 C 904.648438 549.394531  903.208984 547.039062  903.550781 546.0625 C 903.755859 545.472656  903.669922 545.123047  904.490234 544.984375 C 905.025391 545.634766  906.085938 547.945312  907.046875 547.78125 C 908.716797 547.503906  907.634766 545.146484  907.785156 544.136719 C 908.736328 544.007812  909.669922 544.523438  910.537109 544.117188 C 911.59375 543.623047  912.222656 541.878906  911.140625 541.091797 C 910.447266 540.587891  908.382812 541.710938  907.976562 540.476562 C 907.611328 539.361328  909.794922 539.123047  909.669922 538.013672 C 909.353516 535.164062  905.378906 539.648438  904.894531 536.548828 C 904.748047 535.611328  906.361328 534.802734  905.59375 533.917969 C 905.160156 533.419922  903.617188 533.779297  903.001953 533.642578 C 902.777344 532.611328  903.365234 532.035156  904.285156 531.75 C 905.720703 531.304688  905.642578 532.146484  906.496094 532.798828 C 909.304688 534.9375  908.53125 531.902344  909.490234 530.564453 C 910.052734 529.779297  911.480469 530.261719  911.251953 528.597656 C 910.990234 526.685547  909.611328 527.576172  908.839844 527.785156 C 907.722656 528.085938  907.005859 529.267578  906.044922 527.806641 C 905.615234 527.152344  906.310547 525.199219  904.431641 525.226562 C 902.763672 525.248047  904.130859 526.111328  903.652344 526.701172 C 902.273438 528.400391  901.761719 526.257812  901.240234 525.392578 C 900.755859 524.591797  899.708984 523.138672  898.816406 524.572266 C 898.308594 525.382812  899.441406 526.369141  898.361328 526.941406 C 897.59375 527.347656  896.576172 526.1875  896.003906 526.513672 C 894.951172 527.111328  895.830078 528.083984  896.226562 528.669922 C 896.710938 529.390625  898.128906 529.806641  898.148438 530.9375 C 898.167969 531.8125  897.710938 532.494141  897.095703 531.705078 L 895.572266 530.619141 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 893.179688 482.330078 C 891.617188 482.761719  890.275391 482.433594  890.765625 484.46875 C 890.884766 484.960938  891.910156 484.880859  891.677734 485.816406 C 891.412109 486.882812  890.615234 486.033203  890.130859 486.449219 C 888.966797 487.445312  889.060547 487.958984  890.134766 488.654297 C 890.625 488.970703  891.111328 487.945312  891.628906 488.847656 C 892.115234 489.693359  890.927734 490.361328  890.5625 490.824219 C 890.003906 491.541016  888.369141 492.771484  890.580078 492.992188 C 891.828125 493.117188  893.212891 491.013672  893.40625 493.382812 C 893.5 494.53125  891.613281 495.341797  893.169922 496.447266 C 894.107422 497.113281  896.240234 495.566406  895.550781 497.9375 C 895.09375 499.511719  892.486328 499.207031  892.513672 501.052734 C 892.539062 502.935547  894.3125 502.318359  895.289062 501.498047 C 896.375 500.587891  896.888672 497.654297  898.308594 497.808594 C 898.896484 497.873047  899.458984 500.751953  900.818359 498.708984 C 901.919922 497.056641  899.171875 496.638672  899.523438 495.208984 C 900.125 492.761719  901.552734 495.525391  902.085938 495.667969 C 903.839844 496.136719  902.839844 493.367188  904.054688 493.605469 C 905.908203 493.96875  903.996094 496.298828  903.625 496.734375 C 902.785156 497.724609  901.755859 498.25  902.519531 499.501953 C 903.433594 501.001953  904.621094 500.412109  905.326172 499.248047 C 905.832031 498.419922  904.955078 497.423828  906.4375 497.091797 C 907.652344 496.818359  908.724609 498.962891  909.0625 496.644531 C 909.478516 493.787109  904.865234 495.429688  907.53125 491.894531 C 908.285156 490.894531  909.398438 490.373047  907.535156 489.283203 C 905.607422 488.154297  905.525391 490.833984  903.986328 490.306641 C 902.849609 489.917969  905.580078 483.357422  901.482422 486.236328 C 900.771484 486.736328  901.070312 488.703125  899.417969 487.566406 C 897.8125 486.462891  899.943359 485.587891  899.943359 484.517578 C 899.939453 480.810547  896.242188 486.289062  896.041016 483.482422 C 895.970703 482.515625  897.460938 481.542969  896.013672 480.636719 C 895.267578 480.169922  894.398438 480.589844  894.267578 481.027344 L 893.179688 482.330078 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 879.912109 546.931641 C 879.201172 545.830078  876.9375 544.894531  876.847656 546.876953 C 876.775391 548.425781  878.947266 547.345703  877.027344 548.669922 C 876.158203 549.271484  873.574219 548.878906  873.808594 550.681641 C 874.089844 552.847656  876.203125 550.1875  877.099609 550.820312 C 878.091797 551.515625  876.503906 552.359375  877.277344 553.193359 C 878.412109 554.419922  879.267578 551.75  880.349609 552.173828 C 881.433594 552.595703  879.78125 555.144531  880.777344 556.080078 C 882.117188 557.337891  882.585938 555.71875  883.222656 554.785156 C 883.625 554.898438  885.855469 559.828125  886.419922 556.335938 C 886.603516 555.201172  884.791016 554.71875  884.996094 553.667969 C 885.171875 552.777344  887.0625 552.935547  887.273438 551.763672 C 887.796875 548.880859  883.908203 552.830078  883.865234 549.816406 C 883.853516 548.941406  885.189453 547.919922  883.84375 547.181641 C 883.130859 546.792969  881.945312 547.632812  881.298828 547.777344 C 881.607422 546.8125  882.083984 544.041016  880.78125 544.539062 L 879.912109 546.931641 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 833.583984 477.328125 C 832.728516 476.693359  831.285156 476.626953  830.958984 477.806641 C 830.474609 479.556641  832.09375 478.644531  832.728516 479.330078 C 834.199219 480.916016  829.402344 482.302734  831.4375 483.382812 C 832.951172 484.1875  833.259766 481.910156  834.1875 481.707031 C 835.740234 481.367188  834.708984 482.111328  835.318359 482.982422 C 837.035156 485.431641  836.335938 482.228516  837.951172 481.910156 C 838.339844 482.78125  837.634766 486.009766  839.242188 485.560547 C 840.384766 485.240234  840.003906 482.503906  839.912109 481.710938 C 840.927734 481.8125  842.490234 481.400391  842.09375 479.986328 C 841.554688 478.074219  839.289062 480.025391  838.615234 478.878906 C 837.9375 477.728516  840.933594 476.212891  839.634766 474.916016 C 838.585938 473.869141  837.472656 475.964844  836.443359 476 C 836.53125 474.726562  835.009766 470.441406  833.84375 473.148438 C 833.431641 474.109375  834.460938 476.59375  834.453125 477.544922 L 833.583984 477.328125 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#83AF40;" d="M 885.130859 472.107422 C 882.919922 469.730469  880.873047 472.011719  883.169922 472.978516 C 882.816406 474.011719  876.878906 474.402344  880.619141 475.59375 C 881.203125 475.779297  883.052734 475.152344  883.365234 476.013672 C 883.664062 476.84375  881.857422 477.548828  881.658203 478.425781 C 882.558594 478.787109  883.208984 478.556641  884.103516 478.433594 C 885.613281 478.226562  884.818359 477.761719  885.78125 478.839844 C 886.341797 479.470703  886.244141 480.882812  887.763672 479.96875 C 888.699219 479.40625  887.964844 477.8125  889.451172 477.775391 C 890.134766 479.035156  888.798828 480.976562  889.533203 482.025391 C 890.535156 483.455078  891.712891 480.960938  891.689453 479.966797 C 892.345703 479.828125  892.845703 480.080078  893.158203 480.638672 C 894.089844 480.210938  894.757812 478.664062  894.287109 477.736328 C 893.962891 477.095703  892.300781 476.935547  892.121094 476.029297 C 891.8125 474.458984  895.435547 473.40625  892.744141 472.484375 C 891.820312 472.169922  891.117188 473.115234  890.183594 472.763672 C 888.775391 472.236328  890.189453 471.552734  889.705078 470.353516 C 888.572266 467.556641  887.509766 471.9375  887.048828 472.736328 C 886.916016 472.816406  886.783203 472.818359  886.644531 472.744141 C 886.208984 471.839844  886.443359 470.732422  885.742188 469.960938 C 885.576172 469.923828  885.443359 469.986328  885.349609 470.150391 L 885.130859 472.107422 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#30250D;" d="M 504.716797 580.980469 C 504.089844 578.859375  505.277344 577.435547  505.054688 575.457031 C 504.958984 574.591797  504.556641 573.919922  504.550781 572.980469 C 504.544922 571.929688  504.787109 570.960938  504.720703 569.902344 C 504.625 568.351562  503.748047 567.478516  503.851562 565.900391 C 503.974609 564.039062  503.763672 563.238281  501.863281 562.417969 C 500.40625 561.787109  499.054688 561.607422  498.048828 560.275391 C 497.642578 559.742188  497.414062 558.810547  496.9375 558.441406 C 496.429688 558.048828  495.658203 558.15625  495.097656 557.744141 C 494.816406 557.539062  493.923828 556.775391  494.142578 556.324219 C 494.626953 555.324219  495.236328 556.994141  495.470703 557.123047 C 497.835938 558.435547  496.222656 555.164062  496.880859 554.583984 C 497.128906 554.365234  497.476562 554.503906  497.728516 554.662109 C 498.041016 557.435547  497.679688 559.539062  500.736328 560.748047 C 501.878906 559.845703  501.330078 557.777344  502.5625 556.689453 C 503.40625 557.601562  502.382812 558.810547  502.232422 559.769531 C 502.025391 561.082031  502.394531 561.289062  503.556641 561.896484 C 504.642578 562.464844  504.884766 562.480469  505.214844 563.917969 C 505.396484 564.708984  505.052734 566.451172  505.867188 566.878906 C 507.513672 565.65625  507.923828 563.160156  508.039062 561.263672 C 508.175781 559.044922  506.458984 554.865234  507.910156 552.990234 C 509.136719 553.695312  507.847656 559.574219  510.183594 555.294922 C 510.419922 554.867188  511.666016 552.132812  512.013672 553.636719 C 512.15625 554.248047  510.757812 556.681641  510.351562 557.289062 C 509.552734 558.476562  509.017578 558.558594  509.025391 560.097656 C 509.027344 560.664062  508.591797 563.525391  508.976562 563.794922 C 509.736328 564.328125  511.738281 562.132812  512.21875 561.628906 C 512.845703 560.972656  513.947266 558.705078  514.798828 558.802734 C 515.046875 559.705078  514.271484 560.40625  514.183594 561.236328 C 515.460938 561.513672  516.785156 560.173828  517.947266 560.328125 C 518.273438 562.066406  515.054688 562.306641  513.992188 562.578125 C 512.416016 562.982422  510.472656 564.142578  509.228516 565.076172 C 508.210938 565.841797  507.238281 567.607422  506.867188 568.875 C 506.589844 569.822266  506.871094 570.326172  506.871094 571.365234 C 506.869141 572.285156  506.449219 573.294922  506.859375 574.171875 C 508.587891 573.445312  508.617188 570.285156  510.494141 569.900391 C 510.419922 572.091797  507.869141 573.939453  507.492188 576.253906 C 507.068359 578.865234  508.583984 581.6875  505.4375 582.611328 C 505.558594 582.550781  505.597656 582.417969  505.710938 582.306641 L 504.716797 580.980469 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#CA8B2E;" d="M 498.751953 580.316406 L 500.740234 599.869141 L 512.007812 599.869141 L 513.664062 580.316406 L 498.751953 580.316406 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#B0D241;" d="M 496.099609 538.230469 C 496.302734 537.585938  495.947266 534.851562  494.857422 534.982422 C 493.955078 535.09375  494.253906 537.330078  494.21875 537.9375 C 493.746094 537.816406  492.824219 537.132812  492.365234 537.599609 C 491.845703 538.123047  492.757812 538.900391  492.724609 539.453125 C 492.158203 539.414062  491.527344 539.585938  491.402344 540.214844 C 491.25 540.998047  492.009766 541.142578  492.5 541.556641 C 493.736328 542.607422  492.222656 543.601562  491.123047 542.488281 C 490.431641 541.789062  490.1875 540.654297  489.554688 539.984375 C 488.929688 539.326172  487.982422 539.353516  488.013672 540.375 C 488.033203 541.013672  489.134766 541.558594  488.900391 542.208984 C 488.675781 542.832031  487.279297 542.136719  487.048828 542.951172 C 486.773438 543.923828  488.244141 543.517578  488.529297 543.6875 C 489.539062 544.291016  488.619141 544.412109  488.544922 545.181641 C 488.464844 546.025391  488.945312 546.263672  489.640625 546.039062 C 490.173828 545.869141  490.394531 544.833984  490.857422 546.052734 C 491.146484 546.816406  490.533203 547.626953  489.892578 547.955078 C 488.642578 548.599609  488.369141 547.244141  487.525391 546.552734 C 487.0625 546.173828  486.070312 545.378906  485.494141 546.052734 C 484.761719 546.914062  486.091797 547.777344  486.291016 548.320312 C 486.738281 549.533203  485.365234 548.958984  484.570312 549.412109 C 483.609375 549.958984  483.552734 550.835938  484.546875 551.28125 C 485.492188 551.705078  485.833984 551.09375  486.005859 552.279297 C 486.109375 552.982422  485.623047 553.953125  486.902344 553.494141 C 487.423828 553.306641  487.916016 552.056641  488.306641 553.416016 C 488.691406 554.746094  487.212891 554.392578  486.535156 554.556641 C 485.740234 554.748047  484.332031 555.607422  484.6875 556.587891 C 485.001953 557.460938  486.130859 557.347656  486.78125 557.003906 C 487.126953 557.552734  485.728516 560.517578  487.408203 560.089844 C 488.097656 559.914062  488.240234 557.390625  489.273438 558.353516 C 489.759766 558.806641  489.097656 559.642578  488.982422 560.101562 C 488.791016 560.865234  488.724609 561.958984  489.142578 562.587891 C 490.359375 564.433594  490.408203 561.451172  491.005859 560.943359 C 491.824219 561.552734  491.46875 561.724609  491.896484 562.548828 C 492.146484 563.029297  492.84375 563.582031  493.365234 563.310547 C 495.142578 562.380859  492.5625 560.251953  492.884766 559.478516 C 493.101562 558.955078  493.753906 559.404297  494.111328 559.240234 C 494.619141 559.007812  494.964844 558.164062  495.017578 557.609375 C 495.089844 556.859375  494.130859 554.660156  494.976562 554.099609 C 495.451172 553.785156  495.755859 554.435547  496.103516 554.226562 C 496.740234 553.841797  496.199219 552.59375  496.6875 552.142578 C 497.714844 551.191406  497.380859 553.525391  497.101562 554.011719 C 496.779297 554.570312  495.056641 556.285156  496.349609 556.654297 C 497.609375 557.015625  497.322266 554.669922  498.318359 554.775391 C 498.384766 555.123047  498.244141 556.462891  498.353516 556.623047 C 498.9375 557.494141  499.816406 556.355469  500.066406 555.886719 C 500.408203 555.248047  500.162109 554.570312  500.941406 555.255859 C 501.677734 555.904297  501.171875 556.332031  500.826172 556.966797 C 500.625 557.337891  499.865234 558.107422  500.568359 558.46875 C 501.212891 558.798828  501.992188 557.416016  502.339844 557.119141 C 503.806641 555.865234  504.320312 557.707031  503.5625 558.761719 C 503.138672 559.355469  502.246094 559.472656  502.560547 560.482422 C 502.806641 561.273438  503.552734 561.1875  504.082031 560.814453 C 504.908203 560.232422  504.642578 559.601562  505.808594 559.748047 C 506.228516 559.798828  507.111328 560.677734  507.302734 559.361328 C 507.433594 558.455078  506.097656 558.185547  505.785156 557.5 C 505.271484 556.371094  506.162109 555.826172  506.666016 555.005859 C 507.140625 554.236328  507.089844 553.740234  506.417969 553.044922 C 505.785156 552.392578  504.582031 552.625  504.197266 551.806641 C 503.662109 550.658203  505.259766 550.28125  505.15625 549.511719 C 504.986328 548.240234  503.369141 549.587891  502.960938 548.896484 C 502.380859 547.916016  504.335938 546.691406  504.068359 545.683594 C 503.75 544.476562  502.052734 545.583984  501.65625 544.445312 C 501.296875 543.410156  502.958984 542.701172  502.693359 541.675781 C 502.326172 540.240234  500.787109 541.763672  500.166016 540.873047 C 499.539062 539.972656  501.027344 538.640625  500.679688 537.636719 C 500.173828 536.175781  499.037109 537.363281  498.458984 538.003906 C 497.552734 537.455078  498.884766 536.275391  497.808594 535.632812 C 496.177734 535.943359  497.792969 539.210938  496.099609 539.84375 L 496.099609 538.230469 Z " />
<path style="stroke-width:1.564453;stroke:none;fill:#B0D241;" d="M 506.912109 529.529297 C 506.392578 529.337891  505.4375 528.201172  504.791016 528.896484 C 504.333984 529.388672  505.25 530.373047  504.808594 530.685547 C 504.347656 531.009766  503.630859 529.720703  502.933594 530.009766 C 501.662109 530.535156  503.207031 531.294922  503.291016 531.851562 C 503.501953 533.271484  502.099609 532.167969  501.324219 532.373047 C 499.849609 532.763672  500.755859 533.546875  501.318359 534.03125 C 501.513672 534.199219  501.955078 534.294922  501.986328 534.623047 C 502.048828 535.248047  501.617188 534.923828  501.353516 535.123047 C 501.046875 535.351562  500.761719 534.923828  500.628906 535.496094 C 500.5625 535.773438  500.970703 536.369141  501.193359 536.472656 C 502.035156 536.875  502.365234 535.867188  502.941406 535.638672 C 503.792969 535.298828  504.332031 535.982422  503.683594 536.845703 C 503.259766 537.410156  502.558594 537.033203  502.802734 538.013672 C 502.96875 538.683594  504.111328 538.921875  503.1875 539.722656 C 502.171875 540.601562  502.267578 539.302734  501.820312 538.837891 C 501.259766 538.257812  500.398438 538.451172  499.810547 538.839844 C 498.777344 539.519531  498.361328 540.810547  498.912109 541.966797 C 499.40625 542.996094  500.486328 542.994141  500.330078 544.332031 C 500.263672 544.910156  499.716797 545.464844  499.689453 546.048828 C 499.634766 547.253906  500.5625 547.873047  501.355469 548.552734 C 502.107422 549.199219  502.59375 549.669922  502.421875 550.791016 C 502.279297 551.720703  501.681641 552.291016  502.056641 553.275391 C 502.513672 554.472656  503.755859 555.369141  504.914062 555.230469 C 505.658203 555.142578  505.804688 554.966797  506.417969 554.603516 C 506.849609 554.347656  507.117188 553.855469  507.568359 554.376953 C 508.013672 554.888672  506.6875 557.330078  508.257812 556.757812 C 509.28125 556.384766  508.666016 553.753906  509.986328 553.869141 C 510.488281 553.914062  510.478516 554.773438  511.402344 554.525391 C 511.648438 554.458984  511.875 553.574219  512.361328 554.125 C 512.984375 554.828125  511.257812 556.160156  511.554688 556.978516 C 511.853516 556.955078  513.085938 557.013672  513.253906 557.128906 C 514.089844 557.695312  513.660156 557.980469  513.25 558.519531 C 512.960938 558.902344  512.302734 559.074219  512.492188 559.728516 C 512.736328 560.552734  513.822266 560.066406  514.480469 560.447266 C 514.742188 559.904297  515.453125 559.353516  515.958984 560 C 516.28125 560.410156  515.935547 561.042969  515.873047 561.480469 C 517.068359 562.011719  517.898438 561.03125  517.474609 562.984375 C 517.371094 563.46875  516.863281 564.753906  517.849609 564.841797 C 518.724609 564.919922  518.580078 563.427734  519.361328 563.322266 C 520.169922 563.210938  519.933594 564.080078  520.613281 564.210938 C 521.646484 564.410156  521.746094 563.064453  521.455078 562.433594 C 521.220703 561.925781  520.28125 561.501953  520.822266 560.832031 C 521.335938 560.199219  522.027344 560.947266  522.455078 561.1875 C 523.486328 560.066406  521.765625 559.78125  521.378906 559.232422 C 520.675781 558.242188  522.027344 557.384766  522.480469 558.476562 C 522.835938 558.132812  523.289062 557.216797  523.947266 557.636719 C 524.681641 558.103516  523.554688 559.199219  524.433594 559.605469 C 525.044922 559.890625  525.689453 558.779297  525.693359 558.203125 C 525.697266 557.244141  524.617188 557.173828  524.638672 556.410156 C 524.662109 555.580078  526.117188 555.441406  526.064453 554.638672 C 526 553.701172  524.669922 553.923828  524.214844 553.548828 C 523.289062 552.785156  525.945312 550.158203  524.1875 550.0625 C 523.398438 550.017578  523.4375 551.222656  523.070312 551.625 C 522.113281 552.669922  521.966797 551.564453  522.197266 550.626953 C 522.367188 549.945312  522.677734 549.291016  521.574219 549.28125 C 520.492188 549.271484  520.652344 550.427734  520.03125 551.029297 C 519.474609 551.568359  518 551.816406  517.609375 550.882812 C 517.177734 549.851562  518.660156 549.740234  518.507812 548.914062 C 518.433594 548.507812  514.982422 547.046875  517.347656 546.683594 C 518.371094 546.527344  518.480469 548.785156  519.472656 547.923828 C 519.810547 547.632812  519.419922 546.892578  519.951172 546.642578 C 520.753906 546.263672  520.683594 547.228516  520.955078 547.544922 C 522.027344 548.800781  521.888672 546.888672  522.912109 546.544922 C 523.480469 546.355469  523.957031 547.177734  524.447266 546.310547 C 524.804688 545.673828  524.384766 545.355469  523.847656 545.091797 C 523.339844 544.84375  522.71875 545.136719  522.566406 544.542969 C 522.447266 544.080078  523.0625 543.730469  523.21875 543.341797 C 523.425781 542.833984  523.59375 542.087891  522.943359 541.720703 C 522.308594 541.363281  522.261719 541.875  521.859375 542.082031 C 521.527344 542.253906  521.1875 542.945312  520.697266 542.318359 C 520.216797 541.699219  521.052734 541.1875  520.96875 540.591797 C 520.910156 540.167969  520.15625 539.380859  519.681641 539.458984 C 518.958984 539.576172  518.957031 540.369141  518.820312 540.943359 C 517.636719 541.142578  515.574219 538.90625  515.607422 541.21875 C 515.615234 541.708984  516.349609 542.130859  515.464844 542.435547 C 514.589844 542.736328  514.416016 541.619141  513.871094 541.357422 C 512.462891 540.683594  512.253906 543.048828  511.630859 542.111328 C 511.294922 541.607422  511.597656 540.5  512.160156 540.236328 C 513.03125 539.826172  513.003906 540.880859  513.746094 540.699219 C 514.152344 540.599609  514.423828 539.601562  514.832031 539.316406 C 515.660156 538.742188  515.535156 539.275391  516.357422 539.222656 C 516.935547 539.185547  517.716797 538.861328  517.363281 538.091797 C 517.080078 537.476562  516.214844 537.685547  515.740234 537.726562 C 514.517578 537.830078  514.863281 538.136719  515.275391 537.013672 C 515.494141 536.419922  515.519531 535.638672  514.492188 535.949219 C 513.949219 536.115234  513.333984 537.84375  512.904297 536.492188 C 512.523438 535.298828  513.964844 535.214844  514.623047 534.841797 C 515.291016 534.464844  516.009766 533.720703  515.339844 532.886719 C 514.548828 531.900391  514.130859 533.220703  513.271484 532.994141 C 512.947266 532.087891  513.939453 530.396484  512.753906 530.121094 C 511.558594 529.84375  511.804688 531.101562  511.521484 531.761719 C 510.697266 533.677734  510.669922 531.382812  510.246094 531.015625 C 509.523438 530.388672  508.828125 531.408203  508.894531 532.140625 C 508.955078 532.791016  510.429688 534.275391  509.148438 534.763672 C 508.09375 535.164062  508.576172 532.925781  507.527344 532.757812 C 507.029297 532.679688  505.453125 533.341797  506.253906 531.882812 C 506.652344 531.15625  507.724609 531.546875  507.535156 530.400391 L 506.912109 529.529297 Z " />
<path style="stroke-dasharray:49.708984 ;stroke-width:3.974609;stroke:#FFF;fill:none;" d="M 1.076172 666.701172 L 1042.095703 666.701172 " />
<path style="stroke-width:2.484375;stroke:#FFF;fill:none;" d="M 1.585938 641.060547 L 1042.607422 641.060547 " />
<path style="stroke-width:0.496094;stroke:#FFF;fill:none;" d="M 165.25 626.904297 L 165.201172 633.513672 L 159.070312 635.849609 L 159.070312 631.376953 L 163.550781 626.705078 " />
<path style="stroke-width:0.496094;stroke:none;fill:#FFF;" d="M 168.923828 627.158203 C 168.923828 626.798828  168.933594 626.529297  168.333984 626.25 C 168.134766 626.169922  167.888672 626.132812  167.646484 626.164062 C 167.369141 626.199219  167.097656 626.314453  166.9375 626.451172 C 166.724609 626.632812  166.740234 626.802734  166.548828 626.775391 C 166.302734 626.740234  165.960938 626.632812  165.408203 626.513672 C 164.84375 626.394531  164.15625 626.253906  163.476562 626.115234 C 162.798828 625.976562  162.130859 625.839844  161.609375 625.730469 C 161.347656 625.677734  161.125 625.630859  160.958984 625.59375 C 160.794922 625.558594  160.667969 625.529297  160.677734 625.53125 C 160.396484 625.417969  160.214844 625.402344  159.976562 625.214844 C 159.714844 625.003906  159.521484 624.830078  159.462891 624.771484 C 159.306641 624.619141  158.978516 624.548828  158.816406 624.628906 C 158.59375 624.730469  158.560547 624.9375  158.626953 625.091797 C 158.691406 625.236328  158.802734 625.464844  159.115234 625.730469 L 159.119141 625.732422 L 159.121094 625.734375 C 159.570312 626.105469  160.115234 626.242188  160.146484 626.255859 L 160.1875 626.275391 L 160.232422 626.289062 C 160.345703 626.320312  160.443359 626.339844  160.619141 626.378906 C 160.794922 626.416016  161.021484 626.462891  161.283203 626.517578 C 161.808594 626.626953  162.478516 626.763672  163.15625 626.902344 C 163.833984 627.039062  164.517578 627.181641  165.074219 627.298828 C 165.630859 627.417969  166.085938 627.490234  166.183594 627.517578 C 166.419922 627.583984  166.675781 627.619141  166.929688 627.574219 C 167.185547 627.529297  167.392578 627.390625  167.441406 627.267578 C 167.552734 626.988281  167.835938 627.0625  167.835938 627.205078 L 167.839844 628.40625 L 168.923828 628.410156 L 168.923828 627.158203 Z " />
<path style="stroke-width:0.992188;stroke:#FFF;fill:none;" d="M 159.070312 627.4375 C 161.076172 627.439453  162.701172 626.289062  162.703125 624.869141 C 162.705078 623.451172  161.080078 622.298828  159.072266 622.298828 L 159.070312 622.298828 C 157.064453 622.298828  155.4375 623.449219  155.4375 624.869141 C 155.4375 626.289062  157.064453 627.4375  159.070312 627.4375 L 159.070312 624.869141 L 159.070312 627.4375 Z " />
<path style="stroke-width:0.992188;stroke:#FFF;fill:none;" d="M 159 638.453125 C 161.005859 638.453125  162.630859 637.304688  162.632812 635.884766 C 162.632812 634.464844  161.007812 633.3125  159.003906 633.3125 L 159 633.3125 C 156.994141 633.3125  155.367188 634.462891  155.367188 635.882812 C 155.367188 637.302734  156.994141 638.453125  159 638.453125 L 159 635.882812 L 159 638.453125 Z " />
<path style="stroke-width:0.496094;stroke:#FFF;fill:none;" d="M 159.261719 631.462891 L 167.099609 633.728516 " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 161.650391 630.449219 L 156.259766 632.289062 " />
<path style="stroke-width:0.371094;stroke:none;fill:#000;" d="M 159.058594 632.412109 C 159.871094 632.412109  160.533203 631.960938  160.533203 631.402344 C 160.533203 630.84375  159.873047 630.392578  159.058594 630.392578 L 159.058594 630.392578 C 158.244141 630.392578  157.583984 630.84375  157.583984 631.402344 C 157.583984 631.958984  158.244141 632.412109  159.058594 632.412109 L 159.058594 631.402344 L 159.058594 632.412109 Z " />
<path style="stroke-width:0.496094;stroke:#FFF;fill:none;" d="M 159.058594 632.412109 C 159.871094 632.412109  160.533203 631.960938  160.533203 631.402344 C 160.533203 630.84375  159.873047 630.392578  159.058594 630.392578 L 159.058594 630.392578 C 158.244141 630.392578  157.583984 630.84375  157.583984 631.402344 C 157.583984 631.958984  158.244141 632.412109  159.058594 632.412109 L 159.058594 631.402344 L 159.058594 632.412109 Z " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 161.59375 629.957031 L 161.580078 631.166016 " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 156.492188 631.671875 L 156.474609 632.880859 " />
<path style="stroke-width:0.371094;stroke:none;fill:#FFF;" d="M 167.798828 634.837891 L 167.798828 631.994141 C 167.798828 631.886719  167.535156 631.75  167.357422 631.886719 C 167.158203 632.035156  166.75 633.369141  166.75 633.369141 C 166.75 633.369141  166.607422 633.734375  166.640625 633.929688 C 166.673828 634.123047  166.757812 634.794922  167.798828 634.837891 " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 167.798828 634.837891 L 167.798828 631.994141 C 167.798828 631.886719  167.535156 631.75  167.357422 631.886719 C 167.158203 632.035156  166.75 633.369141  166.75 633.369141 C 166.75 633.369141  166.607422 633.734375  166.640625 633.929688 C 166.673828 634.123047  166.757812 634.794922  167.798828 634.837891 Z " />
<path style="stroke-width:0.496094;stroke:#FFF;fill:none;" d="M 841.537109 626.851562 L 841.490234 633.458984 L 835.359375 635.794922 L 835.359375 631.324219 L 839.839844 626.650391 " />
<path style="stroke-width:0.496094;stroke:none;fill:#FFF;" d="M 845.210938 627.105469 C 845.210938 626.746094  845.222656 626.472656  844.623047 626.195312 C 844.423828 626.115234  844.177734 626.080078  843.933594 626.109375 C 843.658203 626.144531  843.386719 626.261719  843.224609 626.396484 C 843.013672 626.578125  843.029297 626.75  842.837891 626.722656 C 842.591797 626.6875  842.25 626.578125  841.697266 626.460938 C 841.132812 626.341797  840.443359 626.199219  839.765625 626.060547 C 839.087891 625.921875  838.419922 625.785156  837.898438 625.677734 C 837.638672 625.623047  837.414062 625.576172  837.246094 625.541016 C 837.083984 625.503906  836.957031 625.472656  836.964844 625.476562 C 836.685547 625.365234  836.503906 625.347656  836.265625 625.160156 C 836.003906 624.949219  835.8125 624.775391  835.751953 624.716797 C 835.595703 624.564453  835.267578 624.494141  835.105469 624.574219 C 834.882812 624.675781  834.849609 624.884766  834.916016 625.037109 C 834.980469 625.181641  835.091797 625.410156  835.402344 625.675781 L 835.40625 625.677734 L 835.410156 625.681641 C 835.859375 626.050781  836.402344 626.1875  836.433594 626.201172 L 836.476562 626.222656 L 836.521484 626.234375 C 836.632812 626.267578  836.732422 626.285156  836.908203 626.324219 C 837.083984 626.361328  837.308594 626.410156  837.572266 626.464844 C 838.097656 626.574219  838.767578 626.708984  839.443359 626.847656 C 840.121094 626.986328  840.806641 627.126953  841.363281 627.244141 C 841.919922 627.363281  842.375 627.4375  842.472656 627.464844 C 842.708984 627.53125  842.964844 627.566406  843.21875 627.519531 C 843.474609 627.474609  843.681641 627.337891  843.728516 627.214844 C 843.839844 626.935547  844.125 627.009766  844.125 627.152344 L 844.128906 628.353516 L 845.210938 628.355469 L 845.210938 627.105469 Z " />
<path style="stroke-width:0.992188;stroke:#FFF;fill:none;" d="M 835.359375 627.384766 C 837.365234 627.384766  838.990234 626.234375  838.992188 624.816406 C 838.992188 623.396484  837.367188 622.246094  835.361328 622.244141 L 835.359375 622.244141 C 833.353516 622.244141  831.726562 623.396484  831.726562 624.814453 C 831.726562 626.234375  833.353516 627.384766  835.359375 627.384766 L 835.359375 624.814453 L 835.359375 627.384766 Z " />
<path style="stroke-width:0.992188;stroke:#FFF;fill:none;" d="M 835.287109 638.400391 C 837.294922 638.400391  838.919922 637.25  838.921875 635.830078 C 838.923828 634.410156  837.296875 633.259766  835.291016 633.259766 L 835.287109 633.259766 C 833.283203 633.259766  831.65625 634.410156  831.65625 635.828125 C 831.65625 637.248047  833.283203 638.400391  835.287109 638.400391 L 835.287109 635.828125 L 835.287109 638.400391 Z " />
<path style="stroke-width:0.496094;stroke:#FFF;fill:none;" d="M 835.550781 631.410156 L 843.388672 633.673828 " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 837.939453 630.392578 L 832.548828 632.234375 " />
<path style="stroke-width:0.371094;stroke:none;fill:#000;" d="M 835.347656 632.357422 C 836.162109 632.357422  836.822266 631.90625  836.822266 631.347656 C 836.822266 630.791016  836.162109 630.339844  835.347656 630.337891 L 835.347656 630.337891 C 834.533203 630.337891  833.871094 630.791016  833.871094 631.347656 C 833.871094 631.90625  834.533203 632.357422  835.345703 632.357422 L 835.347656 631.347656 L 835.347656 632.357422 Z " />
<path style="stroke-width:0.496094;stroke:#FFF;fill:none;" d="M 835.347656 632.357422 C 836.162109 632.357422  836.822266 631.90625  836.822266 631.347656 C 836.822266 630.791016  836.162109 630.339844  835.347656 630.337891 L 835.347656 630.337891 C 834.533203 630.337891  833.871094 630.791016  833.871094 631.347656 C 833.871094 631.90625  834.533203 632.357422  835.345703 632.357422 L 835.347656 631.347656 L 835.347656 632.357422 Z " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 837.882812 629.902344 L 837.867188 631.111328 " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 832.78125 631.619141 L 832.763672 632.826172 " />
<path style="stroke-width:0.371094;stroke:none;fill:#FFF;" d="M 844.087891 634.783203 L 844.087891 631.939453 C 844.087891 631.833984  843.822266 631.697266  843.646484 631.833984 C 843.447266 631.982422  843.037109 633.314453  843.037109 633.314453 C 843.037109 633.314453  842.896484 633.681641  842.929688 633.875 C 842.962891 634.070312  843.046875 634.742188  844.087891 634.783203 " />
<path style="stroke-width:0.371094;stroke:#FFF;fill:none;" d="M 844.087891 634.783203 L 844.087891 631.939453 C 844.087891 631.833984  843.822266 631.697266  843.646484 631.833984 C 843.447266 631.982422  843.037109 633.314453  843.037109 633.314453 C 843.037109 633.314453  842.896484 633.681641  842.929688 633.875 C 842.962891 634.070312  843.046875 634.742188  844.087891 634.783203 Z " />
<path style="stroke-width:4.472656;stroke:#484952;fill:none;" d="M 160.064453 458.113281 L 160.064453 609.951172 " />
<path style="stroke-width:4.472656;stroke:none;fill:#CBCDB9;" d="M 163.207031 466.216797 C 160.912109 466.607422  158.896484 466.007812  158.703125 464.878906 L 157.558594 458.142578 C 157.365234 457.011719  159.070312 455.78125  161.365234 455.390625 C 163.662109 455  165.677734 455.597656  165.869141 456.728516 L 167.015625 463.464844 C 167.207031 464.59375  165.503906 465.826172  163.207031 466.216797 " />
<path style="stroke-width:4.472656;stroke:none;fill:#484952;" d="M 167.183594 608.164062 C 167.183594 610.294922  164.054688 612.021484  160.195312 612.021484 C 156.335938 612.021484  153.207031 610.294922  153.207031 608.164062 C 153.207031 606.035156  156.335938 604.310547  160.195312 604.310547 C 164.054688 604.310547  167.183594 606.035156  167.183594 608.164062 " />
<path style="stroke-width:4.472656;stroke:none;fill:#484952;" d="M 163.136719 463.521484 C 160.841797 463.910156  158.826172 463.3125  158.632812 462.181641 L 157.488281 455.445312 C 157.294922 454.316406  159 453.083984  161.294922 452.695312 C 163.591797 452.302734  165.607422 452.902344  165.800781 454.03125 L 166.945312 460.767578 C 167.136719 461.898438  165.433594 463.128906  163.136719 463.521484 " />
<path style="stroke-width:4.472656;stroke:#484952;fill:none;" d="M 948.839844 459.9375 L 948.839844 611.777344 " />
<path style="stroke-width:4.472656;stroke:none;fill:#FBE576;" d="M 945.125 468.042969 C 947.837891 468.431641  950.220703 467.833984  950.447266 466.703125 L 951.802734 459.966797 C 952.027344 458.837891  950.013672 457.605469  947.302734 457.216797 C 944.587891 456.824219  942.205078 457.423828  941.978516 458.552734 L 940.625 465.291016 C 940.398438 466.419922  942.412109 467.652344  945.125 468.042969 " />
<path style="stroke-width:4.472656;stroke:none;fill:#484952;" d="M 940.427734 609.990234 C 940.427734 612.119141  944.125 613.845703  948.683594 613.845703 C 953.246094 613.845703  956.941406 612.119141  956.941406 609.990234 C 956.941406 607.861328  953.246094 606.136719  948.683594 606.136719 C 944.125 606.136719  940.427734 607.861328  940.427734 609.990234 " />
<path style="stroke-width:4.472656;stroke:none;fill:#484952;" d="M 946.175781 465.345703 C 948.886719 465.736328  951.271484 465.136719  951.498047 464.007812 L 952.851562 457.271484 C 953.078125 456.140625  951.066406 454.910156  948.351562 454.519531 C 945.638672 454.128906  943.255859 454.726562  943.029297 455.857422 L 941.675781 462.59375 C 941.449219 463.722656  943.462891 464.955078  946.175781 465.345703 " />
<path style="stroke-width:4.472656;stroke:none;fill:#484952;" d="M 520.183594 638.080078 L 528.099609 634.714844 L 519.791016 632.482422 L 537.011719 631.816406 L 549.023438 628.701172 L 551.75 631.654297 L 567.480469 631.962891 L 551.945312 634.455078 L 549.65625 637.759766 L 537.330078 636.345703 L 520.183594 638.080078 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 841.900391 213.433594 C 841.900391 241.017578  819.537109 263.380859  791.955078 263.380859 L 192.597656 263.380859 C 165.013672 263.380859  142.652344 241.017578  142.652344 213.433594 L 142.652344 138.513672 C 142.652344 110.929688  165.013672 88.568359  192.597656 88.568359 L 226.222656 88.568359 C 226.222656 88.568359  251.367188 49.900391  273.517578 41.080078 C 257.458984 75.044922  258.863281 88.568359  258.863281 88.568359 L 791.955078 88.568359 C 819.537109 88.568359  841.900391 110.931641  841.900391 138.513672 L 841.900391 213.433594 Z " />
<path style="stroke-width:5.285156;stroke:#231F20;fill:none;" d="M 841.900391 213.433594 C 841.900391 241.017578  819.537109 263.380859  791.955078 263.380859 L 192.597656 263.380859 C 165.013672 263.380859  142.652344 241.017578  142.652344 213.433594 L 142.652344 138.513672 C 142.652344 110.929688  165.013672 88.568359  192.597656 88.568359 L 226.222656 88.568359 C 226.222656 88.568359  251.367188 49.900391  273.517578 41.080078 C 257.458984 75.044922  258.863281 88.568359  258.863281 88.568359 L 791.955078 88.568359 C 819.537109 88.568359  841.900391 110.931641  841.900391 138.513672 L 841.900391 213.433594 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 112.09375 330.685547 C 121.076172 310.396484  175.917969 316.097656  174.054688 327.498047 C 191.478516 310.396484  246.382812 326.408203  239.615234 350.572266 C 263.410156 362.210938  256.818359 412.5625  241.134766 405.222656 C 239.677734 431.474609  211.972656 433.181641  203.181641 430.525391 C 202.105469 448.552734  172.1875 455.751953  168.265625 451.273438 C 183.128906 445.136719  177.816406 433.373047  177.878906 430.525391 C 150.521484 450.052734  103.361328 427.4375  106.021484 415.34375 C 87.902344 425.410156  66.509766 397.378906  72.902344 368.990234 C 66.509766 333.757812  102.353516 323.158203  112.09375 330.685547 " />
<path style="stroke-width:4.552734;stroke:#231F20;fill:none;" d="M 112.09375 330.685547 C 121.076172 310.396484  175.917969 316.097656  174.054688 327.498047 C 191.478516 310.396484  246.382812 326.408203  239.615234 350.572266 C 263.410156 362.210938  256.818359 412.5625  241.134766 405.222656 C 239.677734 431.474609  211.972656 433.181641  203.181641 430.525391 C 202.105469 448.552734  172.1875 455.751953  168.265625 451.273438 C 183.128906 445.136719  177.816406 433.373047  177.878906 430.525391 C 150.521484 450.052734  103.361328 427.4375  106.021484 415.34375 C 87.902344 425.410156  66.509766 397.378906  72.902344 368.990234 C 66.509766 333.757812  102.353516 323.158203  112.09375 330.685547 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 1038.642578 494.089844 C 1038.642578 516.855469  1011.558594 536  974.816406 541.5625 C 971.304688 542.091797  991.306641 566.865234  986.919922 566.632812 C 962.615234 565.347656  949.503906 543.164062  947.871094 543.111328 C 902.757812 541.650391  866.966797 520.257812  866.966797 494.089844 C 866.966797 466.972656  905.396484 444.986328  952.804688 444.986328 C 1000.210938 444.986328  1038.642578 466.972656  1038.642578 494.089844 " />
<path style="stroke-width:4.300781;stroke:#231F20;fill:none;" d="M 1038.642578 494.089844 C 1038.642578 516.855469  1011.558594 536  974.816406 541.5625 C 971.304688 542.091797  991.306641 566.865234  986.919922 566.632812 C 962.615234 565.347656  949.503906 543.164062  947.871094 543.111328 C 902.757812 541.650391  866.966797 520.257812  866.966797 494.089844 C 866.966797 466.972656  905.396484 444.986328  952.804688 444.986328 C 1000.210938 444.986328  1038.642578 466.972656  1038.642578 494.089844 Z " />
<path style="stroke-width:1.25;stroke:none;fill:#FFF;" d="M 607.128906 573.642578 C 607.128906 589.392578  594.359375 602.164062  578.609375 602.164062 C 578.609375 602.164062  572.673828 602.181641  570.003906 602.164062 C 566.177734 610.039062  549.583984 623.525391  549.583984 623.525391 C 549.583984 623.525391  555.488281 602.181641  552.876953 602.164062 C 550.267578 602.144531  464.521484 602.164062  464.521484 602.164062 C 448.767578 602.164062  436 589.392578  436 573.642578 L 436 545.119141 C 436 529.369141  448.767578 516.601562  464.521484 516.601562 L 578.609375 516.601562 C 594.359375 516.601562  607.128906 529.369141  607.128906 545.119141 L 607.128906 573.642578 Z " />
<path style="stroke-width:4.4375;stroke:#231F20;fill:none;" d="M 607.128906 573.642578 C 607.128906 589.392578  594.359375 602.164062  578.609375 602.164062 C 578.609375 602.164062  572.673828 602.181641  570.003906 602.164062 C 566.177734 610.039062  549.583984 623.525391  549.583984 623.525391 C 549.583984 623.525391  555.488281 602.181641  552.876953 602.164062 C 550.267578 602.144531  464.521484 602.164062  464.521484 602.164062 C 448.767578 602.164062  436 589.392578  436 573.642578 L 436 545.119141 C 436 529.369141  448.767578 516.601562  464.521484 516.601562 L 578.609375 516.601562 C 594.359375 516.601562  607.128906 529.369141  607.128906 545.119141 L 607.128906 573.642578 Z " />
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.782547,-0.000000,-0.000000,1.000000,563.039062,718.521484)">R</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,579.447266,718.521484)">e</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,594.087891,718.521484)">p</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,609.597656,718.521484)">o</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,625.648438,718.521484)">r</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,636.898438,718.521484)">t</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,646.558594,718.521484)">,</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,654.119141,718.521484)"> </text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.887985,-0.000000,-0.000000,1.000000,661.677734,718.521484)">v</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,674.998047,718.521484)">i</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,681.328125,718.521484)">e</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.036011,-0.000000,-0.000000,1.000000,695.96875,718.521484)">w</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,716.21875,718.521484)">,</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,723.777344,718.521484)"> </text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,731.337891,718.521484)">o</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,747.388672,718.521484)">r</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,758.638672,718.521484)"> </text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,766.197266,718.521484)">d</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,781.708984,718.521484)">i</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,788.039062,718.521484)">s</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,799.318359,718.521484)">c</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,812.517578,718.521484)">u</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,827.488281,718.521484)">s</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,838.767578,718.521484)">s</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,850.048828,718.521484)"> </text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,857.607422,718.521484)">l</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,863.9375,718.521484)">o</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,879.988281,718.521484)">c</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,893.1875,718.521484)">a</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,906.177734,718.521484)">l</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,912.507812,718.521484)"> </text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,920.068359,718.521484)">p</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,935.578125,718.521484)">r</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,946.828125,718.521484)">o</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,962.878906,718.521484)">b</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,978.388672,718.521484)">l</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,984.71875,718.521484)">e</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.953171,-0.000000,-0.000000,1.000000,999.357422,718.521484)">m</text>
<text style="font-size:24.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,1023.177734,718.521484)">s</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.823227,-0.000000,-0.000000,1.000000,18.447266,33.658203)">F</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,41.082031,33.658203)">i</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.951996,-0.000000,-0.000000,1.000000,50.578125,33.658203)">x</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.969986,-0.000000,-0.000000,1.000000,71.998047,33.658203)">M</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.887985,-0.000000,-0.000000,1.000000,108.357422,33.658203)">y</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.691147,-0.000000,-0.000000,1.000000,128.337891,33.658203)">S</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,149.082031,33.658203)">t</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,163.572266,33.658203)">r</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,180.447266,33.658203)">e</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,202.408203,33.658203)">e</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,224.367188,33.658203)">t</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,238.857422,33.658203)">.</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,250.197266,33.658203)">c</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,269.998047,33.658203)">o</text>
<text style="font-size:36.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.953171,-0.000000,-0.000000,1.000000,294.072266,33.658203)">m</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.934021,-0.000000,-0.000000,1.000000,172.244141,139.341797)">A</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,187.818359,139.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,195.869141,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.893616,-0.000000,-0.000000,1.000000,202.162109,139.341797)">F</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,215.8125,139.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.965820,-0.000000,-0.000000,1.000000,222.113281,139.341797)">x</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.050415,-0.000000,-0.000000,1.000000,235.537109,139.341797)">M</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.859711,-0.000000,-0.000000,1.000000,257.412109,139.341797)">y</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.895050,-0.000000,-0.000000,1.000000,269.363281,139.341797)">S</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.192184,-0.000000,-0.000000,1.000000,284.287109,139.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.100250,-0.000000,-0.000000,1.000000,294.212891,139.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.956833,-0.000000,-0.000000,1.000000,304.912109,139.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.956833,-0.000000,-0.000000,1.000000,318.212891,139.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.192184,-0.000000,-0.000000,1.000000,331.513672,139.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.978409,-0.000000,-0.000000,1.000000,341.4375,139.341797)">.</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.850708,-0.000000,-0.000000,1.000000,348.238281,139.341797)">c</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.913254,-0.000000,-0.000000,1.000000,360.0625,139.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.984238,-0.000000,-0.000000,1.000000,374.013672,139.341797)">m</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,395.912109,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.887985,-0.000000,-0.000000,1.000000,402.212891,139.341797)">y</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,413.3125,139.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,426.6875,139.341797)">u</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,439.162109,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,445.462891,139.341797)">c</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,456.462891,139.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,467.287109,139.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,479.763672,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,486.0625,139.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,495.4375,139.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,507.638672,139.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,520.5625,139.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,533.9375,139.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,543.3125,139.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,551.363281,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,557.662109,139.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,570.587891,139.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,579.962891,139.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,593.337891,139.341797)">b</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,606.263672,139.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,611.537109,139.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.953171,-0.000000,-0.000000,1.000000,623.738281,139.341797)">m</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,643.587891,139.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,652.988281,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,659.287109,139.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,664.5625,139.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.965988,-0.000000,-0.000000,1.000000,669.837891,139.341797)">k</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,681.912109,139.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,694.113281,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.949631,-0.000000,-0.000000,1.000000,700.412109,139.341797)">f</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,707.013672,139.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.887985,-0.000000,-0.000000,1.000000,712.287109,139.341797)">y</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,723.388672,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,729.6875,139.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,737.738281,139.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,743.013672,139.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,755.9375,139.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,768.863281,139.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,774.138672,139.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.803955,-0.000000,-0.000000,1.000000,786.613281,139.341797)">g</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,797.787109,139.341797)">,</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,804.087891,139.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,172.244141,169.341797)">b</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,185.167969,169.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,194.542969,169.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.965988,-0.000000,-0.000000,1.000000,207.917969,169.341797)">k</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,219.994141,169.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,232.193359,169.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,244.667969,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,250.96875,169.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,263.892578,169.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.887985,-0.000000,-0.000000,1.000000,274.71875,169.341797)">v</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,285.818359,169.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,291.09375,169.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.803955,-0.000000,-0.000000,1.000000,303.568359,169.341797)">g</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,314.744141,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,321.042969,169.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,330.443359,169.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,335.71875,169.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,346.542969,169.341797)">b</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,359.46875,169.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,368.869141,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,375.167969,169.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,385.994141,169.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,398.46875,169.341797)">d</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,411.392578,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.803955,-0.000000,-0.000000,1.000000,417.693359,169.341797)">g</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,428.869141,169.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,438.244141,169.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.949631,-0.000000,-0.000000,1.000000,449.068359,169.341797)">f</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.949631,-0.000000,-0.000000,1.000000,455.667969,169.341797)">f</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,462.267578,169.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,467.542969,169.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,475.59375,169.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,480.869141,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.036011,-0.000000,-0.000000,1.000000,487.167969,169.341797)">w</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,505.869141,169.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,511.142578,169.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.901077,-0.000000,-0.000000,1.000000,519.193359,169.341797)">h</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,531.71875,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,538.017578,169.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,548.84375,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,555.142578,169.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,564.542969,169.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,569.818359,169.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.803955,-0.000000,-0.000000,1.000000,582.292969,169.341797)">g</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,593.46875,169.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,598.744141,169.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,610.943359,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,617.244141,169.341797)">c</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,628.244141,169.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,633.517578,169.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,638.792969,169.341797)">c</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.965988,-0.000000,-0.000000,1.000000,649.792969,169.341797)">k</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,661.869141,169.341797)">.</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,668.167969,169.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929535,-0.000000,-0.000000,1.000000,172.244141,199.341797)">P</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.887070,-0.000000,-0.000000,1.000000,187.744141,199.341797)">L</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.067856,-0.000000,-0.000000,1.000000,200.84375,199.341797)">U</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.895050,-0.000000,-0.000000,1.000000,220.119141,199.341797)">S</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,235.060547,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.949631,-0.000000,-0.000000,1.000000,241.361328,199.341797)">f</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,247.960938,199.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,253.236328,199.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,265.710938,199.341797)">d</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,278.636719,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,284.935547,199.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,298.310547,199.341797)">u</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,310.785156,199.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,318.835938,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.036011,-0.000000,-0.000000,1.000000,325.136719,199.341797)">w</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.901077,-0.000000,-0.000000,1.000000,343.835938,199.341797)">h</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,356.361328,199.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,367.185547,199.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,375.236328,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,381.535156,199.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,394.460938,199.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,403.835938,199.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,417.210938,199.341797)">b</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,430.136719,199.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,435.410156,199.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.953171,-0.000000,-0.000000,1.000000,447.611328,199.341797)">m</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,467.460938,199.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,476.861328,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,483.160156,199.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,496.535156,199.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.901077,-0.000000,-0.000000,1.000000,504.585938,199.341797)">h</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,517.111328,199.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,529.310547,199.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,538.685547,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,544.986328,199.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,550.261719,199.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,563.636719,199.341797)">c</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,574.636719,199.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,585.460938,199.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,590.736328,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,597.035156,199.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,609.960938,199.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,622.160156,199.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,635.535156,199.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,648.460938,199.341797)">l</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,653.736328,199.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,665.935547,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.901077,-0.000000,-0.000000,1.000000,672.236328,199.341797)">h</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,684.761719,199.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.887985,-0.000000,-0.000000,1.000000,695.585938,199.341797)">v</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,706.685547,199.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,718.886719,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,725.185547,199.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,734.560547,199.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,746.761719,199.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,759.685547,199.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,773.060547,199.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,782.435547,199.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,790.486328,199.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,802.685547,199.341797)">d</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,815.611328,199.341797)">,</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,821.910156,199.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,172.244141,229.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,183.068359,229.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,195.542969,229.341797)">d</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,208.46875,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,214.767578,229.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,222.818359,229.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.965988,-0.000000,-0.000000,1.000000,233.642578,229.341797)">k</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,245.71875,229.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,257.917969,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,264.21875,229.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,277.142578,229.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.126114,-0.000000,-0.000000,1.000000,287.96875,229.341797)">r</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,297.34375,229.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,305.392578,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,311.693359,229.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,316.96875,229.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,329.443359,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,335.744141,229.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,346.568359,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,352.869141,229.341797)">d</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,365.792969,229.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,371.068359,229.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.879990,-0.000000,-0.000000,1.000000,380.46875,229.341797)">c</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,391.46875,229.341797)">u</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,403.943359,229.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,413.34375,229.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,422.744141,229.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,428.017578,229.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,441.392578,229.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,453.869141,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,460.167969,229.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,470.994141,229.341797)">b</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,483.917969,229.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,497.292969,229.341797)">u</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,509.767578,229.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,517.818359,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.036011,-0.000000,-0.000000,1.000000,524.119141,229.341797)">w</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.901077,-0.000000,-0.000000,1.000000,542.818359,229.341797)">h</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,555.34375,229.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,566.167969,229.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.063049,-0.000000,-0.000000,1.000000,574.21875,229.341797)">�</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.751999,-0.000000,-0.000000,1.000000,580.119141,229.341797)">s</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,589.517578,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.901077,-0.000000,-0.000000,1.000000,595.818359,229.341797)">h</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.778763,-0.000000,-0.000000,1.000000,608.34375,229.341797)">a</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,619.167969,229.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.929855,-0.000000,-0.000000,1.000000,632.09375,229.341797)">p</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,645.017578,229.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,657.21875,229.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,669.693359,229.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.897476,-0.000000,-0.000000,1.000000,674.96875,229.341797)">n</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.803955,-0.000000,-0.000000,1.000000,687.443359,229.341797)">g</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,698.619141,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,704.917969,229.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.962219,-0.000000,-0.000000,1.000000,712.96875,229.341797)">o</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,726.34375,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.949631,-0.000000,-0.000000,1.000000,732.642578,229.341797)">f</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.950439,-0.000000,-0.000000,1.000000,739.244141,229.341797)">i</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.951996,-0.000000,-0.000000,1.000000,744.517578,229.341797)">x</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.906464,-0.000000,-0.000000,1.000000,756.417969,229.341797)"> </text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(1.158264,-0.000000,-0.000000,1.000000,762.71875,229.341797)">t</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.901077,-0.000000,-0.000000,1.000000,770.767578,229.341797)">h</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.877686,-0.000000,-0.000000,1.000000,783.292969,229.341797)">e</text>
<text style="font-size:20.000000pt; stroke:#FFF;fill:#231F20;" transform="matrix(0.953171,-0.000000,-0.000000,1.000000,795.494141,229.341797)">m</text>
<path style="stroke-width:1.25;stroke:none;fill:#231F20;" d="M 114.357422 345.308594 C 116.501953 345.308594  117.964844 345.460938  118.746094 345.763672 C 119.785156 346.175781  120.304688 346.783203  120.304688 347.583984 C 120.304688 348.865234  119.091797 350.447266  116.666016 352.332031 C 117.185547 352.744141  117.640625 353.449219  118.03125 354.445312 C 118.462891 355.53125  118.701172 356.732422  118.746094 358.056641 C 118.808594 359.421875  117.142578 360.810547  113.740234 362.21875 C 110.902344 363.388672  108.28125 364.115234  105.875 364.396484 C 105.636719 364.417969  105.410156 364.429688  105.193359 364.429688 C 104.087891 364.429688  103.162109 364.132812  102.414062 363.535156 C 101.666016 362.939453  101.292969 362.109375  101.292969 361.046875 C 101.292969 360.765625  101.326172 360.462891  101.390625 360.136719 C 103.339844 355.736328  105.246094 351.541016  107.111328 347.552734 C 108.107422 346.056641  110.523438 345.308594  114.357422 345.308594 M 115.755859 348.466797 C 115.863281 348.011719  115.386719 347.783203  114.326172 347.783203 C 113.242188 347.783203  112.017578 348.011719  110.652344 348.466797 L 108.962891 352.203125 C 112.992188 351.792969  115.255859 350.544922  115.755859 348.466797 M 108.214844 360.914062 C 108.865234 360.914062  109.992188 360.576172  111.59375 359.90625 C 112.179688 359.667969  112.787109 359.265625  113.416016 358.703125 C 114.238281 358.009766  114.650391 357.382812  114.650391 356.818359 C 114.650391 356.341797  114.326172 355.951172  113.675781 355.648438 C 113.371094 355.517578  112.960938 355.453125  112.439453 355.453125 C 111.138672 355.453125  109.363281 355.832031  107.111328 356.591797 C 106.416016 357.890625  106.070312 358.855469  106.070312 359.482422 C 106.070312 359.677734  106.101562 359.820312  106.166016 359.90625 C 106.644531 360.576172  107.326172 360.914062  108.214844 360.914062 M 129.158203 351.716797 C 129.958984 350.220703  130.458984 349.386719  130.652344 349.212891 C 131.412109 348.498047  132.765625 348.140625  134.714844 348.140625 C 136.535156 348.140625  137.542969 348.357422  137.738281 348.791016 C 137.867188 349.09375  137.283203 349.787109  135.982422 350.871094 C 135.181641 351.564453  134.378906 352.191406  133.578125 352.755859 C 133.013672 353.125  132.126953 353.513672  130.912109 353.925781 C 129.699219 354.337891  128.833984 354.542969  128.3125 354.542969 C 128.097656 354.542969  127.976562 354.5  127.955078 354.414062 C 127.912109 354.173828  128.3125 353.275391  129.158203 351.716797 M 138.128906 352.849609 C 140.056641 351.267578  141.021484 349.966797  141.021484 348.949219 C 141.021484 348.820312  141 348.699219  140.955078 348.591797 C 140.521484 347.269531  139.482422 346.283203  137.835938 345.632812 C 136.621094 345.15625  135.255859 344.917969  133.740234 344.917969 C 133.134766 344.917969  132.65625 344.960938  132.310547 345.048828 C 128.605469 345.849609  126.634766 346.640625  126.396484 347.419922 C 126.308594 347.746094  126.253906 348.292969  126.232422 349.0625 C 126.210938 349.830078  126.125 350.367188  125.972656 350.669922 C 125.128906 352.490234  124.294922 354.310547  123.470703 356.128906 C 121.759766 359.466797  120.339844 361.416016  119.212891 361.980469 C 119.126953 362.044922  119.083984 362.154297  119.083984 362.304688 C 119.083984 362.738281  119.300781 363.203125  119.732422 363.701172 C 120.232422 364.263672  120.773438 364.546875  121.357422 364.546875 C 121.943359 364.546875  122.517578 364.253906  123.080078 363.669922 C 123.298828 363.410156  123.892578 362.4375  124.867188 360.748047 C 125.777344 359.167969  126.287109 358.367188  126.396484 358.34375 C 127.154297 358.28125  128 358.107422  128.929688 357.826172 C 132.765625 360.144531  134.802734 362.115234  135.041016 363.740234 C 135.0625 363.957031  135.191406 364.066406  135.429688 364.066406 C 135.841797 364.066406  136.324219 363.826172  136.876953 363.351562 C 137.429688 362.873047  137.693359 362.429688  137.673828 362.017578 C 137.564453 360.261719  135.603516 358.507812  131.791016 356.75 C 134.195312 355.667969  136.308594 354.367188  138.128906 352.849609 M 155.607422 361.011719 C 154.761719 362.09375  153.298828 362.949219  151.21875 363.578125 C 149.486328 364.119141  147.785156 364.390625  146.117188 364.390625 C 141.761719 364.390625  139.583984 362.810547  139.583984 359.646484 C 139.583984 356.179688  140.964844 352.947266  143.728516 349.945312 C 146.490234 346.945312  149.572266 345.445312  152.974609 345.445312 C 154.902344 345.445312  156.544922 346.041016  157.898438 347.232422 C 159.251953 348.423828  159.929688 349.982422  159.929688 351.912109 C 159.929688 354.251953  158.488281 357.285156  155.607422 361.011719 M 144.914062 360.523438 C 145.652344 360.935547  146.517578 361.140625  147.513672 361.140625 C 149.269531 361.140625  151.251953 360.003906  153.460938 357.728516 C 155.671875 355.453125  156.777344 353.427734  156.777344 351.650391 C 156.777344 350.740234  156.300781 350.025391  155.347656 349.505859 C 154.566406 349.072266  153.677734 348.855469  152.681641 348.855469 C 150.320312 348.855469  148.212891 349.847656  146.361328 351.830078 C 144.507812 353.8125  143.582031 356.005859  143.582031 358.410156 C 143.582031 359.320312  144.027344 360.025391  144.914062 360.523438 M 170.777344 344.527344 C 171.384766 344.527344  171.958984 344.679688  172.5 344.982422 C 173.128906 345.287109  173.410156 345.65625  173.345703 346.087891 C 172.673828 347.845703  172.044922 349.40625  171.460938 350.773438 C 171.611328 350.642578  171.785156 350.675781  171.980469 350.871094 C 172.111328 351  173.755859 350.177734  176.919922 348.400391 C 180.277344 346.537109  182 345.59375  182.087891 345.574219 C 182.390625 345.464844  182.861328 345.601562  183.501953 345.980469 C 184.140625 346.357422  184.568359 346.775391  184.785156 347.230469 C 185.044922 347.816406  180.982422 350.208984  172.597656 354.414062 C 172.423828 354.628906  172.337891 354.792969  172.337891 354.900391 C 172.337891 354.986328  172.392578 355.03125  172.5 355.03125 C 172.759766 355.03125  173.941406 355.972656  176.042969 357.857422 C 178.208984 359.808594  179.314453 361.011719  179.357422 361.466797 C 179.400391 361.876953  179 362.332031  178.15625 362.830078 C 177.396484 363.285156  176.800781 363.513672  176.367188 363.513672 C 176.193359 363.513672  176.117188 363.458984  176.140625 363.351562 C 176.205078 362.960938  173.505859 360.771484  168.048828 356.785156 C 165.990234 360.880859  164.634766 363.306641  163.986328 364.066406 C 163.8125 364.28125  163.595703 364.390625  163.335938 364.390625 C 162.792969 364.390625  162.148438 364.033203  161.402344 363.318359 C 160.652344 362.601562  160.333984 362.158203  160.443359 361.984375 C 161.070312 361.162109  161.623047 360.435547  162.099609 359.806641 C 162.035156 359.15625  161.9375 358.636719  161.808594 358.246094 C 161.699219 357.943359  161.910156 357.558594  162.441406 357.091797 C 162.972656 356.625  163.552734 356.285156  164.179688 356.068359 C 164.701172 355.894531  165.794922 354.0625  167.462891 350.574219 C 168.199219 349.013672  169.044922 347.095703  169.998047 344.820312 C 170.083984 344.625  170.34375 344.527344  170.777344 344.527344 M 183.140625 362.503906 C 183.140625 362.982422  183.507812 363.404297  184.246094 363.773438 C 184.613281 363.945312  185.1875 364.152344  185.96875 364.390625 C 186.314453 364.476562  188.285156 363.96875  191.882812 362.863281 C 195.414062 361.757812  197.365234 361.085938  197.732422 360.847656 C 197.884766 360.740234  197.960938 360.544922  197.960938 360.263672 C 197.960938 359.873047  197.835938 359.414062  197.585938 358.882812 C 197.335938 358.351562  197.039062 357.935547  196.693359 357.630859 C 196.583984 357.542969  196.410156 357.5  196.173828 357.5 C 194.916016 357.5  192.142578 358.410156  187.851562 360.230469 C 189.044922 357.587891  189.671875 356.232422  189.736328 356.167969 C 192.771484 355.236328  195.78125 354.337891  198.773438 353.470703 C 199.076172 353.341797  199.228516 353.15625  199.228516 352.917969 C 199.228516 352.701172  199.054688 352.365234  198.708984 351.910156 C 198.361328 351.455078  198.169922 351.173828  198.138672 351.066406 C 198.107422 350.957031  197.884766 350.904297  197.472656 350.904297 C 196.779297 350.904297  195.582031 351.054688  193.880859 351.357422 C 192.179688 351.660156  191.384766 351.8125  191.492188 351.8125 C 191.449219 351.8125  191.623047 351.375  192.013672 350.496094 C 192.402344 349.617188  192.615234 349.113281  192.646484 348.982422 C 192.677734 348.853516  193.972656 348.646484  196.53125 348.365234 C 199.193359 348.0625  200.667969 347.824219  200.951172 347.650391 C 201.318359 347.433594  201.503906 347  201.503906 346.347656 C 201.503906 345.785156  201.394531 345.244141  201.177734 344.722656 C 201.113281 344.591797  200.787109 344.527344  200.203125 344.527344 C 199.162109 344.527344  197.494141 344.712891  195.197266 345.080078 C 193.138672 345.427734  191.666016 345.730469  190.777344 345.990234 C 189.974609 346.207031  188.523438 348.806641  186.423828 353.792969 C 184.798828 357.628906  183.714844 360.435547  183.173828 362.212891 C 183.150391 362.298828  183.140625 362.396484  183.140625 362.503906 M 203.537109 354.638672 C 202.474609 357.236328  201.412109 359.824219  200.351562 362.402344 C 200.330078 363.160156  200.623047 363.746094  201.228516 364.15625 C 201.705078 364.482422  202.257812 364.644531  202.886719 364.644531 C 203.341797 364.644531  203.568359 364.542969  203.568359 364.335938 C 203.568359 364.130859  204.154297 362.544922  205.324219 359.576172 C 206.472656 356.675781  207.099609 355.126953  207.208984 354.931641 C 207.361328 354.650391  207.501953 354.378906  207.630859 354.119141 C 207.871094 353.730469  208.183594 353.513672  208.574219 353.470703 C 208.943359 353.427734  209.462891 354.630859  210.134766 357.080078 C 211 360.267578  211.488281 361.980469  211.597656 362.21875 C 212.03125 363.236328  212.679688 363.746094  213.546875 363.746094 C 213.916016 363.746094  214.224609 363.664062  214.472656 363.501953 C 214.722656 363.339844  214.798828 363.177734  214.701172 363.013672 C 214.603516 362.853516  215.853516 360.226562  218.455078 355.134766 C 221.097656 349.958984  222.419922 347.21875  222.419922 346.914062 C 222.419922 346.503906  221.996094 346.189453  221.152344 345.972656 C 220.458984 345.777344  219.839844 345.712891  219.298828 345.777344 C 219.017578 345.820312  218.015625 347.878906  216.292969 351.951172 C 214.570312 356.025391  213.611328 358.0625  213.416016 358.0625 C 213.396484 358.041016  213.373047 358.007812  213.351562 357.964844 C 213.005859 355.732422  212.539062 353.486328  211.955078 351.232422 C 211.304688 348.652344  210.730469 347.080078  210.232422 346.515625 C 210.080078 346.320312  209.896484 346.222656  209.679688 346.222656 C 209.505859 346.222656  209.228516 346.316406  208.849609 346.5 C 208.472656 346.683594  208.205078 346.787109  208.054688 346.808594 C 207.273438 346.917969  205.767578 349.525391  203.537109 354.638672 " />
<path style="stroke-width:1.25;stroke:none;fill:#231F20;" d="M 128.880859 371.294922 C 128.880859 371.900391  128.638672 372.429688  128.150391 372.884766 C 127.662109 373.337891  127.148438 373.566406  126.607422 373.566406 C 125.785156 373.566406  125.330078 373.091797  125.242188 372.138672 C 125.199219 371.771484  124.808594 371.4375  124.072266 371.132812 C 123.335938 370.830078  122.544922 370.679688  121.699219 370.679688 C 120.853516 370.679688  120.162109 370.851562  119.619141 371.199219 C 118.796875 371.609375  117.960938 372.021484  117.117188 372.431641 C 116.011719 373.060547  115.492188 373.6875  115.556641 374.314453 C 115.621094 374.8125  116.478516 375.060547  118.125 375.060547 C 118.449219 375.060547  119.533203 375.019531  121.375 374.9375 C 125.253906 374.763672  127.191406 376.269531  127.191406 379.451172 C 127.191406 379.777344  127.160156 380.210938  127.09375 380.751953 C 126.943359 382.09375  125.902344 383.425781  123.974609 384.748047 C 121.9375 386.175781  119.826172 386.890625  117.636719 386.890625 C 113.888672 386.890625  111.255859 385.818359  109.740234 383.673828 C 109.71875 383.628906  109.707031 383.576172  109.707031 383.511719 C 109.707031 383.185547  110.103516 382.736328  110.892578 382.162109 C 111.683594 381.587891  112.306641 381.300781  112.761719 381.300781 C 113 381.300781  113.142578 381.398438  113.183594 381.591797 C 113.378906 382.738281  115.318359 383.429688  119.001953 383.667969 C 120.345703 383.753906  121.375 383.451172  122.089844 382.757812 C 122.740234 382.130859  123.193359 381.080078  123.455078 379.607422 C 123.5625 379.023438  122.933594 378.591797  121.568359 378.310547 C 120.507812 378.091797  119.175781 377.984375  117.572266 377.984375 C 116.25 377.984375  115.40625 378.039062  115.037109 378.148438 C 114.90625 378.191406  114.744141 378.212891  114.548828 378.212891 C 113.857422 378.212891  113.152344 378.039062  112.4375 377.693359 C 111.65625 377.28125  111.277344 376.816406  111.298828 376.296875 C 111.365234 374.933594  111.701172 373.763672  112.306641 372.791016 C 112.785156 372.054688  113.466797 371.373047  114.353516 370.744141 C 115.113281 370.267578  115.861328 369.792969  116.597656 369.316406 C 117.095703 368.990234  117.951172 368.699219  119.164062 368.439453 C 120.486328 368.136719  121.787109 367.984375  123.064453 367.984375 C 126.033203 367.984375  127.896484 368.775391  128.654297 370.353516 C 128.806641 370.65625  128.880859 370.96875  128.880859 371.294922 M 134.84375 368.980469 C 132.611328 369.326172  130.369141 369.685547  128.115234 370.052734 C 128.050781 370.357422  128.060547 370.986328  128.148438 371.939453 C 128.255859 373.023438  128.441406 373.566406  128.701172 373.566406 C 128.765625 373.566406  128.818359 373.544922  128.863281 373.5 C 129.166016 373.285156  129.935547 373.099609  131.169922 372.949219 C 131.667969 372.882812  132.253906 372.830078  132.925781 372.785156 C 132.990234 372.851562  133.044922 372.894531  133.087891 372.916016 C 133.21875 373.044922  133.292969 373.142578  133.316406 373.208984 C 133.292969 373.230469  133.261719 373.261719  133.21875 373.306641 C 132.978516 373.240234  131.992188 375.105469  130.259766 378.896484 C 128.527344 382.6875  127.746094 384.875  127.919922 385.460938 C 128.224609 386.414062  128.646484 386.890625  129.1875 386.890625 C 129.708984 386.890625  130.390625 386.414062  131.236328 385.460938 C 131.992188 383.552734  132.742188 381.646484  133.478516 379.740234 C 134.972656 376.185547  136.130859 374.105469  136.955078 373.498047 C 136.890625 373.433594  137.28125 373.052734  138.125 372.359375 C 141.591797 371.992188  143.417969 371.748047  143.601562 371.628906 C 143.785156 371.509766  143.878906 371.017578  143.878906 370.150391 C 143.878906 368.892578  143.650391 368.242188  143.195312 368.199219 C 141.916016 368.070312  139.132812 368.330078  134.84375 368.980469 M 152.867188 374.216797 C 153.667969 372.720703  154.166016 371.886719  154.361328 371.712891 C 155.119141 370.998047  156.474609 370.640625  158.423828 370.640625 C 160.244141 370.640625  161.251953 370.857422  161.447266 371.291016 C 161.576172 371.59375  160.992188 372.287109  159.691406 373.371094 C 158.888672 374.064453  158.087891 374.691406  157.287109 375.255859 C 156.722656 375.625  155.833984 376.013672  154.621094 376.425781 C 153.408203 376.837891  152.541016 377.042969  152.021484 377.042969 C 151.804688 377.042969  151.685547 377  151.664062 376.914062 C 151.621094 376.673828  152.021484 375.775391  152.867188 374.216797 M 161.835938 375.349609 C 163.763672 373.767578  164.728516 372.466797  164.728516 371.449219 C 164.728516 371.320312  164.707031 371.199219  164.664062 371.091797 C 164.230469 369.769531  163.191406 368.783203  161.544922 368.132812 C 160.330078 367.65625  158.964844 367.417969  157.449219 367.417969 C 156.841797 367.417969  156.365234 367.460938  156.019531 367.548828 C 152.314453 368.349609  150.341797 369.140625  150.103516 369.919922 C 150.017578 370.246094  149.962891 370.792969  149.941406 371.5625 C 149.919922 372.330078  149.833984 372.867188  149.681641 373.169922 C 148.835938 374.990234  148.003906 376.810547  147.179688 378.628906 C 145.466797 381.966797  144.048828 383.916016  142.921875 384.480469 C 142.833984 384.544922  142.791016 384.654297  142.791016 384.804688 C 142.791016 385.238281  143.007812 385.703125  143.441406 386.201172 C 143.939453 386.763672  144.482422 387.046875  145.066406 387.046875 C 145.652344 387.046875  146.224609 386.753906  146.789062 386.169922 C 147.005859 385.910156  147.601562 384.9375  148.576172 383.248047 C 149.486328 381.667969  149.996094 380.867188  150.103516 380.84375 C 150.861328 380.78125  151.707031 380.607422  152.638672 380.326172 C 156.474609 382.644531  158.509766 384.615234  158.75 386.240234 C 158.771484 386.457031  158.900391 386.566406  159.138672 386.566406 C 159.550781 386.566406  160.033203 386.326172  160.585938 385.851562 C 161.138672 385.373047  161.402344 384.929688  161.380859 384.517578 C 161.273438 382.761719  159.3125 381.007812  155.5 379.25 C 157.902344 378.167969  160.017578 376.867188  161.835938 375.349609 M 163.234375 385.003906 C 163.234375 385.482422  163.601562 385.904297  164.339844 386.273438 C 164.707031 386.445312  165.28125 386.652344  166.0625 386.890625 C 166.408203 386.976562  168.378906 386.46875  171.976562 385.363281 C 175.507812 384.257812  177.458984 383.585938  177.826172 383.347656 C 177.978516 383.240234  178.054688 383.044922  178.054688 382.763672 C 178.054688 382.373047  177.929688 381.914062  177.679688 381.382812 C 177.429688 380.851562  177.132812 380.435547  176.787109 380.130859 C 176.677734 380.042969  176.503906 380  176.267578 380 C 175.009766 380  172.236328 380.910156  167.947266 382.730469 C 169.138672 380.087891  169.765625 378.732422  169.832031 378.667969 C 172.865234 377.736328  175.876953 376.837891  178.867188 375.970703 C 179.169922 375.841797  179.322266 375.65625  179.322266 375.417969 C 179.322266 375.201172  179.148438 374.865234  178.802734 374.410156 C 178.455078 373.955078  178.263672 373.673828  178.232422 373.566406 C 178.201172 373.457031  177.978516 373.404297  177.566406 373.404297 C 176.873047 373.404297  175.675781 373.554688  173.974609 373.857422 C 172.273438 374.160156  171.478516 374.3125  171.585938 374.3125 C 171.542969 374.3125  171.716797 373.875  172.107422 372.996094 C 172.496094 372.117188  172.708984 371.613281  172.740234 371.482422 C 172.771484 371.353516  174.066406 371.146484  176.625 370.865234 C 179.289062 370.5625  180.761719 370.324219  181.044922 370.150391 C 181.412109 369.933594  181.597656 369.5  181.597656 368.847656 C 181.597656 368.285156  181.488281 367.744141  181.271484 367.222656 C 181.207031 367.091797  180.880859 367.027344  180.296875 367.027344 C 179.255859 367.027344  177.587891 367.212891  175.291016 367.580078 C 173.232422 367.927734  171.759766 368.230469  170.871094 368.490234 C 170.068359 368.707031  168.617188 371.306641  166.517578 376.292969 C 164.892578 380.128906  163.808594 382.935547  163.267578 384.712891 C 163.246094 384.798828  163.234375 384.896484  163.234375 385.003906 M 180.328125 385.003906 C 180.328125 385.482422  180.697266 385.904297  181.433594 386.273438 C 181.802734 386.445312  182.375 386.652344  183.15625 386.890625 C 183.503906 386.976562  185.474609 386.46875  189.070312 385.363281 C 192.601562 384.257812  194.552734 383.585938  194.919922 383.347656 C 195.072266 383.240234  195.148438 383.044922  195.148438 382.763672 C 195.148438 382.373047  195.023438 381.914062  194.773438 381.382812 C 194.525391 380.851562  194.228516 380.435547  193.880859 380.130859 C 193.773438 380.042969  193.599609 380  193.361328 380 C 192.103516 380  189.330078 380.910156  185.041016 382.730469 C 186.232422 380.087891  186.861328 378.732422  186.925781 378.667969 C 189.958984 377.736328  192.970703 376.837891  195.960938 375.970703 C 196.263672 375.841797  196.416016 375.65625  196.416016 375.417969 C 196.416016 375.201172  196.242188 374.865234  195.896484 374.410156 C 195.548828 373.955078  195.359375 373.673828  195.326172 373.566406 C 195.294922 373.457031  195.072266 373.404297  194.660156 373.404297 C 193.96875 373.404297  192.771484 373.554688  191.068359 373.857422 C 189.367188 374.160156  188.572266 374.3125  188.679688 374.3125 C 188.638672 374.3125  188.810547 373.875  189.201172 372.996094 C 189.589844 372.117188  189.802734 371.613281  189.833984 371.482422 C 189.867188 371.353516  191.162109 371.146484  193.71875 370.865234 C 196.382812 370.5625  197.857422 370.324219  198.138672 370.150391 C 198.505859 369.933594  198.691406 369.5  198.691406 368.847656 C 198.691406 368.285156  198.583984 367.744141  198.365234 367.222656 C 198.300781 367.091797  197.974609 367.027344  197.390625 367.027344 C 196.349609 367.027344  194.683594 367.212891  192.384766 367.580078 C 190.328125 367.927734  188.853516 368.230469  187.964844 368.490234 C 187.164062 368.707031  185.712891 371.306641  183.611328 376.292969 C 181.986328 380.128906  180.902344 382.935547  180.361328 384.712891 C 180.339844 384.798828  180.328125 384.896484  180.328125 385.003906 M 204.619141 368.980469 C 202.386719 369.326172  200.146484 369.685547  197.892578 370.052734 C 197.826172 370.357422  197.835938 370.986328  197.923828 371.939453 C 198.03125 373.023438  198.216797 373.566406  198.476562 373.566406 C 198.541016 373.566406  198.595703 373.544922  198.638672 373.5 C 198.941406 373.285156  199.710938 373.099609  200.947266 372.949219 C 201.443359 372.882812  202.029297 372.830078  202.701172 372.785156 C 202.767578 372.851562  202.820312 372.894531  202.865234 372.916016 C 202.994141 373.044922  203.068359 373.142578  203.091797 373.208984 C 203.068359 373.230469  203.037109 373.261719  202.994141 373.306641 C 202.755859 373.240234  201.769531 375.105469  200.037109 378.896484 C 198.302734 382.6875  197.523438 384.875  197.697266 385.460938 C 198 386.414062  198.421875 386.890625  198.964844 386.890625 C 199.484375 386.890625  200.166016 386.414062  201.011719 385.460938 C 201.769531 383.552734  202.517578 381.646484  203.253906 379.740234 C 204.75 376.185547  205.908203 374.105469  206.732422 373.498047 C 206.666016 373.433594  207.056641 373.052734  207.902344 372.359375 C 211.367188 371.992188  213.193359 371.748047  213.378906 371.628906 C 213.5625 371.509766  213.654297 371.017578  213.654297 370.150391 C 213.654297 368.892578  213.427734 368.242188  212.972656 368.199219 C 211.693359 368.070312  208.910156 368.330078  204.619141 368.980469 " />
<path style="stroke-width:1.25;stroke:none;fill:#231F20;" d="M 130.318359 390.210938 C 130.751953 390.210938  131.21875 390.509766  131.714844 391.105469 C 132.214844 391.701172  132.464844 392.128906  132.464844 392.388672 C 132.464844 392.431641  132.429688 392.443359  132.367188 392.421875 C 132.0625 392.292969  129.884766 396.214844  125.833984 404.191406 C 125.681641 404.451172  125.605469 404.677734  125.605469 404.873047 C 125.605469 405.089844  125.736328 405.199219  125.996094 405.199219 C 126.125 405.199219  126.505859 405.144531  127.132812 405.035156 C 127.761719 404.927734  128.335938 404.851562  128.857422 404.808594 C 129.505859 404.763672  129.972656 404.429688  130.253906 403.800781 C 130.382812 403.519531  130.470703 403.195312  130.513672 402.826172 C 130.990234 402.695312  131.509766 402.630859  132.074219 402.630859 C 133.416016 402.630859  134.089844 402.869141  134.089844 403.34375 C 134.089844 403.625  133.871094 404.199219  133.439453 405.066406 C 133.115234 405.671875  132.798828 406.279297  132.496094 406.884766 C 132.322266 407.273438  130.71875 407.78125  127.6875 408.410156 C 125.996094 408.734375  124.304688 409.060547  122.617188 409.384766 C 122.464844 409.427734  122.28125 409.449219  122.0625 409.449219 C 121.478516 409.449219  120.96875 409.330078  120.537109 409.091797 C 119.972656 408.810547  119.691406 408.398438  119.691406 407.857422 C 119.691406 407.53125  119.798828 407.173828  120.017578 406.785156 C 120.318359 406.15625  121.826172 403.535156  124.535156 398.919922 C 127.544922 393.763672  129.289062 390.947266  129.767578 390.470703 C 129.939453 390.296875  130.123047 390.210938  130.318359 390.210938 M 145.248047 391.414062 C 144.533203 390.677734  143.927734 390.308594  143.429688 390.308594 C 143.082031 390.308594  142.703125 390.732422  142.291016 391.576172 C 142.074219 392.076172  141.857422 392.574219  141.642578 393.072266 C 141.359375 393.484375  140.103516 395.914062  137.871094 400.357422 C 135.466797 405.125  134.263672 407.761719  134.263672 408.259766 C 134.263672 408.5625  134.453125 408.833984  134.832031 409.072266 C 135.210938 409.310547  135.638672 409.429688  136.117188 409.429688 C 136.767578 409.429688  137.253906 409.214844  137.580078 408.785156 C 139.550781 404.556641  141.457031 400.392578  143.298828 396.292969 C 143.472656 396.033203  143.949219 395.761719  144.728516 395.480469 C 145.400391 395.220703  145.898438 394.65625  146.224609 393.789062 C 146.289062 393.615234  146.322266 393.453125  146.322266 393.300781 C 146.322266 392.78125  145.962891 392.152344  145.248047 391.414062 M 154.914062 399.029297 C 155.304688 398.898438  155.748047 398.767578  156.246094 398.636719 C 159.236328 398.441406  161.835938 397.964844  164.046875 397.203125 C 164.197266 397.138672  164.339844 397.105469  164.46875 397.105469 C 165.292969 397.105469  165.953125 397.865234  166.451172 399.380859 C 165 400.701172  164.166016 401.396484  163.949219 401.460938 C 163.365234 401.632812  162.669922 402.326172  161.869141 403.541016 C 160.830078 405.123047  159.929688 406.259766  159.171875 406.953125 C 157.458984 408.578125  155.455078 409.390625  153.160156 409.390625 C 151.816406 409.390625  150.494141 409.119141  149.193359 408.578125 C 148.089844 408.123047  147.287109 407.625  146.789062 407.083984 C 145.988281 406.173828  145.585938 404.994141  145.585938 403.542969 C 145.585938 402.027344  146.009766 400.304688  146.853516 398.376953 C 147.503906 396.927734  148.142578 395.798828  148.771484 394.998047 C 150.267578 393.136719  152.238281 391.740234  154.6875 390.808594 C 156.59375 390.09375  158.402344 389.757812  160.115234 389.800781 C 161.414062 389.84375  162.617188 390.417969  163.722656 391.521484 C 164.177734 391.976562  164.599609 392.515625  164.990234 393.142578 C 164.708984 393.447266  164.480469 393.685547  164.306641 393.857422 C 163.787109 394.419922  163.375 394.841797  163.072266 395.123047 C 162.876953 395.253906  162.681641 395.382812  162.486328 395.513672 C 162.617188 395.208984  161.826172 394.484375  160.115234 393.335938 C 158.816406 393.445312  157.863281 393.583984  157.255859 393.757812 C 156.736328 393.888672  155.990234 394.203125  155.013672 394.701172 C 153.195312 395.611328  151.570312 396.923828  150.142578 398.636719 C 149.1875 399.785156  148.710938 400.935547  148.710938 402.083984 C 148.710938 403.275391  149.193359 404.267578  150.158203 405.060547 C 151.123047 405.851562  152.365234 406.246094  153.880859 406.246094 C 155.052734 406.246094  156.275391 405.552734  157.554688 404.164062 C 158.705078 402.925781  159.277344 401.949219  159.277344 401.232422 C 158.541016 401.255859  157.466797 401.400391  156.054688 401.667969 C 155.816406 401.712891  155.599609 401.734375  155.404297 401.734375 C 154.732422 401.734375  154.189453 401.539062  153.777344 401.146484 C 153.451172 400.822266  153.289062 400.472656  153.289062 400.105469 C 153.289062 399.974609  153.310547 399.875  153.353516 399.810547 C 153.484375 399.59375  154.003906 399.333984  154.914062 399.029297 M 176.013672 390.800781 C 176.490234 390.800781  176.951172 390.96875  177.394531 391.304688 C 177.837891 391.638672  178.017578 391.882812  177.929688 392.035156 C 175.503906 396.888672  174.291016 399.271484  174.291016 399.185547 C 174.291016 399.011719  175.546875 398.861328  178.060547 398.730469 C 179.945312 398.623047  181.160156 398.568359  181.701172 398.568359 C 181.505859 398.568359  182.785156 396.046875  185.535156 391.003906 C 185.751953 390.591797  186.142578 390.386719  186.705078 390.386719 C 187.269531 390.386719  187.804688 390.566406  188.314453 390.921875 C 188.822266 391.279297  189.044922 391.654297  188.980469 392.042969 C 188.9375 392  187.398438 394.814453  184.365234 400.486328 C 181.201172 406.396484  179.609375 409.369141  179.587891 409.400391 C 179.566406 409.431641  179.535156 409.449219  179.490234 409.449219 C 179.1875 409.449219  178.601562 408.798828  177.736328 407.5 C 179.316406 403.972656  180.076172 402.111328  180.009766 401.916016 C 180.009766 401.851562  179.859375 401.818359  179.554688 401.818359 C 179.013672 401.818359  177.789062 401.916016  175.882812 402.111328 C 174.148438 402.283203  173.240234 402.347656  173.152344 402.306641 C 172.958984 402.240234  171.710938 404.320312  169.416016 408.544922 C 169.197266 408.935547  168.818359 409.130859  168.277344 409.130859 C 167.910156 409.130859  167.580078 409.033203  167.287109 408.837891 C 166.994141 408.642578  166.847656 408.373047  166.847656 408.025391 C 166.847656 407.830078  166.902344 407.625  167.009766 407.408203 C 169.501953 402.208984  171.972656 397.041016  174.419922 391.90625 C 174.810547 391.167969  175.341797 390.800781  176.013672 390.800781 M 194.673828 391.480469 C 192.443359 391.826172  190.201172 392.185547  187.947266 392.552734 C 187.880859 392.857422  187.892578 393.486328  187.978516 394.439453 C 188.087891 395.523438  188.271484 396.066406  188.53125 396.066406 C 188.597656 396.066406  188.650391 396.044922  188.693359 396 C 188.998047 395.785156  189.767578 395.599609  191.001953 395.449219 C 191.5 395.382812  192.085938 395.330078  192.755859 395.285156 C 192.822266 395.351562  192.875 395.394531  192.919922 395.416016 C 193.048828 395.544922  193.125 395.642578  193.146484 395.708984 C 193.125 395.730469  193.09375 395.761719  193.048828 395.806641 C 192.810547 395.740234  191.826172 397.605469  190.091797 401.396484 C 188.357422 405.1875  187.578125 407.375  187.751953 407.960938 C 188.054688 408.914062  188.478516 409.390625  189.019531 409.390625 C 189.539062 409.390625  190.222656 408.914062  191.066406 407.960938 C 191.826172 406.052734  192.572266 404.146484  193.308594 402.240234 C 194.804688 398.685547  195.962891 396.605469  196.787109 395.998047 C 196.722656 395.933594  197.111328 395.552734  197.957031 394.859375 C 201.423828 394.492188  203.25 394.248047  203.433594 394.128906 C 203.617188 394.009766  203.708984 393.517578  203.708984 392.650391 C 203.708984 391.392578  203.482422 390.742188  203.027344 390.699219 C 201.748047 390.570312  198.964844 390.830078  194.673828 391.480469 " />
<path style="stroke-width:1.25;stroke:none;fill:#231F20;" d="M 460.09375 547.113281 C 460.460938 547.039062  460.955078 547.003906  461.580078 547.003906 C 463.191406 547.003906  464.640625 547.25  465.923828 547.744141 C 467.666016 548.423828  468.765625 549.458984  469.224609 550.851562 C 469.259766 550.980469  469.277344 551.115234  469.277344 551.263672 C 469.277344 552.251953  468.371094 553.525391  466.554688 555.083984 C 464.833984 556.566406  462.779297 557.896484  460.396484 559.068359 C 457.867188 560.314453  455.675781 561.019531  453.822266 561.185547 C 453.714844 561.203125  453.181641 562.037109  452.228516 563.685547 C 451.183594 565.5  450.541016 566.535156  450.304688 566.791016 C 449.736328 567.414062  449.138672 567.726562  448.517578 567.726562 C 447.875 567.726562  447.287109 567.423828  446.755859 566.818359 C 446.298828 566.306641  446.068359 565.820312  446.068359 565.361328 C 446.068359 565.197266  446.125 565.087891  446.234375 565.03125 C 447.425781 564.427734  448.919922 562.357422  450.716797 558.820312 C 451.615234 556.896484  452.503906 554.972656  453.384766 553.048828 C 453.548828 552.738281  453.640625 552.197266  453.660156 551.427734 C 453.677734 550.566406  453.732422 549.970703  453.822266 549.642578 C 454.080078 548.798828  456.169922 547.955078  460.09375 547.113281 M 455.830078 557.146484 C 456.398438 557.146484  457.326172 556.931641  458.609375 556.5 C 459.892578 556.070312  460.826172 555.654297  461.412109 555.25 C 462.255859 554.664062  463.109375 554.011719  463.972656 553.296875 C 465.345703 552.142578  465.960938 551.400391  465.814453 551.070312 C 465.611328 550.611328  464.548828 550.382812  462.625 550.382812 C 460.570312 550.382812  459.140625 550.757812  458.333984 551.509766 C 458.130859 551.710938  457.599609 552.601562  456.738281 554.177734 C 455.839844 555.826172  455.419922 556.771484  455.474609 557.009766 C 455.492188 557.101562  455.611328 557.146484  455.830078 557.146484 M 484.701172 563.996094 C 483.822266 565.132812  482.28125 566.039062  480.082031 566.716797 C 478.248047 567.285156  476.443359 567.570312  474.664062 567.570312 C 472.703125 567.570312  471.134766 567.230469  469.960938 566.552734 C 468.496094 565.691406  467.761719 564.361328  467.761719 562.566406 C 467.761719 560.185547  468.439453 557.830078  469.796875 555.501953 C 471.152344 553.173828  472.896484 551.287109  475.021484 549.839844 C 477.257812 548.298828  479.558594 547.53125  481.923828 547.53125 C 483.958984 547.53125  485.697266 548.162109  487.134766 549.427734 C 488.574219 550.691406  489.294922 552.341797  489.294922 554.375 C 489.294922 556.847656  487.763672 560.056641  484.701172 563.996094 M 473.398438 563.472656 C 474.169922 563.892578  475.085938 564.105469  476.148438 564.105469 C 478.019531 564.105469  480.123047 562.904297  482.460938 560.501953 C 484.798828 558.099609  485.966797 555.964844  485.966797 554.09375 C 485.966797 553.140625  485.462891 552.378906  484.455078 551.8125 C 483.628906 551.353516  482.693359 551.125  481.648438 551.125 C 479.119141 551.125  476.878906 552.177734  474.925781 554.287109 C 472.972656 556.394531  471.996094 558.714844  471.996094 561.244141 C 471.996094 562.216797  472.464844 562.958984  473.398438 563.472656 M 504.259766 547.763672 C 502.574219 547.763672  499.660156 548.085938  495.515625 548.728516 C 493.388672 549.076172  491.261719 549.425781  489.134766 549.773438 C 489.117188 549.865234  489.107422 550.076172  489.107422 550.40625 C 489.107422 552.443359  489.328125 553.462891  489.767578 553.462891 C 489.804688 553.462891  489.849609 553.443359  489.90625 553.40625 C 490.236328 553.167969  491.052734 552.966797  492.353516 552.802734 C 492.884766 552.748047  493.5 552.691406  494.195312 552.636719 C 494.267578 552.708984  494.333984 552.765625  494.388672 552.802734 C 494.515625 552.929688  494.599609 553.03125  494.634766 553.105469 C 494.599609 553.123047  494.5625 553.150391  494.525391 553.1875 C 494.267578 553.113281  493.224609 555.083984  491.390625 559.099609 C 489.556641 563.115234  488.732422 565.433594  488.916016 566.056641 C 489.226562 567.066406  489.677734 567.570312  490.263672 567.570312 C 490.8125 567.570312  491.537109 567.066406  492.435547 566.056641 C 493.224609 564.039062  494.011719 562.021484  494.800781 560.003906 C 496.396484 556.246094  497.625 554.044922  498.486328 553.404297 C 498.412109 553.330078  498.816406 552.927734  499.695312 552.193359 C 503.380859 551.808594  505.314453 551.556641  505.498047 551.4375 C 505.681641 551.318359  505.773438 550.791016  505.773438 549.855469 C 505.773438 548.535156  505.544922 547.847656  505.085938 547.792969 C 504.865234 547.773438  504.589844 547.763672  504.259766 547.763672 M 514.357422 547.90625 C 514.871094 547.90625  515.375 548.091797  515.871094 548.457031 C 516.310547 548.787109  516.492188 549.035156  516.419922 549.199219 C 515.630859 550.794922  514.853516 552.388672  514.083984 553.984375 C 513.074219 556.037109  512.570312 556.972656  512.570312 556.789062 C 512.570312 556.605469  513.898438 556.441406  516.558594 556.294922 C 518.537109 556.185547  519.8125 556.128906  520.380859 556.128906 C 520.197266 556.128906  521.552734 553.455078  524.451172 548.103516 C 524.6875 547.681641  525.099609 547.472656  525.6875 547.472656 C 526.273438 547.472656  526.837891 547.660156  527.378906 548.035156 C 527.919922 548.410156  528.152344 548.800781  528.080078 549.203125 C 528.042969 549.167969  526.419922 552.144531  523.212891 558.136719 C 519.875 564.404297  518.193359 567.556641  518.166016 567.591797 C 518.138672 567.628906  518.097656 567.646484  518.042969 567.646484 C 517.730469 567.646484  517.117188 566.960938  516.201172 565.585938 C 517.886719 561.830078  518.693359 559.851562  518.621094 559.650391 C 518.601562 559.59375  518.427734 559.566406  518.097656 559.566406 C 517.529297 559.566406  516.246094 559.667969  514.248047 559.869141 C 512.414062 560.052734  511.451172 560.125  511.361328 560.089844 C 511.158203 560.015625  509.839844 562.216797  507.400391 566.689453 C 507.179688 567.091797  506.777344 567.294922  506.191406 567.294922 C 505.804688 567.294922  505.460938 567.189453  505.160156 566.978516 C 504.857422 566.767578  504.705078 566.488281  504.705078 566.138672 C 504.705078 565.9375  504.759766 565.71875  504.871094 565.480469 C 507.492188 559.960938  510.095703 554.498047  512.679688 549.089844 C 513.101562 548.300781  513.660156 547.90625  514.357422 547.90625 M 543.496094 563.996094 C 542.615234 565.132812  541.076172 566.039062  538.875 566.716797 C 537.042969 567.285156  535.236328 567.570312  533.458984 567.570312 C 531.496094 567.570312  529.929688 567.230469  528.755859 566.552734 C 527.289062 565.691406  526.554688 564.361328  526.554688 562.566406 C 526.554688 560.185547  527.234375 557.830078  528.589844 555.501953 C 529.947266 553.173828  531.689453 551.287109  533.816406 549.839844 C 536.052734 548.298828  538.353516 547.53125  540.71875 547.53125 C 542.753906 547.53125  544.490234 548.162109  545.929688 549.427734 C 547.369141 550.691406  548.087891 552.341797  548.087891 554.375 C 548.087891 556.847656  546.558594 560.056641  543.496094 563.996094 M 532.193359 563.472656 C 532.962891 563.892578  533.878906 564.105469  534.943359 564.105469 C 536.8125 564.105469  538.916016 562.904297  541.253906 560.501953 C 543.591797 558.099609  544.759766 555.964844  544.759766 554.09375 C 544.759766 553.140625  544.255859 552.378906  543.248047 551.8125 C 542.423828 551.353516  541.488281 551.125  540.443359 551.125 C 537.912109 551.125  535.671875 552.177734  533.71875 554.287109 C 531.767578 556.394531  530.791016 558.714844  530.791016 561.244141 C 530.791016 562.216797  531.257812 562.958984  532.193359 563.472656 M 558.675781 547.294922 C 559.134766 547.294922  559.638672 547.625  560.1875 548.285156 C 560.683594 548.892578  560.929688 549.322266  560.929688 549.580078 C 560.929688 549.634766  560.902344 549.654297  560.847656 549.634766 C 560.5 549.505859  558.191406 553.650391  553.917969 562.068359 C 553.771484 562.361328  553.697266 562.601562  553.697266 562.785156 C 553.697266 563.003906  553.835938 563.115234  554.111328 563.115234 C 554.257812 563.115234  554.642578 563.060547  555.265625 562.949219 C 555.960938 562.839844  556.576172 562.765625  557.107422 562.730469 C 557.804688 562.691406  558.308594 562.326172  558.621094 561.628906 C 558.75 561.355469  558.832031 561.025391  558.867188 560.638672 C 559.380859 560.474609  559.931641 560.392578  560.517578 560.392578 C 561.617188 560.392578  562.314453 560.583984  562.607422 560.96875 C 562.646484 561.025391  562.662109 561.087891  562.662109 561.162109 C 562.662109 561.474609  562.425781 562.087891  561.947266 563.005859 C 561.617188 563.648438  561.287109 564.289062  560.958984 564.931641 C 560.773438 565.333984  559.087891 565.867188  555.898438 566.527344 C 554.101562 566.875  552.304688 567.224609  550.507812 567.574219 C 550.361328 567.609375  550.169922 567.628906  549.929688 567.628906 C 549.326172 567.628906  548.794922 567.507812  548.335938 567.271484 C 547.75 566.976562  547.455078 566.537109  547.455078 565.949219 C 547.455078 565.619141  547.556641 565.244141  547.757812 564.822266 C 548.087891 564.162109  549.683594 561.382812  552.542969 556.486328 C 555.732422 551.039062  557.583984 548.056641  558.097656 547.542969 C 558.263672 547.378906  558.455078 547.294922  558.675781 547.294922 M 562.035156 565.560547 C 562.035156 566.332031  563.042969 567  565.058594 567.570312 C 565.408203 567.679688  567.498047 567.138672  571.330078 565.947266 C 575.052734 564.792969  577.103516 564.085938  577.490234 563.830078 C 577.654297 563.71875  577.738281 563.507812  577.738281 563.197266 C 577.738281 562.792969  577.603516 562.3125  577.337891 561.753906 C 577.072266 561.195312  576.755859 560.75  576.388672 560.419922 C 576.279297 560.328125  576.097656 560.28125  575.839844 560.28125 C 574.501953 560.28125  571.568359 561.244141  567.039062 563.169922 C 568.287109 560.382812  568.947266 558.953125  569.019531 558.878906 C 569.037109 558.861328  570.486328 558.439453  573.365234 557.615234 C 576.353516 556.753906  578.09375 556.220703  578.589844 556.019531 C 578.919922 555.890625  579.083984 555.699219  579.083984 555.441406 C 579.083984 555.203125  578.902344 554.845703  578.535156 554.369141 C 578.167969 553.892578  577.966797 553.599609  577.929688 553.490234 C 577.892578 553.378906  577.654297 553.324219  577.214844 553.324219 C 576.482422 553.324219  575.216797 553.480469  573.419922 553.792969 C 571.623047 554.103516  570.779297 554.259766  570.888672 554.259766 C 570.853516 554.259766  571.027344 553.820312  571.412109 552.9375 C 571.833984 551.966797  572.0625 551.410156  572.099609 551.273438 C 572.136719 551.136719  573.511719 550.910156  576.224609 550.599609 C 579.048828 550.287109  580.607422 550.039062  580.900391 549.855469 C 581.285156 549.617188  581.476562 549.160156  581.476562 548.480469 C 581.476562 547.875  581.357422 547.306641  581.121094 546.773438 C 581.064453 546.626953  580.724609 546.552734  580.101562 546.552734 C 579.001953 546.552734  577.232422 546.755859  574.794922 547.158203 C 572.630859 547.507812  571.072266 547.820312  570.121094 548.09375 C 569.277344 548.332031  567.746094 551.083984  565.527344 556.345703 C 563.804688 560.417969  562.658203 563.388672  562.089844 565.257812 C 562.052734 565.369141  562.035156 565.46875  562.035156 565.560547 M 584.142578 558.357422 C 583.722656 559.53125  583.380859 560.21875  583.125 560.419922 C 583.601562 560.4375  584.005859 560.455078  584.335938 560.474609 C 585.251953 560.511719  585.986328 560.529297  586.535156 560.529297 C 587.287109 560.529297  587.617188 560.492188  587.525391 560.419922 C 587.324219 560.291016  588.40625 558.419922  590.771484 554.810547 C 593.832031 551.712891  595.363281 549.650391  595.363281 548.625 C 595.363281 548.185547  595.052734 547.972656  594.427734 547.992188 C 593.914062 548.009766  593.191406 548  592.255859 547.964844 C 591.191406 547.910156  590.496094 547.882812  590.166016 547.882812 C 588.919922 547.882812  588.166016 548.09375  587.910156 548.513672 C 586.554688 552.052734  585.810547 553.986328  585.683594 554.316406 C 585.482422 554.773438  584.96875 556.121094  584.142578 558.357422 M 580.402344 565.982422 C 580.402344 566.695312  580.714844 567.228516  581.337891 567.576172 C 581.613281 567.740234  581.90625 567.824219  582.21875 567.824219 C 582.712891 567.824219  583.236328 567.638672  583.785156 567.273438 C 584.207031 567.017578  584.601562 566.677734  584.96875 566.257812 C 585.316406 565.888672  585.462891 565.707031  585.408203 565.707031 C 585.462891 565.707031  585.53125 565.601562  585.615234 565.390625 C 585.697266 565.179688  585.738281 564.945312  585.738281 564.689453 C 585.738281 563.792969  585.224609 563.140625  584.197266 562.738281 C 583.996094 562.664062  583.794922 562.628906  583.59375 562.628906 C 583.134766 562.628906  582.666016 562.820312  582.191406 563.205078 C 582.117188 563.279297  581.759766 563.636719  581.117188 564.277344 C 580.642578 564.753906  580.402344 565.322266  580.402344 565.982422 " />
<path style="stroke-width:1.25;stroke:none;fill:#231F20;" d="M 900.849609 483.292969 C 901.208984 483.173828  901.619141 483.052734  902.080078 482.935547 C 904.839844 482.753906  907.240234 482.316406  909.279297 481.617188 C 909.419922 481.556641  909.548828 481.527344  909.669922 481.527344 C 910.429688 481.527344  911.039062 482.226562  911.5 483.626953 C 910.160156 484.847656  909.388672 485.486328  909.189453 485.546875 C 908.648438 485.707031  908.009766 486.347656  907.269531 487.466797 C 906.308594 488.927734  905.478516 489.976562  904.779297 490.617188 C 903.199219 492.117188  901.349609 492.867188  899.228516 492.867188 C 897.990234 492.867188  896.769531 492.617188  895.568359 492.117188 C 894.548828 491.697266  893.808594 491.236328  893.349609 490.738281 C 892.609375 489.898438  892.240234 488.808594  892.240234 487.46875 C 892.240234 486.068359  892.628906 484.480469  893.410156 482.699219 C 894.009766 481.359375  894.599609 480.320312  895.179688 479.580078 C 896.558594 477.861328  898.378906 476.570312  900.638672 475.710938 C 902.398438 475.050781  904.068359 474.740234  905.648438 474.78125 C 906.849609 474.820312  907.958984 475.351562  908.978516 476.369141 C 909.398438 476.789062  909.789062 477.289062  910.148438 477.869141 C 909.888672 478.148438  909.679688 478.369141  909.519531 478.529297 C 909.037109 479.048828  908.660156 479.4375  908.378906 479.697266 C 908.197266 479.816406  908.017578 479.9375  907.837891 480.056641 C 907.958984 479.777344  907.228516 479.107422  905.646484 478.046875 C 904.445312 478.146484  903.566406 478.277344  903.005859 478.4375 C 902.525391 478.556641  901.833984 478.847656  900.933594 479.306641 C 899.253906 480.146484  897.751953 481.357422  896.431641 482.9375 C 895.550781 483.998047  895.111328 485.056641  895.111328 486.117188 C 895.111328 487.216797  895.554688 488.132812  896.445312 488.861328 C 897.333984 489.591797  898.478516 489.957031  899.878906 489.957031 C 900.958984 489.957031  902.087891 489.316406  903.267578 488.037109 C 904.326172 486.896484  904.857422 485.998047  904.857422 485.337891 C 904.177734 485.357422  903.191406 485.484375  901.892578 485.71875 C 901.673828 485.757812  901.474609 485.777344  901.294922 485.777344 C 900.677734 485.777344  900.177734 485.597656  899.798828 485.238281 C 899.5 484.939453  899.349609 484.619141  899.349609 484.28125 C 899.349609 484.160156  899.369141 484.072266  899.410156 484.011719 C 899.529297 483.8125  900.009766 483.574219  900.849609 483.292969 M 921.121094 481.167969 C 921.861328 479.787109  922.322266 479.017578  922.501953 478.857422 C 923.201172 478.197266  924.451172 477.867188  926.251953 477.867188 C 927.931641 477.867188  928.861328 478.066406  929.041016 478.466797 C 929.162109 478.748047  928.621094 479.386719  927.421875 480.386719 C 926.681641 481.027344  925.941406 481.607422  925.201172 482.126953 C 924.681641 482.466797  923.861328 482.826172  922.742188 483.207031 C 921.621094 483.587891  920.822266 483.777344  920.341797 483.777344 C 920.142578 483.777344  920.03125 483.736328  920.011719 483.65625 C 919.972656 483.4375  920.341797 482.607422  921.121094 481.167969 M 929.402344 482.21875 C 931.181641 480.757812  932.072266 479.558594  932.072266 478.619141 C 932.072266 478.498047  932.052734 478.388672  932.011719 478.289062 C 931.611328 477.068359  930.652344 476.158203  929.130859 475.558594 C 928.011719 475.119141  926.751953 474.898438  925.351562 474.898438 C 924.791016 474.898438  924.351562 474.9375  924.03125 475.017578 C 920.611328 475.757812  918.791016 476.490234  918.572266 477.208984 C 918.492188 477.509766  918.441406 478.013672  918.421875 478.724609 C 918.402344 479.435547  918.322266 479.929688  918.181641 480.208984 C 917.402344 481.890625  916.630859 483.570312  915.871094 485.25 C 914.291016 488.332031  912.982422 490.132812  911.941406 490.654297 C 911.861328 490.712891  911.822266 490.8125  911.822266 490.953125 C 911.822266 491.353516  912.021484 491.783203  912.421875 492.244141 C 912.880859 492.763672  913.380859 493.023438  913.921875 493.023438 C 914.460938 493.023438  914.992188 492.753906  915.511719 492.212891 C 915.710938 491.972656  916.261719 491.072266  917.162109 489.509766 C 918.001953 488.048828  918.472656 487.308594  918.572266 487.289062 C 919.271484 487.228516  920.052734 487.068359  920.912109 486.806641 C 924.451172 488.947266  926.332031 490.767578  926.552734 492.267578 C 926.572266 492.466797  926.691406 492.566406  926.912109 492.566406 C 927.291016 492.566406  927.736328 492.347656  928.246094 491.90625 C 928.755859 491.466797  929.001953 491.056641  928.982422 490.677734 C 928.880859 489.056641  927.072266 487.4375  923.552734 485.818359 C 925.771484 484.818359  927.722656 483.619141  929.402344 482.21875 M 934.875 490.855469 C 935.474609 490.455078  936.333984 490.095703  937.455078 489.775391 C 938.794922 489.414062  940.083984 489.234375  941.324219 489.234375 C 942.183594 489.234375  942.974609 489.324219  943.693359 489.503906 C 943.455078 490.246094  943.335938 490.835938  943.335938 491.275391 C 943.335938 491.457031  943.353516 491.607422  943.396484 491.726562 C 943.535156 492.007812  943.943359 492.146484  944.625 492.146484 C 945.164062 492.146484  945.59375 492.066406  945.914062 491.90625 C 946.173828 491.767578  946.59375 490.056641  947.173828 486.775391 C 947.8125 483.333984  948.132812 480.681641  948.132812 478.820312 C 948.132812 477.861328  948.033203 477.261719  947.833984 477.021484 C 947.292969 476.400391  946.833984 476.089844  946.453125 476.089844 L 945.972656 476.089844 C 945.732422 476.109375  945.513672 476.109375  945.3125 476.089844 C 944.412109 476.029297  941.962891 477.982422  937.964844 481.949219 C 933.964844 485.914062  931.554688 488.78125  930.736328 490.548828 C 930.615234 490.830078  930.554688 491.091797  930.554688 491.330078 C 930.554688 492.195312  931.314453 492.707031  932.833984 492.867188 L 934.875 490.855469 Z M 943.988281 481.519531 C 944.1875 481.519531  944.378906 481.570312  944.558594 481.669922 C 944.597656 481.691406  944.617188 481.8125  944.617188 482.035156 C 944.617188 482.378906  944.556641 482.996094  944.4375 483.884766 C 944.318359 484.775391  944.257812 485.230469  944.257812 485.25 C 944.257812 485.431641  943.878906 485.724609  943.119141 486.128906 L 938.714844 486.447266 C 941.111328 483.162109  942.869141 481.519531  943.988281 481.519531 M 948.261719 491.1875 C 948.261719 491.607422  948.447266 491.982422  948.816406 492.3125 C 949.1875 492.642578  949.591797 492.808594  950.03125 492.808594 C 950.392578 492.808594  950.710938 492.677734  950.992188 492.417969 C 953.191406 487.71875  954.322266 485.337891  954.380859 485.279297 C 957.181641 484.417969  959.960938 483.587891  962.722656 482.787109 C 963.001953 482.667969  963.142578 482.498047  963.142578 482.277344 C 963.142578 482.076172  962.982422 481.767578  962.662109 481.347656 C 962.341797 480.927734  962.166016 480.667969  962.136719 480.566406 C 962.107422 480.466797  961.902344 480.417969  961.523438 480.417969 C 960.880859 480.417969  959.777344 480.556641  958.207031 480.837891 C 956.636719 481.117188  955.902344 481.257812  956.003906 481.257812 C 955.960938 481.257812  956.121094 480.851562  956.482422 480.041016 C 956.841797 479.230469  957.037109 478.763672  957.066406 478.642578 C 957.097656 478.523438  958.291016 478.333984  960.652344 478.072266 C 963.111328 477.792969  964.472656 477.572266  964.732422 477.412109 C 965.072266 477.210938  965.242188 476.810547  965.242188 476.208984 C 965.242188 475.689453  965.142578 475.1875  964.941406 474.708984 C 964.880859 474.587891  964.582031 474.527344  964.041016 474.527344 C 963.082031 474.527344  961.541016 474.699219  959.421875 475.037109 C 957.521484 475.357422  956.162109 475.638672  955.341797 475.878906 C 954.601562 476.078125  953.261719 478.480469  951.322266 483.083984 C 949.822266 486.625  948.822266 489.216797  948.322266 490.857422 C 948.28125 490.957031  948.261719 491.066406  948.261719 491.1875 M 964.041016 491.1875 C 964.041016 491.607422  964.226562 491.982422  964.597656 492.3125 C 964.966797 492.642578  965.371094 492.808594  965.8125 492.808594 C 966.171875 492.808594  966.492188 492.677734  966.771484 492.417969 C 968.972656 487.71875  970.101562 485.337891  970.162109 485.279297 C 972.960938 484.417969  975.742188 483.587891  978.501953 482.787109 C 978.78125 482.667969  978.921875 482.498047  978.921875 482.277344 C 978.921875 482.076172  978.761719 481.767578  978.441406 481.347656 C 978.121094 480.927734  977.947266 480.667969  977.916016 480.566406 C 977.886719 480.466797  977.681641 480.417969  977.302734 480.417969 C 976.662109 480.417969  975.556641 480.556641  973.986328 480.837891 C 972.416016 481.117188  971.681641 481.257812  971.78125 481.257812 C 971.742188 481.257812  971.902344 480.851562  972.261719 480.041016 C 972.621094 479.230469  972.816406 478.763672  972.847656 478.642578 C 972.876953 478.523438  974.072266 478.333984  976.431641 478.072266 C 978.892578 477.792969  980.251953 477.572266  980.511719 477.412109 C 980.851562 477.210938  981.021484 476.810547  981.021484 476.208984 C 981.021484 475.689453  980.921875 475.1875  980.722656 474.708984 C 980.662109 474.587891  980.361328 474.527344  979.822266 474.527344 C 978.861328 474.527344  977.322266 474.699219  975.201172 475.037109 C 973.302734 475.357422  971.941406 475.638672  971.121094 475.878906 C 970.380859 476.078125  969.041016 478.480469  967.101562 483.083984 C 965.601562 486.625  964.601562 489.216797  964.101562 490.857422 C 964.0625 490.957031  964.041016 491.066406  964.041016 491.1875 M 990.021484 476.271484 C 989.361328 475.591797  988.800781 475.25  988.339844 475.25 C 988.021484 475.25  987.669922 475.640625  987.291016 476.419922 C 987.089844 476.882812  986.888672 477.341797  986.691406 477.802734 C 986.429688 478.183594  985.271484 480.423828  983.210938 484.529297 C 980.990234 488.933594  979.880859 491.365234  979.880859 491.826172 C 979.880859 492.105469  980.054688 492.355469  980.404297 492.576172 C 980.755859 492.796875  981.148438 492.90625  981.589844 492.90625 C 982.189453 492.90625  982.638672 492.705078  982.941406 492.300781 C 984.759766 488.398438  986.521484 484.556641  988.220703 480.773438 C 988.380859 480.533203  988.818359 480.283203  989.541016 480.023438 C 990.160156 479.783203  990.621094 479.263672  990.919922 478.462891 C 990.978516 478.302734  991.009766 478.152344  991.009766 478.011719 C 991.009766 477.53125  990.679688 476.951172  990.021484 476.271484 M 996.884766 476.341797 C 994.824219 476.660156  992.753906 476.990234  990.673828 477.330078 C 990.615234 477.609375  990.625 478.189453  990.705078 479.068359 C 990.804688 480.066406  990.974609 480.566406  991.214844 480.566406 C 991.273438 480.566406  991.324219 480.546875  991.365234 480.507812 C 991.644531 480.306641  992.353516 480.136719  993.494141 479.998047 C 993.955078 479.9375  994.494141 479.886719  995.115234 479.847656 C 995.173828 479.90625  995.224609 479.947266  995.263672 479.966797 C 995.384766 480.087891  995.455078 480.177734  995.474609 480.236328 L 995.384766 480.326172 C 995.164062 480.267578  994.253906 481.986328  992.654297 485.486328 C 991.054688 488.986328  990.333984 491.007812  990.494141 491.546875 C 990.773438 492.427734  991.164062 492.867188  991.664062 492.867188 C 992.144531 492.867188  992.773438 492.427734  993.554688 491.546875 C 994.253906 489.789062  994.943359 488.029297  995.625 486.267578 C 997.003906 482.990234  998.074219 481.070312  998.833984 480.509766 C 998.773438 480.451172  999.134766 480.101562  999.914062 479.460938 C 1003.115234 479.121094  1004.798828 478.896484  1004.96875 478.785156 C 1005.138672 478.675781  1005.224609 478.220703  1005.224609 477.419922 C 1005.224609 476.261719  1005.013672 475.662109  1004.59375 475.621094 C 1003.414062 475.5  1000.84375 475.740234  996.884766 476.341797 M 1014.378906 476.271484 C 1013.71875 475.591797  1013.160156 475.25  1012.699219 475.25 C 1012.378906 475.25  1012.029297 475.640625  1011.648438 476.419922 C 1011.449219 476.882812  1011.25 477.341797  1011.048828 477.802734 C 1010.789062 478.183594  1009.628906 480.423828  1007.568359 484.529297 C 1005.349609 488.933594  1004.240234 491.365234  1004.240234 491.826172 C 1004.240234 492.105469  1004.414062 492.355469  1004.763672 492.576172 C 1005.115234 492.796875  1005.509766 492.90625  1005.949219 492.90625 C 1006.548828 492.90625  1007 492.705078  1007.298828 492.300781 C 1009.119141 488.398438  1010.878906 484.556641  1012.580078 480.773438 C 1012.740234 480.533203  1013.179688 480.283203  1013.898438 480.023438 C 1014.519531 479.783203  1014.978516 479.263672  1015.279297 478.462891 C 1015.339844 478.302734  1015.369141 478.152344  1015.369141 478.011719 C 1015.369141 477.53125  1015.039062 476.951172  1014.378906 476.271484 " />
<path style="stroke-width:1.25;stroke:none;fill:#231F20;" d="M 906.990234 512.25 C 906.210938 513.248047  904.861328 514.039062  902.941406 514.619141 C 901.339844 515.117188  899.771484 515.367188  898.230469 515.367188 C 894.210938 515.367188  892.201172 513.908203  892.201172 510.990234 C 892.201172 507.791016  893.474609 504.808594  896.025391 502.039062 C 898.576172 499.271484  901.419922 497.886719  904.560547 497.886719 C 906.339844 497.886719  907.855469 498.4375  909.105469 499.535156 C 910.355469 500.636719  910.980469 502.074219  910.980469 503.853516 C 910.980469 506.011719  909.650391 508.810547  906.990234 512.25 M 897.121094 511.796875 C 897.800781 512.177734  898.599609 512.367188  899.521484 512.367188 C 901.140625 512.367188  902.970703 511.316406  905.009766 509.216797 C 907.050781 507.117188  908.070312 505.248047  908.070312 503.607422 C 908.070312 502.767578  907.630859 502.107422  906.75 501.626953 C 906.03125 501.226562  905.210938 501.027344  904.291016 501.027344 C 902.111328 501.027344  900.166016 501.941406  898.455078 503.771484 C 896.746094 505.601562  895.890625 507.626953  895.890625 509.847656 C 895.890625 510.6875  896.300781 511.337891  897.121094 511.796875 M 914.46875 506.365234 C 913.490234 508.763672  912.509766 511.154297  911.529297 513.53125 C 911.509766 514.232422  911.779297 514.771484  912.339844 515.152344 C 912.779297 515.451172  913.289062 515.601562  913.869141 515.601562 C 914.289062 515.601562  914.5 515.505859  914.5 515.316406 C 914.5 515.126953  915.039062 513.664062  916.119141 510.923828 C 917.179688 508.246094  917.759766 506.816406  917.859375 506.636719 C 918 506.376953  918.128906 506.126953  918.25 505.886719 C 918.46875 505.527344  918.759766 505.326172  919.119141 505.287109 C 919.458984 505.248047  919.939453 506.357422  920.558594 508.615234 C 921.359375 511.552734  921.808594 513.132812  921.910156 513.351562 C 922.308594 514.292969  922.910156 514.761719  923.708984 514.761719 C 924.048828 514.761719  924.333984 514.6875  924.564453 514.537109 C 924.794922 514.386719  924.865234 514.236328  924.773438 514.087891 C 924.683594 513.9375  925.839844 511.513672  928.240234 506.816406 C 930.679688 502.039062  931.898438 499.509766  931.898438 499.230469 C 931.898438 498.849609  931.509766 498.560547  930.728516 498.359375 C 930.089844 498.179688  929.519531 498.119141  929.019531 498.179688 C 928.759766 498.21875  927.833984 500.117188  926.244141 503.873047 C 924.654297 507.628906  923.769531 509.507812  923.589844 509.507812 C 923.568359 509.488281  923.548828 509.458984  923.529297 509.417969 C 923.208984 507.359375  922.779297 505.292969  922.240234 503.212891 C 921.638672 500.835938  921.109375 499.386719  920.648438 498.867188 C 920.509766 498.6875  920.339844 498.597656  920.138672 498.597656 C 919.978516 498.597656  919.724609 498.681641  919.375 498.851562 C 919.023438 499.021484  918.779297 499.117188  918.638672 499.136719 C 917.919922 499.236328  916.529297 501.646484  914.46875 506.365234 M 941.738281 505.224609 C 940.677734 509.181641  940.148438 511.941406  940.148438 513.5 C 940.148438 513.861328  940.177734 514.128906  940.240234 514.310547 C 940.5 514.949219  941.148438 515.269531  942.189453 515.269531 C 943.027344 515.269531  943.537109 515.080078  943.71875 514.699219 C 944.257812 513.521484  945.578125 511.501953  947.677734 508.644531 C 949.738281 505.845703  950.777344 504.597656  950.798828 504.896484 C 951.257812 506.837891  951.580078 510.167969  951.759766 514.886719 C 954.5 514.347656  955.75 513.837891  955.509766 513.357422 C 955.367188 513.058594  956.828125 510.75  959.888672 506.431641 C 962.988281 502.03125  964.537109 499.763672  964.537109 499.623047 C 964.537109 499.203125  963.867188 498.664062  962.529297 498.003906 C 962.328125 497.904297  960.96875 499.494141  958.447266 502.771484 C 957.1875 504.449219  955.917969 506.119141  954.638672 507.777344 L 954.548828 499.046875 C 953.308594 499.527344  952.46875 499.767578  952.027344 499.767578 C 951.908203 499.767578  951.818359 499.748047  951.757812 499.707031 C 951.617188 499.607422  950.558594 500.65625  948.578125 502.857422 C 947.21875 504.396484  945.847656 505.947266  944.46875 507.507812 C 944.447266 507.527344  944.4375 507.507812  944.4375 507.447266 C 944.4375 507.167969  944.728516 506.101562  945.308594 504.251953 C 945.888672 502.402344  946.277344 501.306641  946.478516 500.966797 C 946.517578 500.927734  946.539062 500.876953  946.539062 500.816406 C 946.539062 500.376953  945.558594 499.947266  943.599609 499.527344 C 943.378906 499.527344  942.757812 501.425781  941.738281 505.224609 M 967.09375 513.355469 C 967.693359 512.955078  968.554688 512.595703  969.673828 512.275391 C 971.013672 511.914062  972.304688 511.734375  973.544922 511.734375 C 974.404297 511.734375  975.193359 511.824219  975.914062 512.003906 C 975.673828 512.746094  975.554688 513.335938  975.554688 513.775391 C 975.554688 513.957031  975.574219 514.107422  975.615234 514.226562 C 975.753906 514.507812  976.164062 514.646484  976.84375 514.646484 C 977.382812 514.646484  977.8125 514.566406  978.132812 514.40625 C 978.392578 514.267578  978.8125 512.556641  979.392578 509.275391 C 980.033203 505.833984  980.351562 503.181641  980.351562 501.320312 C 980.351562 500.361328  980.251953 499.761719  980.052734 499.521484 C 979.511719 498.900391  979.052734 498.589844  978.673828 498.589844 L 978.193359 498.589844 C 977.951172 498.609375  977.732422 498.609375  977.533203 498.589844 C 976.632812 498.529297  974.183594 500.482422  970.183594 504.449219 C 966.183594 508.414062  963.773438 511.28125  962.955078 513.048828 C 962.833984 513.330078  962.773438 513.591797  962.773438 513.830078 C 962.773438 514.695312  963.535156 515.207031  965.054688 515.367188 L 967.09375 513.355469 Z M 976.207031 504.019531 C 976.40625 504.019531  976.597656 504.070312  976.777344 504.169922 C 976.816406 504.191406  976.835938 504.3125  976.835938 504.535156 C 976.835938 504.878906  976.777344 505.496094  976.65625 506.384766 C 976.537109 507.275391  976.476562 507.730469  976.476562 507.75 C 976.476562 507.931641  976.097656 508.224609  975.337891 508.628906 L 970.933594 508.947266 C 973.330078 505.662109  975.087891 504.019531  976.207031 504.019531 M 990.369141 497.671875 C 990.769531 497.671875  991.199219 497.947266  991.660156 498.498047 C 992.119141 499.046875  992.349609 499.441406  992.349609 499.681641 C 992.349609 499.722656  992.318359 499.730469  992.259766 499.710938 C 991.978516 499.591797  989.96875 503.210938  986.228516 510.568359 C 986.089844 510.806641  986.019531 511.017578  986.019531 511.197266 C 986.019531 511.396484  986.138672 511.498047  986.378906 511.498047 C 986.5 511.498047  986.849609 511.447266  987.429688 511.347656 C 988.009766 511.248047  988.539062 511.177734  989.019531 511.136719 C 989.619141 511.097656  990.048828 510.787109  990.308594 510.207031 C 990.429688 509.947266  990.509766 509.646484  990.548828 509.306641 C 990.990234 509.1875  991.46875 509.126953  991.990234 509.126953 C 993.228516 509.126953  993.849609 509.347656  993.849609 509.787109 C 993.849609 510.046875  993.648438 510.576172  993.25 511.376953 C 992.949219 511.9375  992.660156 512.498047  992.378906 513.056641 C 992.21875 513.417969  990.740234 513.886719  987.939453 514.466797 C 986.378906 514.765625  984.818359 515.066406  983.259766 515.365234 C 983.119141 515.40625  982.949219 515.425781  982.75 515.425781 C 982.208984 515.425781  981.740234 515.316406  981.339844 515.095703 C 980.818359 514.835938  980.558594 514.455078  980.558594 513.955078 C 980.558594 513.65625  980.660156 513.326172  980.859375 512.966797 C 981.138672 512.386719  982.529297 509.96875  985.029297 505.708984 C 987.808594 500.951172  989.419922 498.351562  989.859375 497.912109 C 990.019531 497.751953  990.189453 497.671875  990.369141 497.671875 M 1003.839844 497.671875 C 1004.240234 497.671875  1004.669922 497.947266  1005.128906 498.498047 C 1005.589844 499.046875  1005.818359 499.441406  1005.818359 499.681641 C 1005.818359 499.722656  1005.789062 499.730469  1005.728516 499.710938 C 1005.449219 499.591797  1003.439453 503.210938  999.699219 510.568359 C 999.558594 510.806641  999.490234 511.017578  999.490234 511.197266 C 999.490234 511.396484  999.609375 511.498047  999.849609 511.498047 C 999.96875 511.498047  1000.318359 511.447266  1000.898438 511.347656 C 1001.478516 511.248047  1002.009766 511.177734  1002.490234 511.136719 C 1003.089844 511.097656  1003.519531 510.787109  1003.779297 510.207031 C 1003.898438 509.947266  1003.978516 509.646484  1004.019531 509.306641 C 1004.458984 509.1875  1004.939453 509.126953  1005.458984 509.126953 C 1006.699219 509.126953  1007.318359 509.347656  1007.318359 509.787109 C 1007.318359 510.046875  1007.119141 510.576172  1006.71875 511.376953 C 1006.419922 511.9375  1006.128906 512.498047  1005.849609 513.056641 C 1005.689453 513.417969  1004.208984 513.886719  1001.410156 514.466797 C 999.849609 514.765625  998.289062 515.066406  996.728516 515.365234 C 996.589844 515.40625  996.419922 515.425781  996.21875 515.425781 C 995.679688 515.425781  995.208984 515.316406  994.808594 515.095703 C 994.289062 514.835938  994.029297 514.455078  994.029297 513.955078 C 994.029297 513.65625  994.128906 513.326172  994.330078 512.966797 C 994.609375 512.386719  996 509.96875  998.5 505.708984 C 1001.279297 500.951172  1002.888672 498.351562  1003.330078 497.912109 C 1003.490234 497.751953  1003.660156 497.671875  1003.839844 497.671875 " />
</svg>