-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
5582 lines (5576 loc) · 428 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en" dir="ltr">
<head>
<meta charset="utf-8">
<meta name="description" content="Description">
<meta name="keywords" content="one, two, three">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>What's your Afterlife?</title>
<!-- external CSS link -->
<link rel="preload" href="img/weighing-end.svg" as="object" type="image/svg+xml">
<link rel="preconnect" href="https://fonts.gstatic.com">
<link href="https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap" rel="stylesheet">
<link rel="stylesheet" href="styles/normalize.css">
<link rel="stylesheet" href="styles/style.css">
</head>
<body>
<section class="first-section">
<header>
<h1>What is your afterlife?</h1>
<p>Complete the personality test and Osiris will determine your fate</p>
</header>
<p class="question"></p>
<div class="answers col-1-2 hidden">
<div class="row">
<button id="ans1" class="answer" type="button"></button>
<button id="ans2" class="answer" type="button"></button>
</div>
<div class="row">
<button id="ans3" class="answer" type="button"></button>
<button id="ans4" class="answer" type="button"></button>
</div>
</div>
<div class="progress-bar">
<div class="bar">
<div class="progress active">
</div>
</div>
</div>
</section>
<section class="second-section hidden">
<p class="loading">Your fate is being tallied...<span class="blink"></span></p>
</section>
<section class="third-section hidden">
<h2>Osiris is ready to determine your fate</h2>
<p class="drag-exp">Drag your heart to the scales to be judged</p>
<div>
<!-- SVG -->
<!-- Make heart draggable -->
<!-- When drag heart onto scales, update scales to img with heart on it -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
viewBox="0 0 253.9968 132.29"
version="1.1"
id="weighing-hearts">
<defs
id="defs2" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
id="layer1">
<g
id="layer1-77"
transform="translate(-9.5961771,23.035546)">
<g
id="layer1-7"
transform="matrix(0.99921487,0,0,1.0000001,-0.00154355,-0.12547035)" />
<path
style="fill:#efaa35;fill-opacity:1;stroke-width:0.377827"
d=""
id="path8762" />
<path
style="fill:#eba132;fill-opacity:1;stroke-width:1.17127;stroke-miterlimit:4;stroke-dasharray:none"
d=""
id="path11704" />
<path
style="fill:#eba132;fill-opacity:1;stroke-width:0.292816;stroke-miterlimit:4;stroke-dasharray:none"
d=""
id="path11708" />
<path
style="fill:#eba132;fill-opacity:1;stroke-width:0.585634;stroke-miterlimit:4;stroke-dasharray:none"
d=""
id="path11714" />
<g
id="g11153"
transform="matrix(0.13080526,0,0,0.1312666,300.6223,129.90351)">
<path
id="path2247"
d="m -568.78439,-844.44768 c -0.1792,0.12977 -0.94355,1.24441 -4.43898,3.27459 -22.8982,12.74212 -58.94412,35.09513 -59.43129,69.17722 l 4.75298,-0.83877 c 7.09714,-34.19222 43.46086,-51.50492 62.25447,-55.18429 0.31577,-0.0618 1.78728,-0.56622 2.0929,-0.62036"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path22350"
d="m -469.17479,-437.88712 -0.30741,12.34297 c 0.0923,17.7454 0.56231,36.57272 4.16752,49.57289 l 19.30043,143.7498 11.11707,-1.23524 c -8.34017,-48.11265 -10.08771,-94.90677 -15.13156,-142.36016 -3.03878,-31.14853 -9.48602,-22.24991 -19.14605,-62.07026 z"
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path5160"
d="M -437.91484,-714.92258 H -468.0485"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.216165px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path5162"
d="m -437.36894,-705.86065 -30.24284,0.43672"
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:0.216165px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path16040"
d="m -519.30398,-775.80179 39.73019,0.70164 c 19.38274,6.14648 34.85003,13.40589 40.86853,34.50239 2.17216,12.13124 0.17826,16.43138 0.92643,25.63102 l 0.61762,9.57302 c 1.33009,20.65053 1.87573,41.45795 0.3088,62.68788 -1.25617,18.42551 2.6977,38.08625 3.08807,56.51175 -0.62755,15.44982 -4.37518,26.90862 -5.09532,40.41516 l -19.30045,-1.50542 c -8.86085,-49.92884 -3.74152,-66.26747 -5.86735,-89.24534 -3.21928,-28.03134 -3.23072,-55.2607 -4.3233,-82.76036 -11.89892,21.46614 -24.34657,42.20066 -31.18956,70.40807 l 2e-5,4.67071 6.48496,29.91572 c 3.47984,4.88165 13.45318,27.03845 6.212,39.67075 8.26401,48.37983 12.16847,97.85146 11.69883,146.23126 l 0.6176,15.74917 c 1.31349,21.45179 9.93872,42.91305 9.57303,66.39358 -0.36571,23.48052 -4.59531,46.46082 -7.72018,68.86402 -1.18377,25.83688 2.38475,30.425 1.49106,39.84845 -0.8937,9.42346 -6.16242,8.99167 -11.53256,8.93131 -5.47382,-0.0615 -10.78517,-0.98759 -10.97406,-4.59505 -5.6525,-1.58684 -13.63076,4.93337 -72.26298,2.66195 -2.53845,-0.34379 -2.72671,-4.07491 -2.96016,-6.72364 2.61405,-0.71387 5.3242,-1.0433 8.22863,-0.59569 19.49718,-9.52983 38.65442,-13.62057 58.67336,-31.49835 0.94757,-0.98184 1.74584,-2.2995 1.54405,-5.86732 -2.52368,-35.34601 -10.2165,-72.03891 -13.27872,-107.46496 l -0.92644,-5.55853 c -2.70704,-6.91826 -5.10487,-15.69178 -8.33777,-19.45487 -1.31167,-7.20548 -1.85439,-14.41101 -6.48495,-21.61651 l -14.93195,-0.30879 c -6.77766,19.14172 -7.69604,26.92151 -11.73465,39.83614 -3.1464,18.89055 -0.3256,26.91286 -4.83175,41.99779 -4.54353,15.20999 -14.25507,34.95449 -21.92533,49.71799 -4.70185,12.66841 -11.17698,26.04614 -13.32986,37.75169 -0.61728,7.54004 0.63518,13.36339 -0.25852,22.78684 -0.89368,9.42346 -6.16241,8.99167 -11.53256,8.93131 -5.47381,-0.0615 -10.78516,-0.98759 -10.97405,-4.59505 -5.6525,-1.58684 -13.63076,4.93337 -72.26298,2.66195 -2.53845,-0.34379 -2.72671,-4.07491 -2.96017,-6.72364 2.61407,-0.71387 5.32422,-1.0433 8.22863,-0.59569 19.49721,-9.52983 43.90418,-14.85579 63.89708,-32.73356 1.92913,-2.15653 2.54378,-4.53214 3.28036,-6.88743 l 22.63337,-109.22413 c 0.0284,-11.06465 -1.37198,-21.57976 3.70566,-34.58642 l 0.30884,-8.6466 18.67279,-170.84104 -2.07441,-7.225 c -2.64973,-6.11353 -0.76048,-12.58777 -0.84922,-18.33542 -2.21764,-17.22775 -5.72131,-34.13399 -9.57305,-50.95322 -2.43817,-5.67324 -4.6924,-12.49417 -6.50713,-19.6617 -1.79054,-0.69505 -2.3169,-2.68065 -1.08322,-4.55593 -1.21593,-5.46656 -2.15363,-11.03373 -2.70477,-16.36203 l -0.82193,-0.1829 -1.22397,11.03906 c -0.47674,2.6764 -0.39521,5.31117 -0.85607,7.94148 -3.44671,19.67176 -7.00425,39.09328 -18.98196,73.80223 l -3.97832,8.72362 c -9.01943,26.12626 -22.20716,46.3907 -35.88002,65.97293 l -17.03204,-12.27105 c 9.84269,-24.33299 16.77234,-49.59638 31.629,-72.32788 l 2.65354,-6.44191 c 1.04639,-18.8741 3.39204,-45.47059 8.43124,-66.33344 l 1.97144,-15.63916 c -5.58709,-25.8699 6.44071,-43.12977 29.36508,-46.96066 l 37.8637,-7.36363"
style="fill:#a13c2a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
id="g10379"
transform="matrix(0.2388852,-0.0189106,0.01609258,0.2247429,79.670285,-802.22161)">
<path
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2306.2973,184.52272 126.2431,8.06166 -0.2772,76.8033 -129.0369,-11.15099 z"
id="path10381" />
<path
id="path10383"
d="m -2306.6899,192.98671 126.4462,10.27866 -0.033,22.47193 -127.3535,-9.68154 z"
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2307.6105,224.3534 127.0595,11.03768 0.1456,24.40243 -128.2272,-10.69107 z"
id="path10385" />
</g>
<path
id="path10177"
d="m -466.56401,-427.58523 c -0.44728,-2.63438 -1.62854,-5.46984 -2.00901,-8.51547 -4.27219,-34.19955 -4.91599,-92.63999 -15.08347,-137.4591 2.93821,-8.14657 1.78868,-17.40108 -0.39857,-25.10894 -2.15979,-7.61107 -5.22883,-13.5561 -6.80243,-15.79357 -1.13726,-5.32317 -4.49087,-21.11196 -5.65407,-32.28966 -0.0496,-0.56491 -0.52734,-0.99546 -1.09434,-0.98625 v 0 c -0.30561,0.005 -0.5946,0.14014 -0.79542,0.37057 -0.20082,0.23043 -0.29471,0.53511 -0.25838,0.8386 1.19504,11.48365 4.61758,27.4965 5.72837,32.69499 0.0332,0.14917 0.0977,0.28961 0.18914,0.41205 1.14858,1.56834 4.46133,7.78125 6.60655,15.34098 2.14523,7.5597 3.18368,16.55487 0.35127,24.09564 -0.0728,0.19665 -0.087,0.41022 -0.0405,0.61473 8.55114,37.4962 10.41131,84.88887 13.39711,119.57976 0.8705,10.11397 2.7245,19.26413 3.09224,26.54302"
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.216165;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -592.39173,-428.91847 16.83282,-171.09248 88.38204,-0.89138 c 1.1578,4.70187 6.01113,14.3234 0.46322,26.55742 7.64205,48.32109 12.40021,97.27484 11.37007,145.30684 z"
id="path16018" />
<path
id="path10201"
d="m -475.35093,-428.70009 c -90.46068,-15.2055 -106.95523,-83.39949 -100.20798,-171.31086 l 82.40443,-14.56614 c 7.81778,12.99952 12.34355,30.67307 6.46812,40.1776 7.65996,48.43443 12.39406,97.55559 11.33543,145.6994 z"
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.216165px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<g
id="g5548"
transform="matrix(1.15495,0,0,1.15495,-949.02335,-1315.6952)">
<g
id="g43293"
transform="matrix(0.2352324,0,0,0.2352324,156.09857,456.43837)">
<path
id="path17950"
d="M 635.87216,62.20482 756.8823,38.00576 928.16294,24.34768 1060.0458,51.61309 C 1035.2582,176.69924 950.43048,221.42663 852.15278,223.608 759.07025,225.66284 715.59812,201.75824 685.20467,169.48056 656.31518,138.80009 640.97075,90.66994 635.87216,62.20482 Z"
style="fill:#ffffff;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<path
id="path22080"
d="m 686.42183,52.08746 c 18.2422,90.20767 70.86521,123.62738 167.84341,119.81126 97.2175,-3.82554 145.60629,-66.22618 151.53506,-126.80181 -0.03,-0.81948 -0.057,-2.0152 0.4251,-4.15218"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#0044aa;stroke-width:17.82;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path19147"
d="m 732.56724,43.44945 c 17.7441,68.63748 56.5165,83.51963 119.816,81.06968 59.1424,-2.28906 102.97679,-41.05334 102.54079,-89.67764 -0.1565,-1.85144 0.50054,-3.068378 0.37091,-4.17207"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#308d57;stroke-width:13.5228;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path20126"
d="m 702.32734,49.93329 c 13.3292,63.17818 46.8619,110.3967 150.7673,105.84629 90.448,-3.96104 133.83989,-65.14381 135.57809,-116.27199 -0.0578,-0.22989 -0.0615,-1.30931 0.1678,-2.38786"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:10.935;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path20138"
d="m 747.61364,40.07701 c 8.9829,29.96421 19.0102,74.76087 104.7356,68.27216 56.1614,-4.25097 83.29912,-37.74224 85.41882,-68.98817 0.1713,-3.55141 0.14886,-11.43566 0.5771,-12.4718"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#0044aa;stroke-width:16.038;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path20140"
d="m 717.07,46.11781 c 17.9467,85.33215 81.27514,97.43708 136.98084,94.12652 75.67939,-4.5175 116.39589,-51.37683 118.49349,-100.98111 0.0666,-0.908 0.0511,-4.305124 0.48274,-5.683184"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#0044aa;stroke-width:16.038;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path18173"
d="m 656.27084,58.68836 c 19.81872,95.75782 73.22475,147.95049 194.04479,143.65214 0.47354,-0.0168 0.9481,-0.0346 1.42371,-0.0531 0.0139,-5.4e-4 0.0278,-0.001 0.0418,-0.002 C 1012.1534,196.0129 1032.4402,75.95489 1038.2598,48.00287"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#fac53a;stroke-width:40;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 635.87216,62.20482 756.8823,38.00576 928.16294,24.34768 1060.0458,51.61309 C 1035.2582,176.69924 950.43048,221.42663 852.15278,223.608 759.07025,225.66284 715.59812,201.75824 685.20467,169.48056 656.31518,138.80009 640.97075,90.66994 635.87216,62.20482 Z"
id="path21835" />
<g
transform="rotate(-17.110382,847.20541,-26.3075)"
id="g39880">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path22816" />
<path
id="path22874"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path24814" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path26759" />
</g>
<g
id="g39886"
transform="rotate(-11.553104,844.49502,-35.254422)">
<g
id="g42310">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path39888" />
<path
id="path39890"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path39892" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path39894" />
</g>
</g>
<g
transform="rotate(-22.811072,847.79281,-22.582036)"
id="g39896">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path39898" />
<path
id="path39900"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path39902" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path39904" />
</g>
<g
id="g39906"
transform="translate(7.5000003,0.1785727)">
<path
id="path39908"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path39910" />
<path
id="path39912"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path39914"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(2.2550563,826.289,-114.57521)"
id="g39916">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path39918" />
<path
id="path39920"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path39922" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path39924" />
</g>
<g
id="g39926"
transform="translate(28.688723)">
<g
transform="rotate(-6.4263526,828.8937,210.4002)"
id="g42304">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path39928" />
<path
id="path39930"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path39932" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path39934" />
</g>
</g>
<g
id="g40118"
transform="rotate(56.634768,820.83474,33.661522)">
<path
id="path40120"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40122" />
<path
id="path40124"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40126"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(62.264742,823.07495,32.097876)"
id="g40128">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40130" />
<path
id="path40132"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40134" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40136" />
</g>
<g
id="g40138"
transform="rotate(48.119833,822.04298,26.167363)">
<path
id="path40140"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40142" />
<path
id="path40144"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40146"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(74.800111,824.90974,31.878431)"
id="g40148">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40150" />
<path
id="path40152"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40154" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40156" />
</g>
<g
id="g40158"
transform="rotate(77.284382,831.03001,23.971736)">
<path
id="path40160"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40162" />
<path
id="path40164"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40166"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(69.334892,822.75497,34.00191)"
id="g40168">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40170" />
<path
id="path40172"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40174" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40176" />
</g>
<g
id="g40178"
transform="rotate(31.572028,825.36832,2.9689951)">
<path
id="path40180"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40182" />
<path
id="path40184"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40186"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(40.925027,821.80887,21.685105)"
id="g40188">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40190" />
<path
id="path40192"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40194" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40196" />
</g>
<g
id="g40198"
transform="rotate(25.355032,825.34182,-1.9052929)">
<path
id="path40200"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40202" />
<path
id="path40204"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40206"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(12.007511,829.34464,-43.006289)"
id="g40208">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40210" />
<path
id="path40212"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40214" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40216" />
</g>
<g
id="g40218"
transform="rotate(17.620309,828.70638,-28.043712)">
<path
id="path40220"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40222" />
<path
id="path40224"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40226"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(5.9096587,832.52733,-111.86772)"
id="g40228">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40230" />
<path
id="path40232"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40234" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40236" />
</g>
<g
id="g40238"
transform="rotate(-35.006529,850.29068,-10.96681)">
<path
id="path40240"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40242" />
<path
id="path40244"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40246"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(-30.040402,851.23673,-7.7958161)"
id="g40248">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40250" />
<path
id="path40252"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40254" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40256" />
</g>
<g
id="g40258"
transform="rotate(-69.472637,872.1742,88.992217)">
<g
transform="rotate(25.81784,817.72664,221.04359)"
id="g43287">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40260" />
<path
id="path40262"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40264" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40266" />
</g>
</g>
<g
id="g40298"
transform="rotate(-59.48596,857.89935,19.107734)">
<path
id="path40300"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40302" />
<path
id="path40304"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40306"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(-51.08347,855.57632,11.323821)"
id="g40308">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40310" />
<path
id="path40312"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40314" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40316" />
</g>
<g
id="g40318"
transform="rotate(-61.985327,852.17088,8.6626763)">
<path
id="path40320"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40322" />
<path
id="path40324"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40326"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(-72.076458,847.90346,6.4504279)"
id="g40328">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40330" />
<path
id="path40332"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40334" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40336" />
</g>
<g
id="g40338"
transform="rotate(-67.492071,850.74069,8.2683085)">
<path
id="path40340"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
id="path40342" />
<path
id="path40344"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
<path
id="path40346"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate" />
</g>
<g
transform="rotate(-78.250144,848.13703,7.9779369)"
id="g40348">
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 828.25609,211.13307 c -0.13343,-7.45786 4.89016,-18.96839 9.06788,-26.23606 3.80706,7.34073 8.60418,19.11827 8.5732,26.12322 -0.0581,13.46786 -17.40866,12.7921 -17.64108,0.11284 z"
id="path40350" />
<path
id="path40352"
d="m 830.58612,210.95231 c -0.0984,-5.52357 3.60737,-14.04874 6.68918,-19.43146 2.80841,5.43682 6.34714,14.15975 6.32428,19.34789 -0.0428,9.97484 -12.84203,9.47434 -13.01346,0.0836 z"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 830.63883,210.69295 c 0.94614,-0.85905 3.26805,-2.4672 6.40261,-2.4672 3.13455,0 4.90788,1.13719 6.30381,2.35431"
id="path40354" />
<path
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c13c1b;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;enable-background:accumulate"
d="m 832.87573,201.44879 c 1.17105,-0.80261 3.35272,-1.26746 4.35048,-1.25355 1.08085,0.0143 3.16495,0.74204 4.05488,1.30999"
id="path40356" />
</g>
</g>
</g>
<path
id="path18452"
d="m -562.50871,-778.14669 -0.72971,1.71708 c 5.28922,10.5899 7.86257,15.59734 26.2114,14.50064 l -3.11774,-10.5642 -3.41195,-6.92732 c -1.49461,-0.40096 -5.71781,-0.98349 -6.51889,0.32923 -1.36788,-0.81641 -5.43573,-0.78068 -7.38439,0.41399 -1.40287,-1.20908 -4.41032,-0.89304 -5.04872,0.53058 z"
style="fill:#a13c2a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.216165px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
d="m -516.28326,-780.89864 39.92528,7.19545 c 45.2557,13.66651 38.11156,43.49403 38.56164,55.34984 l 0.3926,7.6419 8.64765,-0.17446 -0.1966,-36.39307 -0.23663,-2.14606 c -4.12626,-21.69913 -8.51879,-46.44783 -22.45279,-64.38815 -11.88336,-15.30004 -27.94429,-31.9791 -50.26561,-39.63164 -17.65547,-6.05293 -24.37984,-5.97869 -34.80965,-6.50261 -1.4183,4.93048 -1.20956,15.84614 6.97777,39.60582 -12.79359,22.12823 -13.92089,25.27156 -17.97687,31.63994 7.33188,9.31795 7.04545,28.5358 7.59872,41.07359 0.49324,21.76631 0.63915,35.60073 0.63915,35.60073 h 25.54482 c 0.1587,-11.8148 0.0579,-20.04245 0.0822,-34.68357 -0.88455,-12.03711 -0.67411,-24.85732 -2.43171,-34.18771 z"
style="fill:#002255;fill-rule:evenodd;stroke:#000000;stroke-width:0.229762px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
id="path16062" />
<path
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -469.12591,-438.9789 -1.20255,0.32029 0.74074,12.02267 c 0.0923,17.74541 0.56231,36.57272 4.16751,49.57289 l 5.22933,-8.44224 10.05661,8.59665 c -3.03878,-31.14854 -9.33161,-22.24992 -18.99164,-62.07026 z"
id="path26236" />
<path
id="path7289"
d="m -464.0646,-369.65587 5.85207,-8.28687 7.86571,6.62757"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7291"
d="m -463.0972,-362.46035 5.72313,-8.03256 7.63661,6.37614"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7293"
d="m -462.02134,-354.9207 5.47637,-7.76422 7.41688,6.20325"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7295"
d="m -460.91873,-346.88165 5.41189,-7.63706 7.14854,5.95651"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7297"
d="m -459.95128,-339.46774 5.2642,-7.53982 7.10458,5.92193"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7299"
d="m -458.87073,-331.67047 5.02214,-7.23222 6.89422,5.82755"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7301"
d="m -457.68025,-323.99897 4.88846,-7.01713 6.71849,5.68923"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7303"
d="m -456.68295,-316.66831 4.72029,-6.75817 6.45478,5.48176"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7305"
d="m -455.76412,-309.76497 4.62125,-6.58707 6.23501,5.30885"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7307"
d="m -455.04701,-302.43096 4.80239,-6.41933 6.04054,5.01345"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7309"
d="m -454.15933,-295.16628 4.89303,-6.22482 5.83486,4.95836"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7311"
d="m -453.21662,-287.77034 4.57043,-5.73422 6.15818,4.53512"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7313"
d="m -452.19454,-280.49894 4.59582,-5.63432 5.74481,4.13528"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path7319"
d="m -449.56001,-261.62457 4.42992,-5.17214 5.41828,3.50346"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -450.43442,-267.47454 4.36423,-5.5571 5.66761,3.90368"
id="path27707" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -451.21929,-274.10617 4.44036,-5.17098 5.55365,3.73412"
id="path27709" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -448.67522,-255.05944 4.47228,-5.27336 5.31135,3.97377"
id="path27711" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -447.79986,-248.89571 4.19832,-5.01775 5.4955,3.50348"
id="path27713" />
<path
id="path27755"
d="m -446.28458,-236.66752 4.42991,-5.01778 5.7271,3.50347"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path27757"
d="m -446.92703,-242.88119 4.15459,-4.75276 5.61919,3.59543"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path27759"
d="m -445.95037,-234.41844 10.14977,-1.53285"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="matrix(0.2141747,0,0,0.2141747,-305.81937,-751.91476)"
id="g22363">
<path
style="fill:#002255;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="m -693.4697,1440.2193 c 12.58861,-4.1132 22.90273,-2.5402 32.82996,0 l -5.78881,-157.5 75,5.0084 c -2.29373,-11.28 -3.06982,-22.5601 0,-33.8401 l -75,5.2603 v 0 c 15.7072,-28.0754 37.73359,-52.9719 45.65445,-94.0296 16.00784,-82.9766 -26.30255,-79.4913 -55.65445,-79.7568 -31.9563,-0.2891 -79.12925,4.7061 -59.50295,83.2923 9.0274,36.1469 31.03456,64.5744 48.78866,90.4941 v 0 l -84.28571,-5.2603 c 2.82903,11.28 2.55557,22.5601 0,33.8401 l 84.28571,-5.0084 v 0 z"
id="path2718" />
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1"
d="m -687.14284,1235.9574 c -16.1987,-21.9923 -31.74221,-43.4818 -35.65666,-71.8493 -7.91325,-57.3465 21.8626,-63.7518 45.9517,-63.8977 21.4175,-0.1267 53.07088,2.909 38.9011,63.3926 -6.64802,28.377 -16.98925,53.9055 -28.48185,72.3544 -7.19409,9.7408 -14.92058,8.1477 -20.71429,0 z"
id="path2720" />
</g>
<path
id="path2716"
d="m -438.92972,-539.71619 -19.85003,-0.54095 c -0.99334,4.96557 -3.44619,10.22303 -5.84143,15.46905 -3.1663,5.02543 -3.37209,11.43886 -2.48804,17.52425 l -0.32449,5.73324 c 8.91564,1.06712 0.30164,-10.83191 5.94958,-15.25263 l 0.8654,8.22128 c 1.61663,1.5387 3.21031,2.75636 4.54334,0.32452 1.58656,1.77697 3.17312,1.64857 4.75969,-0.32452 1.9398,2.50822 3.52347,0.74267 5.19237,0 1.77848,1.39123 3.66121,1.88558 4.86786,-1.29814 0.35078,-8.68338 2.94863,-17.11608 2.32575,-29.8561 z"
style="fill:#a13c2a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="matrix(0.2141747,0,0,0.2141747,-305.35128,-752.367)"
id="g13453">
<g
id="g31785"
transform="translate(1592.2951,738.29278)">
<path
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2309.4612,199.79346 97.2272,0.75761 -4.0406,61.36677 -92.6815,-3.53553 z"
id="path31787" />
<path
id="path31789"
d="m -2309.4612,208.6323 96.4696,1.26268 -0.9922,18.95959 -95.2249,-1.49728 z"
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<path
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -718.18564,937.83135 97.48208,1.0125 -2.76617,61.11186 -94.4657,-3.28062 z"
id="path13439" />
<path
id="path13441"
d="m -718.06725,946.92508 97.37075,1.26268 -1.17243,18.95959 -95.94582,-1.49728 z"
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -717.88702,971.38771 95.67529,1.44291 -0.9922,18.95959 -94.43059,-1.67751 z"
id="path13451" />
</g>
<path
id="path2694"
d="m -670.43393,-563.57163 c -10.26041,1.6092 -22.70577,5.43188 -31.00634,18.98591 l -5.1138,3.16755 c 2.70503,5.95144 8.03739,2.53573 9.7361,-0.5726 -1.00711,2.74811 -0.47664,4.50473 2.76947,4.51064 -0.68726,2.563 0.21679,4.04751 3.22829,4.10389 -1.60398,2.52587 0.29691,4.75189 3.07538,4.23943 -0.9773,3.23301 0.7555,4.60531 2.47218,4.63752 4.58032,1.96909 25.02857,-23.41405 27.06549,-25.62806"
style="fill:#a13c2a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path2722"
d="m -696.83318,-755.2952 c 0.7168,-7.12325 -0.40406,-13.37746 2.52111,-22.0386 3.56964,-10.56938 7.13563,-12.40193 11.29283,-17.95567 1.5747,-1.2867 4.16691,0.0578 3.31664,2.50435 -4.82124,4.49101 -8.26293,10.62272 -9.66869,14.12259 1.44679,-0.16359 8.41187,-0.69821 8.56792,6.51907 l -0.0239,492.83283 c 7.75477,8.89921 1.08923,15.73902 1.50593,23.47086 -0.79267,0.38194 -1.42174,0.13759 -1.50224,-0.53626 -1.03815,-8.46064 1.84763,-12.15021 -0.0518,-16.54965 -0.90813,-2.10342 -2.6073,-2.00541 -3.59744,-0.21489 -2.13318,3.85775 0.85513,6.23075 0.0755,16.68222 -0.0568,0.76086 -0.98861,0.98033 -1.36863,0.52361 -0.48579,-7.76711 -5.8549,-14.31432 1.25233,-23.38404 l -0.008,-492.23518 c -0.40094,-4.02665 -4.75684,-4.45827 -6.92035,0.0917 -2.53614,5.33364 -1.46104,10.8626 -2.14094,16.29252 -1.12629,3.49722 -3.44105,2.14963 -3.25004,-0.12545 z"
style="fill:#002255;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.214175px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" />
<g
id="g31791"
transform="matrix(0.2222563,0.18027,-0.18027,0.2222563,-115.6392,-203.72768)">
<path
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2325.7658,208.08745 85.8628,-12.83954 5.6271,58.22657 -75.783,4.03406 z"
id="path31793" />
<path
id="path31795"
d="m -2323.8008,214.32581 85.349,-10.61046 1.3899,16.74698 -82.0932,7.91874 z"
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2316.7031,236.01998 80.1547,-6.16891 1.6383,18.2647 -76.8988,3.47719 z"
id="path13461" />
</g>
<path
d="m -683.90061,-552.76074 c 3.66636,-2.81994 8.04314,-2.39455 4.59195,1.78583 2.97329,-2.83107 9.08326,-2.34641 3.01724,3.45797 5.53328,-3.32804 5.84132,1.14183 3.00495,3.66203 3.73205,-2.29111 4.73367,1.30862 0.92962,4.97065 -3.79134,4.72072 -8.23507,9.547 -12.52277,14.23787 -0.0795,0.0841 -0.18642,0.13729 -0.356,0.11976 -1.71668,-0.0322 -3.42319,-1.24008 -2.44587,-4.47309 -2.77848,0.51255 -4.67937,-1.7136 -3.07538,-4.23943 -3.0115,-0.0563 -3.91551,-1.54091 -3.2283,-4.10385 -3.2461,-0.006 -4.09555,-1.27496 -3.08839,-4.02303 0.13342,-0.23023 0.26366,-0.4073 0.3913,-0.54134 4.57974,-4.95507 8.79215,-8.51522 12.6646,-10.78433 m 0.83295,-0.50878 c -0.29118,1.22742 0.93597,2.89989 3.00923,2.93225 m 0.84078,-0.53122 c -0.83131,1.44175 1.60314,3.40795 2.92419,3.33052 m 0.34031,-0.19827 c -1.22341,1.51266 0.57132,4.71242 3.19533,3.37062 m -0.4576,0.50622 c -0.70716,1.60511 0.58617,3.26031 2.02735,3.60751 m -19.43839,6.94055 c 0.53464,-0.37741 14.48455,-14.25512 14.48455,-14.25512 m -17.59134,10.07323 c 0.76324,-0.77322 14.59778,-13.57217 14.59778,-13.57217 m -8.36472,21.97049 14.43276,-14.90772"
style="fill:#a13c2a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path17387" />
<path
d="m -679.33475,-550.79945 c -0.24295,0.16785 -0.28272,0.50211 -0.84077,0.53122 -2.52699,0.005 -3.1261,-2.49136 -3.03055,-2.9382 3.46545,-2.25464 7.16589,-1.60338 3.93814,2.30635 2.97326,-2.83105 9.04251,-2.42124 2.97648,3.3831 5.53327,-3.328 5.91151,1.0284 3.07515,3.54861 3.31668,-2.03613 4.4067,0.69376 1.93249,3.8286 -1.46251,-0.3903 -2.75584,-2.04552 -1.9115,-3.80971 -2.48687,1.18275 -4.09832,-2.20508 -3.04508,-3.61861 -1.49119,0.17657 -3.92566,-1.78961 -3.09436,-3.23136 z"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
id="path17436" />
<path
id="path18425"
d="m -678.46758,-554.21218 c -2.42628,-0.89376 -5.60866,0.89248 -12.63485,6.77014 l -1.29554,-7.42603 c 7.36096,-5.00422 10.65514,-6.42391 17.03956,-7.77509"
style="fill:#a13c2a;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.43233;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -691.10243,-547.44204 c 7.02619,-5.87766 10.3103,-7.67367 12.7366,-6.77993 m 2.93894,-8.37817 c -6.38442,1.35103 -9.74827,2.62599 -17.08846,7.84608"
id="path20365" />
<g
transform="matrix(0.2675079,0,0,0.2161651,-1514.5917,-864.69704)"
id="g10361">
<path
id="path10329"
d="m 4025.3169,656.30279 33.5176,-0.0446 -0.2182,55.18666 -31.7687,0.81808 z"
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
<path
id="path10331"
d="m 4026.3351,661.6385 27.8395,0.46359"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:2.97238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:2.97238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4026.7052,670.05634 26.9677,0.18122"
id="path10333" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:2.97238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4026.8185,678.6049 26.6011,0.46359"
id="path10335" />
<path
id="path10337"
d="m 4027.4071,687.8118 26.6665,0.46359"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:2.97238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
id="path10339"
d="m 4027.9669,696.84358 26.5286,0.26135"
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:2.97238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:none;fill-rule:evenodd;stroke:#c13c1b;stroke-width:2.97238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 4028.121,704.83601 26.5451,-0.079"
id="path10341" />
<path
style="fill:none;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
d="m 4025.2054,656.12985 1.555,54.54823"
id="path10352" />
</g>
<g
transform="matrix(0.2614395,-0.00425623,0.00493732,0.2253744,-31.24815,-769.55501)"
id="g10371">
<path
id="path10373"
d="m -2298.2635,185.19871 129.778,8.3591 -8.4875,77.74205 -132.3953,-13.06317 z"
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2299.2988,193.60862 129.6597,10.54906 -2.6038,22.25561 -130.567,-9.95193 z"
id="path10375" />
<path
id="path10377"
d="m -2304.0756,224.65084 130.755,11.34864 -2.7465,24.15907 -131.7621,-10.98851 z"
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
transform="matrix(0.2578634,0.04330282,-0.03608215,0.2225221,-15.19504,-235.61526)"
id="g10387">
<path
id="path10389"
d="m -2301.6113,184.80937 110.5106,7.59832 -12.7569,77.18512 -100.9026,-10.51816 z"
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<path
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2302.2175,193.93127 109.5052,8.31038 -3.5952,21.22193 -106.5358,-7.24104 z"
id="path10391" />
<path
id="path10393"
d="m -2303.2512,224.49042 104.7883,11.0365 -4.1501,23.2056 -101.8185,-9.4877 z"
style="fill:#0044aa;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g10395"
transform="matrix(0.2610512,-0.01486537,0.01408191,0.2249883,97.542811,-363.95547)">
<path
style="fill:#fac53a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m -2305.3482,184.73061 117.6924,7.56058 -12.0299,77.508 -107.1821,-11.39729 z"
id="path10397" />
<path
id="path10399"