File: sample2.svg

package info (click to toggle)
cct 1%3A1.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 194,340 kB
  • sloc: perl: 8,484; sh: 1,693; makefile: 23
file content (992 lines) | stat: -rw-r--r-- 461,494 bytes parent folder | download | duplicates (2)
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
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.0//EN'
          'http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd'>
<svg fill-opacity="1" xmlns:xlink="http://www.w3.org/1999/xlink" color-rendering="auto" color-interpolation="auto" text-rendering="auto" stroke="black" stroke-linecap="square" width="3000" stroke-miterlimit="10" shape-rendering="auto" stroke-opacity="1" fill="black" stroke-dasharray="none" font-weight="normal" stroke-width="1" height="3000" xmlns="http://www.w3.org/2000/svg" font-family="'Dialog'" font-style="normal" stroke-linejoin="miter" font-size="12px" stroke-dashoffset="0" image-rendering="auto"
><!--Generated by CGView (written by Paul Stothard, University of Alberta) using the Batik SVG Generator--><defs id="genericDefs"
  /><g
  ><g transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" color-rendering="optimizeQuality" image-rendering="optimizeQuality" color-interpolation="linearRGB" stroke="white"
    ><rect x="-1500" width="3000" height="3000" y="-1500" stroke="none"
      /><path fill="rgb(51,51,51)" d="M-6.097995758057 -932.980041503906 C-111.850547790527 -932.288879394531 -216.715896606445 -913.623168945312 -316.211669921875 -877.780822753906 L-306.044097900391 -849.556335449219 C-209.747543334961 -884.246215820312 -108.254066467285 -902.311706542969 -5.901918888092 -902.980712890625 L-5.901918888092 -902.980712890625 L-5.901918888092 -902.980712890625 L-0 -918 L-0 -918 L-6.097995758057 -932.980041503906 L-6.097995758057 -932.980041503906 L-6.097995758057 -932.980041503906 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-6.097995758057 -932.980041503906 C-111.850547790527 -932.288879394531 -216.715896606445 -913.623168945312 -316.211669921875 -877.780822753906 L-314.178161621094 -872.135925292969 C-215.322235107422 -907.747802734375 -111.131248474121 -926.29345703125 -6.058780193329 -926.980224609375 L-6.086069583893 -931.155395507812 L-6.086069583893 -931.155395507812 L-6.058780193329 -926.980224609375 L-0 -918 L-0 -918 L-6.097995758057 -932.980041503906 L-6.097995758057 -932.980041503906 L-6.097995758057 -932.980041503906 Z" stroke="none"
      /><path fill="black" d="M-0 -918 L-5.941133975983 -908.980590820312 L-5.915300369263 -905.028015136719 L-5.941133975983 -908.980590820312 C-108.973365783691 -908.307189941406 -211.141220092773 -890.12158203125 -308.077606201172 -855.201232910156 L-306.044097900391 -849.556335449219 C-209.747543334961 -884.246215820312 -108.254066467285 -902.311706542969 -5.901918888092 -902.980712890625 L-5.901918888092 -902.980712890625 L-5.901918888092 -902.980712890625 L-0 -918 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-345.116729736328 -866.823791503906 L-345.116729736328 -866.823791503906 L-345.116729736328 -866.823791503906 C-350.690612792969 -864.604553222656 -356.243011474609 -862.331665039062 -361.773071289062 -860.00537109375 L-350.140472412109 -832.352478027344 C-344.788238525391 -834.603942871094 -339.414398193359 -836.803771972656 -334.019714355469 -838.951599121094 L-334.019714355469 -838.951599121094 L-334.019714355469 -838.951599121094 L-333.986572265625 -855.0888671875 L-345.116729736328 -866.823791503906 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-345.116729736328 -866.823791503906 L-345.116729736328 -866.823791503906 L-345.116729736328 -866.823791503906 C-350.690612792969 -864.604553222656 -356.243011474609 -862.331665039062 -361.773071289062 -860.00537109375 L-359.446533203125 -854.474792480469 C-353.952056884766 -856.7861328125 -348.435394287109 -859.04443359375 -342.897308349609 -861.249328613281 L-345.016448974609 -866.571960449219 L-342.897308349609 -861.249328613281 L-333.986572265625 -855.0888671875 L-345.116729736328 -866.823791503906 Z" stroke="none"
      /><path fill="black" d="M-333.986572265625 -855.0888671875 L-336.239105224609 -844.526062011719 L-334.386596679688 -839.873107910156 L-334.386596679688 -839.873107910156 L-334.386596679688 -839.873107910156 L-334.386596679688 -839.873107910156 L-336.239105224609 -844.526062011719 C-341.669647216797 -842.363952636719 -347.079193115234 -840.149536132812 -352.467010498047 -837.883056640625 L-350.140472412109 -832.352478027344 C-344.788238525391 -834.603942871094 -339.414398193359 -836.803771972656 -334.019714355469 -838.951599121094 L-334.019714355469 -838.951599121094 L-334.019714355469 -838.951599121094 L-333.986572265625 -855.0888671875 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-367.716796875 -857.480834960938 L-363.643341064453 -847.981872558594 L-363.643341064453 -847.981872558594 L-367.716796875 -857.480834960938 C-492.271545410156 -804.067504882812 -603.694702148438 -724.160583496094 -694.23583984375 -623.318237304688 L-671.9130859375 -603.27587890625 C-584.283325195312 -700.875671386719 -476.442901611328 -778.213256835938 -355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 C-355.893127441406 -829.909057617188 -355.893127441406 -829.909057617188 -355.893127441406 -829.909057617188 L-355.893127441406 -829.909118652344 L-355.893127441406 -829.909118652344 L-356.282928466797 -846.041625976562 L-367.716796875 -857.480834960938 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-367.716796875 -857.480834960938 L-365.35205078125 -851.966491699219 L-356.282928466797 -846.041625976562 L-356.282928466797 -846.041625976562 L-367.716796875 -857.480834960938 ZM-367.716796875 -857.480834960938 C-492.271545410156 -804.067504882812 -603.694702148438 -724.160583496094 -694.23583984375 -623.318237304688 L-689.771301269531 -619.309753417969 C-599.812438964844 -719.503601074219 -489.105804443359 -798.896667480469 -365.35205078125 -851.966491699219 L-367.716796875 -857.480834960938 Z" stroke="none"
      /><path fill="black" d="M-356.282928466797 -846.041625976562 L-358.257843017578 -835.423461914062 L-357.262390136719 -833.102111816406 L-357.262390136719 -833.102111816406 L-357.262390136719 -833.102111816406 L-357.262390136719 -833.102111816406 L-357.262390136719 -833.102111816406 L-357.262390136719 -833.102111816406 L-358.257843017578 -835.423461914062 C-479.608612060547 -783.384094238281 -588.165588378906 -705.532653808594 -676.377624511719 -607.284362792969 L-671.9130859375 -603.27587890625 C-584.283325195312 -700.875671386719 -476.442901611328 -778.213256835938 -355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 L-355.893127441406 -829.909057617188 C-355.893127441406 -829.909057617188 -355.893127441406 -829.909057617188 -355.893127441406 -829.909057617188 L-355.893127441406 -829.909118652344 L-355.893127441406 -829.909118652344 L-356.282928466797 -846.041625976562 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-816.37060546875 -451.694580078125 C-922.860473632812 -259.230102539062 -957.926635742188 -35.330379486084 -915.378356933594 180.475799560547 L-915.378356933594 180.475799560547 L-885.944946289062 174.672714233398 C-927.125122070312 -34.194355010986 -893.186462402344 -250.894714355469 -790.120788574219 -437.170654296875 L-790.120788574219 -437.170654296875 L-790.120788574219 -437.170654296875 L-800.323791503906 -449.673065185547 L-816.37060546875 -451.694580078125 L-816.37060546875 -451.694580078125 L-800.509094238281 -442.91845703125 L-816.37060546875 -451.694580078125 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-816.37060546875 -451.694580078125 C-922.860473632812 -259.230102539062 -957.926635742188 -35.330379486084 -915.378356933594 180.475799560547 L-915.378356933594 180.475799560547 L-909.491638183594 179.315185546875 C-951.766357421875 -35.103172302246 -916.925659179688 -257.563018798828 -811.120666503906 -448.789794921875 L-811.120666503906 -448.789794921875 L-800.323791503906 -449.673065185547 L-816.37060546875 -451.694580078125 L-814.770935058594 -450.809478759766 L-816.37060546875 -451.694580078125 Z" stroke="none"
      /><path fill="black" d="M-800.323791503906 -449.673065185547 L-795.370727539062 -440.075439453125 L-791.16845703125 -437.750335693359 L-791.16845703125 -437.750335693359 L-795.370727539062 -440.075439453125 C-899.121276855469 -252.561798095703 -933.285400390625 -34.421558380127 -891.831604003906 175.83332824707 L-885.944946289062 174.672714233398 C-927.125122070312 -34.194355010986 -893.186462402344 -250.894714355469 -790.120788574219 -437.170654296875 L-790.120788574219 -437.170654296875 L-800.323791503906 -449.673065185547 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-900.66162109375 177.574264526367 L-914.17919921875 186.45475769043 L-914.17919921875 186.454772949219 C-912.884399414062 192.803039550781 -911.523559570312 199.137664794922 -910.096801757812 205.457595825195 L-880.833251953125 198.85124206543 C-882.214111328125 192.734527587891 -883.53125 186.603591918945 -884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 C-884.784362792969 180.459442138672 -884.784362792969 180.459442138672 -884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-900.66162109375 177.574264526367 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-900.66162109375 177.574264526367 L-914.17919921875 186.45475769043 L-914.17919921875 186.454772949219 C-912.884399414062 192.803039550781 -911.523559570312 199.137664794922 -910.096801757812 205.457595825195 L-904.244079589844 204.136322021484 C-905.661682128906 197.857040405273 -907.013793945312 191.56315612793 -908.300231933594 185.255706787109 L-908.300231933594 185.255706787109 L-908.300231933594 185.255706787109 L-900.66162109375 177.574264526367 Z" stroke="none"
      /><path fill="black" d="M-900.66162109375 177.574264526367 L-890.663330078125 181.658508300781 L-890.663330078125 181.658508300781 C-889.40185546875 187.843475341797 -888.075988769531 194.015151977539 -886.685974121094 200.172515869141 L-880.833251953125 198.85124206543 C-882.214111328125 192.734527587891 -883.53125 186.603591918945 -884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 C-884.784362792969 180.459442138672 -884.784362792969 180.459442138672 -884.784362792969 180.459442138672 L-884.784362792969 180.459442138672 L-900.66162109375 177.574264526367 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-895.542846679688 201.809219360352 L-908.81591796875 211.051193237305 L-908.81591796875 211.051193237305 L-908.81591796875 211.051208496094 C-907.648620605469 216.077697753906 -906.439697265625 221.09440612793 -905.189147949219 226.100845336914 L-876.083374023438 218.830718994141 C-877.293701171875 213.985260009766 -878.463806152344 209.129852294922 -879.593566894531 204.264984130859 L-894.609741210938 207.752151489258 L-894.609741210938 207.752151489258 L-894.609741210938 207.752151489258 L-894.609741210938 207.752151489258 L-894.609741210938 207.752151489258 L-894.609741210938 207.752151489258 L-879.593566894531 204.264984130859 L-895.542846679688 201.809219360352 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-895.542846679688 201.809219360352 L-908.81591796875 211.051193237305 L-908.81591796875 211.051193237305 L-908.81591796875 211.051208496094 C-907.648620605469 216.077697753906 -906.439697265625 221.09440612793 -905.189147949219 226.100845336914 L-899.367980957031 224.646820068359 C-900.610473632812 219.672576904297 -901.811645507812 214.688125610352 -902.971435546875 209.693954467773 L-903.637512207031 209.848648071289 L-903.637512207031 209.848648071289 L-903.637512207031 209.848648071289 L-903.637512207031 209.848648071289 L-903.637512207031 209.848648071289 L-903.637512207031 209.848648071289 L-902.971435546875 209.693954467773 L-895.542846679688 201.809219360352 Z" stroke="none"
      /><path fill="black" d="M-895.542846679688 201.809219360352 L-885.438049316406 205.62223815918 L-885.438049316406 205.62223815918 L-885.438049316406 205.62223815918 C-884.30078125 210.519424438477 -883.122924804688 215.407089233398 -881.904541015625 220.284744262695 L-876.083374023438 218.830718994141 C-877.293701171875 213.985260009766 -878.463806152344 209.129852294922 -879.593566894531 204.264984130859 L-885.067199707031 205.536117553711 L-885.067199707031 205.536117553711 L-879.593566894531 204.264984130859 L-895.542846679688 201.809219360352 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-890.636291503906 222.465774536133 L-903.692077636719 232.012237548828 L-903.692077636719 232.012237548828 L-891.515014648438 228.885940551758 L-891.515014648438 228.885940551758 L-891.515014648438 228.885940551758 L-891.515014648438 228.885940551758 L-903.692077636719 232.012237548828 C-902.170349121094 237.939331054688 -900.59033203125 243.851318359375 -898.952331542969 249.747329711914 L-870.047119140625 241.716873168945 C-871.632446289062 236.010452270508 -873.16162109375 230.288558959961 -874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 C-874.634399414062 224.552047729492 -874.634399414062 224.552047729492 -874.634399414062 224.552047729492 L-874.634460449219 224.552047729492 L-874.634460449219 224.552047729492 L-874.634460449219 224.552047729492 L-874.634460449219 224.552047729492 L-874.634460449219 224.552047729492 L-874.634460449219 224.552047729492 L-890.636291503906 222.465774536133 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-890.636291503906 222.465774536133 L-903.692077636719 232.012237548828 L-903.692077636719 232.012237548828 L-897.880554199219 230.520202636719 L-890.636291503906 222.465774536133 ZM-897.880554199219 230.520202636719 L-903.692077636719 232.012237548828 C-902.170349121094 237.939331054688 -900.59033203125 243.851318359375 -898.952331542969 249.747329711914 L-893.171264648438 248.141235351562 C-894.798767089844 242.283142089844 -896.368591308594 236.4091796875 -897.880554199219 230.520202636719 Z" stroke="none"
      /><path fill="black" d="M-890.636291503906 222.465774536133 L-880.445922851562 226.044082641602 L-880.445922851562 226.044082641602 L-880.445922851562 226.044082641602 C-878.96337890625 231.818710327148 -877.424011230469 237.57861328125 -875.828125 243.322967529297 L-870.047119140625 241.716873168945 C-871.632446289062 236.010452270508 -873.16162109375 230.288558959961 -874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 L-874.634399414062 224.552047729492 C-874.634399414062 224.552047729492 -874.634399414062 224.552047729492 -874.634399414062 224.552047729492 L-874.634460449219 224.552047729492 L-874.634460449219 224.552047729492 L-890.636291503906 222.465774536133 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-884.499694824219 245.73210144043 L-897.30078125 255.617446899414 L-897.30078125 255.617462158203 C-852.339965820312 413.444641113281 -766.546081542969 556.621032714844 -648.576049804688 670.69970703125 L-627.721496582031 649.133850097656 C-741.898315429688 538.723266601562 -824.933532714844 400.150604248047 -868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 C-868.448669433594 247.398254394531 -868.448669433594 247.398254394531 -868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-884.499694824219 245.73210144043 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-884.499694824219 245.73210144043 L-897.30078125 255.617446899414 L-897.30078125 255.617462158203 C-852.339965820312 413.444641113281 -766.546081542969 556.621032714844 -648.576049804688 670.69970703125 L-644.405151367188 666.386535644531 C-761.616577148438 553.041442871094 -846.858703613281 410.785827636719 -891.530395507812 253.973617553711 L-894.758666992188 254.893280029297 L-894.758666992188 254.893280029297 L-894.758666992188 254.893280029297 L-894.758666992188 254.893280029297 L-894.758666992188 254.893280029297 L-894.758666992188 254.893280029297 L-891.530395507812 253.973617553711 L-884.499694824219 245.73210144043 Z" stroke="none"
      /><path fill="black" d="M-884.499694824219 245.73210144043 L-874.219116210938 249.042083740234 L-870.76416015625 248.057861328125 L-870.76416015625 248.057861328125 L-874.219116210938 249.042083740234 C-830.414855957031 402.809387207031 -746.827880859375 542.302795410156 -631.892395019531 653.447021484375 L-627.721496582031 649.133850097656 C-741.898315429688 538.723266601562 -824.933532714844 400.150604248047 -868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 C-868.448669433594 247.398254394531 -868.448669433594 247.398254394531 -868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-868.448669433594 247.398254394531 L-884.499694824219 245.73210144043 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-625.225708007812 651.538024902344 L-625.225769042969 651.538024902344 L-625.225769042969 651.538024902344 L-639.927062988281 658.192443847656 L-645.997375488281 673.183776855469 L-635.086120605469 661.813354492188 L-635.086120605469 661.813354492188 L-645.997375488281 673.183776855469 C-621.768249511719 696.434387207031 -596.301635742188 718.359924316406 -569.708557128906 738.86474609375 L-551.389953613281 715.107055664062 C-577.1279296875 695.261535644531 -601.775695800781 674.041015625 -625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 C-625.225708007812 651.538024902344 -625.225708007812 651.538024902344 -625.225708007812 651.538024902344 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-639.927062988281 658.192443847656 L-645.997375488281 673.183776855469 L-641.843017578125 668.854614257812 L-639.927062988281 658.192443847656 ZM-641.843017578125 668.854614257812 L-645.997375488281 673.183776855469 C-621.768249511719 696.434387207031 -596.301635742188 718.359924316406 -569.708557128906 738.86474609375 L-566.044860839844 734.113220214844 C-592.466918945312 713.740234375 -617.769775390625 691.955688476562 -641.843017578125 668.854614257812 Z" stroke="none"
      /><path fill="black" d="M-625.225708007812 651.538024902344 L-625.225769042969 651.538024902344 L-625.225769042969 651.538024902344 L-639.927062988281 658.192443847656 L-639.927062988281 658.192443847656 L-629.380065917969 655.8671875 L-629.380065917969 655.8671875 L-629.380065917969 655.8671875 C-605.774230957031 678.519653320312 -580.962707519531 699.881225585938 -555.0537109375 719.858581542969 L-551.389953613281 715.107055664062 C-577.1279296875 695.261535644531 -601.775695800781 674.041015625 -625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 L-625.225708007812 651.538024902344 C-625.225708007812 651.538024902344 -625.225708007812 651.538024902344 -625.225708007812 651.538024902344 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-546.150085449219 719.116882324219 L-546.150146484375 719.116882324219 L-546.150146484375 719.116882324219 L-559.988647460938 727.417846679688 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 C-564.294616699219 743.0078125 -564.294616699219 743.0078125 -564.294616699219 743.0078125 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 C-559.42138671875 746.708862304688 -554.511901855469 750.361938476562 -549.566833496094 753.966369628906 L-531.895874023438 729.723083496094 C-536.681945800781 726.234497070312 -541.43359375 722.698913574219 -546.150085449219 719.116882324219 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-559.988647460938 727.417846679688 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 C-564.294616699219 743.0078125 -564.294616699219 743.0078125 -564.294616699219 743.0078125 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 L-564.294616699219 743.0078125 C-559.42138671875 746.708862304688 -554.511901855469 750.361938476562 -549.566833496094 753.966369628906 L-546.032653808594 749.117736816406 C-550.945922851562 745.536437988281 -555.823852539062 741.906860351562 -560.665710449219 738.229614257812 L-560.665710449219 738.229614257812 L-559.988647460938 727.417846679688 Z" stroke="none"
      /><path fill="black" d="M-546.150085449219 719.116882324219 L-546.150146484375 719.116882324219 L-546.150146484375 719.116882324219 L-559.988647460938 727.417846679688 L-559.988647460938 727.417846679688 L-549.778991699219 723.895080566406 L-549.778991699219 723.895080566406 L-549.778991699219 723.895080566406 C-545.031127929688 727.500915527344 -540.247924804688 731.059997558594 -535.430053710938 734.57177734375 L-531.895874023438 729.723083496094 C-536.681945800781 726.234497070312 -541.43359375 722.698913574219 -546.150085449219 719.116882324219 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-526.832458496094 733.387084960938 L-526.832458496094 733.387084960938 L-526.832458496094 733.387084960938 L-540.445373535156 742.053100585938 L-544.335205078125 757.752075195312 L-531.010437011719 739.203125 L-544.335205078125 757.752075195312 C-512.092468261719 780.913818359375 -478.404327392578 801.994018554688 -443.476165771484 820.864135742188 L-429.216461181641 794.469787597656 C-463.021545410156 776.206420898438 -495.62646484375 755.804016113281 -526.832458496094 733.387084960938 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-540.445373535156 742.053100585938 L-544.335205078125 757.752075195312 L-540.834655761719 752.879089355469 L-540.445373535156 742.053100585938 ZM-540.834655761719 752.879089355469 L-544.335205078125 757.752075195312 C-512.092468261719 780.913818359375 -478.404327392578 801.994018554688 -443.476165771484 820.864135742188 L-440.624206542969 815.585266113281 C-475.327758789062 796.836486816406 -508.799255371094 775.891845703125 -540.834655761719 752.879089355469 Z" stroke="none"
      /><path fill="black" d="M-526.832458496094 733.387084960938 L-526.832458496094 733.387084960938 L-540.445373535156 742.053100585938 L-540.445373535156 742.053100585938 L-530.3330078125 738.260070800781 L-528.455444335938 735.646423339844 L-530.3330078125 738.260070800781 C-498.919677734375 760.825988769531 -466.098083496094 781.363952636719 -432.068389892578 799.748657226562 L-429.216461181641 794.469787597656 C-463.021545410156 776.206420898438 -495.62646484375 755.804016113281 -526.832458496094 733.387084960938 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-424.014709472656 797.258117675781 L-424.014709472656 797.258117675781 L-424.014709472656 797.258117675781 C-424.014709472656 797.258117675781 -424.014709472656 797.258117675781 -424.014709472656 797.258117675781 L-424.014739990234 797.258117675781 L-424.014739990234 797.258117675781 L-436.346313476562 807.666931152344 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 C-438.101593017578 823.7451171875 -438.101593017578 823.7451171875 -438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 C-432.698852539062 826.618530273438 -427.267974853516 829.438659667969 -421.809722900391 832.205261230469 L-408.246704101562 805.446228027344 C-413.529449462891 802.768615722656 -418.785705566406 800.039123535156 -424.014709472656 797.258117675781 L-424.014709472656 797.258117675781 L-424.014709472656 797.258117675781 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-436.346313476562 807.666931152344 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 C-438.101593017578 823.7451171875 -438.101593017578 823.7451171875 -438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 L-438.101593017578 823.7451171875 C-432.698852539062 826.618530273438 -427.267974853516 829.438659667969 -421.809722900391 832.205261230469 L-419.097137451172 826.853454589844 C-424.520263671875 824.104675292969 -429.916229248047 821.302612304688 -435.284210205078 818.447692871094 L-435.284210205078 818.447692871094 L-435.284210205078 818.447692871094 L-436.346313476562 807.666931152344 Z" stroke="none"
      /><path fill="black" d="M-424.014709472656 797.258117675781 L-424.014709472656 797.258117675781 C-424.014709472656 797.258117675781 -424.014709472656 797.258117675781 -424.014709472656 797.258117675781 L-424.014739990234 797.258117675781 L-424.014739990234 797.258117675781 L-436.346313476562 807.666931152344 L-436.346313476562 807.666931152344 L-426.832092285156 802.555541992188 L-426.832092285156 802.555541992188 L-426.832092285156 802.555541992188 C-421.568328857422 805.355041503906 -416.277130126953 808.102661132812 -410.959320068359 810.798034667969 L-408.246704101562 805.446228027344 C-413.529449462891 802.768615722656 -418.785705566406 800.039123535156 -424.014709472656 797.258117675781 L-424.014709472656 797.258117675781 L-424.014709472656 797.258117675781 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-402.973693847656 808.097290039062 L-415.028228759766 818.825744628906 L-416.361511230469 834.9443359375 L-402.973693847656 808.097290039062 ZM-402.973693847656 808.097290039062 L-416.361511230469 834.9443359375 C-333.920928955078 876.054992675781 -245.846328735352 904.729309082031 -155.004196166992 920.034057617188 L-150.020141601562 890.450988769531 C-237.941299438477 875.638305664062 -323.183929443359 847.885986328125 -402.973693847656 808.097290039062 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-415.028228759766 818.825744628906 L-416.361511230469 834.9443359375 L-413.683959960938 829.574951171875 L-415.028228759766 818.825744628906 ZM-413.683959960938 829.574951171875 L-416.361511230469 834.9443359375 C-333.920928955078 876.054992675781 -245.846328735352 904.729309082031 -155.004196166992 920.034057617188 L-154.007385253906 914.117431640625 C-244.265335083008 898.9111328125 -331.773529052734 870.421203613281 -413.683959960938 829.574951171875 Z" stroke="none"
      /><path fill="black" d="M-402.973693847656 808.097290039062 L-415.028228759766 818.825744628906 L-415.028228759766 818.825744628906 L-405.651245117188 813.466674804688 L-402.973693847656 808.097290039062 ZM-402.973693847656 808.097290039062 L-405.651245117188 813.466674804688 C-325.331329345703 853.519836425781 -239.522308349609 881.45654296875 -151.016952514648 896.367614746094 L-150.020141601562 890.450988769531 C-237.941299438477 875.638305664062 -323.183929443359 847.885986328125 -402.973693847656 808.097290039062 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-144.540634155273 891.356811523438 L-152.861099243164 905.183654785156 L-149.342651367188 920.970031738281 L-149.342651367188 920.970031738281 L-149.342651367188 920.970031738281 C-99.917427062988 928.984741210938 -49.975025177002 933 0.000096297626 933 C29.588153839111 933 59.187679290771 931.592529296875 88.698135375977 928.774291992188 L85.84610748291 898.91015625 C57.284538269043 901.637756347656 28.636766433716 903 0.000093201241 903 C-48.368110656738 903 -96.704643249512 899.113830566406 -144.540634155273 891.356811523438 L-146.73796081543 904.907287597656 L-144.540634155273 891.356811523438 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-152.861099243164 905.183654785156 L-149.342651367188 920.970031738281 L-149.342651367188 920.970031738281 L-149.342651367188 920.970031738281 C-99.917427062988 928.984741210938 -49.975025177002 933 0.000096297626 933 C29.588153839111 933 59.187679290771 931.592529296875 88.698135375977 928.774291992188 L88.127731323242 922.801452636719 C58.807052612305 925.6015625 29.397876739502 927 0.000095678348 927 C-49.65364074707 927 -99.274871826172 923.010559082031 -148.382247924805 915.04736328125 L-148.982040405273 918.746215820312 L-148.382247924805 915.04736328125 L-152.861099243164 905.183654785156 Z" stroke="none"
      /><path fill="black" d="M-144.540634155273 891.356811523438 L-152.861099243164 905.183654785156 L-145.501037597656 897.279479980469 L-145.501037597656 897.279479980469 L-145.501037597656 897.279479980469 C-97.347198486328 905.088012695312 -48.689491271973 909 0.000093820519 909 C28.827043533325 909 57.665168762207 907.628723144531 86.416511535645 904.882995605469 L85.84610748291 898.91015625 C57.284538269043 901.637756347656 28.636766433716 903 0.000093201241 903 C-48.368110656738 903 -96.704643249512 899.113830566406 -144.540634155273 891.356811523438 L-144.844833374023 893.232788085938 L-144.540634155273 891.356811523438 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M141.432220458984 891.855346679688 C119.995567321777 895.254821777344 98.443321228027 897.880310058594 76.817481994629 899.726684570312 L76.817481994629 899.726684570312 L76.817481994629 899.726684570312 L72.113639831543 915.163146972656 L79.369552612305 929.617919921875 L76.868125915527 900.31982421875 L76.868125915527 900.31982421875 L79.369552612305 929.617919921875 C101.7138671875 927.710205078125 123.982131958008 924.997497558594 146.130966186523 921.485046386719 L141.432220458984 891.855346679688 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M145.191207885742 915.559143066406 C123.18482208252 919.048950195312 101.059761047363 921.744201660156 78.85913848877 923.6396484375 L79.369552612305 929.617919921875 C101.7138671875 927.710205078125 123.982131958008 924.997497558594 146.130966186523 921.485046386719 L145.191207885742 915.559143066406 ZM72.113639831543 915.163146972656 L79.369552612305 929.617919921875 L78.85913848877 923.6396484375 L72.113639831543 915.163146972656 Z" stroke="none"
      /><path fill="black" d="M141.432220458984 891.855346679688 C119.995567321777 895.254821777344 98.443321228027 897.880310058594 76.817481994629 899.726684570312 L76.817481994629 899.726684570312 L76.817481994629 899.726684570312 L72.113639831543 915.163146972656 L72.113639831543 915.163146972656 L77.327896118164 905.704895019531 L77.327896118164 905.704895019531 L77.327896118164 905.704895019531 L77.327896118164 905.704895019531 L77.327896118164 905.704895019531 C99.097434997559 903.846252441406 120.79288482666 901.203308105469 142.371963500977 897.78125 L141.432220458984 891.855346679688 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M163.731506347656 888.032104492188 C158.363540649414 889.021789550781 152.986709594727 889.962829589844 147.601684570312 890.855041503906 L147.601684570312 890.855041503906 L147.601684570312 890.855041503906 L144.131072998047 906.614685058594 L152.505401611328 920.451599121094 L152.505401611328 920.451599121094 L152.505401611328 920.451599121094 L152.505401611328 920.451599121094 C158.069320678711 919.529724121094 163.624786376953 918.557434082031 169.171081542969 917.534790039062 L163.731506347656 888.032104492188 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M144.131072998047 906.614685058594 L152.505401611328 920.451599121094 L152.505401611328 920.451599121094 L152.505401611328 920.451599121094 L152.505401611328 920.451599121094 C158.069320678711 919.529724121094 163.624786376953 918.557434082031 169.171081542969 917.534790039062 L168.083160400391 911.63427734375 C162.572540283203 912.650329589844 157.052795410156 913.616333007812 151.524658203125 914.532287597656 L151.524658203125 914.532287597656 L151.524658203125 914.532287597656 L144.131072998047 906.614685058594 Z" stroke="none"
      /><path fill="black" d="M163.731506347656 888.032104492188 C158.363540649414 889.021789550781 152.986709594727 889.962829589844 147.601684570312 890.855041503906 L147.601684570312 890.855041503906 L147.601684570312 890.855041503906 L144.131072998047 906.614685058594 L148.582427978516 896.774353027344 L148.582427978516 896.774353027344 C154.003234863281 895.876220703125 159.415786743164 894.928955078125 164.819412231445 893.9326171875 L163.731506347656 888.032104492188 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M170.557647705078 886.746337890625 L167.495178222656 902.590393066406 L176.224014282227 916.206359863281 L170.557647705078 886.746337890625 ZM390.452453613281 814.221008300781 C320.570220947266 847.732421875 246.664520263672 872.10791015625 170.557647705078 886.746337890625 L176.224014282227 916.206359863281 C254.859359741211 901.08154296875 331.220397949219 875.896301269531 403.424285888672 841.271545410156 L390.452453613281 814.221008300781 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M400.829925537109 835.861450195312 C329.090362548828 870.263549804688 253.22038269043 895.286804199219 175.090744018555 910.314331054688 L175.090744018555 910.314331054688 L175.090744018555 910.314331054688 L167.495178222656 902.590393066406 L167.495178222656 902.590393066406 L176.224014282227 916.206359863281 L176.224014282227 916.206359863281 L175.583740234375 912.877502441406 L175.583740234375 912.877502441406 L176.224014282227 916.206359863281 C254.859359741211 901.08154296875 331.220397949219 875.896301269531 403.424285888672 841.271545410156 L400.829925537109 835.861450195312 Z" stroke="none"
      /><path fill="black" d="M390.452453613281 814.221008300781 C320.570220947266 847.732421875 246.664520263672 872.10791015625 170.557647705078 886.746337890625 L171.69091796875 892.638366699219 C248.303482055664 877.902587890625 322.700256347656 853.365234375 393.046813964844 819.631164550781 L390.452453613281 814.221008300781 ZM170.557647705078 886.746337890625 L167.495178222656 902.590393066406 L171.69091796875 892.638366699219 L170.557647705078 886.746337890625 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M411.968048095703 803.549194335938 C406.697784423828 806.251220703125 401.401031494141 808.901306152344 396.07861328125 811.499084472656 L404.230041503906 828.200012207031 L404.230041503906 828.200012207031 L404.230041503906 828.200012207031 L404.230041503906 828.200012207031 L396.07861328125 811.499084472656 L397.257415771484 827.593200683594 L409.237365722656 838.459167480469 L409.237365722656 838.459167480469 L409.237365722656 838.459167480469 C414.736602783203 835.775085449219 420.209320068359 833.036926269531 425.654693603516 830.245178222656 L411.968048095703 803.549194335938 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M422.917388916016 824.906005859375 C417.507019042969 827.679809570312 412.069519042969 830.400329589844 406.605621337891 833.067138671875 L406.605621337891 833.067138671875 L406.605621337891 833.067138671875 L397.257415771484 827.593200683594 L409.237365722656 838.459167480469 L409.237365722656 838.459167480469 L409.237365722656 838.459167480469 C414.736602783203 835.775085449219 420.209320068359 833.036926269531 425.654693603516 830.245178222656 L422.917388916016 824.906005859375 Z" stroke="none"
      /><path fill="black" d="M411.968048095703 803.549194335938 C406.697784423828 806.251220703125 401.401031494141 808.901306152344 396.07861328125 811.499084472656 L398.710357666016 816.89111328125 C404.068145751953 814.276062011719 409.400085449219 811.608337402344 414.705383300781 808.888427734375 L411.968048095703 803.549194335938 ZM396.07861328125 811.499084472656 L397.257415771484 827.593200683594 L398.710357666016 816.89111328125 L396.07861328125 811.499084472656 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M802.913024902344 413.20654296875 C721.19287109375 571.999206542969 594.222717285156 702.994750976562 438.057098388672 789.629638671875 L441.265655517578 795.413269042969 L441.265655517578 795.413269042969 L438.057098388672 789.629638671875 L438.057098388672 789.629638671875 L440.077606201172 805.639953613281 L452.610473632812 815.863159179688 L452.610473632812 815.863159179688 L452.610504150391 815.863159179688 C613.96435546875 726.35009765625 745.152770996094 591.002502441406 829.587890625 426.934326171875 L802.913024902344 413.20654296875 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M824.2529296875 424.188781738281 C740.360778808594 587.201843261719 610.016052246094 721.679016113281 449.699829101562 810.616455078125 L449.699829101562 810.616455078125 L449.699829101562 810.616455078125 L440.077606201172 805.639953613281 L440.077606201172 805.639953613281 L452.610473632812 815.863159179688 L452.610473632812 815.863159179688 L452.610504150391 815.863159179688 C613.96435546875 726.35009765625 745.152770996094 591.002502441406 829.587890625 426.934326171875 L824.2529296875 424.188781738281 Z" stroke="none"
      /><path fill="black" d="M802.913024902344 413.20654296875 C721.19287109375 571.999206542969 594.222717285156 702.994750976562 438.057098388672 789.629638671875 L440.9677734375 794.876342773438 C598.171020507812 707.665832519531 725.98486328125 575.799865722656 808.247985839844 415.952117919922 L802.913024902344 413.20654296875 ZM438.057098388672 789.629638671875 L440.077606201172 805.639953613281 L440.9677734375 794.876342773438 L438.057098388672 789.629638671875 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(51,51,51)" d="M828.109130859375 360.061553955078 C827.459350585938 361.555908203125 826.805541992188 363.048522949219 826.147705078125 364.539337158203 L826.147705078125 364.539337158203 L826.147705078125 364.539337158203 L837.430969238281 376.076232910156 L853.594482421875 376.650299072266 L853.594482421875 376.650299072266 L838.266967773438 369.886993408203 L853.594482421875 376.650299072266 C854.274169921875 375.109924316406 854.94970703125 373.567749023438 855.621032714844 372.023712158203 L828.109130859375 360.061553955078 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M850.11865234375 369.631286621094 C849.451599121094 371.165374755859 848.780456542969 372.697662353516 848.105163574219 374.228118896484 L853.594482421875 376.650299072266 C854.274169921875 375.109924316406 854.94970703125 373.567749023438 855.621032714844 372.023712158203 L850.11865234375 369.631286621094 ZM848.105163574219 374.228118896484 L837.430969238281 376.076232910156 L853.594482421875 376.650299072266 L848.105163574219 374.228118896484 Z" stroke="none"
      /><path fill="black" d="M828.109130859375 360.061553955078 C827.459350585938 361.555908203125 826.805541992188 363.048522949219 826.147705078125 364.539337158203 L826.147705078125 364.539337158203 L826.147705078125 364.539337158203 L837.430969238281 376.076232910156 L831.637084960938 366.961547851562 L829.751708984375 366.129608154297 L831.637084960938 366.961547851562 C832.299255371094 365.460815429688 832.957397460938 363.958282470703 833.611511230469 362.453979492188 L828.109130859375 360.061553955078 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M854.736999511719 291.26220703125 C852.901550292969 296.648559570312 851.015197753906 302.017425537109 849.078247070312 307.368133544922 L849.078247070312 307.368133544922 L849.078247070312 307.368133544922 L861.121765136719 318.108917236328 L877.286804199219 317.579711914062 L861.490356445312 311.861358642578 L861.490356445312 311.861358642578 L861.490356445312 311.861358642578 L861.490356445312 311.861358642578 L861.490356445312 311.861358642578 L861.490356445312 311.861358642578 L877.286804199219 317.579711914062 C879.288146972656 312.051239013672 881.237121582031 306.503997802734 883.133544921875 300.938690185547 L854.736999511719 291.26220703125 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M877.454284667969 299.003387451172 C875.570007324219 304.532897949219 873.633544921875 310.044464111328 871.645080566406 315.537384033203 L871.645080566406 315.537384033203 L861.121765136719 318.108917236328 L861.121765136719 318.108917236328 L877.286804199219 317.579711914062 L871.869995117188 315.618804931641 L871.869995117188 315.618804931641 L877.286804199219 317.579711914062 C879.288146972656 312.051239013672 881.237121582031 306.503997802734 883.133544921875 300.938690185547 L877.454284667969 299.003387451172 Z" stroke="none"
      /><path fill="black" d="M854.736999511719 291.26220703125 C852.901550292969 296.648559570312 851.015197753906 302.017425537109 849.078247070312 307.368133544922 L849.078247070312 307.368133544922 L861.121765136719 318.108917236328 L854.719909667969 309.410461425781 L850.564270019531 307.906097412109 L854.719909667969 309.410461425781 C856.669799804688 304.024200439453 858.568664550781 298.61962890625 860.416320800781 293.197479248047 L854.736999511719 291.26220703125 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M930.654235839844 -66.119194030762 L900.729614257812 -63.993175506592 C909.152404785156 54.560436248779 894.088500976562 173.610595703125 856.401916503906 286.329833984375 L874.594970703125 292.412475585938 L874.594970703125 292.412475585938 L856.401916503906 286.329833984375 L868.706726074219 296.770263671875 L884.853820800781 295.842437744141 L884.853820800781 295.842437744141 L884.853820800781 295.842437744141 C923.792419433594 179.378387451172 939.356811523438 56.373073577881 930.654235839844 -66.119194030762 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M930.654235839844 -66.119194030762 L924.669311523438 -65.693992614746 C933.31591796875 56.010547637939 917.851684570312 178.224838256836 879.163452148438 293.939910888672 L879.163452148438 293.939910888672 L868.706726074219 296.770263671875 L884.853820800781 295.842437744141 L884.853820800781 295.842437744141 L884.853820800781 295.842437744141 C923.792419433594 179.378387451172 939.356811523438 56.373073577881 930.654235839844 -66.119194030762 Z" stroke="none"
      /><path fill="black" d="M906.714538574219 -64.418380737305 L900.729614257812 -63.993175506592 C909.152404785156 54.560436248779 894.088500976562 173.610595703125 856.401916503906 286.329833984375 L859.313781738281 287.303375244141 L856.401916503906 286.329833984375 L868.706726074219 296.770263671875 L868.706726074219 296.770263671875 L862.09228515625 288.232330322266 L862.09228515625 288.232330322266 C900.029296875 174.76416015625 915.193237304688 54.922962188721 906.714538574219 -64.418380737305 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M928.6015625 -90.488052368164 L898.743041992188 -87.578468322754 C899.317443847656 -81.68383026123 899.833801269531 -75.783683776855 900.292114257812 -69.878883361816 L922.152954101562 -71.57568359375 L922.152954101562 -71.57568359375 L900.292114257812 -69.878883361816 L915.69189453125 -65.056182861328 L930.202209472656 -72.20044708252 L930.202209472656 -72.20044708252 C929.728637695312 -78.301414489746 929.195068359375 -84.397575378418 928.6015625 -90.488052368164 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M928.6015625 -90.488052368164 L922.6298828125 -89.906135559082 C923.219543457031 -83.854827880859 923.749694824219 -77.797866821289 924.220153808594 -71.736129760742 L928.963134765625 -72.104270935059 L928.963134765625 -72.104270935059 L924.220153808594 -71.736129760742 L915.69189453125 -65.056182861328 L930.202209472656 -72.20044708252 L930.202209472656 -72.20044708252 L930.202209472656 -72.20044708252 C929.728637695312 -78.301414489746 929.195068359375 -84.397575378418 928.6015625 -90.488052368164 Z" stroke="none"
      /><path fill="black" d="M904.714721679688 -88.160385131836 L898.743041992188 -87.578468322754 C899.317443847656 -81.68383026123 899.833801269531 -75.783683776855 900.292114257812 -69.878883361816 L903.657287597656 -70.140083312988 L903.657287597656 -70.140083312988 L900.292114257812 -69.878883361816 L915.69189453125 -65.056182861328 L906.274169921875 -70.343200683594 L906.274169921875 -70.343200683594 L906.274169921875 -70.343200683594 C905.812805175781 -76.287231445312 905.29296875 -82.226577758789 904.714721679688 -88.160385131836 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M922.368835449219 -140.444915771484 L892.710632324219 -135.929000854492 C893.61962890625 -129.959228515625 894.46875 -123.980476379395 895.257751464844 -117.993667602539 L895.257751464844 -117.993667602539 L895.257751464844 -117.993659973145 L910.893737792969 -114.002616882324 L925.000549316406 -121.913711547852 L925.000549316406 -121.913711547852 L925.000549316406 -121.913719177246 C924.185302734375 -128.099426269531 923.307983398438 -134.276809692383 922.368835449219 -140.444915771484 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M922.368835449219 -140.444915771484 L916.437194824219 -139.541732788086 C917.370300292969 -133.413284301758 918.242004394531 -127.27564239502 919.052001953125 -121.129707336426 L919.052001953125 -121.129707336426 L919.052001953125 -121.129707336426 L910.893737792969 -114.002616882324 L925.000549316406 -121.913711547852 L925.000549316406 -121.913711547852 L925.000549316406 -121.913719177246 C924.185302734375 -128.099426269531 923.307983398438 -134.276809692383 922.368835449219 -140.444915771484 ZM910.893737792969 -114.002616882324 L910.893737792969 -114.002616882324 L910.893737792969 -114.002616882324 Z" stroke="none"
      /><path fill="black" d="M898.642272949219 -136.832183837891 L892.710632324219 -135.929000854492 C893.61962890625 -129.959228515625 894.46875 -123.980476379395 895.257751464844 -117.993667602539 L895.257751464844 -117.993667602539 L895.257751464844 -117.993659973145 L910.893737792969 -114.002616882324 L901.206359863281 -118.777671813965 L896.188720703125 -118.116363525391 L896.188720703125 -118.116363525391 L901.206359863281 -118.777671813965 C900.412048339844 -124.804267883301 899.557312011719 -130.822738647461 898.642272949219 -136.832183837891 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M810.031982421875 -462.965667724609 L783.985900878906 -448.079315185547 C838.256530761719 -353.124298095703 874.825622558594 -249.100051879883 891.912170410156 -141.073196411133 L891.912170410156 -141.073196411133 L891.912170410156 -141.073196411133 L907.64599609375 -137.487258911133 L921.543823242188 -145.760009765625 L921.543823242188 -145.760009765625 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L921.543823242188 -145.760009765625 C903.8896484375 -257.375793457031 866.105590820312 -364.855987548828 810.031982421875 -462.965667724609 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M810.031982421875 -462.965667724609 L804.82275390625 -459.988403320312 C860.535766601562 -362.509643554688 898.076843261719 -255.720657348633 915.617492675781 -144.822647094727 L921.543823242188 -145.760009765625 C903.8896484375 -257.375793457031 866.105590820312 -364.855987548828 810.031982421875 -462.965667724609 ZM921.543823242188 -145.760009765625 L915.617492675781 -144.822647094727 L907.64599609375 -137.487258911133 L921.543823242188 -145.760009765625 Z" stroke="none"
      /><path fill="black" d="M789.195129394531 -451.056579589844 L783.985900878906 -448.079315185547 C838.256530761719 -353.124298095703 874.825622558594 -249.100051879883 891.912170410156 -141.073196411133 L891.912170410156 -141.073196411133 L891.912170410156 -141.073196411133 L907.64599609375 -137.487258911133 L897.838500976562 -142.010559082031 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L893.999694824219 -141.403381347656 L897.838500976562 -142.010559082031 C880.638427734375 -250.75520324707 843.826354980469 -355.470642089844 789.195129394531 -451.056579589844 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M796.310852050781 -486.187255859375 L770.705993652344 -470.554229736328 C774.215454101562 -464.806121826172 777.660583496094 -459.018951416016 781.040588378906 -453.193786621094 L802.360473632812 -465.564544677734 L802.360473632812 -465.564544677734 L781.040588378906 -453.193786621094 L781.040588378906 -453.193786621094 L797.008972167969 -455.522491455078 L806.98876953125 -468.250061035156 L806.98876953125 -468.250061035156 L806.98876953125 -468.250061035156 C803.496459960938 -474.268768310547 799.936950683594 -480.248199462891 796.310852050781 -486.187255859375 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M796.310852050781 -486.187255859375 L791.189880371094 -483.060638427734 C794.792663574219 -477.159790039062 798.329284667969 -471.218811035156 801.799133300781 -465.238800048828 L805.964965820312 -467.656005859375 L801.799133300781 -465.238800048828 L797.008972167969 -455.522491455078 L806.98876953125 -468.250061035156 L806.98876953125 -468.250061035156 L806.98876953125 -468.250061035156 C803.496459960938 -474.268768310547 799.936950683594 -480.248199462891 796.310852050781 -486.187255859375 Z" stroke="none"
      /><path fill="black" d="M775.826965332031 -473.680816650391 L770.705993652344 -470.554229736328 C774.215454101562 -464.806121826172 777.660583496094 -459.018951416016 781.040588378906 -453.193786621094 L785.756591796875 -455.930236816406 L781.040588378906 -453.193786621094 L797.008972167969 -455.522491455078 L786.230224609375 -456.205047607422 L786.230224609375 -456.205047607422 L786.230224609375 -456.205047607422 C782.827758789062 -462.068908691406 779.359802246094 -467.89453125 775.826965332031 -473.680816650391 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,153)" d="M381.893157958984 -851.261779785156 L369.613616943359 -823.890014648438 C534.069946289062 -750.111633300781 672.683471679688 -628.804504394531 767.614013671875 -475.581420898438 L767.614013671875 -475.581420898438 L767.614013671875 -475.581420898438 L767.614013671875 -475.581420898438 L783.508422851562 -478.370727539062 L793.116149902344 -491.381469726562 L793.116149902344 -491.381469726562 L772.513122558594 -478.61669921875 L772.513122558594 -478.61669921875 L793.116149902344 -491.381469726562 C695.03173828125 -649.695007324219 551.813110351562 -775.032287597656 381.893157958984 -851.261779785156 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M381.893157958984 -851.261779785156 L379.437255859375 -845.787414550781 C548.264465332031 -770.048156738281 690.562072753906 -645.516906738281 788.015747070312 -488.221466064453 L793.116149902344 -491.381469726562 C695.03173828125 -649.695007324219 551.813110351562 -775.032287597656 381.893157958984 -851.261779785156 ZM793.116149902344 -491.381469726562 L788.015747070312 -488.221466064453 L783.508422851562 -478.370727539062 L793.116149902344 -491.381469726562 Z" stroke="none"
      /><path fill="black" d="M372.069519042969 -829.364379882812 L369.613616943359 -823.890014648438 C534.069946289062 -750.111633300781 672.683471679688 -628.804504394531 767.614013671875 -475.581420898438 L767.614013671875 -475.581420898438 L767.614013671875 -475.581420898438 L783.508422851562 -478.370727539062 L772.714477539062 -478.741455078125 L772.714477539062 -478.741455078125 C677.153076171875 -632.982604980469 537.618591308594 -755.095764160156 372.069519042969 -829.364379882812 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M359.119293212891 -861.116943359375 L347.572052001953 -833.428283691406 C353.145385742188 -831.103942871094 358.695281982422 -828.723815917969 364.220855712891 -826.288208007812 L364.220886230469 -826.288269042969 L375.753387451172 -837.575927734375 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 C376.321228027344 -853.739624023438 376.321228027344 -853.739624023438 376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 C370.612060546875 -856.256164550781 364.877777099609 -858.715393066406 359.119293212891 -861.116943359375 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M359.119293212891 -861.116943359375 L356.809844970703 -855.579162597656 C362.531311035156 -853.193115234375 368.228698730469 -850.749694824219 373.901153564453 -848.249328613281 L373.901153564453 -848.249328613281 L373.901153564453 -848.249328613281 L375.753387451172 -837.575927734375 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 C376.321228027344 -853.739624023438 376.321228027344 -853.739624023438 376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 L376.321228027344 -853.739624023438 C370.612060546875 -856.256164550781 364.877777099609 -858.715393066406 359.119293212891 -861.116943359375 Z" stroke="none"
      /><path fill="black" d="M349.881500244141 -838.966003417969 L347.572052001953 -833.428283691406 C353.145385742188 -831.103942871094 358.695281982422 -828.723815917969 364.220855712891 -826.288208007812 L364.220886230469 -826.288269042969 L364.220886230469 -826.288269042969 L375.753387451172 -837.575927734375 L375.753387451172 -837.575927734375 L366.640930175781 -831.778442382812 L366.580017089844 -831.640258789062 L366.580017089844 -831.640258789062 L366.580017089844 -831.640258789062 L366.580017089844 -831.640258789062 L366.640930175781 -831.778442382812 C361.078643798828 -834.230285644531 355.491851806641 -836.626281738281 349.881500244141 -838.966003417969 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,153)" d="M24.453052520752 -932.679504394531 L23.666780471802 -902.689819335938 C132.998992919922 -899.823303222656 240.90104675293 -877.118835449219 342.117401123047 -835.682189941406 L342.117431640625 -835.682250976562 L342.117431640625 -835.682250976562 L353.345672607422 -847.272583007812 L353.483428955078 -863.445678710938 L353.483428955078 -863.445678710938 C248.904403686523 -906.258972167969 137.417572021484 -929.7177734375 24.453052520752 -932.679504394531 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M24.453052520752 -932.679504394531 L24.295799255371 -926.681579589844 C136.53385925293 -923.738891601562 247.303726196289 -900.430969238281 351.210235595703 -857.893005371094 L351.210235595703 -857.893005371094 L351.210235595703 -857.893005371094 L353.345672607422 -847.272583007812 L353.483428955078 -863.445678710938 L353.483428955078 -863.445678710938 L353.483428955078 -863.445678710938 C248.904403686523 -906.258972167969 137.417572021484 -929.7177734375 24.453052520752 -932.679504394531 Z" stroke="none"
      /><path fill="black" d="M23.824035644531 -908.687744140625 L23.666780471802 -902.689819335938 C132.998992919922 -899.823303222656 240.90104675293 -877.118835449219 342.117401123047 -835.682189941406 L342.117431640625 -835.682250976562 L342.117431640625 -835.682250976562 L353.345672607422 -847.272583007812 L353.345672607422 -847.272583007812 L344.390625 -841.23486328125 L343.564880371094 -839.217834472656 L343.564880371094 -839.217834472656 L344.390625 -841.23486328125 C242.501708984375 -882.946838378906 133.882705688477 -905.80224609375 23.824035644531 -908.687744140625 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-0 -933 L-0 -903 C5.806528091431 -903 11.612921714783 -902.943969726562 17.418369293213 -902.831970214844 L17.997053146362 -932.826416015625 C11.998732566833 -932.942138671875 5.999436378479 -933 -0 -933 ZM17.997053146362 -932.826416015625 L17.418369293213 -902.831970214844 L23.706174850464 -917.69384765625 L17.997053146362 -932.826416015625 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-0 -933 L-0 -927 C5.960854530334 -927 11.921570777893 -926.942504882812 17.881317138672 -926.827514648438 L17.997053146362 -932.826416015625 C11.998732566833 -932.942138671875 5.999436378479 -933 -0 -933 ZM17.997053146362 -932.826416015625 L17.881317138672 -926.827514648438 L23.706174850464 -917.69384765625 L23.706174850464 -917.69384765625 L17.997053146362 -932.826416015625 Z" stroke="none"
      /><path fill="black" d="M23.706174850464 -917.69384765625 L17.534105300903 -908.830871582031 L17.534105300903 -908.830871582031 C11.690083503723 -908.943603515625 5.845109939575 -909 -0 -909 L-0 -903 C5.806528091431 -903 11.612921714783 -902.943969726562 17.418369293213 -902.831970214844 L17.430866241455 -903.479736328125 L17.430866241455 -903.479736328125 L17.430866241455 -903.479736328125 L17.430866241455 -903.479736328125 L17.430866241455 -903.479736328125 L17.430866241455 -903.479736328125 L17.418369293213 -902.831970214844 L23.706174850464 -917.69384765625 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -935 C-516.38623046875 -935 -935 -516.38623046875 -935 0 L-935 0 C-935 516.38623046875 -516.38623046875 935 0 935 C516.38623046875 935 935 516.38623046875 935 0 C935 -516.38623046875 516.38623046875 -935 0 -935 L0 -934 C515.833984375 -934 934 -515.833984375 934 0 C934 515.833984375 515.833984375 934 0 934 C-515.833984375 934 -934 515.833984375 -934 0 C-934 -515.833984375 -515.833984375 -934 -0 -934 L-0 -935 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -935 C-516.38623046875 -935 -935 -516.38623046875 -935 0 L-935 0 C-935 516.38623046875 -516.38623046875 935 0 935 C516.38623046875 935 935 516.38623046875 935 0 C935 -516.38623046875 516.38623046875 -935 0 -935 L0 -934.799987792969 C516.275756835938 -934.799987792969 934.799987792969 -516.275756835938 934.799987792969 0 C934.799987792969 516.275756835938 516.275756835938 934.799987792969 0 934.799987792969 C-516.275756835938 934.799987792969 -934.799987792969 516.275756835938 -934.799987792969 0 C-934.799987792969 -516.275756835938 -516.275756835938 -934.799987792969 -0 -934.799987792969 L-0 -935 Z" stroke="none"
      /><path fill="black" d="M-0 -934.200012207031 C-515.944396972656 -934.200012207031 -934.200012207031 -515.944396972656 -934.200012207031 0 L-934.200012207031 0 C-934.200012207031 515.944396972656 -515.944396972656 934.200012207031 0 934.200012207031 C515.944396972656 934.200012207031 934.200012207031 515.944396972656 934.200012207031 0 C934.200012207031 -515.944396972656 515.944396972656 -934.200012207031 0 -934.200012207031 L0 -934 C515.833984375 -934 934 -515.833984375 934 0 C934 515.833984375 515.833984375 934 0 934 C-515.833984375 934 -934 515.833984375 -934 0 C-934 -515.833984375 -515.833984375 -934 -0 -934 L-0 -934.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="aqua" d="M-385.648986816406 -885.681030273438 L-373.672302246094 -858.175415039062 L-374.152008056641 -874.30615234375 L-385.648986816406 -885.681030273438 ZM-385.648986816406 -885.681030273438 C-509.878570556641 -831.588134765625 -621.339050292969 -751.966003417969 -712.789611816406 -651.986938476562 L-690.6533203125 -631.738891601562 C-602.042785644531 -728.612976074219 -494.043823242188 -805.762451171875 -373.672302246094 -858.175415039062 L-385.648986816406 -885.681030273438 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-385.648986816406 -885.681030273438 L-384.698913574219 -883.499084472656 L-384.698913574219 -883.499084472656 L-384.698913574219 -883.499084472656 L-384.698913574219 -883.499084472656 L-384.698913574219 -883.499084472656 L-384.698913574219 -883.499084472656 L-385.648986816406 -885.681030273438 C-509.878570556641 -831.588134765625 -621.339050292969 -751.966003417969 -712.789611816406 -651.986938476562 L-708.362365722656 -647.937316894531 C-617.479797363281 -747.29541015625 -506.711639404297 -826.423034667969 -383.253662109375 -880.179870605469 L-383.253662109375 -880.179870605469 L-383.253662109375 -880.179870605469 L-374.152008056641 -874.30615234375 L-385.648986816406 -885.681030273438 Z" stroke="none"
      /><path fill="black" d="M-374.152008056641 -874.30615234375 L-376.067657470703 -863.676513671875 L-376.067657470703 -863.676513671875 L-376.067657470703 -863.676513671875 C-497.210784912109 -810.927612304688 -605.902038574219 -733.283569335938 -695.08056640625 -635.788513183594 L-690.6533203125 -631.738891601562 C-602.042785644531 -728.612976074219 -494.043823242188 -805.762451171875 -373.672302246094 -858.175415039062 L-375.286743164062 -861.883117675781 L-373.672302246094 -858.175415039062 L-374.152008056641 -874.30615234375 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M-897.993774414062 -289.481414794922 L-906.96923828125 -286.020660400391 L-906.96923828125 -286.020660400391 L-906.96923828125 -286.020660400391 C-947.974914550781 -155.991897583008 -960.542297363281 -18.666177749634 -943.819274902344 116.645622253418 L-943.819274902344 116.645622253418 L-928.932495117188 114.805786132812 C-945.391784667969 -18.371759414673 -933.022644042969 -153.531463623047 -892.663696289062 -281.509307861328 L-904.958679199219 -285.386627197266 L-904.958679199219 -285.386627197266 L-892.663696289062 -281.509307861328 L-897.993774414062 -289.481414794922 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-897.993774414062 -289.481414794922 L-906.96923828125 -286.020660400391 L-906.96923828125 -286.020660400391 L-906.96923828125 -286.020660400391 C-947.974914550781 -155.991897583008 -960.542297363281 -18.666177749634 -943.819274902344 116.645622253418 L-940.841918945312 116.277656555176 C-957.51220703125 -18.60729598999 -944.984497070312 -155.499816894531 -904.108154296875 -285.118377685547 L-904.108154296875 -285.118377685547 L-904.108154296875 -285.118377685547 L-897.993774414062 -289.481414794922 Z" stroke="none"
      /><path fill="black" d="M-897.993774414062 -289.481414794922 L-895.524841308594 -282.411560058594 L-895.524841308594 -282.411560058594 L-895.524841308594 -282.411560058594 C-936.013122558594 -154.023544311523 -948.421875 -18.430639266968 -931.909851074219 115.173759460449 L-931.909851074219 115.173759460449 L-928.932495117188 114.805786132812 C-945.391784667969 -18.371759414673 -933.022644042969 -153.531463623047 -892.663696289062 -281.509307861328 L-894.425109863281 -282.064758300781 L-894.425109863281 -282.064758300781 L-892.663696289062 -281.509307861328 L-897.993774414062 -289.481414794922 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(154,205,50)" d="M-912.270263671875 -294.083648681641 L-921.245788574219 -290.623718261719 L-906.940734863281 -286.110931396484 L-912.270263671875 -294.083648681641 ZM-921.245788574219 -290.623718261719 C-962.921203613281 -158.51725769043 -975.69677734375 -18.992769241333 -958.705993652344 118.485458374023 L-958.705993652344 118.485458374023 L-943.819274902344 116.645622253418 C-960.546203613281 -18.69785118103 -947.968994140625 -156.055816650391 -906.940734863281 -286.110931396484 L-921.245788574219 -290.623718261719 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-912.270263671875 -294.083648681641 L-921.245788574219 -290.623718261719 L-918.384826660156 -289.721160888672 L-912.270263671875 -294.083648681641 ZM-921.245788574219 -290.623718261719 C-962.921203613281 -158.51725769043 -975.69677734375 -18.992769241333 -958.705993652344 118.485458374023 L-958.705993652344 118.485458374023 L-955.728637695312 118.117492675781 C-972.666687011719 -18.933786392212 -959.930786132812 -158.024978637695 -918.384826660156 -289.721160888672 L-921.245788574219 -290.623718261719 Z" stroke="none"
      /><path fill="black" d="M-912.270263671875 -294.083648681641 L-909.8017578125 -287.013488769531 L-906.940734863281 -286.110931396484 L-912.270263671875 -294.083648681641 ZM-909.8017578125 -287.013488769531 C-950.959411621094 -156.548110961914 -963.576354980469 -18.756834030151 -946.796630859375 117.013595581055 L-943.819274902344 116.645622253418 C-960.546203613281 -18.69785118103 -947.968994140625 -156.055816650391 -906.940734863281 -286.110931396484 L-909.8017578125 -287.013488769531 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M-913.188171386719 265.496551513672 L-925.871826171875 275.531097412109 L-925.871826171875 275.531097412109 L-907.864074707031 270.172149658203 L-907.864074707031 270.172149658203 L-907.864074707031 270.172149658203 L-907.864074707031 270.172149658203 L-925.871826171875 275.531097412109 C-890.228881835938 395.302673339844 -831.685913085938 507.020935058594 -753.488159179688 604.492797851562 L-730.087890625 585.719787597656 C-805.857116699219 491.274963378906 -862.58203125 383.026214599609 -897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-913.188171386719 265.496551513672 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-913.188171386719 265.496551513672 L-925.871826171875 275.531097412109 L-925.871826171875 275.531097412109 L-923.546936035156 274.839233398438 L-923.546936035156 274.839233398438 L-925.871826171875 275.531097412109 C-890.228881835938 395.302673339844 -831.685913085938 507.020935058594 -753.488159179688 604.492797851562 L-748.80810546875 600.738220214844 C-826.520141601562 503.871734619141 -884.699462890625 392.847381591797 -920.121032714844 273.819732666016 L-920.121032714844 273.819732666016 L-920.121032714844 273.819732666016 L-913.188171386719 265.496551513672 Z" stroke="none"
      /><path fill="black" d="M-913.188171386719 265.496551513672 L-902.868774414062 268.685607910156 L-902.868774414062 268.685607910156 L-902.868774414062 268.685607910156 C-868.111389160156 385.481506347656 -811.022888183594 494.424133300781 -734.767944335938 589.474365234375 L-730.087890625 585.719787597656 C-805.857116699219 491.274963378906 -862.58203125 383.026214599609 -897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-897.118041992188 266.974243164062 L-913.188171386719 265.496551513672 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M-646.664306640625 676.698791503906 L-661.352233886719 683.384399414062 L-667.390747070312 698.387878417969 L-646.664306640625 676.698791503906 ZM-646.664306640625 676.698791503906 L-667.390747070312 698.387878417969 C-644.8955078125 719.884643554688 -621.374877929688 740.281982421875 -596.910949707031 759.508605957031 L-578.373352050781 735.92138671875 C-602.077514648438 717.291870117188 -624.867736816406 697.527954101562 -646.664306640625 676.698791503906 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-661.352233886719 683.384399414062 L-667.390747070312 698.387878417969 L-665.797668457031 696.720825195312 L-665.797668457031 696.720825195312 L-665.797668457031 696.720825195312 L-665.797668457031 696.720825195312 L-665.797668457031 696.720825195312 L-665.797668457031 696.720825195312 L-667.390747070312 698.387878417969 C-644.8955078125 719.884643554688 -621.374877929688 740.281982421875 -596.910949707031 759.508605957031 L-593.203430175781 754.791137695312 C-617.515380859375 735.683959960938 -640.889953613281 715.413330078125 -663.245422363281 694.050048828125 L-663.245422363281 694.050048828125 L-663.245422363281 694.050048828125 L-661.352233886719 683.384399414062 Z" stroke="none"
      /><path fill="black" d="M-646.664306640625 676.698791503906 L-661.352233886719 683.384399414062 L-661.352233886719 683.384399414062 L-650.8095703125 681.03662109375 L-650.8095703125 681.03662109375 C-628.873291015625 701.999328613281 -605.936950683594 721.889892578125 -582.080871582031 740.638854980469 L-578.373352050781 735.92138671875 C-602.077514648438 717.291870117188 -624.867736816406 697.527954101562 -646.664306640625 676.698791503906 L-647.901794433594 677.993713378906 L-646.664306640625 676.698791503906 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M-544.498474121094 761.326049804688 L-558.093688964844 770.021057128906 L-561.950378417969 785.7275390625 L-561.950378417969 785.7275390625 L-548.379699707031 766.752868652344 L-548.379699707031 766.752868652344 L-561.950378417969 785.7275390625 C-538.460205078125 802.527648925781 -514.228454589844 818.265930175781 -489.328125 832.894958496094 L-474.131591796875 807.028625488281 C-498.258605957031 792.853942871094 -521.73779296875 777.604431152344 -544.498474121094 761.326049804688 L-544.498474121094 761.326049804688 L-544.498474121094 761.326049804688 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-558.093688964844 770.021057128906 L-561.950378417969 785.7275390625 L-561.950378417969 785.7275390625 L-558.460021972656 780.847229003906 L-558.093688964844 770.021057128906 ZM-558.460021972656 780.847229003906 L-561.950378417969 785.7275390625 C-538.460205078125 802.527648925781 -514.228454589844 818.265930175781 -489.328125 832.894958496094 L-486.288818359375 827.7216796875 C-511.034454345703 813.183532714844 -535.11572265625 797.543029785156 -558.460021972656 780.847229003906 Z" stroke="none"
      /><path fill="black" d="M-544.498474121094 761.326049804688 L-558.093688964844 770.021057128906 L-547.988891601562 766.206359863281 L-544.995178222656 762.020568847656 L-547.988891601562 766.206359863281 C-525.082275390625 782.589111328125 -501.452575683594 797.936340332031 -477.1708984375 812.201904296875 L-474.131591796875 807.028625488281 C-498.258605957031 792.853942871094 -521.73779296875 777.604431152344 -544.498474121094 761.326049804688 L-544.498474121094 761.326049804688 L-544.498474121094 761.326049804688 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M-417.5673828125 837.6953125 L-429.620513916016 848.426330566406 L-430.950958251953 864.544555664062 L-417.5673828125 837.6953125 ZM-417.5673828125 837.6953125 L-430.950958251953 864.544555664062 C-346.638885498047 906.571716308594 -256.632568359375 936.039794921875 -163.790405273438 952.013000488281 L-158.703750610352 922.447326660156 C-248.66259765625 906.970275878906 -335.873718261719 878.417297363281 -417.5673828125 837.6953125 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-429.620513916016 848.426330566406 L-430.950958251953 864.544555664062 L-428.274230957031 859.174682617188 L-429.620513916016 848.426330566406 ZM-428.274230957031 859.174682617188 L-430.950958251953 864.544555664062 C-346.638885498047 906.571716308594 -256.632568359375 936.039794921875 -163.790405273438 952.013000488281 L-162.773071289062 946.099853515625 C-255.038558959961 930.225891113281 -344.48583984375 900.940856933594 -428.274230957031 859.174682617188 Z" stroke="none"
      /><path fill="black" d="M-417.5673828125 837.6953125 L-429.620513916016 848.426330566406 L-429.620513916016 848.426330566406 L-420.244110107422 843.065185546875 L-417.5673828125 837.6953125 ZM-417.5673828125 837.6953125 L-420.244110107422 843.065185546875 C-338.026733398438 884.048217773438 -250.256591796875 912.7841796875 -159.721069335938 928.360473632812 L-158.703750610352 922.447326660156 C-248.66259765625 906.970275878906 -335.873718261719 878.417297363281 -417.5673828125 837.6953125 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M-146.826278686523 924.412292480469 L-147.36003112793 927.772766113281 L-146.826278686523 924.412292480469 L-146.826278686523 924.412292480469 L-155.101974487305 938.266662597656 L-151.532241821289 954.040893554688 L-151.532241821289 954.040893554688 L-151.532241821289 954.040893554688 C-101.384124755859 962.005981445312 -50.716190338135 966 0.000033668697 966 C19.477035522461 966 38.961158752441 965.410949707031 58.42569732666 964.231506347656 L56.611236572266 934.286437988281 C37.75118637085 935.429260253906 18.872158050537 936 0.000032623084 936 C-49.14115524292 936 -98.235557556152 932.130004882812 -146.826278686523 924.412292480469 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-155.101974487305 938.266662597656 L-151.532241821289 954.040893554688 L-151.532241821289 954.040893554688 L-151.532241821289 954.040893554688 C-101.384124755859 962.005981445312 -50.716190338135 966 0.000033668697 966 C19.477035522461 966 38.961158752441 965.410949707031 58.42569732666 964.231506347656 L58.062805175781 958.242492675781 C38.719165802002 959.414611816406 19.356060028076 960 0.000033459575 960 C-50.401187896729 960 -100.754417419434 956.030822753906 -150.591049194336 948.115173339844 L-150.591049194336 948.115173339844 L-150.591049194336 948.115173339844 L-150.591049194336 948.115173339844 L-150.591049194336 948.115173339844 L-150.591049194336 948.115173339844 L-150.591049194336 948.115173339844 L-155.101974487305 938.266662597656 Z" stroke="none"
      /><path fill="black" d="M-146.826278686523 924.412292480469 L-147.36003112793 927.772766113281 L-147.36003112793 927.772766113281 L-147.36003112793 927.772766113281 L-147.36003112793 927.772766113281 L-147.36003112793 927.772766113281 L-147.36003112793 927.772766113281 L-146.826278686523 924.412292480469 L-146.826278686523 924.412292480469 L-155.101974487305 938.266662597656 L-155.101974487305 938.266662597656 L-147.767471313477 930.338012695312 L-147.767471313477 930.338012695312 L-147.767471313477 930.338012695312 C-98.865272521973 938.105224609375 -49.456165313721 942 0.000032832206 942 C18.993133544922 942 37.993179321289 941.425598144531 56.974128723145 940.275451660156 L56.611236572266 934.286437988281 C37.75118637085 935.429260253906 18.872158050537 936 0.000032623084 936 C-49.14115524292 936 -98.235557556152 932.130004882812 -146.826278686523 924.412292480469 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M400.813201904297 845.839660644531 C330.444519042969 879.184875488281 256.189758300781 903.618530273438 179.77001953125 918.574279785156 L179.77001953125 918.574279785156 L179.77001953125 918.574279785156 L176.759063720703 934.428833007812 L185.531875610352 948.015808105469 L185.531875610352 948.015808105469 L180.549713134766 922.558349609375 L180.549713134766 922.558349609375 L185.531875610352 948.015808105469 C264.400970458984 932.580688476562 341.035705566406 907.363891601562 413.659790039062 872.949951171875 L400.813201904297 845.839660644531 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M411.090454101562 867.527893066406 C338.91748046875 901.728088378906 262.758728027344 926.788269042969 184.379516601562 942.127502441406 L184.379516601562 942.127502441406 L184.379516601562 942.127502441406 L176.759063720703 934.428833007812 L185.531875610352 948.015808105469 L184.69775390625 943.753662109375 L184.69775390625 943.753662109375 L184.69775390625 943.753662109375 L184.69775390625 943.753662109375 L185.531875610352 948.015808105469 C264.400970458984 932.580688476562 341.035705566406 907.363891601562 413.659790039062 872.949951171875 L411.090454101562 867.527893066406 Z" stroke="none"
      /><path fill="black" d="M400.813201904297 845.839660644531 C330.444519042969 879.184875488281 256.189758300781 903.618530273438 179.77001953125 918.574279785156 L179.77001953125 918.574279785156 L179.77001953125 918.574279785156 L176.759063720703 934.428833007812 L176.759063720703 934.428833007812 L180.922393798828 924.462585449219 L180.922393798828 924.462585449219 L180.922393798828 924.462585449219 L180.922393798828 924.462585449219 L180.922393798828 924.462585449219 L180.922393798828 924.462585449219 L180.922393798828 924.462585449219 C257.832000732422 909.410949707031 332.562774658203 884.820678710938 403.382507324219 851.26171875 L400.813201904297 845.839660644531 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M831.759521484375 429.269256591797 C747.505798339844 592.520690917969 617.073852539062 727.368957519531 456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 C456.717346191406 817.009948730469 456.717346191406 817.009948730469 456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L458.790100097656 833.014221191406 L471.355712890625 843.196166992188 L471.355712890625 843.196166992188 L467.408905029297 836.135803222656 L467.408905029297 836.135803222656 L471.355712890625 843.196166992188 C636.851867675781 750.682067871094 771.464294433594 611.511779785156 858.41845703125 443.027893066406 L831.759521484375 429.269256591797 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M458.790100097656 833.014221191406 L471.355712890625 843.196166992188 L468.428039550781 837.958923339844 L458.790100097656 833.014221191406 ZM853.086669921875 440.276184082031 C766.672607421875 607.713562011719 632.896240234375 746.019409179688 468.428039550781 837.958923339844 L471.355712890625 843.196166992188 C636.851867675781 750.682067871094 771.464294433594 611.511779785156 858.41845703125 443.027893066406 L853.086669921875 440.276184082031 Z" stroke="none"
      /><path fill="black" d="M831.759521484375 429.269256591797 C747.505798339844 592.520690917969 617.073852539062 727.368957519531 456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L456.717346191406 817.009948730469 C456.717346191406 817.009948730469 456.717346191406 817.009948730469 456.717346191406 817.009948730469 L456.717346191406 817.009948730469 L458.790100097656 833.014221191406 L459.64501953125 822.247192382812 L459.64501953125 822.247192382812 C621.029479980469 732.031555175781 752.297485351562 596.318908691406 837.09130859375 432.02099609375 L831.759521484375 429.269256591797 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M964.163330078125 -59.540710449219 L934.220336914062 -57.691619873047 C938.060668945312 4.495784759521 935.682067871094 66.911254882812 927.119934082031 128.626007080078 L927.119934082031 128.626007080078 L927.119934082031 128.626007080078 L941.134338378906 136.62776184082 L956.835327148438 132.748641967773 L954.053283691406 132.362670898438 L954.053283691406 132.362670898438 L954.053283691406 132.362670898438 L954.053283691406 132.362670898438 L954.053283691406 132.362670898438 L954.053283691406 132.362670898438 L956.835327148438 132.748641967773 C965.671875 69.055847167969 968.126708984375 4.639880180359 964.163330078125 -59.540710449219 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M964.163330078125 -59.540710449219 L958.174743652344 -59.170890808105 C962.113525390625 4.611061096191 959.673889160156 68.626930236816 950.892211914062 131.924118041992 L956.835327148438 132.748641967773 C965.671875 69.055847167969 968.126708984375 4.639880180359 964.163330078125 -59.540710449219 ZM950.892211914062 131.924118041992 L941.134338378906 136.62776184082 L956.835327148438 132.748641967773 L950.892211914062 131.924118041992 Z" stroke="none"
      /><path fill="black" d="M940.208923339844 -58.061435699463 L934.220336914062 -57.691619873047 C938.060668945312 4.495784759521 935.682067871094 66.911254882812 927.119934082031 128.626007080078 L927.119934082031 128.626007080078 L941.134338378906 136.62776184082 L933.06298828125 129.450531005859 L933.06298828125 129.450531005859 C941.679992675781 67.340171813965 944.073852539062 4.524603843689 940.208923339844 -58.061435699463 Z" opacity="0.15000000596" stroke="none"
      /><path fill="aqua" d="M849.011352539062 -460.799011230469 L822.64453125 -446.488464355469 C869.822265625 -359.564666748047 902.92529296875 -265.712951660156 920.721862792969 -168.425933837891 L950.232177734375 -173.824203491211 C931.865234375 -274.229400634766 897.701171875 -371.089172363281 849.011352539062 -460.799011230469 ZM950.232177734375 -173.824203491211 L920.721862792969 -168.425933837891 L936.538024902344 -165.219635009766 L950.232177734375 -173.824203491211 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M849.011352539062 -460.799011230469 L843.737976074219 -457.936889648438 C892.125366210938 -368.784271240234 926.077209472656 -272.526123046875 944.330078125 -172.744552612305 L944.330078125 -172.744552612305 L944.330078125 -172.744552612305 L936.538024902344 -165.219635009766 L950.232177734375 -173.824203491211 L946.39599609375 -173.122451782227 L946.39599609375 -173.122451782227 L946.39599609375 -173.122451782227 L946.39599609375 -173.122451782227 L950.232177734375 -173.824203491211 C931.865234375 -274.229400634766 897.701171875 -371.089172363281 849.011352539062 -460.799011230469 Z" stroke="none"
      /><path fill="black" d="M827.917907714844 -449.3505859375 L822.64453125 -446.488464355469 C869.822265625 -359.564666748047 902.92529296875 -265.712951660156 920.721862792969 -168.425933837891 L926.623901367188 -169.505584716797 C908.713256835938 -267.416259765625 875.398010253906 -361.869567871094 827.917907714844 -449.3505859375 ZM926.623901367188 -169.505584716797 L920.721862792969 -168.425933837891 L936.538024902344 -165.219635009766 L926.623901367188 -169.505584716797 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -968 C-534.611633300781 -968 -968 -534.611633300781 -968 0 L-968 0 C-968 534.611633300781 -534.611633300781 968 0 968 C534.611633300781 968 968 534.611633300781 968 0 C968 -534.611633300781 534.611633300781 -968 0 -968 L0 -967 C534.059326171875 -967 967 -534.059326171875 967 0 C967 534.059326171875 534.059326171875 967 0 967 C-534.059326171875 967 -967 534.059326171875 -967 0 C-967 -534.059326171875 -534.059326171875 -967 -0 -967 L-0 -968 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -968 C-534.611633300781 -968 -968 -534.611633300781 -968 0 L-968 0 C-968 534.611633300781 -534.611633300781 968 0 968 C534.611633300781 968 968 534.611633300781 968 0 C968 -534.611633300781 534.611633300781 -968 0 -968 L0 -967.799987792969 C534.501159667969 -967.799987792969 967.799987792969 -534.501159667969 967.799987792969 0 C967.799987792969 534.501159667969 534.501159667969 967.799987792969 0 967.799987792969 C-534.501159667969 967.799987792969 -967.799987792969 534.501159667969 -967.799987792969 0 C-967.799987792969 -534.501159667969 -534.501159667969 -967.799987792969 -0 -967.799987792969 L-0 -968 Z" stroke="none"
      /><path fill="black" d="M-0 -967.200012207031 C-534.169799804688 -967.200012207031 -967.200012207031 -534.169799804688 -967.200012207031 0 L-967.200012207031 0 C-967.200012207031 534.169799804688 -534.169799804688 967.200012207031 0 967.200012207031 C534.169799804688 967.200012207031 967.200012207031 534.169799804688 967.200012207031 0 C967.200012207031 -534.169799804688 534.169799804688 -967.200012207031 0 -967.200012207031 L0 -967 C534.059326171875 -967 967 -534.059326171875 967 0 C967 534.059326171875 534.059326171875 967 0 967 C-534.059326171875 967 -967 534.059326171875 -967 0 C-967 -534.059326171875 -534.059326171875 -967 -0 -967 L-0 -967.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="rgb(153,0,0)" d="M875.045166015625 -110.543914794922 L860.882751464844 -102.809989929199 L860.882751464844 -102.809989929199 L860.882751464844 -102.809989929199 C861.587524414062 -96.90837097168 862.231628417969 -90.999664306641 862.81494140625 -85.08479309082 L892.670104980469 -88.028907775879 C892.066650390625 -94.1484375 891.400268554688 -100.261604309082 890.671081542969 -106.367431640625 L890.671081542969 -106.367431640625 L890.671081542969 -106.367431640625 L875.045166015625 -110.543914794922 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M875.045166015625 -110.543914794922 L884.713439941406 -105.655944824219 L884.713439941406 -105.655944824219 L884.713439941406 -105.655944824219 C885.437744140625 -99.590957641602 886.099609375 -93.518684387207 886.699035644531 -87.440086364746 L892.670104980469 -88.028907775879 C892.066650390625 -94.1484375 891.400268554688 -100.261604309082 890.671081542969 -106.367431640625 L890.671081542969 -106.367431640625 L890.671081542969 -106.367431640625 L875.045166015625 -110.543914794922 Z" stroke="none"
      /><path fill="black" d="M875.045166015625 -110.543914794922 L860.882751464844 -102.809989929199 L860.882751464844 -102.809989929199 C861.587524414062 -96.90837097168 862.231628417969 -90.999664306641 862.81494140625 -85.08479309082 L868.785949707031 -85.673614501953 C868.198608398438 -91.629417419434 867.550109863281 -97.57901763916 866.840393066406 -103.521476745605 L866.840393066406 -103.521476745605 L866.840393066406 -103.521476745605 L866.840393066406 -103.521476745605 L866.840393066406 -103.521476745605 L875.045166015625 -110.543914794922 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M827.234436035156 305.952941894531 L811.10107421875 306.2744140625 L811.10107421875 306.2744140625 L811.10107421875 306.2744140625 C809.080200195312 311.626312255859 807.00634765625 316.958099365234 804.879943847656 322.268951416016 L832.73046875 333.420135498047 C834.930480957031 327.925506591797 837.076049804688 322.409240722656 839.166870117188 316.872131347656 L822.015625 310.395782470703 L839.166870117188 316.872131347656 L827.234436035156 305.952941894531 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M827.234436035156 305.952941894531 L833.5537109375 314.752593994141 L839.166870117188 316.872131347656 L827.234436035156 305.952941894531 ZM833.5537109375 314.752593994141 C831.476867675781 320.252655029297 829.345642089844 325.732025146484 827.160339355469 331.189910888672 L832.73046875 333.420135498047 C834.930480957031 327.925506591797 837.076049804688 322.409240722656 839.166870117188 316.872131347656 L833.5537109375 314.752593994141 Z" stroke="none"
      /><path fill="black" d="M827.234436035156 305.952941894531 L811.10107421875 306.2744140625 L811.10107421875 306.2744140625 L811.10107421875 306.2744140625 C809.080200195312 311.626312255859 807.00634765625 316.958099365234 804.879943847656 322.268951416016 L810.450073242188 324.499206542969 C812.591186523438 319.151580810547 814.679382324219 313.782897949219 816.714233398438 308.393951416016 L815.239318847656 307.837005615234 L815.239318847656 307.837005615234 L816.714233398438 308.393951416016 L827.234436035156 305.952941894531 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M802.416137695312 328.355560302734 C800.03857421875 334.165679931641 797.597961425781 339.949798583984 795.094787597656 345.706939697266 L822.606689453125 357.669097900391 C825.196533203125 351.712768554688 827.721557617188 345.728515625 830.181396484375 339.717315673828 L811.723388671875 332.164154052734 L811.723388671875 332.164154052734 L811.723388671875 332.164154052734 L811.723388671875 332.164154052734 L830.181396484375 339.717315673828 L830.181396484375 339.717315673828 L818.552185058594 328.475708007812 L802.416137695312 328.355560302734 L802.416137695312 328.355560302734 L802.416137695312 328.355560302734 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M818.552185058594 328.475708007812 L824.628356933594 337.444976806641 L830.181396484375 339.717315673828 L818.552185058594 328.475708007812 ZM824.628356933594 337.444976806641 C822.184936523438 343.415924072266 819.676818847656 349.360198974609 817.104309082031 355.276672363281 L822.606689453125 357.669097900391 C825.196533203125 351.712768554688 827.721557617188 345.728515625 830.181396484375 339.717315673828 L824.628356933594 337.444976806641 Z" stroke="none"
      /><path fill="black" d="M802.416137695312 328.355560302734 C800.03857421875 334.165679931641 797.597961425781 339.949798583984 795.094787597656 345.706939697266 L800.59716796875 348.099365234375 C803.11767578125 342.302398681641 805.5751953125 336.478240966797 807.969177246094 330.627899169922 L806.330383300781 329.957305908203 L806.330383300781 329.957305908203 L807.969177246094 330.627899169922 L818.552185058594 328.475708007812 L802.416137695312 328.355560302734 L802.416137695312 328.355560302734 L802.416137695312 328.355560302734 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M788.472534179688 360.555145263672 L806.233520507812 368.676940917969 L788.472534179688 360.555145263672 C786.139831542969 365.656433105469 783.757629394531 370.734954833984 781.326354980469 375.790008544922 L808.361877441406 388.793121337891 C810.877258300781 383.563171386719 813.341918945312 378.308929443359 815.75537109375 373.031127929688 L815.75537109375 373.031127929688 L815.75537109375 373.031127929688 L804.590576171875 361.328125 L788.472534179688 360.555145263672 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M804.590576171875 361.328125 L810.298767089844 370.535919189453 L810.298767089844 370.535919189453 L810.298767089844 370.535919189453 C807.901489257812 375.778411865234 805.453369140625 380.997528076172 802.954772949219 386.192504882812 L808.361877441406 388.793121337891 C810.877258300781 383.563171386719 813.341918945312 378.308929443359 815.75537109375 373.031127929688 L815.75537109375 373.031127929688 L815.75537109375 373.031127929688 L804.590576171875 361.328125 Z" stroke="none"
      /><path fill="black" d="M788.472534179688 360.555145263672 L793.929138183594 363.050354003906 L804.590576171875 361.328125 L788.472534179688 360.555145263672 ZM788.472534179688 360.555145263672 C786.139831542969 365.656433105469 783.757629394531 370.734954833984 781.326354980469 375.790008544922 L786.733459472656 378.390655517578 C789.181579589844 373.300598144531 791.580261230469 368.186950683594 793.929138183594 363.050354003906 L788.472534179688 360.555145263672 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M778.310668945312 381.996734619141 C775.937377929688 386.832244873047 773.519104003906 391.645568847656 771.056091308594 396.436004638672 L797.736206054688 410.153503417969 C800.284423828125 405.197296142578 802.786437988281 400.217468261719 805.241821289062 395.214599609375 L786.521057128906 386.026397705078 L786.521057128906 386.026397705078 L805.241821289062 395.214599609375 L805.241821289062 395.214599609375 L794.401489257812 383.210479736328 L778.310668945312 381.996734619141 L778.310668945312 381.996734619141 L778.310668945312 381.996734619141 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M794.401489257812 383.210479736328 L799.855590820312 392.571044921875 L799.855590820312 392.571044921875 L799.855590820312 392.571044921875 C797.416625976562 397.540435791016 794.931396484375 402.486968994141 792.400207519531 407.410003662109 L797.736206054688 410.153503417969 C800.284423828125 405.197296142578 802.786437988281 400.217468261719 805.241821289062 395.214599609375 L803.602172851562 394.409851074219 L803.602172851562 394.409851074219 L803.602172851562 394.409851074219 L803.602172851562 394.409851074219 L805.241821289062 395.214599609375 L794.401489257812 383.210479736328 Z" stroke="none"
      /><path fill="black" d="M778.310668945312 381.996734619141 C775.937377929688 386.832244873047 773.519104003906 391.645568847656 771.056091308594 396.436004638672 L776.39208984375 399.179504394531 C778.872131347656 394.355895996094 781.307189941406 389.509307861328 783.696899414062 384.640319824219 L783.696899414062 384.640319824219 L783.696899414062 384.640319824219 L794.401489257812 383.210479736328 L778.310668945312 381.996734619141 L778.310668945312 381.996734619141 L778.310668945312 381.996734619141 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M411.620239257812 763.058166503906 L411.620239257812 763.058166503906 L411.620239257812 763.058166503906 C406.4873046875 765.827087402344 401.326538085938 768.544067382812 396.138763427734 771.208862304688 L409.845977783203 797.894287109375 C415.213256835938 795.137329101562 420.552612304688 792.326293945312 425.863159179688 789.461547851562 L425.863159179688 789.461547851562 L425.863159179688 789.461547851562 L424.012664794922 773.393371582031 L411.620269775391 763.058166503906 L411.620239257812 763.058166503906 C411.620239257812 763.058166503906 411.620239257812 763.058166503906 411.620239257812 763.058166503906 L411.620239257812 763.058166503906 L411.620239257812 763.058166503906 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M424.012664794922 773.393371582031 L423.014587402344 784.180908203125 L423.014587402344 784.180908203125 L423.014587402344 784.180908203125 L423.014587402344 784.180908203125 L423.014587402344 784.180908203125 C417.739532470703 787.026428222656 412.435913085938 789.818664550781 407.104522705078 792.557189941406 L409.845977783203 797.894287109375 C415.213256835938 795.137329101562 420.552612304688 792.326293945312 425.863159179688 789.461547851562 L425.863159179688 789.461547851562 L425.863159179688 789.461547851562 L424.012664794922 773.393371582031 Z" stroke="none"
      /><path fill="black" d="M411.620239257812 763.058166503906 L411.620239257812 763.058166503906 L411.620239257812 763.058166503906 C406.4873046875 765.827087402344 401.326538085938 768.544067382812 396.138763427734 771.208862304688 L398.880187988281 776.545959472656 C404.103881835938 773.862731933594 409.300354003906 771.126892089844 414.468841552734 768.3388671875 L414.468841552734 768.3388671875 L414.468841552734 768.3388671875 L424.012664794922 773.393371582031 L411.620269775391 763.058166503906 L411.620269775391 763.058166503906 L411.620239257812 763.058166503906 C411.620239257812 763.058166503906 411.620239257812 763.058166503906 411.620239257812 763.058166503906 L411.620239257812 763.058166503906 L411.620239257812 763.058166503906 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(0,0,153)" d="M-684.268798828125 -579.9873046875 C-721.660095214844 -535.873046875 -754.69775390625 -488.246337890625 -782.920532226562 -437.772094726562 L-782.920532226562 -437.772064208984 L-782.920532226562 -437.772064208984 L-772.738647460938 -425.204650878906 L-756.735961914062 -423.130889892578 L-756.735961914062 -423.130889892578 L-756.735900878906 -423.130889892578 C-756.735900878906 -423.130889892578 -756.735900878906 -423.130889892578 -756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 C-729.45703125 -471.917022705078 -697.524291992188 -517.950866699219 -661.383544921875 -560.589721679688 L-684.268798828125 -579.9873046875 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-684.268798828125 -579.9873046875 C-721.660095214844 -535.873046875 -754.69775390625 -488.246337890625 -782.920532226562 -437.772094726562 L-782.920532226562 -437.772064208984 L-782.920532226562 -437.772064208984 L-772.738647460938 -425.204650878906 L-777.683654785156 -434.843841552734 L-780.644287109375 -436.499328613281 L-780.644287109375 -436.499328613281 L-777.683654785156 -434.843841552734 C-749.649597167969 -484.98046875 -716.832885742188 -532.288635253906 -679.691711425781 -576.107788085938 L-684.268798828125 -579.9873046875 Z" stroke="none"
      /><path fill="black" d="M-665.960571289062 -564.46923828125 C-702.351440429688 -521.535278320312 -734.505187988281 -475.182891845703 -761.972839355469 -426.059112548828 L-760.434020996094 -425.198699951172 L-760.434020996094 -425.198699951172 L-760.434020996094 -425.198699951172 L-760.434020996094 -425.198699951172 L-761.972839355469 -426.059112548828 L-772.738647460938 -425.204650878906 L-756.735961914062 -423.130889892578 L-756.735961914062 -423.130889892578 L-756.735900878906 -423.130889892578 C-756.735900878906 -423.130889892578 -756.735900878906 -423.130889892578 -756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 L-756.735900878906 -423.130889892578 C-729.45703125 -471.917022705078 -697.524291992188 -517.950866699219 -661.383544921875 -560.589721679688 L-665.960571289062 -564.46923828125 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-680.307495117188 -584.628723144531 L-672.826171875 -570.288513183594 L-657.554748535156 -565.075927734375 L-680.307495117188 -584.628723144531 ZM-668.602355957031 -597.979858398438 C-672.547973632812 -593.568176269531 -676.449890136719 -589.117614746094 -680.307495117188 -584.628723144531 L-657.554748535156 -565.075927734375 C-653.826171875 -569.414672851562 -650.054748535156 -573.716430664062 -646.241027832031 -577.980529785156 L-668.602355957031 -597.979858398438 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-668.602355957031 -597.979858398438 C-672.547973632812 -593.568176269531 -676.449890136719 -589.117614746094 -680.307495117188 -584.628723144531 L-678.263305664062 -582.8720703125 L-678.263305664062 -582.8720703125 L-680.307495117188 -584.628723144531 L-672.826171875 -570.288513183594 L-675.756896972656 -580.718139648438 L-675.756896972656 -580.718139648438 L-675.756896972656 -580.718139648438 C-671.925170898438 -585.177001953125 -668.049377441406 -589.597839355469 -664.130065917969 -593.97998046875 L-668.602355957031 -597.979858398438 Z" stroke="none"
      /><path fill="black" d="M-672.826171875 -570.288513183594 L-657.554748535156 -565.075927734375 L-662.105285644531 -568.986450195312 L-672.826171875 -570.288513183594 ZM-650.713317871094 -581.980407714844 C-654.553405761719 -577.686767578125 -658.350891113281 -573.355285644531 -662.105285644531 -568.986450195312 L-657.554748535156 -565.075927734375 C-653.826171875 -569.414672851562 -650.054748535156 -573.716430664062 -646.241027832031 -577.980529785156 L-650.713317871094 -581.980407714844 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(153,0,0)" d="M-304.010559082031 -843.911499023438 C-309.470550537109 -841.944580078125 -314.911285400391 -839.924743652344 -320.332061767578 -837.852233886719 L-314.425262451172 -822.402648925781 L-314.425262451172 -822.402648925781 L-320.332061767578 -837.852233886719 L-320.572357177734 -821.679626464844 L-309.618621826172 -809.830444335938 L-309.618621826172 -809.830444335938 L-309.618591308594 -809.830444335938 C-304.379119873047 -811.833618164062 -299.120361328125 -813.785888671875 -293.842987060547 -815.68701171875 L-304.010559082031 -843.911499023438 Z" opacity="0.5" stroke="none"
      /><path opacity="0.15000000596" d="M-304.010559082031 -843.911499023438 C-309.470550537109 -841.944580078125 -314.911285400391 -839.924743652344 -320.332061767578 -837.852233886719 L-318.189361572266 -832.247863769531 C-312.804840087891 -834.306518554688 -307.400512695312 -836.312866210938 -301.97705078125 -838.2666015625 L-304.010559082031 -843.911499023438 ZM-320.332061767578 -837.852233886719 L-320.572357177734 -821.679626464844 L-318.189361572266 -832.247863769531 L-320.332061767578 -837.852233886719 Z" stroke="none"
      /><path fill="black" d="M-320.572357177734 -821.679626464844 L-309.618621826172 -809.830444335938 L-309.618621826172 -809.830444335938 L-309.618591308594 -809.830444335938 C-304.379119873047 -811.833618164062 -299.120361328125 -813.785888671875 -293.842987060547 -815.68701171875 L-295.876495361328 -821.331909179688 C-301.190399169922 -819.417602539062 -306.485565185547 -817.451843261719 -311.761291503906 -815.434814453125 L-311.761291503906 -815.434814453125 L-311.761291503906 -815.434814453125 L-320.572357177734 -821.679626464844 Z" opacity="0.15000000596" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -866 C-478.278594970703 -866 -866 -478.278594970703 -866 0 L-866 0 C-866 478.278594970703 -478.278594970703 866 0 866 C478.278594970703 866 866 478.278594970703 866 0 C866 -478.278594970703 478.278594970703 -866 0 -866 L0 -865 C477.726318359375 -865 865 -477.726318359375 865 0 C865 477.726318359375 477.726318359375 865 0 865 C-477.726318359375 865 -865 477.726318359375 -865 0 C-865 -477.726318359375 -477.726318359375 -865 -0 -865 L-0 -866 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -866 C-478.278594970703 -866 -866 -478.278594970703 -866 0 L-866 0 C-866 478.278594970703 -478.278594970703 866 0 866 C478.278594970703 866 866 478.278594970703 866 0 C866 -478.278594970703 478.278594970703 -866 0 -866 L0 -865.799987792969 C478.168121337891 -865.799987792969 865.799987792969 -478.168121337891 865.799987792969 0 C865.799987792969 478.168121337891 478.168121337891 865.799987792969 0 865.799987792969 C-478.168121337891 865.799987792969 -865.799987792969 478.168121337891 -865.799987792969 0 C-865.799987792969 -478.168121337891 -478.168121337891 -865.799987792969 -0 -865.799987792969 L-0 -866 Z" stroke="none"
      /><path fill="black" d="M-0 -865.200012207031 C-477.836761474609 -865.200012207031 -865.200012207031 -477.836761474609 -865.200012207031 0 L-865.200012207031 0 C-865.200012207031 477.836761474609 -477.836761474609 865.200012207031 0 865.200012207031 C477.836761474609 865.200012207031 865.200012207031 477.836761474609 865.200012207031 0 C865.200012207031 -477.836761474609 477.836761474609 -865.200012207031 0 -865.200012207031 L0 -865 C477.726318359375 -865 865 -477.726318359375 865 0 C865 477.726318359375 477.726318359375 865 0 865 C-477.726318359375 865 -865 477.726318359375 -865 0 C-865 -477.726318359375 -477.726318359375 -865 -0 -865 L-0 -865.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -833 C-460.053192138672 -833 -833 -460.053192138672 -833 0 L-833 0 C-833 460.053192138672 -460.053192138672 833 0 833 C460.053192138672 833 833 460.053192138672 833 0 C833 -460.053192138672 460.053192138672 -833 0 -833 L0 -832 C459.500915527344 -832 832 -459.500915527344 832 0 C832 459.500915527344 459.500915527344 832 0 832 C-459.500915527344 832 -832 459.500915527344 -832 0 C-832 -459.500915527344 -459.500915527344 -832 -0 -832 L-0 -833 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -833 C-460.053192138672 -833 -833 -460.053192138672 -833 0 L-833 0 C-833 460.053192138672 -460.053192138672 833 0 833 C460.053192138672 833 833 460.053192138672 833 0 C833 -460.053192138672 460.053192138672 -833 0 -833 L0 -832.799987792969 C459.942749023438 -832.799987792969 832.799987792969 -459.942749023438 832.799987792969 0 C832.799987792969 459.942749023438 459.942749023438 832.799987792969 0 832.799987792969 C-459.942749023438 832.799987792969 -832.799987792969 459.942749023438 -832.799987792969 0 C-832.799987792969 -459.942749023438 -459.942749023438 -832.799987792969 -0 -832.799987792969 L-0 -833 Z" stroke="none"
      /><path fill="black" d="M-0 -832.200012207031 C-459.611358642578 -832.200012207031 -832.200012207031 -459.611358642578 -832.200012207031 0 L-832.200012207031 0 C-832.200012207031 459.611358642578 -459.611358642578 832.200012207031 0 832.200012207031 C459.611358642578 832.200012207031 832.200012207031 459.611358642578 832.200012207031 0 C832.200012207031 -459.611358642578 459.611358642578 -832.200012207031 0 -832.200012207031 L0 -832 C459.500915527344 -832 832 -459.500915527344 832 0 C832 459.500915527344 459.500915527344 832 0 832 C-459.500915527344 832 -832 459.500915527344 -832 0 C-832 -459.500915527344 -459.500915527344 -832 -0 -832 L-0 -832.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="black" d="M-682.928405761719 324.260345458984 L-750.679260253906 356.429016113281 C-749.946472167969 357.972290039062 -749.208984375 359.513336181641 -748.466735839844 361.052062988281 L-680.915588378906 328.466125488281 C-681.5908203125 327.066284179688 -682.261779785156 325.664337158203 -682.928405761719 324.260345458984 Z" stroke="none"
      /><path fill="black" d="M654.749267578125 -511.726867675781 L595.656372070312 -465.542144775391 C596.613464355469 -464.317535400391 597.566772460938 -463.090026855469 598.516296386719 -461.859558105469 L657.892883300781 -507.678955078125 C656.849182128906 -509.031494140625 655.801330566406 -510.380798339844 654.749267578125 -511.726867675781 Z" stroke="none"
      /><path fill="black" d="M-0 -831 C-458.948638916016 -831 -831 -458.948638916016 -831 0 L-831 0 C-831 458.948638916016 -458.948638916016 831 0 831 C458.948638916016 831 831 458.948638916016 831 0 C831 -458.948638916016 458.948638916016 -831 0 -831 L0 -756 C417.527282714844 -756 756 -417.527282714844 756 0 C756 417.527282714844 417.527282714844 756 0 756 C-417.527282714844 756 -756 417.527282714844 -756 0 C-756 -417.527282714844 -417.527282714844 -756 -0 -756 L-0 -831 Z" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -755 C-416.974975585938 -755 -755 -416.974975585938 -755 0 L-755 0 C-755 416.974975585938 -416.974975585938 755 0 755 C416.974975585938 755 755 416.974975585938 755 0 C755 -416.974975585938 416.974975585938 -755 0 -755 L0 -754 C416.422698974609 -754 754 -416.422698974609 754 0 C754 416.422698974609 416.422698974609 754 0 754 C-416.422698974609 754 -754 416.422698974609 -754 0 C-754 -416.422698974609 -416.422698974609 -754 -0 -754 L-0 -755 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -755 C-416.974975585938 -755 -755 -416.974975585938 -755 0 L-755 0 C-755 416.974975585938 -416.974975585938 755 0 755 C416.974975585938 755 755 416.974975585938 755 0 C755 -416.974975585938 416.974975585938 -755 0 -755 L0 -754.799987792969 C416.864532470703 -754.799987792969 754.799987792969 -416.864532470703 754.799987792969 0 C754.799987792969 416.864532470703 416.864532470703 754.799987792969 0 754.799987792969 C-416.864532470703 754.799987792969 -754.799987792969 416.864532470703 -754.799987792969 0 C-754.799987792969 -416.864532470703 -416.864532470703 -754.799987792969 -0 -754.799987792969 L-0 -755 Z" stroke="none"
      /><path fill="black" d="M-0 -754.200012207031 C-416.533172607422 -754.200012207031 -754.200012207031 -416.533172607422 -754.200012207031 0 L-754.200012207031 0 C-754.200012207031 416.533172607422 -416.533172607422 754.200012207031 0 754.200012207031 C416.533172607422 754.200012207031 754.200012207031 416.533172607422 754.200012207031 0 C754.200012207031 -416.533172607422 416.533172607422 -754.200012207031 0 -754.200012207031 L0 -754 C416.422698974609 -754 754 -416.422698974609 754 0 C754 416.422698974609 416.422698974609 754 0 754 C-416.422698974609 754 -754 416.422698974609 -754 0 C-754 -416.422698974609 -416.422698974609 -754 -0 -754 L-0 -754.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="black" d="M-281.510528564453 -698.398742675781 C-282.946319580078 -697.820007324219 -284.380340576172 -697.23681640625 -285.812530517578 -696.649230957031 L-257.345153808594 -627.261901855469 C-256.055603027344 -627.790954589844 -254.764419555664 -628.316040039062 -253.471618652344 -628.837158203125 L-281.510528564453 -698.398742675781 Z" stroke="none"
      /><path fill="black" d="M71.216842651367 674.249328613281 C69.830688476562 674.395751953125 68.44408416748 674.537902832031 67.057052612305 674.675720214844 L74.474868774414 749.307983398438 C76.015335083008 749.154907226562 77.555328369141 748.9970703125 79.094818115234 748.834411621094 L71.216842651367 674.249328613281 Z" stroke="none"
      /><path fill="black" d="M631.631286621094 246.426361083984 C631.124633789062 247.724899291992 630.614013671875 249.021881103516 630.099426269531 250.317276000977 L699.800659179688 278.007232666016 C700.372192382812 276.568542480469 700.939331054688 275.128112792969 701.501953125 273.685913085938 L631.631286621094 246.426361083984 Z" stroke="none"
      /><path fill="rgb(251,106,74)" d="M-384.930938720703 -647.176330566406 C-387.009826660156 -645.939819335938 -389.082763671875 -644.693298339844 -391.149658203125 -643.436828613281 L-352.190521240234 -579.349487304688 C-350.329498291016 -580.480834960938 -348.463043212891 -581.603149414062 -346.591186523438 -582.716491699219 L-384.930938720703 -647.176330566406 Z" stroke="none"
      /><path fill="black" d="M-751.774963378906 -42.93518447876 C-751.868713378906 -41.29305267334 -751.957153320312 -39.650619506836 -752.040161132812 -38.007907867432 L-677.1357421875 -34.222259521484 C-677.06103515625 -35.701354980469 -676.981384277344 -37.180198669434 -676.89697265625 -38.658771514893 L-751.774963378906 -42.93518447876 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M-233.793731689453 -715.785949707031 C-236.920776367188 -714.764526367188 -240.041107177734 -713.722717285156 -243.154495239258 -712.660400390625 L-218.935928344727 -641.678344726562 C-216.132629394531 -642.634765625 -213.323089599609 -643.572875976562 -210.507507324219 -644.492492675781 L-233.793731689453 -715.785949707031 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M702.342590332031 -271.521362304688 L632.38818359375 -244.477386474609 C633.958862304688 -240.414566040039 635.490295410156 -236.336700439453 636.982360839844 -232.244354248047 L707.445007324219 -257.935119628906 C705.787902832031 -262.480133056641 704.087036132812 -267.009094238281 702.342590332031 -271.521362304688 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M-164.120223999023 -734.89697265625 C-166.292053222656 -734.411926269531 -168.461730957031 -733.917297363281 -170.629165649414 -733.413024902344 L-153.634231567383 -660.363952636719 C-151.682662963867 -660.817993164062 -149.729095458984 -661.263366699219 -147.773590087891 -661.700073242188 L-164.120223999023 -734.89697265625 Z" stroke="none"
      /><path fill="black" d="M639.971374511719 223.876342773438 C639.424865722656 225.438720703125 638.87255859375 226.999084472656 638.314575195312 228.557418823242 L708.924621582031 253.840316772461 C709.544311523438 252.109603881836 710.157653808594 250.37663269043 710.764709472656 248.641418457031 L639.971374511719 223.876342773438 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M16.833679199219 -752.811828613281 L15.157017707825 -677.83056640625 C17.160202026367 -677.785766601562 19.163175582886 -677.732116699219 21.165884017944 -677.669555664062 L23.507242202759 -752.632995605469 C21.282997131348 -752.702453613281 19.05845451355 -752.762084960938 16.833679199219 -752.811828613281 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-368.570892333984 569.068969726562 L-409.342010498047 632.019104003906 C-400.165100097656 637.962707519531 -390.859832763672 643.705810546875 -381.432800292969 649.244201660156 L-343.441467285156 584.578430175781 C-351.929565429688 579.591674804688 -360.308013916016 574.420593261719 -368.570892333984 569.068969726562 Z" stroke="none"
      /><path fill="rgb(203,24,29)" d="M107.482055664062 669.426330566406 C105.331680297852 669.771606445312 103.179649353027 670.106506347656 101.02604675293 670.431030273438 L112.20149230957 744.59375 C114.593322753906 744.233337402344 116.983413696289 743.861389160156 119.371658325195 743.477905273438 L107.482055664062 669.426330566406 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M752.919189453125 -11.029486656189 L677.92724609375 -9.930932044983 C678.001281738281 -4.878661632538 678.018798828125 0.174278870225 677.979858398438 5.226941585541 L752.977600097656 5.805143356323 C753.020874023438 0.19355751574 753.001403808594 -5.418336391449 752.919189453125 -11.029486656189 Z" stroke="none"
      /><path fill="rgb(252,146,114)" d="M-146.51155090332 -738.609069824219 C-149.833221435547 -737.9501953125 -153.150390625 -737.268920898438 -156.462860107422 -736.565246582031 L-140.87890625 -663.202209472656 C-137.896362304688 -663.835754394531 -134.909591674805 -664.449157714844 -131.918762207031 -665.042419433594 L-146.51155090332 -738.609069824219 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-663.735778808594 -355.617523193359 C-665.883361816406 -351.609161376953 -667.99462890625 -347.581451416016 -670.069274902344 -343.534820556641 L-603.329284667969 -309.318206787109 C-601.461303710938 -312.961761474609 -599.560302734375 -316.588348388672 -597.626647949219 -320.197448730469 L-663.735778808594 -355.617523193359 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-722.408935546875 -212.44841003418 C-725.985107421875 -200.287994384766 -729.253662109375 -188.03923034668 -732.211486816406 -175.713790893555 L-659.282043457031 -158.212417602539 C-656.618835449219 -169.310211181641 -653.675842285156 -180.338989257812 -650.455871582031 -191.288223266602 L-722.408935546875 -212.44841003418 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M677.213073730469 32.656070709229 C676.94873046875 38.138111114502 676.617858886719 43.616737365723 676.220458984375 49.090744018555 L751.023620605469 54.521137237549 C751.464965820312 48.441596984863 751.832458496094 42.356925964355 752.126037597656 36.268466949463 L677.213073730469 32.656070709229 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M0 -753 L0 -678 C4.007387638092 -678 8.01469707489 -677.964477539062 12.021454811096 -677.893432617188 L13.35126209259 -752.881652832031 C8.901278495789 -752.960510253906 4.450683116913 -753 0 -753 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M-233.793731689453 -715.785949707031 C-237.840515136719 -714.464172363281 -241.876007080078 -713.108093261719 -245.899795532227 -711.717834472656 L-221.407775878906 -640.82958984375 C-217.784774780273 -642.081359863281 -214.151214599609 -643.302368164062 -210.507507324219 -644.492492675781 L-233.793731689453 -715.785949707031 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M-233.793731689453 -715.785949707031 C-237.840515136719 -714.464172363281 -241.876007080078 -713.108093261719 -245.899795532227 -711.717834472656 L-221.407775878906 -640.82958984375 C-217.784774780273 -642.081359863281 -214.151214599609 -643.302368164062 -210.507507324219 -644.492492675781 L-233.793731689453 -715.785949707031 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M-233.793731689453 -715.785949707031 C-237.840515136719 -714.464172363281 -241.876007080078 -713.108093261719 -245.899795532227 -711.717834472656 L-221.407775878906 -640.82958984375 C-217.784774780273 -642.081359863281 -214.151214599609 -643.302368164062 -210.507507324219 -644.492492675781 L-233.793731689453 -715.785949707031 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M-586.07275390625 -472.787170410156 C-588.745727539062 -469.473724365234 -591.390563964844 -466.1376953125 -594.006896972656 -462.779388427734 L-534.842895507812 -416.685821533203 C-532.487121582031 -419.709625244141 -530.105712890625 -422.713409423828 -527.698974609375 -425.696807861328 L-586.07275390625 -472.787170410156 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-473.000518798828 485.751495361328 L-525.323608398438 539.485046386719 C-517.6982421875 546.910217285156 -509.916320800781 554.172912597656 -501.983093261719 561.268188476562 L-451.984771728516 505.364990234375 C-459.127838134766 498.976409912109 -466.134674072266 492.437103271484 -473.000518798828 485.751495361328 Z" stroke="none"
      /><path fill="rgb(251,106,74)" d="M433.631774902344 -615.607421875 L390.441345214844 -554.291931152344 C393.432678222656 -552.184875488281 396.406860351562 -550.053588867188 399.363677978516 -547.898376464844 L443.541076660156 -608.506652832031 C440.257171630859 -610.900268554688 436.953979492188 -613.267272949219 433.631774902344 -615.607421875 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-437.587036132812 517.8818359375 L-485.99267578125 575.169616699219 C-481.854034423828 578.666625976562 -477.677764892578 582.118835449219 -473.464569091797 585.525634765625 L-426.306762695312 527.206359863281 C-430.100280761719 524.138854980469 -433.860595703125 521.030517578125 -437.587036132812 517.8818359375 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M662.487915039062 144.20051574707 C661.5244140625 148.626968383789 660.5166015625 153.043655395508 659.464599609375 157.449920654297 L732.414184570312 174.866943359375 C733.582580566406 169.973266601562 734.701904296875 165.068008422852 735.77197265625 160.151901245117 L662.487915039062 144.20051574707 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M643.436828613281 -391.149658203125 L579.349487304688 -352.190521240234 C582.245727539062 -347.42626953125 585.083068847656 -342.626434326172 587.860900878906 -337.792175292969 L652.889770507812 -375.158538818359 C649.8046875 -380.527587890625 646.653442382812 -385.858367919922 643.436828613281 -391.149658203125 Z" stroke="none"
      /><path fill="rgb(251,106,74)" d="M-257.116821289062 -707.742858886719 C-260.845336914062 -706.388305664062 -264.563049316406 -705.004333496094 -268.269653320312 -703.591064453125 L-241.549575805664 -633.512268066406 C-238.212142944336 -634.784790039062 -234.864715576172 -636.030944824219 -231.507583618164 -637.250549316406 L-257.116821289062 -707.742858886719 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M-601.071594238281 -453.565856933594 C-605.792236328125 -447.309936523438 -610.414978027344 -440.980682373047 -614.938049316406 -434.580444335938 L-553.689270019531 -391.295532226562 C-549.61669921875 -397.058319091797 -545.454406738281 -402.757141113281 -541.203857421875 -408.389953613281 L-601.071594238281 -453.565856933594 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M-113.923309326172 -744.332214355469 C-122.818031311035 -742.970886230469 -131.687637329102 -741.450134277344 -140.527847290039 -739.770874023438 L-126.531051635742 -666.088500976562 C-118.571334838867 -667.600524902344 -110.585159301758 -668.969787597656 -102.576362609863 -670.195556640625 L-113.923309326172 -744.332214355469 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M570.080505371094 -491.952484130859 L513.299560546875 -442.953216552734 C515.576171875 -440.315032958984 517.832458496094 -437.659362792969 520.068115234375 -434.986389160156 L577.597778320312 -483.104339599609 C575.114807128906 -486.072998046875 572.608947753906 -489.0224609375 570.080505371094 -491.952484130859 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-550.198364257812 396.189025878906 L-611.06103515625 440.015258789062 C-603.936950683594 449.90869140625 -596.573608398438 459.627655029297 -588.9775390625 469.163543701172 L-530.314453125 422.434112548828 C-537.153930664062 413.848022460938 -543.783813476562 405.097076416016 -550.198364257812 396.189025878906 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-409.848815917969 540.099975585938 L-455.186065673828 599.845520019531 C-447.632537841797 605.577453613281 -439.971435546875 611.166137695312 -432.206817626953 616.608703613281 L-389.158325195312 555.193481445312 C-396.149566650391 550.293029785156 -403.047637939453 545.260925292969 -409.848815917969 540.099975585938 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-752.972900390625 -6.385643959045 C-753.2109375 21.679122924805 -751.879699707031 49.735248565674 -748.985473632812 77.651397705078 L-674.385314941406 69.917198181152 C-676.991271972656 44.781539916992 -678.18994140625 19.519847869873 -677.975646972656 -5.749623775482 L-752.972900390625 -6.385643959045 Z" stroke="none"
      /><path fill="rgb(203,24,29)" d="M67.317115783691 674.649841308594 C63.329532623291 675.047729492188 59.338497161865 675.410217285156 55.344482421875 675.737365722656 L61.466659545898 750.487060546875 C65.902488708496 750.123779296875 70.335014343262 749.721130371094 74.763702392578 749.279235839844 L67.317115783691 674.649841308594 Z" stroke="none"
      /><path fill="rgb(165,15,21)" d="M275.037445068359 -700.973205566406 L247.643295288086 -631.155151367188 C251.698196411133 -629.564147949219 255.737670898438 -627.93408203125 259.761169433594 -626.265258789062 L288.495788574219 -695.542358398438 C284.027221679688 -697.395812988281 279.540924072266 -699.206176757812 275.037445068359 -700.973205566406 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M716.948486328125 -230.203918457031 L645.539306640625 -207.275238037109 C649.161560058594 -195.993988037109 652.487487792969 -184.619720458984 655.513671875 -173.164154052734 L728.026245117188 -192.319473266602 C724.665344238281 -205.042251586914 720.971496582031 -217.674728393555 716.948486328125 -230.203918457031 Z" stroke="none"
      /><path fill="rgb(252,146,114)" d="M673.071166992188 81.604125976562 C672.242797851562 88.436431884766 671.310424804688 95.255729675293 670.2744140625 102.05965423584 L744.419860839844 113.349433898926 C745.570434570312 105.792869567871 746.60595703125 98.219223022461 747.525939941406 90.631126403809 L673.071166992188 81.604125976562 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-665.446105957031 129.867309570312 L-739.057373046875 144.233154296875 C-736.369995117188 158.003524780273 -733.298217773438 171.696090698242 -729.845764160156 185.294815063477 L-657.151977539062 166.839157104492 C-660.260559082031 154.594879150391 -663.0263671875 142.26611328125 -665.446105957031 129.867309570312 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M636.26318359375 234.207565307617 C631.447814941406 247.289199829102 626.230224609375 260.21923828125 620.617736816406 272.979187011719 L689.270141601562 303.175994873047 C695.503479003906 289.004547119141 701.298278808594 274.644195556641 706.646240234375 260.115478515625 L636.26318359375 234.207565307617 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M55.968524932861 -750.917114257812 L50.393970489502 -676.124572753906 C63.339321136475 -675.159729003906 76.254295349121 -673.8232421875 89.122909545898 -672.116882324219 L98.981643676758 -746.466125488281 C84.689498901367 -748.361267089844 70.345886230469 -749.845520019531 55.968524932861 -750.917114257812 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-622.910339355469 267.706359863281 L-691.816345214844 297.319915771484 C-674.8056640625 336.901031494141 -654.429565429688 374.949310302734 -630.912231445312 411.0458984375 L-568.072387695312 370.105072021484 C-589.247314453125 337.603759765625 -607.593994140625 303.345153808594 -622.910339355469 267.706359863281 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M334.463592529297 -674.642944335938 L301.150482177734 -607.447448730469 C322.697692871094 -596.765075683594 343.661285400391 -584.94384765625 363.952331542969 -572.033813476562 L404.212524414062 -635.311889648438 C381.676910400391 -649.650024414062 358.394348144531 -662.778930664062 334.463592529297 -674.642944335938 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-305.357971191406 605.343322753906 L-339.136505126953 672.306030273438 C-233.926361083984 725.377990722656 -117.763870239258 753 -0.001331805834 753 C2.707344532013 753 5.416867733002 752.985412597656 8.127122879028 752.956115722656 L7.317648887634 677.960510253906 C4.877338886261 677.986877441406 2.437688827515 678 -0.001199155813 678 C-106.034400939941 678 -210.626922607422 653.129211425781 -305.357971191406 605.343322753906 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-316.274353027344 599.712036132812 L-351.260467529297 666.051879882812 C-275.423004150391 706.046813964844 -193.312103271484 732.796264648438 -108.468841552734 745.146606445312 L-97.665176391602 670.928833007812 C-174.057922363281 659.80859375 -247.990447998047 635.723388671875 -316.274353027344 599.712036132812 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M500.683624267578 -562.427673339844 L450.814758300781 -506.408996582031 C468.712829589844 -490.475769042969 485.753662109375 -473.604888916016 501.865447998047 -455.867370605469 L557.381530761719 -506.295196533203 C539.487487792969 -525.994812011719 520.561584472656 -544.73193359375 500.683624267578 -562.427673339844 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M590.421569824219 -467.345062255859 L531.614624023438 -420.796752929688 C543.998291015625 -405.151794433594 555.685302734375 -388.967834472656 566.641540527344 -372.292083740234 L629.323120117188 -413.474822998047 C617.154907226562 -431.995239257812 604.175109863281 -449.969482421875 590.421569824219 -467.345062255859 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-734.64306640625 -165.253158569336 C-743.480895996094 -125.963928222656 -749.152709960938 -86.029037475586 -751.603881835938 -45.832736968994 L-676.742919921875 -41.267723083496 C-674.535888671875 -77.460411071777 -669.429016113281 -113.417724609375 -661.471435546875 -148.793670654297 L-734.64306640625 -165.253158569336 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M736.745666503906 -155.610977172852 L663.364624023438 -140.111877441406 C670.010559082031 -108.646514892578 674.409362792969 -76.748161315918 676.527648925781 -44.65843963623 L751.36474609375 -49.598529815674 C749.012145996094 -85.238006591797 744.126770019531 -120.664932250977 736.745666503906 -155.610977172852 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M136.248123168945 -740.571044921875 L122.677589416504 -666.808959960938 C161.514678955078 -659.663818359375 199.653289794922 -649.139404296875 236.658432006836 -635.355651855469 L262.837463378906 -705.638366699219 C221.738830566406 -720.946838378906 179.38134765625 -732.635498046875 136.248123168945 -740.571044921875 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-314.031127929688 -684.392761230469 C-412.194213867188 -639.351013183594 -499.519317626953 -573.719604492188 -570.080505371094 -491.952484130859 L-513.299560546875 -442.953216552734 C-449.766387939453 -516.576232910156 -371.139007568359 -575.670593261719 -282.753143310547 -616.226135253906 L-314.031127929688 -684.392761230469 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M607.447448730469 301.150482177734 C511.006713867188 495.679992675781 327.233215332031 632.25390625 113.15510559082 668.490783691406 L125.672264099121 742.438903808594 C363.431579589844 702.193481445312 567.533996582031 550.511840820312 674.642944335938 334.463592529297 L607.447448730469 301.150482177734 Z" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -677 C-373.896789550781 -677 -677 -373.896789550781 -677 0 L-677 0 C-677 373.896789550781 -373.896789550781 677 0 677 C373.896789550781 677 677 373.896789550781 677 0 C677 -373.896789550781 373.896789550781 -677 0 -677 L0 -676 C373.344482421875 -676 676 -373.344482421875 676 0 C676 373.344482421875 373.344482421875 676 0 676 C-373.344482421875 676 -676 373.344482421875 -676 0 C-676 -373.344482421875 -373.344482421875 -676 -0 -676 L-0 -677 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -677 C-373.896789550781 -677 -677 -373.896789550781 -677 0 L-677 0 C-677 373.896789550781 -373.896789550781 677 0 677 C373.896789550781 677 677 373.896789550781 677 0 C677 -373.896789550781 373.896789550781 -677 0 -677 L0 -676.799987792969 C373.786315917969 -676.799987792969 676.799987792969 -373.786315917969 676.799987792969 0 C676.799987792969 373.786315917969 373.786315917969 676.799987792969 0 676.799987792969 C-373.786315917969 676.799987792969 -676.799987792969 373.786315917969 -676.799987792969 0 C-676.799987792969 -373.786315917969 -373.786315917969 -676.799987792969 -0 -676.799987792969 L-0 -677 Z" stroke="none"
      /><path fill="black" d="M-0 -676.200012207031 C-373.454956054688 -676.200012207031 -676.200012207031 -373.454956054688 -676.200012207031 0 L-676.200012207031 0 C-676.200012207031 373.454956054688 -373.454956054688 676.200012207031 0 676.200012207031 C373.454956054688 676.200012207031 676.200012207031 373.454956054688 676.200012207031 0 C676.200012207031 -373.454956054688 373.454956054688 -676.200012207031 0 -676.200012207031 L0 -676 C373.344482421875 -676 676 -373.344482421875 676 0 C676 373.344482421875 373.344482421875 676 0 676 C-373.344482421875 676 -676 373.344482421875 -676 0 C-676 -373.344482421875 -373.344482421875 -676 -0 -676 L-0 -676.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="black" d="M-46.797214508057 -673.375854492188 C-48.181575775146 -673.279602050781 -49.565635681152 -673.179138183594 -50.949375152588 -673.074401855469 L-45.288333892822 -598.288391113281 C-44.05834197998 -598.381469726562 -42.828067779541 -598.470764160156 -41.597526550293 -598.556274414062 L-46.797214508057 -673.375854492188 Z" stroke="none"
      /><path fill="black" d="M566.346374511719 198.120651245117 C565.939086914062 199.284973144531 565.528137207031 200.448043823242 565.113708496094 201.609832763672 L635.752868652344 226.811065673828 C636.219177246094 225.504043579102 636.681457519531 224.195602416992 637.1396484375 222.8857421875 L566.346374511719 198.120651245117 Z" stroke="none"
      /><path fill="rgb(252,146,114)" d="M582.649719238281 -340.799499511719 L517.910888671875 -302.932891845703 C518.845031738281 -301.335754394531 519.771850585938 -299.734313964844 520.691223144531 -298.128631591797 L585.777587890625 -335.394714355469 C584.743286132812 -337.201110839844 583.70068359375 -339.002716064453 582.649719238281 -340.799499511719 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M43.422267913818 -673.601867675781 L38.59757232666 -598.757263183594 C40.213203430176 -598.653076171875 41.8284034729 -598.542419433594 43.443134307861 -598.425170898438 L48.873527526855 -673.228332519531 C47.056953430176 -673.360229492188 45.239852905273 -673.484741210938 43.422267913818 -673.601867675781 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M-101.35082244873 -667.347717285156 C-104.952255249023 -666.80078125 -108.549194335938 -666.224670410156 -112.141296386719 -665.619506835938 L-99.68115234375 -591.661804199219 C-96.488174438477 -592.19970703125 -93.290893554688 -592.711791992188 -90.089622497559 -593.197998046875 L-101.35082244873 -667.347717285156 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M-252.350067138672 -626.0546875 C-254.11979675293 -625.34130859375 -255.886489868164 -624.620483398438 -257.650115966797 -623.892150878906 L-229.022323608398 -554.57080078125 C-227.454666137695 -555.218200683594 -225.884262084961 -555.858947753906 -224.311172485352 -556.493041992188 L-252.350067138672 -626.0546875 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-419.57763671875 428.899322509766 L-472.024810791016 482.51171875 C-469.544891357422 484.937774658203 -467.046264648438 487.344665527344 -464.529235839844 489.732177734375 L-412.914855957031 435.317474365234 C-415.152252197266 433.195251464844 -417.373229980469 431.055786132812 -419.57763671875 428.899322509766 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M510.688201904297 -441.387084960938 L453.945068359375 -392.344085693359 C455.154968261719 -390.944213867188 456.3583984375 -389.538757324219 457.555297851562 -388.127777099609 L514.749694824219 -436.643737792969 C513.403198242188 -438.231109619141 512.04931640625 -439.812255859375 510.688201904297 -441.387084960938 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M-595.962463378906 -316.944366455078 C-597.469299316406 -314.111053466797 -598.955871582031 -311.267028808594 -600.422119140625 -308.412536621094 L-533.708557128906 -274.144470214844 C-532.405212402344 -276.681823730469 -531.083801269531 -279.209808349609 -529.744445800781 -281.728302001953 L-595.962463378906 -316.944366455078 Z" stroke="none"
      /><path fill="rgb(203,24,29)" d="M-131.590270996094 -662.049072265625 C-133.887084960938 -661.592590332031 -136.181503295898 -661.124084472656 -138.473449707031 -660.643676757812 L-123.087509155273 -587.238830566406 C-121.050224304199 -587.665893554688 -119.0107421875 -588.082275390625 -116.969123840332 -588.488098144531 L-131.590270996094 -662.049072265625 Z" stroke="none"
      /><path fill="rgb(252,146,114)" d="M-526.831176757812 -421.988037109375 C-528.728942871094 -419.618774414062 -530.610717773438 -417.236724853516 -532.476318359375 -414.842102050781 L-473.312286376953 -368.74853515625 C-471.653961181641 -370.877105712891 -469.981292724609 -372.994445800781 -468.294403076172 -375.100463867188 L-526.831176757812 -421.988037109375 Z" stroke="none"
      /><path fill="black" d="M105.378158569336 590.673706054688 C103.632545471191 590.985168457031 101.885566711426 591.288818359375 100.137260437012 591.584777832031 L112.654418945312 665.532836914062 C114.62126159668 665.199951171875 116.586616516113 664.858276367188 118.550422668457 664.507934570312 L105.378158569336 590.673706054688 Z" stroke="none"
      /><path fill="rgb(251,106,74)" d="M596.32861328125 -316.254974365234 L530.069885253906 -281.115539550781 C531.225708007812 -278.93603515625 532.3681640625 -276.749420166016 533.497009277344 -274.555847167969 L600.184143066406 -308.875335693359 C598.914184570312 -311.343109130859 597.628967285156 -313.803039550781 596.32861328125 -316.254974365234 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M0.780579566956 -674.999572753906 L0.69384855032 -599.999572753906 C7.247005939484 -599.992004394531 13.799599647522 -599.877075195312 20.348991394043 -599.654846191406 L22.892616271973 -674.611694335938 C15.524549484253 -674.861694335938 8.152881622314 -674.991027832031 0.780579566956 -674.999572753906 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M26.357765197754 599.420776367188 C17.731204986572 599.800109863281 9.097459793091 599.9931640625 0.462565749884 599.999816894531 L0.520386457443 674.999816894531 C10.234642028809 674.992309570312 19.947605133057 674.775146484375 29.652484893799 674.348388671875 L26.357765197754 599.420776367188 Z" stroke="none"
      /><path fill="black" d="M-119.062690734863 -664.416320800781 C-121.367713928223 -664.003295898438 -123.67057800293 -663.578247070312 -125.971183776855 -663.141235351562 L-111.974380493164 -589.458862304688 C-109.929405212402 -589.847290039062 -107.882415771484 -590.225158691406 -105.833503723145 -590.59228515625 L-119.062690734863 -664.416320800781 Z" stroke="none"
      /><path fill="rgb(252,146,114)" d="M554.482482910156 229.236068725586 C553.098083496094 232.58464050293 551.683410644531 235.920608520508 550.238586425781 239.243545532227 L619.018432617188 269.148986816406 C620.643859863281 265.410675048828 622.2353515625 261.65771484375 623.792785644531 257.890594482422 L554.482482910156 229.236068725586 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M57.501056671143 597.238342285156 C53.740795135498 597.600341796875 49.977199554443 597.926879882812 46.21076965332 598.217834472656 L51.987117767334 672.995056152344 C56.224349975586 672.667724609375 60.458393096924 672.300415039062 64.688690185547 671.893127441406 L57.501056671143 597.238342285156 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M621.583374023438 -263.171234130859 L552.5185546875 -233.929992675781 C556.516479492188 -224.487350463867 560.271667480469 -214.943786621094 563.780395507812 -205.308670043945 L634.2529296875 -230.972259521484 C630.305603027344 -241.811752319336 626.080993652344 -252.548278808594 621.583374023438 -263.171234130859 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-541.151062011719 -403.460723876953 C-544.365234375 -399.149627685547 -547.527770996094 -394.80029296875 -550.638000488281 -390.413635253906 L-489.455993652344 -347.034332275391 C-486.691345214844 -350.93359375 -483.880187988281 -354.799682617188 -481.023162841797 -358.631744384766 L-541.151062011719 -403.460723876953 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M-648.955139160156 -185.693908691406 C-651.412780761719 -177.105010986328 -653.69970703125 -168.468185424805 -655.814453125 -159.788513183594 L-582.946228027344 -142.034225463867 C-581.06640625 -149.749496459961 -579.033569335938 -157.426681518555 -576.848999023438 -165.061248779297 L-648.955139160156 -185.693908691406 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-483.910430908203 354.726196289062 L-544.399230957031 399.066986083984 C-537.52783203125 408.440826416016 -530.415466308594 417.635620117188 -523.069274902344 426.642181396484 L-464.950439453125 379.237487792969 C-471.480407714844 371.231658935547 -477.802520751953 363.058502197266 -483.910430908203 354.726196289062 Z" stroke="none"
      /><path fill="rgb(203,24,29)" d="M-230.483215332031 -634.430847167969 C-233.662445068359 -633.27587890625 -236.832946777344 -632.096984863281 -239.99446105957 -630.894348144531 L-213.328414916992 -560.794982910156 C-210.518173217773 -561.864013671875 -207.699951171875 -562.911865234375 -204.873977661133 -563.938537597656 L-230.483215332031 -634.430847167969 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M660.590270996094 -138.728088378906 L587.191345214844 -123.313858032227 C588.268798828125 -118.183288574219 589.278991699219 -113.038818359375 590.221618652344 -107.881767272949 L663.999267578125 -121.366989135742 C662.938842773438 -127.168670654297 661.802429199219 -132.956207275391 660.590270996094 -138.728088378906 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M644.949523925781 -199.161010742188 L573.288452148438 -177.032012939453 C575.858947753906 -168.707855224609 578.247863769531 -160.328704833984 580.453491210938 -151.900527954102 L653.010131835938 -170.888092041016 C650.528869628906 -180.36979675293 647.841369628906 -189.796340942383 644.949523925781 -199.161010742188 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M595.610290527344 72.44563293457 C594.930786132812 78.032440185547 594.172668457031 83.609397888184 593.336181640625 89.174873352051 L667.503234863281 100.321731567383 C668.444213867188 94.060577392578 669.297119140625 87.786491394043 670.061584472656 81.501342773438 L595.610290527344 72.44563293457 Z" stroke="none"
      /><path fill="rgb(252,146,114)" d="M-361.776184082031 478.662719726562 L-406.998199462891 538.495544433594 C-402.154724121094 542.156311035156 -397.262054443359 545.751525878906 -392.321563720703 549.280212402344 L-348.730285644531 488.249114990234 C-353.121826171875 485.112457275391 -357.470855712891 481.916717529297 -361.776184082031 478.662719726562 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M-331.392517089844 500.178955078125 L-372.816589355469 562.701354980469 C-363.489166259766 568.881164550781 -354.009552001953 574.828186035156 -344.386505126953 580.536743164062 L-306.121337890625 516.032653808594 C-314.675170898438 510.958374023438 -323.101501464844 505.672180175781 -331.392517089844 500.178955078125 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M246.547515869141 -628.362426757812 L219.153350830078 -558.544372558594 C226.330337524414 -555.728393554688 233.452377319336 -552.774291992188 240.515518188477 -549.683776855469 L270.579956054688 -618.394287109375 C262.633941650391 -621.87109375 254.621627807617 -625.194396972656 246.547515869141 -628.362426757812 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-588.890319824219 114.926818847656 L-662.501647949219 129.292678833008 C-660.092590332031 141.636627197266 -657.339050292969 153.910842895508 -654.244201660156 166.100936889648 L-581.550415039062 147.645278930664 C-584.301391601562 136.809631347656 -586.748962402344 125.899223327637 -588.890319824219 114.926818847656 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-674.951782226562 -8.06579875946 C-675.218200683594 14.227056503296 -674.380004882812 36.519424438477 -672.440246582031 58.72932434082 L-597.724670410156 52.203842163086 C-599.448852539062 32.461708068848 -600.193969726562 12.646272659302 -599.957153320312 -7.169599056244 L-674.951782226562 -8.06579875946 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M299.817962646484 -604.759643554688 L266.504852294922 -537.564086914062 C285.642303466797 -528.076416015625 304.259460449219 -517.573608398438 322.276794433594 -506.100433349609 L362.561401367188 -569.362976074219 C342.291900634766 -582.270324707031 321.347595214844 -594.085998535156 299.817962646484 -604.759643554688 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M50.170986175537 -673.132873535156 L44.596435546875 -598.34033203125 C55.668014526367 -597.51513671875 66.714561462402 -596.3828125 77.723304748535 -594.944580078125 L87.438720703125 -669.312683105469 C75.05387878418 -670.9306640625 62.626518249512 -672.204528808594 50.170986175537 -673.132873535156 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-551.15673828125 237.120758056641 L-620.051330566406 266.760864257812 C-604.823364257812 302.15625 -586.592590332031 336.182739257812 -565.558776855469 368.467437744141 L-502.718933105469 327.526611328125 C-521.415649414062 298.8291015625 -537.620788574219 268.583343505859 -551.15673828125 237.120758056641 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-281.502014160156 -613.499450683594 C-365.511779785156 -574.951904296875 -440.709442138672 -519.561096191406 -502.434417724609 -450.760070800781 L-446.608367919922 -400.675628662109 C-391.741729736328 -461.832092285156 -324.899353027344 -511.068359375 -250.224014282227 -545.332885742188 L-281.502014160156 -613.499450683594 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M529.100830078125 -419.138793945312 L470.311828613281 -372.567810058594 C479.647857666016 -360.782470703125 488.53759765625 -348.650360107422 496.962219238281 -336.197174072266 L559.08251953125 -378.221832275391 C549.604797363281 -392.231658935547 539.603820800781 -405.880279541016 529.100830078125 -419.138793945312 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M667.308654785156 -101.608062744141 L593.163208007812 -90.31827545166 C595.681884765625 -73.777030944824 597.507507324219 -57.137664794922 598.635375976562 -40.443817138672 L673.464782714844 -45.499294281006 C672.195983886719 -64.27986907959 670.14208984375 -82.999153137207 667.308654785156 -101.608062744141 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M-658.544555664062 -148.135299682617 C-666.581298828125 -112.407348632812 -671.697265625 -76.084617614746 -673.841674804688 -39.526748657227 L-598.970397949219 -35.134887695312 C-597.064208984375 -67.630767822266 -592.516723632812 -99.917640686035 -585.372924804688 -131.675827026367 L-658.544555664062 -148.135299682617 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M440.402008056641 -511.537963867188 L391.468444824219 -454.700408935547 C410.170257568359 -438.599304199219 427.860931396484 -421.359741210938 444.439605712891 -403.079956054688 L499.994537353516 -453.464935302734 C481.343536376953 -474.029724121094 461.441558837891 -493.424224853516 440.402008056641 -511.537963867188 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M121.111030578613 -664.046020507812 L107.654243469238 -590.263122558594 C142.337020874023 -583.937561035156 176.394790649414 -574.567504882812 209.432235717773 -562.261657714844 L235.611267089844 -632.544311523438 C198.444137573242 -646.388427734375 160.129135131836 -656.929748535156 121.111030578613 -664.046020507812 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-279.070159912109 531.149536132812 L-313.953948974609 597.543212890625 C-226.616424560547 643.431091308594 -130.281478881836 669.615783691406 -31.73187828064 674.253723144531 L-28.206113815308 599.336669921875 C-115.805763244629 595.213989257812 -201.436813354492 571.938720703125 -279.070159912109 531.149536132812 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M540.509643554688 260.479064941406 C458.084106445312 431.516906738281 299.568878173828 553.449523925781 113.110275268555 589.241943359375 L127.249053955078 662.897155761719 C337.014984130859 622.630737304688 515.344665527344 485.456512451172 608.073303222656 293.038970947266 L540.509643554688 260.479064941406 Z" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -599 C-330.818572998047 -599 -599 -330.818572998047 -599 0 L-599 0 C-599 330.818572998047 -330.818572998047 599 0 599 C330.818572998047 599 599 330.818572998047 599 0 C599 -330.818572998047 330.818572998047 -599 0 -599 L0 -598 C330.266265869141 -598 598 -330.266265869141 598 0 C598 330.266265869141 330.266265869141 598 0 598 C-330.266265869141 598 -598 330.266265869141 -598 0 C-598 -330.266265869141 -330.266265869141 -598 -0 -598 L-0 -599 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -599 C-330.818572998047 -599 -599 -330.818572998047 -599 0 L-599 0 C-599 330.818572998047 -330.818572998047 599 0 599 C330.818572998047 599 599 330.818572998047 599 0 C599 -330.818572998047 330.818572998047 -599 0 -599 L0 -598.799987792969 C330.708099365234 -598.799987792969 598.799987792969 -330.708099365234 598.799987792969 0 C598.799987792969 330.708099365234 330.708099365234 598.799987792969 0 598.799987792969 C-330.708099365234 598.799987792969 -598.799987792969 330.708099365234 -598.799987792969 0 C-598.799987792969 -330.708099365234 -330.708099365234 -598.799987792969 -0 -598.799987792969 L-0 -599 Z" stroke="none"
      /><path fill="black" d="M-0 -598.200012207031 C-330.376739501953 -598.200012207031 -598.200012207031 -330.376739501953 -598.200012207031 0 L-598.200012207031 0 C-598.200012207031 330.376739501953 -330.376739501953 598.200012207031 0 598.200012207031 C330.376739501953 598.200012207031 598.200012207031 330.376739501953 598.200012207031 0 C598.200012207031 -330.376739501953 330.376739501953 -598.200012207031 0 -598.200012207031 L0 -598 C330.266265869141 -598 598 -330.266265869141 598 0 C598 330.266265869141 330.266265869141 598 0 598 C-330.266265869141 598 -598 330.266265869141 -598 0 C-598 -330.266265869141 -330.266265869141 -598 -0 -598 L-0 -598.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="rgb(222,235,247)" d="M-283.565216064453 -525.356811523438 C-288.155517578125 -522.879150390625 -292.713134765625 -520.341430664062 -297.236907958984 -517.744384765625 L-259.895599365234 -452.701110839844 C-255.940124511719 -454.971923828125 -251.955062866211 -457.190826416016 -247.941436767578 -459.357208251953 L-283.565216064453 -525.356811523438 Z" stroke="none"
      /><path fill="black" d="M237.431137084961 464.876800537109 C236.475433349609 465.364929199219 235.518203735352 465.85009765625 234.559494018555 466.332336425781 L268.260589599609 533.334106445312 C269.357025146484 532.782592773438 270.451782226562 532.227722167969 271.544799804688 531.66943359375 L237.431137084961 464.876800537109 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M169.89372253418 493.578887939453 C168.054534912109 494.211944580078 166.211822509766 494.834747314453 164.365676879883 495.447204589844 L187.981430053711 566.632141113281 C190.092834472656 565.931701660156 192.200302124023 565.219421386719 194.303741455078 564.495422363281 L169.89372253418 493.578887939453 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M477.791442871094 -357.944580078125 L417.767395019531 -312.976684570312 C418.652130126953 -311.795745849609 419.531829833984 -310.611053466797 420.406494140625 -309.422637939453 L480.809722900391 -353.879913330078 C479.809387207031 -355.239074707031 478.803283691406 -356.593963623047 477.791442871094 -357.944580078125 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M219.770355224609 -555.076538085938 L192.161010742188 -485.343322753906 C194.343688964844 -484.479156494141 196.520523071289 -483.600250244141 198.691345214844 -482.706695556641 L227.238952636719 -552.061096191406 C224.756225585938 -553.0830078125 222.266632080078 -554.088195800781 219.770355224609 -555.076538085938 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M-366.178192138672 -471.510894775391 C-369.570983886719 -468.876037597656 -372.935211181641 -466.204650878906 -376.270324707031 -463.497192382812 L-329.000183105469 -405.268890380859 C-326.084045410156 -407.63623046875 -323.142456054688 -409.972015380859 -320.175903320312 -412.275848388672 L-366.178192138672 -471.510894775391 Z" stroke="none"
      /><path fill="rgb(251,106,74)" d="M-122.592063903809 507.400421142578 L-140.205871582031 580.302795410156 C-138.118087768555 580.807189941406 -136.027603149414 581.300354003906 -133.934494018555 581.7822265625 L-117.108558654785 508.694000244141 C-118.938705444336 508.272674560547 -120.766571044922 507.841461181641 -122.592063903809 507.400421142578 Z" stroke="none"
      /><path fill="rgb(239,59,44)" d="M437.079986572266 -406.657196044922 L382.170440673828 -355.569610595703 C383.723815917969 -353.900024414062 385.266235351562 -352.220275878906 386.797607421875 -350.530487060547 L442.371978759766 -400.89404296875 C440.620574951172 -402.826629638672 438.856567382812 -404.747741699219 437.079986572266 -406.657196044922 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M-230.235336303711 468.482330322266 L-263.315124511719 535.793029785156 C-259.253265380859 537.789184570312 -255.168838500977 539.739135742188 -251.062637329102 541.642456054688 L-219.522109985352 473.596923828125 C-223.112457275391 471.932708740234 -226.68376159668 470.227752685547 -230.235336303711 468.482330322266 Z" stroke="none"
      /><path fill="rgb(198,219,239)" d="M-208.326400756836 478.627319335938 L-238.258361816406 547.395629882812 C-232.701766967773 549.814147949219 -227.108688354492 552.14794921875 -221.481033325195 554.396179199219 L-193.656784057617 484.748443603516 C-198.577438354492 482.782653808594 -203.467880249023 480.742034912109 -208.326400756836 478.627319335938 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M-449.256103515625 265.806213378906 L-513.804382324219 303.996765136719 C-511.656036376953 307.627838134766 -509.469268798828 311.236053466797 -507.244415283203 314.820770263672 L-443.520233154297 275.270416259766 C-445.465576171875 272.136047363281 -447.377655029297 268.981109619141 -449.256103515625 265.806213378906 Z" stroke="none"
      /><path fill="rgb(66,146,198)" d="M324.606964111328 408.796173095703 C321.507873535156 411.257049560547 318.380889892578 413.682556152344 315.226623535156 416.072296142578 L360.517822265625 475.852813720703 C364.125274658203 473.119720458984 367.701538085938 470.345703125 371.245880126953 467.531280517578 L324.606964111328 408.796173095703 Z" stroke="none"
      /><path fill="rgb(222,235,247)" d="M393.084381103516 343.465667724609 C379.620239257812 358.874908447266 365.261627197266 373.479125976562 350.082946777344 387.202697753906 L400.382232666016 442.835266113281 C417.741760253906 427.139923095703 434.163360595703 410.437408447266 449.562042236328 392.814178466797 L393.084381103516 343.465667724609 Z" stroke="none"
      /><path fill="rgb(158,202,225)" d="M445.209533691406 272.529754638672 C441.042266845703 279.337493896484 436.719421386719 286.048706054688 432.244354248047 292.658172607422 L494.348449707031 334.706787109375 C499.466461181641 327.147674560547 504.410400390625 319.47216796875 509.176422119141 311.686340332031 L445.209533691406 272.529754638672 Z" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -521 C-287.740356445312 -521 -521 -287.740356445312 -521 0 L-521 0 C-521 287.740356445312 -287.740356445312 521 0 521 C287.740356445312 521 521 287.740356445312 521 0 C521 -287.740356445312 287.740356445312 -521 0 -521 L0 -520 C287.188079833984 -520 520 -287.188079833984 520 0 C520 287.188079833984 287.188079833984 520 0 520 C-287.188079833984 520 -520 287.188079833984 -520 0 C-520 -287.188079833984 -287.188079833984 -520 -0 -520 L-0 -521 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -521 C-287.740356445312 -521 -521 -287.740356445312 -521 0 L-521 0 C-521 287.740356445312 -287.740356445312 521 0 521 C287.740356445312 521 521 287.740356445312 521 0 C521 -287.740356445312 287.740356445312 -521 0 -521 L0 -520.799987792969 C287.6298828125 -520.799987792969 520.799987792969 -287.6298828125 520.799987792969 0 C520.799987792969 287.6298828125 287.6298828125 520.799987792969 0 520.799987792969 C-287.6298828125 520.799987792969 -520.799987792969 287.6298828125 -520.799987792969 0 C-520.799987792969 -287.6298828125 -287.6298828125 -520.799987792969 -0 -520.799987792969 L-0 -521 Z" stroke="none"
      /><path fill="black" d="M-0 -520.200012207031 C-287.298522949219 -520.200012207031 -520.200012207031 -287.298522949219 -520.200012207031 0 L-520.200012207031 0 C-520.200012207031 287.298522949219 -287.298522949219 520.200012207031 0 520.200012207031 C287.298522949219 520.200012207031 520.200012207031 287.298522949219 520.200012207031 0 C520.200012207031 -287.298522949219 287.298522949219 -520.200012207031 0 -520.200012207031 L0 -520 C287.188079833984 -520 520 -287.188079833984 520 0 C520 287.188079833984 287.188079833984 520 0 520 C-287.188079833984 520 -520 287.188079833984 -520 0 C-520 -287.188079833984 -287.188079833984 -520 -0 -520 L-0 -520.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="black" d="M76.800132751465 437.307373046875 C75.901092529297 437.465270996094 75.001571655273 437.620391845703 74.101570129395 437.772735595703 L86.618728637695 511.720825195312 C87.670753479004 511.542755126953 88.722221374512 511.361419677734 89.773124694824 511.176849365234 L76.800132751465 437.307373046875 Z" stroke="none"
      /><path fill="black" d="M-505.363494873047 -118.189453125 C-505.606475830078 -117.150505065918 -505.846252441406 -116.110801696777 -506.082794189453 -115.070373535156 L-432.949462890625 -98.441703796387 C-432.7470703125 -99.331787109375 -432.541961669922 -100.221237182617 -432.334075927734 -101.110054016113 L-505.363494873047 -118.189453125 Z" stroke="none"
      /><path fill="black" d="M477.066253662109 -204.374130249023 L408.126037597656 -174.840286254883 C408.485504150391 -174.001251220703 408.842346191406 -173.161087036133 409.196624755859 -172.319839477539 L478.317657470703 -201.427932739258 C477.903564453125 -202.411270141602 477.486419677734 -203.393341064453 477.066253662109 -204.374130249023 Z" stroke="none"
      /><path fill="rgb(107,174,214)" d="M276.102478027344 347.711700439453 C274.672790527344 348.846954345703 273.236114501953 349.973388671875 271.792510986328 351.090911865234 L317.703430175781 410.396820068359 C319.390838623047 409.090515136719 321.070220947266 407.773803710938 322.741394042969 406.44677734375 L276.102478027344 347.711700439453 Z" stroke="none"
      /><path fill="rgb(252,146,114)" d="M270.792846679688 -442.755279541016 L231.660934448242 -378.773284912109 C232.828994750977 -378.058898925781 233.993728637695 -377.339111328125 235.155120849609 -376.613952636719 L274.877258300781 -440.231170654297 C273.519683837891 -441.078826904297 272.158203125 -441.920196533203 270.792846679688 -442.755279541016 Z" stroke="none"
      /><path fill="black" d="M243.341659545898 -458.416656494141 L208.176681518555 -392.171478271484 C209.083694458008 -391.690002441406 209.989059448242 -391.205383300781 210.892715454102 -390.717620849609 L246.516494750977 -456.717224121094 C245.460174560547 -457.287384033203 244.401901245117 -457.853851318359 243.341659545898 -458.416656494141 Z" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -443 C-244.662139892578 -443 -443 -244.662139892578 -443 0 L-443 0 C-443 244.662139892578 -244.662139892578 443 0 443 C244.662139892578 443 443 244.662139892578 443 0 C443 -244.662139892578 244.662139892578 -443 0 -443 L0 -442 C244.10986328125 -442 442 -244.10986328125 442 0 C442 244.10986328125 244.10986328125 442 0 442 C-244.10986328125 442 -442 244.10986328125 -442 0 C-442 -244.10986328125 -244.10986328125 -442 -0 -442 L-0 -443 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -443 C-244.662139892578 -443 -443 -244.662139892578 -443 0 L-443 0 C-443 244.662139892578 -244.662139892578 443 0 443 C244.662139892578 443 443 244.662139892578 443 0 C443 -244.662139892578 244.662139892578 -443 0 -443 L0 -442.799987792969 C244.551681518555 -442.799987792969 442.799987792969 -244.551681518555 442.799987792969 0 C442.799987792969 244.551681518555 244.551681518555 442.799987792969 0 442.799987792969 C-244.551681518555 442.799987792969 -442.799987792969 244.551681518555 -442.799987792969 0 C-442.799987792969 -244.551681518555 -244.551681518555 -442.799987792969 -0 -442.799987792969 L-0 -443 Z" stroke="none"
      /><path fill="black" d="M-0 -442.200012207031 C-244.220321655273 -442.200012207031 -442.200012207031 -244.220321655273 -442.200012207031 0 L-442.200012207031 0 C-442.200012207031 244.220321655273 -244.220321655273 442.200012207031 0 442.200012207031 C244.220321655273 442.200012207031 442.200012207031 244.220321655273 442.200012207031 0 C442.200012207031 -244.220321655273 244.220321655273 -442.200012207031 0 -442.200012207031 L0 -442 C244.10986328125 -442 442 -244.10986328125 442 0 C442 244.10986328125 244.10986328125 442 0 442 C-244.10986328125 442 -442 244.10986328125 -442 0 C-442 -244.10986328125 -244.10986328125 -442 -0 -442 L-0 -442.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="black" d="M-273.437408447266 -345.995635986328 C-274.282104492188 -345.328094482422 -275.124328613281 -344.657440185547 -275.964111328125 -343.983734130859 L-229.031448364258 -285.483093261719 C-228.334487915039 -286.042236328125 -227.635482788086 -286.598815917969 -226.934448242188 -287.15283203125 L-273.437408447266 -345.995635986328 Z" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -365 C-201.583938598633 -365 -365 -201.583938598633 -365 0 L-365 0 C-365 201.583938598633 -201.583938598633 365 0 365 C201.583938598633 365 365 201.583938598633 365 0 C365 -201.583938598633 201.583938598633 -365 0 -365 L0 -364 C201.031646728516 -364 364 -201.031646728516 364 0 C364 201.031646728516 201.031646728516 364 0 364 C-201.031646728516 364 -364 201.031646728516 -364 0 C-364 -201.031646728516 -201.031646728516 -364 -0 -364 L-0 -365 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -365 C-201.583938598633 -365 -365 -201.583938598633 -365 0 L-365 0 C-365 201.583938598633 -201.583938598633 365 0 365 C201.583938598633 365 365 201.583938598633 365 0 C365 -201.583938598633 201.583938598633 -365 0 -365 L0 -364.799987792969 C201.473480224609 -364.799987792969 364.799987792969 -201.473480224609 364.799987792969 0 C364.799987792969 201.473480224609 201.473480224609 364.799987792969 0 364.799987792969 C-201.473480224609 364.799987792969 -364.799987792969 201.473480224609 -364.799987792969 0 C-364.799987792969 -201.473480224609 -201.473480224609 -364.799987792969 -0 -364.799987792969 L-0 -365 Z" stroke="none"
      /><path fill="black" d="M-0 -364.200012207031 C-201.142105102539 -364.200012207031 -364.200012207031 -201.142105102539 -364.200012207031 0 L-364.200012207031 0 C-364.200012207031 201.142105102539 -201.142105102539 364.200012207031 0 364.200012207031 C201.142105102539 364.200012207031 364.200012207031 201.142105102539 364.200012207031 0 C364.200012207031 -201.142105102539 201.142105102539 -364.200012207031 0 -364.200012207031 L0 -364 C201.031646728516 -364 364 -201.031646728516 364 0 C364 201.031646728516 201.031646728516 364 0 364 C-201.031646728516 364 -364 201.031646728516 -364 0 C-364 -201.031646728516 -201.031646728516 -364 -0 -364 L-0 -364.200012207031 Z" opacity="0.300000011921" stroke="none"
      /><path fill="rgb(102,102,102)" d="M-0 -902 C-498.160858154297 -902 -902 -498.160858154297 -902 0 L-902 0 C-902 498.160858154297 -498.160858154297 902 0 902 C498.160858154297 902 902 498.160858154297 902 0 C902 -498.160858154297 498.160858154297 -902 0 -902 L0 -898 C495.951690673828 -898 898 -495.951690673828 898 0 C898 495.951690673828 495.951690673828 898 0 898 C-495.951690673828 898 -898 495.951690673828 -898 0 C-898 -495.951690673828 -495.951690673828 -898 -0 -898 L-0 -902 Z" stroke="none"
      /><path opacity="0.300000011921" d="M-0 -902 C-498.160858154297 -902 -902 -498.160858154297 -902 0 L-902 0 C-902 498.160858154297 -498.160858154297 902 0 902 C498.160858154297 902 902 498.160858154297 902 0 C902 -498.160858154297 498.160858154297 -902 0 -902 L0 -901.200012207031 C497.719024658203 -901.200012207031 901.200012207031 -497.719024658203 901.200012207031 0 C901.200012207031 497.719024658203 497.719024658203 901.200012207031 0 901.200012207031 C-497.719024658203 901.200012207031 -901.200012207031 497.719024658203 -901.200012207031 0 C-901.200012207031 -497.719024658203 -497.719024658203 -901.200012207031 -0 -901.200012207031 L-0 -902 Z" stroke="none"
      /><path fill="black" d="M-0 -898.799987792969 C-496.393524169922 -898.799987792969 -898.799987792969 -496.393524169922 -898.799987792969 0 L-898.799987792969 0 C-898.799987792969 496.393524169922 -496.393524169922 898.799987792969 0 898.799987792969 C496.393524169922 898.799987792969 898.799987792969 496.393524169922 898.799987792969 0 C898.799987792969 -496.393524169922 496.393524169922 -898.799987792969 0 -898.799987792969 L0 -898 C495.951690673828 -898 898 -495.951690673828 898 0 C898 495.951690673828 495.951690673828 898 0 898 C-495.951690673828 898 -898 495.951690673828 -898 0 C-898 -495.951690673828 -495.951690673828 -898 -0 -898 L-0 -898.799987792969 Z" opacity="0.300000011921" stroke="none"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(153,0,0)" text-rendering="geometricPrecision" color-rendering="optimizeQuality" image-rendering="optimizeQuality" stroke="rgb(153,0,0)" color-interpolation="linearRGB" stroke-width="4"
    ><line y2="1020.410390147957" fill="none" x1="464.646586475851" x2="633.659921863995" y1="875.319684273317"
      /><line y2="-132.653232320749" fill="none" x1="984.79321650365" x2="1179.665400601762" y1="-110.739878672476"
      /><line y2="-72.920409315647" fill="none" x1="987.503080825986" x2="1184.858620818238" y1="-83.178515009499"
      /><line y2="273.578706673028" fill="none" x1="-964.173148130489" x2="-1151.75433843292" y1="229.022139593845"
      /><line y2="961.305500391594" fill="none" x1="-594.176035468695" x2="-720.176364382681" y1="793.117796342198"
      /><line y2="-189.565205138099" fill="none" x1="981.605084447414" x2="1171.877174677799" y1="-136.133971465555"
      /><line y2="-391.52926496105" fill="none" x1="935.981624450608" x2="1125.482854266551" stroke="rgb(0,0,153)" y1="-325.606201861699"
      /><line y2="-1124.02936197478" fill="none" x1="-348.059169988619" x2="-421.643441093492" y1="-927.866269559808"
      /><line y2="-776.759017367478" fill="none" x1="-747.387868141381" x2="-892.091805788894" y1="-650.762917317115"
      /><line y2="327.647581520147" fill="none" x1="-958.230313394459" x2="-1137.512955854433" y1="252.736357677238"
      /><line y2="294.702406558654" fill="none" x1="933.891760286377" x2="1149.948508020428" y1="331.552680684703"
      /><line y2="-959.999479842989" fill="none" x1="-574.897686758111" x2="-683.722390722162" stroke="rgb(0,0,153)" y1="-807.201121010231"
      /><line y2="830.74179487733" fill="none" x1="709.333015244397" x2="851.493365638853" stroke="rgb(0,0,153)" y1="692.046005323557"
      /><line y2="153.424398088681" fill="none" x1="982.748855041152" x2="1181.500529525135" stroke="rgb(0,0,153)" y1="127.615390589481"
      /><line y2="432.941229411614" fill="none" x1="914.353955136788" x2="1105.347443750349" y1="382.148982369066"
      /><line y2="-186.312136584562" fill="none" x1="-978.558948851022" x2="-1164.702772965567" stroke="rgb(0,0,153)" y1="-156.535566640886"
      /><line y2="1170.69056441836" fill="none" x1="116.621817556835" x2="58.881466013081" stroke="rgb(0,0,153)" y1="984.113993229311"
      /><line y2="622.967641215019" fill="none" x1="887.026678642094" x2="1010.527654167207" y1="441.887623018766"
      /><line y2="-1145.463620731571" fill="none" x1="207.223571315598" x2="355.497454534735" stroke="rgb(153,0,153)" y1="-969.092044901417"
      /><line y2="1112.673860037646" fill="none" x1="-309.866614548788" x2="-366.27746921317" stroke="rgb(0,0,153)" y1="941.309556515853"
      /><line y2="602.39410871979" fill="none" x1="-851.728715321668" x2="-1012.792584098487" stroke="rgb(0,0,153)" y1="506.59569233907"
      /><line y2="1105.073580516165" fill="none" x1="307.325553600006" x2="388.27437041804" stroke="rgb(0,0,153)" y1="942.142241970102"
      /><line y2="1076.476073573214" fill="none" x1="-459.577685822259" x2="-532.880403020214" y1="877.991657531128"
      /><line y2="572.152131602703" fill="none" x1="898.625792768064" x2="1040.142663359294" y1="417.79502698329"
      /><line y2="889.717877144102" fill="none" x1="-649.032598039321" x2="-806.947557149028" stroke="rgb(0,0,153)" y1="748.890971158238"
      /><line y2="1149.406568186078" fill="none" x1="167.652800240668" x2="224.10613198601" y1="976.715689733437"
      /><line y2="-1199.594493751757" fill="none" x1="12.796719645983" x2="-11.580599603873" y1="-990.917374944199"
      /><line y2="-1060.895300221268" fill="none" x1="-372.435115055507" x2="-516.374375678816" y1="-918.353464126744"
      /><line y2="376.143847831701" fill="none" x1="924.812654305875" x2="1125.942665178042" y1="356.093463062329"
      /><line y2="-1091.107472522871" fill="none" x1="393.573559619068" x2="501.691407165456" y1="-909.494834052825"
      /><line y2="-668.142196387019" fill="none" x1="-816.185808196763" x2="-970.215463768465" stroke="rgb(0,0,153)" y1="-562.069147434902"
      /><line y2="218.669741070312" fill="none" x1="-969.568725226817" x2="-1163.459469903279" y1="204.981674942042"
      /><line y2="1168.280661814878" fill="none" x1="-35.709477922053" x2="-95.044150603704" stroke="rgb(0,0,153)" y1="990.356417249131"
      /><line y2="-1164.557136124004" fill="none" x1="-170.475816079835" x2="-230.556868844956" stroke="rgb(51,51,51)" y1="-976.226918360641"
      /><line y2="1016.144734238389" fill="none" x1="-528.421551759694" x2="-640.478055813143" stroke="rgb(0,0,153)" y1="838.362489401737"
      /><line y2="-896.462470598068" fill="none" x1="655.073465738716" x2="789.724041782159" stroke="rgb(153,0,153)" y1="-743.612637389298"
      /><line y2="-603.899522954" fill="none" x1="853.18974034859" x2="1022.037273299567" y1="-504.131200149233"
      /><line y2="1075.953145215117" fill="none" x1="440.519404299921" x2="533.935473817096" y1="887.70696428227"
      /><rect x="2128.41455078125" y="2474.269775390625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2139.28955078125 2477.379150390625 L2139.28955078125 2486.691650390625 L2150.39892578125 2486.691650390625 L2150.39892578125 2490.879150390625 L2139.28955078125 2490.879150390625 L2139.28955078125 2508.691650390625 Q2139.28955078125 2512.707275390625 2140.38330078125 2513.847900390625 Q2141.49267578125 2514.988525390625 2144.85205078125 2514.988525390625 L2150.39892578125 2514.988525390625 L2150.39892578125 2519.504150390625 L2144.85205078125 2519.504150390625 Q2138.61767578125 2519.504150390625 2136.24267578125 2517.176025390625 Q2133.86767578125 2514.847900390625 2133.86767578125 2508.691650390625 L2133.86767578125 2490.879150390625 L2129.91455078125 2490.879150390625 L2129.91455078125 2486.691650390625 L2133.86767578125 2486.691650390625 L2133.86767578125 2477.379150390625 L2139.28955078125 2477.379150390625 ZM2178.45556640625 2498.988525390625 Q2180.36181640625 2499.644775390625 2182.15869140625 2501.754150390625 Q2183.97119140625 2503.863525390625 2185.78369140625 2507.551025390625 L2191.79931640625 2519.504150390625 L2185.43994140625 2519.504150390625 L2179.84619140625 2508.285400390625 Q2177.67431640625 2503.894775390625 2175.62744140625 2502.457275390625 Q2173.59619140625 2501.019775390625 2170.08056640625 2501.019775390625 L2163.64306640625 2501.019775390625 L2163.64306640625 2519.504150390625 L2157.72119140625 2519.504150390625 L2157.72119140625 2475.769775390625 L2171.08056640625 2475.769775390625 Q2178.58056640625 2475.769775390625 2182.26806640625 2478.910400390625 Q2185.95556640625 2482.035400390625 2185.95556640625 2488.363525390625 Q2185.95556640625 2492.488525390625 2184.03369140625 2495.222900390625 Q2182.12744140625 2497.941650390625 2178.45556640625 2498.988525390625 ZM2163.64306640625 2480.629150390625 L2163.64306640625 2496.160400390625 L2171.08056640625 2496.160400390625 Q2175.36181640625 2496.160400390625 2177.53369140625 2494.176025390625 Q2179.72119140625 2492.191650390625 2179.72119140625 2488.363525390625 Q2179.72119140625 2484.519775390625 2177.53369140625 2482.582275390625 Q2175.36181640625 2480.629150390625 2171.08056640625 2480.629150390625 L2163.64306640625 2480.629150390625 ZM2199.41064453125 2475.769775390625 L2207.37939453125 2475.769775390625 L2226.77001953125 2512.347900390625 L2226.77001953125 2475.769775390625 L2232.52001953125 2475.769775390625 L2232.52001953125 2519.504150390625 L2224.55126953125 2519.504150390625 L2205.14501953125 2482.910400390625 L2205.14501953125 2519.504150390625 L2199.41064453125 2519.504150390625 L2199.41064453125 2475.769775390625 ZM2258.91845703125 2481.597900390625 L2250.88720703125 2503.363525390625 L2266.96533203125 2503.363525390625 L2258.91845703125 2481.597900390625 ZM2255.57470703125 2475.769775390625 L2262.27783203125 2475.769775390625 L2278.94970703125 2519.504150390625 L2272.79345703125 2519.504150390625 L2268.80908203125 2508.285400390625 L2249.09033203125 2508.285400390625 L2245.10595703125 2519.504150390625 L2238.87158203125 2519.504150390625 L2255.57470703125 2475.769775390625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2683.64990234375" y="1329.393432617188" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2694.52490234375 1332.502807617188 L2694.52490234375 1341.815307617188 L2705.63427734375 1341.815307617188 L2705.63427734375 1346.002807617188 L2694.52490234375 1346.002807617188 L2694.52490234375 1363.815307617188 Q2694.52490234375 1367.830932617188 2695.61865234375 1368.971557617188 Q2696.72802734375 1370.112182617188 2700.08740234375 1370.112182617188 L2705.63427734375 1370.112182617188 L2705.63427734375 1374.627807617188 L2700.08740234375 1374.627807617188 Q2693.85302734375 1374.627807617188 2691.47802734375 1372.299682617188 Q2689.10302734375 1369.971557617188 2689.10302734375 1363.815307617188 L2689.10302734375 1346.002807617188 L2685.14990234375 1346.002807617188 L2685.14990234375 1341.815307617188 L2689.10302734375 1341.815307617188 L2689.10302734375 1332.502807617188 L2694.52490234375 1332.502807617188 ZM2733.69091796875 1354.112182617188 Q2735.59716796875 1354.768432617188 2737.39404296875 1356.877807617188 Q2739.20654296875 1358.987182617188 2741.01904296875 1362.674682617188 L2747.03466796875 1374.627807617188 L2740.67529296875 1374.627807617188 L2735.08154296875 1363.409057617188 Q2732.90966796875 1359.018432617188 2730.86279296875 1357.580932617188 Q2728.83154296875 1356.143432617188 2725.31591796875 1356.143432617188 L2718.87841796875 1356.143432617188 L2718.87841796875 1374.627807617188 L2712.95654296875 1374.627807617188 L2712.95654296875 1330.893432617188 L2726.31591796875 1330.893432617188 Q2733.81591796875 1330.893432617188 2737.50341796875 1334.034057617188 Q2741.19091796875 1337.159057617188 2741.19091796875 1343.487182617188 Q2741.19091796875 1347.612182617188 2739.26904296875 1350.346557617188 Q2737.36279296875 1353.065307617188 2733.69091796875 1354.112182617188 ZM2718.87841796875 1335.752807617188 L2718.87841796875 1351.284057617188 L2726.31591796875 1351.284057617188 Q2730.59716796875 1351.284057617188 2732.76904296875 1349.299682617188 Q2734.95654296875 1347.315307617188 2734.95654296875 1343.487182617188 Q2734.95654296875 1339.643432617188 2732.76904296875 1337.705932617188 Q2730.59716796875 1335.752807617188 2726.31591796875 1335.752807617188 L2718.87841796875 1335.752807617188 ZM2754.64599609375 1330.893432617188 L2762.61474609375 1330.893432617188 L2782.00537109375 1367.471557617188 L2782.00537109375 1330.893432617188 L2787.75537109375 1330.893432617188 L2787.75537109375 1374.627807617188 L2779.78662109375 1374.627807617188 L2760.38037109375 1338.034057617188 L2760.38037109375 1374.627807617188 L2754.64599609375 1374.627807617188 L2754.64599609375 1330.893432617188 ZM2814.15380859375 1336.721557617188 L2806.12255859375 1358.487182617188 L2822.20068359375 1358.487182617188 L2814.15380859375 1336.721557617188 ZM2810.81005859375 1330.893432617188 L2817.51318359375 1330.893432617188 L2834.18505859375 1374.627807617188 L2828.02880859375 1374.627807617188 L2824.04443359375 1363.409057617188 L2804.32568359375 1363.409057617188 L2800.34130859375 1374.627807617188 L2794.10693359375 1374.627807617188 L2810.81005859375 1330.893432617188 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2688.8603515625" y="1389.322509765625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2699.7353515625 1392.431884765625 L2699.7353515625 1401.744384765625 L2710.8447265625 1401.744384765625 L2710.8447265625 1405.931884765625 L2699.7353515625 1405.931884765625 L2699.7353515625 1423.744384765625 Q2699.7353515625 1427.760009765625 2700.8291015625 1428.900634765625 Q2701.9384765625 1430.041259765625 2705.2978515625 1430.041259765625 L2710.8447265625 1430.041259765625 L2710.8447265625 1434.556884765625 L2705.2978515625 1434.556884765625 Q2699.0634765625 1434.556884765625 2696.6884765625 1432.228759765625 Q2694.3134765625 1429.900634765625 2694.3134765625 1423.744384765625 L2694.3134765625 1405.931884765625 L2690.3603515625 1405.931884765625 L2690.3603515625 1401.744384765625 L2694.3134765625 1401.744384765625 L2694.3134765625 1392.431884765625 L2699.7353515625 1392.431884765625 ZM2738.9013671875 1414.041259765625 Q2740.8076171875 1414.697509765625 2742.6044921875 1416.806884765625 Q2744.4169921875 1418.916259765625 2746.2294921875 1422.603759765625 L2752.2451171875 1434.556884765625 L2745.8857421875 1434.556884765625 L2740.2919921875 1423.338134765625 Q2738.1201171875 1418.947509765625 2736.0732421875 1417.510009765625 Q2734.0419921875 1416.072509765625 2730.5263671875 1416.072509765625 L2724.0888671875 1416.072509765625 L2724.0888671875 1434.556884765625 L2718.1669921875 1434.556884765625 L2718.1669921875 1390.822509765625 L2731.5263671875 1390.822509765625 Q2739.0263671875 1390.822509765625 2742.7138671875 1393.963134765625 Q2746.4013671875 1397.088134765625 2746.4013671875 1403.416259765625 Q2746.4013671875 1407.541259765625 2744.4794921875 1410.275634765625 Q2742.5732421875 1412.994384765625 2738.9013671875 1414.041259765625 ZM2724.0888671875 1395.681884765625 L2724.0888671875 1411.213134765625 L2731.5263671875 1411.213134765625 Q2735.8076171875 1411.213134765625 2737.9794921875 1409.228759765625 Q2740.1669921875 1407.244384765625 2740.1669921875 1403.416259765625 Q2740.1669921875 1399.572509765625 2737.9794921875 1397.635009765625 Q2735.8076171875 1395.681884765625 2731.5263671875 1395.681884765625 L2724.0888671875 1395.681884765625 ZM2759.8564453125 1390.822509765625 L2767.8251953125 1390.822509765625 L2787.2158203125 1427.400634765625 L2787.2158203125 1390.822509765625 L2792.9658203125 1390.822509765625 L2792.9658203125 1434.556884765625 L2784.9970703125 1434.556884765625 L2765.5908203125 1397.963134765625 L2765.5908203125 1434.556884765625 L2759.8564453125 1434.556884765625 L2759.8564453125 1390.822509765625 ZM2819.3642578125 1396.650634765625 L2811.3330078125 1418.416259765625 L2827.4111328125 1418.416259765625 L2819.3642578125 1396.650634765625 ZM2816.0205078125 1390.822509765625 L2822.7236328125 1390.822509765625 L2839.3955078125 1434.556884765625 L2833.2392578125 1434.556884765625 L2829.2548828125 1423.338134765625 L2809.5361328125 1423.338134765625 L2805.5517578125 1434.556884765625 L2799.3173828125 1434.556884765625 L2816.0205078125 1390.822509765625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="192.315170288086" y="1737.724975585938" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M203.190170288086 1740.834350585938 L203.190170288086 1750.146850585938 L214.299545288086 1750.146850585938 L214.299545288086 1754.334350585938 L203.190170288086 1754.334350585938 L203.190170288086 1772.146850585938 Q203.190170288086 1776.162475585938 204.283920288086 1777.303100585938 Q205.393295288086 1778.443725585938 208.752670288086 1778.443725585938 L214.299545288086 1778.443725585938 L214.299545288086 1782.959350585938 L208.752670288086 1782.959350585938 Q202.518295288086 1782.959350585938 200.143295288086 1780.631225585938 Q197.768295288086 1778.303100585938 197.768295288086 1772.146850585938 L197.768295288086 1754.334350585938 L193.815170288086 1754.334350585938 L193.815170288086 1750.146850585938 L197.768295288086 1750.146850585938 L197.768295288086 1740.834350585938 L203.190170288086 1740.834350585938 ZM242.356185913086 1762.443725585938 Q244.262435913086 1763.099975585938 246.059310913086 1765.209350585938 Q247.871810913086 1767.318725585938 249.684310913086 1771.006225585938 L255.699935913086 1782.959350585938 L249.340560913086 1782.959350585938 L243.746810913086 1771.740600585938 Q241.574935913086 1767.349975585938 239.528060913086 1765.912475585938 Q237.496810913086 1764.474975585938 233.981185913086 1764.474975585938 L227.543685913086 1764.474975585938 L227.543685913086 1782.959350585938 L221.621810913086 1782.959350585938 L221.621810913086 1739.224975585938 L234.981185913086 1739.224975585938 Q242.481185913086 1739.224975585938 246.168685913086 1742.365600585938 Q249.856185913086 1745.490600585938 249.856185913086 1751.818725585938 Q249.856185913086 1755.943725585938 247.934310913086 1758.678100585938 Q246.028060913086 1761.396850585938 242.356185913086 1762.443725585938 ZM227.543685913086 1744.084350585938 L227.543685913086 1759.615600585938 L234.981185913086 1759.615600585938 Q239.262435913086 1759.615600585938 241.434310913086 1757.631225585938 Q243.621810913086 1755.646850585938 243.621810913086 1751.818725585938 Q243.621810913086 1747.974975585938 241.434310913086 1746.037475585938 Q239.262435913086 1744.084350585938 234.981185913086 1744.084350585938 L227.543685913086 1744.084350585938 ZM263.311279296875 1739.224975585938 L271.280029296875 1739.224975585938 L290.670654296875 1775.803100585938 L290.670654296875 1739.224975585938 L296.420654296875 1739.224975585938 L296.420654296875 1782.959350585938 L288.451904296875 1782.959350585938 L269.045654296875 1746.365600585938 L269.045654296875 1782.959350585938 L263.311279296875 1782.959350585938 L263.311279296875 1739.224975585938 ZM322.819091796875 1745.053100585938 L314.787841796875 1766.818725585938 L330.865966796875 1766.818725585938 L322.819091796875 1745.053100585938 ZM319.475341796875 1739.224975585938 L326.178466796875 1739.224975585938 L342.850341796875 1782.959350585938 L336.694091796875 1782.959350585938 L332.709716796875 1771.740600585938 L312.990966796875 1771.740600585938 L309.006591796875 1782.959350585938 L302.772216796875 1782.959350585938 L319.475341796875 1739.224975585938 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="636.983764648438" y="2415.664306640625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M647.858764648438 2418.773681640625 L647.858764648438 2428.086181640625 L658.968139648438 2428.086181640625 L658.968139648438 2432.273681640625 L647.858764648438 2432.273681640625 L647.858764648438 2450.086181640625 Q647.858764648438 2454.101806640625 648.952514648438 2455.242431640625 Q650.061889648438 2456.383056640625 653.421264648438 2456.383056640625 L658.968139648438 2456.383056640625 L658.968139648438 2460.898681640625 L653.421264648438 2460.898681640625 Q647.186889648438 2460.898681640625 644.811889648438 2458.570556640625 Q642.436889648438 2456.242431640625 642.436889648438 2450.086181640625 L642.436889648438 2432.273681640625 L638.483764648438 2432.273681640625 L638.483764648438 2428.086181640625 L642.436889648438 2428.086181640625 L642.436889648438 2418.773681640625 L647.858764648438 2418.773681640625 ZM687.024780273438 2440.383056640625 Q688.931030273438 2441.039306640625 690.727905273438 2443.148681640625 Q692.540405273438 2445.258056640625 694.352905273438 2448.945556640625 L700.368530273438 2460.898681640625 L694.009155273438 2460.898681640625 L688.415405273438 2449.679931640625 Q686.243530273438 2445.289306640625 684.196655273438 2443.851806640625 Q682.165405273438 2442.414306640625 678.649780273438 2442.414306640625 L672.212280273438 2442.414306640625 L672.212280273438 2460.898681640625 L666.290405273438 2460.898681640625 L666.290405273438 2417.164306640625 L679.649780273438 2417.164306640625 Q687.149780273438 2417.164306640625 690.837280273438 2420.304931640625 Q694.524780273438 2423.429931640625 694.524780273438 2429.758056640625 Q694.524780273438 2433.883056640625 692.602905273438 2436.617431640625 Q690.696655273438 2439.336181640625 687.024780273438 2440.383056640625 ZM672.212280273438 2422.023681640625 L672.212280273438 2437.554931640625 L679.649780273438 2437.554931640625 Q683.931030273438 2437.554931640625 686.102905273438 2435.570556640625 Q688.290405273438 2433.586181640625 688.290405273438 2429.758056640625 Q688.290405273438 2425.914306640625 686.102905273438 2423.976806640625 Q683.931030273438 2422.023681640625 679.649780273438 2422.023681640625 L672.212280273438 2422.023681640625 ZM707.979858398438 2417.164306640625 L715.948608398438 2417.164306640625 L735.339233398438 2453.742431640625 L735.339233398438 2417.164306640625 L741.089233398438 2417.164306640625 L741.089233398438 2460.898681640625 L733.120483398438 2460.898681640625 L713.714233398438 2424.304931640625 L713.714233398438 2460.898681640625 L707.979858398438 2460.898681640625 L707.979858398438 2417.164306640625 ZM767.487670898438 2422.992431640625 L759.456420898438 2444.758056640625 L775.534545898438 2444.758056640625 L767.487670898438 2422.992431640625 ZM764.143920898438 2417.164306640625 L770.847045898438 2417.164306640625 L787.518920898438 2460.898681640625 L781.362670898438 2460.898681640625 L777.378295898438 2449.679931640625 L757.659545898438 2449.679931640625 L753.675170898438 2460.898681640625 L747.440795898438 2460.898681640625 L764.143920898438 2417.164306640625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2675.826171875" y="1272.296142578125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2686.701171875 1275.405517578125 L2686.701171875 1284.718017578125 L2697.810546875 1284.718017578125 L2697.810546875 1288.905517578125 L2686.701171875 1288.905517578125 L2686.701171875 1306.718017578125 Q2686.701171875 1310.733642578125 2687.794921875 1311.874267578125 Q2688.904296875 1313.014892578125 2692.263671875 1313.014892578125 L2697.810546875 1313.014892578125 L2697.810546875 1317.530517578125 L2692.263671875 1317.530517578125 Q2686.029296875 1317.530517578125 2683.654296875 1315.202392578125 Q2681.279296875 1312.874267578125 2681.279296875 1306.718017578125 L2681.279296875 1288.905517578125 L2677.326171875 1288.905517578125 L2677.326171875 1284.718017578125 L2681.279296875 1284.718017578125 L2681.279296875 1275.405517578125 L2686.701171875 1275.405517578125 ZM2725.8671875 1297.014892578125 Q2727.7734375 1297.671142578125 2729.5703125 1299.780517578125 Q2731.3828125 1301.889892578125 2733.1953125 1305.577392578125 L2739.2109375 1317.530517578125 L2732.8515625 1317.530517578125 L2727.2578125 1306.311767578125 Q2725.0859375 1301.921142578125 2723.0390625 1300.483642578125 Q2721.0078125 1299.046142578125 2717.4921875 1299.046142578125 L2711.0546875 1299.046142578125 L2711.0546875 1317.530517578125 L2705.1328125 1317.530517578125 L2705.1328125 1273.796142578125 L2718.4921875 1273.796142578125 Q2725.9921875 1273.796142578125 2729.6796875 1276.936767578125 Q2733.3671875 1280.061767578125 2733.3671875 1286.389892578125 Q2733.3671875 1290.514892578125 2731.4453125 1293.249267578125 Q2729.5390625 1295.968017578125 2725.8671875 1297.014892578125 ZM2711.0546875 1278.655517578125 L2711.0546875 1294.186767578125 L2718.4921875 1294.186767578125 Q2722.7734375 1294.186767578125 2724.9453125 1292.202392578125 Q2727.1328125 1290.218017578125 2727.1328125 1286.389892578125 Q2727.1328125 1282.546142578125 2724.9453125 1280.608642578125 Q2722.7734375 1278.655517578125 2718.4921875 1278.655517578125 L2711.0546875 1278.655517578125 ZM2746.822265625 1273.796142578125 L2754.791015625 1273.796142578125 L2774.181640625 1310.374267578125 L2774.181640625 1273.796142578125 L2779.931640625 1273.796142578125 L2779.931640625 1317.530517578125 L2771.962890625 1317.530517578125 L2752.556640625 1280.936767578125 L2752.556640625 1317.530517578125 L2746.822265625 1317.530517578125 L2746.822265625 1273.796142578125 ZM2806.330078125 1279.624267578125 L2798.298828125 1301.389892578125 L2814.376953125 1301.389892578125 L2806.330078125 1279.624267578125 ZM2802.986328125 1273.796142578125 L2809.689453125 1273.796142578125 L2826.361328125 1317.530517578125 L2820.205078125 1317.530517578125 L2816.220703125 1306.311767578125 L2796.501953125 1306.311767578125 L2792.517578125 1317.530517578125 L2786.283203125 1317.530517578125 L2802.986328125 1273.796142578125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2629.2685546875" y="1071.16357421875" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="120.833984375" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M2630.7685546875 1072.66357421875 L2638.7373046875 1072.66357421875 L2658.1279296875 1109.24169921875 L2658.1279296875 1072.66357421875 L2663.8779296875 1072.66357421875 L2663.8779296875 1116.39794921875 L2655.9091796875 1116.39794921875 L2636.5029296875 1079.80419921875 L2636.5029296875 1116.39794921875 L2630.7685546875 1116.39794921875 L2630.7685546875 1072.66357421875 ZM2681.5732421875 1077.52294921875 L2681.5732421875 1111.53857421875 L2688.7138671875 1111.53857421875 Q2697.7763671875 1111.53857421875 2701.9794921875 1107.44482421875 Q2706.1826171875 1103.33544921875 2706.1826171875 1094.47607421875 Q2706.1826171875 1085.69482421875 2701.9794921875 1081.61669921875 Q2697.7763671875 1077.52294921875 2688.7138671875 1077.52294921875 L2681.5732421875 1077.52294921875 ZM2675.6513671875 1072.66357421875 L2687.8076171875 1072.66357421875 Q2700.5263671875 1072.66357421875 2706.4638671875 1077.94482421875 Q2712.4169921875 1083.22607421875 2712.4169921875 1094.47607421875 Q2712.4169921875 1105.78857421875 2706.4326171875 1111.10107421875 Q2700.4638671875 1116.39794921875 2687.8076171875 1116.39794921875 L2675.6513671875 1116.39794921875 L2675.6513671875 1072.66357421875 ZM2723.3994140625 1111.41357421875 L2733.0712890625 1111.41357421875 L2733.0712890625 1078.05419921875 L2722.5556640625 1080.16357421875 L2722.5556640625 1074.77294921875 L2733.0087890625 1072.66357421875 L2738.9306640625 1072.66357421875 L2738.9306640625 1111.41357421875 L2748.6025390625 1111.41357421875 L2748.6025390625 1116.39794921875 L2723.3994140625 1116.39794921875 L2723.3994140625 1111.41357421875 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1002.541320800781" y="325.490386962891" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M1013.416320800781 328.599761962891 L1013.416320800781 337.912261962891 L1024.525634765625 337.912261962891 L1024.525634765625 342.099761962891 L1013.416320800781 342.099761962891 L1013.416320800781 359.912261962891 Q1013.416320800781 363.927886962891 1014.510070800781 365.068511962891 Q1015.619445800781 366.209136962891 1018.978820800781 366.209136962891 L1024.525634765625 366.209136962891 L1024.525634765625 370.724761962891 L1018.978820800781 370.724761962891 Q1012.744445800781 370.724761962891 1010.369445800781 368.396636962891 Q1007.994445800781 366.068511962891 1007.994445800781 359.912261962891 L1007.994445800781 342.099761962891 L1004.041320800781 342.099761962891 L1004.041320800781 337.912261962891 L1007.994445800781 337.912261962891 L1007.994445800781 328.599761962891 L1013.416320800781 328.599761962891 ZM1052.582275390625 350.209136962891 Q1054.488525390625 350.865386962891 1056.285400390625 352.974761962891 Q1058.097900390625 355.084136962891 1059.910400390625 358.771636962891 L1065.926025390625 370.724761962891 L1059.566650390625 370.724761962891 L1053.972900390625 359.506011962891 Q1051.801025390625 355.115386962891 1049.754150390625 353.677886962891 Q1047.722900390625 352.240386962891 1044.207275390625 352.240386962891 L1037.769775390625 352.240386962891 L1037.769775390625 370.724761962891 L1031.847900390625 370.724761962891 L1031.847900390625 326.990386962891 L1045.207275390625 326.990386962891 Q1052.707275390625 326.990386962891 1056.394775390625 330.131011962891 Q1060.082275390625 333.256011962891 1060.082275390625 339.584136962891 Q1060.082275390625 343.709136962891 1058.160400390625 346.443511962891 Q1056.254150390625 349.162261962891 1052.582275390625 350.209136962891 ZM1037.769775390625 331.849761962891 L1037.769775390625 347.381011962891 L1045.207275390625 347.381011962891 Q1049.488525390625 347.381011962891 1051.660400390625 345.396636962891 Q1053.847900390625 343.412261962891 1053.847900390625 339.584136962891 Q1053.847900390625 335.740386962891 1051.660400390625 333.802886962891 Q1049.488525390625 331.849761962891 1045.207275390625 331.849761962891 L1037.769775390625 331.849761962891 ZM1073.537353515625 326.990386962891 L1081.506103515625 326.990386962891 L1100.896728515625 363.568511962891 L1100.896728515625 326.990386962891 L1106.646728515625 326.990386962891 L1106.646728515625 370.724761962891 L1098.677978515625 370.724761962891 L1079.271728515625 334.131011962891 L1079.271728515625 370.724761962891 L1073.537353515625 370.724761962891 L1073.537353515625 326.990386962891 ZM1133.045166015625 332.818511962891 L1125.013916015625 354.584136962891 L1141.092041015625 354.584136962891 L1133.045166015625 332.818511962891 ZM1129.701416015625 326.990386962891 L1136.404541015625 326.990386962891 L1153.076416015625 370.724761962891 L1146.920166015625 370.724761962891 L1142.935791015625 359.506011962891 L1123.217041015625 359.506011962891 L1119.232666015625 370.724761962891 L1112.998291015625 370.724761962891 L1129.701416015625 326.990386962891 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="452.851257324219" y="680.384887695312" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M463.726257324219 683.494262695312 L463.726257324219 692.806762695312 L474.835632324219 692.806762695312 L474.835632324219 696.994262695312 L463.726257324219 696.994262695312 L463.726257324219 714.806762695312 Q463.726257324219 718.822387695312 464.820007324219 719.963012695312 Q465.929382324219 721.103637695312 469.288757324219 721.103637695312 L474.835632324219 721.103637695312 L474.835632324219 725.619262695312 L469.288757324219 725.619262695312 Q463.054382324219 725.619262695312 460.679382324219 723.291137695312 Q458.304382324219 720.963012695312 458.304382324219 714.806762695312 L458.304382324219 696.994262695312 L454.351257324219 696.994262695312 L454.351257324219 692.806762695312 L458.304382324219 692.806762695312 L458.304382324219 683.494262695312 L463.726257324219 683.494262695312 ZM502.892272949219 705.103637695312 Q504.798522949219 705.759887695312 506.595397949219 707.869262695312 Q508.407897949219 709.978637695312 510.220397949219 713.666137695312 L516.236022949219 725.619262695312 L509.876647949219 725.619262695312 L504.282897949219 714.400512695312 Q502.111022949219 710.009887695312 500.064147949219 708.572387695312 Q498.032897949219 707.134887695312 494.517272949219 707.134887695312 L488.079772949219 707.134887695312 L488.079772949219 725.619262695312 L482.157897949219 725.619262695312 L482.157897949219 681.884887695312 L495.517272949219 681.884887695312 Q503.017272949219 681.884887695312 506.704772949219 685.025512695312 Q510.392272949219 688.150512695312 510.392272949219 694.478637695312 Q510.392272949219 698.603637695312 508.470397949219 701.338012695312 Q506.564147949219 704.056762695312 502.892272949219 705.103637695312 ZM488.079772949219 686.744262695312 L488.079772949219 702.275512695312 L495.517272949219 702.275512695312 Q499.798522949219 702.275512695312 501.970397949219 700.291137695312 Q504.157897949219 698.306762695312 504.157897949219 694.478637695312 Q504.157897949219 690.634887695312 501.970397949219 688.697387695312 Q499.798522949219 686.744262695312 495.517272949219 686.744262695312 L488.079772949219 686.744262695312 ZM523.847351074219 681.884887695312 L531.816101074219 681.884887695312 L551.206726074219 718.463012695312 L551.206726074219 681.884887695312 L556.956726074219 681.884887695312 L556.956726074219 725.619262695312 L548.987976074219 725.619262695312 L529.581726074219 689.025512695312 L529.581726074219 725.619262695312 L523.847351074219 725.619262695312 L523.847351074219 681.884887695312 ZM583.355163574219 687.713012695312 L575.323913574219 709.478637695312 L591.402038574219 709.478637695312 L583.355163574219 687.713012695312 ZM580.011413574219 681.884887695312 L586.714538574219 681.884887695312 L603.386413574219 725.619262695312 L597.230163574219 725.619262695312 L593.245788574219 714.400512695312 L573.527038574219 714.400512695312 L569.542663574219 725.619262695312 L563.308288574219 725.619262695312 L580.011413574219 681.884887695312 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="206.6044921875" y="1792.1337890625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M217.4794921875 1795.2431640625 L217.4794921875 1804.5556640625 L228.5888671875 1804.5556640625 L228.5888671875 1808.7431640625 L217.4794921875 1808.7431640625 L217.4794921875 1826.5556640625 Q217.4794921875 1830.5712890625 218.5732421875 1831.7119140625 Q219.6826171875 1832.8525390625 223.0419921875 1832.8525390625 L228.5888671875 1832.8525390625 L228.5888671875 1837.3681640625 L223.0419921875 1837.3681640625 Q216.8076171875 1837.3681640625 214.4326171875 1835.0400390625 Q212.0576171875 1832.7119140625 212.0576171875 1826.5556640625 L212.0576171875 1808.7431640625 L208.1044921875 1808.7431640625 L208.1044921875 1804.5556640625 L212.0576171875 1804.5556640625 L212.0576171875 1795.2431640625 L217.4794921875 1795.2431640625 ZM256.6455078125 1816.8525390625 Q258.5517578125 1817.5087890625 260.3486328125 1819.6181640625 Q262.1611328125 1821.7275390625 263.9736328125 1825.4150390625 L269.9892578125 1837.3681640625 L263.6298828125 1837.3681640625 L258.0361328125 1826.1494140625 Q255.8642578125 1821.7587890625 253.8173828125 1820.3212890625 Q251.7861328125 1818.8837890625 248.2705078125 1818.8837890625 L241.8330078125 1818.8837890625 L241.8330078125 1837.3681640625 L235.9111328125 1837.3681640625 L235.9111328125 1793.6337890625 L249.2705078125 1793.6337890625 Q256.7705078125 1793.6337890625 260.4580078125 1796.7744140625 Q264.1455078125 1799.8994140625 264.1455078125 1806.2275390625 Q264.1455078125 1810.3525390625 262.2236328125 1813.0869140625 Q260.3173828125 1815.8056640625 256.6455078125 1816.8525390625 ZM241.8330078125 1798.4931640625 L241.8330078125 1814.0244140625 L249.2705078125 1814.0244140625 Q253.5517578125 1814.0244140625 255.7236328125 1812.0400390625 Q257.9111328125 1810.0556640625 257.9111328125 1806.2275390625 Q257.9111328125 1802.3837890625 255.7236328125 1800.4462890625 Q253.5517578125 1798.4931640625 249.2705078125 1798.4931640625 L241.8330078125 1798.4931640625 ZM277.6005859375 1793.6337890625 L285.5693359375 1793.6337890625 L304.9599609375 1830.2119140625 L304.9599609375 1793.6337890625 L310.7099609375 1793.6337890625 L310.7099609375 1837.3681640625 L302.7412109375 1837.3681640625 L283.3349609375 1800.7744140625 L283.3349609375 1837.3681640625 L277.6005859375 1837.3681640625 L277.6005859375 1793.6337890625 ZM337.1083984375 1799.4619140625 L329.0771484375 1821.2275390625 L345.1552734375 1821.2275390625 L337.1083984375 1799.4619140625 ZM333.7646484375 1793.6337890625 L340.4677734375 1793.6337890625 L357.1396484375 1837.3681640625 L350.9833984375 1837.3681640625 L346.9990234375 1826.1494140625 L327.2802734375 1826.1494140625 L323.2958984375 1837.3681640625 L317.0615234375 1837.3681640625 L333.7646484375 1793.6337890625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2653.82568359375" y="1758.150390625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2664.70068359375 1761.259765625 L2664.70068359375 1770.572265625 L2675.81005859375 1770.572265625 L2675.81005859375 1774.759765625 L2664.70068359375 1774.759765625 L2664.70068359375 1792.572265625 Q2664.70068359375 1796.587890625 2665.79443359375 1797.728515625 Q2666.90380859375 1798.869140625 2670.26318359375 1798.869140625 L2675.81005859375 1798.869140625 L2675.81005859375 1803.384765625 L2670.26318359375 1803.384765625 Q2664.02880859375 1803.384765625 2661.65380859375 1801.056640625 Q2659.27880859375 1798.728515625 2659.27880859375 1792.572265625 L2659.27880859375 1774.759765625 L2655.32568359375 1774.759765625 L2655.32568359375 1770.572265625 L2659.27880859375 1770.572265625 L2659.27880859375 1761.259765625 L2664.70068359375 1761.259765625 ZM2703.86669921875 1782.869140625 Q2705.77294921875 1783.525390625 2707.56982421875 1785.634765625 Q2709.38232421875 1787.744140625 2711.19482421875 1791.431640625 L2717.21044921875 1803.384765625 L2710.85107421875 1803.384765625 L2705.25732421875 1792.166015625 Q2703.08544921875 1787.775390625 2701.03857421875 1786.337890625 Q2699.00732421875 1784.900390625 2695.49169921875 1784.900390625 L2689.05419921875 1784.900390625 L2689.05419921875 1803.384765625 L2683.13232421875 1803.384765625 L2683.13232421875 1759.650390625 L2696.49169921875 1759.650390625 Q2703.99169921875 1759.650390625 2707.67919921875 1762.791015625 Q2711.36669921875 1765.916015625 2711.36669921875 1772.244140625 Q2711.36669921875 1776.369140625 2709.44482421875 1779.103515625 Q2707.53857421875 1781.822265625 2703.86669921875 1782.869140625 ZM2689.05419921875 1764.509765625 L2689.05419921875 1780.041015625 L2696.49169921875 1780.041015625 Q2700.77294921875 1780.041015625 2702.94482421875 1778.056640625 Q2705.13232421875 1776.072265625 2705.13232421875 1772.244140625 Q2705.13232421875 1768.400390625 2702.94482421875 1766.462890625 Q2700.77294921875 1764.509765625 2696.49169921875 1764.509765625 L2689.05419921875 1764.509765625 ZM2724.82177734375 1759.650390625 L2732.79052734375 1759.650390625 L2752.18115234375 1796.228515625 L2752.18115234375 1759.650390625 L2757.93115234375 1759.650390625 L2757.93115234375 1803.384765625 L2749.96240234375 1803.384765625 L2730.55615234375 1766.791015625 L2730.55615234375 1803.384765625 L2724.82177734375 1803.384765625 L2724.82177734375 1759.650390625 ZM2784.32958984375 1765.478515625 L2776.29833984375 1787.244140625 L2792.37646484375 1787.244140625 L2784.32958984375 1765.478515625 ZM2780.98583984375 1759.650390625 L2787.68896484375 1759.650390625 L2804.36083984375 1803.384765625 L2798.20458984375 1803.384765625 L2794.22021484375 1792.166015625 L2774.50146484375 1792.166015625 L2770.51708984375 1803.384765625 L2764.28271484375 1803.384765625 L2780.98583984375 1759.650390625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="662.211364746094" y="492.398345947266" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="151.7421875" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M698.976989746094 498.054626464844 L698.976989746094 504.304626464844 Q695.992614746094 501.507751464844 692.601989746094 500.132751464844 Q689.226989746094 498.757751464844 685.414489746094 498.757751464844 Q677.914489746094 498.757751464844 673.930114746094 503.351501464844 Q669.945739746094 507.929626464844 669.945739746094 516.601501464844 Q669.945739746094 525.242126464844 673.930114746094 529.835876464844 Q677.914489746094 534.414001464844 685.414489746094 534.414001464844 Q689.226989746094 534.414001464844 692.601989746094 533.039001464844 Q695.992614746094 531.664001464844 698.976989746094 528.882751464844 L698.976989746094 535.054626464844 Q695.867614746094 537.164001464844 692.398864746094 538.226501464844 Q688.930114746094 539.273376464844 685.070739746094 539.273376464844 Q675.133239746094 539.273376464844 669.414489746094 533.195251464844 Q663.711364746094 527.117126464844 663.711364746094 516.601501464844 Q663.711364746094 506.054626464844 669.414489746094 499.976501464844 Q675.133239746094 493.898376464844 685.070739746094 493.898376464844 Q688.992614746094 493.898376464844 692.461364746094 494.945251464844 Q695.930114746094 495.976501464844 698.976989746094 498.054626464844 ZM702.105895996094 494.695251464844 L708.465270996094 494.695251464844 L720.605895996094 512.679626464844 L732.637145996094 494.695251464844 L738.996520996094 494.695251464844 L723.527770996094 517.601501464844 L723.527770996094 538.429626464844 L717.590270996094 538.429626464844 L717.590270996094 517.601501464844 L702.105895996094 494.695251464844 ZM738.709411621094 494.695251464844 L775.709411621094 494.695251464844 L775.709411621094 499.664001464844 L760.178161621094 499.664001464844 L760.178161621094 538.429626464844 L754.240661621094 538.429626464844 L754.240661621094 499.664001464844 L738.709411621094 499.664001464844 L738.709411621094 494.695251464844 ZM787.344177246094 517.539001464844 L787.344177246094 533.570251464844 L796.828552246094 533.570251464844 Q801.609802246094 533.570251464844 803.906677246094 531.601501464844 Q806.203552246094 529.617126464844 806.203552246094 525.539001464844 Q806.203552246094 521.429626464844 803.906677246094 519.492126464844 Q801.609802246094 517.539001464844 796.828552246094 517.539001464844 L787.344177246094 517.539001464844 ZM787.344177246094 499.554626464844 L787.344177246094 512.742126464844 L796.094177246094 512.742126464844 Q800.437927246094 512.742126464844 802.562927246094 511.117126464844 Q804.687927246094 509.476501464844 804.687927246094 506.148376464844 Q804.687927246094 502.835876464844 802.562927246094 501.195251464844 Q800.437927246094 499.554626464844 796.094177246094 499.554626464844 L787.344177246094 499.554626464844 ZM781.422302246094 494.695251464844 L796.531677246094 494.695251464844 Q803.312927246094 494.695251464844 806.969177246094 497.507751464844 Q810.625427246094 500.320251464844 810.625427246094 505.492126464844 Q810.625427246094 509.507751464844 808.750427246094 511.882751464844 Q806.875427246094 514.257751464844 803.250427246094 514.851501464844 Q807.609802246094 515.789001464844 810.031677246094 518.757751464844 Q812.453552246094 521.726501464844 812.453552246094 526.179626464844 Q812.453552246094 532.039001464844 808.469177246094 535.242126464844 Q804.484802246094 538.429626464844 797.125427246094 538.429626464844 L781.422302246094 538.429626464844 L781.422302246094 494.695251464844 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2354.363037109375" y="2294.218017578125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="162.490234375" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M2391.128662109375 2299.874267578125 L2391.128662109375 2306.124267578125 Q2388.144287109375 2303.327392578125 2384.753662109375 2301.952392578125 Q2381.378662109375 2300.577392578125 2377.566162109375 2300.577392578125 Q2370.066162109375 2300.577392578125 2366.081787109375 2305.171142578125 Q2362.097412109375 2309.749267578125 2362.097412109375 2318.421142578125 Q2362.097412109375 2327.061767578125 2366.081787109375 2331.655517578125 Q2370.066162109375 2336.233642578125 2377.566162109375 2336.233642578125 Q2381.378662109375 2336.233642578125 2384.753662109375 2334.858642578125 Q2388.144287109375 2333.483642578125 2391.128662109375 2330.702392578125 L2391.128662109375 2336.874267578125 Q2388.019287109375 2338.983642578125 2384.550537109375 2340.046142578125 Q2381.081787109375 2341.093017578125 2377.222412109375 2341.093017578125 Q2367.284912109375 2341.093017578125 2361.566162109375 2335.014892578125 Q2355.863037109375 2328.936767578125 2355.863037109375 2318.421142578125 Q2355.863037109375 2307.874267578125 2361.566162109375 2301.796142578125 Q2367.284912109375 2295.718017578125 2377.222412109375 2295.718017578125 Q2381.144287109375 2295.718017578125 2384.613037109375 2296.764892578125 Q2388.081787109375 2297.796142578125 2391.128662109375 2299.874267578125 ZM2418.023193359375 2300.514892578125 Q2411.585693359375 2300.514892578125 2407.788818359375 2305.327392578125 Q2403.991943359375 2310.124267578125 2403.991943359375 2318.421142578125 Q2403.991943359375 2326.686767578125 2407.788818359375 2331.499267578125 Q2411.585693359375 2336.296142578125 2418.023193359375 2336.296142578125 Q2424.476318359375 2336.296142578125 2428.241943359375 2331.499267578125 Q2432.007568359375 2326.686767578125 2432.007568359375 2318.421142578125 Q2432.007568359375 2310.124267578125 2428.241943359375 2305.327392578125 Q2424.476318359375 2300.514892578125 2418.023193359375 2300.514892578125 ZM2418.023193359375 2295.718017578125 Q2427.226318359375 2295.718017578125 2432.726318359375 2301.889892578125 Q2438.241943359375 2308.046142578125 2438.241943359375 2318.421142578125 Q2438.241943359375 2328.764892578125 2432.726318359375 2334.936767578125 Q2427.226318359375 2341.093017578125 2418.023193359375 2341.093017578125 Q2408.804443359375 2341.093017578125 2403.273193359375 2334.952392578125 Q2397.757568359375 2328.796142578125 2397.757568359375 2318.421142578125 Q2397.757568359375 2308.046142578125 2403.273193359375 2301.889892578125 Q2408.804443359375 2295.718017578125 2418.023193359375 2295.718017578125 ZM2445.390380859375 2296.514892578125 L2451.749755859375 2296.514892578125 L2462.609130859375 2312.764892578125 L2473.546630859375 2296.514892578125 L2479.906005859375 2296.514892578125 L2465.843505859375 2317.514892578125 L2480.843505859375 2340.249267578125 L2474.484130859375 2340.249267578125 L2462.171630859375 2321.639892578125 L2449.781005859375 2340.249267578125 L2443.390380859375 2340.249267578125 L2459.015380859375 2316.905517578125 L2445.390380859375 2296.514892578125 ZM2490.150146484375 2335.264892578125 L2499.822021484375 2335.264892578125 L2499.822021484375 2301.905517578125 L2489.306396484375 2304.014892578125 L2489.306396484375 2298.624267578125 L2499.759521484375 2296.514892578125 L2505.681396484375 2296.514892578125 L2505.681396484375 2335.264892578125 L2515.353271484375 2335.264892578125 L2515.353271484375 2340.249267578125 L2490.150146484375 2340.249267578125 L2490.150146484375 2335.264892578125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2685.474365234375" y="1615.454223632812" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="120.365234375" height="47.53125" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M2686.974365234375 1617.751098632812 L2694.943115234375 1617.751098632812 L2714.333740234375 1654.329223632812 L2714.333740234375 1617.751098632812 L2720.083740234375 1617.751098632812 L2720.083740234375 1661.485473632812 L2712.114990234375 1661.485473632812 L2692.708740234375 1624.891723632812 L2692.708740234375 1661.485473632812 L2686.974365234375 1661.485473632812 L2686.974365234375 1617.751098632812 ZM2737.779052734375 1622.610473632812 L2737.779052734375 1656.626098632812 L2744.919677734375 1656.626098632812 Q2753.982177734375 1656.626098632812 2758.185302734375 1652.532348632812 Q2762.388427734375 1648.422973632812 2762.388427734375 1639.563598632812 Q2762.388427734375 1630.782348632812 2758.185302734375 1626.704223632812 Q2753.982177734375 1622.610473632812 2744.919677734375 1622.610473632812 L2737.779052734375 1622.610473632812 ZM2731.857177734375 1617.751098632812 L2744.013427734375 1617.751098632812 Q2756.732177734375 1617.751098632812 2762.669677734375 1623.032348632812 Q2768.622802734375 1628.313598632812 2768.622802734375 1639.563598632812 Q2768.622802734375 1650.876098632812 2762.638427734375 1656.188598632812 Q2756.669677734375 1661.485473632812 2744.013427734375 1661.485473632812 L2731.857177734375 1661.485473632812 L2731.857177734375 1617.751098632812 ZM2783.683349609375 1656.501098632812 L2804.339599609375 1656.501098632812 L2804.339599609375 1661.485473632812 L2776.558349609375 1661.485473632812 L2776.558349609375 1656.501098632812 Q2779.933349609375 1653.016723632812 2785.745849609375 1647.141723632812 Q2791.558349609375 1641.266723632812 2793.058349609375 1639.563598632812 Q2795.902099609375 1636.376098632812 2797.027099609375 1634.172973632812 Q2798.152099609375 1631.954223632812 2798.152099609375 1629.813598632812 Q2798.152099609375 1626.329223632812 2795.698974609375 1624.141723632812 Q2793.261474609375 1621.938598632812 2789.339599609375 1621.938598632812 Q2786.558349609375 1621.938598632812 2783.464599609375 1622.907348632812 Q2780.370849609375 1623.860473632812 2776.855224609375 1625.829223632812 L2776.855224609375 1619.860473632812 Q2780.433349609375 1618.422973632812 2783.527099609375 1617.688598632812 Q2786.636474609375 1616.954223632812 2789.214599609375 1616.954223632812 Q2796.011474609375 1616.954223632812 2800.058349609375 1620.360473632812 Q2804.105224609375 1623.751098632812 2804.105224609375 1629.438598632812 Q2804.105224609375 1632.126098632812 2803.089599609375 1634.547973632812 Q2802.073974609375 1636.969848632812 2799.417724609375 1640.251098632812 Q2798.683349609375 1641.094848632812 2794.745849609375 1645.157348632812 Q2790.823974609375 1649.204223632812 2783.683349609375 1656.501098632812 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2609.07861328125" y="1896.842163085938" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2619.95361328125 1899.951538085938 L2619.95361328125 1909.264038085938 L2631.06298828125 1909.264038085938 L2631.06298828125 1913.451538085938 L2619.95361328125 1913.451538085938 L2619.95361328125 1931.264038085938 Q2619.95361328125 1935.279663085938 2621.04736328125 1936.420288085938 Q2622.15673828125 1937.560913085938 2625.51611328125 1937.560913085938 L2631.06298828125 1937.560913085938 L2631.06298828125 1942.076538085938 L2625.51611328125 1942.076538085938 Q2619.28173828125 1942.076538085938 2616.90673828125 1939.748413085938 Q2614.53173828125 1937.420288085938 2614.53173828125 1931.264038085938 L2614.53173828125 1913.451538085938 L2610.57861328125 1913.451538085938 L2610.57861328125 1909.264038085938 L2614.53173828125 1909.264038085938 L2614.53173828125 1899.951538085938 L2619.95361328125 1899.951538085938 ZM2659.11962890625 1921.560913085938 Q2661.02587890625 1922.217163085938 2662.82275390625 1924.326538085938 Q2664.63525390625 1926.435913085938 2666.44775390625 1930.123413085938 L2672.46337890625 1942.076538085938 L2666.10400390625 1942.076538085938 L2660.51025390625 1930.857788085938 Q2658.33837890625 1926.467163085938 2656.29150390625 1925.029663085938 Q2654.26025390625 1923.592163085938 2650.74462890625 1923.592163085938 L2644.30712890625 1923.592163085938 L2644.30712890625 1942.076538085938 L2638.38525390625 1942.076538085938 L2638.38525390625 1898.342163085938 L2651.74462890625 1898.342163085938 Q2659.24462890625 1898.342163085938 2662.93212890625 1901.482788085938 Q2666.61962890625 1904.607788085938 2666.61962890625 1910.935913085938 Q2666.61962890625 1915.060913085938 2664.69775390625 1917.795288085938 Q2662.79150390625 1920.514038085938 2659.11962890625 1921.560913085938 ZM2644.30712890625 1903.201538085938 L2644.30712890625 1918.732788085938 L2651.74462890625 1918.732788085938 Q2656.02587890625 1918.732788085938 2658.19775390625 1916.748413085938 Q2660.38525390625 1914.764038085938 2660.38525390625 1910.935913085938 Q2660.38525390625 1907.092163085938 2658.19775390625 1905.154663085938 Q2656.02587890625 1903.201538085938 2651.74462890625 1903.201538085938 L2644.30712890625 1903.201538085938 ZM2680.07470703125 1898.342163085938 L2688.04345703125 1898.342163085938 L2707.43408203125 1934.920288085938 L2707.43408203125 1898.342163085938 L2713.18408203125 1898.342163085938 L2713.18408203125 1942.076538085938 L2705.21533203125 1942.076538085938 L2685.80908203125 1905.482788085938 L2685.80908203125 1942.076538085938 L2680.07470703125 1942.076538085938 L2680.07470703125 1898.342163085938 ZM2739.58251953125 1904.170288085938 L2731.55126953125 1925.935913085938 L2747.62939453125 1925.935913085938 L2739.58251953125 1904.170288085938 ZM2736.23876953125 1898.342163085938 L2742.94189453125 1898.342163085938 L2759.61376953125 1942.076538085938 L2753.45751953125 1942.076538085938 L2749.47314453125 1930.857788085938 L2729.75439453125 1930.857788085938 L2725.77001953125 1942.076538085938 L2719.53564453125 1942.076538085938 L2736.23876953125 1898.342163085938 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="210.211624145508" y="1274.77734375" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="121.130859375" height="47.578125" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M211.711624145508 1276.27734375 L219.680374145508 1276.27734375 L239.070999145508 1312.85546875 L239.070999145508 1276.27734375 L244.820999145508 1276.27734375 L244.820999145508 1320.01171875 L236.852249145508 1320.01171875 L217.445999145508 1283.41796875 L217.445999145508 1320.01171875 L211.711624145508 1320.01171875 L211.711624145508 1276.27734375 ZM262.516296386719 1281.13671875 L262.516296386719 1315.15234375 L269.656921386719 1315.15234375 Q278.719421386719 1315.15234375 282.922546386719 1311.05859375 Q287.125671386719 1306.94921875 287.125671386719 1298.08984375 Q287.125671386719 1289.30859375 282.922546386719 1285.23046875 Q278.719421386719 1281.13671875 269.656921386719 1281.13671875 L262.516296386719 1281.13671875 ZM256.594421386719 1276.27734375 L268.750671386719 1276.27734375 Q281.469421386719 1276.27734375 287.406921386719 1281.55859375 Q293.360046386719 1286.83984375 293.360046386719 1298.08984375 Q293.360046386719 1309.40234375 287.375671386719 1314.71484375 Q281.406921386719 1320.01171875 268.750671386719 1320.01171875 L256.594421386719 1320.01171875 L256.594421386719 1276.27734375 ZM303.373718261719 1276.27734375 L326.608093261719 1276.27734375 L326.608093261719 1281.24609375 L308.795593261719 1281.24609375 L308.795593261719 1291.98046875 Q310.092468261719 1291.52734375 311.373718261719 1291.30859375 Q312.670593261719 1291.08984375 313.951843261719 1291.08984375 Q321.279968261719 1291.08984375 325.561218261719 1295.10546875 Q329.842468261719 1299.12109375 329.842468261719 1305.98046875 Q329.842468261719 1313.04296875 325.436218261719 1316.94921875 Q321.045593261719 1320.85546875 313.045593261719 1320.85546875 Q310.295593261719 1320.85546875 307.436218261719 1320.38671875 Q304.576843261719 1319.91796875 301.529968261719 1318.98046875 L301.529968261719 1313.04296875 Q304.170593261719 1314.48046875 306.983093261719 1315.18359375 Q309.795593261719 1315.88671875 312.936218261719 1315.88671875 Q317.998718261719 1315.88671875 320.951843261719 1313.21484375 Q323.920593261719 1310.54296875 323.920593261719 1305.98046875 Q323.920593261719 1301.40234375 320.951843261719 1298.74609375 Q317.998718261719 1296.07421875 312.936218261719 1296.07421875 Q310.561218261719 1296.07421875 308.201843261719 1296.60546875 Q305.842468261719 1297.13671875 303.373718261719 1298.24609375 L303.373718261719 1276.27734375 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1485.14599609375" y="2674.689697265625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="150.486328125" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M1506.69287109375 2682.814697265625 L1498.66162109375 2704.580322265625 L1514.73974609375 2704.580322265625 L1506.69287109375 2682.814697265625 ZM1503.34912109375 2676.986572265625 L1510.05224609375 2676.986572265625 L1526.72412109375 2720.720947265625 L1520.56787109375 2720.720947265625 L1516.58349609375 2709.502197265625 L1496.86474609375 2709.502197265625 L1492.88037109375 2720.720947265625 L1486.64599609375 2720.720947265625 L1503.34912109375 2676.986572265625 ZM1527.05029296875 2676.986572265625 L1564.05029296875 2676.986572265625 L1564.05029296875 2681.955322265625 L1548.51904296875 2681.955322265625 L1548.51904296875 2720.720947265625 L1542.58154296875 2720.720947265625 L1542.58154296875 2681.955322265625 L1527.05029296875 2681.955322265625 L1527.05029296875 2676.986572265625 ZM1575.68505859375 2681.845947265625 L1575.68505859375 2698.283447265625 L1583.12255859375 2698.283447265625 Q1587.24755859375 2698.283447265625 1589.49755859375 2696.142822265625 Q1591.76318359375 2694.002197265625 1591.76318359375 2690.049072265625 Q1591.76318359375 2686.127197265625 1589.49755859375 2683.986572265625 Q1587.24755859375 2681.845947265625 1583.12255859375 2681.845947265625 L1575.68505859375 2681.845947265625 ZM1569.76318359375 2676.986572265625 L1583.12255859375 2676.986572265625 Q1590.48193359375 2676.986572265625 1594.23193359375 2680.314697265625 Q1597.99755859375 2683.627197265625 1597.99755859375 2690.049072265625 Q1597.99755859375 2696.517822265625 1594.23193359375 2699.830322265625 Q1590.48193359375 2703.142822265625 1583.12255859375 2703.142822265625 L1575.68505859375 2703.142822265625 L1575.68505859375 2720.720947265625 L1569.76318359375 2720.720947265625 L1569.76318359375 2676.986572265625 ZM1619.13232421875 2699.955322265625 Q1614.91357421875 2699.955322265625 1612.49169921875 2702.205322265625 Q1610.06982421875 2704.455322265625 1610.06982421875 2708.408447265625 Q1610.06982421875 2712.377197265625 1612.49169921875 2714.627197265625 Q1614.91357421875 2716.877197265625 1619.13232421875 2716.877197265625 Q1623.35107421875 2716.877197265625 1625.77294921875 2714.611572265625 Q1628.21044921875 2712.345947265625 1628.21044921875 2708.408447265625 Q1628.21044921875 2704.455322265625 1625.78857421875 2702.205322265625 Q1623.38232421875 2699.955322265625 1619.13232421875 2699.955322265625 ZM1613.21044921875 2697.424072265625 Q1609.39794921875 2696.486572265625 1607.27294921875 2693.892822265625 Q1605.14794921875 2691.283447265625 1605.14794921875 2687.533447265625 Q1605.14794921875 2682.283447265625 1608.88232421875 2679.236572265625 Q1612.61669921875 2676.189697265625 1619.13232421875 2676.189697265625 Q1625.66357421875 2676.189697265625 1629.38232421875 2679.236572265625 Q1633.10107421875 2682.283447265625 1633.10107421875 2687.533447265625 Q1633.10107421875 2691.283447265625 1630.97607421875 2693.892822265625 Q1628.85107421875 2696.486572265625 1625.06982421875 2697.424072265625 Q1629.35107421875 2698.424072265625 1631.74169921875 2701.330322265625 Q1634.13232421875 2704.220947265625 1634.13232421875 2708.408447265625 Q1634.13232421875 2714.767822265625 1630.24169921875 2718.174072265625 Q1626.36669921875 2721.564697265625 1619.13232421875 2721.564697265625 Q1611.89794921875 2721.564697265625 1608.00732421875 2718.174072265625 Q1604.13232421875 2714.767822265625 1604.13232421875 2708.408447265625 Q1604.13232421875 2704.220947265625 1606.52294921875 2701.330322265625 Q1608.92919921875 2698.424072265625 1613.21044921875 2697.424072265625 ZM1611.03857421875 2688.080322265625 Q1611.03857421875 2691.486572265625 1613.16357421875 2693.392822265625 Q1615.28857421875 2695.283447265625 1619.13232421875 2695.283447265625 Q1622.92919921875 2695.283447265625 1625.08544921875 2693.392822265625 Q1627.24169921875 2691.486572265625 1627.24169921875 2688.080322265625 Q1627.24169921875 2684.689697265625 1625.08544921875 2682.783447265625 Q1622.92919921875 2680.877197265625 1619.13232421875 2680.877197265625 Q1615.28857421875 2680.877197265625 1613.16357421875 2682.783447265625 Q1611.03857421875 2684.689697265625 1611.03857421875 2688.080322265625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2513.939453125" y="2087.486083984375" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2524.814453125 2090.595458984375 L2524.814453125 2099.907958984375 L2535.923828125 2099.907958984375 L2535.923828125 2104.095458984375 L2524.814453125 2104.095458984375 L2524.814453125 2121.907958984375 Q2524.814453125 2125.923583984375 2525.908203125 2127.064208984375 Q2527.017578125 2128.204833984375 2530.376953125 2128.204833984375 L2535.923828125 2128.204833984375 L2535.923828125 2132.720458984375 L2530.376953125 2132.720458984375 Q2524.142578125 2132.720458984375 2521.767578125 2130.392333984375 Q2519.392578125 2128.064208984375 2519.392578125 2121.907958984375 L2519.392578125 2104.095458984375 L2515.439453125 2104.095458984375 L2515.439453125 2099.907958984375 L2519.392578125 2099.907958984375 L2519.392578125 2090.595458984375 L2524.814453125 2090.595458984375 ZM2563.98046875 2112.204833984375 Q2565.88671875 2112.861083984375 2567.68359375 2114.970458984375 Q2569.49609375 2117.079833984375 2571.30859375 2120.767333984375 L2577.32421875 2132.720458984375 L2570.96484375 2132.720458984375 L2565.37109375 2121.501708984375 Q2563.19921875 2117.111083984375 2561.15234375 2115.673583984375 Q2559.12109375 2114.236083984375 2555.60546875 2114.236083984375 L2549.16796875 2114.236083984375 L2549.16796875 2132.720458984375 L2543.24609375 2132.720458984375 L2543.24609375 2088.986083984375 L2556.60546875 2088.986083984375 Q2564.10546875 2088.986083984375 2567.79296875 2092.126708984375 Q2571.48046875 2095.251708984375 2571.48046875 2101.579833984375 Q2571.48046875 2105.704833984375 2569.55859375 2108.439208984375 Q2567.65234375 2111.157958984375 2563.98046875 2112.204833984375 ZM2549.16796875 2093.845458984375 L2549.16796875 2109.376708984375 L2556.60546875 2109.376708984375 Q2560.88671875 2109.376708984375 2563.05859375 2107.392333984375 Q2565.24609375 2105.407958984375 2565.24609375 2101.579833984375 Q2565.24609375 2097.736083984375 2563.05859375 2095.798583984375 Q2560.88671875 2093.845458984375 2556.60546875 2093.845458984375 L2549.16796875 2093.845458984375 ZM2584.935546875 2088.986083984375 L2592.904296875 2088.986083984375 L2612.294921875 2125.564208984375 L2612.294921875 2088.986083984375 L2618.044921875 2088.986083984375 L2618.044921875 2132.720458984375 L2610.076171875 2132.720458984375 L2590.669921875 2096.126708984375 L2590.669921875 2132.720458984375 L2584.935546875 2132.720458984375 L2584.935546875 2088.986083984375 ZM2644.443359375 2094.814208984375 L2636.412109375 2116.579833984375 L2652.490234375 2116.579833984375 L2644.443359375 2094.814208984375 ZM2641.099609375 2088.986083984375 L2647.802734375 2088.986083984375 L2664.474609375 2132.720458984375 L2658.318359375 2132.720458984375 L2654.333984375 2121.501708984375 L2634.615234375 2121.501708984375 L2630.630859375 2132.720458984375 L2624.396484375 2132.720458984375 L2641.099609375 2088.986083984375 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1586.355102539062" y="301.276916503906" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="572.08984375" height="49.4375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(153,0,153)" d="M1588.698852539062 343.386291503906 L1598.370727539062 343.386291503906 L1598.370727539062 310.026916503906 L1587.855102539062 312.136291503906 L1587.855102539062 306.745666503906 L1598.308227539062 304.636291503906 L1604.230102539062 304.636291503906 L1604.230102539062 343.386291503906 L1613.901977539062 343.386291503906 L1613.901977539062 348.370666503906 L1588.698852539062 348.370666503906 L1588.698852539062 343.386291503906 ZM1630.950805664062 343.386291503906 L1651.607055664062 343.386291503906 L1651.607055664062 348.370666503906 L1623.825805664062 348.370666503906 L1623.825805664062 343.386291503906 Q1627.200805664062 339.901916503906 1633.013305664062 334.026916503906 Q1638.825805664062 328.151916503906 1640.325805664062 326.448791503906 Q1643.169555664062 323.261291503906 1644.294555664062 321.058166503906 Q1645.419555664062 318.839416503906 1645.419555664062 316.698791503906 Q1645.419555664062 313.214416503906 1642.966430664062 311.026916503906 Q1640.528930664062 308.823791503906 1636.607055664062 308.823791503906 Q1633.825805664062 308.823791503906 1630.732055664062 309.792541503906 Q1627.638305664062 310.745666503906 1624.122680664062 312.714416503906 L1624.122680664062 306.745666503906 Q1627.700805664062 305.308166503906 1630.794555664062 304.573791503906 Q1633.903930664062 303.839416503906 1636.482055664062 303.839416503906 Q1643.278930664062 303.839416503906 1647.325805664062 307.245666503906 Q1651.372680664062 310.636291503906 1651.372680664062 316.323791503906 Q1651.372680664062 319.011291503906 1650.357055664062 321.433166503906 Q1649.341430664062 323.855041503906 1646.685180664062 327.136291503906 Q1645.950805664062 327.980041503906 1642.013305664062 332.042541503906 Q1638.091430664062 336.089416503906 1630.950805664062 343.386291503906 ZM1689.718383789062 306.058166503906 L1689.718383789062 311.839416503906 Q1686.343383789062 310.230041503906 1683.359008789062 309.433166503906 Q1680.374633789062 308.636291503906 1677.593383789062 308.636291503906 Q1672.749633789062 308.636291503906 1670.124633789062 310.511291503906 Q1667.515258789062 312.386291503906 1667.515258789062 315.855041503906 Q1667.515258789062 318.745666503906 1669.249633789062 320.230041503906 Q1670.999633789062 321.714416503906 1675.859008789062 322.620666503906 L1679.437133789062 323.355041503906 Q1686.062133789062 324.605041503906 1689.202758789062 327.792541503906 Q1692.359008789062 330.964416503906 1692.359008789062 336.292541503906 Q1692.359008789062 342.651916503906 1688.093383789062 345.933166503906 Q1683.827758789062 349.214416503906 1675.593383789062 349.214416503906 Q1672.499633789062 349.214416503906 1668.984008789062 348.511291503906 Q1665.484008789062 347.808166503906 1661.734008789062 346.433166503906 L1661.734008789062 340.339416503906 Q1665.343383789062 342.370666503906 1668.796508789062 343.401916503906 Q1672.265258789062 344.417541503906 1675.593383789062 344.417541503906 Q1680.671508789062 344.417541503906 1683.421508789062 342.433166503906 Q1686.171508789062 340.433166503906 1686.171508789062 336.745666503906 Q1686.171508789062 333.511291503906 1684.187133789062 331.698791503906 Q1682.218383789062 329.886291503906 1677.702758789062 328.980041503906 L1674.109008789062 328.276916503906 Q1667.484008789062 326.948791503906 1664.515258789062 324.136291503906 Q1661.562133789062 321.323791503906 1661.562133789062 316.323791503906 Q1661.562133789062 310.511291503906 1665.640258789062 307.183166503906 Q1669.734008789062 303.839416503906 1676.921508789062 303.839416503906 Q1679.999633789062 303.839416503906 1683.187133789062 304.401916503906 Q1686.374633789062 304.948791503906 1689.718383789062 306.058166503906 ZM1739.439086914062 320.589416503906 Q1738.532836914062 320.073791503906 1737.454711914062 319.823791503906 Q1736.392211914062 319.573791503906 1735.095336914062 319.573791503906 Q1730.532836914062 319.573791503906 1728.079711914062 322.542541503906 Q1725.642211914062 325.511291503906 1725.642211914062 331.089416503906 L1725.642211914062 348.370666503906 L1720.220336914062 348.370666503906 L1720.220336914062 315.558166503906 L1725.642211914062 315.558166503906 L1725.642211914062 320.651916503906 Q1727.329711914062 317.667541503906 1730.048461914062 316.214416503906 Q1732.782836914062 314.761291503906 1736.689086914062 314.761291503906 Q1737.235961914062 314.761291503906 1737.907836914062 314.839416503906 Q1738.579711914062 314.917541503906 1739.407836914062 315.058166503906 L1739.439086914062 320.589416503906 ZM1745.091430664062 315.558166503906 L1750.482055664062 315.558166503906 L1750.482055664062 348.370666503906 L1745.091430664062 348.370666503906 L1745.091430664062 315.558166503906 ZM1745.091430664062 302.776916503906 L1750.482055664062 302.776916503906 L1750.482055664062 309.605041503906 L1745.091430664062 309.605041503906 L1745.091430664062 302.776916503906 ZM1785.308227539062 331.995666503906 Q1785.308227539062 326.042541503906 1782.855102539062 322.667541503906 Q1780.417602539062 319.276916503906 1776.151977539062 319.276916503906 Q1771.870727539062 319.276916503906 1769.417602539062 322.667541503906 Q1766.980102539062 326.042541503906 1766.980102539062 331.995666503906 Q1766.980102539062 337.933166503906 1769.417602539062 341.323791503906 Q1771.870727539062 344.714416503906 1776.151977539062 344.714416503906 Q1780.417602539062 344.714416503906 1782.855102539062 341.323791503906 Q1785.308227539062 337.933166503906 1785.308227539062 331.995666503906 ZM1766.980102539062 320.542541503906 Q1768.667602539062 317.605041503906 1771.261352539062 316.183166503906 Q1773.855102539062 314.761291503906 1777.464477539062 314.761291503906 Q1783.433227539062 314.761291503906 1787.167602539062 319.511291503906 Q1790.917602539062 324.261291503906 1790.917602539062 331.995666503906 Q1790.917602539062 339.730041503906 1787.167602539062 344.480041503906 Q1783.433227539062 349.214416503906 1777.464477539062 349.214416503906 Q1773.855102539062 349.214416503906 1771.261352539062 347.792541503906 Q1768.667602539062 346.370666503906 1766.980102539062 343.448791503906 L1766.980102539062 348.370666503906 L1761.558227539062 348.370666503906 L1761.558227539062 302.776916503906 L1766.980102539062 302.776916503906 L1766.980102539062 320.542541503906 ZM1812.566040039062 319.339416503906 Q1808.222290039062 319.339416503906 1805.706665039062 322.730041503906 Q1803.191040039062 326.105041503906 1803.191040039062 331.995666503906 Q1803.191040039062 337.886291503906 1805.691040039062 341.276916503906 Q1808.191040039062 344.651916503906 1812.566040039062 344.651916503906 Q1816.862915039062 344.651916503906 1819.378540039062 341.261291503906 Q1821.909790039062 337.855041503906 1821.909790039062 331.995666503906 Q1821.909790039062 326.167541503906 1819.378540039062 322.761291503906 Q1816.862915039062 319.339416503906 1812.566040039062 319.339416503906 ZM1812.566040039062 314.761291503906 Q1819.597290039062 314.761291503906 1823.597290039062 319.339416503906 Q1827.612915039062 323.901916503906 1827.612915039062 331.995666503906 Q1827.612915039062 340.042541503906 1823.597290039062 344.636291503906 Q1819.597290039062 349.214416503906 1812.566040039062 349.214416503906 Q1805.503540039062 349.214416503906 1801.503540039062 344.636291503906 Q1797.503540039062 340.042541503906 1797.503540039062 331.995666503906 Q1797.503540039062 323.901916503906 1801.503540039062 319.339416503906 Q1805.503540039062 314.761291503906 1812.566040039062 314.761291503906 ZM1857.478149414062 316.526916503906 L1857.478149414062 321.620666503906 Q1855.181274414062 320.448791503906 1852.712524414062 319.870666503906 Q1850.259399414062 319.276916503906 1847.634399414062 319.276916503906 Q1843.618774414062 319.276916503906 1841.603149414062 320.511291503906 Q1839.603149414062 321.745666503906 1839.603149414062 324.198791503906 Q1839.603149414062 326.073791503906 1841.040649414062 327.151916503906 Q1842.478149414062 328.214416503906 1846.806274414062 329.183166503906 L1848.650024414062 329.589416503906 Q1854.400024414062 330.823791503906 1856.806274414062 333.073791503906 Q1859.228149414062 335.308166503906 1859.228149414062 339.323791503906 Q1859.228149414062 343.886291503906 1855.603149414062 346.558166503906 Q1851.993774414062 349.214416503906 1845.665649414062 349.214416503906 Q1843.025024414062 349.214416503906 1840.165649414062 348.698791503906 Q1837.321899414062 348.198791503906 1834.150024414062 347.167541503906 L1834.150024414062 341.605041503906 Q1837.134399414062 343.151916503906 1840.040649414062 343.933166503906 Q1842.946899414062 344.714416503906 1845.790649414062 344.714416503906 Q1849.587524414062 344.714416503906 1851.634399414062 343.417541503906 Q1853.696899414062 342.105041503906 1853.696899414062 339.730041503906 Q1853.696899414062 337.526916503906 1852.212524414062 336.355041503906 Q1850.728149414062 335.183166503906 1845.728149414062 334.105041503906 L1843.853149414062 333.667541503906 Q1838.837524414062 332.605041503906 1836.603149414062 330.433166503906 Q1834.384399414062 328.245666503906 1834.384399414062 324.433166503906 Q1834.384399414062 319.808166503906 1837.665649414062 317.292541503906 Q1840.946899414062 314.761291503906 1846.978149414062 314.761291503906 Q1849.978149414062 314.761291503906 1852.603149414062 315.214416503906 Q1855.243774414062 315.651916503906 1857.478149414062 316.526916503906 ZM1880.534790039062 319.339416503906 Q1876.191040039062 319.339416503906 1873.675415039062 322.730041503906 Q1871.159790039062 326.105041503906 1871.159790039062 331.995666503906 Q1871.159790039062 337.886291503906 1873.659790039062 341.276916503906 Q1876.159790039062 344.651916503906 1880.534790039062 344.651916503906 Q1884.831665039062 344.651916503906 1887.347290039062 341.261291503906 Q1889.878540039062 337.855041503906 1889.878540039062 331.995666503906 Q1889.878540039062 326.167541503906 1887.347290039062 322.761291503906 Q1884.831665039062 319.339416503906 1880.534790039062 319.339416503906 ZM1880.534790039062 314.761291503906 Q1887.566040039062 314.761291503906 1891.566040039062 319.339416503906 Q1895.581665039062 323.901916503906 1895.581665039062 331.995666503906 Q1895.581665039062 340.042541503906 1891.566040039062 344.636291503906 Q1887.566040039062 349.214416503906 1880.534790039062 349.214416503906 Q1873.472290039062 349.214416503906 1869.472290039062 344.636291503906 Q1865.472290039062 340.042541503906 1865.472290039062 331.995666503906 Q1865.472290039062 323.901916503906 1869.472290039062 319.339416503906 Q1873.472290039062 314.761291503906 1880.534790039062 314.761291503906 ZM1930.071899414062 321.855041503906 Q1932.087524414062 318.230041503906 1934.900024414062 316.495666503906 Q1937.712524414062 314.761291503906 1941.525024414062 314.761291503906 Q1946.650024414062 314.761291503906 1949.431274414062 318.355041503906 Q1952.212524414062 321.948791503906 1952.212524414062 328.558166503906 L1952.212524414062 348.370666503906 L1946.806274414062 348.370666503906 L1946.806274414062 328.745666503906 Q1946.806274414062 324.026916503906 1945.134399414062 321.745666503906 Q1943.462524414062 319.448791503906 1940.025024414062 319.448791503906 Q1935.837524414062 319.448791503906 1933.400024414062 322.245666503906 Q1930.978149414062 325.026916503906 1930.978149414062 329.823791503906 L1930.978149414062 348.370666503906 L1925.556274414062 348.370666503906 L1925.556274414062 328.745666503906 Q1925.556274414062 323.995666503906 1923.884399414062 321.730041503906 Q1922.212524414062 319.448791503906 1918.728149414062 319.448791503906 Q1914.603149414062 319.448791503906 1912.165649414062 322.245666503906 Q1909.743774414062 325.042541503906 1909.743774414062 329.823791503906 L1909.743774414062 348.370666503906 L1904.321899414062 348.370666503906 L1904.321899414062 315.558166503906 L1909.743774414062 315.558166503906 L1909.743774414062 320.651916503906 Q1911.587524414062 317.636291503906 1914.165649414062 316.198791503906 Q1916.743774414062 314.761291503906 1920.290649414062 314.761291503906 Q1923.853149414062 314.761291503906 1926.353149414062 316.589416503906 Q1928.868774414062 318.401916503906 1930.071899414062 321.855041503906 ZM1977.878540039062 331.870666503906 Q1971.347290039062 331.870666503906 1968.831665039062 333.370666503906 Q1966.316040039062 334.870666503906 1966.316040039062 338.464416503906 Q1966.316040039062 341.339416503906 1968.206665039062 343.026916503906 Q1970.097290039062 344.714416503906 1973.347290039062 344.714416503906 Q1977.831665039062 344.714416503906 1980.534790039062 341.542541503906 Q1983.237915039062 338.355041503906 1983.237915039062 333.073791503906 L1983.237915039062 331.870666503906 L1977.878540039062 331.870666503906 ZM1988.628540039062 329.651916503906 L1988.628540039062 348.370666503906 L1983.237915039062 348.370666503906 L1983.237915039062 343.386291503906 Q1981.394165039062 346.370666503906 1978.644165039062 347.792541503906 Q1975.894165039062 349.214416503906 1971.909790039062 349.214416503906 Q1966.862915039062 349.214416503906 1963.894165039062 346.386291503906 Q1960.925415039062 343.558166503906 1960.925415039062 338.823791503906 Q1960.925415039062 333.276916503906 1964.628540039062 330.464416503906 Q1968.331665039062 327.651916503906 1975.691040039062 327.651916503906 L1983.237915039062 327.651916503906 L1983.237915039062 327.136291503906 Q1983.237915039062 323.401916503906 1980.784790039062 321.370666503906 Q1978.347290039062 319.339416503906 1973.925415039062 319.339416503906 Q1971.112915039062 319.339416503906 1968.441040039062 320.011291503906 Q1965.784790039062 320.683166503906 1963.316040039062 322.026916503906 L1963.316040039062 317.058166503906 Q1966.284790039062 315.901916503906 1969.066040039062 315.339416503906 Q1971.847290039062 314.761291503906 1974.487915039062 314.761291503906 Q1981.597290039062 314.761291503906 1985.112915039062 318.464416503906 Q1988.628540039062 322.151916503906 1988.628540039062 329.651916503906 ZM1999.739868164062 302.776916503906 L2005.130493164062 302.776916503906 L2005.130493164062 348.370666503906 L1999.739868164062 348.370666503906 L1999.739868164062 302.776916503906 ZM2056.45068359375 327.855041503906 Q2058.35693359375 328.511291503906 2060.15380859375 330.620666503906 Q2061.96630859375 332.730041503906 2063.77880859375 336.417541503906 L2069.79443359375 348.370666503906 L2063.43505859375 348.370666503906 L2057.84130859375 337.151916503906 Q2055.66943359375 332.761291503906 2053.62255859375 331.323791503906 Q2051.59130859375 329.886291503906 2048.07568359375 329.886291503906 L2041.638305664062 329.886291503906 L2041.638305664062 348.370666503906 L2035.716430664062 348.370666503906 L2035.716430664062 304.636291503906 L2049.07568359375 304.636291503906 Q2056.57568359375 304.636291503906 2060.26318359375 307.776916503906 Q2063.95068359375 310.901916503906 2063.95068359375 317.230041503906 Q2063.95068359375 321.355041503906 2062.02880859375 324.089416503906 Q2060.12255859375 326.808166503906 2056.45068359375 327.855041503906 ZM2041.638305664062 309.495666503906 L2041.638305664062 325.026916503906 L2049.07568359375 325.026916503906 Q2053.35693359375 325.026916503906 2055.52880859375 323.042541503906 Q2057.71630859375 321.058166503906 2057.71630859375 317.230041503906 Q2057.71630859375 313.386291503906 2055.52880859375 311.448791503906 Q2053.35693359375 309.495666503906 2049.07568359375 309.495666503906 L2041.638305664062 309.495666503906 ZM2077.40576171875 304.636291503906 L2085.37451171875 304.636291503906 L2104.76513671875 341.214416503906 L2104.76513671875 304.636291503906 L2110.51513671875 304.636291503906 L2110.51513671875 348.370666503906 L2102.54638671875 348.370666503906 L2083.14013671875 311.776916503906 L2083.14013671875 348.370666503906 L2077.40576171875 348.370666503906 L2077.40576171875 304.636291503906 ZM2136.91357421875 310.464416503906 L2128.88232421875 332.230041503906 L2144.96044921875 332.230041503906 L2136.91357421875 310.464416503906 ZM2133.56982421875 304.636291503906 L2140.27294921875 304.636291503906 L2156.94482421875 348.370666503906 L2150.78857421875 348.370666503906 L2146.80419921875 337.151916503906 L2127.08544921875 337.151916503906 L2123.10107421875 348.370666503906 L2116.86669921875 348.370666503906 L2133.56982421875 304.636291503906 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1045.343017578125" y="2616.474609375" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="163.224609375" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M1082.108642578125 2622.130859375 L1082.108642578125 2628.380859375 Q1079.124267578125 2625.583984375 1075.733642578125 2624.208984375 Q1072.358642578125 2622.833984375 1068.546142578125 2622.833984375 Q1061.046142578125 2622.833984375 1057.061767578125 2627.427734375 Q1053.077392578125 2632.005859375 1053.077392578125 2640.677734375 Q1053.077392578125 2649.318359375 1057.061767578125 2653.912109375 Q1061.046142578125 2658.490234375 1068.546142578125 2658.490234375 Q1072.358642578125 2658.490234375 1075.733642578125 2657.115234375 Q1079.124267578125 2655.740234375 1082.108642578125 2652.958984375 L1082.108642578125 2659.130859375 Q1078.999267578125 2661.240234375 1075.530517578125 2662.302734375 Q1072.061767578125 2663.349609375 1068.202392578125 2663.349609375 Q1058.264892578125 2663.349609375 1052.546142578125 2657.271484375 Q1046.843017578125 2651.193359375 1046.843017578125 2640.677734375 Q1046.843017578125 2630.130859375 1052.546142578125 2624.052734375 Q1058.264892578125 2617.974609375 1068.202392578125 2617.974609375 Q1072.124267578125 2617.974609375 1075.593017578125 2619.021484375 Q1079.061767578125 2620.052734375 1082.108642578125 2622.130859375 ZM1109.003173828125 2622.771484375 Q1102.565673828125 2622.771484375 1098.768798828125 2627.583984375 Q1094.971923828125 2632.380859375 1094.971923828125 2640.677734375 Q1094.971923828125 2648.943359375 1098.768798828125 2653.755859375 Q1102.565673828125 2658.552734375 1109.003173828125 2658.552734375 Q1115.456298828125 2658.552734375 1119.221923828125 2653.755859375 Q1122.987548828125 2648.943359375 1122.987548828125 2640.677734375 Q1122.987548828125 2632.380859375 1119.221923828125 2627.583984375 Q1115.456298828125 2622.771484375 1109.003173828125 2622.771484375 ZM1109.003173828125 2617.974609375 Q1118.206298828125 2617.974609375 1123.706298828125 2624.146484375 Q1129.221923828125 2630.302734375 1129.221923828125 2640.677734375 Q1129.221923828125 2651.021484375 1123.706298828125 2657.193359375 Q1118.206298828125 2663.349609375 1109.003173828125 2663.349609375 Q1099.784423828125 2663.349609375 1094.253173828125 2657.208984375 Q1088.737548828125 2651.052734375 1088.737548828125 2640.677734375 Q1088.737548828125 2630.302734375 1094.253173828125 2624.146484375 Q1099.784423828125 2617.974609375 1109.003173828125 2617.974609375 ZM1136.370361328125 2618.771484375 L1142.729736328125 2618.771484375 L1153.589111328125 2635.021484375 L1164.526611328125 2618.771484375 L1170.885986328125 2618.771484375 L1156.823486328125 2639.771484375 L1171.823486328125 2662.505859375 L1165.464111328125 2662.505859375 L1153.151611328125 2643.896484375 L1140.760986328125 2662.505859375 L1134.370361328125 2662.505859375 L1149.995361328125 2639.162109375 L1136.370361328125 2618.771484375 ZM1198.036376953125 2638.927734375 Q1202.286376953125 2639.833984375 1204.677001953125 2642.708984375 Q1207.067626953125 2645.568359375 1207.067626953125 2649.787109375 Q1207.067626953125 2656.271484375 1202.614501953125 2659.818359375 Q1198.161376953125 2663.349609375 1189.958251953125 2663.349609375 Q1187.192626953125 2663.349609375 1184.270751953125 2662.802734375 Q1181.364501953125 2662.271484375 1178.270751953125 2661.193359375 L1178.270751953125 2655.474609375 Q1180.723876953125 2656.912109375 1183.645751953125 2657.646484375 Q1186.583251953125 2658.380859375 1189.770751953125 2658.380859375 Q1195.348876953125 2658.380859375 1198.255126953125 2656.177734375 Q1201.177001953125 2653.974609375 1201.177001953125 2649.787109375 Q1201.177001953125 2645.927734375 1198.458251953125 2643.740234375 Q1195.755126953125 2641.552734375 1190.927001953125 2641.552734375 L1185.817626953125 2641.552734375 L1185.817626953125 2636.693359375 L1191.161376953125 2636.693359375 Q1195.520751953125 2636.693359375 1197.833251953125 2634.958984375 Q1200.145751953125 2633.208984375 1200.145751953125 2629.927734375 Q1200.145751953125 2626.552734375 1197.755126953125 2624.755859375 Q1195.380126953125 2622.958984375 1190.927001953125 2622.958984375 Q1188.489501953125 2622.958984375 1185.708251953125 2623.490234375 Q1182.927001953125 2624.005859375 1179.583251953125 2625.115234375 L1179.583251953125 2619.849609375 Q1182.958251953125 2618.912109375 1185.895751953125 2618.443359375 Q1188.833251953125 2617.974609375 1191.442626953125 2617.974609375 Q1198.192626953125 2617.974609375 1202.114501953125 2621.037109375 Q1206.036376953125 2624.099609375 1206.036376953125 2629.318359375 Q1206.036376953125 2632.943359375 1203.958251953125 2635.458984375 Q1201.880126953125 2637.958984375 1198.036376953125 2638.927734375 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="360.763275146484" y="2071.3173828125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="123.005859375" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M362.263275146484 2072.8173828125 L370.232025146484 2072.8173828125 L389.622650146484 2109.3955078125 L389.622650146484 2072.8173828125 L395.372650146484 2072.8173828125 L395.372650146484 2116.5517578125 L387.403900146484 2116.5517578125 L367.997650146484 2079.9580078125 L367.997650146484 2116.5517578125 L362.263275146484 2116.5517578125 L362.263275146484 2072.8173828125 ZM413.067962646484 2077.6767578125 L413.067962646484 2111.6923828125 L420.208587646484 2111.6923828125 Q429.271087646484 2111.6923828125 433.474212646484 2107.5986328125 Q437.677337646484 2103.4892578125 437.677337646484 2094.6298828125 Q437.677337646484 2085.8486328125 433.474212646484 2081.7705078125 Q429.271087646484 2077.6767578125 420.208587646484 2077.6767578125 L413.067962646484 2077.6767578125 ZM407.146087646484 2072.8173828125 L419.302337646484 2072.8173828125 Q432.021087646484 2072.8173828125 437.958587646484 2078.0986328125 Q443.911712646484 2083.3798828125 443.911712646484 2094.6298828125 Q443.911712646484 2105.9423828125 437.927337646484 2111.2548828125 Q431.958587646484 2116.5517578125 419.302337646484 2116.5517578125 L407.146087646484 2116.5517578125 L407.146087646484 2072.8173828125 ZM470.128509521484 2077.9736328125 L455.191009521484 2101.3173828125 L470.128509521484 2101.3173828125 L470.128509521484 2077.9736328125 ZM468.581634521484 2072.8173828125 L476.019134521484 2072.8173828125 L476.019134521484 2101.3173828125 L482.269134521484 2101.3173828125 L482.269134521484 2106.2392578125 L476.019134521484 2106.2392578125 L476.019134521484 2116.5517578125 L470.128509521484 2116.5517578125 L470.128509521484 2106.2392578125 L450.394134521484 2106.2392578125 L450.394134521484 2100.5205078125 L468.581634521484 2072.8173828125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1821.66455078125" y="2608.852783203125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="162.021484375" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M1858.43017578125 2614.509033203125 L1858.43017578125 2620.759033203125 Q1855.44580078125 2617.962158203125 1852.05517578125 2616.587158203125 Q1848.68017578125 2615.212158203125 1844.86767578125 2615.212158203125 Q1837.36767578125 2615.212158203125 1833.38330078125 2619.805908203125 Q1829.39892578125 2624.384033203125 1829.39892578125 2633.055908203125 Q1829.39892578125 2641.696533203125 1833.38330078125 2646.290283203125 Q1837.36767578125 2650.868408203125 1844.86767578125 2650.868408203125 Q1848.68017578125 2650.868408203125 1852.05517578125 2649.493408203125 Q1855.44580078125 2648.118408203125 1858.43017578125 2645.337158203125 L1858.43017578125 2651.509033203125 Q1855.32080078125 2653.618408203125 1851.85205078125 2654.680908203125 Q1848.38330078125 2655.727783203125 1844.52392578125 2655.727783203125 Q1834.58642578125 2655.727783203125 1828.86767578125 2649.649658203125 Q1823.16455078125 2643.571533203125 1823.16455078125 2633.055908203125 Q1823.16455078125 2622.509033203125 1828.86767578125 2616.430908203125 Q1834.58642578125 2610.352783203125 1844.52392578125 2610.352783203125 Q1848.44580078125 2610.352783203125 1851.91455078125 2611.399658203125 Q1855.38330078125 2612.430908203125 1858.43017578125 2614.509033203125 ZM1885.32470703125 2615.149658203125 Q1878.88720703125 2615.149658203125 1875.09033203125 2619.962158203125 Q1871.29345703125 2624.759033203125 1871.29345703125 2633.055908203125 Q1871.29345703125 2641.321533203125 1875.09033203125 2646.134033203125 Q1878.88720703125 2650.930908203125 1885.32470703125 2650.930908203125 Q1891.77783203125 2650.930908203125 1895.54345703125 2646.134033203125 Q1899.30908203125 2641.321533203125 1899.30908203125 2633.055908203125 Q1899.30908203125 2624.759033203125 1895.54345703125 2619.962158203125 Q1891.77783203125 2615.149658203125 1885.32470703125 2615.149658203125 ZM1885.32470703125 2610.352783203125 Q1894.52783203125 2610.352783203125 1900.02783203125 2616.524658203125 Q1905.54345703125 2622.680908203125 1905.54345703125 2633.055908203125 Q1905.54345703125 2643.399658203125 1900.02783203125 2649.571533203125 Q1894.52783203125 2655.727783203125 1885.32470703125 2655.727783203125 Q1876.10595703125 2655.727783203125 1870.57470703125 2649.587158203125 Q1865.05908203125 2643.430908203125 1865.05908203125 2633.055908203125 Q1865.05908203125 2622.680908203125 1870.57470703125 2616.524658203125 Q1876.10595703125 2610.352783203125 1885.32470703125 2610.352783203125 ZM1912.69189453125 2611.149658203125 L1919.05126953125 2611.149658203125 L1929.91064453125 2627.399658203125 L1940.84814453125 2611.149658203125 L1947.20751953125 2611.149658203125 L1933.14501953125 2632.149658203125 L1948.14501953125 2654.884033203125 L1941.78564453125 2654.884033203125 L1929.47314453125 2636.274658203125 L1917.08251953125 2654.884033203125 L1910.69189453125 2654.884033203125 L1926.31689453125 2631.540283203125 L1912.69189453125 2611.149658203125 ZM1961.52978515625 2649.899658203125 L1982.18603515625 2649.899658203125 L1982.18603515625 2654.884033203125 L1954.40478515625 2654.884033203125 L1954.40478515625 2649.899658203125 Q1957.77978515625 2646.415283203125 1963.59228515625 2640.540283203125 Q1969.40478515625 2634.665283203125 1970.90478515625 2632.962158203125 Q1973.74853515625 2629.774658203125 1974.87353515625 2627.571533203125 Q1975.99853515625 2625.352783203125 1975.99853515625 2623.212158203125 Q1975.99853515625 2619.727783203125 1973.54541015625 2617.540283203125 Q1971.10791015625 2615.337158203125 1967.18603515625 2615.337158203125 Q1964.40478515625 2615.337158203125 1961.31103515625 2616.305908203125 Q1958.21728515625 2617.259033203125 1954.70166015625 2619.227783203125 L1954.70166015625 2613.259033203125 Q1958.27978515625 2611.821533203125 1961.37353515625 2611.087158203125 Q1964.48291015625 2610.352783203125 1967.06103515625 2610.352783203125 Q1973.85791015625 2610.352783203125 1977.90478515625 2613.759033203125 Q1981.95166015625 2617.149658203125 1981.95166015625 2622.837158203125 Q1981.95166015625 2625.524658203125 1980.93603515625 2627.946533203125 Q1979.92041015625 2630.368408203125 1977.26416015625 2633.649658203125 Q1976.52978515625 2634.493408203125 1972.59228515625 2638.555908203125 Q1968.67041015625 2642.602783203125 1961.52978515625 2649.899658203125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="822.696960449219" y="2529.861572265625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M833.571960449219 2532.970947265625 L833.571960449219 2542.283447265625 L844.681335449219 2542.283447265625 L844.681335449219 2546.470947265625 L833.571960449219 2546.470947265625 L833.571960449219 2564.283447265625 Q833.571960449219 2568.299072265625 834.665710449219 2569.439697265625 Q835.775085449219 2570.580322265625 839.134460449219 2570.580322265625 L844.681335449219 2570.580322265625 L844.681335449219 2575.095947265625 L839.134460449219 2575.095947265625 Q832.900085449219 2575.095947265625 830.525085449219 2572.767822265625 Q828.150085449219 2570.439697265625 828.150085449219 2564.283447265625 L828.150085449219 2546.470947265625 L824.196960449219 2546.470947265625 L824.196960449219 2542.283447265625 L828.150085449219 2542.283447265625 L828.150085449219 2532.970947265625 L833.571960449219 2532.970947265625 ZM872.737976074219 2554.580322265625 Q874.644226074219 2555.236572265625 876.441101074219 2557.345947265625 Q878.253601074219 2559.455322265625 880.066101074219 2563.142822265625 L886.081726074219 2575.095947265625 L879.722351074219 2575.095947265625 L874.128601074219 2563.877197265625 Q871.956726074219 2559.486572265625 869.909851074219 2558.049072265625 Q867.878601074219 2556.611572265625 864.362976074219 2556.611572265625 L857.925476074219 2556.611572265625 L857.925476074219 2575.095947265625 L852.003601074219 2575.095947265625 L852.003601074219 2531.361572265625 L865.362976074219 2531.361572265625 Q872.862976074219 2531.361572265625 876.550476074219 2534.502197265625 Q880.237976074219 2537.627197265625 880.237976074219 2543.955322265625 Q880.237976074219 2548.080322265625 878.316101074219 2550.814697265625 Q876.409851074219 2553.533447265625 872.737976074219 2554.580322265625 ZM857.925476074219 2536.220947265625 L857.925476074219 2551.752197265625 L865.362976074219 2551.752197265625 Q869.644226074219 2551.752197265625 871.816101074219 2549.767822265625 Q874.003601074219 2547.783447265625 874.003601074219 2543.955322265625 Q874.003601074219 2540.111572265625 871.816101074219 2538.174072265625 Q869.644226074219 2536.220947265625 865.362976074219 2536.220947265625 L857.925476074219 2536.220947265625 ZM893.693054199219 2531.361572265625 L901.661804199219 2531.361572265625 L921.052429199219 2567.939697265625 L921.052429199219 2531.361572265625 L926.802429199219 2531.361572265625 L926.802429199219 2575.095947265625 L918.833679199219 2575.095947265625 L899.427429199219 2538.502197265625 L899.427429199219 2575.095947265625 L893.693054199219 2575.095947265625 L893.693054199219 2531.361572265625 ZM953.200866699219 2537.189697265625 L945.169616699219 2558.955322265625 L961.247741699219 2558.955322265625 L953.200866699219 2537.189697265625 ZM949.857116699219 2531.361572265625 L956.560241699219 2531.361572265625 L973.232116699219 2575.095947265625 L967.075866699219 2575.095947265625 L963.091491699219 2563.877197265625 L943.372741699219 2563.877197265625 L939.388366699219 2575.095947265625 L933.153991699219 2575.095947265625 L949.857116699219 2531.361572265625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2543.6513671875" y="2036.50439453125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2554.5263671875 2039.61376953125 L2554.5263671875 2048.92626953125 L2565.6357421875 2048.92626953125 L2565.6357421875 2053.11376953125 L2554.5263671875 2053.11376953125 L2554.5263671875 2070.92626953125 Q2554.5263671875 2074.94189453125 2555.6201171875 2076.08251953125 Q2556.7294921875 2077.22314453125 2560.0888671875 2077.22314453125 L2565.6357421875 2077.22314453125 L2565.6357421875 2081.73876953125 L2560.0888671875 2081.73876953125 Q2553.8544921875 2081.73876953125 2551.4794921875 2079.41064453125 Q2549.1044921875 2077.08251953125 2549.1044921875 2070.92626953125 L2549.1044921875 2053.11376953125 L2545.1513671875 2053.11376953125 L2545.1513671875 2048.92626953125 L2549.1044921875 2048.92626953125 L2549.1044921875 2039.61376953125 L2554.5263671875 2039.61376953125 ZM2593.6923828125 2061.22314453125 Q2595.5986328125 2061.87939453125 2597.3955078125 2063.98876953125 Q2599.2080078125 2066.09814453125 2601.0205078125 2069.78564453125 L2607.0361328125 2081.73876953125 L2600.6767578125 2081.73876953125 L2595.0830078125 2070.52001953125 Q2592.9111328125 2066.12939453125 2590.8642578125 2064.69189453125 Q2588.8330078125 2063.25439453125 2585.3173828125 2063.25439453125 L2578.8798828125 2063.25439453125 L2578.8798828125 2081.73876953125 L2572.9580078125 2081.73876953125 L2572.9580078125 2038.00439453125 L2586.3173828125 2038.00439453125 Q2593.8173828125 2038.00439453125 2597.5048828125 2041.14501953125 Q2601.1923828125 2044.27001953125 2601.1923828125 2050.59814453125 Q2601.1923828125 2054.72314453125 2599.2705078125 2057.45751953125 Q2597.3642578125 2060.17626953125 2593.6923828125 2061.22314453125 ZM2578.8798828125 2042.86376953125 L2578.8798828125 2058.39501953125 L2586.3173828125 2058.39501953125 Q2590.5986328125 2058.39501953125 2592.7705078125 2056.41064453125 Q2594.9580078125 2054.42626953125 2594.9580078125 2050.59814453125 Q2594.9580078125 2046.75439453125 2592.7705078125 2044.81689453125 Q2590.5986328125 2042.86376953125 2586.3173828125 2042.86376953125 L2578.8798828125 2042.86376953125 ZM2614.6474609375 2038.00439453125 L2622.6162109375 2038.00439453125 L2642.0068359375 2074.58251953125 L2642.0068359375 2038.00439453125 L2647.7568359375 2038.00439453125 L2647.7568359375 2081.73876953125 L2639.7880859375 2081.73876953125 L2620.3818359375 2045.14501953125 L2620.3818359375 2081.73876953125 L2614.6474609375 2081.73876953125 L2614.6474609375 2038.00439453125 ZM2674.1552734375 2043.83251953125 L2666.1240234375 2065.59814453125 L2682.2021484375 2065.59814453125 L2674.1552734375 2043.83251953125 ZM2670.8115234375 2038.00439453125 L2677.5146484375 2038.00439453125 L2694.1865234375 2081.73876953125 L2688.0302734375 2081.73876953125 L2684.0458984375 2070.52001953125 L2664.3271484375 2070.52001953125 L2660.3427734375 2081.73876953125 L2654.1083984375 2081.73876953125 L2670.8115234375 2038.00439453125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="547.78564453125" y="2344.681640625" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="159.4765625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M549.28564453125 2346.181640625 L557.25439453125 2346.181640625 L576.64501953125 2382.759765625 L576.64501953125 2346.181640625 L582.39501953125 2346.181640625 L582.39501953125 2389.916015625 L574.42626953125 2389.916015625 L555.02001953125 2353.322265625 L555.02001953125 2389.916015625 L549.28564453125 2389.916015625 L549.28564453125 2346.181640625 ZM600.09033203125 2351.041015625 L600.09033203125 2385.056640625 L607.23095703125 2385.056640625 Q616.29345703125 2385.056640625 620.49658203125 2380.962890625 Q624.69970703125 2376.853515625 624.69970703125 2367.994140625 Q624.69970703125 2359.212890625 620.49658203125 2355.134765625 Q616.29345703125 2351.041015625 607.23095703125 2351.041015625 L600.09033203125 2351.041015625 ZM594.16845703125 2346.181640625 L606.32470703125 2346.181640625 Q619.04345703125 2346.181640625 624.98095703125 2351.462890625 Q630.93408203125 2356.744140625 630.93408203125 2367.994140625 Q630.93408203125 2379.306640625 624.94970703125 2384.619140625 Q618.98095703125 2389.916015625 606.32470703125 2389.916015625 L594.16845703125 2389.916015625 L594.16845703125 2346.181640625 ZM657.15087890625 2351.337890625 L642.21337890625 2374.681640625 L657.15087890625 2374.681640625 L657.15087890625 2351.337890625 ZM655.60400390625 2346.181640625 L663.04150390625 2346.181640625 L663.04150390625 2374.681640625 L669.29150390625 2374.681640625 L669.29150390625 2379.603515625 L663.04150390625 2379.603515625 L663.04150390625 2389.916015625 L657.15087890625 2389.916015625 L657.15087890625 2379.603515625 L637.41650390625 2379.603515625 L637.41650390625 2373.884765625 L655.60400390625 2346.181640625 ZM678.54345703125 2346.181640625 L684.46533203125 2346.181640625 L684.46533203125 2384.931640625 L705.76220703125 2384.931640625 L705.76220703125 2389.916015625 L678.54345703125 2389.916015625 L678.54345703125 2346.181640625 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1654.892944335938" y="2653.337158203125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M1665.767944335938 2656.446533203125 L1665.767944335938 2665.759033203125 L1676.877319335938 2665.759033203125 L1676.877319335938 2669.946533203125 L1665.767944335938 2669.946533203125 L1665.767944335938 2687.759033203125 Q1665.767944335938 2691.774658203125 1666.861694335938 2692.915283203125 Q1667.971069335938 2694.055908203125 1671.330444335938 2694.055908203125 L1676.877319335938 2694.055908203125 L1676.877319335938 2698.571533203125 L1671.330444335938 2698.571533203125 Q1665.096069335938 2698.571533203125 1662.721069335938 2696.243408203125 Q1660.346069335938 2693.915283203125 1660.346069335938 2687.759033203125 L1660.346069335938 2669.946533203125 L1656.392944335938 2669.946533203125 L1656.392944335938 2665.759033203125 L1660.346069335938 2665.759033203125 L1660.346069335938 2656.446533203125 L1665.767944335938 2656.446533203125 ZM1704.933959960938 2678.055908203125 Q1706.840209960938 2678.712158203125 1708.637084960938 2680.821533203125 Q1710.449584960938 2682.930908203125 1712.262084960938 2686.618408203125 L1718.277709960938 2698.571533203125 L1711.918334960938 2698.571533203125 L1706.324584960938 2687.352783203125 Q1704.152709960938 2682.962158203125 1702.105834960938 2681.524658203125 Q1700.074584960938 2680.087158203125 1696.558959960938 2680.087158203125 L1690.121459960938 2680.087158203125 L1690.121459960938 2698.571533203125 L1684.199584960938 2698.571533203125 L1684.199584960938 2654.837158203125 L1697.558959960938 2654.837158203125 Q1705.058959960938 2654.837158203125 1708.746459960938 2657.977783203125 Q1712.433959960938 2661.102783203125 1712.433959960938 2667.430908203125 Q1712.433959960938 2671.555908203125 1710.512084960938 2674.290283203125 Q1708.605834960938 2677.009033203125 1704.933959960938 2678.055908203125 ZM1690.121459960938 2659.696533203125 L1690.121459960938 2675.227783203125 L1697.558959960938 2675.227783203125 Q1701.840209960938 2675.227783203125 1704.012084960938 2673.243408203125 Q1706.199584960938 2671.259033203125 1706.199584960938 2667.430908203125 Q1706.199584960938 2663.587158203125 1704.012084960938 2661.649658203125 Q1701.840209960938 2659.696533203125 1697.558959960938 2659.696533203125 L1690.121459960938 2659.696533203125 ZM1725.889038085938 2654.837158203125 L1733.857788085938 2654.837158203125 L1753.248413085938 2691.415283203125 L1753.248413085938 2654.837158203125 L1758.998413085938 2654.837158203125 L1758.998413085938 2698.571533203125 L1751.029663085938 2698.571533203125 L1731.623413085938 2661.977783203125 L1731.623413085938 2698.571533203125 L1725.889038085938 2698.571533203125 L1725.889038085938 2654.837158203125 ZM1785.396850585938 2660.665283203125 L1777.365600585938 2682.430908203125 L1793.443725585938 2682.430908203125 L1785.396850585938 2660.665283203125 ZM1782.053100585938 2654.837158203125 L1788.756225585938 2654.837158203125 L1805.428100585938 2698.571533203125 L1799.271850585938 2698.571533203125 L1795.287475585938 2687.352783203125 L1775.568725585938 2687.352783203125 L1771.584350585938 2698.571533203125 L1765.349975585938 2698.571533203125 L1782.053100585938 2654.837158203125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1414.091186523438" y="249.67073059082" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M1424.966186523438 252.780090332031 L1424.966186523438 262.092590332031 L1436.075561523438 262.092590332031 L1436.075561523438 266.280090332031 L1424.966186523438 266.280090332031 L1424.966186523438 284.092590332031 Q1424.966186523438 288.108215332031 1426.059936523438 289.248840332031 Q1427.169311523438 290.389465332031 1430.528686523438 290.389465332031 L1436.075561523438 290.389465332031 L1436.075561523438 294.905090332031 L1430.528686523438 294.905090332031 Q1424.294311523438 294.905090332031 1421.919311523438 292.576965332031 Q1419.544311523438 290.248840332031 1419.544311523438 284.092590332031 L1419.544311523438 266.280090332031 L1415.591186523438 266.280090332031 L1415.591186523438 262.092590332031 L1419.544311523438 262.092590332031 L1419.544311523438 252.780090332031 L1424.966186523438 252.780090332031 ZM1464.132202148438 274.389465332031 Q1466.038452148438 275.045715332031 1467.835327148438 277.155090332031 Q1469.647827148438 279.264465332031 1471.460327148438 282.951965332031 L1477.475952148438 294.905090332031 L1471.116577148438 294.905090332031 L1465.522827148438 283.686340332031 Q1463.350952148438 279.295715332031 1461.304077148438 277.858215332031 Q1459.272827148438 276.420715332031 1455.757202148438 276.420715332031 L1449.319702148438 276.420715332031 L1449.319702148438 294.905090332031 L1443.397827148438 294.905090332031 L1443.397827148438 251.170715332031 L1456.757202148438 251.170715332031 Q1464.257202148438 251.170715332031 1467.944702148438 254.311340332031 Q1471.632202148438 257.436340332031 1471.632202148438 263.764465332031 Q1471.632202148438 267.889465332031 1469.710327148438 270.623840332031 Q1467.804077148438 273.342590332031 1464.132202148438 274.389465332031 ZM1449.319702148438 256.030090332031 L1449.319702148438 271.561340332031 L1456.757202148438 271.561340332031 Q1461.038452148438 271.561340332031 1463.210327148438 269.576965332031 Q1465.397827148438 267.592590332031 1465.397827148438 263.764465332031 Q1465.397827148438 259.920715332031 1463.210327148438 257.983215332031 Q1461.038452148438 256.030090332031 1456.757202148438 256.030090332031 L1449.319702148438 256.030090332031 ZM1485.087280273438 251.170715332031 L1493.056030273438 251.170715332031 L1512.446655273438 287.748840332031 L1512.446655273438 251.170715332031 L1518.196655273438 251.170715332031 L1518.196655273438 294.905090332031 L1510.227905273438 294.905090332031 L1490.821655273438 258.311340332031 L1490.821655273438 294.905090332031 L1485.087280273438 294.905090332031 L1485.087280273438 251.170715332031 ZM1544.595092773438 256.998840332031 L1536.563842773438 278.764465332031 L1552.641967773438 278.764465332031 L1544.595092773438 256.998840332031 ZM1541.251342773438 251.170715332031 L1547.954467773438 251.170715332031 L1564.626342773438 294.905090332031 L1558.470092773438 294.905090332031 L1554.485717773438 283.686340332031 L1534.766967773438 283.686340332031 L1530.782592773438 294.905090332031 L1524.548217773438 294.905090332031 L1541.251342773438 251.170715332031 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="829.837768554688" y="391.597930908203" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M840.712768554688 394.707305908203 L840.712768554688 404.019805908203 L851.822143554688 404.019805908203 L851.822143554688 408.207305908203 L840.712768554688 408.207305908203 L840.712768554688 426.019805908203 Q840.712768554688 430.035430908203 841.806518554688 431.176055908203 Q842.915893554688 432.316680908203 846.275268554688 432.316680908203 L851.822143554688 432.316680908203 L851.822143554688 436.832305908203 L846.275268554688 436.832305908203 Q840.040893554688 436.832305908203 837.665893554688 434.504180908203 Q835.290893554688 432.176055908203 835.290893554688 426.019805908203 L835.290893554688 408.207305908203 L831.337768554688 408.207305908203 L831.337768554688 404.019805908203 L835.290893554688 404.019805908203 L835.290893554688 394.707305908203 L840.712768554688 394.707305908203 ZM879.878784179688 416.316680908203 Q881.785034179688 416.972930908203 883.581909179688 419.082305908203 Q885.394409179688 421.191680908203 887.206909179688 424.879180908203 L893.222534179688 436.832305908203 L886.863159179688 436.832305908203 L881.269409179688 425.613555908203 Q879.097534179688 421.222930908203 877.050659179688 419.785430908203 Q875.019409179688 418.347930908203 871.503784179688 418.347930908203 L865.066284179688 418.347930908203 L865.066284179688 436.832305908203 L859.144409179688 436.832305908203 L859.144409179688 393.097930908203 L872.503784179688 393.097930908203 Q880.003784179688 393.097930908203 883.691284179688 396.238555908203 Q887.378784179688 399.363555908203 887.378784179688 405.691680908203 Q887.378784179688 409.816680908203 885.456909179688 412.551055908203 Q883.550659179688 415.269805908203 879.878784179688 416.316680908203 ZM865.066284179688 397.957305908203 L865.066284179688 413.488555908203 L872.503784179688 413.488555908203 Q876.785034179688 413.488555908203 878.956909179688 411.504180908203 Q881.144409179688 409.519805908203 881.144409179688 405.691680908203 Q881.144409179688 401.847930908203 878.956909179688 399.910430908203 Q876.785034179688 397.957305908203 872.503784179688 397.957305908203 L865.066284179688 397.957305908203 ZM900.833862304688 393.097930908203 L908.802612304688 393.097930908203 L928.193237304688 429.676055908203 L928.193237304688 393.097930908203 L933.943237304688 393.097930908203 L933.943237304688 436.832305908203 L925.974487304688 436.832305908203 L906.568237304688 400.238555908203 L906.568237304688 436.832305908203 L900.833862304688 436.832305908203 L900.833862304688 393.097930908203 ZM960.341674804688 398.926055908203 L952.310424804688 420.691680908203 L968.388549804688 420.691680908203 L960.341674804688 398.926055908203 ZM956.997924804688 393.097930908203 L963.701049804688 393.097930908203 L980.372924804688 436.832305908203 L974.216674804688 436.832305908203 L970.232299804688 425.613555908203 L950.513549804688 425.613555908203 L946.529174804688 436.832305908203 L940.294799804688 436.832305908203 L956.997924804688 393.097930908203 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2629.7412109375" y="1839.858764648438" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2640.6162109375 1842.968139648438 L2640.6162109375 1852.280639648438 L2651.7255859375 1852.280639648438 L2651.7255859375 1856.468139648438 L2640.6162109375 1856.468139648438 L2640.6162109375 1874.280639648438 Q2640.6162109375 1878.296264648438 2641.7099609375 1879.436889648438 Q2642.8193359375 1880.577514648438 2646.1787109375 1880.577514648438 L2651.7255859375 1880.577514648438 L2651.7255859375 1885.093139648438 L2646.1787109375 1885.093139648438 Q2639.9443359375 1885.093139648438 2637.5693359375 1882.765014648438 Q2635.1943359375 1880.436889648438 2635.1943359375 1874.280639648438 L2635.1943359375 1856.468139648438 L2631.2412109375 1856.468139648438 L2631.2412109375 1852.280639648438 L2635.1943359375 1852.280639648438 L2635.1943359375 1842.968139648438 L2640.6162109375 1842.968139648438 ZM2679.7822265625 1864.577514648438 Q2681.6884765625 1865.233764648438 2683.4853515625 1867.343139648438 Q2685.2978515625 1869.452514648438 2687.1103515625 1873.140014648438 L2693.1259765625 1885.093139648438 L2686.7666015625 1885.093139648438 L2681.1728515625 1873.874389648438 Q2679.0009765625 1869.483764648438 2676.9541015625 1868.046264648438 Q2674.9228515625 1866.608764648438 2671.4072265625 1866.608764648438 L2664.9697265625 1866.608764648438 L2664.9697265625 1885.093139648438 L2659.0478515625 1885.093139648438 L2659.0478515625 1841.358764648438 L2672.4072265625 1841.358764648438 Q2679.9072265625 1841.358764648438 2683.5947265625 1844.499389648438 Q2687.2822265625 1847.624389648438 2687.2822265625 1853.952514648438 Q2687.2822265625 1858.077514648438 2685.3603515625 1860.811889648438 Q2683.4541015625 1863.530639648438 2679.7822265625 1864.577514648438 ZM2664.9697265625 1846.218139648438 L2664.9697265625 1861.749389648438 L2672.4072265625 1861.749389648438 Q2676.6884765625 1861.749389648438 2678.8603515625 1859.765014648438 Q2681.0478515625 1857.780639648438 2681.0478515625 1853.952514648438 Q2681.0478515625 1850.108764648438 2678.8603515625 1848.171264648438 Q2676.6884765625 1846.218139648438 2672.4072265625 1846.218139648438 L2664.9697265625 1846.218139648438 ZM2700.7373046875 1841.358764648438 L2708.7060546875 1841.358764648438 L2728.0966796875 1877.936889648438 L2728.0966796875 1841.358764648438 L2733.8466796875 1841.358764648438 L2733.8466796875 1885.093139648438 L2725.8779296875 1885.093139648438 L2706.4716796875 1848.499389648438 L2706.4716796875 1885.093139648438 L2700.7373046875 1885.093139648438 L2700.7373046875 1841.358764648438 ZM2760.2451171875 1847.186889648438 L2752.2138671875 1868.952514648438 L2768.2919921875 1868.952514648438 L2760.2451171875 1847.186889648438 ZM2756.9013671875 1841.358764648438 L2763.6044921875 1841.358764648438 L2780.2763671875 1885.093139648438 L2774.1201171875 1885.093139648438 L2770.1357421875 1873.874389648438 L2750.4169921875 1873.874389648438 L2746.4326171875 1885.093139648438 L2740.1982421875 1885.093139648438 L2756.9013671875 1841.358764648438 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1929.952880859375" y="358.521026611328" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M1940.827880859375 361.630401611328 L1940.827880859375 370.942901611328 L1951.937255859375 370.942901611328 L1951.937255859375 375.130401611328 L1940.827880859375 375.130401611328 L1940.827880859375 392.942901611328 Q1940.827880859375 396.958526611328 1941.921630859375 398.099151611328 Q1943.031005859375 399.239776611328 1946.390380859375 399.239776611328 L1951.937255859375 399.239776611328 L1951.937255859375 403.755401611328 L1946.390380859375 403.755401611328 Q1940.156005859375 403.755401611328 1937.781005859375 401.427276611328 Q1935.406005859375 399.099151611328 1935.406005859375 392.942901611328 L1935.406005859375 375.130401611328 L1931.452880859375 375.130401611328 L1931.452880859375 370.942901611328 L1935.406005859375 370.942901611328 L1935.406005859375 361.630401611328 L1940.827880859375 361.630401611328 ZM1979.993896484375 383.239776611328 Q1981.900146484375 383.896026611328 1983.697021484375 386.005401611328 Q1985.509521484375 388.114776611328 1987.322021484375 391.802276611328 L1993.337646484375 403.755401611328 L1986.978271484375 403.755401611328 L1981.384521484375 392.536651611328 Q1979.212646484375 388.146026611328 1977.165771484375 386.708526611328 Q1975.134521484375 385.271026611328 1971.618896484375 385.271026611328 L1965.181396484375 385.271026611328 L1965.181396484375 403.755401611328 L1959.259521484375 403.755401611328 L1959.259521484375 360.021026611328 L1972.618896484375 360.021026611328 Q1980.118896484375 360.021026611328 1983.806396484375 363.161651611328 Q1987.493896484375 366.286651611328 1987.493896484375 372.614776611328 Q1987.493896484375 376.739776611328 1985.572021484375 379.474151611328 Q1983.665771484375 382.192901611328 1979.993896484375 383.239776611328 ZM1965.181396484375 364.880401611328 L1965.181396484375 380.411651611328 L1972.618896484375 380.411651611328 Q1976.900146484375 380.411651611328 1979.072021484375 378.427276611328 Q1981.259521484375 376.442901611328 1981.259521484375 372.614776611328 Q1981.259521484375 368.771026611328 1979.072021484375 366.833526611328 Q1976.900146484375 364.880401611328 1972.618896484375 364.880401611328 L1965.181396484375 364.880401611328 ZM2000.948974609375 360.021026611328 L2008.917724609375 360.021026611328 L2028.308349609375 396.599151611328 L2028.308349609375 360.021026611328 L2034.058349609375 360.021026611328 L2034.058349609375 403.755401611328 L2026.089599609375 403.755401611328 L2006.683349609375 367.161651611328 L2006.683349609375 403.755401611328 L2000.948974609375 403.755401611328 L2000.948974609375 360.021026611328 ZM2060.456787109375 365.849151611328 L2052.425537109375 387.614776611328 L2068.503662109375 387.614776611328 L2060.456787109375 365.849151611328 ZM2057.113037109375 360.021026611328 L2063.816162109375 360.021026611328 L2080.488037109375 403.755401611328 L2074.331787109375 403.755401611328 L2070.347412109375 392.536651611328 L2050.628662109375 392.536651611328 L2046.644287109375 403.755401611328 L2040.409912109375 403.755401611328 L2057.113037109375 360.021026611328 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="403.901184082031" y="787.001953125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="122.583984375" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M405.401184082031 789.298828125 L413.369934082031 789.298828125 L432.760559082031 825.876953125 L432.760559082031 789.298828125 L438.510559082031 789.298828125 L438.510559082031 833.033203125 L430.541809082031 833.033203125 L411.135559082031 796.439453125 L411.135559082031 833.033203125 L405.401184082031 833.033203125 L405.401184082031 789.298828125 ZM456.205871582031 794.158203125 L456.205871582031 828.173828125 L463.346496582031 828.173828125 Q472.408996582031 828.173828125 476.612121582031 824.080078125 Q480.815246582031 819.970703125 480.815246582031 811.111328125 Q480.815246582031 802.330078125 476.612121582031 798.251953125 Q472.408996582031 794.158203125 463.346496582031 794.158203125 L456.205871582031 794.158203125 ZM450.283996582031 789.298828125 L462.440246582031 789.298828125 Q475.158996582031 789.298828125 481.096496582031 794.580078125 Q487.049621582031 799.861328125 487.049621582031 811.111328125 Q487.049621582031 822.423828125 481.065246582031 827.736328125 Q475.096496582031 833.033203125 462.440246582031 833.033203125 L450.283996582031 833.033203125 L450.283996582031 789.298828125 ZM510.407043457031 808.798828125 Q506.422668457031 808.798828125 504.078918457031 811.533203125 Q501.750793457031 814.251953125 501.750793457031 819.001953125 Q501.750793457031 823.720703125 504.078918457031 826.455078125 Q506.422668457031 829.189453125 510.407043457031 829.189453125 Q514.391418457031 829.189453125 516.719543457031 826.455078125 Q519.047668457031 823.720703125 519.047668457031 819.001953125 Q519.047668457031 814.251953125 516.719543457031 811.533203125 Q514.391418457031 808.798828125 510.407043457031 808.798828125 ZM522.141418457031 790.251953125 L522.141418457031 795.642578125 Q519.922668457031 794.595703125 517.641418457031 794.048828125 Q515.375793457031 793.486328125 513.157043457031 793.486328125 Q507.297668457031 793.486328125 504.203918457031 797.439453125 Q501.110168457031 801.392578125 500.672668457031 809.392578125 Q502.407043457031 806.845703125 505.000793457031 805.486328125 Q507.610168457031 804.111328125 510.750793457031 804.111328125 Q517.344543457031 804.111328125 521.157043457031 808.111328125 Q524.985168457031 812.111328125 524.985168457031 819.001953125 Q524.985168457031 825.736328125 521.000793457031 829.814453125 Q517.016418457031 833.876953125 510.407043457031 833.876953125 Q502.813293457031 833.876953125 498.797668457031 828.064453125 Q494.782043457031 822.251953125 494.782043457031 811.205078125 Q494.782043457031 800.830078125 499.703918457031 794.673828125 Q504.625793457031 788.501953125 512.922668457031 788.501953125 Q515.141418457031 788.501953125 517.407043457031 788.939453125 Q519.688293457031 789.376953125 522.141418457031 790.251953125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="180.568511962891" y="1682.476440429688" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M191.443511962891 1685.585815429688 L191.443511962891 1694.898315429688 L202.552886962891 1694.898315429688 L202.552886962891 1699.085815429688 L191.443511962891 1699.085815429688 L191.443511962891 1716.898315429688 Q191.443511962891 1720.913940429688 192.537261962891 1722.054565429688 Q193.646636962891 1723.195190429688 197.006011962891 1723.195190429688 L202.552886962891 1723.195190429688 L202.552886962891 1727.710815429688 L197.006011962891 1727.710815429688 Q190.771636962891 1727.710815429688 188.396636962891 1725.382690429688 Q186.021636962891 1723.054565429688 186.021636962891 1716.898315429688 L186.021636962891 1699.085815429688 L182.068511962891 1699.085815429688 L182.068511962891 1694.898315429688 L186.021636962891 1694.898315429688 L186.021636962891 1685.585815429688 L191.443511962891 1685.585815429688 ZM230.609527587891 1707.195190429688 Q232.515777587891 1707.851440429688 234.312652587891 1709.960815429688 Q236.125152587891 1712.070190429688 237.937652587891 1715.757690429688 L243.953277587891 1727.710815429688 L237.593902587891 1727.710815429688 L232.000152587891 1716.492065429688 Q229.828277587891 1712.101440429688 227.781402587891 1710.663940429688 Q225.750152587891 1709.226440429688 222.234527587891 1709.226440429688 L215.797027587891 1709.226440429688 L215.797027587891 1727.710815429688 L209.875152587891 1727.710815429688 L209.875152587891 1683.976440429688 L223.234527587891 1683.976440429688 Q230.734527587891 1683.976440429688 234.422027587891 1687.117065429688 Q238.109527587891 1690.242065429688 238.109527587891 1696.570190429688 Q238.109527587891 1700.695190429688 236.187652587891 1703.429565429688 Q234.281402587891 1706.148315429688 230.609527587891 1707.195190429688 ZM215.797027587891 1688.835815429688 L215.797027587891 1704.367065429688 L223.234527587891 1704.367065429688 Q227.515777587891 1704.367065429688 229.687652587891 1702.382690429688 Q231.875152587891 1700.398315429688 231.875152587891 1696.570190429688 Q231.875152587891 1692.726440429688 229.687652587891 1690.788940429688 Q227.515777587891 1688.835815429688 223.234527587891 1688.835815429688 L215.797027587891 1688.835815429688 ZM251.564605712891 1683.976440429688 L259.533355712891 1683.976440429688 L278.923980712891 1720.554565429688 L278.923980712891 1683.976440429688 L284.673980712891 1683.976440429688 L284.673980712891 1727.710815429688 L276.705230712891 1727.710815429688 L257.298980712891 1691.117065429688 L257.298980712891 1727.710815429688 L251.564605712891 1727.710815429688 L251.564605712891 1683.976440429688 ZM311.072418212891 1689.804565429688 L303.041168212891 1711.570190429688 L319.119293212891 1711.570190429688 L311.072418212891 1689.804565429688 ZM307.728668212891 1683.976440429688 L314.431793212891 1683.976440429688 L331.103668212891 1727.710815429688 L324.947418212891 1727.710815429688 L320.963043212891 1716.492065429688 L301.244293212891 1716.492065429688 L297.259918212891 1727.710815429688 L291.025543212891 1727.710815429688 L307.728668212891 1683.976440429688 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1328.252563476562" y="2672.271484375" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="150.798828125" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M1349.799438476562 2680.396484375 L1341.768188476562 2702.162109375 L1357.846313476562 2702.162109375 L1349.799438476562 2680.396484375 ZM1346.455688476562 2674.568359375 L1353.158813476562 2674.568359375 L1369.830688476562 2718.302734375 L1363.674438476562 2718.302734375 L1359.690063476562 2707.083984375 L1339.971313476562 2707.083984375 L1335.986938476562 2718.302734375 L1329.752563476562 2718.302734375 L1346.455688476562 2674.568359375 ZM1370.156860351562 2674.568359375 L1407.156860351562 2674.568359375 L1407.156860351562 2679.537109375 L1391.625610351562 2679.537109375 L1391.625610351562 2718.302734375 L1385.688110351562 2718.302734375 L1385.688110351562 2679.537109375 L1370.156860351562 2679.537109375 L1370.156860351562 2674.568359375 ZM1418.791625976562 2679.427734375 L1418.791625976562 2695.865234375 L1426.229125976562 2695.865234375 Q1430.354125976562 2695.865234375 1432.604125976562 2693.724609375 Q1434.869750976562 2691.583984375 1434.869750976562 2687.630859375 Q1434.869750976562 2683.708984375 1432.604125976562 2681.568359375 Q1430.354125976562 2679.427734375 1426.229125976562 2679.427734375 L1418.791625976562 2679.427734375 ZM1412.869750976562 2674.568359375 L1426.229125976562 2674.568359375 Q1433.588500976562 2674.568359375 1437.338500976562 2677.896484375 Q1441.104125976562 2681.208984375 1441.104125976562 2687.630859375 Q1441.104125976562 2694.099609375 1437.338500976562 2697.412109375 Q1433.588500976562 2700.724609375 1426.229125976562 2700.724609375 L1418.791625976562 2700.724609375 L1418.791625976562 2718.302734375 L1412.869750976562 2718.302734375 L1412.869750976562 2674.568359375 ZM1462.973266601562 2694.068359375 Q1458.988891601562 2694.068359375 1456.645141601562 2696.802734375 Q1454.317016601562 2699.521484375 1454.317016601562 2704.271484375 Q1454.317016601562 2708.990234375 1456.645141601562 2711.724609375 Q1458.988891601562 2714.458984375 1462.973266601562 2714.458984375 Q1466.957641601562 2714.458984375 1469.285766601562 2711.724609375 Q1471.613891601562 2708.990234375 1471.613891601562 2704.271484375 Q1471.613891601562 2699.521484375 1469.285766601562 2696.802734375 Q1466.957641601562 2694.068359375 1462.973266601562 2694.068359375 ZM1474.707641601562 2675.521484375 L1474.707641601562 2680.912109375 Q1472.488891601562 2679.865234375 1470.207641601562 2679.318359375 Q1467.942016601562 2678.755859375 1465.723266601562 2678.755859375 Q1459.863891601562 2678.755859375 1456.770141601562 2682.708984375 Q1453.676391601562 2686.662109375 1453.238891601562 2694.662109375 Q1454.973266601562 2692.115234375 1457.567016601562 2690.755859375 Q1460.176391601562 2689.380859375 1463.317016601562 2689.380859375 Q1469.910766601562 2689.380859375 1473.723266601562 2693.380859375 Q1477.551391601562 2697.380859375 1477.551391601562 2704.271484375 Q1477.551391601562 2711.005859375 1473.567016601562 2715.083984375 Q1469.582641601562 2719.146484375 1462.973266601562 2719.146484375 Q1455.379516601562 2719.146484375 1451.363891601562 2713.333984375 Q1447.348266601562 2707.521484375 1447.348266601562 2696.474609375 Q1447.348266601562 2686.099609375 1452.270141601562 2679.943359375 Q1457.192016601562 2673.771484375 1465.488891601562 2673.771484375 Q1467.707641601562 2673.771484375 1469.973266601562 2674.208984375 Q1472.254516601562 2674.646484375 1474.707641601562 2675.521484375 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="1177.878540039062" y="270.432220458984" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="189.861328125" height="61.078125" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(51,51,51)" d="M1185.300415039062 278.650970458984 L1185.300415039062 312.666595458984 L1192.441040039062 312.666595458984 Q1201.503540039062 312.666595458984 1205.706665039062 308.572845458984 Q1209.909790039062 304.463470458984 1209.909790039062 295.604095458984 Q1209.909790039062 286.822845458984 1205.706665039062 282.744720458984 Q1201.503540039062 278.650970458984 1192.441040039062 278.650970458984 L1185.300415039062 278.650970458984 ZM1179.378540039062 273.791595458984 L1191.534790039062 273.791595458984 Q1204.253540039062 273.791595458984 1210.191040039062 279.072845458984 Q1216.144165039062 284.354095458984 1216.144165039062 295.604095458984 Q1216.144165039062 306.916595458984 1210.159790039062 312.229095458984 Q1204.191040039062 317.525970458984 1191.534790039062 317.525970458984 L1179.378540039062 317.525970458984 L1179.378540039062 273.791595458984 ZM1222.626586914062 298.682220458984 L1238.407836914062 298.682220458984 L1238.407836914062 303.494720458984 L1222.626586914062 303.494720458984 L1222.626586914062 298.682220458984 ZM1246.995727539062 271.932220458984 L1252.386352539062 271.932220458984 L1252.386352539062 317.525970458984 L1246.995727539062 317.525970458984 L1246.995727539062 271.932220458984 ZM1276.384399414062 288.494720458984 Q1272.040649414062 288.494720458984 1269.525024414062 291.885345458984 Q1267.009399414062 295.260345458984 1267.009399414062 301.150970458984 Q1267.009399414062 307.041595458984 1269.509399414062 310.432220458984 Q1272.009399414062 313.807220458984 1276.384399414062 313.807220458984 Q1280.681274414062 313.807220458984 1283.196899414062 310.416595458984 Q1285.728149414062 307.010345458984 1285.728149414062 301.150970458984 Q1285.728149414062 295.322845458984 1283.196899414062 291.916595458984 Q1280.681274414062 288.494720458984 1276.384399414062 288.494720458984 ZM1276.384399414062 283.916595458984 Q1283.415649414062 283.916595458984 1287.415649414062 288.494720458984 Q1291.431274414062 293.057220458984 1291.431274414062 301.150970458984 Q1291.431274414062 309.197845458984 1287.415649414062 313.791595458984 Q1283.415649414062 318.369720458984 1276.384399414062 318.369720458984 Q1269.321899414062 318.369720458984 1265.321899414062 313.791595458984 Q1261.321899414062 309.197845458984 1261.321899414062 301.150970458984 Q1261.321899414062 293.057220458984 1265.321899414062 288.494720458984 Q1269.321899414062 283.916595458984 1276.384399414062 283.916595458984 ZM1313.093383789062 288.494720458984 Q1308.749633789062 288.494720458984 1306.234008789062 291.885345458984 Q1303.718383789062 295.260345458984 1303.718383789062 301.150970458984 Q1303.718383789062 307.041595458984 1306.218383789062 310.432220458984 Q1308.718383789062 313.807220458984 1313.093383789062 313.807220458984 Q1317.390258789062 313.807220458984 1319.905883789062 310.416595458984 Q1322.437133789062 307.010345458984 1322.437133789062 301.150970458984 Q1322.437133789062 295.322845458984 1319.905883789062 291.916595458984 Q1317.390258789062 288.494720458984 1313.093383789062 288.494720458984 ZM1313.093383789062 283.916595458984 Q1320.124633789062 283.916595458984 1324.124633789062 288.494720458984 Q1328.140258789062 293.057220458984 1328.140258789062 301.150970458984 Q1328.140258789062 309.197845458984 1324.124633789062 313.791595458984 Q1320.124633789062 318.369720458984 1313.093383789062 318.369720458984 Q1306.030883789062 318.369720458984 1302.030883789062 313.791595458984 Q1298.030883789062 309.197845458984 1298.030883789062 301.150970458984 Q1298.030883789062 293.057220458984 1302.030883789062 288.494720458984 Q1306.030883789062 283.916595458984 1313.093383789062 283.916595458984 ZM1342.302368164062 312.604095458984 L1342.302368164062 330.010345458984 L1336.880493164062 330.010345458984 L1336.880493164062 284.713470458984 L1342.302368164062 284.713470458984 L1342.302368164062 289.697845458984 Q1343.989868164062 286.760345458984 1346.583618164062 285.338470458984 Q1349.177368164062 283.916595458984 1352.786743164062 283.916595458984 Q1358.755493164062 283.916595458984 1362.489868164062 288.666595458984 Q1366.239868164062 293.416595458984 1366.239868164062 301.150970458984 Q1366.239868164062 308.885345458984 1362.489868164062 313.635345458984 Q1358.755493164062 318.369720458984 1352.786743164062 318.369720458984 Q1349.177368164062 318.369720458984 1346.583618164062 316.947845458984 Q1343.989868164062 315.525970458984 1342.302368164062 312.604095458984 ZM1360.630493164062 301.150970458984 Q1360.630493164062 295.197845458984 1358.177368164062 291.822845458984 Q1355.739868164062 288.432220458984 1351.474243164062 288.432220458984 Q1347.192993164062 288.432220458984 1344.739868164062 291.822845458984 Q1342.302368164062 295.197845458984 1342.302368164062 301.150970458984 Q1342.302368164062 307.088470458984 1344.739868164062 310.479095458984 Q1347.192993164062 313.869720458984 1351.474243164062 313.869720458984 Q1355.739868164062 313.869720458984 1358.177368164062 310.479095458984 Q1360.630493164062 307.088470458984 1360.630493164062 301.150970458984 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="750.756591796875" y="2470.063720703125" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="121.568359375" height="48.375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(0,0,153)" d="M752.256591796875 2472.360595703125 L760.225341796875 2472.360595703125 L779.615966796875 2508.938720703125 L779.615966796875 2472.360595703125 L785.365966796875 2472.360595703125 L785.365966796875 2516.094970703125 L777.397216796875 2516.094970703125 L757.990966796875 2479.501220703125 L757.990966796875 2516.094970703125 L752.256591796875 2516.094970703125 L752.256591796875 2472.360595703125 ZM803.061279296875 2477.219970703125 L803.061279296875 2511.235595703125 L810.201904296875 2511.235595703125 Q819.264404296875 2511.235595703125 823.467529296875 2507.141845703125 Q827.670654296875 2503.032470703125 827.670654296875 2494.173095703125 Q827.670654296875 2485.391845703125 823.467529296875 2481.313720703125 Q819.264404296875 2477.219970703125 810.201904296875 2477.219970703125 L803.061279296875 2477.219970703125 ZM797.139404296875 2472.360595703125 L809.295654296875 2472.360595703125 Q822.014404296875 2472.360595703125 827.951904296875 2477.641845703125 Q833.905029296875 2482.923095703125 833.905029296875 2494.173095703125 Q833.905029296875 2505.485595703125 827.920654296875 2510.798095703125 Q821.951904296875 2516.094970703125 809.295654296875 2516.094970703125 L797.139404296875 2516.094970703125 L797.139404296875 2472.360595703125 ZM861.793701171875 2492.516845703125 Q866.043701171875 2493.423095703125 868.434326171875 2496.298095703125 Q870.824951171875 2499.157470703125 870.824951171875 2503.376220703125 Q870.824951171875 2509.860595703125 866.371826171875 2513.407470703125 Q861.918701171875 2516.938720703125 853.715576171875 2516.938720703125 Q850.949951171875 2516.938720703125 848.028076171875 2516.391845703125 Q845.121826171875 2515.860595703125 842.028076171875 2514.782470703125 L842.028076171875 2509.063720703125 Q844.481201171875 2510.501220703125 847.403076171875 2511.235595703125 Q850.340576171875 2511.969970703125 853.528076171875 2511.969970703125 Q859.106201171875 2511.969970703125 862.012451171875 2509.766845703125 Q864.934326171875 2507.563720703125 864.934326171875 2503.376220703125 Q864.934326171875 2499.516845703125 862.215576171875 2497.329345703125 Q859.512451171875 2495.141845703125 854.684326171875 2495.141845703125 L849.574951171875 2495.141845703125 L849.574951171875 2490.282470703125 L854.918701171875 2490.282470703125 Q859.278076171875 2490.282470703125 861.590576171875 2488.548095703125 Q863.903076171875 2486.798095703125 863.903076171875 2483.516845703125 Q863.903076171875 2480.141845703125 861.512451171875 2478.344970703125 Q859.137451171875 2476.548095703125 854.684326171875 2476.548095703125 Q852.246826171875 2476.548095703125 849.465576171875 2477.079345703125 Q846.684326171875 2477.594970703125 843.340576171875 2478.704345703125 L843.340576171875 2473.438720703125 Q846.715576171875 2472.501220703125 849.653076171875 2472.032470703125 Q852.590576171875 2471.563720703125 855.199951171875 2471.563720703125 Q861.949951171875 2471.563720703125 865.871826171875 2474.626220703125 Q869.793701171875 2477.688720703125 869.793701171875 2482.907470703125 Q869.793701171875 2486.532470703125 867.715576171875 2489.048095703125 Q865.637451171875 2491.548095703125 861.793701171875 2492.516845703125 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2292.371826171875" y="568.288757324219" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="572.08984375" height="49.4375" opacity="0.600000023842" stroke="none"
      /><path fill="rgb(153,0,153)" d="M2294.715576171875 610.398132324219 L2304.387451171875 610.398132324219 L2304.387451171875 577.038757324219 L2293.871826171875 579.148132324219 L2293.871826171875 573.757507324219 L2304.324951171875 571.648132324219 L2310.246826171875 571.648132324219 L2310.246826171875 610.398132324219 L2319.918701171875 610.398132324219 L2319.918701171875 615.382507324219 L2294.715576171875 615.382507324219 L2294.715576171875 610.398132324219 ZM2345.264404296875 591.148132324219 Q2341.280029296875 591.148132324219 2338.936279296875 593.882507324219 Q2336.608154296875 596.601257324219 2336.608154296875 601.351257324219 Q2336.608154296875 606.070007324219 2338.936279296875 608.804382324219 Q2341.280029296875 611.538757324219 2345.264404296875 611.538757324219 Q2349.248779296875 611.538757324219 2351.576904296875 608.804382324219 Q2353.905029296875 606.070007324219 2353.905029296875 601.351257324219 Q2353.905029296875 596.601257324219 2351.576904296875 593.882507324219 Q2349.248779296875 591.148132324219 2345.264404296875 591.148132324219 ZM2356.998779296875 572.601257324219 L2356.998779296875 577.991882324219 Q2354.780029296875 576.945007324219 2352.498779296875 576.398132324219 Q2350.233154296875 575.835632324219 2348.014404296875 575.835632324219 Q2342.155029296875 575.835632324219 2339.061279296875 579.788757324219 Q2335.967529296875 583.741882324219 2335.530029296875 591.741882324219 Q2337.264404296875 589.195007324219 2339.858154296875 587.835632324219 Q2342.467529296875 586.460632324219 2345.608154296875 586.460632324219 Q2352.201904296875 586.460632324219 2356.014404296875 590.460632324219 Q2359.842529296875 594.460632324219 2359.842529296875 601.351257324219 Q2359.842529296875 608.085632324219 2355.858154296875 612.163757324219 Q2351.873779296875 616.226257324219 2345.264404296875 616.226257324219 Q2337.670654296875 616.226257324219 2333.655029296875 610.413757324219 Q2329.639404296875 604.601257324219 2329.639404296875 593.554382324219 Q2329.639404296875 583.179382324219 2334.561279296875 577.023132324219 Q2339.483154296875 570.851257324219 2347.780029296875 570.851257324219 Q2349.998779296875 570.851257324219 2352.264404296875 571.288757324219 Q2354.545654296875 571.726257324219 2356.998779296875 572.601257324219 ZM2395.735107421875 573.070007324219 L2395.735107421875 578.851257324219 Q2392.360107421875 577.241882324219 2389.375732421875 576.445007324219 Q2386.391357421875 575.648132324219 2383.610107421875 575.648132324219 Q2378.766357421875 575.648132324219 2376.141357421875 577.523132324219 Q2373.531982421875 579.398132324219 2373.531982421875 582.866882324219 Q2373.531982421875 585.757507324219 2375.266357421875 587.241882324219 Q2377.016357421875 588.726257324219 2381.875732421875 589.632507324219 L2385.453857421875 590.366882324219 Q2392.078857421875 591.616882324219 2395.219482421875 594.804382324219 Q2398.375732421875 597.976257324219 2398.375732421875 603.304382324219 Q2398.375732421875 609.663757324219 2394.110107421875 612.945007324219 Q2389.844482421875 616.226257324219 2381.610107421875 616.226257324219 Q2378.516357421875 616.226257324219 2375.000732421875 615.523132324219 Q2371.500732421875 614.820007324219 2367.750732421875 613.445007324219 L2367.750732421875 607.351257324219 Q2371.360107421875 609.382507324219 2374.813232421875 610.413757324219 Q2378.281982421875 611.429382324219 2381.610107421875 611.429382324219 Q2386.688232421875 611.429382324219 2389.438232421875 609.445007324219 Q2392.188232421875 607.445007324219 2392.188232421875 603.757507324219 Q2392.188232421875 600.523132324219 2390.203857421875 598.710632324219 Q2388.235107421875 596.898132324219 2383.719482421875 595.991882324219 L2380.125732421875 595.288757324219 Q2373.500732421875 593.960632324219 2370.531982421875 591.148132324219 Q2367.578857421875 588.335632324219 2367.578857421875 583.335632324219 Q2367.578857421875 577.523132324219 2371.656982421875 574.195007324219 Q2375.750732421875 570.851257324219 2382.938232421875 570.851257324219 Q2386.016357421875 570.851257324219 2389.203857421875 571.413757324219 Q2392.391357421875 571.960632324219 2395.735107421875 573.070007324219 ZM2445.455810546875 587.601257324219 Q2444.549560546875 587.085632324219 2443.471435546875 586.835632324219 Q2442.408935546875 586.585632324219 2441.112060546875 586.585632324219 Q2436.549560546875 586.585632324219 2434.096435546875 589.554382324219 Q2431.658935546875 592.523132324219 2431.658935546875 598.101257324219 L2431.658935546875 615.382507324219 L2426.237060546875 615.382507324219 L2426.237060546875 582.570007324219 L2431.658935546875 582.570007324219 L2431.658935546875 587.663757324219 Q2433.346435546875 584.679382324219 2436.065185546875 583.226257324219 Q2438.799560546875 581.773132324219 2442.705810546875 581.773132324219 Q2443.252685546875 581.773132324219 2443.924560546875 581.851257324219 Q2444.596435546875 581.929382324219 2445.424560546875 582.070007324219 L2445.455810546875 587.601257324219 ZM2451.108154296875 582.570007324219 L2456.498779296875 582.570007324219 L2456.498779296875 615.382507324219 L2451.108154296875 615.382507324219 L2451.108154296875 582.570007324219 ZM2451.108154296875 569.788757324219 L2456.498779296875 569.788757324219 L2456.498779296875 576.616882324219 L2451.108154296875 576.616882324219 L2451.108154296875 569.788757324219 ZM2491.324951171875 599.007507324219 Q2491.324951171875 593.054382324219 2488.871826171875 589.679382324219 Q2486.434326171875 586.288757324219 2482.168701171875 586.288757324219 Q2477.887451171875 586.288757324219 2475.434326171875 589.679382324219 Q2472.996826171875 593.054382324219 2472.996826171875 599.007507324219 Q2472.996826171875 604.945007324219 2475.434326171875 608.335632324219 Q2477.887451171875 611.726257324219 2482.168701171875 611.726257324219 Q2486.434326171875 611.726257324219 2488.871826171875 608.335632324219 Q2491.324951171875 604.945007324219 2491.324951171875 599.007507324219 ZM2472.996826171875 587.554382324219 Q2474.684326171875 584.616882324219 2477.278076171875 583.195007324219 Q2479.871826171875 581.773132324219 2483.481201171875 581.773132324219 Q2489.449951171875 581.773132324219 2493.184326171875 586.523132324219 Q2496.934326171875 591.273132324219 2496.934326171875 599.007507324219 Q2496.934326171875 606.741882324219 2493.184326171875 611.491882324219 Q2489.449951171875 616.226257324219 2483.481201171875 616.226257324219 Q2479.871826171875 616.226257324219 2477.278076171875 614.804382324219 Q2474.684326171875 613.382507324219 2472.996826171875 610.460632324219 L2472.996826171875 615.382507324219 L2467.574951171875 615.382507324219 L2467.574951171875 569.788757324219 L2472.996826171875 569.788757324219 L2472.996826171875 587.554382324219 ZM2518.582763671875 586.351257324219 Q2514.239013671875 586.351257324219 2511.723388671875 589.741882324219 Q2509.207763671875 593.116882324219 2509.207763671875 599.007507324219 Q2509.207763671875 604.898132324219 2511.707763671875 608.288757324219 Q2514.207763671875 611.663757324219 2518.582763671875 611.663757324219 Q2522.879638671875 611.663757324219 2525.395263671875 608.273132324219 Q2527.926513671875 604.866882324219 2527.926513671875 599.007507324219 Q2527.926513671875 593.179382324219 2525.395263671875 589.773132324219 Q2522.879638671875 586.351257324219 2518.582763671875 586.351257324219 ZM2518.582763671875 581.773132324219 Q2525.614013671875 581.773132324219 2529.614013671875 586.351257324219 Q2533.629638671875 590.913757324219 2533.629638671875 599.007507324219 Q2533.629638671875 607.054382324219 2529.614013671875 611.648132324219 Q2525.614013671875 616.226257324219 2518.582763671875 616.226257324219 Q2511.520263671875 616.226257324219 2507.520263671875 611.648132324219 Q2503.520263671875 607.054382324219 2503.520263671875 599.007507324219 Q2503.520263671875 590.913757324219 2507.520263671875 586.351257324219 Q2511.520263671875 581.773132324219 2518.582763671875 581.773132324219 ZM2563.494873046875 583.538757324219 L2563.494873046875 588.632507324219 Q2561.197998046875 587.460632324219 2558.729248046875 586.882507324219 Q2556.276123046875 586.288757324219 2553.651123046875 586.288757324219 Q2549.635498046875 586.288757324219 2547.619873046875 587.523132324219 Q2545.619873046875 588.757507324219 2545.619873046875 591.210632324219 Q2545.619873046875 593.085632324219 2547.057373046875 594.163757324219 Q2548.494873046875 595.226257324219 2552.822998046875 596.195007324219 L2554.666748046875 596.601257324219 Q2560.416748046875 597.835632324219 2562.822998046875 600.085632324219 Q2565.244873046875 602.320007324219 2565.244873046875 606.335632324219 Q2565.244873046875 610.898132324219 2561.619873046875 613.570007324219 Q2558.010498046875 616.226257324219 2551.682373046875 616.226257324219 Q2549.041748046875 616.226257324219 2546.182373046875 615.710632324219 Q2543.338623046875 615.210632324219 2540.166748046875 614.179382324219 L2540.166748046875 608.616882324219 Q2543.151123046875 610.163757324219 2546.057373046875 610.945007324219 Q2548.963623046875 611.726257324219 2551.807373046875 611.726257324219 Q2555.604248046875 611.726257324219 2557.651123046875 610.429382324219 Q2559.713623046875 609.116882324219 2559.713623046875 606.741882324219 Q2559.713623046875 604.538757324219 2558.229248046875 603.366882324219 Q2556.744873046875 602.195007324219 2551.744873046875 601.116882324219 L2549.869873046875 600.679382324219 Q2544.854248046875 599.616882324219 2542.619873046875 597.445007324219 Q2540.401123046875 595.257507324219 2540.401123046875 591.445007324219 Q2540.401123046875 586.820007324219 2543.682373046875 584.304382324219 Q2546.963623046875 581.773132324219 2552.994873046875 581.773132324219 Q2555.994873046875 581.773132324219 2558.619873046875 582.226257324219 Q2561.260498046875 582.663757324219 2563.494873046875 583.538757324219 ZM2586.551513671875 586.351257324219 Q2582.207763671875 586.351257324219 2579.692138671875 589.741882324219 Q2577.176513671875 593.116882324219 2577.176513671875 599.007507324219 Q2577.176513671875 604.898132324219 2579.676513671875 608.288757324219 Q2582.176513671875 611.663757324219 2586.551513671875 611.663757324219 Q2590.848388671875 611.663757324219 2593.364013671875 608.273132324219 Q2595.895263671875 604.866882324219 2595.895263671875 599.007507324219 Q2595.895263671875 593.179382324219 2593.364013671875 589.773132324219 Q2590.848388671875 586.351257324219 2586.551513671875 586.351257324219 ZM2586.551513671875 581.773132324219 Q2593.582763671875 581.773132324219 2597.582763671875 586.351257324219 Q2601.598388671875 590.913757324219 2601.598388671875 599.007507324219 Q2601.598388671875 607.054382324219 2597.582763671875 611.648132324219 Q2593.582763671875 616.226257324219 2586.551513671875 616.226257324219 Q2579.489013671875 616.226257324219 2575.489013671875 611.648132324219 Q2571.489013671875 607.054382324219 2571.489013671875 599.007507324219 Q2571.489013671875 590.913757324219 2575.489013671875 586.351257324219 Q2579.489013671875 581.773132324219 2586.551513671875 581.773132324219 ZM2636.088623046875 588.866882324219 Q2638.104248046875 585.241882324219 2640.916748046875 583.507507324219 Q2643.729248046875 581.773132324219 2647.541748046875 581.773132324219 Q2652.666748046875 581.773132324219 2655.447998046875 585.366882324219 Q2658.229248046875 588.960632324219 2658.229248046875 595.570007324219 L2658.229248046875 615.382507324219 L2652.822998046875 615.382507324219 L2652.822998046875 595.757507324219 Q2652.822998046875 591.038757324219 2651.151123046875 588.757507324219 Q2649.479248046875 586.460632324219 2646.041748046875 586.460632324219 Q2641.854248046875 586.460632324219 2639.416748046875 589.257507324219 Q2636.994873046875 592.038757324219 2636.994873046875 596.835632324219 L2636.994873046875 615.382507324219 L2631.572998046875 615.382507324219 L2631.572998046875 595.757507324219 Q2631.572998046875 591.007507324219 2629.901123046875 588.741882324219 Q2628.229248046875 586.460632324219 2624.744873046875 586.460632324219 Q2620.619873046875 586.460632324219 2618.182373046875 589.257507324219 Q2615.760498046875 592.054382324219 2615.760498046875 596.835632324219 L2615.760498046875 615.382507324219 L2610.338623046875 615.382507324219 L2610.338623046875 582.570007324219 L2615.760498046875 582.570007324219 L2615.760498046875 587.663757324219 Q2617.604248046875 584.648132324219 2620.182373046875 583.210632324219 Q2622.760498046875 581.773132324219 2626.307373046875 581.773132324219 Q2629.869873046875 581.773132324219 2632.369873046875 583.601257324219 Q2634.885498046875 585.413757324219 2636.088623046875 588.866882324219 ZM2683.895263671875 598.882507324219 Q2677.364013671875 598.882507324219 2674.848388671875 600.382507324219 Q2672.332763671875 601.882507324219 2672.332763671875 605.476257324219 Q2672.332763671875 608.351257324219 2674.223388671875 610.038757324219 Q2676.114013671875 611.726257324219 2679.364013671875 611.726257324219 Q2683.848388671875 611.726257324219 2686.551513671875 608.554382324219 Q2689.254638671875 605.366882324219 2689.254638671875 600.085632324219 L2689.254638671875 598.882507324219 L2683.895263671875 598.882507324219 ZM2694.645263671875 596.663757324219 L2694.645263671875 615.382507324219 L2689.254638671875 615.382507324219 L2689.254638671875 610.398132324219 Q2687.410888671875 613.382507324219 2684.660888671875 614.804382324219 Q2681.910888671875 616.226257324219 2677.926513671875 616.226257324219 Q2672.879638671875 616.226257324219 2669.910888671875 613.398132324219 Q2666.942138671875 610.570007324219 2666.942138671875 605.835632324219 Q2666.942138671875 600.288757324219 2670.645263671875 597.476257324219 Q2674.348388671875 594.663757324219 2681.707763671875 594.663757324219 L2689.254638671875 594.663757324219 L2689.254638671875 594.148132324219 Q2689.254638671875 590.413757324219 2686.801513671875 588.382507324219 Q2684.364013671875 586.351257324219 2679.942138671875 586.351257324219 Q2677.129638671875 586.351257324219 2674.457763671875 587.023132324219 Q2671.801513671875 587.695007324219 2669.332763671875 589.038757324219 L2669.332763671875 584.070007324219 Q2672.301513671875 582.913757324219 2675.082763671875 582.351257324219 Q2677.864013671875 581.773132324219 2680.504638671875 581.773132324219 Q2687.614013671875 581.773132324219 2691.129638671875 585.476257324219 Q2694.645263671875 589.163757324219 2694.645263671875 596.663757324219 ZM2705.756591796875 569.788757324219 L2711.147216796875 569.788757324219 L2711.147216796875 615.382507324219 L2705.756591796875 615.382507324219 L2705.756591796875 569.788757324219 ZM2762.467529296875 594.866882324219 Q2764.373779296875 595.523132324219 2766.170654296875 597.632507324219 Q2767.983154296875 599.741882324219 2769.795654296875 603.429382324219 L2775.811279296875 615.382507324219 L2769.451904296875 615.382507324219 L2763.858154296875 604.163757324219 Q2761.686279296875 599.773132324219 2759.639404296875 598.335632324219 Q2757.608154296875 596.898132324219 2754.092529296875 596.898132324219 L2747.655029296875 596.898132324219 L2747.655029296875 615.382507324219 L2741.733154296875 615.382507324219 L2741.733154296875 571.648132324219 L2755.092529296875 571.648132324219 Q2762.592529296875 571.648132324219 2766.280029296875 574.788757324219 Q2769.967529296875 577.913757324219 2769.967529296875 584.241882324219 Q2769.967529296875 588.366882324219 2768.045654296875 591.101257324219 Q2766.139404296875 593.820007324219 2762.467529296875 594.866882324219 ZM2747.655029296875 576.507507324219 L2747.655029296875 592.038757324219 L2755.092529296875 592.038757324219 Q2759.373779296875 592.038757324219 2761.545654296875 590.054382324219 Q2763.733154296875 588.070007324219 2763.733154296875 584.241882324219 Q2763.733154296875 580.398132324219 2761.545654296875 578.460632324219 Q2759.373779296875 576.507507324219 2755.092529296875 576.507507324219 L2747.655029296875 576.507507324219 ZM2783.422607421875 571.648132324219 L2791.391357421875 571.648132324219 L2810.781982421875 608.226257324219 L2810.781982421875 571.648132324219 L2816.531982421875 571.648132324219 L2816.531982421875 615.382507324219 L2808.563232421875 615.382507324219 L2789.156982421875 578.788757324219 L2789.156982421875 615.382507324219 L2783.422607421875 615.382507324219 L2783.422607421875 571.648132324219 ZM2842.930419921875 577.476257324219 L2834.899169921875 599.241882324219 L2850.977294921875 599.241882324219 L2842.930419921875 577.476257324219 ZM2839.586669921875 571.648132324219 L2846.289794921875 571.648132324219 L2862.961669921875 615.382507324219 L2856.805419921875 615.382507324219 L2852.821044921875 604.163757324219 L2833.102294921875 604.163757324219 L2829.117919921875 615.382507324219 L2822.883544921875 615.382507324219 L2839.586669921875 571.648132324219 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2525.48681640625" y="856.609313964844" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2536.36181640625 859.718688964844 L2536.36181640625 869.031188964844 L2547.47119140625 869.031188964844 L2547.47119140625 873.218688964844 L2536.36181640625 873.218688964844 L2536.36181640625 891.031188964844 Q2536.36181640625 895.046813964844 2537.45556640625 896.187438964844 Q2538.56494140625 897.328063964844 2541.92431640625 897.328063964844 L2547.47119140625 897.328063964844 L2547.47119140625 901.843688964844 L2541.92431640625 901.843688964844 Q2535.68994140625 901.843688964844 2533.31494140625 899.515563964844 Q2530.93994140625 897.187438964844 2530.93994140625 891.031188964844 L2530.93994140625 873.218688964844 L2526.98681640625 873.218688964844 L2526.98681640625 869.031188964844 L2530.93994140625 869.031188964844 L2530.93994140625 859.718688964844 L2536.36181640625 859.718688964844 ZM2575.52783203125 881.328063964844 Q2577.43408203125 881.984313964844 2579.23095703125 884.093688964844 Q2581.04345703125 886.203063964844 2582.85595703125 889.890563964844 L2588.87158203125 901.843688964844 L2582.51220703125 901.843688964844 L2576.91845703125 890.624938964844 Q2574.74658203125 886.234313964844 2572.69970703125 884.796813964844 Q2570.66845703125 883.359313964844 2567.15283203125 883.359313964844 L2560.71533203125 883.359313964844 L2560.71533203125 901.843688964844 L2554.79345703125 901.843688964844 L2554.79345703125 858.109313964844 L2568.15283203125 858.109313964844 Q2575.65283203125 858.109313964844 2579.34033203125 861.249938964844 Q2583.02783203125 864.374938964844 2583.02783203125 870.703063964844 Q2583.02783203125 874.828063964844 2581.10595703125 877.562438964844 Q2579.19970703125 880.281188964844 2575.52783203125 881.328063964844 ZM2560.71533203125 862.968688964844 L2560.71533203125 878.499938964844 L2568.15283203125 878.499938964844 Q2572.43408203125 878.499938964844 2574.60595703125 876.515563964844 Q2576.79345703125 874.531188964844 2576.79345703125 870.703063964844 Q2576.79345703125 866.859313964844 2574.60595703125 864.921813964844 Q2572.43408203125 862.968688964844 2568.15283203125 862.968688964844 L2560.71533203125 862.968688964844 ZM2596.48291015625 858.109313964844 L2604.45166015625 858.109313964844 L2623.84228515625 894.687438964844 L2623.84228515625 858.109313964844 L2629.59228515625 858.109313964844 L2629.59228515625 901.843688964844 L2621.62353515625 901.843688964844 L2602.21728515625 865.249938964844 L2602.21728515625 901.843688964844 L2596.48291015625 901.843688964844 L2596.48291015625 858.109313964844 ZM2655.99072265625 863.937438964844 L2647.95947265625 885.703063964844 L2664.03759765625 885.703063964844 L2655.99072265625 863.937438964844 ZM2652.64697265625 858.109313964844 L2659.35009765625 858.109313964844 L2676.02197265625 901.843688964844 L2669.86572265625 901.843688964844 L2665.88134765625 890.624938964844 L2646.16259765625 890.624938964844 L2642.17822265625 901.843688964844 L2635.94384765625 901.843688964844 L2652.64697265625 858.109313964844 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
      /><rect x="2029.532836914062" y="2529.34326171875" transform="matrix(1,0,0,1,-1500,-1500)" fill="white" width="152.03515625" height="46.734375" opacity="0.600000023842" stroke="none"
      /><path d="M2040.407836914062 2532.45263671875 L2040.407836914062 2541.76513671875 L2051.51708984375 2541.76513671875 L2051.51708984375 2545.95263671875 L2040.407836914062 2545.95263671875 L2040.407836914062 2563.76513671875 Q2040.407836914062 2567.78076171875 2041.501586914062 2568.92138671875 Q2042.610961914062 2570.06201171875 2045.970336914062 2570.06201171875 L2051.51708984375 2570.06201171875 L2051.51708984375 2574.57763671875 L2045.970336914062 2574.57763671875 Q2039.735961914062 2574.57763671875 2037.360961914062 2572.24951171875 Q2034.985961914062 2569.92138671875 2034.985961914062 2563.76513671875 L2034.985961914062 2545.95263671875 L2031.032836914062 2545.95263671875 L2031.032836914062 2541.76513671875 L2034.985961914062 2541.76513671875 L2034.985961914062 2532.45263671875 L2040.407836914062 2532.45263671875 ZM2079.57373046875 2554.06201171875 Q2081.47998046875 2554.71826171875 2083.27685546875 2556.82763671875 Q2085.08935546875 2558.93701171875 2086.90185546875 2562.62451171875 L2092.91748046875 2574.57763671875 L2086.55810546875 2574.57763671875 L2080.96435546875 2563.35888671875 Q2078.79248046875 2558.96826171875 2076.74560546875 2557.53076171875 Q2074.71435546875 2556.09326171875 2071.19873046875 2556.09326171875 L2064.76123046875 2556.09326171875 L2064.76123046875 2574.57763671875 L2058.83935546875 2574.57763671875 L2058.83935546875 2530.84326171875 L2072.19873046875 2530.84326171875 Q2079.69873046875 2530.84326171875 2083.38623046875 2533.98388671875 Q2087.07373046875 2537.10888671875 2087.07373046875 2543.43701171875 Q2087.07373046875 2547.56201171875 2085.15185546875 2550.29638671875 Q2083.24560546875 2553.01513671875 2079.57373046875 2554.06201171875 ZM2064.76123046875 2535.70263671875 L2064.76123046875 2551.23388671875 L2072.19873046875 2551.23388671875 Q2076.47998046875 2551.23388671875 2078.65185546875 2549.24951171875 Q2080.83935546875 2547.26513671875 2080.83935546875 2543.43701171875 Q2080.83935546875 2539.59326171875 2078.65185546875 2537.65576171875 Q2076.47998046875 2535.70263671875 2072.19873046875 2535.70263671875 L2064.76123046875 2535.70263671875 ZM2100.52880859375 2530.84326171875 L2108.49755859375 2530.84326171875 L2127.88818359375 2567.42138671875 L2127.88818359375 2530.84326171875 L2133.63818359375 2530.84326171875 L2133.63818359375 2574.57763671875 L2125.66943359375 2574.57763671875 L2106.26318359375 2537.98388671875 L2106.26318359375 2574.57763671875 L2100.52880859375 2574.57763671875 L2100.52880859375 2530.84326171875 ZM2160.03662109375 2536.67138671875 L2152.00537109375 2558.43701171875 L2168.08349609375 2558.43701171875 L2160.03662109375 2536.67138671875 ZM2156.69287109375 2530.84326171875 L2163.39599609375 2530.84326171875 L2180.06787109375 2574.57763671875 L2173.91162109375 2574.57763671875 L2169.92724609375 2563.35888671875 L2150.20849609375 2563.35888671875 L2146.22412109375 2574.57763671875 L2139.98974609375 2574.57763671875 L2156.69287109375 2530.84326171875 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-987" fill="none" x1="0" x2="0" y1="-972"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-986.997082068365" fill="none" x1="2.399997537506" x2="2.399997611066" opacity="0.300000011921" y1="-971.997037038601"
      /><line fill="none" x1="-2.399997537506" x2="-2.399997611066" y1="-971.997037038601" y2="-986.997082068365" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-956.946793783839" fill="none" x1="186.181447108402" x2="186.756081204415" y1="-954.002342110658"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-956.484187824941" fill="none" x1="188.5364384905" x2="189.111074347494" opacity="0.300000011921" y1="-953.539727206642"
      /><line fill="none" x1="183.825320647207" x2="184.399956474787" y1="-954.459140816909" y2="-957.403601440947" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-903.455725401374" fill="none" x1="365.468182302401" x2="366.596170519384" y1="-900.675861630908"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-902.550598652843" fill="none" x1="367.690956975126" x2="368.818948633873" opacity="0.300000011921" y1="-899.770726440195"
      /><line fill="none" x1="363.243179505979" x2="364.371171136956" y1="-901.575505735591" y2="-904.355377959507" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-816.50768775154" fill="none" x1="531.220820141425" x2="532.86039057396" y1="-813.995356404613"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-815.193559064336" fill="none" x1="533.229063828799" x2="534.868639256425" opacity="0.300000011921" y1="-812.681220090794"
      /><line fill="none" x1="529.209337798115" x2="530.848913200644" y1="-815.30453009123" y2="-817.81686908115" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-699.322559508765" fill="none" x1="677.301172826948" x2="679.39160854555" y1="-697.1707977872"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-697.648093982754" fill="none" x1="679.020515811187" x2="681.110957893228" opacity="0.300000011921" y1="-695.496325732573"
      /><line fill="none" x1="675.577700589149" x2="677.668142649695" y1="-698.841019450546" y2="-700.992787721609" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-558.807227255307" fill="none" x1="798.299560910436" x2="804.459279744622" y1="-554.528458287043"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-556.834441786427" fill="none" x1="799.666332107538" x2="805.826069595914" opacity="0.300000011921" y1="-552.555659905568"
      /><line fill="none" x1="796.927922777566" x2="803.087660223494" y1="-556.497875914575" y2="-560.776657856542" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-392.558572630496" fill="none" x1="889.735145721336" x2="892.481241850106" y1="-391.350700099326"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-390.360508678594" fill="none" x1="890.698730562538" x2="893.444835042539" opacity="0.300000011921" y1="-389.152632490497"
      /><line fill="none" x1="888.766136495584" x2="891.512240963519" y1="-393.546381788365" y2="-394.754258003894" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-214.339864794603" fill="none" x1="948.22186476101" x2="951.148475454716" y1="-213.680357518312"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-211.997929266604" fill="none" x1="948.746579562527" x2="951.673199153298" opacity="0.300000011921" y1="-211.338420000733"
      /><line fill="none" x1="947.691369003149" x2="950.617988587332" y1="-216.020992306157" y2="-216.680501601263" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-28.183676385416" fill="none" x1="971.593825106933" x2="974.59257148072" y1="-28.096957381153"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-25.784596348052" fill="none" x1="971.660238515912" x2="974.658994003117" opacity="0.300000011921" y1="-25.697877095234"
      /><line fill="none" x1="971.521488251454" x2="974.520243737794" y1="-30.495866370364" y2="-30.582585653137" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="159.016216068316" fill="none" x1="958.98551123131" x2="961.945343056098" y1="158.526935403491"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="161.38359736039" fill="none" x1="958.591163811919" x2="961.55100462899" opacity="0.300000011921" y1="160.894315193891"
      /><line fill="none" x1="959.374012072406" x2="962.333852894365" y1="156.158589133275" y2="156.647871270208" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="344.516030105184" fill="none" x1="910.863836960674" x2="924.920377654511" y1="339.280224176534"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="346.764055862605" fill="none" x1="910.023332272467" x2="924.079915138142" opacity="0.300000011921" y1="341.528234147214"
      /><line fill="none" x1="911.69878845055" x2="925.755371367578" y1="337.030145740405" y2="342.265967317929" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="509.035476771182" fill="none" x1="829.010854621331" x2="831.569530098557" y1="507.469213765733"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="511.08087289966" fill="none" x1="827.755318417052" x2="830.314001662095" opacity="0.300000011921" y1="509.514605121664"
      /><line fill="none" x1="830.261336654496" x2="832.820019915185" y1="505.420728558584" y2="506.98699631102" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="658.892855496015" fill="none" x1="716.457761689343" x2="718.669051077273" y1="656.865492863719"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="660.659889030918" fill="none" x1="714.833689259263" x2="717.044985357025" opacity="0.300000011921" y1="658.632520226561"
      /><line fill="none" x1="718.077466142691" x2="720.288762260704" y1="655.094460836064" y2="657.121829618331" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="784.349970437002" fill="none" x1="577.372648825156" x2="579.154663173382" y1="781.936585912581"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="785.773204207466" fill="none" x1="575.440183173358" x2="577.22220292495" opacity="0.300000011921" y1="783.359812340033"
      /><line fill="none" x1="579.30159445047" x2="581.08361422617" y1="780.508592308338" y2="782.92198415797" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="880.760866379141" fill="none" x1="416.906146232126" x2="418.19289359704" y1="878.050832944128"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="881.787594882084" fill="none" x1="414.736850847672" x2="416.023602109388" opacity="0.300000011921" y1="879.077553205038"
      /><line fill="none" x1="419.072899894732" x2="420.359651183519" y1="877.01875953358" y2="879.728801197773" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="948.91471971343" fill="none" x1="241.000684396606" x2="242.860257578679" y1="941.648910220984"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="949.506934067476" fill="none" x1="238.674893098817" x2="240.534471870003" opacity="0.300000011921" y1="942.241102586948"
      /><line fill="none" x1="243.32500640278" x2="245.184585246047" y1="941.050976971538" y2="948.316808433618" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="973.370626431594" fill="none" x1="56.17043270745" x2="56.343798240498" y1="970.375639888728"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="973.506369808315" fill="none" x1="53.774274706408" x2="53.947640751343" opacity="0.300000011921" y1="970.511374163023"
      /><line fill="none" x1="58.566248258238" x2="58.73961433309" y1="970.233989594755" y2="973.228985238315" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="966.139945729896" fill="none" x1="-130.739934684102" x2="-131.143453001029" y1="963.167207435343"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="965.814204403237" fill="none" x1="-133.11772434323" x2="-133.521243901268" opacity="0.300000011921" y1="962.84145707675"
      /><line fill="none" x1="-128.361347952177" x2="-128.76486748052" y1="963.487085721392" y2="966.459833051909" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="923.13096005603" fill="none" x1="-312.808712328908" x2="-313.774171317578" y1="920.290557102011"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="922.355796949772" fill="none" x1="-315.080078821393" x2="-316.045540758213" opacity="0.300000011921" y1="919.515385368785"
      /><line fill="none" x1="-310.535438757946" x2="-311.500900666393" y1="921.060118165698" y2="923.900529756329" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="845.936387538238" fill="none" x1="-483.293489584205" x2="-484.785136156995" y1="843.333506345812"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="844.740508661423" fill="none" x1="-485.374319171214" x2="-486.865970290017" opacity="0.300000011921" y1="842.13761956647"
      /><line fill="none" x1="-481.209713536385" x2="-482.701364629187" y1="844.524251634155" y2="847.127140744009" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="746.490790274699" fill="none" x1="-635.88083703357" x2="-645.693812913718" y1="735.145945437697"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="744.918508797936" fill="none" x1="-637.694071980467" x2="-647.507077374649" opacity="0.300000011921" y1="733.573629952011"
      /><line fill="none" x1="-634.063725357508" x2="-643.87673064042" y1="736.71377901174" y2="748.05865795391" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="601.58533149426" fill="none" x1="-764.920106780634" x2="-767.280971307735" y1="599.734299705047"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="599.694819245238" fill="none" x1="-766.3985989758" x2="-768.759470686652" opacity="0.300000011921" y1="597.843781842658"
      /><line fill="none" x1="-763.436951151828" x2="-765.797822844189" y1="601.621161210276" y2="603.47219863644" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="443.477709514534" fill="none" x1="-865.632688473137" x2="-868.304394301758" y1="442.113162716027"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="441.339003478246" fill="none" x1="-866.721686071467" x2="-869.393400026034" opacity="0.300000011921" y1="439.97445254632"
      /><line fill="none" x1="-864.538413433982" x2="-867.210127374919" y1="444.249177486074" y2="445.613728444689" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="268.947124371451" fill="none" x1="-934.288971842655" x2="-937.172579780441" y1="268.119594758"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="266.639425575813" fill="none" x1="-934.948146847817" x2="-937.831763552824" opacity="0.300000011921" y1="265.81189346196"
      /><line fill="none" x1="-933.624100824821" x2="-936.507717521561" y1="270.425661428506" y2="271.253193571166" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="84.456830720632" fill="none" x1="-968.346462444665" x2="-971.335186094186" y1="84.196963549183"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="82.065598370244" fill="none" x1="-968.551404144248" x2="-971.540136877594" opacity="0.300000011921" y1="81.805730424005"
      /><line fill="none" x1="-968.135617096546" x2="-971.124349827295" y1="86.587683356763" y2="86.847551332857" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-103.637214779231" fill="none" x1="-966.543935866771" x2="-974.001836606484" y1="-102.843667958563"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-106.023429504904" fill="none" x1="-966.287054815103" x2="-973.744978110808" opacity="0.300000011921" y1="-105.229880246787"
      /><line fill="none" x1="-966.794924259236" x2="-974.252847562814" y1="-100.456828670713" y2="-101.250377854843" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-286.958720255439" fill="none" x1="-928.948143665938" x2="-931.815267566142" y1="-286.07577034696"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-289.25154767089" fill="none" x1="-928.238952738095" x2="-931.106085346882" opacity="0.300000011921" y1="-288.368595064866"
      /><line fill="none" x1="-929.651671142154" x2="-932.518803759762" y1="-283.78120153139" y2="-284.664154108773" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-460.129635973181" fill="none" x1="-856.951341410294" x2="-859.596252957857" y1="-458.713852477879"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-462.244169051937" fill="none" x1="-855.816103519232" x2="-858.461023097429" opacity="0.300000011921" y1="-460.828381240955"
      /><line fill="none" x1="-858.081354787477" x2="-860.726274379816" y1="-456.596527106907" y2="-458.012314891468" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-616.260930758841" fill="none" x1="-753.219730367582" x2="-755.544482621803" y1="-614.364743279583"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-618.118863651215" fill="none" x1="-751.700485890228" x2="-754.025245199742" opacity="0.300000011921" y1="-616.222670397962"
      /><line fill="none" x1="-754.734382744141" x2="-757.059142072596" y1="-612.503070607666" y2="-614.399263837697" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-749.570716486136" fill="none" x1="-621.594722158907" x2="-623.513224387792" y1="-747.264345050794"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-751.103245816454" fill="none" x1="-619.747732087759" x2="-621.666240135322" opacity="0.300000011921" y1="-748.796867362624"
      /><line fill="none" x1="-623.437922598023" x2="-625.356430668625" y1="-745.72726694594" y2="-748.033645380605" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-865.646817492258" fill="none" x1="-466.950682766617" x2="-474.156711821657" y1="-852.491090782649"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-866.797221826006" fill="none" x1="-464.84434524041" x2="-472.050395863321" opacity="0.300000011921" y1="-853.641455587774"
      /><line fill="none" x1="-469.054173468033" x2="-476.260224219974" y1="-851.335528656135" y2="-864.49129482369" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-929.006682801402" fill="none" x1="-295.014423951224" x2="-295.924962296753" y1="-926.148200700475"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-929.732298230998" fill="none" x1="-292.726741320157" x2="-293.637282418472" opacity="0.300000011921" y1="-926.873807438791"
      /><line fill="none" x1="-297.300307988978" x2="-298.210849115848" y1="-925.416947580743" y2="-928.275438363854" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-968.487951589403" fill="none" x1="-112.153126710533" x2="-112.499278336183" y1="-965.507988661436"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-968.761938491715" fill="none" x1="-109.768816936237" x2="-110.114969598934" opacity="0.300000011921" y1="-965.781966506115"
      /><line fill="none" x1="-114.536752728892" x2="-114.882905421357" y1="-965.22812447334" y2="-968.208096455482" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-987" fill="none" x1="0" x2="0" y1="-972"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-986.997082068075" fill="none" x1="2.399997656715" x2="2.399997730275" opacity="0.300000011921" y1="-971.997037038307"
      /><line fill="none" x1="-2.399997656715" x2="-2.399997730275" y1="-971.997037038307" y2="-986.997082068075" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-345" fill="none" x1="0" x2="0" y1="-360"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-344.991652207744" fill="none" x1="2.39998219842" x2="2.399980618928" opacity="0.300000011921" y1="-359.992000029789"
      /><line fill="none" x1="-2.39998219842" x2="-2.399980618928" y1="-359.992000029789" y2="-344.991652207744" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-350.389749108544" fill="none" x1="68.95609152163" x2="68.381457425617" y1="-353.334200781725"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-349.922127475741" fill="none" x1="71.310103036328" x2="70.73545576902" opacity="0.300000011921" y1="-352.866645072821"
      /><line fill="none" x1="66.599015303166" x2="66.024368624827" y1="-353.786052806846" y2="-350.841535094825" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-330.803788685426" fill="none" x1="135.358586037926" x2="134.230597820944" y1="-333.583652455892"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-329.893929682359" fill="none" x1="137.579452601599" x2="136.451438829829" opacity="0.300000011921" y1="-332.673855633178"
      /><line fill="none" x1="133.131703559498" x2="132.003690343775" y1="-334.478623393702" y2="-331.698697217256" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-298.96743028441" fill="none" x1="196.748451904231" x2="195.108881471696" y1="-301.479761631338"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-297.64902800792" fill="none" x1="198.753929902411" x2="197.114322477948" opacity="0.300000011921" y1="-300.161415488979"
      /><line fill="none" x1="194.734229562971" x2="193.094622641041" y1="-302.784708723073" y2="-300.272320914056" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-256.059644866286" fill="none" x1="250.852286232203" x2="248.761850513601" y1="-258.211406587852"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-254.381522676729" fill="none" x1="252.56810836671" x2="250.477625588931" opacity="0.300000011921" y1="-256.533332407431"
      /><line fill="none" x1="249.125315148711" x2="247.034832801342" y1="-259.878004748489" y2="-257.726194599643" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-201.102141508418" fill="none" x1="295.666504040902" x2="289.506785206717" y1="-205.380910476682"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-199.126385620813" fill="none" x1="297.029129612609" x2="290.869270548801" opacity="0.300000011921" y1="-203.405251066868"
      /><line fill="none" x1="294.290737784613" x2="288.130879593154" y1="-207.34744188002" y2="-203.068575178128" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-143.73683120932" fill="none" x1="329.531535452347" x2="326.785439323577" y1="-144.944703740491"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-141.53672282761" fill="none" x1="330.490503414194" x2="327.744345628144" opacity="0.300000011921" y1="-142.744622151002"
      /><line fill="none" x1="328.557921699014" x2="325.81176415457" y1="-147.138343367134" y2="-145.930443494449" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-78.481365878639" fill="none" x1="351.193283244818" x2="348.266672551112" y1="-79.14087315493"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-76.138321524242" fill="none" x1="351.713080886304" x2="348.786404545061" opacity="0.300000011921" y1="-76.797843286541"
      /><line fill="none" x1="350.657877071086" x2="347.731200861762" y1="-81.480385664277" y2="-80.820863316577" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-10.319561507275" fill="none" x1="359.84956485442" x2="356.850818480633" y1="-10.406280511538"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-7.920349309223" fill="none" x1="359.910942916031" x2="356.912129335527" opacity="0.300000011921" y1="-8.007069956832"
      /><line fill="none" x1="359.772193538367" x2="356.773379975209" y1="-12.80502856661" y2="-12.718307319171" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="58.224399114245" fill="none" x1="355.179818974559" x2="352.219987149771" y1="58.713679779071"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="60.590931007095" fill="none" x1="354.780504490545" x2="351.820606388673" opacity="0.300000011921" y1="61.080222932093"
      /><line fill="none" x1="355.56334774762" x2="352.603449547879" y1="56.344527138886" y2="55.855235805934" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="120.423536358955" fill="none" x1="337.356976652101" x2="323.300435958264" y1="125.659342287605"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="122.669650879901" fill="none" x1="336.511757123437" x2="322.454891035945" opacity="0.300000011921" y1="127.90557969728"
      /><line fill="none" x1="338.187202593189" x2="324.130335403042" y1="123.407520039069" y2="118.171594181984" opacity="0.300000011921" stroke="black"
      /><rect x="217.670028686523" width="83.1328125" height="32.03125" y="83.491050720215" opacity="0.600000023842" stroke="none"
      /><path fill="black" d="M1720.091918945312 1585.912963867188 L1731.716918945312 1585.912963867188 L1731.716918945312 1588.412963867188 L1722.810668945312 1588.412963867188 L1722.810668945312 1593.772338867188 Q1723.451293945312 1593.553588867188 1724.091918945312 1593.444213867188 Q1724.732543945312 1593.334838867188 1725.388793945312 1593.334838867188 Q1729.045043945312 1593.334838867188 1731.185668945312 1595.350463867188 Q1733.326293945312 1597.350463867188 1733.326293945312 1600.772338867188 Q1733.326293945312 1604.303588867188 1731.123168945312 1606.256713867188 Q1728.935668945312 1608.209838867188 1724.935668945312 1608.209838867188 Q1723.545043945312 1608.209838867188 1722.123168945312 1607.975463867188 Q1720.701293945312 1607.741088867188 1719.170043945312 1607.272338867188 L1719.170043945312 1604.303588867188 Q1720.498168945312 1605.022338867188 1721.904418945312 1605.381713867188 Q1723.310668945312 1605.725463867188 1724.873168945312 1605.725463867188 Q1727.404418945312 1605.725463867188 1728.873168945312 1604.397338867188 Q1730.357543945312 1603.053588867188 1730.357543945312 1600.772338867188 Q1730.357543945312 1598.491088867188 1728.873168945312 1597.162963867188 Q1727.404418945312 1595.819213867188 1724.873168945312 1595.819213867188 Q1723.685668945312 1595.819213867188 1722.498168945312 1596.084838867188 Q1721.326293945312 1596.350463867188 1720.091918945312 1596.897338867188 L1720.091918945312 1585.912963867188 ZM1748.199340820312 1584.991088867188 L1750.918090820312 1584.991088867188 L1750.918090820312 1598.459838867188 L1758.964965820312 1591.381713867188 L1762.402465820312 1591.381713867188 L1753.699340820312 1599.053588867188 L1762.761840820312 1607.787963867188 L1759.246215820312 1607.787963867188 L1750.918090820312 1599.772338867188 L1750.918090820312 1607.787963867188 L1748.199340820312 1607.787963867188 L1748.199340820312 1584.991088867188 ZM1777.463012695312 1599.600463867188 Q1777.463012695312 1596.631713867188 1776.228637695312 1594.944213867188 Q1775.009887695312 1593.241088867188 1772.869262695312 1593.241088867188 Q1770.728637695312 1593.241088867188 1769.509887695312 1594.944213867188 Q1768.291137695312 1596.631713867188 1768.291137695312 1599.600463867188 Q1768.291137695312 1602.569213867188 1769.509887695312 1604.272338867188 Q1770.728637695312 1605.959838867188 1772.869262695312 1605.959838867188 Q1775.009887695312 1605.959838867188 1776.228637695312 1604.272338867188 Q1777.463012695312 1602.569213867188 1777.463012695312 1599.600463867188 ZM1768.291137695312 1593.866088867188 Q1769.134887695312 1592.412963867188 1770.431762695312 1591.709838867188 Q1771.728637695312 1590.991088867188 1773.525512695312 1590.991088867188 Q1776.525512695312 1590.991088867188 1778.384887695312 1593.366088867188 Q1780.259887695312 1595.725463867188 1780.259887695312 1599.600463867188 Q1780.259887695312 1603.459838867188 1778.384887695312 1605.834838867188 Q1776.525512695312 1608.209838867188 1773.525512695312 1608.209838867188 Q1771.728637695312 1608.209838867188 1770.431762695312 1607.506713867188 Q1769.134887695312 1606.787963867188 1768.291137695312 1605.319213867188 L1768.291137695312 1607.787963867188 L1765.572387695312 1607.787963867188 L1765.572387695312 1584.991088867188 L1768.291137695312 1584.991088867188 L1768.291137695312 1593.866088867188 ZM1787.334106445312 1605.319213867188 L1787.334106445312 1614.022338867188 L1784.615356445312 1614.022338867188 L1784.615356445312 1591.381713867188 L1787.334106445312 1591.381713867188 L1787.334106445312 1593.866088867188 Q1788.177856445312 1592.412963867188 1789.474731445312 1591.709838867188 Q1790.771606445312 1590.991088867188 1792.568481445312 1590.991088867188 Q1795.568481445312 1590.991088867188 1797.427856445312 1593.366088867188 Q1799.302856445312 1595.725463867188 1799.302856445312 1599.600463867188 Q1799.302856445312 1603.459838867188 1797.427856445312 1605.834838867188 Q1795.568481445312 1608.209838867188 1792.568481445312 1608.209838867188 Q1790.771606445312 1608.209838867188 1789.474731445312 1607.506713867188 Q1788.177856445312 1606.787963867188 1787.334106445312 1605.319213867188 ZM1796.505981445312 1599.600463867188 Q1796.505981445312 1596.631713867188 1795.271606445312 1594.944213867188 Q1794.052856445312 1593.241088867188 1791.912231445312 1593.241088867188 Q1789.771606445312 1593.241088867188 1788.552856445312 1594.944213867188 Q1787.334106445312 1596.631713867188 1787.334106445312 1599.600463867188 Q1787.334106445312 1602.569213867188 1788.552856445312 1604.272338867188 Q1789.771606445312 1605.959838867188 1791.912231445312 1605.959838867188 Q1794.052856445312 1605.959838867188 1795.271606445312 1604.272338867188 Q1796.505981445312 1602.569213867188 1796.505981445312 1599.600463867188 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="186.385297648525" fill="none" x1="307.04105726716" x2="304.482381789933" y1="187.951560653975"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="188.42801080785" fill="none" x1="305.781233047585" x2="303.222500390384" opacity="0.300000011921" y1="189.994309167139"
      /><line fill="none" x1="308.287235268335" x2="305.728502297839" y1="185.90045876922" y2="184.334160921735" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="241.256153243156" fill="none" x1="265.354726551608" x2="263.143437163678" y1="243.283515875452"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="243.019719700053" fill="none" x1="263.726951726114" x2="261.5156129888" opacity="0.300000011921" y1="245.047127984092"
      /><line fill="none" x1="266.970707877615" x2="264.759368734774" y1="241.509091206367" y2="239.481683364645" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="287.192758406164" fill="none" x1="213.841721787095" x2="212.059707438869" y1="289.606142930585"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="288.611869383355" fill="none" x1="211.906276467676" x2="210.124222428175" opacity="0.300000011921" y1="291.025308166841"
      /><line fill="none" x1="215.767663065379" x2="213.985608543136" y1="288.174106358127" y2="285.760667931092" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="322.493978766516" fill="none" x1="154.409683789676" x2="153.122936424762" y1="325.204012201529"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="323.516081437101" fill="none" x1="152.238241809095" x2="150.95146588087" opacity="0.300000011921" y1="326.226175729164"
      /><line fill="none" x1="156.574263143198" x2="155.287486672893" y1="324.167395216059" y2="321.457301181379" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="341.493046144956" fill="none" x1="89.259512739484" x2="87.399939557411" y1="348.758855637402"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="342.080189896014" fill="none" x1="86.932487410278" x2="85.072872766278" opacity="0.300000011921" y1="349.346164473953"
      /><line fill="none" x1="91.582570994007" x2="89.722954868662" y1="348.156046464983" y2="340.890072266172" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="356.403398601107" fill="none" x1="20.803863965722" x2="20.630498432675" y1="359.398385143973"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="356.534036266646" fill="none" x1="18.407430196893" x2="18.234061078486" opacity="0.300000011921" y1="359.529089940642"
      /><line fill="none" x1="23.199373121818" x2="23.026003404334" y1="359.25170714522" y2="356.256653505901" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="353.75585705187" fill="none" x1="-48.422198031149" x2="-48.018679714223" y1="356.728595346423"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="353.42505094527" fill="none" x1="-50.799294982141" x2="-50.395767325575" opacity="0.300000011921" y1="356.397855814702"
      /><line fill="none" x1="-46.04294899048" x2="-45.639421928542" y1="357.043480332942" y2="354.070675382795" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="338.007951528208" fill="none" x1="-115.855078640336" x2="-114.889619651667" y1="340.848354482226"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="337.227952133284" fill="none" x1="-118.124809601282" x2="-117.159328693841" opacity="0.300000011921" y1="340.068418640516"
      /><line fill="none" x1="-113.580198583958" x2="-112.614718244674" y1="341.61314156459" y2="338.772674864241" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="309.742861898616" fill="none" x1="-178.997588734891" x2="-177.5059421621" y1="312.345743091042"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="308.542554322907" fill="none" x1="-181.075900534316" x2="-179.584220275324" opacity="0.300000011921" y1="311.145493693363"
      /><line fill="none" x1="-176.9113215167" x2="-175.419641778354" y1="313.532110507385" y2="310.92917083856" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="260.931431251035" fill="none" x1="-235.511421123545" x2="-225.698445243397" y1="272.276276088036"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="259.355054162085" fill="none" x1="-237.321349266072" x2="-227.508144646696" opacity="0.300000011921" y1="270.700161031594"
      /><line fill="none" x1="-233.69102584572" x2="-223.877823615556" y1="273.840290021712" y2="262.4951810856" opacity="0.300000011921" stroke="black"
      /><rect x="-232.919860839844" width="101.2353515625" height="32.03125" y="200.574600219727" opacity="0.600000023842" stroke="none"
      /><path fill="black" d="M1269.001953125 1722.387084960938 L1273.845703125 1722.387084960938 L1273.845703125 1705.699584960938 L1268.580078125 1706.746459960938 L1268.580078125 1704.058959960938 L1273.814453125 1702.996459960938 L1276.767578125 1702.996459960938 L1276.767578125 1722.387084960938 L1281.595703125 1722.387084960938 L1281.595703125 1724.871459960938 L1269.001953125 1724.871459960938 L1269.001953125 1722.387084960938 ZM1293.9013671875 1704.949584960938 Q1291.6201171875 1704.949584960938 1290.4638671875 1707.199584960938 Q1289.3232421875 1709.449584960938 1289.3232421875 1713.965209960938 Q1289.3232421875 1718.449584960938 1290.4638671875 1720.699584960938 Q1291.6201171875 1722.949584960938 1293.9013671875 1722.949584960938 Q1296.2138671875 1722.949584960938 1297.3544921875 1720.699584960938 Q1298.5107421875 1718.449584960938 1298.5107421875 1713.965209960938 Q1298.5107421875 1709.449584960938 1297.3544921875 1707.199584960938 Q1296.2138671875 1704.949584960938 1293.9013671875 1704.949584960938 ZM1293.9013671875 1702.605834960938 Q1297.5888671875 1702.605834960938 1299.5263671875 1705.512084960938 Q1301.4638671875 1708.418334960938 1301.4638671875 1713.965209960938 Q1301.4638671875 1719.480834960938 1299.5263671875 1722.387084960938 Q1297.5888671875 1725.293334960938 1293.9013671875 1725.293334960938 Q1290.2294921875 1725.293334960938 1288.2919921875 1722.387084960938 Q1286.3544921875 1719.480834960938 1286.3544921875 1713.965209960938 Q1286.3544921875 1708.418334960938 1288.2919921875 1705.512084960938 Q1290.2294921875 1702.605834960938 1293.9013671875 1702.605834960938 ZM1315.7119140625 1702.074584960938 L1318.4306640625 1702.074584960938 L1318.4306640625 1715.543334960938 L1326.4775390625 1708.465209960938 L1329.9150390625 1708.465209960938 L1321.2119140625 1716.137084960938 L1330.2744140625 1724.871459960938 L1326.7587890625 1724.871459960938 L1318.4306640625 1716.855834960938 L1318.4306640625 1724.871459960938 L1315.7119140625 1724.871459960938 L1315.7119140625 1702.074584960938 ZM1344.9755859375 1716.683959960938 Q1344.9755859375 1713.715209960938 1343.7412109375 1712.027709960938 Q1342.5224609375 1710.324584960938 1340.3818359375 1710.324584960938 Q1338.2412109375 1710.324584960938 1337.0224609375 1712.027709960938 Q1335.8037109375 1713.715209960938 1335.8037109375 1716.683959960938 Q1335.8037109375 1719.652709960938 1337.0224609375 1721.355834960938 Q1338.2412109375 1723.043334960938 1340.3818359375 1723.043334960938 Q1342.5224609375 1723.043334960938 1343.7412109375 1721.355834960938 Q1344.9755859375 1719.652709960938 1344.9755859375 1716.683959960938 ZM1335.8037109375 1710.949584960938 Q1336.6474609375 1709.496459960938 1337.9443359375 1708.793334960938 Q1339.2412109375 1708.074584960938 1341.0380859375 1708.074584960938 Q1344.0380859375 1708.074584960938 1345.8974609375 1710.449584960938 Q1347.7724609375 1712.808959960938 1347.7724609375 1716.683959960938 Q1347.7724609375 1720.543334960938 1345.8974609375 1722.918334960938 Q1344.0380859375 1725.293334960938 1341.0380859375 1725.293334960938 Q1339.2412109375 1725.293334960938 1337.9443359375 1724.590209960938 Q1336.6474609375 1723.871459960938 1335.8037109375 1722.402709960938 L1335.8037109375 1724.871459960938 L1333.0849609375 1724.871459960938 L1333.0849609375 1702.074584960938 L1335.8037109375 1702.074584960938 L1335.8037109375 1710.949584960938 ZM1354.8466796875 1722.402709960938 L1354.8466796875 1731.105834960938 L1352.1279296875 1731.105834960938 L1352.1279296875 1708.465209960938 L1354.8466796875 1708.465209960938 L1354.8466796875 1710.949584960938 Q1355.6904296875 1709.496459960938 1356.9873046875 1708.793334960938 Q1358.2841796875 1708.074584960938 1360.0810546875 1708.074584960938 Q1363.0810546875 1708.074584960938 1364.9404296875 1710.449584960938 Q1366.8154296875 1712.808959960938 1366.8154296875 1716.683959960938 Q1366.8154296875 1720.543334960938 1364.9404296875 1722.918334960938 Q1363.0810546875 1725.293334960938 1360.0810546875 1725.293334960938 Q1358.2841796875 1725.293334960938 1356.9873046875 1724.590209960938 Q1355.6904296875 1723.871459960938 1354.8466796875 1722.402709960938 ZM1364.0185546875 1716.683959960938 Q1364.0185546875 1713.715209960938 1362.7841796875 1712.027709960938 Q1361.5654296875 1710.324584960938 1359.4248046875 1710.324584960938 Q1357.2841796875 1710.324584960938 1356.0654296875 1712.027709960938 Q1354.8466796875 1713.715209960938 1354.8466796875 1716.683959960938 Q1354.8466796875 1719.652709960938 1356.0654296875 1721.355834960938 Q1357.2841796875 1723.043334960938 1359.4248046875 1723.043334960938 Q1361.5654296875 1723.043334960938 1362.7841796875 1721.355834960938 Q1364.0185546875 1719.652709960938 1364.0185546875 1716.683959960938 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="220.27278291636" fill="none" x1="-283.303743252087" x2="-280.942878724986" y1="222.123814705573"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="218.379127994207" fill="none" x1="-284.778262084397" x2="-282.417344468235" opacity="0.300000011921" y1="220.23020102654"
      /><line fill="none" x1="-281.816633189183" x2="-279.455715943277" y1="224.007556251823" y2="222.156482747253" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="162.381069022245" fill="none" x1="-320.604699434495" x2="-317.932993605874" y1="163.745615820751"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="160.240051124433" fill="none" x1="-321.689204253923" x2="-319.017438419343" opacity="0.300000011921" y1="161.604628233469"
      /><line fill="none" x1="-319.505945570372" x2="-316.834180008738" y1="165.879325852206" y2="164.514748208757" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="98.476024000623" fill="none" x1="-346.032952534317" x2="-343.149344596531" y1="99.303553614074"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="96.166929768428" fill="none" x1="-346.687281722098" x2="-343.803609083608" opacity="0.300000011921" y1="96.994477637352"
      /><line fill="none" x1="-345.363244161466" x2="-342.479571688505" y1="101.608216115959" y2="100.780667670236" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="30.924193402324" fill="none" x1="-358.646837942469" x2="-355.658114292948" y1="31.184060573772"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="28.532533716455" fill="none" x1="-358.846760237556" x2="-355.857969588598" opacity="0.300000011921" y1="28.792406412279"
      /><line fill="none" x1="-358.43097584727" x2="-355.442185250292" y1="33.574328782177" y2="33.314455488528" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-37.296700571392" fill="none" x1="-357.979235506211" x2="-350.521334766499" y1="-38.09024739206"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-39.682345890033" fill="none" x1="-357.717347342615" x2="-350.259277428398" opacity="0.300000011921" y1="-40.475911480323"
      /><line fill="none" x1="-358.225213540806" x2="-350.767143464802" y1="-35.702890410217" y2="-34.909326340435" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-105.071039108914" fill="none" x1="-344.054868024422" x2="-341.187744124218" y1="-105.953989017393"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-107.362346619123" fill="none" x1="-343.340867701675" x2="-340.473679641225" opacity="0.300000011921" y1="-108.245316600122"
      /><line fill="none" x1="-344.753577076639" x2="-341.886388839574" y1="-103.657952386019" y2="-102.774982978522" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-168.47823594095" fill="none" x1="-317.389385707516" x2="-314.744474159954" y1="-169.894019436252"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-170.590342085458" fill="none" x1="-316.249714241138" x2="-313.604743566111" opacity="0.300000011921" y1="-172.006157571171"
      /><line fill="none" x1="-318.5149510315" x2="-315.869980073278" y1="-167.77433048414" y2="-166.35851552748" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-225.646310031699" fill="none" x1="-278.970270506512" x2="-276.645518252291" y1="-227.542497510957"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-227.500998835579" fill="none" x1="-277.447132458555" x2="-275.122328299275" opacity="0.300000011921" y1="-229.397229038463"
      /><line fill="none" x1="-280.481009921946" x2="-278.156205383377" y1="-225.677653021217" y2="-223.781423283347" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-274.458200805693" fill="none" x1="-230.220267466262" x2="-228.301765237376" y1="-276.764572241035"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-275.986789029062" fill="none" x1="-228.370068016779" x2="-226.451523027398" opacity="0.300000011921" y1="-278.293212339093"
      /><line fill="none" x1="-232.060234941956" x2="-230.141689491239" y1="-275.223631541123" y2="-272.917208614844" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-302.581714321002" fill="none" x1="-172.944697320969" x2="-165.738668265929" y1="-315.737441030611"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-303.727348240867" fill="none" x1="-170.835953459094" x2="-163.629758694961" opacity="0.300000011921" y1="-316.883380766051"
      /><line fill="none" x1="-175.045754780473" x2="-167.839557245757" y1="-314.577468572265" y2="-301.421437564663" opacity="0.300000011921" stroke="black"
      /><rect x="-186.363098144531" width="101.2353515625" height="32.03125" y="-268.994171142578" opacity="0.600000023842" stroke="none"
      /><path fill="black" d="M1315.558837890625 1252.818359375 L1320.402587890625 1252.818359375 L1320.402587890625 1236.130859375 L1315.136962890625 1237.177734375 L1315.136962890625 1234.490234375 L1320.371337890625 1233.427734375 L1323.324462890625 1233.427734375 L1323.324462890625 1252.818359375 L1328.152587890625 1252.818359375 L1328.152587890625 1255.302734375 L1315.558837890625 1255.302734375 L1315.558837890625 1252.818359375 ZM1334.161376953125 1233.427734375 L1345.786376953125 1233.427734375 L1345.786376953125 1235.927734375 L1336.880126953125 1235.927734375 L1336.880126953125 1241.287109375 Q1337.520751953125 1241.068359375 1338.161376953125 1240.958984375 Q1338.802001953125 1240.849609375 1339.458251953125 1240.849609375 Q1343.114501953125 1240.849609375 1345.255126953125 1242.865234375 Q1347.395751953125 1244.865234375 1347.395751953125 1248.287109375 Q1347.395751953125 1251.818359375 1345.192626953125 1253.771484375 Q1343.005126953125 1255.724609375 1339.005126953125 1255.724609375 Q1337.614501953125 1255.724609375 1336.192626953125 1255.490234375 Q1334.770751953125 1255.255859375 1333.239501953125 1254.787109375 L1333.239501953125 1251.818359375 Q1334.567626953125 1252.537109375 1335.973876953125 1252.896484375 Q1337.380126953125 1253.240234375 1338.942626953125 1253.240234375 Q1341.473876953125 1253.240234375 1342.942626953125 1251.912109375 Q1344.427001953125 1250.568359375 1344.427001953125 1248.287109375 Q1344.427001953125 1246.005859375 1342.942626953125 1244.677734375 Q1341.473876953125 1243.333984375 1338.942626953125 1243.333984375 Q1337.755126953125 1243.333984375 1336.567626953125 1243.599609375 Q1335.395751953125 1243.865234375 1334.161376953125 1244.412109375 L1334.161376953125 1233.427734375 ZM1362.268798828125 1232.505859375 L1364.987548828125 1232.505859375 L1364.987548828125 1245.974609375 L1373.034423828125 1238.896484375 L1376.471923828125 1238.896484375 L1367.768798828125 1246.568359375 L1376.831298828125 1255.302734375 L1373.315673828125 1255.302734375 L1364.987548828125 1247.287109375 L1364.987548828125 1255.302734375 L1362.268798828125 1255.302734375 L1362.268798828125 1232.505859375 ZM1391.532470703125 1247.115234375 Q1391.532470703125 1244.146484375 1390.298095703125 1242.458984375 Q1389.079345703125 1240.755859375 1386.938720703125 1240.755859375 Q1384.798095703125 1240.755859375 1383.579345703125 1242.458984375 Q1382.360595703125 1244.146484375 1382.360595703125 1247.115234375 Q1382.360595703125 1250.083984375 1383.579345703125 1251.787109375 Q1384.798095703125 1253.474609375 1386.938720703125 1253.474609375 Q1389.079345703125 1253.474609375 1390.298095703125 1251.787109375 Q1391.532470703125 1250.083984375 1391.532470703125 1247.115234375 ZM1382.360595703125 1241.380859375 Q1383.204345703125 1239.927734375 1384.501220703125 1239.224609375 Q1385.798095703125 1238.505859375 1387.594970703125 1238.505859375 Q1390.594970703125 1238.505859375 1392.454345703125 1240.880859375 Q1394.329345703125 1243.240234375 1394.329345703125 1247.115234375 Q1394.329345703125 1250.974609375 1392.454345703125 1253.349609375 Q1390.594970703125 1255.724609375 1387.594970703125 1255.724609375 Q1385.798095703125 1255.724609375 1384.501220703125 1255.021484375 Q1383.204345703125 1254.302734375 1382.360595703125 1252.833984375 L1382.360595703125 1255.302734375 L1379.641845703125 1255.302734375 L1379.641845703125 1232.505859375 L1382.360595703125 1232.505859375 L1382.360595703125 1241.380859375 ZM1401.403564453125 1252.833984375 L1401.403564453125 1261.537109375 L1398.684814453125 1261.537109375 L1398.684814453125 1238.896484375 L1401.403564453125 1238.896484375 L1401.403564453125 1241.380859375 Q1402.247314453125 1239.927734375 1403.544189453125 1239.224609375 Q1404.841064453125 1238.505859375 1406.637939453125 1238.505859375 Q1409.637939453125 1238.505859375 1411.497314453125 1240.880859375 Q1413.372314453125 1243.240234375 1413.372314453125 1247.115234375 Q1413.372314453125 1250.974609375 1411.497314453125 1253.349609375 Q1409.637939453125 1255.724609375 1406.637939453125 1255.724609375 Q1404.841064453125 1255.724609375 1403.544189453125 1255.021484375 Q1402.247314453125 1254.302734375 1401.403564453125 1252.833984375 ZM1410.575439453125 1247.115234375 Q1410.575439453125 1244.146484375 1409.341064453125 1242.458984375 Q1408.122314453125 1240.755859375 1405.981689453125 1240.755859375 Q1403.841064453125 1240.755859375 1402.622314453125 1242.458984375 Q1401.403564453125 1244.146484375 1401.403564453125 1247.115234375 Q1401.403564453125 1250.083984375 1402.622314453125 1251.787109375 Q1403.841064453125 1253.474609375 1405.981689453125 1253.474609375 Q1408.122314453125 1253.474609375 1409.341064453125 1251.787109375 Q1410.575439453125 1250.083984375 1410.575439453125 1247.115234375 Z" transform="matrix(1,0,0,1,-1500,-1500)" stroke="none"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-340.15937001036" fill="none" x1="-109.264601463416" x2="-108.354063117888" y1="-343.017852111287"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-340.880108547255" fill="none" x1="-106.975404651293" x2="-106.06484618766" opacity="0.300000011921" y1="-343.73865479415"
      /><line fill="none" x1="-111.548942089112" x2="-110.638383053706" y1="-342.281804247319" y2="-339.423258182555" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-354.61558842812" fill="none" x1="-41.538195077975" x2="-41.192043452325" y1="-357.595551356087"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-354.884494324655" fill="none" x1="-39.153319350719" x2="-38.807160266293" opacity="0.300000011921" y1="-357.864524064374"
      /><line fill="none" x1="-43.921224670102" x2="-43.575064989604" y1="-357.310685571364" y2="-354.330655900886" opacity="0.300000011921" stroke="black"
    /></g
    ><g stroke-linecap="round" transform="matrix(1,0,0,1,1500,1500)" fill="rgb(0,51,0)" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="rgb(0,51,0)" color-interpolation="linearRGB" stroke-width="6"
    ><line y2="-345" fill="none" x1="0" x2="0" y1="-360"
    /></g
    ><g stroke-linecap="butt" transform="matrix(1,0,0,1,1500,1500)" fill="white" text-rendering="geometricPrecision" image-rendering="optimizeQuality" color-rendering="optimizeQuality" stroke-linejoin="bevel" stroke="white" color-interpolation="linearRGB" stroke-width="1.200000047684"
    ><line y2="-344.991652206914" fill="none" x1="2.399982317627" x2="2.399980738134" opacity="0.300000011921" y1="-359.992000028994"
      /><line fill="none" x1="-2.399982317627" x2="-2.399980738134" y1="-359.992000028994" y2="-344.991652206914" opacity="0.300000011921" stroke="black"
      /><rect stroke-linecap="square" x="-1499" y="-1499" fill="none" width="2998" stroke-linejoin="miter" height="2998" stroke-width="2"
      /><rect stroke-linecap="square" x="-274" y="1391.875" width="548" stroke-linejoin="miter" opacity="0.800000011921" height="103.125" stroke="none" stroke-width="2"
    /></g
    ><g text-rendering="geometricPrecision" stroke-width="2" transform="matrix(1,0,0,1,1500,1500)" color-interpolation="linearRGB" color-rendering="optimizeQuality" image-rendering="optimizeQuality"
    ><path d="M-267.592437744141 1412.8046875 L-230.717437744141 1412.8046875 L-230.717437744141 1419.4453125 L-259.701812744141 1419.4453125 L-259.701812744141 1436.7109375 L-231.936187744141 1436.7109375 L-231.936187744141 1443.3515625 L-259.701812744141 1443.3515625 L-259.701812744141 1464.4921875 L-230.014312744141 1464.4921875 L-230.014312744141 1471.1328125 L-267.592437744141 1471.1328125 L-267.592437744141 1412.8046875 ZM-180.998687744141 1427.3828125 L-196.811187744141 1448.6640625 L-180.170562744141 1471.1328125 L-188.654937744141 1471.1328125 L-201.389312744141 1453.9453125 L-214.123687744141 1471.1328125 L-222.592437744141 1471.1328125 L-205.608062744141 1448.2421875 L-221.154937744141 1427.3828125 L-212.670562744141 1427.3828125 L-201.076812744141 1442.9609375 L-189.467437744141 1427.3828125 L-180.998687744141 1427.3828125 ZM-150.139312744141 1449.1328125 Q-158.842437744141 1449.1328125 -162.201812744141 1451.1328125 Q-165.561187744141 1453.1171875 -165.561187744141 1457.9296875 Q-165.561187744141 1461.7578125 -163.045562744141 1464.0078125 Q-160.529937744141 1466.2421875 -156.186187744141 1466.2421875 Q-150.217437744141 1466.2421875 -146.608062744141 1462.0078125 Q-142.983062744141 1457.7734375 -142.983062744141 1450.7421875 L-142.983062744141 1449.1328125 L-150.139312744141 1449.1328125 ZM-135.795562744141 1446.1640625 L-135.795562744141 1471.1328125 L-142.983062744141 1471.1328125 L-142.983062744141 1464.4921875 Q-145.451812744141 1468.4765625 -149.123687744141 1470.3828125 Q-152.795562744141 1472.2734375 -158.108062744141 1472.2734375 Q-164.826812744141 1472.2734375 -168.795562744141 1468.5078125 Q-172.748687744141 1464.7265625 -172.748687744141 1458.3984375 Q-172.748687744141 1451.0078125 -167.811187744141 1447.2578125 Q-162.873687744141 1443.5078125 -153.061187744141 1443.5078125 L-142.983062744141 1443.5078125 L-142.983062744141 1442.8046875 Q-142.983062744141 1437.8515625 -146.248687744141 1435.1328125 Q-149.514312744141 1432.4140625 -155.404937744141 1432.4140625 Q-159.154937744141 1432.4140625 -162.717437744141 1433.3203125 Q-166.264312744141 1434.2109375 -169.545562744141 1436.0078125 L-169.545562744141 1429.3671875 Q-165.608062744141 1427.8515625 -161.904937744141 1427.0859375 Q-158.186187744141 1426.3203125 -154.670562744141 1426.3203125 Q-145.170562744141 1426.3203125 -140.483062744141 1431.2421875 Q-135.795562744141 1436.1640625 -135.795562744141 1446.1640625 ZM-86.928375244141 1435.7734375 Q-84.240875244141 1430.9296875 -80.490875244141 1428.6328125 Q-76.740875244141 1426.3203125 -71.662750244141 1426.3203125 Q-64.819000244141 1426.3203125 -61.115875244141 1431.1171875 Q-57.397125244141 1435.8984375 -57.397125244141 1444.7265625 L-57.397125244141 1471.1328125 L-64.631500244141 1471.1328125 L-64.631500244141 1444.9609375 Q-64.631500244141 1438.6640625 -66.865875244141 1435.6171875 Q-69.084625244141 1432.5703125 -73.647125244141 1432.5703125 Q-79.240875244141 1432.5703125 -82.490875244141 1436.2890625 Q-85.725250244141 1439.9921875 -85.725250244141 1446.3984375 L-85.725250244141 1471.1328125 L-92.944000244141 1471.1328125 L-92.944000244141 1444.9609375 Q-92.944000244141 1438.6328125 -95.178375244141 1435.6015625 Q-97.397125244141 1432.5703125 -102.053375244141 1432.5703125 Q-107.553375244141 1432.5703125 -110.803375244141 1436.3046875 Q-114.037750244141 1440.0390625 -114.037750244141 1446.3984375 L-114.037750244141 1471.1328125 L-121.272125244141 1471.1328125 L-121.272125244141 1427.3828125 L-114.037750244141 1427.3828125 L-114.037750244141 1434.1796875 Q-111.584625244141 1430.1484375 -108.147125244141 1428.2421875 Q-104.709625244141 1426.3203125 -99.975250244141 1426.3203125 Q-95.209625244141 1426.3203125 -91.881500244141 1428.7421875 Q-88.537750244141 1431.1640625 -86.928375244141 1435.7734375 ZM-36.108062744141 1464.5703125 L-36.108062744141 1487.7734375 L-43.342437744141 1487.7734375 L-43.342437744141 1427.3828125 L-36.108062744141 1427.3828125 L-36.108062744141 1434.0234375 Q-33.842437744141 1430.1171875 -30.389312744141 1428.2265625 Q-26.936187744141 1426.3203125 -22.123687744141 1426.3203125 Q-14.154937744141 1426.3203125 -9.186187744141 1432.6484375 Q-4.201812744141 1438.9765625 -4.201812744141 1449.2890625 Q-4.201812744141 1459.6015625 -9.186187744141 1465.9453125 Q-14.154937744141 1472.2734375 -22.123687744141 1472.2734375 Q-26.936187744141 1472.2734375 -30.389312744141 1470.3828125 Q-33.842437744141 1468.4765625 -36.108062744141 1464.5703125 ZM-11.654937744141 1449.2890625 Q-11.654937744141 1441.3671875 -14.920562744141 1436.8515625 Q-18.186187744141 1432.3359375 -23.889312744141 1432.3359375 Q-29.592437744141 1432.3359375 -32.858062744141 1436.8515625 Q-36.108062744141 1441.3671875 -36.108062744141 1449.2890625 Q-36.108062744141 1457.2265625 -32.858062744141 1461.7421875 Q-29.592437744141 1466.2421875 -23.889312744141 1466.2421875 Q-18.186187744141 1466.2421875 -14.920562744141 1461.7421875 Q-11.654937744141 1457.2265625 -11.654937744141 1449.2890625 ZM7.720062255859 1410.3515625 L14.907562255859 1410.3515625 L14.907562255859 1471.1328125 L7.720062255859 1471.1328125 L7.720062255859 1410.3515625 ZM67.368499755859 1447.4609375 L67.368499755859 1450.9765625 L34.321624755859 1450.9765625 Q34.790374755859 1458.3984375 38.790374755859 1462.2890625 Q42.790374755859 1466.1640625 49.946624755859 1466.1640625 Q54.087249755859 1466.1640625 57.962249755859 1465.1484375 Q61.852874755859 1464.1328125 65.680999755859 1462.1015625 L65.680999755859 1468.8984375 Q61.821624755859 1470.5390625 57.759124755859 1471.3984375 Q53.696624755859 1472.2734375 49.509124755859 1472.2734375 Q39.040374755859 1472.2734375 32.930999755859 1466.1796875 Q26.821624755859 1460.0703125 26.821624755859 1449.6796875 Q26.821624755859 1438.9453125 32.618499755859 1432.6328125 Q38.415374755859 1426.3203125 48.259124755859 1426.3203125 Q57.087249755859 1426.3203125 62.227874755859 1432.0078125 Q67.368499755859 1437.6953125 67.368499755859 1447.4609375 ZM60.180999755859 1445.3515625 Q60.102874755859 1439.4453125 56.868499755859 1435.9296875 Q53.649749755859 1432.4140625 48.337249755859 1432.4140625 Q42.321624755859 1432.4140625 38.712249755859 1435.8203125 Q35.102874755859 1439.2109375 34.555999755859 1445.3828125 L60.180999755859 1445.3515625 ZM138.657562255859 1435.7734375 Q141.345062255859 1430.9296875 145.095062255859 1428.6328125 Q148.845062255859 1426.3203125 153.923187255859 1426.3203125 Q160.766937255859 1426.3203125 164.470062255859 1431.1171875 Q168.188812255859 1435.8984375 168.188812255859 1444.7265625 L168.188812255859 1471.1328125 L160.954437255859 1471.1328125 L160.954437255859 1444.9609375 Q160.954437255859 1438.6640625 158.720062255859 1435.6171875 Q156.501312255859 1432.5703125 151.938812255859 1432.5703125 Q146.345062255859 1432.5703125 143.095062255859 1436.2890625 Q139.860687255859 1439.9921875 139.860687255859 1446.3984375 L139.860687255859 1471.1328125 L132.641937255859 1471.1328125 L132.641937255859 1444.9609375 Q132.641937255859 1438.6328125 130.407562255859 1435.6015625 Q128.188812255859 1432.5703125 123.532562255859 1432.5703125 Q118.032562255859 1432.5703125 114.782562255859 1436.3046875 Q111.548187255859 1440.0390625 111.548187255859 1446.3984375 L111.548187255859 1471.1328125 L104.313812255859 1471.1328125 L104.313812255859 1427.3828125 L111.548187255859 1427.3828125 L111.548187255859 1434.1796875 Q114.001312255859 1430.1484375 117.438812255859 1428.2421875 Q120.876312255859 1426.3203125 125.610687255859 1426.3203125 Q130.376312255859 1426.3203125 133.704437255859 1428.7421875 Q137.048187255859 1431.1640625 138.657562255859 1435.7734375 ZM202.399749755859 1449.1328125 Q193.696624755859 1449.1328125 190.337249755859 1451.1328125 Q186.977874755859 1453.1171875 186.977874755859 1457.9296875 Q186.977874755859 1461.7578125 189.493499755859 1464.0078125 Q192.009124755859 1466.2421875 196.352874755859 1466.2421875 Q202.321624755859 1466.2421875 205.930999755859 1462.0078125 Q209.555999755859 1457.7734375 209.555999755859 1450.7421875 L209.555999755859 1449.1328125 L202.399749755859 1449.1328125 ZM216.743499755859 1446.1640625 L216.743499755859 1471.1328125 L209.555999755859 1471.1328125 L209.555999755859 1464.4921875 Q207.087249755859 1468.4765625 203.415374755859 1470.3828125 Q199.743499755859 1472.2734375 194.430999755859 1472.2734375 Q187.712249755859 1472.2734375 183.743499755859 1468.5078125 Q179.790374755859 1464.7265625 179.790374755859 1458.3984375 Q179.790374755859 1451.0078125 184.727874755859 1447.2578125 Q189.665374755859 1443.5078125 199.477874755859 1443.5078125 L209.555999755859 1443.5078125 L209.555999755859 1442.8046875 Q209.555999755859 1437.8515625 206.290374755859 1435.1328125 Q203.024749755859 1432.4140625 197.134124755859 1432.4140625 Q193.384124755859 1432.4140625 189.821624755859 1433.3203125 Q186.274749755859 1434.2109375 182.993499755859 1436.0078125 L182.993499755859 1429.3671875 Q186.930999755859 1427.8515625 190.634124755859 1427.0859375 Q194.352874755859 1426.3203125 197.868499755859 1426.3203125 Q207.368499755859 1426.3203125 212.055999755859 1431.2421875 Q216.743499755859 1436.1640625 216.743499755859 1446.1640625 ZM238.501312255859 1464.5703125 L238.501312255859 1487.7734375 L231.266937255859 1487.7734375 L231.266937255859 1427.3828125 L238.501312255859 1427.3828125 L238.501312255859 1434.0234375 Q240.766937255859 1430.1171875 244.220062255859 1428.2265625 Q247.673187255859 1426.3203125 252.485687255859 1426.3203125 Q260.454437255859 1426.3203125 265.423187255859 1432.6484375 Q270.407562255859 1438.9765625 270.407562255859 1449.2890625 Q270.407562255859 1459.6015625 265.423187255859 1465.9453125 Q260.454437255859 1472.2734375 252.485687255859 1472.2734375 Q247.673187255859 1472.2734375 244.220062255859 1470.3828125 Q240.766937255859 1468.4765625 238.501312255859 1464.5703125 ZM262.954437255859 1449.2890625 Q262.954437255859 1441.3671875 259.688812255859 1436.8515625 Q256.423187255859 1432.3359375 250.720062255859 1432.3359375 Q245.016937255859 1432.3359375 241.751312255859 1436.8515625 Q238.501312255859 1441.3671875 238.501312255859 1449.2890625 Q238.501312255859 1457.2265625 241.751312255859 1461.7421875 Q245.016937255859 1466.2421875 250.720062255859 1466.2421875 Q256.423187255859 1466.2421875 259.688812255859 1461.7421875 Q262.954437255859 1457.2265625 262.954437255859 1449.2890625 Z" stroke="none"
      /><rect x="-1495" y="-1495" fill="white" width="906.875" height="242.8125" opacity="0.800000011921" stroke="none"
      /><path d="M-1488.592407226562 -1334.3828125 L-1480.701782226562 -1334.3828125 L-1480.701782226562 -1282.6953125 L-1452.311157226562 -1282.6953125 L-1452.311157226562 -1276.0546875 L-1488.592407226562 -1276.0546875 L-1488.592407226562 -1334.3828125 ZM-1406.912719726562 -1299.7265625 L-1406.912719726562 -1296.2109375 L-1439.959594726562 -1296.2109375 Q-1439.490844726562 -1288.7890625 -1435.490844726562 -1284.8984375 Q-1431.490844726562 -1281.0234375 -1424.334594726562 -1281.0234375 Q-1420.193969726562 -1281.0234375 -1416.318969726562 -1282.0390625 Q-1412.428344726562 -1283.0546875 -1408.600219726562 -1285.0859375 L-1408.600219726562 -1278.2890625 Q-1412.459594726562 -1276.6484375 -1416.522094726562 -1275.7890625 Q-1420.584594726562 -1274.9140625 -1424.772094726562 -1274.9140625 Q-1435.240844726562 -1274.9140625 -1441.350219726562 -1281.0078125 Q-1447.459594726562 -1287.1171875 -1447.459594726562 -1297.5078125 Q-1447.459594726562 -1308.2421875 -1441.662719726562 -1314.5546875 Q-1435.865844726562 -1320.8671875 -1426.022094726562 -1320.8671875 Q-1417.193969726562 -1320.8671875 -1412.053344726562 -1315.1796875 Q-1406.912719726562 -1309.4921875 -1406.912719726562 -1299.7265625 ZM-1414.100219726562 -1301.8359375 Q-1414.178344726562 -1307.7421875 -1417.412719726562 -1311.2578125 Q-1420.631469726562 -1314.7734375 -1425.943969726562 -1314.7734375 Q-1431.959594726562 -1314.7734375 -1435.568969726562 -1311.3671875 Q-1439.178344726562 -1307.9765625 -1439.725219726562 -1301.8046875 L-1414.100219726562 -1301.8359375 ZM-1358.756469726562 -1302.4609375 L-1358.756469726562 -1276.0546875 L-1365.943969726562 -1276.0546875 L-1365.943969726562 -1302.2265625 Q-1365.943969726562 -1308.4453125 -1368.365844726562 -1311.5234375 Q-1370.787719726562 -1314.6171875 -1375.631469726562 -1314.6171875 Q-1381.443969726562 -1314.6171875 -1384.803344726562 -1310.8984375 Q-1388.162719726562 -1307.1953125 -1388.162719726562 -1300.7890625 L-1388.162719726562 -1276.0546875 L-1395.397094726562 -1276.0546875 L-1395.397094726562 -1319.8046875 L-1388.162719726562 -1319.8046875 L-1388.162719726562 -1313.0078125 Q-1385.584594726562 -1316.9609375 -1382.100219726562 -1318.9140625 Q-1378.600219726562 -1320.8671875 -1374.022094726562 -1320.8671875 Q-1366.490844726562 -1320.8671875 -1362.631469726562 -1316.1953125 Q-1358.756469726562 -1311.5234375 -1358.756469726562 -1302.4609375 ZM-1315.631469726562 -1298.4453125 Q-1315.631469726562 -1306.2578125 -1318.850219726562 -1310.5546875 Q-1322.068969726562 -1314.8515625 -1327.897094726562 -1314.8515625 Q-1333.678344726562 -1314.8515625 -1336.897094726562 -1310.5546875 Q-1340.115844726562 -1306.2578125 -1340.115844726562 -1298.4453125 Q-1340.115844726562 -1290.6640625 -1336.897094726562 -1286.3671875 Q-1333.678344726562 -1282.0703125 -1327.897094726562 -1282.0703125 Q-1322.068969726562 -1282.0703125 -1318.850219726562 -1286.3671875 Q-1315.631469726562 -1290.6640625 -1315.631469726562 -1298.4453125 ZM-1308.443969726562 -1281.4921875 Q-1308.443969726562 -1270.3046875 -1313.412719726562 -1264.8671875 Q-1318.365844726562 -1259.4140625 -1328.600219726562 -1259.4140625 Q-1332.381469726562 -1259.4140625 -1335.740844726562 -1259.9765625 Q-1339.100219726562 -1260.5390625 -1342.272094726562 -1261.7109375 L-1342.272094726562 -1268.7109375 Q-1339.100219726562 -1266.9921875 -1336.022094726562 -1266.1796875 Q-1332.928344726562 -1265.3515625 -1329.725219726562 -1265.3515625 Q-1322.662719726562 -1265.3515625 -1319.147094726562 -1269.0390625 Q-1315.631469726562 -1272.7265625 -1315.631469726562 -1280.1953125 L-1315.631469726562 -1283.7578125 Q-1317.850219726562 -1279.8828125 -1321.334594726562 -1277.9609375 Q-1324.803344726562 -1276.0546875 -1329.647094726562 -1276.0546875 Q-1337.693969726562 -1276.0546875 -1342.615844726562 -1282.1796875 Q-1347.537719726562 -1288.3203125 -1347.537719726562 -1298.4453125 Q-1347.537719726562 -1308.6015625 -1342.615844726562 -1314.7265625 Q-1337.693969726562 -1320.8671875 -1329.647094726562 -1320.8671875 Q-1324.803344726562 -1320.8671875 -1321.334594726562 -1318.9453125 Q-1317.850219726562 -1317.0390625 -1315.631469726562 -1313.1640625 L-1315.631469726562 -1319.8046875 L-1308.443969726562 -1319.8046875 L-1308.443969726562 -1281.4921875 ZM-1286.522094726562 -1332.2265625 L-1286.522094726562 -1319.8046875 L-1271.725219726562 -1319.8046875 L-1271.725219726562 -1314.2265625 L-1286.522094726562 -1314.2265625 L-1286.522094726562 -1290.4765625 Q-1286.522094726562 -1285.1171875 -1285.068969726562 -1283.5859375 Q-1283.600219726562 -1282.0703125 -1279.100219726562 -1282.0703125 L-1271.725219726562 -1282.0703125 L-1271.725219726562 -1276.0546875 L-1279.100219726562 -1276.0546875 Q-1287.428344726562 -1276.0546875 -1290.600219726562 -1279.1640625 Q-1293.756469726562 -1282.2734375 -1293.756469726562 -1290.4765625 L-1293.756469726562 -1314.2265625 L-1299.022094726562 -1314.2265625 L-1299.022094726562 -1319.8046875 L-1293.756469726562 -1319.8046875 L-1293.756469726562 -1332.2265625 L-1286.522094726562 -1332.2265625 ZM-1225.904907226562 -1302.4609375 L-1225.904907226562 -1276.0546875 L-1233.092407226562 -1276.0546875 L-1233.092407226562 -1302.2265625 Q-1233.092407226562 -1308.4453125 -1235.514282226562 -1311.5234375 Q-1237.936157226562 -1314.6171875 -1242.779907226562 -1314.6171875 Q-1248.592407226562 -1314.6171875 -1251.951782226562 -1310.8984375 Q-1255.311157226562 -1307.1953125 -1255.311157226562 -1300.7890625 L-1255.311157226562 -1276.0546875 L-1262.545532226562 -1276.0546875 L-1262.545532226562 -1336.8359375 L-1255.311157226562 -1336.8359375 L-1255.311157226562 -1313.0078125 Q-1252.733032226562 -1316.9609375 -1249.248657226562 -1318.9140625 Q-1245.748657226562 -1320.8671875 -1241.170532226562 -1320.8671875 Q-1233.639282226562 -1320.8671875 -1229.779907226562 -1316.1953125 Q-1225.904907226562 -1311.5234375 -1225.904907226562 -1302.4609375 ZM-1209.733032226562 -1285.9765625 L-1201.483032226562 -1285.9765625 L-1201.483032226562 -1276.0546875 L-1209.733032226562 -1276.0546875 L-1209.733032226562 -1285.9765625 ZM-1209.733032226562 -1317.4296875 L-1201.483032226562 -1317.4296875 L-1201.483032226562 -1307.5078125 L-1209.733032226562 -1307.5078125 L-1209.733032226562 -1317.4296875 ZM-1156.803344726562 -1282.6953125 L-1143.912719726562 -1282.6953125 L-1143.912719726562 -1327.1953125 L-1157.928344726562 -1324.3828125 L-1157.928344726562 -1331.5703125 L-1143.990844726562 -1334.3828125 L-1136.100219726562 -1334.3828125 L-1136.100219726562 -1282.6953125 L-1123.209594726562 -1282.6953125 L-1123.209594726562 -1276.0546875 L-1156.803344726562 -1276.0546875 L-1156.803344726562 -1282.6953125 ZM-1089.420532226562 -1308.3671875 Q-1094.733032226562 -1308.3671875 -1097.842407226562 -1304.7265625 Q-1100.936157226562 -1301.1015625 -1100.936157226562 -1294.7734375 Q-1100.936157226562 -1288.4765625 -1097.842407226562 -1284.8203125 Q-1094.733032226562 -1281.1796875 -1089.420532226562 -1281.1796875 Q-1084.108032226562 -1281.1796875 -1080.998657226562 -1284.8203125 Q-1077.889282226562 -1288.4765625 -1077.889282226562 -1294.7734375 Q-1077.889282226562 -1301.1015625 -1080.998657226562 -1304.7265625 Q-1084.108032226562 -1308.3671875 -1089.420532226562 -1308.3671875 ZM-1073.748657226562 -1333.0859375 L-1073.748657226562 -1325.8984375 Q-1076.717407226562 -1327.3046875 -1079.748657226562 -1328.0390625 Q-1082.779907226562 -1328.7890625 -1085.748657226562 -1328.7890625 Q-1093.561157226562 -1328.7890625 -1097.686157226562 -1323.5078125 Q-1101.795532226562 -1318.2421875 -1102.389282226562 -1307.5859375 Q-1100.076782226562 -1310.9765625 -1096.608032226562 -1312.7890625 Q-1093.123657226562 -1314.6171875 -1088.951782226562 -1314.6171875 Q-1080.154907226562 -1314.6171875 -1075.061157226562 -1309.2734375 Q-1069.967407226562 -1303.9453125 -1069.967407226562 -1294.7734375 Q-1069.967407226562 -1285.7890625 -1075.279907226562 -1280.3515625 Q-1080.592407226562 -1274.9140625 -1089.420532226562 -1274.9140625 Q-1099.529907226562 -1274.9140625 -1104.889282226562 -1282.6640625 Q-1110.233032226562 -1290.4296875 -1110.233032226562 -1305.1640625 Q-1110.233032226562 -1318.9921875 -1103.670532226562 -1327.2109375 Q-1097.108032226562 -1335.4296875 -1086.061157226562 -1335.4296875 Q-1083.092407226562 -1335.4296875 -1080.061157226562 -1334.8359375 Q-1077.029907226562 -1334.2578125 -1073.748657226562 -1333.0859375 ZM-1055.553344726562 -1285.9765625 L-1047.303344726562 -1285.9765625 L-1047.303344726562 -1279.2578125 L-1053.709594726562 -1266.7578125 L-1058.756469726562 -1266.7578125 L-1055.553344726562 -1279.2578125 L-1055.553344726562 -1285.9765625 ZM-1007.029907226562 -1307.5078125 Q-1001.373657226562 -1306.2890625 -998.186157226562 -1302.4609375 Q-994.998657226562 -1298.6328125 -994.998657226562 -1293.0078125 Q-994.998657226562 -1284.3828125 -1000.936157226562 -1279.6484375 Q-1006.873657226562 -1274.9140625 -1017.811157226562 -1274.9140625 Q-1021.483032226562 -1274.9140625 -1025.373657226562 -1275.6484375 Q-1029.264282226562 -1276.3671875 -1033.404907226562 -1277.8203125 L-1033.404907226562 -1285.4296875 Q-1030.123657226562 -1283.5234375 -1026.217407226562 -1282.5390625 Q-1022.311157226562 -1281.5703125 -1018.045532226562 -1281.5703125 Q-1010.623657226562 -1281.5703125 -1006.748657226562 -1284.4921875 Q-1002.858032226562 -1287.4296875 -1002.858032226562 -1293.0078125 Q-1002.858032226562 -1298.1640625 -1006.467407226562 -1301.0703125 Q-1010.076782226562 -1303.9921875 -1016.529907226562 -1303.9921875 L-1023.326782226562 -1303.9921875 L-1023.326782226562 -1310.4765625 L-1016.217407226562 -1310.4765625 Q-1010.389282226562 -1310.4765625 -1007.311157226562 -1312.7890625 Q-1004.217407226562 -1315.1171875 -1004.217407226562 -1319.4921875 Q-1004.217407226562 -1323.9921875 -1007.404907226562 -1326.3828125 Q-1010.592407226562 -1328.7890625 -1016.529907226562 -1328.7890625 Q-1019.764282226562 -1328.7890625 -1023.483032226562 -1328.0859375 Q-1027.186157226562 -1327.3828125 -1031.639282226562 -1325.8984375 L-1031.639282226562 -1332.9296875 Q-1027.154907226562 -1334.1796875 -1023.233032226562 -1334.8046875 Q-1019.295532226562 -1335.4296875 -1015.826782226562 -1335.4296875 Q-1006.842407226562 -1335.4296875 -1001.608032226562 -1331.3515625 Q-996.373657226562 -1327.2734375 -996.373657226562 -1320.3203125 Q-996.373657226562 -1315.4765625 -999.154907226562 -1312.1328125 Q-1001.920532226562 -1308.7890625 -1007.029907226562 -1307.5078125 ZM-963.162719726562 -1329.1796875 Q-969.256469726562 -1329.1796875 -972.334594726562 -1323.1796875 Q-975.397094726562 -1317.1953125 -975.397094726562 -1305.1640625 Q-975.397094726562 -1293.1640625 -972.334594726562 -1287.1640625 Q-969.256469726562 -1281.1796875 -963.162719726562 -1281.1796875 Q-957.037719726562 -1281.1796875 -953.975219726562 -1287.1640625 Q-950.897094726562 -1293.1640625 -950.897094726562 -1305.1640625 Q-950.897094726562 -1317.1953125 -953.975219726562 -1323.1796875 Q-957.037719726562 -1329.1796875 -963.162719726562 -1329.1796875 ZM-963.162719726562 -1335.4296875 Q-953.365844726562 -1335.4296875 -948.193969726562 -1327.6796875 Q-943.006469726562 -1319.9296875 -943.006469726562 -1305.1640625 Q-943.006469726562 -1290.4296875 -948.193969726562 -1282.6640625 Q-953.365844726562 -1274.9140625 -963.162719726562 -1274.9140625 Q-972.975219726562 -1274.9140625 -978.147094726562 -1282.6640625 Q-983.318969726562 -1290.4296875 -983.318969726562 -1305.1640625 Q-983.318969726562 -1319.9296875 -978.147094726562 -1327.6796875 Q-972.975219726562 -1335.4296875 -963.162719726562 -1335.4296875 ZM-912.264282226562 -1329.1796875 Q-918.358032226562 -1329.1796875 -921.436157226562 -1323.1796875 Q-924.498657226562 -1317.1953125 -924.498657226562 -1305.1640625 Q-924.498657226562 -1293.1640625 -921.436157226562 -1287.1640625 Q-918.358032226562 -1281.1796875 -912.264282226562 -1281.1796875 Q-906.139282226562 -1281.1796875 -903.076782226562 -1287.1640625 Q-899.998657226562 -1293.1640625 -899.998657226562 -1305.1640625 Q-899.998657226562 -1317.1953125 -903.076782226562 -1323.1796875 Q-906.139282226562 -1329.1796875 -912.264282226562 -1329.1796875 ZM-912.264282226562 -1335.4296875 Q-902.467407226562 -1335.4296875 -897.295532226562 -1327.6796875 Q-892.108032226562 -1319.9296875 -892.108032226562 -1305.1640625 Q-892.108032226562 -1290.4296875 -897.295532226562 -1282.6640625 Q-902.467407226562 -1274.9140625 -912.264282226562 -1274.9140625 Q-922.076782226562 -1274.9140625 -927.248657226562 -1282.6640625 Q-932.420532226562 -1290.4296875 -932.420532226562 -1305.1640625 Q-932.420532226562 -1319.9296875 -927.248657226562 -1327.6796875 Q-922.076782226562 -1335.4296875 -912.264282226562 -1335.4296875 ZM-822.420532226562 -1297.8984375 Q-822.420532226562 -1305.8203125 -825.686157226562 -1310.3359375 Q-828.951782226562 -1314.8515625 -834.654907226562 -1314.8515625 Q-840.358032226562 -1314.8515625 -843.623657226562 -1310.3359375 Q-846.873657226562 -1305.8203125 -846.873657226562 -1297.8984375 Q-846.873657226562 -1289.9609375 -843.623657226562 -1285.4453125 Q-840.358032226562 -1280.9453125 -834.654907226562 -1280.9453125 Q-828.951782226562 -1280.9453125 -825.686157226562 -1285.4453125 Q-822.420532226562 -1289.9609375 -822.420532226562 -1297.8984375 ZM-846.873657226562 -1313.1640625 Q-844.608032226562 -1317.0703125 -841.154907226562 -1318.9609375 Q-837.701782226562 -1320.8671875 -832.889282226562 -1320.8671875 Q-824.920532226562 -1320.8671875 -819.951782226562 -1314.5390625 Q-814.967407226562 -1308.2109375 -814.967407226562 -1297.8984375 Q-814.967407226562 -1287.5859375 -819.951782226562 -1281.2421875 Q-824.920532226562 -1274.9140625 -832.889282226562 -1274.9140625 Q-837.701782226562 -1274.9140625 -841.154907226562 -1276.8046875 Q-844.608032226562 -1278.7109375 -846.873657226562 -1282.6171875 L-846.873657226562 -1276.0546875 L-854.108032226562 -1276.0546875 L-854.108032226562 -1336.8359375 L-846.873657226562 -1336.8359375 L-846.873657226562 -1313.1640625 ZM-796.092407226562 -1282.6171875 L-796.092407226562 -1259.4140625 L-803.326782226562 -1259.4140625 L-803.326782226562 -1319.8046875 L-796.092407226562 -1319.8046875 L-796.092407226562 -1313.1640625 Q-793.826782226562 -1317.0703125 -790.373657226562 -1318.9609375 Q-786.920532226562 -1320.8671875 -782.108032226562 -1320.8671875 Q-774.139282226562 -1320.8671875 -769.170532226562 -1314.5390625 Q-764.186157226562 -1308.2109375 -764.186157226562 -1297.8984375 Q-764.186157226562 -1287.5859375 -769.170532226562 -1281.2421875 Q-774.139282226562 -1274.9140625 -782.108032226562 -1274.9140625 Q-786.920532226562 -1274.9140625 -790.373657226562 -1276.8046875 Q-793.826782226562 -1278.7109375 -796.092407226562 -1282.6171875 ZM-771.639282226562 -1297.8984375 Q-771.639282226562 -1305.8203125 -774.904907226562 -1310.3359375 Q-778.170532226562 -1314.8515625 -783.873657226562 -1314.8515625 Q-789.576782226562 -1314.8515625 -792.842407226562 -1310.3359375 Q-796.092407226562 -1305.8203125 -796.092407226562 -1297.8984375 Q-796.092407226562 -1289.9609375 -792.842407226562 -1285.4453125 Q-789.576782226562 -1280.9453125 -783.873657226562 -1280.9453125 Q-778.170532226562 -1280.9453125 -774.904907226562 -1285.4453125 Q-771.639282226562 -1289.9609375 -771.639282226562 -1297.8984375 Z" stroke="none"
      /><path d="M-1469.294311523438 -1466.2890625 L-1479.997436523438 -1437.2734375 L-1458.544311523438 -1437.2734375 L-1469.294311523438 -1466.2890625 ZM-1473.747436523438 -1474.0703125 L-1464.794311523438 -1474.0703125 L-1442.575561523438 -1415.7421875 L-1450.778686523438 -1415.7421875 L-1456.091186523438 -1430.7109375 L-1482.372436523438 -1430.7109375 L-1487.684936523438 -1415.7421875 L-1496.013061523438 -1415.7421875 L-1473.747436523438 -1474.0703125 ZM-1402.880249023438 -1457.8203125 L-1402.880249023438 -1451.1015625 Q-1405.927124023438 -1452.7734375 -1409.005249023438 -1453.6171875 Q-1412.067749023438 -1454.4609375 -1415.192749023438 -1454.4609375 Q-1422.177124023438 -1454.4609375 -1426.052124023438 -1450.0234375 Q-1429.911499023438 -1445.5859375 -1429.911499023438 -1437.5859375 Q-1429.911499023438 -1429.5703125 -1426.052124023438 -1425.1328125 Q-1422.177124023438 -1420.7109375 -1415.192749023438 -1420.7109375 Q-1412.067749023438 -1420.7109375 -1409.005249023438 -1421.5390625 Q-1405.927124023438 -1422.3828125 -1402.880249023438 -1424.0703125 L-1402.880249023438 -1417.4296875 Q-1405.895874023438 -1416.0234375 -1409.114624023438 -1415.3203125 Q-1412.333374023438 -1414.6015625 -1415.973999023438 -1414.6015625 Q-1425.848999023438 -1414.6015625 -1431.677124023438 -1420.8203125 Q-1437.489624023438 -1427.0390625 -1437.489624023438 -1437.5859375 Q-1437.489624023438 -1448.2890625 -1431.614624023438 -1454.4140625 Q-1425.739624023438 -1460.5546875 -1415.505249023438 -1460.5546875 Q-1412.177124023438 -1460.5546875 -1409.020874023438 -1459.8671875 Q-1405.848999023438 -1459.1796875 -1402.880249023438 -1457.8203125 ZM-1358.895874023438 -1457.8203125 L-1358.895874023438 -1451.1015625 Q-1361.942749023438 -1452.7734375 -1365.020874023438 -1453.6171875 Q-1368.083374023438 -1454.4609375 -1371.208374023438 -1454.4609375 Q-1378.192749023438 -1454.4609375 -1382.067749023438 -1450.0234375 Q-1385.927124023438 -1445.5859375 -1385.927124023438 -1437.5859375 Q-1385.927124023438 -1429.5703125 -1382.067749023438 -1425.1328125 Q-1378.192749023438 -1420.7109375 -1371.208374023438 -1420.7109375 Q-1368.083374023438 -1420.7109375 -1365.020874023438 -1421.5390625 Q-1361.942749023438 -1422.3828125 -1358.895874023438 -1424.0703125 L-1358.895874023438 -1417.4296875 Q-1361.911499023438 -1416.0234375 -1365.130249023438 -1415.3203125 Q-1368.348999023438 -1414.6015625 -1371.989624023438 -1414.6015625 Q-1381.864624023438 -1414.6015625 -1387.692749023438 -1420.8203125 Q-1393.505249023438 -1427.0390625 -1393.505249023438 -1437.5859375 Q-1393.505249023438 -1448.2890625 -1387.630249023438 -1454.4140625 Q-1381.755249023438 -1460.5546875 -1371.520874023438 -1460.5546875 Q-1368.192749023438 -1460.5546875 -1365.036499023438 -1459.8671875 Q-1361.864624023438 -1459.1796875 -1358.895874023438 -1457.8203125 ZM-1308.973999023438 -1439.4140625 L-1308.973999023438 -1435.8984375 L-1342.020874023438 -1435.8984375 Q-1341.552124023438 -1428.4765625 -1337.552124023438 -1424.5859375 Q-1333.552124023438 -1420.7109375 -1326.395874023438 -1420.7109375 Q-1322.255249023438 -1420.7109375 -1318.380249023438 -1421.7265625 Q-1314.489624023438 -1422.7421875 -1310.661499023438 -1424.7734375 L-1310.661499023438 -1417.9765625 Q-1314.520874023438 -1416.3359375 -1318.583374023438 -1415.4765625 Q-1322.645874023438 -1414.6015625 -1326.833374023438 -1414.6015625 Q-1337.302124023438 -1414.6015625 -1343.411499023438 -1420.6953125 Q-1349.520874023438 -1426.8046875 -1349.520874023438 -1437.1953125 Q-1349.520874023438 -1447.9296875 -1343.723999023438 -1454.2421875 Q-1337.927124023438 -1460.5546875 -1328.083374023438 -1460.5546875 Q-1319.255249023438 -1460.5546875 -1314.114624023438 -1454.8671875 Q-1308.973999023438 -1449.1796875 -1308.973999023438 -1439.4140625 ZM-1316.161499023438 -1441.5234375 Q-1316.239624023438 -1447.4296875 -1319.473999023438 -1450.9453125 Q-1322.692749023438 -1454.4609375 -1328.005249023438 -1454.4609375 Q-1334.020874023438 -1454.4609375 -1337.630249023438 -1451.0546875 Q-1341.239624023438 -1447.6640625 -1341.786499023438 -1441.4921875 L-1316.161499023438 -1441.5234375 ZM-1269.286499023438 -1458.2109375 L-1269.286499023438 -1451.4140625 Q-1272.333374023438 -1452.9765625 -1275.614624023438 -1453.7578125 Q-1278.895874023438 -1454.5390625 -1282.411499023438 -1454.5390625 Q-1287.770874023438 -1454.5390625 -1290.442749023438 -1452.8984375 Q-1293.114624023438 -1451.2578125 -1293.114624023438 -1447.9765625 Q-1293.114624023438 -1445.4765625 -1291.208374023438 -1444.0390625 Q-1289.286499023438 -1442.6171875 -1283.505249023438 -1441.3359375 L-1281.052124023438 -1440.7890625 Q-1273.395874023438 -1439.1484375 -1270.177124023438 -1436.1484375 Q-1266.942749023438 -1433.1640625 -1266.942749023438 -1427.8203125 Q-1266.942749023438 -1421.7265625 -1271.770874023438 -1418.1640625 Q-1276.598999023438 -1414.6015625 -1285.036499023438 -1414.6015625 Q-1288.552124023438 -1414.6015625 -1292.364624023438 -1415.2890625 Q-1296.161499023438 -1415.9765625 -1300.380249023438 -1417.3515625 L-1300.380249023438 -1424.7734375 Q-1296.395874023438 -1422.6953125 -1292.536499023438 -1421.6640625 Q-1288.661499023438 -1420.6328125 -1284.880249023438 -1420.6328125 Q-1279.802124023438 -1420.6328125 -1277.067749023438 -1422.3671875 Q-1274.333374023438 -1424.1015625 -1274.333374023438 -1427.2734375 Q-1274.333374023438 -1430.1953125 -1276.302124023438 -1431.7578125 Q-1278.270874023438 -1433.3203125 -1284.958374023438 -1434.7734375 L-1287.458374023438 -1435.3515625 Q-1294.130249023438 -1436.7578125 -1297.098999023438 -1439.6640625 Q-1300.067749023438 -1442.5859375 -1300.067749023438 -1447.6640625 Q-1300.067749023438 -1453.8359375 -1295.692749023438 -1457.1953125 Q-1291.317749023438 -1460.5546875 -1283.270874023438 -1460.5546875 Q-1279.286499023438 -1460.5546875 -1275.770874023438 -1459.9609375 Q-1272.255249023438 -1459.3828125 -1269.286499023438 -1458.2109375 ZM-1227.606811523438 -1458.2109375 L-1227.606811523438 -1451.4140625 Q-1230.653686523438 -1452.9765625 -1233.934936523438 -1453.7578125 Q-1237.216186523438 -1454.5390625 -1240.731811523438 -1454.5390625 Q-1246.091186523438 -1454.5390625 -1248.763061523438 -1452.8984375 Q-1251.434936523438 -1451.2578125 -1251.434936523438 -1447.9765625 Q-1251.434936523438 -1445.4765625 -1249.528686523438 -1444.0390625 Q-1247.606811523438 -1442.6171875 -1241.825561523438 -1441.3359375 L-1239.372436523438 -1440.7890625 Q-1231.716186523438 -1439.1484375 -1228.497436523438 -1436.1484375 Q-1225.263061523438 -1433.1640625 -1225.263061523438 -1427.8203125 Q-1225.263061523438 -1421.7265625 -1230.091186523438 -1418.1640625 Q-1234.919311523438 -1414.6015625 -1243.356811523438 -1414.6015625 Q-1246.872436523438 -1414.6015625 -1250.684936523438 -1415.2890625 Q-1254.481811523438 -1415.9765625 -1258.700561523438 -1417.3515625 L-1258.700561523438 -1424.7734375 Q-1254.716186523438 -1422.6953125 -1250.856811523438 -1421.6640625 Q-1246.981811523438 -1420.6328125 -1243.200561523438 -1420.6328125 Q-1238.122436523438 -1420.6328125 -1235.388061523438 -1422.3671875 Q-1232.653686523438 -1424.1015625 -1232.653686523438 -1427.2734375 Q-1232.653686523438 -1430.1953125 -1234.622436523438 -1431.7578125 Q-1236.591186523438 -1433.3203125 -1243.278686523438 -1434.7734375 L-1245.778686523438 -1435.3515625 Q-1252.450561523438 -1436.7578125 -1255.419311523438 -1439.6640625 Q-1258.388061523438 -1442.5859375 -1258.388061523438 -1447.6640625 Q-1258.388061523438 -1453.8359375 -1254.013061523438 -1457.1953125 Q-1249.638061523438 -1460.5546875 -1241.591186523438 -1460.5546875 Q-1237.606811523438 -1460.5546875 -1234.091186523438 -1459.9609375 Q-1230.575561523438 -1459.3828125 -1227.606811523438 -1458.2109375 ZM-1213.817749023438 -1459.4921875 L-1206.630249023438 -1459.4921875 L-1206.630249023438 -1415.7421875 L-1213.817749023438 -1415.7421875 L-1213.817749023438 -1459.4921875 ZM-1213.817749023438 -1476.5234375 L-1206.630249023438 -1476.5234375 L-1206.630249023438 -1467.4296875 L-1213.817749023438 -1467.4296875 L-1213.817749023438 -1476.5234375 ZM-1174.638061523438 -1454.4609375 Q-1180.419311523438 -1454.4609375 -1183.778686523438 -1449.9453125 Q-1187.138061523438 -1445.4296875 -1187.138061523438 -1437.5859375 Q-1187.138061523438 -1429.7265625 -1183.809936523438 -1425.2109375 Q-1180.466186523438 -1420.7109375 -1174.638061523438 -1420.7109375 Q-1168.903686523438 -1420.7109375 -1165.544311523438 -1425.2421875 Q-1162.184936523438 -1429.7734375 -1162.184936523438 -1437.5859375 Q-1162.184936523438 -1445.3515625 -1165.544311523438 -1449.8984375 Q-1168.903686523438 -1454.4609375 -1174.638061523438 -1454.4609375 ZM-1174.638061523438 -1460.5546875 Q-1165.263061523438 -1460.5546875 -1159.919311523438 -1454.4609375 Q-1154.559936523438 -1448.3671875 -1154.559936523438 -1437.5859375 Q-1154.559936523438 -1426.8359375 -1159.919311523438 -1420.7109375 Q-1165.263061523438 -1414.6015625 -1174.638061523438 -1414.6015625 Q-1184.059936523438 -1414.6015625 -1189.388061523438 -1420.7109375 Q-1194.716186523438 -1426.8359375 -1194.716186523438 -1437.5859375 Q-1194.716186523438 -1448.3671875 -1189.388061523438 -1454.4609375 Q-1184.059936523438 -1460.5546875 -1174.638061523438 -1460.5546875 ZM-1106.286499023438 -1442.1484375 L-1106.286499023438 -1415.7421875 L-1113.473999023438 -1415.7421875 L-1113.473999023438 -1441.9140625 Q-1113.473999023438 -1448.1328125 -1115.895874023438 -1451.2109375 Q-1118.317749023438 -1454.3046875 -1123.161499023438 -1454.3046875 Q-1128.973999023438 -1454.3046875 -1132.333374023438 -1450.5859375 Q-1135.692749023438 -1446.8828125 -1135.692749023438 -1440.4765625 L-1135.692749023438 -1415.7421875 L-1142.927124023438 -1415.7421875 L-1142.927124023438 -1459.4921875 L-1135.692749023438 -1459.4921875 L-1135.692749023438 -1452.6953125 Q-1133.114624023438 -1456.6484375 -1129.630249023438 -1458.6015625 Q-1126.130249023438 -1460.5546875 -1121.552124023438 -1460.5546875 Q-1114.020874023438 -1460.5546875 -1110.161499023438 -1455.8828125 Q-1106.286499023438 -1451.2109375 -1106.286499023438 -1442.1484375 ZM-1090.114624023438 -1425.6640625 L-1081.864624023438 -1425.6640625 L-1081.864624023438 -1415.7421875 L-1090.114624023438 -1415.7421875 L-1090.114624023438 -1425.6640625 ZM-1090.114624023438 -1457.1171875 L-1081.864624023438 -1457.1171875 L-1081.864624023438 -1447.1953125 L-1090.114624023438 -1447.1953125 L-1090.114624023438 -1457.1171875 ZM-1019.763061523438 -1466.2890625 L-1030.466186523438 -1437.2734375 L-1009.013061523438 -1437.2734375 L-1019.763061523438 -1466.2890625 ZM-1024.216186523438 -1474.0703125 L-1015.263061523438 -1474.0703125 L-993.044311523438 -1415.7421875 L-1001.247436523438 -1415.7421875 L-1006.559936523438 -1430.7109375 L-1032.841186523438 -1430.7109375 L-1038.153686523438 -1415.7421875 L-1046.481811523438 -1415.7421875 L-1024.216186523438 -1474.0703125 ZM-940.848999023438 -1469.5703125 L-940.848999023438 -1461.2578125 Q-944.833374023438 -1464.9609375 -949.348999023438 -1466.7890625 Q-953.864624023438 -1468.6328125 -958.942749023438 -1468.6328125 Q-968.942749023438 -1468.6328125 -974.255249023438 -1462.5234375 Q-979.567749023438 -1456.4140625 -979.567749023438 -1444.8515625 Q-979.567749023438 -1433.3203125 -974.255249023438 -1427.2109375 Q-968.942749023438 -1421.1015625 -958.942749023438 -1421.1015625 Q-953.864624023438 -1421.1015625 -949.348999023438 -1422.9296875 Q-944.833374023438 -1424.7734375 -940.848999023438 -1428.4765625 L-940.848999023438 -1420.2421875 Q-944.989624023438 -1417.4296875 -949.630249023438 -1416.0078125 Q-954.255249023438 -1414.6015625 -959.411499023438 -1414.6015625 Q-972.645874023438 -1414.6015625 -980.270874023438 -1422.7109375 Q-987.880249023438 -1430.8203125 -987.880249023438 -1444.8515625 Q-987.880249023438 -1458.9140625 -980.270874023438 -1467.0078125 Q-972.645874023438 -1475.1171875 -959.411499023438 -1475.1171875 Q-954.177124023438 -1475.1171875 -949.552124023438 -1473.7265625 Q-944.911499023438 -1472.3515625 -940.848999023438 -1469.5703125 ZM-895.739624023438 -1402.4609375 L-895.739624023438 -1396.8671875 L-937.302124023438 -1396.8671875 L-937.302124023438 -1402.4609375 L-895.739624023438 -1402.4609375 ZM-871.083374023438 -1468.8671875 Q-877.177124023438 -1468.8671875 -880.255249023438 -1462.8671875 Q-883.317749023438 -1456.8828125 -883.317749023438 -1444.8515625 Q-883.317749023438 -1432.8515625 -880.255249023438 -1426.8515625 Q-877.177124023438 -1420.8671875 -871.083374023438 -1420.8671875 Q-864.958374023438 -1420.8671875 -861.895874023438 -1426.8515625 Q-858.817749023438 -1432.8515625 -858.817749023438 -1444.8515625 Q-858.817749023438 -1456.8828125 -861.895874023438 -1462.8671875 Q-864.958374023438 -1468.8671875 -871.083374023438 -1468.8671875 ZM-871.083374023438 -1475.1171875 Q-861.286499023438 -1475.1171875 -856.114624023438 -1467.3671875 Q-850.927124023438 -1459.6171875 -850.927124023438 -1444.8515625 Q-850.927124023438 -1430.1171875 -856.114624023438 -1422.3515625 Q-861.286499023438 -1414.6015625 -871.083374023438 -1414.6015625 Q-880.895874023438 -1414.6015625 -886.067749023438 -1422.3515625 Q-891.239624023438 -1430.1171875 -891.239624023438 -1444.8515625 Q-891.239624023438 -1459.6171875 -886.067749023438 -1467.3671875 Q-880.895874023438 -1475.1171875 -871.083374023438 -1475.1171875 ZM-820.184936523438 -1468.8671875 Q-826.278686523438 -1468.8671875 -829.356811523438 -1462.8671875 Q-832.419311523438 -1456.8828125 -832.419311523438 -1444.8515625 Q-832.419311523438 -1432.8515625 -829.356811523438 -1426.8515625 Q-826.278686523438 -1420.8671875 -820.184936523438 -1420.8671875 Q-814.059936523438 -1420.8671875 -810.997436523438 -1426.8515625 Q-807.919311523438 -1432.8515625 -807.919311523438 -1444.8515625 Q-807.919311523438 -1456.8828125 -810.997436523438 -1462.8671875 Q-814.059936523438 -1468.8671875 -820.184936523438 -1468.8671875 ZM-820.184936523438 -1475.1171875 Q-810.388061523438 -1475.1171875 -805.216186523438 -1467.3671875 Q-800.028686523438 -1459.6171875 -800.028686523438 -1444.8515625 Q-800.028686523438 -1430.1171875 -805.216186523438 -1422.3515625 Q-810.388061523438 -1414.6015625 -820.184936523438 -1414.6015625 Q-829.997436523438 -1414.6015625 -835.169311523438 -1422.3515625 Q-840.341186523438 -1430.1171875 -840.341186523438 -1444.8515625 Q-840.341186523438 -1459.6171875 -835.169311523438 -1467.3671875 Q-829.997436523438 -1475.1171875 -820.184936523438 -1475.1171875 ZM-769.286499023438 -1468.8671875 Q-775.380249023438 -1468.8671875 -778.458374023438 -1462.8671875 Q-781.520874023438 -1456.8828125 -781.520874023438 -1444.8515625 Q-781.520874023438 -1432.8515625 -778.458374023438 -1426.8515625 Q-775.380249023438 -1420.8671875 -769.286499023438 -1420.8671875 Q-763.161499023438 -1420.8671875 -760.098999023438 -1426.8515625 Q-757.020874023438 -1432.8515625 -757.020874023438 -1444.8515625 Q-757.020874023438 -1456.8828125 -760.098999023438 -1462.8671875 Q-763.161499023438 -1468.8671875 -769.286499023438 -1468.8671875 ZM-769.286499023438 -1475.1171875 Q-759.489624023438 -1475.1171875 -754.317749023438 -1467.3671875 Q-749.130249023438 -1459.6171875 -749.130249023438 -1444.8515625 Q-749.130249023438 -1430.1171875 -754.317749023438 -1422.3515625 Q-759.489624023438 -1414.6015625 -769.286499023438 -1414.6015625 Q-779.098999023438 -1414.6015625 -784.270874023438 -1422.3515625 Q-789.442749023438 -1430.1171875 -789.442749023438 -1444.8515625 Q-789.442749023438 -1459.6171875 -784.270874023438 -1467.3671875 Q-779.098999023438 -1475.1171875 -769.286499023438 -1475.1171875 ZM-718.388061523438 -1468.8671875 Q-724.481811523438 -1468.8671875 -727.559936523438 -1462.8671875 Q-730.622436523438 -1456.8828125 -730.622436523438 -1444.8515625 Q-730.622436523438 -1432.8515625 -727.559936523438 -1426.8515625 Q-724.481811523438 -1420.8671875 -718.388061523438 -1420.8671875 Q-712.263061523438 -1420.8671875 -709.200561523438 -1426.8515625 Q-706.122436523438 -1432.8515625 -706.122436523438 -1444.8515625 Q-706.122436523438 -1456.8828125 -709.200561523438 -1462.8671875 Q-712.263061523438 -1468.8671875 -718.388061523438 -1468.8671875 ZM-718.388061523438 -1475.1171875 Q-708.591186523438 -1475.1171875 -703.419311523438 -1467.3671875 Q-698.231811523438 -1459.6171875 -698.231811523438 -1444.8515625 Q-698.231811523438 -1430.1171875 -703.419311523438 -1422.3515625 Q-708.591186523438 -1414.6015625 -718.388061523438 -1414.6015625 Q-728.200561523438 -1414.6015625 -733.372436523438 -1422.3515625 Q-738.544311523438 -1430.1171875 -738.544311523438 -1444.8515625 Q-738.544311523438 -1459.6171875 -733.372436523438 -1467.3671875 Q-728.200561523438 -1475.1171875 -718.388061523438 -1475.1171875 ZM-677.567749023438 -1422.3828125 L-650.036499023438 -1422.3828125 L-650.036499023438 -1415.7421875 L-687.067749023438 -1415.7421875 L-687.067749023438 -1422.3828125 Q-682.567749023438 -1427.0390625 -674.817749023438 -1434.8671875 Q-667.067749023438 -1442.6953125 -665.067749023438 -1444.9609375 Q-661.286499023438 -1449.2265625 -659.786499023438 -1452.1640625 Q-658.270874023438 -1455.1171875 -658.270874023438 -1457.9765625 Q-658.270874023438 -1462.6171875 -661.536499023438 -1465.5390625 Q-664.802124023438 -1468.4765625 -670.036499023438 -1468.4765625 Q-673.739624023438 -1468.4765625 -677.864624023438 -1467.1796875 Q-681.989624023438 -1465.8984375 -686.677124023438 -1463.2890625 L-686.677124023438 -1471.2578125 Q-681.911499023438 -1473.1640625 -677.770874023438 -1474.1328125 Q-673.630249023438 -1475.1171875 -670.192749023438 -1475.1171875 Q-661.130249023438 -1475.1171875 -655.739624023438 -1470.5859375 Q-650.348999023438 -1466.0546875 -650.348999023438 -1458.4765625 Q-650.348999023438 -1454.8828125 -651.692749023438 -1451.6640625 Q-653.036499023438 -1448.4453125 -656.598999023438 -1444.0703125 Q-657.567749023438 -1442.9296875 -662.802124023438 -1437.5234375 Q-668.036499023438 -1432.1171875 -677.567749023438 -1422.3828125 ZM-626.669311523438 -1422.3828125 L-599.138061523438 -1422.3828125 L-599.138061523438 -1415.7421875 L-636.169311523438 -1415.7421875 L-636.169311523438 -1422.3828125 Q-631.669311523438 -1427.0390625 -623.919311523438 -1434.8671875 Q-616.169311523438 -1442.6953125 -614.169311523438 -1444.9609375 Q-610.388061523438 -1449.2265625 -608.888061523438 -1452.1640625 Q-607.372436523438 -1455.1171875 -607.372436523438 -1457.9765625 Q-607.372436523438 -1462.6171875 -610.638061523438 -1465.5390625 Q-613.903686523438 -1468.4765625 -619.138061523438 -1468.4765625 Q-622.841186523438 -1468.4765625 -626.966186523438 -1467.1796875 Q-631.091186523438 -1465.8984375 -635.778686523438 -1463.2890625 L-635.778686523438 -1471.2578125 Q-631.013061523438 -1473.1640625 -626.872436523438 -1474.1328125 Q-622.731811523438 -1475.1171875 -619.294311523438 -1475.1171875 Q-610.231811523438 -1475.1171875 -604.841186523438 -1470.5859375 Q-599.450561523438 -1466.0546875 -599.450561523438 -1458.4765625 Q-599.450561523438 -1454.8828125 -600.794311523438 -1451.6640625 Q-602.138061523438 -1448.4453125 -605.700561523438 -1444.0703125 Q-606.669311523438 -1442.9296875 -611.903686523438 -1437.5234375 Q-617.138061523438 -1432.1171875 -626.669311523438 -1422.3828125 Z" stroke="none"
    /></g
  ></g
  ><script type="text/javascript"
  ><![CDATA[//Written by Paul Stothard, University of Alberta, Canada 2004
function showMouseover(evt, message) {var PADDING = 8; var X_SHIFT = 20; var Y_SHIFT = 20; var svgDoc = evt.target.ownerDocument; var translateX = svgDoc.rootElement.currentTranslate.x; var translateY = svgDoc.rootElement.currentTranslate.y; var scale = 1 / svgDoc.rootElement.currentScale; var effectiveDocWidth = svgDoc.rootElement.getAttribute("width") - translateX; var effectiveDocHeight = svgDoc.rootElement.getAttribute("height") - translateY; var targetText = svgDoc.getElementById("mouseoverBox"); var x = evt.clientX - translateX + X_SHIFT; var y = evt.clientY - translateY + Y_SHIFT; var newText = svgDoc.createTextNode(message); targetText.replaceChild(newText, targetText.firstChild); var textBounds = targetText.getBBox(); y = y + textBounds.height; if (x + textBounds.width + PADDING > effectiveDocWidth) {x = x - (x + textBounds.width + PADDING - effectiveDocWidth); if (y > effectiveDocWidth / 2) { y = y - Y_SHIFT - Y_SHIFT - textBounds.height; } else {}} if (y + textBounds.height + PADDING > effectiveDocHeight) {y = y - (y + textBounds.height + PADDING - effectiveDocHeight); } if (x - PADDING < 0) {x = 0 + PADDING;} if (y - textBounds.height - PADDING < 0) {y = 0 + textBounds.height + PADDING;}targetText.setAttribute("x", x); targetText.setAttribute("y", y); textBounds = targetText.getBBox(); targetTextBackground = svgDoc.getElementById("mouseoverBoxBackground"); targetTextBackground.setAttribute("transform", "scale(" + scale + "," + scale + ")"); targetTextBackground.setAttribute("x", textBounds.x - PADDING / 2); targetTextBackground.setAttribute("y", textBounds.y - PADDING / 2); targetTextBackground.setAttribute("width", textBounds.width + PADDING); targetTextBackground.setAttribute("height", textBounds.height + PADDING); targetText.setAttribute("transform", "scale(" + scale + "," + scale + ")");} function showMouseout(evt) {var svgDoc = evt.target.ownerDocument; var targetText = svgDoc.getElementById("mouseoverBox"); var newText = svgDoc.createTextNode(""); targetText.setAttribute("x", 0); targetText.setAttribute("y", 0); targetText.replaceChild(newText, targetText.firstChild); targetTextBackground = svgDoc.getElementById("mouseoverBoxBackground"); targetTextBackground.setAttribute("x", 0); targetTextBackground.setAttribute("y", 0); targetTextBackground.setAttribute("width", 0); targetTextBackground.setAttribute("height", 0);}]]></script
    ><rect width="0" x="0" height="0" id="mouseoverBoxBackground" y="0" style="fill: rgb(204,204,255); stroke: rgb(51,51,153); stroke-width:1"
    /><text x="0" id="mouseoverBox" y="0" style="fill:black; stroke:none; font-family:Arial; font-size:12"
    > </text
    ><rect x="2128.41455078125" onmouseover="showMouseover(evt, &quot;tRNA; 6850 to 6919; tRNA-Ser&quot;)" y="2474.269775390625" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="2683.64990234375" onmouseover="showMouseover(evt, &quot;tRNA; 3750 to 3820; tRNA-Gln&quot;)" y="1329.3934326171875" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="2688.8603515625" onmouseover="showMouseover(evt, &quot;tRNA; 3824 to 3891; tRNA-Met&quot;)" y="1389.322509765625" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="192.31517028808594" onmouseover="showMouseover(evt, &quot;tRNA; 11591 to 11650; tRNA-Ser&quot;)" y="1737.7249755859375" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="636.9837646484375" onmouseover="showMouseover(evt, &quot;tRNA; 9785 to 9852; tRNA-Arg&quot;)" y="2415.664306640625" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="2675.826171875" onmouseover="showMouseover(evt, &quot;tRNA; 3684 to 3752; tRNA-Ile&quot;)" y="1272.296142578125" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066247"
    ><rect x="2629.2685546875" onmouseover="showMouseover(evt, &quot;ND1; 2729 to 3685; NADH dehydrogenase subunit 1; GeneID:7066247&quot;)" y="1071.16357421875" width="120.833984375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /></a
    ><rect x="1002.5413208007812" onmouseover="showMouseover(evt, &quot;tRNA; 15336 to 15403; tRNA-Pro&quot;)" y="325.4903869628906" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="452.85125732421875" onmouseover="showMouseover(evt, &quot;tRNA; 14050 to 14118; tRNA-Glu&quot;)" y="680.3848876953125" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="206.6044921875" onmouseover="showMouseover(evt, &quot;tRNA; 11523 to 11590; tRNA-His&quot;)" y="1792.1337890625" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="2653.82568359375" onmouseover="showMouseover(evt, &quot;tRNA; 4928 to 4993; tRNA-Trp&quot;)" y="1758.150390625" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066259"
    ><rect x="662.2113647460938" onmouseover="showMouseover(evt, &quot;CYTB; 14124 to 15266; cytochrome b; GeneID:7066259&quot;)" y="492.3983459472656" width="151.7421875" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066249"
    ><rect x="2354.363037109375" onmouseover="showMouseover(evt, &quot;COX1; 5309 to 6853; cytochrome c oxidase subunit I; GeneID:7066249&quot;)" y="2294.218017578125" width="162.490234375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066248"
    ><rect x="2685.474365234375" onmouseover="showMouseover(evt, &quot;ND2; 3892 to 4929; NADH dehydrogenase subunit 2; GeneID:7066248&quot;)" y="1615.4542236328125" width="120.365234375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="47.53125" pointer-events="fill"
    /></a
    ><rect x="2609.07861328125" onmouseover="showMouseover(evt, &quot;tRNA; 5066 to 5139; tRNA-Asn&quot;)" y="1896.8421630859375" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066257"
    ><rect x="210.2116241455078" onmouseover="showMouseover(evt, &quot;ND5; 11721 to 13553; NADH dehydrogenase subunit 5; GeneID:7066257&quot;)" y="1274.77734375" width="121.130859375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="47.578125" pointer-events="fill"
    /></a
    ><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066251"
    ><rect x="1485.14599609375" onmouseover="showMouseover(evt, &quot;ATP8; 7743 to 7946; ATP synthase F0 subunit 8; GeneID:7066251&quot;)" y="2674.689697265625" width="150.486328125" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><rect x="2513.939453125" onmouseover="showMouseover(evt, &quot;tRNA; 5242 to 5307; tRNA-Tyr&quot;)" y="2087.486083984375" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="1586.3551025390625" onmouseover="showMouseover(evt, &quot;12S ribosomal RNA; 69 to 1025; s-rRNA&quot;)" y="301.27691650390625" width="572.08984375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="49.4375" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066253"
    ><rect x="1045.343017578125" onmouseover="showMouseover(evt, &quot;COX3; 8584 to 9367; cytochrome c oxidase subunit III; GeneID:7066253&quot;)" y="2616.474609375" width="163.224609375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066256"
    ><rect x="360.7632751464844" onmouseover="showMouseover(evt, &quot;ND4; 10145 to 11522; NADH dehydrogenase subunit 4; GeneID:7066256&quot;)" y="2071.3173828125" width="123.005859375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /></a
    ><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066250"
    ><rect x="1821.66455078125" onmouseover="showMouseover(evt, &quot;COX2; 6991 to 7674; cytochrome c oxidase subunit II; GeneID:7066250&quot;)" y="2608.852783203125" width="162.021484375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><rect x="822.6969604492188" onmouseover="showMouseover(evt, &quot;tRNA; 9368 to 9435; tRNA-Gly&quot;)" y="2529.861572265625" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="2543.6513671875" onmouseover="showMouseover(evt, &quot;tRNA; 5171 to 5238; tRNA-Cys&quot;)" y="2036.50439453125" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066255"
    ><rect x="547.78564453125" onmouseover="showMouseover(evt, &quot;ND4L; 9855 to 10151; NADH dehydrogenase subunit 4L; GeneID:7066255&quot;)" y="2344.681640625" width="159.4765625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /></a
    ><rect x="1654.8929443359375" onmouseover="showMouseover(evt, &quot;tRNA; 7678 to 7741; tRNA-Lys&quot;)" y="2653.337158203125" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="1414.0911865234375" onmouseover="showMouseover(evt, &quot;tRNA; 1 to 67; tRNA-Phe&quot;)" y="249.6707305908203" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="829.8377685546875" onmouseover="showMouseover(evt, &quot;tRNA; 15268 to 15334; tRNA-Thr&quot;)" y="391.5979309082031" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="2629.7412109375" onmouseover="showMouseover(evt, &quot;tRNA; 4995 to 5063; tRNA-Ala&quot;)" y="1839.8587646484375" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="1929.952880859375" onmouseover="showMouseover(evt, &quot;tRNA; 1026 to 1094; tRNA-Val&quot;)" y="358.5210266113281" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066258"
    ><rect x="403.90118408203125" onmouseover="showMouseover(evt, &quot;ND6; 13531 to 14049; NADH dehydrogenase subunit 6; GeneID:7066258&quot;)" y="787.001953125" width="122.583984375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><rect x="180.56851196289062" onmouseover="showMouseover(evt, &quot;tRNA; 11650 to 11720; tRNA-Leu&quot;)" y="1682.4764404296875" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066252"
    ><rect x="1328.2525634765625" onmouseover="showMouseover(evt, &quot;ATP6; 7904 to 8584; ATP synthase F0 subunit 6; GeneID:7066252&quot;)" y="2672.271484375" width="150.798828125" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><rect x="1177.8785400390625" onmouseover="showMouseover(evt, &quot;D-loop; 15404 to 16300&quot;)" y="270.4322204589844" width="189.861328125" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="61.078125" pointer-events="fill"
    /><a xlink:href="https://www.ncbi.nlm.nih.gov/entrez/query.fcgi?db=gene&amp;amp;cmd=Retrieve&amp;amp;dopt=Graphics&amp;amp;list_uids=7066254"
    ><rect x="750.756591796875" onmouseover="showMouseover(evt, &quot;ND3; 9436 to 9783; NADH dehydrogenase subunit 3; GeneID:7066254&quot;)" y="2470.063720703125" width="121.568359375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="48.375" pointer-events="fill"
    /></a
    ><rect x="2292.371826171875" onmouseover="showMouseover(evt, &quot;16S ribosomal RNA; 1095 to 2653; l-rRNA&quot;)" y="568.2887573242188" width="572.08984375" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="49.4375" pointer-events="fill"
    /><rect x="2525.48681640625" onmouseover="showMouseover(evt, &quot;tRNA; 2654 to 2728; tRNA-Leu&quot;)" y="856.6093139648438" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
    /><rect x="2029.5328369140625" onmouseover="showMouseover(evt, &quot;tRNA; 6922 to 6989; tRNA-Asp&quot;)" y="2529.34326171875" width="152.03515625" style="fill:none; stroke:none" onmouseout="showMouseout(evt)" height="46.734375" pointer-events="fill"
  /></svg
>