summaryrefslogtreecommitdiffstats
path: root/qgn_prop_blid_location_sub.svg
blob: 3a38f21d2f4b20e59a99013c3ff646b0165b86d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
<?xml version="1.0" encoding="UTF-8"?>
<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" contentScriptType="text/ecmascript" width="84" baseProfile="tiny" zoomAndPan="magnify" contentStyleType="text/css" viewBox="0 0 84 72" height="72" preserveAspectRatio="xMidYMid meet" version="1.1">
    <defs>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </linearGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </linearGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="0.30927834" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0.16494845" stop-color="#ffffff" offset="1.0000000"/>
        </linearGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#000000" offset="0"/>
            <stop stop-opacity="0" stop-color="#000000" offset="1"/>
        </linearGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1.0000000" stop-color="#d3e9ff" offset="0.0000000"/>
            <stop stop-opacity="1.0000000" stop-color="#d3e9ff" offset="0.15517241"/>
            <stop stop-opacity="1.0000000" stop-color="#4074ae" offset="0.75000000"/>
            <stop stop-opacity="1.0000000" stop-color="#36486c" offset="1.0000000"/>
        </linearGradient>
        <radialGradient gradientTransform="scale(0.999989,1.000011)" id="radialGradient3968" gradientUnits="userSpaceOnUse" xlink:show="other" xlink:type="simple" r="29.993349" cx="18.247644" fx="18.247644" cy="15.716079" fy="15.716079" xlink:actuate="onLoad">
            <stop stop-opacity="1.0000000" stop-color="#d3e9ff" offset="0.0000000"/>
            <stop stop-opacity="1.0000000" stop-color="#d3e9ff" offset="0.15517241"/>
            <stop stop-opacity="1.0000000" stop-color="#4074ae" offset="0.75000000"/>
            <stop stop-opacity="1.0000000" stop-color="#36486c" offset="1.0000000"/>
        </radialGradient>
        <radialGradient gradientTransform="scale(1.64399,0.608276)" id="radialGradient4120" gradientUnits="userSpaceOnUse" xlink:show="other" xlink:type="simple" r="12.289036" cx="15.115514" fx="15.115514" cy="63.965388" fy="63.965388" xlink:actuate="onLoad">
            <stop stop-opacity="1" stop-color="#000000" offset="0"/>
            <stop stop-opacity="0" stop-color="#000000" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="scale(0.999989,1.000011)" id="radialGradient4132" gradientUnits="userSpaceOnUse" xlink:show="other" xlink:type="simple" r="43.526714" cx="15.601279" fx="15.601279" cy="12.142302" fy="12.142302" xlink:actuate="onLoad">
            <stop stop-opacity="0.30927834" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0.16494845" stop-color="#ffffff" offset="1.0000000"/>
        </radialGradient>
        <radialGradient gradientUnits="userSpaceOnUse" xlink:type="simple" r="6.7175145" xlink:actuate="onLoad" cx="12.071323" cy="12.493138" xlink:show="other" fx="12.071323" fy="12.493138">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientUnits="userSpaceOnUse" xlink:type="simple" r="6.7175145" xlink:actuate="onLoad" cx="12.071323" cy="12.493138" xlink:show="other" fx="12.071323" fy="12.493138">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientUnits="userSpaceOnUse" xlink:type="simple" r="6.7175145" xlink:actuate="onLoad" cx="12.071323" cy="12.493138" xlink:show="other" fx="12.071323" fy="12.493138">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientUnits="userSpaceOnUse" xlink:type="simple" r="6.7175145" xlink:actuate="onLoad" cx="12.071323" cy="12.493138" xlink:show="other" fx="12.071323" fy="12.493138">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <linearGradient x1="-25.176178" y1="30.057165" x2="-22.252472" gradientUnits="userSpaceOnUse" y2="21.041553" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </linearGradient>
        <linearGradient x1="-25.176178" y1="30.057165" x2="-22.113543" gradientUnits="userSpaceOnUse" y2="22.661524" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </linearGradient>
        <linearGradient x1="-22.822565" y1="28.337734" x2="-22.113543" gradientUnits="userSpaceOnUse" y2="22.661524" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </linearGradient>
        <linearGradient x1="-21.658581" y1="15.649428" x2="-21.962101" gradientUnits="userSpaceOnUse" y2="21.336346" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </linearGradient>
        <linearGradient x1="51.74" gradientTransform="matrix(1.4821918,0.9970215,-0.5463262,0.8172374,-5.977292,-53.685518)" y1="19.419103" x2="54.293" gradientUnits="userSpaceOnUse" y2="19.419103" xlink:type="simple" xlink:actuate="onLoad" id="linearGradient7704" xlink:show="other">
            <stop stop-opacity="1" stop-color="#c17d11" offset="0"/>
            <stop stop-opacity="1" stop-color="#794e0a" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(6.718136e-2,2.42191,-1.629357,4.51789e-2,52.36869,-50.34012)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="9.82225" xlink:actuate="onLoad" cx="25.969097" cy="17.257854" xlink:show="other" fx="25.968998" fy="17.257843">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.5454,-182.3268)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="2.97195" xlink:actuate="onLoad" cx="24.478569" cy="17.573915" xlink:show="other" fx="24.478539" fy="17.573889">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-131.6974)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="4.13475" xlink:actuate="onLoad" cx="25.135374" cy="14.542349" xlink:show="other" fx="25.135332" fy="14.542329">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(7.657394e-2,2.760516,-1.969551,5.463895e-2,60.09901,-55.47179)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="8.61745" xlink:actuate="onLoad" cx="24.652573" cy="18.94449" xlink:show="other" fx="24.652485" fy="18.944481">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(6.718136e-2,2.42191,-1.629357,4.51789e-2,52.36869,-50.34012)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="9.82225" xlink:actuate="onLoad" cx="25.969097" cy="17.257854" xlink:show="other" fx="25.968998" fy="17.257843">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.5454,-182.3268)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="2.97195" xlink:actuate="onLoad" cx="24.478569" cy="17.573915" xlink:show="other" fx="24.478539" fy="17.573889">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-131.6974)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="4.13475" xlink:actuate="onLoad" cx="25.135374" cy="14.542349" xlink:show="other" fx="25.135332" fy="14.542329">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(7.657394e-2,2.760516,-1.969551,5.463895e-2,60.09901,-55.47179)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="8.61745" xlink:actuate="onLoad" cx="24.652573" cy="18.94449" xlink:show="other" fx="24.652485" fy="18.944481">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(6.718136e-2,2.42191,-1.629357,4.51789e-2,52.36869,-50.34012)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="9.82225" xlink:actuate="onLoad" cx="25.969097" cy="17.257854" xlink:show="other" fx="25.968998" fy="17.257843">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.5454,-182.3268)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="2.97195" xlink:actuate="onLoad" cx="24.478569" cy="17.573915" xlink:show="other" fx="24.478539" fy="17.573889">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-131.6974)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="4.13475" xlink:actuate="onLoad" cx="25.135374" cy="14.542349" xlink:show="other" fx="25.135332" fy="14.542329">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(7.657394e-2,2.760516,-1.969551,5.463895e-2,60.09901,-55.47179)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="8.61745" xlink:actuate="onLoad" cx="24.652573" cy="18.94449" xlink:show="other" fx="24.652485" fy="18.944481">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.341176,1.298961e-14,3.047059)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.625" xlink:actuate="onLoad" cx="62.625" cy="4.625" xlink:show="other" fx="62.625" fy="4.625">
            <stop stop-opacity="1" stop-color="#000000" offset="0"/>
            <stop stop-opacity="0" stop-color="#000000" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#8fb1dc" offset="0"/>
            <stop stop-opacity="1" stop-color="#3465a4" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-1.618775e-13,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-6.799488e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-1.906811e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-1.960516e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-1.965096e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-2.68581e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-1.618775e-13,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-6.799488e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-2.257223e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-2.79498e-14,0.79739)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-8.035238e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-4.638683e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,1.662905e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(7.657394e-2,2.760516,-1.969551,5.463895e-2,60.09901,-55.47179)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="8.61745" xlink:actuate="onLoad" cx="24.652573" cy="18.94449" xlink:show="other" fx="24.652485" fy="18.944481">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-4.23828e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.891018,0,0,0.828854,1.579517,2.39052)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-131.6974)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="4.13475" xlink:actuate="onLoad" cx="25.135374" cy="14.542349" xlink:show="other" fx="25.135332" fy="14.542329">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-5.087595e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-3.093343e-14,0.589884)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.5454,-182.3268)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="2.97195" xlink:actuate="onLoad" cx="24.478569" cy="17.573915" xlink:show="other" fx="24.478539" fy="17.573889">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-1.223188e-13,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.85665,-181.6002)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="2.97195" xlink:actuate="onLoad" cx="24.478569" cy="17.573915" xlink:show="other" fx="24.478539" fy="17.573889">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0.311259,0.486131)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(6.718136e-2,2.42191,-1.629357,4.51789e-2,52.36869,-50.34012)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="9.82225" xlink:actuate="onLoad" cx="25.969097" cy="17.257854" xlink:show="other" fx="25.968998" fy="17.257843">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,-3.15581e-14,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.918134,0,0,0.854079,2.429764,1.490099)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(6.718136e-2,2.42191,-1.629357,4.51789e-2,52.36869,-50.34012)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="9.82225" xlink:actuate="onLoad" cx="25.969097" cy="17.257854" xlink:show="other" fx="25.968998" fy="17.257843">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.5454,-182.3268)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="2.97195" xlink:actuate="onLoad" cx="24.478569" cy="17.573915" xlink:show="other" fx="24.478539" fy="17.573889">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-131.6974)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="4.13475" xlink:actuate="onLoad" cx="25.135374" cy="14.542349" xlink:show="other" fx="25.135332" fy="14.542329">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(7.657394e-2,2.760516,-1.969551,5.463895e-2,60.09901,-55.47179)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="8.61745" xlink:actuate="onLoad" cx="24.652573" cy="18.94449" xlink:show="other" fx="24.652485" fy="18.944481">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <linearGradient x1="56.180698" y1="12.7676" x2="67.5299" gradientUnits="userSpaceOnUse" y2="10.9167" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#8cc2ea" offset="0"/>
            <stop stop-color="#5aa7e0" offset="1"/>
        </linearGradient>
        <linearGradient x1="52.1689" y1="6.3193002" x2="54.6562" gradientUnits="userSpaceOnUse" y2="5.9137001" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#8cc2ea" offset="0"/>
            <stop stop-color="#5aa7e0" offset="1"/>
        </linearGradient>
        <linearGradient x1="67.549797" y1="11.8765" x2="55.0424" gradientUnits="userSpaceOnUse" y2="14.2773" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#0046b7" offset="0"/>
            <stop stop-color="#0046b7" offset="0.0056"/>
            <stop stop-color="#3366cc" offset="1"/>
        </linearGradient>
        <linearGradient x1="54.303699" y1="11.8604" x2="54.199902" gradientUnits="userSpaceOnUse" y2="32.3596" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#0046b7" offset="0"/>
            <stop stop-color="#0046b7" offset="0.0056"/>
            <stop stop-color="#3366cc" offset="1"/>
        </linearGradient>
        <linearGradient x1="51.4688" y1="19.839399" x2="53.461899" gradientUnits="userSpaceOnUse" y2="19.839399" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#5aa7e0" offset="0"/>
            <stop stop-color="#3366cc" offset="0.8933"/>
            <stop stop-color="#3366cc" offset="1"/>
        </linearGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#000000" offset="0"/>
            <stop stop-opacity="0" stop-color="#000000" offset="1"/>
        </linearGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#8fb1dc" offset="0"/>
            <stop stop-opacity="1" stop-color="#3465a4" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(7.657394e-2,2.760516,-1.969551,5.463895e-2,60.09901,-55.47179)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="8.61745" xlink:actuate="onLoad" cx="24.652573" cy="18.94449" xlink:show="other" fx="24.652485" fy="18.944481">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.159592,5.753335,-0.8072,2.23703e-2,32.87305,-131.6974)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="4.13475" xlink:actuate="onLoad" cx="25.135374" cy="14.542349" xlink:show="other" fx="25.135332" fy="14.542329">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(0.222034,8.004376,-0.597156,1.656095e-2,29.5454,-182.3268)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="2.97195" xlink:actuate="onLoad" cx="24.478569" cy="17.573915" xlink:show="other" fx="24.478539" fy="17.573889">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <radialGradient gradientTransform="matrix(6.718136e-2,2.42191,-1.629357,4.51789e-2,52.36869,-50.34012)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="9.82225" xlink:actuate="onLoad" cx="25.969097" cy="17.257854" xlink:show="other" fx="25.968998" fy="17.257843">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </radialGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#cee14b" offset="0"/>
            <stop stop-color="#9db029" offset="1"/>
        </linearGradient>
        <radialGradient gradientTransform="matrix(1,0,0,0.930233,0,-0.240141)" gradientUnits="userSpaceOnUse" xlink:type="simple" r="10.081216" xlink:actuate="onLoad" cx="62.225393" cy="-3.4420195" xlink:show="other" fx="62.225393" fy="-3.4420195">
            <stop stop-opacity="1" stop-color="#ffffff" offset="0"/>
            <stop stop-opacity="0" stop-color="#ffffff" offset="1"/>
        </radialGradient>
        <linearGradient x1="51.4688" y1="19.839399" x2="53.461899" gradientUnits="userSpaceOnUse" y2="19.839399" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#5aa7e0" offset="0"/>
            <stop stop-color="#3366cc" offset="0.8933"/>
            <stop stop-color="#3366cc" offset="1"/>
        </linearGradient>
        <linearGradient x1="54.303699" y1="11.8604" x2="54.199902" gradientUnits="userSpaceOnUse" y2="32.3596" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#0046b7" offset="0"/>
            <stop stop-color="#0046b7" offset="0.0056"/>
            <stop stop-color="#3366cc" offset="1"/>
        </linearGradient>
        <linearGradient x1="67.549797" y1="11.8765" x2="55.0424" gradientUnits="userSpaceOnUse" y2="14.2773" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#0046b7" offset="0"/>
            <stop stop-color="#0046b7" offset="0.0056"/>
            <stop stop-color="#3366cc" offset="1"/>
        </linearGradient>
        <linearGradient x1="52.1689" y1="6.3193002" x2="54.6562" gradientUnits="userSpaceOnUse" y2="5.9137001" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#8cc2ea" offset="0"/>
            <stop stop-color="#5aa7e0" offset="1"/>
        </linearGradient>
        <linearGradient x1="56.180698" y1="12.7676" x2="67.5299" gradientUnits="userSpaceOnUse" y2="10.9167" xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-color="#8cc2ea" offset="0"/>
            <stop stop-color="#5aa7e0" offset="1"/>
        </linearGradient>
        <linearGradient xlink:type="simple" xlink:actuate="onLoad" xlink:show="other">
            <stop stop-opacity="1" stop-color="#c17d11" offset="0"/>
            <stop stop-opacity="1" stop-color="#794e0a" offset="1"/>
        </linearGradient>
    </defs>
    <g transform="matrix(0.8185537,0,0,0.8185537,3.3894961,1.6854763)">
        <g transform="matrix(1.7016874,0,0,1.7016874,3.7732145,0.8490778)">
            <path transform="matrix(1,0,0,1.243244,0,-10.27241)" fill-opacity="1" fill="url(#radialGradient4120)" d="M 45.052803 38.908627 C 45.05594 41.58001 41.205948 44.04896 34.95381 45.384983 C 28.70168 46.72101 20.997826 46.72101 14.745692 45.384983 C 8.493558 44.04896 4.6435647 41.58001 4.646702 38.908627 C 4.6435647 36.237247 8.493558 33.768295 14.745692 32.43227 C 20.997826 31.096245 28.70168 31.096245 34.95381 32.43227 C 41.205948 33.768295 45.05594 36.237247 45.052803 38.908627 z " stroke="none" stroke-opacity="1"/>
            <path fill-opacity="1" fill="url(#radialGradient3968)" fill-rule="nonzero" d="M 43.95985 23.4855 C 43.95985 34.195217 35.27775 42.877224 24.569504 42.877224 C 13.860279 42.877224 5.1786666 34.19512 5.1786666 23.4855 C 5.1786666 12.776272 13.860279 4.0951514 24.569504 4.0951514 C 35.27775 4.0951514 43.95985 12.776272 43.95985 23.4855 L 43.95985 23.4855 z " stroke="#39396c" stroke-opacity="1" stroke-miterlimit="4"/>
            <g transform="matrix(0.982371,0,0,0.982371,0.121079,0.232914)" fill-opacity="0.71345029" fill="#204a87" fill-rule="nonzero" stroke="none" stroke-opacity="1" stroke-miterlimit="4">
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 44.0713 20.7144 C 44.0713 20.9771 44.0713 20.7144 44.0713 20.7144 L 43.5264 21.3316 C 43.1924 20.938 42.8174 20.607 42.4366 20.2613 L 41.6007 20.3843 L 40.837 19.521 L 40.837 20.5894 L 41.4913 21.0845 L 41.9268 21.5777 L 42.5088 20.9195 C 42.6553 21.1939 42.7998 21.4683 42.9453 21.7427 L 42.9453 22.565 L 42.29 23.3052 L 41.0908 24.1284 L 40.1826 25.0347 L 39.6006 24.3745 L 39.8916 23.6343 L 39.3105 22.9761 L 38.3291 20.8784 L 37.4932 19.9331 L 37.2744 20.1792 L 37.6025 21.3726 L 38.2197 22.0718 C 38.5722 23.0894 38.9209 24.062 39.3838 25.0347 C 40.1016 25.0347 40.7783 24.9585 41.4912 24.8687 L 41.4912 25.4449 L 40.6191 27.5841 L 39.8193 28.4884 L 39.165 29.8888 C 39.165 30.6564 39.165 31.424 39.165 32.1915 L 39.3838 33.0978 L 39.0205 33.508 L 38.2197 34.0021 L 37.3838 34.7013 L 38.0752 35.4826 L 37.1299 36.3068 L 37.3115 36.84 L 35.8935 38.4455 L 34.9492 38.4455 L 34.1494 38.9396 L 33.6396 38.9396 L 33.6396 38.2814 L 33.4228 36.963 C 33.1415 36.1368 32.8486 35.3165 32.5507 34.4962 C 32.5507 33.8907 32.5868 33.2911 32.623 32.6857 L 32.9873 31.8634 L 32.4775 30.8751 L 32.5146 29.5177 L 31.8232 28.7364 L 32.1689 27.6055 L 31.6064 26.9673 L 30.624 26.9673 L 30.2969 26.5972 L 29.3155 27.2149 L 28.9161 26.7613 L 28.0069 27.543 C 27.3897 26.8433 26.7715 26.1441 26.1534 25.4449 L 25.4268 23.7164 L 26.0811 22.7301 L 25.7178 22.319 L 26.5166 20.4254 C 27.1729 19.609 27.8584 18.8258 28.5518 18.0397 L 29.7881 17.7106 L 31.169 17.5465 L 32.1143 17.7936 L 33.459 19.15 L 33.9317 18.6158 L 34.585 18.5338 L 35.8213 18.9449 L 36.7666 18.9449 L 37.4209 18.3687 L 37.7119 17.9576 L 37.0566 17.5465 L 35.9658 17.4645 C 35.6631 17.0446 35.3818 16.6032 35.0224 16.2301 L 34.6581 16.3942 L 34.5126 17.4645 L 33.8583 16.7243 L 33.7138 15.9001 L 32.9872 15.3259 L 32.6952 15.3259 L 33.4227 16.1482 L 33.1317 16.8884 L 32.5506 17.0525 L 32.9139 16.3123 L 32.2586 15.9842 L 31.6785 15.326 L 30.5867 15.5721 L 30.4422 15.9002 L 29.7879 16.3123 L 29.4246 17.2176 L 28.5164 17.6697 L 28.116 17.2176 L 27.6805 17.2176 L 27.6805 15.7362 L 28.6258 15.2421 L 29.3524 15.2421 L 29.2059 14.6669 L 28.6258 14.0907 L 29.6063 13.8846 L 30.1512 13.2684 L 30.5867 12.5272 L 31.3875 12.5272 L 31.1687 11.952 L 31.6785 11.6229 L 31.6785 12.2811 L 32.7683 12.5272 L 33.8581 11.6229 L 33.9313 11.2108 L 34.8756 10.5531 C 34.5338 10.5956 34.192 10.6268 33.858 10.7177 L 33.858 9.9766 L 34.2213 9.1538 L 33.858 9.1538 L 33.0596 9.894 L 32.8408 10.3056 L 33.0596 10.8823 L 32.6953 11.8686 L 32.1142 11.5395 L 31.6064 10.9643 L 30.8056 11.5395 L 30.5146 10.2236 L 31.8955 9.3188 L 31.8955 8.8247 L 32.7685 8.249 L 34.1494 7.9194 L 35.0947 8.249 L 36.8388 8.5781 L 36.4033 9.0713 L 35.458 9.0713 L 36.4033 10.0586 L 37.1299 9.2363 L 37.3506 8.8745 C 37.3506 8.8745 40.1377 11.3725 41.7305 14.105 C 43.3233 16.8384 44.0713 20.0601 44.0713 20.7144 z "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 26.0703 9.2363 L 25.9971 9.7295 L 26.5069 10.0586 L 27.378 9.4829 L 26.9425 8.9892 L 26.3605 9.3188 L 26.0705 9.2363 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 26.8701 5.8633 L 24.9795 5.1226 L 22.7998 5.3692 L 20.1094 6.1094 L 19.6006 6.6035 L 21.2725 7.7549 L 21.2725 8.4131 L 20.6182 9.0713 L 21.4912 10.8003 L 22.0713 10.4702 L 22.7998 9.3188 C 23.9228 8.9716 24.9297 8.5781 25.9971 8.0844 L 26.8701 5.8632 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 28.833 12.7749 L 28.542 12.0337 L 28.0322 12.1987 L 28.1787 13.103 L 28.833 12.7749 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 29.123 12.6089 L 28.9775 13.5972 L 29.7773 13.4322 L 30.3584 12.857 L 29.8496 12.3629 C 29.6787 11.9078 29.4824 11.483 29.2685 11.0465 L 28.833 11.0465 L 28.833 11.5397 L 29.123 11.8688 L 29.123 12.609 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 18.3652 28.2422 L 17.7832 27.0899 L 16.6929 26.8433 L 16.1114 25.2808 L 14.6578 25.4449 L 13.4224 24.5406 L 12.1133 25.692 L 12.1133 25.8736 C 11.7173 25.7593 11.2305 25.7437 10.8779 25.5269 L 10.5869 24.7046 L 10.5869 23.7993 L 9.7148 23.8813 C 9.7876 23.3051 9.8598 22.7299 9.9331 22.1538 L 9.4238 22.1538 L 8.9155 22.812 L 8.4062 23.0581 L 7.6791 22.6479 L 7.6063 21.7426 L 7.7518 20.7553 L 8.8426 19.933 L 9.7147 19.933 L 9.8597 19.4389 L 10.95 19.685 L 11.7498 20.6733 L 11.8953 19.0268 L 13.2766 17.8754 L 13.7854 16.641 L 14.803 16.2299 L 15.3845 15.4076 L 16.6926 15.1596 L 17.3474 14.1733 C 16.6931 14.1733 16.0388 14.1733 15.3845 14.1733 L 16.6203 13.5971 L 17.4919 13.5971 L 18.7282 13.185 L 18.8737 12.6928 L 18.4372 12.2807 L 17.9284 12.1157 L 18.0739 11.6225 L 17.7106 10.8823 L 16.838 11.2104 L 16.9835 10.5527 L 15.9659 9.9765 L 15.1666 11.3744 L 15.2389 11.8685 L 14.4396 12.1986 L 13.9303 13.2679 L 13.7125 12.2806 L 12.3312 11.7044 L 12.1129 10.9642 L 13.9303 9.8939 L 14.7301 9.1537 L 14.8029 8.2489 L 14.3669 8.0018 L 13.7854 7.9193 L 13.4221 8.8246 C 13.4221 8.8246 12.8142 8.9437 12.6579 8.9823 C 10.6618 10.8217 6.6286 14.7924 5.6916 22.2885 C 5.7287 22.4623 6.3708 23.4701 6.3708 23.4701 L 7.8972 24.3744 L 9.4236 24.7865 L 10.0784 25.6097 L 11.0955 26.3499 L 11.677 26.2679 L 12.113 26.4642 L 12.113 26.597 L 11.5319 28.16 L 11.0954 28.8182 L 11.2409 29.1483 L 10.8776 30.3807 L 12.1862 32.7674 L 13.4943 33.9197 L 14.0763 34.742 L 14.0031 36.4705 L 14.4396 37.4568 L 14.0031 39.3494 C 14.0031 39.3494 13.9689 39.3377 14.0246 39.5271 C 14.0808 39.7166 16.3537 40.9783 16.4982 40.8709 C 16.6422 40.7615 16.7653 40.6658 16.7653 40.6658 L 16.6203 40.2556 L 17.2014 39.6794 L 17.4197 39.1032 L 18.365 38.7731 L 19.0916 36.9626 L 18.8738 36.4704 L 19.3816 35.7302 L 20.4724 35.4822 L 21.0544 34.1658 L 20.9089 32.5213 L 21.781 31.2869 L 21.9265 30.0525 C 20.7331 29.4607 19.5495 28.8513 18.365 28.242 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 16.7656 9.5649 L 17.4922 10.0586 L 18.0742 10.0586 L 18.0742 9.4829 L 17.3476 9.1538 L 16.7656 9.5649 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 14.876 8.9072 L 14.5122 9.812 L 15.2393 9.812 L 15.6031 8.9892 C 15.9166 8.7675 16.2286 8.5444 16.5479 8.331 L 17.275 8.5781 C 17.7594 8.9072 18.2438 9.2363 18.7286 9.5649 L 19.4561 8.9072 L 18.6558 8.5781 L 18.292 7.8374 L 16.9111 7.6728 L 16.8383 7.2612 L 16.184 7.4262 L 15.8936 8.002 L 15.5298 7.2613 L 15.3848 7.5904 L 15.4576 8.4132 L 14.876 8.9072 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87" fill-opacity="0.75" stroke-opacity="0.75">
                        <path fill="#204a87" d=""/>
                    </g>
                    <g fill="#204a87">
                        <path fill="#204a87" d=""/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87" fill-opacity="0.75" stroke-opacity="0.75">
                        <path fill="#204a87" d=""/>
                    </g>
                    <g fill="#204a87">
                        <path fill="#204a87" d=""/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 17.4922 6.8496 L 17.856 6.521 L 18.5831 6.3564 C 19.0811 6.1142 19.5811 5.9511 20.1095 5.7802 L 19.8195 5.2865 L 18.881 5.4213 L 18.4376 5.8632 L 17.7066 5.9692 L 17.0567 6.2744 L 16.7408 6.4272 L 16.5479 6.6855 L 17.4922 6.8496 "/>
                    </g>
                </g>
                <g fill="#204a87">
                    <g fill="#204a87">
                        <path fill="#204a87" d="M 18.7285 14.6665 L 19.165 14.0083 L 18.5102 13.5151 L 18.7285 14.6665 "/>
                    </g>
                </g>
            </g>
            <path fill-opacity="1" fill="none" fill-rule="nonzero" d="M 42.975098 23.485537 C 42.975098 33.651352 34.733917 41.89244 24.569492 41.89244 C 14.404139 41.89244 6.163426 33.65126 6.163426 23.485537 C 6.163426 13.32018 14.404139 5.079934 24.569492 5.079934 C 34.733917 5.079934 42.975098 13.32018 42.975098 23.485537 L 42.975098 23.485537 z " stroke="url(#radialGradient4132)" stroke-opacity="1" stroke-miterlimit="4"/>
        </g>
        <g transform="matrix(1.0783964,0.8669217,-0.8669217,1.0783964,24.00205,-53.972978)" fill="none" stroke-dasharray="none" stroke="#eeeeec" stroke-width="1.44545043" stroke-opacity="1" stroke-miterlimit="4">
            <path fill="none" stroke-dasharray="none" d="M 56.50334 30.771378 C 56.98234 32.069378 55.93334 33.500378 54.15934 33.972378 C 52.38234 34.439377 50.55734 33.772377 50.07734 32.473377 C 49.59834 31.176378 50.64934 29.746378 52.42134 29.275375 C 54.19934 28.805378 56.02534 29.473375 56.50334 30.771378 z " stroke="#eeeeec" stroke-width="1.44545043" stroke-opacity="1" stroke-miterlimit="4"/>
        </g>
        <polygon points="53.516,8.073 53.572,21.057 69.393,16.019 53.516,8.073 " transform="matrix(1.0606438,0.8509579,-0.8526505,1.0585383,20.406608,-48.508571)" fill="#ef2929" stroke-dasharray="none" stroke="#2e3436" stroke-width="1" stroke-opacity="1" stroke-miterlimit="4"/>
        <path fill-opacity="1" fill="url(#linearGradient7704)" stroke-dasharray="none" d="M 67.29077 3.017086 L 52.92011 25.310968 C 53.48081 26.5987 54.41797 26.837255 55.288727 27.260864 L 71.14091 5.4635954 C 70.31255 3.2631965 68.87116 2.9286125 67.29077 3.017086 z " stroke="#2e3436" stroke-width="1.33653569" stroke-opacity="1" stroke-miterlimit="4"/>
    </g>
</svg>