Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Video_terminal.svg « elements « svg « images « misc - github.com/zabbix/zabbix.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 6be85333ed389aafa45b420c0991ddb930d6a258 (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
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->

<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"
   xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
   width="123.26974"
   height="128.00035"
   id="svg160560"
   version="1.1"
   inkscape:version="0.48.0 r9654"
   sodipodi:docname="New document 68">
  <defs
     id="defs160562">
    <filter
       color-interpolation-filters="sRGB"
       height="1.3249732"
       y="-0.1624866"
       width="1.0574832"
       x="-0.02874162"
       id="filter5308-1-9"
       inkscape:collect="always">
      <feGaussianBlur
         id="feGaussianBlur5310-60-7"
         stdDeviation="2.4980839"
         inkscape:collect="always" />
    </filter>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5262-4-4"
       id="radialGradient9489"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.227387,-0.01047135,0,0.04979398,964.43665,204.18988)"
       cx="744.58344"
       cy="1398.1375"
       fx="744.58344"
       fy="1398.1375"
       r="104.29825" />
    <linearGradient
       id="linearGradient5262-4-4">
      <stop
         id="stop5264-5-7"
         offset="0"
         style="stop-color:#9ca0a5;stop-opacity:1;" />
      <stop
         style="stop-color:#5d646e;stop-opacity:1;"
         offset="0.32092565"
         id="stop5266-51-7" />
      <stop
         id="stop5268-9-5"
         offset="1"
         style="stop-color:#303d53;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       r="104.29825"
       fy="1398.1375"
       fx="744.58344"
       cy="1398.1375"
       cx="744.58344"
       gradientTransform="matrix(0.66995299,-0.03019752,0.01431704,0.17290432,225.73034,1178.878)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6587-0-3"
       xlink:href="#linearGradient6313-4-9"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient6313-4-9">
      <stop
         style="stop-color:#474a4e;stop-opacity:1;"
         offset="0"
         id="stop6315-3-1" />
      <stop
         id="stop6317-5-2"
         offset="0.32092565"
         style="stop-color:#5d646e;stop-opacity:1;" />
      <stop
         style="stop-color:#0f131a;stop-opacity:1;"
         offset="1"
         id="stop6319-9-9" />
    </linearGradient>
    <linearGradient
       y2="1427.665"
       x2="476.56497"
       y1="1419.8461"
       x1="476.92038"
       gradientTransform="matrix(0.85239472,0,0,0.85239472,57.13651,187.49264)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6589-7-6"
       xlink:href="#linearGradient5188-0-1"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient5188-0-1">
      <stop
         id="stop5190-6-1"
         offset="0"
         style="stop-color:#3b475a;stop-opacity:1;" />
      <stop
         style="stop-color:#c6d0dd;stop-opacity:0;"
         offset="1"
         id="stop5192-2-4" />
    </linearGradient>
    <inkscape:path-effect
       effect="spiro"
       id="path-effect6294-69-9"
       is_visible="true" />
    <filter
       color-interpolation-filters="sRGB"
       id="filter5200-0-8"
       inkscape:collect="always">
      <feGaussianBlur
         id="feGaussianBlur5202-2-6"
         stdDeviation="0.12989622"
         inkscape:collect="always" />
    </filter>
    <radialGradient
       r="104.29825"
       fy="1398.1375"
       fx="744.58344"
       cy="1398.1375"
       cx="744.58344"
       gradientTransform="matrix(1,0,0,0.17288136,0,1156.4255)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6591-0-9"
       xlink:href="#linearGradient5262-4-4"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient160360">
      <stop
         id="stop160362"
         offset="0"
         style="stop-color:#9ca0a5;stop-opacity:1;" />
      <stop
         style="stop-color:#5d646e;stop-opacity:1;"
         offset="0.32092565"
         id="stop160364" />
      <stop
         id="stop160366"
         offset="1"
         style="stop-color:#303d53;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6576-60-7"
       id="radialGradient9483"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.7361489,-0.1057429,0.24811776,4.0737432,-14.157949,-5369.4009)"
       cx="462.20682"
       cy="1394.1276"
       fx="462.20682"
       fy="1394.1276"
       r="7.4508848" />
    <linearGradient
       id="linearGradient6576-60-7">
      <stop
         style="stop-color:#3b475a;stop-opacity:1;"
         offset="0"
         id="stop6578-2-4" />
      <stop
         id="stop6580-2-8"
         offset="0.52657253"
         style="stop-color:#c6d0dd;stop-opacity:1;" />
      <stop
         style="stop-color:#232d3c;stop-opacity:1;"
         offset="1"
         id="stop6582-5-2" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6313-4-9"
       id="radialGradient9479"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.5321984,0.96961912,-0.25784454,0.40744768,777.19135,-776.81278)"
       cx="461.34637"
       cy="1361.1923"
       fx="461.34637"
       fy="1361.1923"
       r="39.277084" />
    <linearGradient
       id="linearGradient160374">
      <stop
         style="stop-color:#474a4e;stop-opacity:1;"
         offset="0"
         id="stop160376" />
      <stop
         id="stop160378"
         offset="0.32092565"
         style="stop-color:#5d646e;stop-opacity:1;" />
      <stop
         style="stop-color:#0f131a;stop-opacity:1;"
         offset="1"
         id="stop160380" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6353-6-5"
       id="linearGradient9476"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.22509783,0,0,0.22509783,969.16572,-48.278177)"
       x1="666.09454"
       y1="1080.6464"
       x2="949.8515"
       y2="1293.1321" />
    <linearGradient
       id="linearGradient6353-6-5">
      <stop
         style="stop-color:#000000;stop-opacity:1;"
         offset="0"
         id="stop6355-33-8" />
      <stop
         style="stop-color:#9a9a9d;stop-opacity:1;"
         offset="1"
         id="stop6357-3-2" />
    </linearGradient>
    <inkscape:path-effect
       is_visible="true"
       id="path-effect6247-90-5"
       effect="spiro" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6345-3-6"
       id="linearGradient9473"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.22509783,0,0,0.22509783,969.16571,-48.278177)"
       x1="897.6601"
       y1="1334.4812"
       x2="586.69891"
       y2="1369.8365" />
    <linearGradient
       id="linearGradient6345-3-6">
      <stop
         style="stop-color:#adb8c9;stop-opacity:1;"
         offset="0"
         id="stop6347-1-1" />
      <stop
         id="stop6349-9-9"
         offset="0.35951823"
         style="stop-color:#939aa4;stop-opacity:1;" />
      <stop
         style="stop-color:#232d3c;stop-opacity:1;"
         offset="1"
         id="stop6351-8-3" />
    </linearGradient>
    <radialGradient
       r="5.5625"
       fy="1324.2997"
       fx="874.3125"
       cy="1324.2997"
       cx="874.3125"
       gradientTransform="matrix(1.7548141,2.0229133,-0.76801234,3.0047477,357.13501,-4423.5452)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6601-3-7"
       xlink:href="#linearGradient5020-9-1"
       inkscape:collect="always" />
    <linearGradient
       id="linearGradient5020-9-1">
      <stop
         style="stop-color:#3b475a;stop-opacity:1;"
         offset="0"
         id="stop5022-78-3" />
      <stop
         id="stop5024-0-2"
         offset="0.30869097"
         style="stop-color:#c6d0dd;stop-opacity:1;" />
      <stop
         style="stop-color:#232d3c;stop-opacity:1;"
         offset="1"
         id="stop5026-7-0" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4904-5-6"
       id="linearGradient9469"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.22509783,0,0,0.22509783,969.18356,-48.282554)"
       x1="556.0246"
       y1="1099.3903"
       x2="968.59534"
       y2="1330.6199" />
    <linearGradient
       id="linearGradient4904-5-6">
      <stop
         id="stop4906-1-8"
         offset="0"
         style="stop-color:#01397d;stop-opacity:1;" />
      <stop
         style="stop-color:#21aae3;stop-opacity:1;"
         offset="0.46410909"
         id="stop4950-8-9" />
      <stop
         style="stop-color:#c0f4fe;stop-opacity:1;"
         offset="0.74663347"
         id="stop4948-5-9" />
      <stop
         id="stop4908-2-3"
         offset="1"
         style="stop-color:#21aae3;stop-opacity:1;" />
    </linearGradient>
    <inkscape:path-effect
       is_visible="true"
       id="path-effect6247-9-1-9"
       effect="spiro" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4956-7-1"
       id="linearGradient9465"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.22509783,0,0,0.22509783,969.18356,-48.282554)"
       x1="1154.8738"
       y1="1067.8448"
       x2="785.32184"
       y2="1353.5291" />
    <linearGradient
       id="linearGradient4956-7-1">
      <stop
         style="stop-color:#01397d;stop-opacity:0"
         offset="0"
         id="stop4958-9-1" />
      <stop
         id="stop4960-6-3"
         offset="0.46410909"
         style="stop-color:#21aae3;stop-opacity:1;" />
      <stop
         id="stop4962-3-4"
         offset="0.74663347"
         style="stop-color:#c0f4fe;stop-opacity:1;" />
      <stop
         style="stop-color:#21aae3;stop-opacity:1;"
         offset="1"
         id="stop4964-9-8" />
    </linearGradient>
    <inkscape:path-effect
       effect="spiro"
       id="path-effect5008-6-2"
       is_visible="true" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient4988-8-4"
       id="linearGradient9462"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.22509783,0,0,0.22509783,969.18356,-48.282554)"
       x1="1093.0221"
       y1="911.74304"
       x2="653.22003"
       y2="1274.0055" />
    <linearGradient
       id="linearGradient4988-8-4">
      <stop
         style="stop-color:#01397d;stop-opacity:1;"
         offset="0"
         id="stop4990-2-9" />
      <stop
         id="stop4992-4-1"
         offset="0.46410909"
         style="stop-color:#01397d;stop-opacity:1;" />
      <stop
         id="stop4994-7-4"
         offset="0.74663347"
         style="stop-color:#c0f4fe;stop-opacity:1;" />
      <stop
         style="stop-color:#1a97cb;stop-opacity:0.40568627"
         offset="1"
         id="stop4996-6-3" />
    </linearGradient>
    <inkscape:path-effect
       effect="spiro"
       id="path-effect5006-0-9"
       is_visible="true" />
    <inkscape:path-effect
       effect="spiro"
       id="path-effect9459"
       is_visible="true" />
    <inkscape:path-effect
       effect="spiro"
       id="path-effect8542-4"
       is_visible="true" />
    <inkscape:path-effect
       effect="spiro"
       id="path-effect8540-9"
       is_visible="true" />
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter6246-9-0-2-9-5"
       x="-0.11814149"
       width="1.2362829"
       y="-0.12191792"
       height="1.2438358">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="7.7728196"
         id="feGaussianBlur6248-8-9-6-2-2" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient5244-2-1"
       id="linearGradient9431"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0942299,0,0,1.0942299,628.2706,-1264.325)"
       x1="485.21152"
       y1="1282.5083"
       x2="413.37195"
       y2="1401.8518" />
    <linearGradient
       id="linearGradient5244-2-1"
       inkscape:collect="always">
      <stop
         id="stop5246-57-6"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop5248-6-7"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient44471-2"
       id="radialGradient9428"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.9912066,0.0133294,-0.00287986,0.64625738,-2371.8097,56.62655)"
       cx="1171.1038"
       cy="191.18689"
       fx="1171.1038"
       fy="191.18689"
       r="8.3527002" />
    <linearGradient
       id="linearGradient44471-2">
      <stop
         id="stop44473-5"
         offset="0"
         style="stop-color:#c6d0dd;stop-opacity:1;" />
      <stop
         style="stop-color:#232d3c;stop-opacity:1;"
         offset="1"
         id="stop44475-1" />
    </linearGradient>
    <inkscape:path-effect
       effect="spiro"
       id="path-effect46544-8"
       is_visible="true" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient44559-7"
       id="radialGradient46524-0"
       cx="969.19202"
       cy="273.78632"
       fx="969.19202"
       fy="273.78632"
       r="66.614487"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.31087,-0.2542083,0.34689739,3.153456,-1322.9703,-337.51797)" />
    <linearGradient
       id="linearGradient44559-7">
      <stop
         id="stop44561-5"
         offset="0"
         style="stop-color:#3b475a;stop-opacity:1;" />
      <stop
         style="stop-color:#c6d0dd;stop-opacity:1;"
         offset="0.26671347"
         id="stop44563-7" />
      <stop
         id="stop44565-4"
         offset="1"
         style="stop-color:#232d3c;stop-opacity:1;" />
    </linearGradient>
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient46462-9"
       id="radialGradient46540-2"
       cx="966.26141"
       cy="257.9277"
       fx="966.26141"
       fy="257.9277"
       r="66.614487"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="linearGradient46462-9">
      <stop
         style="stop-color:#c4c4ff;stop-opacity:1;"
         offset="0"
         id="stop46464-1" />
      <stop
         style="stop-color:#143eff;stop-opacity:1;"
         offset="1"
         id="stop46466-8" />
    </linearGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient6696-45-4"
       id="linearGradient46502-4"
       x1="904.72516"
       y1="274.6777"
       x2="920.58728"
       y2="285.37958"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="linearGradient6696-45-4">
      <stop
         id="stop6698-2-8"
         offset="0"
         style="stop-color:#d3d9e2;stop-opacity:1;" />
      <stop
         style="stop-color:#38485d;stop-opacity:1;"
         offset="0.52657253"
         id="stop6700-6-1" />
      <stop
         id="stop6702-1-2"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:1;" />
    </linearGradient>
    <inkscape:path-effect
       effect="spiro"
       id="path-effect46508-8"
       is_visible="true" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient44559-7"
       id="linearGradient9416"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.14392078,0.01328052,-0.01328052,0.14392078,997.9507,132.56521)"
       x1="862.78021"
       y1="154.59695"
       x2="1006.6914"
       y2="217.32349" />
    <linearGradient
       id="linearGradient160452">
      <stop
         id="stop160454"
         offset="0"
         style="stop-color:#3b475a;stop-opacity:1;" />
      <stop
         style="stop-color:#c6d0dd;stop-opacity:1;"
         offset="0.26671347"
         id="stop160456" />
      <stop
         id="stop160458"
         offset="1"
         style="stop-color:#232d3c;stop-opacity:1;" />
    </linearGradient>
    <inkscape:path-effect
       effect="spiro"
       id="path-effect46512-4"
       is_visible="true" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient46474-7"
       id="radialGradient46480-6"
       cx="966.26141"
       cy="257.9277"
       fx="966.26141"
       fy="257.9277"
       r="66.114487"
       gradientUnits="userSpaceOnUse" />
    <linearGradient
       id="linearGradient46474-7">
      <stop
         style="stop-color:#00ff00;stop-opacity:1;"
         offset="0"
         id="stop46476-3" />
      <stop
         style="stop-color:#005f00;stop-opacity:1;"
         offset="1"
         id="stop46478-1" />
    </linearGradient>
    <filter
       color-interpolation-filters="sRGB"
       inkscape:collect="always"
       id="filter8427-5">
      <feGaussianBlur
         inkscape:collect="always"
         stdDeviation="0.95271513"
         id="feGaussianBlur8429-8" />
    </filter>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient8441-5"
       id="linearGradient9542"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.0739988,0,0,1.0739988,-134.04643,-88.838839)"
       x1="1216.3435"
       y1="334.09363"
       x2="1210.6635"
       y2="323.13348" />
    <linearGradient
       id="linearGradient8441-5">
      <stop
         style="stop-color:#22211d;stop-opacity:1;"
         offset="0"
         id="stop8443-4" />
      <stop
         style="stop-color:#706d60;stop-opacity:1;"
         offset="1"
         id="stop8445-2" />
    </linearGradient>
    <inkscape:path-effect
       is_visible="true"
       id="path-effect8453-6"
       effect="spiro" />
    <inkscape:path-effect
       effect="spiro"
       id="path-effect8677-6"
       is_visible="true" />
    <inkscape:path-effect
       is_visible="true"
       id="path-effect8681-4"
       effect="spiro" />
    <inkscape:path-effect
       effect="spiro"
       id="path-effect8685-6"
       is_visible="true" />
    <inkscape:path-effect
       is_visible="true"
       id="path-effect10448"
       effect="spiro" />
    <inkscape:path-effect
       effect="spiro"
       id="path-effect10450"
       is_visible="true" />
    <inkscape:path-effect
       is_visible="true"
       id="path-effect10452"
       effect="spiro" />
  </defs>
  <sodipodi:namedview
     id="base"
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1.0"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:zoom="0.35"
     inkscape:cx="-54.793699"
     inkscape:cy="-13.142825"
     inkscape:document-units="px"
     inkscape:current-layer="layer1"
     showgrid="false"
     fit-margin-top="0"
     fit-margin-left="0"
     fit-margin-right="0"
     fit-margin-bottom="0"
     inkscape:window-width="471"
     inkscape:window-height="431"
     inkscape:window-x="88"
     inkscape:window-y="116"
     inkscape:window-maximized="0" />
  <metadata
     id="metadata160565">
    <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
     inkscape:label="Layer 1"
     inkscape:groupmode="layer"
     id="layer1"
     transform="translate(-429.7937,-391.21901)">
    <g
       style="display:inline"
       transform="translate(-659.61865,218.52551)"
       id="g10529"
       inkscape:export-filename="C:\Documents and Settings\Elvis Čauss\Desktop\Zabbix Frontend\Default map icons\Large\Video_terminal.png"
       inkscape:export-xdpi="90"
       inkscape:export-ydpi="90">
      <path
         d="m 848.88168,1398.1375 c 0,9.9583 -46.69591,18.0312 -104.29824,18.0312 -57.60234,0 -104.29825,-8.0729 -104.29825,-18.0312 0,-9.9584 46.69591,-18.0313 104.29825,-18.0313 57.60233,0 104.29824,8.0729 104.29824,18.0313 z"
         style="opacity:0.68609864;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter5308-1-9)"
         transform="matrix(0.23068892,-0.01057214,0,0.29079594,961.60199,-132.54646)"
         id="path5270-3"
         inkscape:connector-curvature="0" />
      <path
         id="path6278-0"
         style="fill:url(#radialGradient9489);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 1157.4613,264.91985 c 0,2.86831 -10.6181,5.68256 -23.7161,6.28559 -13.098,0.60325 -23.7161,-1.23298 -23.7161,-4.10128 0,-2.8682 10.6181,-5.68245 23.7161,-6.28559 13.098,-0.60303 23.7161,1.23298 23.7161,4.10128 z"
         inkscape:connector-curvature="0" />
      <path
         sodipodi:type="arc"
         style="fill:url(#radialGradient6587-0-3);fill-opacity:1;fill-rule:nonzero;stroke:none"
         id="path6280-1"
         sodipodi:cx="744.58344"
         sodipodi:cy="1398.1375"
         sodipodi:rx="104.29825"
         sodipodi:ry="18.031223"
         d="m 848.88168,1398.1375 c 0,9.9583 -46.69591,18.0312 -104.29824,18.0312 -57.60234,0 -104.29825,-8.0729 -104.29825,-18.0312 0,-9.9584 46.69591,-18.0313 104.29825,-18.0313 57.60233,0 104.29824,8.0729 104.29824,18.0313 z"
         transform="matrix(0.21667214,-0.00952421,0,0.26197202,972.2522,-93.967747)" />
      <path
         style="fill:url(#linearGradient6589-7-6);fill-opacity:1;stroke:none;filter:url(#filter5200-0-8)"
         d="m 454.79268,1401.7435 c 0.0184,-0.5559 0.0186,-1.1123 6.2e-4,-1.6682 -0.0244,-0.7521 -0.0821,-1.5032 -0.17296,-2.2502 l 14.53854,-0.8732 -0.86471,4.5641 c -2.22704,0.3256 -4.47494,0.5085 -6.72533,0.5472 -2.26244,0.039 -4.52738,-0.068 -6.77611,-0.3197 l -5e-5,0"
         id="path6292-7"
         inkscape:path-effect="#path-effect6294-69-9"
         inkscape:original-d="m 454.79268,1401.7435 c 0.32318,-0.7586 0.0627,-0.9297 6.2e-4,-1.6682 -0.0622,-0.7385 0.25383,-1.5451 -0.17296,-2.2502 l 14.53854,-0.8732 c -0.26236,1.9711 -0.58448,2.7627 -0.86471,4.5641 -2.23925,0.3472 -4.46092,0.4766 -6.72533,0.5472 -2.26442,0.071 -4.46873,0.083 -6.77611,-0.3197 z"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cscccscc"
         transform="matrix(1.0942299,0,0,1.0942299,628.27052,-1264.3253)" />
      <path
         transform="matrix(0.09340315,-0.00492744,0,0.09355698,1064.1822,136.92045)"
         d="m 848.88168,1398.1375 c 0,9.9583 -46.69591,18.0312 -104.29824,18.0312 -57.60234,0 -104.29825,-8.0729 -104.29825,-18.0312 0,-9.9584 46.69591,-18.0313 104.29825,-18.0313 57.60233,0 104.29824,8.0729 104.29824,18.0313 z"
         sodipodi:ry="18.031223"
         sodipodi:rx="104.29825"
         sodipodi:cy="1398.1375"
         sodipodi:cx="744.58344"
         id="path6282-3"
         style="fill:url(#radialGradient6591-0-9);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         sodipodi:nodetypes="cccscsscccc"
         inkscape:connector-curvature="0"
         id="path6284-4"
         d="m 1141.3374,257.07401 -15.6724,1.03415 c 0.1474,1.5398 0.3714,4.76078 -0.02,5.93719 -0.054,0.0733 -0.084,0.14006 -0.084,0.21009 0,0 0,0.0295 0,0.0295 0.021,0.8012 3.6627,1.25049 8.1528,1.00593 4.5025,-0.24522 8.1528,-1.09379 8.1528,-1.89948 0,-0.0295 9e-4,-0.0295 0,-0.035 -9e-4,-0.0296 -0.01,-0.0296 -0.01,-0.0405 -0.6458,-2.09129 -0.7557,-4.5555 -0.5205,-6.21851 z"
         style="fill:url(#radialGradient9483);fill-opacity:1;stroke:none" />
      <path
         id="path6276-28"
         style="fill:#8e959f;fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 1091.4892,191.28891 78.6153,6.24728 c 0.7911,0.0646 1.3816,0.64089 1.4325,1.43279 l 3.3425,52.0477 c 0.051,0.79222 -0.8106,1.28933 -1.4325,1.43267 -25.1167,6.09027 -52.9441,6.80524 -79.9024,6.44644 -0.7911,0.0646 -1.3995,-0.63958 -1.4325,-1.43267 l -2.6987,-64.7492 c -0.033,-0.7931 0.7121,-1.53323 2.0758,-1.42501 z"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ssssccsss" />
      <path
         sodipodi:nodetypes="ssssccsss"
         inkscape:connector-curvature="0"
         d="m 1091.7252,191.47131 79.3852,5.88915 c 0.7914,0.058 1.3817,0.64045 1.4325,1.43278 l 3.3425,52.04771 c 0.051,0.79222 -0.8106,1.28911 -1.4325,1.43267 -25.1167,6.09027 -52.9442,6.80524 -79.9024,6.44611 -0.7911,0.0646 -1.3978,-0.63925 -1.4326,-1.43235 l -2.8252,-64.38361 c -0.035,-0.79277 0.6411,-1.49111 1.4325,-1.43246 z"
         style="fill:url(#radialGradient9479);fill-opacity:1;fill-rule:nonzero;stroke:#1a1a1a;stroke-width:0.36015657;stroke-miterlimit:4;stroke-opacity:1"
         id="rect6253-9" />
      <path
         sodipodi:nodetypes="ccccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1094.3256,195.45059 76.3471,5.25252 2.865,45.68104 -76.2416,5.09353 z"
         inkscape:path-effect="#path-effect6247-90-5"
         id="path6245-9"
         d="m 1094.3256,195.45059 76.3471,5.25252 2.865,45.68104 -76.2416,5.09353 -2.9705,-56.02709"
         style="fill:url(#linearGradient9476);fill-opacity:1;stroke:#666666;stroke-width:0.22509786px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="cccccccc"
         inkscape:connector-curvature="0"
         id="path6269-9"
         d="m 1093.2346,257.16034 c 0.035,0.79255 0.6418,1.49877 1.4302,1.43508 26.8666,0.3588 54.5997,-0.35321 79.631,-6.44348 0.6198,-0.14312 1.4738,-0.64308 1.4231,-1.43508 l -0.1264,-1.98373 c -0.2571,0.46527 -0.8408,0.76684 -1.2969,0.87221 -25.0313,6.09027 -52.7644,6.80261 -79.6311,6.44348 -1.4444,-0.0295 -1.4221,-0.11971 -1.4301,1.11152 z"
         style="fill:url(#linearGradient9473);fill-opacity:1;fill-rule:nonzero;stroke:none" />
      <path
         transform="matrix(0.22031476,0.05435309,-0.02411816,0.20870235,1005.0059,-74.298198)"
         d="m 879.375,1324.2997 c 0,3.6244 -2.26656,6.5625 -5.0625,6.5625 -2.79594,0 -5.0625,-2.9381 -5.0625,-6.5625 0,-3.6244 2.26656,-6.5625 5.0625,-6.5625 2.79594,0 5.0625,2.9381 5.0625,6.5625 z"
         sodipodi:ry="6.5625"
         sodipodi:rx="5.0625"
         sodipodi:cy="1324.2997"
         sodipodi:cx="874.3125"
         id="path6274-0"
         style="fill:url(#radialGradient6601-3-7);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff"
         sodipodi:type="arc" />
      <path
         sodipodi:nodetypes="ccccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1094.3435,195.44621 76.347,5.25253 2.865,45.68103 -76.2415,5.09353 z"
         inkscape:path-effect="#path-effect6247-9-1-9"
         id="path6245-4-1"
         d="m 1094.3435,195.44621 76.347,5.25253 2.865,45.68103 -76.2415,5.09353 -2.9705,-56.02709"
         style="fill:url(#linearGradient9469);fill-opacity:1;stroke:#666666;stroke-width:0.22509786px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         style="opacity:0.27354264;fill:url(#linearGradient9465);fill-opacity:1;stroke:#666666;stroke-width:0.22509786px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         d="m 1094.3435,195.44621 76.347,5.25253 2.865,45.68103 -76.2415,5.09353 -2.9705,-56.02709"
         id="path4952-0"
         inkscape:path-effect="#path-effect5008-6-2"
         inkscape:original-d="m 1094.3435,195.44621 76.347,5.25253 2.865,45.68103 -76.2415,5.09353 z"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccc" />
      <path
         sodipodi:nodetypes="ccccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1094.3435,195.44621 76.347,5.25253 2.865,45.68103 -76.2415,5.09353 z"
         inkscape:path-effect="#path-effect5006-0-9"
         id="path4974-63"
         d="m 1094.3435,195.44621 76.347,5.25253 2.865,45.68103 -76.2415,5.09353 -2.9705,-56.02709"
         style="opacity:0.63677135;fill:url(#linearGradient9462);fill-opacity:1;stroke:#f2f2f2;stroke-width:0.22509786px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         style="opacity:0.63677135;fill:#f9f9f9;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.43794248;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 1096.3541,200.50757 73.4082,3.83156 2.5919,38.42169 -73.3247,2.40545 -2.6754,-44.6587"
         id="path8449"
         inkscape:path-effect="#path-effect9459"
         inkscape:original-d="m 1096.3541,200.50757 73.4082,3.83156 2.5919,38.42169 -73.3247,2.40545 z"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccc" />
      <path
         sodipodi:nodetypes="ccccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1136.6396,202.61944 33.1227,1.71969 2.5919,38.42169 -33.5265,0.94367 z"
         inkscape:path-effect="#path-effect8542-4"
         id="path8508"
         d="m 1136.6396,202.61944 33.1227,1.71969 2.5919,38.42169 -33.5265,0.94367 -2.1881,-41.08505"
         style="opacity:0.63677135;fill:#f9f9f9;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.43794248;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         style="fill:#f9f9f9;fill-opacity:1;stroke:#333333;stroke-width:0.43794248;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 1137.8206,223.43147 33.2038,0.50149 1.3298,18.82786 -33.5265,0.94367 -1.0071,-20.27302"
         id="path8510"
         inkscape:path-effect="#path-effect8540-9"
         inkscape:original-d="m 1137.8206,223.43147 33.2038,0.50149 1.3298,18.82786 -33.5265,0.94367 z"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccc" />
      <path
         sodipodi:nodetypes="ssssssssssssssscccsssssssssssss"
         inkscape:connector-curvature="0"
         id="path8520"
         d="m 895.09375,10.71875 c -4.89014,0.216719 -8.9448,1.858112 -12.09375,4.875 -1.59759,1.530586 -4.8116,3.669737 -7.125,4.78125 -3.48742,1.675586 -4.60803,2.971118 -6.5,7.53125 -1.98958,4.795395 -2.20562,6.588936 -1.6875,14 0.32684,4.675 1.03173,10.449445 1.5625,12.84375 0.66284,2.990057 0.60921,5.338672 -0.15625,7.5 -1.69611,4.78904 1.1929,17.46626 4.59375,20.21875 1.9377,1.56828 2.75991,3.55419 3.53125,8.34375 0.55646,3.45534 1.96032,7.52946 3.09375,9.0625 2.52251,3.41188 2.09711,6.41111 -0.9375,6.84375 -1.55228,0.22131 -3.03996,1.87541 -4.75,5.25 -3.00542,5.93093 -4.01657,6.48488 -27.46875,15 -20.35415,7.39028 -23.40627,9.10357 -25.46875,14.21875 -1.54323,3.82737 -2.18837,20.71788 -0.84375,22.0625 0.37,0.36999 35.8075,0.54708 78.75,0.40625 l 78.0625,-0.25 0.3125,-9 c 0.354,-10.88614 -1.301,-16.03118 -6.0625,-19.03125 -1.7852,-1.12478 -11.125,-4.91156 -20.75,-8.40625 -23.45217,-8.51512 -24.46333,-9.06907 -27.46875,-15 -1.71004,-3.37459 -3.19772,-5.02869 -4.75,-5.25 -3.03461,-0.43264 -3.42876,-3.43187 -0.90625,-6.84375 1.13343,-1.53304 2.50604,-5.60716 3.0625,-9.0625 0.77134,-4.78956 1.6248,-6.77547 3.5625,-8.34375 3.40085,-2.75249 6.25861,-15.42971 4.5625,-20.21875 -0.7789,-2.199274 -0.79207,-4.477673 -0.0937,-7.59375 0.54954,-2.452163 1.07819,-8.088755 1.1875,-12.53125 0.17935,-7.289277 -0.12954,-8.730788 -3.03125,-14.625 -3.56517,-7.24189 -6.22518,-9.577032 -15.1875,-13.21875 -6.3848,-2.594377 -12.10986,-3.779219 -17,-3.5625 z"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter6246-9-0-2-9-5)"
         transform="matrix(0.10485045,-0.00354508,0.00735026,0.10563,1060.9781,229.02453)" />
      <path
         style="fill:#d40000;fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 1154.7311,226.89518 c -0.5111,0.0402 -0.9242,0.22799 -1.2322,0.55782 -0.1562,0.16734 -0.4775,0.40469 -0.7119,0.53031 -0.3533,0.18935 -0.4613,0.33017 -0.6262,0.81856 -0.1733,0.51359 -0.1828,0.70381 -0.074,1.48481 0.069,0.49266 0.185,1.10011 0.2582,1.35114 0.091,0.31349 0.1032,0.56177 0.039,0.79278 -0.1426,0.51188 0.2535,1.84073 0.6303,2.11942 0.2147,0.15879 0.3155,0.36565 0.4315,0.86883 0.084,0.36302 0.2609,0.78839 0.391,0.94631 0.2896,0.35145 0.267,0.66977 -0.048,0.72623 -0.1611,0.0289 -0.3049,0.20887 -0.4594,0.57139 -0.2715,0.63714 -0.3735,0.69924 -2.7699,1.68183 -2.0798,0.8528 -2.3872,1.04459 -2.5659,1.59222 -0.1336,0.40975 -0.077,2.19619 0.074,2.33345 0.042,0.0378 3.7585,-0.0692 8.26,-0.23626 l 8.183,-0.30315 -0.033,-0.95178 c -0.043,-1.15116 -0.2543,-1.68876 -0.7756,-1.98878 -0.1954,-0.11248 -1.2025,-0.47937 -2.2374,-0.81439 -2.5216,-0.81631 -2.6317,-0.87124 -2.9904,-1.48707 -0.2041,-0.3504 -0.3722,-0.51984 -0.5366,-0.53772 -0.3214,-0.0349 -0.3847,-0.35035 -0.1453,-0.71969 0.1076,-0.16595 0.2215,-0.60117 0.2545,-0.96813 0.046,-0.50866 0.1205,-0.72145 0.3122,-0.89398 0.3363,-0.3028 0.5428,-1.65203 0.3297,-2.15188 -0.098,-0.22955 -0.1159,-0.47017 -0.066,-0.8018 0.04,-0.26097 0.054,-0.85823 0.032,-1.32788 -0.035,-0.7706 -0.078,-0.92178 -0.4253,-1.5341 -0.427,-0.75232 -0.7231,-0.98955 -1.6896,-1.34245 -0.6885,-0.25141 -1.2975,-0.35627 -1.8086,-0.31604 z"
         id="path8522"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ssssssssssssssscccsssssssssssss" />
      <path
         transform="matrix(0.09173574,0.00214794,0.00643089,0.0927858,1071.5593,206.47035)"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter6246-9-0-2-9-5)"
         d="m 895.09375,10.71875 c -4.89014,0.216719 -8.9448,1.858112 -12.09375,4.875 -1.59759,1.530586 -4.8116,3.669737 -7.125,4.78125 -3.48742,1.675586 -4.60803,2.971118 -6.5,7.53125 -1.98958,4.795395 -2.20562,6.588936 -1.6875,14 0.32684,4.675 1.03173,10.449445 1.5625,12.84375 0.66284,2.990057 0.60921,5.338672 -0.15625,7.5 -1.69611,4.78904 1.1929,17.46626 4.59375,20.21875 1.9377,1.56828 2.75991,3.55419 3.53125,8.34375 0.55646,3.45534 1.96032,7.52946 3.09375,9.0625 2.52251,3.41188 2.09711,6.41111 -0.9375,6.84375 -1.55228,0.22131 -3.03996,1.87541 -4.75,5.25 -3.00542,5.93093 -4.01657,6.48488 -27.46875,15 -20.35415,7.39028 -23.40627,9.10357 -25.46875,14.21875 -1.54323,3.82737 -2.18837,20.71788 -0.84375,22.0625 0.37,0.36999 35.8075,0.54708 78.75,0.40625 l 78.0625,-0.25 0.3125,-9 c 0.354,-10.88614 -1.301,-16.03118 -6.0625,-19.03125 -1.7852,-1.12478 -11.125,-4.91156 -20.75,-8.40625 -23.45217,-8.51512 -24.46333,-9.06907 -27.46875,-15 -1.71004,-3.37459 -3.19772,-5.02869 -4.75,-5.25 -3.03461,-0.43264 -3.42876,-3.43187 -0.90625,-6.84375 1.13343,-1.53304 2.50604,-5.60716 3.0625,-9.0625 0.77134,-4.78956 1.6248,-6.77547 3.5625,-8.34375 3.40085,-2.75249 6.25861,-15.42971 4.5625,-20.21875 -0.7789,-2.199274 -0.79207,-4.477673 -0.0937,-7.59375 0.54954,-2.452163 1.07819,-8.088755 1.1875,-12.53125 0.17935,-7.289277 -0.12954,-8.730788 -3.03125,-14.625 -3.56517,-7.24189 -6.22518,-9.577032 -15.1875,-13.21875 -6.3848,-2.594377 -12.10986,-3.779219 -17,-3.5625 z"
         id="path8534"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ssssssssssssssscccsssssssssssss" />
      <path
         sodipodi:nodetypes="ssssssssssssssscccsssssssssssss"
         inkscape:connector-curvature="0"
         id="path8536"
         d="m 1153.7403,209.3875 c -0.4472,0.01 -0.8086,0.1532 -1.0781,0.42636 -0.1367,0.13858 -0.4178,0.33016 -0.6229,0.42833 -0.3091,0.14798 -0.4036,0.26578 -0.5478,0.68483 -0.1517,0.44067 -0.16,0.60662 -0.065,1.29537 0.06,0.43448 0.1619,0.97178 0.226,1.19508 0.08,0.27886 0.09,0.49666 0.034,0.69556 -0.1248,0.44071 0.2217,1.62318 0.5514,1.88588 0.1878,0.14967 0.276,0.3357 0.3776,0.78176 0.073,0.3218 0.2282,0.70284 0.3421,0.84752 0.2533,0.32199 0.2336,0.59936 -0.042,0.63299 -0.141,0.0172 -0.2668,0.16748 -0.402,0.47692 -0.2376,0.54385 -0.3267,0.59308 -2.4234,1.33279 -1.8197,0.64199 -2.0886,0.7944 -2.2449,1.26459 -0.117,0.35181 -0.068,1.91763 0.064,2.04527 0.036,0.0351 3.2884,0.12768 7.2268,0.20685 l 7.1595,0.14448 -0.029,-0.83441 c -0.038,-1.00932 -0.2224,-1.49026 -0.6785,-1.77885 -0.171,-0.1082 -1.0521,-0.47962 -1.9576,-0.82455 -2.2061,-0.84046 -2.3025,-0.89403 -2.6163,-1.45079 -0.1786,-0.31679 -0.3257,-0.47346 -0.4695,-0.49733 -0.2812,-0.0467 -0.3366,-0.32579 -0.1271,-0.63695 0.094,-0.13981 0.1938,-0.51488 0.2226,-0.83429 0.04,-0.44275 0.1055,-0.62518 0.2732,-0.76653 0.2942,-0.24809 0.4749,-1.41821 0.2885,-1.86621 -0.086,-0.20574 -0.1015,-0.41717 -0.057,-0.70479 0.035,-0.22635 0.047,-0.74821 0.028,-1.16018 -0.03,-0.67595 -0.068,-0.81037 -0.3721,-1.3635 -0.3736,-0.6796 -0.6327,-0.90198 -1.4783,-1.25913 -0.6024,-0.25444 -1.1352,-0.37667 -1.5824,-0.36707 z"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" />
      <path
         id="path5230-9"
         style="opacity:0.32743363;fill:url(#linearGradient9431);fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 1091.7252,191.47131 79.3852,5.88915 c 0.7914,0.058 2.2028,1.24151 1.4325,1.43278 -55.3148,-3.60778 -62.9633,59.21984 -77.9924,59.92649 -0.7911,0.0646 -1.3978,-0.63925 -1.4326,-1.43235 l -2.8252,-64.38361 c -0.035,-0.79277 0.6411,-1.49111 1.4325,-1.43246 z"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ssccsss" />
      <path
         sodipodi:nodetypes="cccccccccccccccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1134.6927,194.60442 3.3272,0.33949 -0.1361,2.91944 -4.8205,-0.47524 -0.3394,-0.95052 -1.0185,0 -0.8146,0.67893 -1.426,0.33948 -4.2773,-0.40735 0.2716,-2.98739 3.1911,-0.0678 2.5607,0.25903 -0.8691,-1.69522 4.099,0.22302 -1.664,1.63064 z"
         inkscape:path-effect="#path-effect46544-8"
         id="path46542"
         d="m 1134.6927,194.60442 c 1.1091,0.11244 2.2182,0.2256 3.3272,0.33949 l -0.1361,2.91944 -4.8205,-0.47524 -0.3394,-0.95052 -1.0185,0 -0.8146,0.67893 -1.426,0.33948 -4.2773,-0.40735 0.2716,-2.98739 3.1911,-0.0678 2.5607,0.25903 -0.8691,-1.69522 4.099,0.22302 -1.664,1.63064 c 0.6387,0.0643 1.2773,0.12875 1.9159,0.19349"
         style="fill:url(#radialGradient9428);fill-opacity:1;stroke:#1a1a1a;stroke-width:0.1536278;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         transform="matrix(0.15012923,0.03162224,-0.03162224,0.15012923,996.261,113.63824)"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         sodipodi:ry="66.114487"
         sodipodi:rx="66.114487"
         sodipodi:cy="257.9277"
         sodipodi:cx="966.26141"
         id="path46446"
         style="fill:url(#radialGradient46524-0);fill-opacity:1;fill-rule:nonzero;stroke:#333333"
         sodipodi:type="arc" />
      <path
         sodipodi:type="arc"
         style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#333333"
         id="path46448"
         sodipodi:cx="966.26141"
         sodipodi:cy="257.9277"
         sodipodi:rx="66.114487"
         sodipodi:ry="66.114487"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         transform="matrix(0.07393806,-0.01963754,-0.0010355,0.07364743,1066.8794,186.5313)" />
      <path
         transform="matrix(0.06429404,-0.01707612,-9.0042728e-4,0.06404127,1076.5081,186.84739)"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         sodipodi:ry="66.114487"
         sodipodi:rx="66.114487"
         sodipodi:cy="257.9277"
         sodipodi:cx="966.26141"
         id="path46450"
         style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff"
         sodipodi:type="arc" />
      <path
         sodipodi:type="arc"
         style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff"
         id="path46452"
         sodipodi:cx="966.26141"
         sodipodi:cy="257.9277"
         sodipodi:rx="66.114487"
         sodipodi:ry="66.114487"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         transform="matrix(0.05313361,-0.01411199,-7.4414325e-4,0.05292474,1087.1422,186.68388)" />
      <path
         transform="matrix(0.04399208,-0.01168403,-6.1610996e-4,0.04381917,1095.7185,186.20055)"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         sodipodi:ry="66.114487"
         sodipodi:rx="66.114487"
         sodipodi:cy="257.9277"
         sodipodi:cx="966.26141"
         id="path46454"
         style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff"
         sodipodi:type="arc" />
      <path
         sodipodi:type="arc"
         style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff"
         id="path46456"
         sodipodi:cx="966.26141"
         sodipodi:cy="257.9277"
         sodipodi:rx="66.114487"
         sodipodi:ry="66.114487"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         transform="matrix(0.03749145,-0.00995754,-5.2506119e-4,0.03734409,1101.8056,185.89695)" />
      <path
         transform="matrix(0.02794369,-0.00742168,-3.9135019e-4,0.02783383,1110.7029,185.3736)"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         sodipodi:ry="66.114487"
         sodipodi:rx="66.114487"
         sodipodi:cy="257.9277"
         sodipodi:cx="966.26141"
         id="path46458"
         style="fill:url(#radialGradient46540-2);fill-opacity:1;fill-rule:nonzero;stroke:#ffffff"
         sodipodi:type="arc" />
      <path
         transform="matrix(0.14285638,-0.02194566,0.02194566,0.14285638,988.8318,163.84567)"
         d="m 911.81417,278.43381 c 0,6.05312 -3.16582,10.96015 -7.07107,10.96015 -3.90524,0 -7.07106,-4.90703 -7.07106,-10.96015 0,-6.05313 3.16582,-10.96016 7.07106,-10.96016 3.90525,0 7.07107,4.90703 7.07107,10.96016 z"
         sodipodi:ry="10.960155"
         sodipodi:rx="7.0710678"
         sodipodi:cy="278.43381"
         sodipodi:cx="904.7431"
         id="path46494"
         style="fill:url(#linearGradient46502-4);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         sodipodi:nodetypes="csc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1137.848,181.77374 c 0.029,-0.19447 -0.059,-0.41624 -0.099,-0.59448 -0.043,-0.17821 -0.043,-0.31365 -0.2028,-0.4609"
         inkscape:path-effect="#path-effect46508-8"
         id="path46506"
         d="m 1137.848,181.77374 c -0.01,-0.20142 -0.039,-0.40203 -0.099,-0.59448 -0.05,-0.16065 -0.1181,-0.3156 -0.2028,-0.4609"
         style="fill:none;stroke:#000000;stroke-width:0.14453222px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         sodipodi:nodetypes="ccccccscscscscccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1127.6626,174.47147 c 0.9246,0.28536 1.7193,0.79379 2.4713,1.38724 0.9532,0.84104 1.9474,1.86657 2.9105,2.63988 0.8864,0.65907 1.5149,1.22688 2.145,1.60666 0.6349,0.32985 1.1418,0.52681 1.6558,0.60163 0.7269,0.0693 1.1426,0.0461 1.4926,-0.12537 0.4045,-0.28926 0.6538,-0.50526 0.8451,-0.737 0.1921,-0.23183 0.3233,-0.47917 0.4917,-0.83131 0.1227,-0.41663 0.1841,-0.75308 0.168,-1.07197 -0.027,-0.31886 -0.104,-0.62018 -0.279,-0.96639 -0.5287,-1.08244 -1.3594,-2.00095 -2.3382,-2.66034 -0.9788,-0.65947 -2.1056,-1.05986 -2.9029,-1.4036 -0.2855,-0.0547 -0.5301,-0.0368 -0.8054,-0.0618 -0.2756,-0.024 -0.5509,-0.0349 -0.8356,-0.0307 -1.098,0.1019 -1.3874,0.0107 -2.3392,0.3899 -0.6595,0.29028 -1.3704,0.40856 -1.9578,0.81949 -0.093,0.0675 -0.6299,0.37622 -0.7224,0.44376 z"
         inkscape:path-effect="#path-effect46512-4"
         id="path46510"
         d="m 1127.6626,174.47147 c 0.8821,0.34635 1.7162,0.81459 2.4713,1.38724 1.0441,0.79187 1.9273,1.77349 2.9105,2.63988 0.6709,0.59125 1.3889,1.12906 2.145,1.60666 0.4949,0.32599 1.0671,0.53387 1.6558,0.60163 0.4993,0.0575 1.0099,0.0146 1.4926,-0.12537 0.3211,-0.19487 0.6084,-0.44537 0.8451,-0.737 0.2036,-0.25087 0.3699,-0.53201 0.4917,-0.83131 0.1441,-0.33588 0.2024,-0.70812 0.168,-1.07197 -0.032,-0.33534 -0.1403,-0.65945 -0.279,-0.96639 -0.4921,-1.08883 -1.3603,-1.97374 -2.3382,-2.66034 -0.8835,-0.62032 -1.868,-1.09636 -2.9029,-1.4036 -0.268,-0.0259 -0.5366,-0.0465 -0.8054,-0.0618 -0.2783,-0.0159 -0.5569,-0.0261 -0.8356,-0.0307 -0.7917,0.0344 -1.5791,0.16568 -2.3392,0.3899 -0.6799,0.20058 -1.338,0.47551 -1.9578,0.81949 -0.2472,0.13718 -0.4883,0.28529 -0.7224,0.44376 l 5e-4,-8e-5"
         style="fill:url(#linearGradient9416);fill-opacity:1;stroke:none" />
      <path
         transform="matrix(0.02520639,0.01654821,-0.02189826,0.01905945,1118.2988,157.68417)"
         d="m 1032.3759,257.9277 c 0,36.51403 -29.6005,66.11449 -66.11449,66.11449 -36.51402,0 -66.11448,-29.60046 -66.11448,-66.11449 0,-36.51402 29.60046,-66.11448 66.11448,-66.11448 36.51399,0 66.11449,29.60046 66.11449,66.11448 z"
         sodipodi:ry="66.114487"
         sodipodi:rx="66.114487"
         sodipodi:cy="257.9277"
         sodipodi:cx="966.26141"
         id="path46470"
         style="fill:url(#radialGradient46480-6);fill-opacity:1;fill-rule:nonzero;stroke:none"
         sodipodi:type="arc" />
      <path
         sodipodi:nodetypes="cccccccccscccccssccccccscccsccccccccccccccccccccssccsccccsccc"
         id="path8369"
         transform="matrix(1.056862,0,0,0.89823663,-103.66416,-12.041492)"
         d="m 1221.25,309.84375 c -2.5054,-0.0352 -5.0071,0.3976 -7.75,1.28125 l -2.2188,0.71875 -0.9374,-0.21875 c -2.5439,-0.54275 -4.5121,-0.35202 -7.375,0.65625 -2.2603,0.79599 -3.4044,1.43773 -4.6876,2.6875 -1.8937,1.96872 -3.2521,4.61672 -2.5,6.53125 0.1848,0.93721 1.0319,2.55188 1.7813,3.40625 1.0579,1.20594 2.572,1.87933 4.9687,2.21875 2.366,0.33504 3.4433,0.24473 5.8438,-0.5 2.3521,-0.7297 3.7034,-1.42972 5.0938,-2.59375 3.4077,-2.8532 4.1014,-6.25712 1.8437,-9.15625 -0.309,-0.39669 -0.5325,-0.7818 -0.5,-0.84375 0.121,-0.23137 3.4632,-0.48354 5.0313,-0.375 1.9707,0.13638 3.9215,0.58137 6.5312,1.5 2.4576,0.86505 3.3438,1.31386 3.3438,1.65625 0,0.40339 0.4286,0.82708 2.2187,2.3125 3.0582,2.53762 4.7099,4.39676 5.9375,6.59375 0.4282,0.76607 0.4458,0.87354 0.3438,1.5625 -0.1482,0.9973 -1.808,3.85685 -2.4376,4.1875 -1.1668,0.61299 -3.0655,1.38779 -4.8124,1.9375 -2.7404,0.86219 -8.3949,2.28638 -8.6563,2.1875 -0.1215,-0.046 -0.2831,-0.3007 -0.375,-0.59375 -0.3167,-1.01101 -1.4296,-2.27521 -3.375,-3.8125 -1.2069,-0.95372 -3.5437,-2.11972 -5.3437,-2.65625 -1.0532,-0.31385 -3.8066,-0.69632 -5.4063,-0.75 -2.1717,-0.0729 -4.9639,0.7181 -6.0625,1.6875 -1.9236,1.69755 -2.1806,1.96261 -2.5938,2.78125 -0.4113,0.81488 -0.4716,0.87353 -0.8124,0.78125 -0.2026,-0.0548 -0.492,2.71241 -1.1563,2.59375 -0.3422,-0.0913 -0.7182,-0.14933 -1.0937,-0.21875 -0.038,-0.58392 -0.2197,-1.02126 -0.375,-0.59375 -0.069,0.19038 -0.1326,0.33772 -0.1876,0.5 -12.8386,-1.95537 -25.2272,13.19036 -15.3497,-1.45707 0.2304,0.21741 0.534,0.34997 0.875,0.3125 l 0.875,-0.0937 c 0.6172,-0.0678 1.0678,-0.63279 1,-1.25 l -0.125,-1.1875 c -0.068,-0.61721 -0.6328,-1.06783 -1.25,-1 l -0.875,0.0937 c -0.6172,0.0678 -1.0678,0.63279 -1,1.25 l 0,0.0625 c -0.2901,0.17571 -0.5733,0.93391 -1.0625,1.8125 -9.0479,17.31444 -1.201,1.562 16.1622,2.95707 l 0.6563,0.0312 c 0.021,0.0531 0.034,0.10248 0.062,0.15625 0.209,0.39772 0.6224,0.6611 2.1562,1.4375 1.6667,0.84339 2.0132,1.12393 2.8438,2.03125 1.3494,1.47418 2.3023,2.20461 3.9688,3.125 4.0987,2.26369 8.6749,2.88586 12.5,1.6875 2.3106,-0.72389 3.7097,-1.7813 4.5312,-3.4375 0.1548,-0.31241 0.409,-0.62955 0.5938,-0.6875 0.1829,-0.0574 2.2631,-0.24947 4.625,-0.4375 5.1021,-0.40618 6.0393,-0.53177 8.5312,-1.3125 3.7076,-1.16154 5.8054,-2.76097 7.1562,-5.5 0.8665,-1.75689 1.0579,-4.52796 0.5626,-7.78125 -0.3048,-2.00319 -1.3169,-4.87977 -2.2188,-6.3125 -0.8388,-1.33272 -2.8709,-3.44182 -4.5,-4.6875 -1.6844,-1.28798 -4.97,-3.01563 -7.1875,-3.78125 -2.7846,-0.96147 -5.307,-1.46474 -7.8125,-1.5 z"
         style="opacity:0.20179372;fill:#000000;filter:url(#filter8427-5)"
         inkscape:connector-curvature="0" />
      <path
         sodipodi:nodetypes="cccccccccscccccssccccccscccsccccccccccccccccccccssccsccccsccc"
         inkscape:connector-curvature="0"
         style="fill:#4d4d4d"
         d="m 1188.0461,260.04295 c -2.6908,-0.0378 -5.3776,0.42702 -8.3235,1.37605 l -2.383,0.77194 -1.0068,-0.23494 c -2.7321,-0.58291 -4.846,-0.37806 -7.9207,0.70482 -2.4276,0.85489 -3.6563,1.54412 -5.0345,2.88637 -2.0338,2.1144 -3.4927,4.95835 -2.685,7.01455 0.1985,1.00656 1.1083,2.74072 1.9131,3.65831 1.1362,1.29518 2.7624,2.0184 5.3364,2.38293 2.5411,0.35984 3.6981,0.26284 6.2762,-0.53699 2.5262,-0.7837 3.9775,-1.53552 5.4708,-2.78569 3.6598,-3.06433 4.4049,-6.72014 1.9801,-9.8338 -0.3319,-0.42604 -0.5719,-0.83965 -0.537,-0.90619 0.13,-0.24849 3.7195,-0.51932 5.4036,-0.40275 2.1165,0.14648 4.2117,0.62439 7.0145,1.611 2.6395,0.92906 3.5913,1.41109 3.5913,1.77881 0,0.43324 0.4603,0.88829 2.3828,2.48362 3.2845,2.72541 5.0585,4.72212 6.3769,7.08168 0.4599,0.82276 0.4788,0.93818 0.3692,1.67813 -0.1591,1.0711 -1.9417,4.14225 -2.6179,4.49737 -1.2532,0.65835 -3.2924,1.49048 -5.1685,2.08087 -2.9432,0.92599 -9.0162,2.45557 -9.2969,2.34937 -0.1305,-0.0494 -0.3041,-0.32295 -0.4028,-0.63768 -0.3401,-1.08583 -1.5353,-2.44358 -3.6247,-4.09463 -1.2962,-1.02429 -3.8059,-2.27657 -5.7391,-2.8528 -1.1312,-0.33708 -4.0883,-0.74785 -5.8064,-0.8055 -2.3324,-0.0783 -5.3312,0.77123 -6.5111,1.81237 -2.0659,1.82317 -2.342,2.10784 -2.7857,2.98706 -0.4418,0.87518 -0.5065,0.93817 -0.8726,0.83906 -0.2176,-0.0589 -0.5284,2.91312 -1.2418,2.78568 -0.3675,-0.0981 -0.7714,-0.16038 -1.1747,-0.23493 -0.041,-0.62713 -0.2359,-1.09683 -0.4027,-0.63769 -0.074,0.20447 -0.1424,0.36271 -0.2015,0.537 -13.3629,5.69201 -28.4875,12.84873 -17.8791,-2.88259 0.2475,0.2335 0.5736,0.37587 0.9398,0.33562 l 0.9397,-0.10063 c 0.6629,-0.0728 1.1469,-0.67962 1.074,-1.3425 l -0.1342,-1.27537 c -0.073,-0.66289 -0.6796,-1.14685 -1.3425,-1.074 l -0.9398,0.10063 c -0.6628,0.0728 -1.1468,0.67962 -1.074,1.3425 l 0,0.0671 c -0.3115,0.18871 -0.6157,1.00301 -1.1411,1.94662 -9.7174,18.59569 2.3141,12.16919 18.7517,4.49359 l 0.7049,0.0335 c 0.023,0.057 0.036,0.11006 0.067,0.16781 0.2244,0.42715 0.6684,0.71002 2.3157,1.54387 1.7901,0.9058 2.1622,1.2071 3.0543,2.18156 1.4492,1.58327 2.4726,2.36775 4.2624,3.35625 4.402,2.4312 9.3169,3.09941 13.425,1.81237 2.4816,-0.77746 3.9842,-1.91311 4.8665,-3.69187 0.1663,-0.33553 0.4393,-0.67614 0.6378,-0.73837 0.1964,-0.0617 2.4305,-0.26793 4.9672,-0.46988 5.4797,-0.43623 6.4862,-0.57112 9.1625,-1.40962 3.982,-1.24749 6.235,-2.96528 7.6858,-5.90699 0.9306,-1.8869 1.1362,-4.86303 0.6042,-8.35706 -0.3274,-2.15142 -1.4144,-5.24086 -2.383,-6.77961 -0.9009,-1.43134 -3.0833,-3.69652 -4.833,-5.03437 -1.809,-1.38329 -5.3378,-3.23879 -7.7194,-4.06106 -2.9906,-1.03262 -5.6997,-1.57313 -8.3906,-1.611 z"
         id="path7557" />
      <path
         style="fill:#6f6e6c"
         d="m 1163.0569,285.07925 c 0.7327,0.23469 0.9564,0.0949 1.5883,-0.99173 0.3967,-0.68191 1.0142,-1.37584 1.9982,-2.24481 1.3953,-1.23226 1.4551,-1.26743 2.9512,-1.73655 2.3806,-0.74653 3.5631,-0.80645 6.9551,-0.35236 2.4902,0.33336 4.0233,0.83157 6.4014,2.08029 2.7222,1.42932 5.1834,3.76943 5.719,5.43741 0.098,0.3036 0.2877,0.59733 0.4229,0.65271 0.135,0.0553 1.3299,-0.15982 2.6557,-0.47825 2.2659,-0.5443 3.1499,-0.70001 4.9163,-0.86586 1.3005,-0.12207 5.4418,-1.58288 6.7376,-2.37649 0.3419,-0.20933 0.3487,-0.23855 0.058,-0.24836 -0.2586,-0.009 -0.2094,-0.075 0.2287,-0.30814 0.4308,-0.22934 0.7873,-0.69853 1.5641,-2.05863 1.0399,-1.82096 1.4373,-3.10567 1.1975,-3.87098 -0.1703,-0.54337 -1.2448,-2.2331 -2.1622,-3.40019 -0.8396,-1.06815 -2.648,-2.78581 -4.9567,-4.7083 -1.3812,-1.14999 -1.7737,-1.56373 -1.9168,-2.02094 -0.16,-0.51073 -0.3045,-0.62851 -1.2935,-1.05479 -5.4001,-2.32722 -10.3262,-3.13551 -14.3279,-2.3509 -1.1652,0.22845 -1.183,-0.0172 0.1526,2.08692 0.7077,1.1143 0.7764,1.29052 0.8704,2.22915 0.1258,1.25449 -0.06,2.38373 -0.5663,3.44454 -0.804,1.68335 -2.7414,3.53081 -4.9236,4.69479 -1.5103,0.8057 -4.7062,1.81838 -6.0397,1.91377 -3.4581,0.2474 -6.8208,-0.65582 -8.3752,-2.24957 -0.725,-0.74328 -1.5126,-2.17767 -1.8983,-3.45699 1.484,-5.76908 1.6951,-4.5942 2.5254,-7.12123 1.7184,-1.58819 2.8541,-2.20946 5.6143,-3.07113 2.2182,-0.69245 2.5786,-0.76331 3.9445,-0.77554 0.8268,-0.008 2.1049,0.10246 2.8401,0.24395 l 1.3367,0.25742 3.062,-0.91934 c 3.3222,-0.99758 5.0363,-1.27103 7.6633,-1.22267 8.1355,0.14978 17.3181,4.92241 20.9295,10.87829 1.0711,1.7664 2.1569,5.25252 2.3953,7.69075 0.1857,1.89948 0.09,4.55725 -0.206,5.67642 -0.6807,2.58058 -3.2642,5.30017 -5.7847,6.0898 -0.7982,0.25008 -0.8084,0.24781 -0.9529,-0.21373 -0.2318,-0.73967 -1.3198,-1.37151 -2.3401,-1.35919 -1.5582,0.0188 -3.0481,0.46291 -5.0032,1.49123 -1.9487,1.02487 -2.4715,1.4351 -2.4735,1.94037 0,0.36972 0.074,0.35176 -2.5724,0.61815 -3.5621,0.35861 -3.3753,0.31731 -3.6518,0.80774 -0.3052,0.54212 -0.4253,0.59389 -0.4445,0.19188 -0.023,-0.46609 -0.6037,-0.44131 -0.7711,0.033 -0.074,0.20863 -0.2722,0.7777 -0.4414,1.26462 -0.4893,1.40858 -1.0553,1.82129 -3.5459,2.58585 -1.7645,0.54159 -2.2685,0.63463 -3.4836,0.64307 -3.1847,0.0221 -6.2766,-0.72565 -9.0168,-2.18078 -2.1011,-1.11571 -2.9255,-1.74096 -4.4628,-3.3844 -1.1149,-1.19211 -1.4212,-1.41348 -3.1518,-2.27869 -1.0543,-0.52707 -2.0829,-1.15399 -2.286,-1.39313 -0.4888,-0.57566 -0.5257,-1.4468 -0.1102,-2.59227 0.172,-0.47286 0.2988,-0.90306 0.2823,-0.956 0.5699,-1.38162 0.7582,-1.08042 2.1485,-0.71014 z m 1.5699,5.27795 c 0.3946,0.18479 0.7646,0.28152 0.8222,0.21497 0.058,-0.0666 0.1776,-0.029 0.2666,0.0832 0.1737,0.21902 3.3211,1.57327 3.5152,1.51245 0.062,-0.0201 0.2451,0.074 0.4024,0.20891 0.1574,0.13494 0.4227,0.20254 0.5898,0.1502 0.1684,-0.0528 0.3357,0.008 0.3755,0.13361 0.04,0.12711 0.2072,0.18632 0.3767,0.13322 0.1717,-0.0538 0.337,0.006 0.3779,0.13699 0.04,0.12793 0.2489,0.24308 0.464,0.25595 0.2151,0.0129 0.5169,0.10493 0.6707,0.20443 0.1538,0.0997 0.3575,0.158 0.4524,0.12982 0.096,-0.028 0.392,0.0706 0.6594,0.21966 0.5634,0.31368 0.97,0.1722 0.8916,-0.31015 -0.04,-0.25028 -0.2141,-0.35735 -0.6872,-0.42374 -0.3479,-0.049 -0.7009,-0.17484 -0.7841,-0.27995 -0.084,-0.10504 -0.274,-0.15275 -0.4239,-0.10579 -0.1498,0.0469 -0.3449,-0.006 -0.4335,-0.11794 -0.089,-0.1118 -0.3551,-0.21488 -0.5922,-0.22906 -0.2369,-0.0142 -0.453,-0.0961 -0.48,-0.18207 -0.026,-0.086 -0.1816,-0.1148 -0.3438,-0.064 -0.1619,0.0508 -0.3812,-0.0311 -0.4871,-0.18236 -0.1064,-0.15109 -0.2837,-0.24613 -0.3953,-0.21117 -0.2239,0.0701 -1.1851,-0.29694 -1.9875,-0.75914 -0.2848,-0.16409 -0.604,-0.27137 -0.7094,-0.23841 -0.1052,0.033 -0.3572,-0.0765 -0.5604,-0.24311 -0.2031,-0.16667 -0.4987,-0.2625 -0.6569,-0.21295 -0.1581,0.0494 -0.3189,-0.0113 -0.3575,-0.13335 -0.039,-0.12295 -0.2501,-0.25729 -0.4705,-0.2987 -0.2202,-0.0415 -0.5084,-0.15442 -0.6407,-0.25114 -0.2616,-0.19154 -0.7165,0.0618 -0.6266,0.34874 0.03,0.0961 0.3776,0.32607 0.7722,0.51085 z m 12.0356,4.20088 c 0.442,0.25991 0.9729,0.10525 0.7919,-0.23071 -0.2163,-0.40171 -1.2852,-0.45929 -1.1609,-0.0625 0.016,0.0513 0.1823,0.18331 0.369,0.29325 z m 1.6922,0.44025 c 0.4615,0.0876 0.6824,0.003 0.6093,-0.2285 -0.076,-0.2438 -0.7658,-0.43035 -0.9224,-0.24955 -0.1864,0.21538 -0.06,0.40695 0.3131,0.47805 z m 0.5364,-11.95609 c 0.6297,0.24593 1.873,0.78022 2.7627,1.18736 0.8896,0.40712 1.6434,0.69094 1.6747,0.63072 0.124,-0.23735 -1.0198,-1.17832 -2.1075,-1.7337 -1.0086,-0.51495 -3.2266,-1.07411 -3.6877,-0.92966 -0.292,0.0915 0.1804,0.38554 1.3578,0.84528 z"
         id="path7555"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccsssccscsccssccssscccsssccscccsscscscsccscccccsscssscccccccccccccccccccccccccccccccccccccccccccccsccc" />
      <path
         style="fill:#504f4c"
         d="m 1160.5691,287.37766 c 0.6053,-1.79482 0.6699,-2.84619 1.7823,-2.35331 0.7432,0.18017 1.4653,0.29314 1.6044,0.25104 0.1395,-0.0422 0.4594,-0.39706 0.7111,-0.78878 0.2518,-0.39171 1.0844,-1.37323 1.8504,-2.1811 1.2111,-1.2774 1.523,-1.52205 2.3925,-1.87663 1.2805,-0.52229 3.4541,-0.89801 4.8276,-0.83455 1.8051,0.0833 4.3241,0.45082 5.5849,0.81452 4.0891,1.17977 7.8298,3.92107 9.1581,6.71169 0.2497,0.52441 0.5419,0.97594 0.6496,1.0034 0.1063,0.0274 0.8698,-0.1083 1.694,-0.30154 0.8244,-0.19329 1.8077,-0.33868 2.1853,-0.32313 1.0363,0.0429 3.8275,-0.46969 5.6526,-1.03786 5.3724,-1.67229 9.1657,-4.13897 10.5673,-6.87164 0.5377,-1.04864 0.6244,-1.68165 0.1102,-0.80496 -0.6404,1.09149 -1.8631,2.36161 -3.181,3.30403 -1.547,1.10623 -1.6142,1.00332 -0.5779,-0.88261 1.0638,-1.93563 1.2953,-2.98604 0.8538,-3.87227 -1.0485,-2.10495 -3.089,-4.45729 -5.9974,-6.91413 -2.2702,-1.91776 -2.9767,-2.64449 -3.0024,-3.08829 -0.017,-0.30611 -0.2924,-0.48167 -1.6266,-1.03935 -5.1483,-2.15209 -9.8456,-2.93431 -13.7321,-2.28676 -1.5319,0.25523 -1.5758,0.34877 -0.7199,1.53517 1.6851,2.33579 1.8462,4.4288 0.5286,6.86371 -0.5492,1.01458 -2.3961,2.82905 -3.6847,3.61967 -2.2563,1.3845 -5.1509,2.32231 -7.5271,2.43859 -1.6673,0.0816 -4.5324,-0.37639 -5.7422,-0.91799 -1.8363,-0.82206 -3.4912,-2.95028 -3.9098,-5.02766 -0.022,-4.75234 0.6407,-4.1986 2.4003,-6.49315 1.6015,-1.54386 3.4064,-2.58193 5.7841,-3.32683 2.472,-0.77445 5.0046,-0.91385 7.0757,-0.38944 l 0.9371,0.23729 3.2672,-0.97242 c 4.1766,-1.24303 5.9365,-1.43929 9.6038,-1.07071 5.067,0.50926 10.7604,2.87978 14.5866,6.07343 3.4649,2.89187 5.0766,5.50183 6.0732,9.83383 0.7787,3.38542 0.7606,6.82785 -0.047,8.89858 -0.6877,1.76355 -2.5061,3.78533 -3.91,4.34731 -0.4526,0.18114 -0.4864,0.16337 -0.6504,-0.34138 -0.1031,-0.31487 -0.3838,-0.68639 -0.689,-0.90908 -6.3322,-3.10415 -9.4568,0.99945 -14.2579,3.4361 -0.4772,0.24136 -1.3264,0.53792 -1.8874,0.65902 -0.5608,0.12106 -1.4418,0.31641 -1.9577,0.434 -0.5158,0.11756 -1.1636,0.24578 -1.4395,0.28483 -0.4034,0.0571 -0.4986,0.13459 -0.486,0.39611 0.014,0.27963 0.1063,0.30392 0.6605,0.17366 0.4442,-0.10428 0.6836,-0.0795 0.7685,0.0798 0.2273,0.4251 -0.4393,1.84929 -1.228,2.62382 -0.6698,0.65776 -0.9251,0.79823 -2.3511,1.29398 -1.3327,0.46329 -1.8746,0.57064 -3.2474,0.64314 -1.8878,0.0998 -4.9379,-0.32881 -6.6577,-0.93537 -2.6586,-0.93759 -5.5542,-2.77124 -6.8871,-4.36126 -1.0418,-1.24278 -1.4051,-1.5087 -3.5118,-2.56948 -1.8464,-0.92978 -2.1237,-1.12286 -2.3563,-1.6412 -0.2107,-0.46975 -0.2196,-0.77905 -0.044,-1.54374 z m 1.9141,2.23482 c 0.4588,0.21474 0.9041,0.3353 0.9898,0.26793 0.086,-0.0673 0.2454,0.0141 0.355,0.18069 0.1604,0.24373 4.8021,2.25093 6.7208,2.90623 0.2444,0.0836 0.6157,0.21741 0.8254,0.29748 1.2665,0.48463 2.9844,0.98242 3.1004,0.89856 0.075,-0.0541 0.1885,-0.27809 0.2523,-0.4978 0.1063,-0.36672 0.069,-0.42289 -0.4581,-0.6848 -0.3156,-0.15692 -0.7656,-0.33829 -1.0001,-0.40306 -0.4301,-0.11881 -1.6004,-0.52361 -2.0296,-0.70206 -0.1281,-0.0531 -0.2719,-0.0843 -0.3201,-0.0694 -0.1339,0.0419 -2.0597,-0.71129 -2.1656,-0.84714 -0.052,-0.0659 -0.1857,-0.091 -0.2984,-0.0559 -0.1126,0.0352 -0.3937,-0.0651 -0.6245,-0.22313 -0.2307,-0.15804 -0.4782,-0.26949 -0.5504,-0.24769 -0.1164,0.0352 -1.575,-0.59681 -2.692,-1.16625 -0.223,-0.11367 -0.4891,-0.18067 -0.5909,-0.14874 -0.101,0.0321 -0.2159,-0.0395 -0.2534,-0.15885 -0.076,-0.24555 -1.5902,-0.93851 -1.863,-0.85309 -0.1658,0.0521 -0.3329,0.67561 -0.2627,0.98109 0.017,0.0745 0.4062,0.31094 0.8651,0.52569 z m 15.8361,-6.52394 c 1.3112,0.50941 3.1864,1.32288 4.1674,1.80771 1.7555,0.8675 2.2365,0.99028 2.0935,0.53424 -0.039,-0.12696 -0.032,-0.38401 0.016,-0.57119 0.2438,-0.93695 -3.4746,-3.07344 -6.4383,-3.69913 -1.0087,-0.21297 -1.0632,-0.20693 -1.3881,0.15334 -0.1941,0.21542 -0.4979,0.38268 -0.7137,0.39299 -0.7905,0.0379 -0.081,0.47163 2.2628,1.38204 z m 9.2487,-21.47153 c 0.3613,0.14811 0.777,0.94417 0.6522,1.24867 -0.077,0.19061 0.2191,0.33306 1.2906,0.61853 0.7658,0.20398 2.1575,0.58333 3.093,0.84298 4.8927,1.35801 4.4643,1.33675 5.0915,0.25257 0.2809,-0.48542 0.4886,-0.95271 0.4617,-1.03846 -0.1322,-0.42153 -4.293,-1.80664 -6.514,-2.16845 -1.0072,-0.16406 -3.9388,-0.28428 -4.2853,-0.17571 -0.207,0.065 -0.091,0.29628 0.2103,0.41988 z"
         id="path7553"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccscssccccscsssscccscccssccsccsssscccccccscccssssccccccccccccscccccccccccccccccccccccccscccccc" />
      <path
         style="fill:#42413d"
         d="m 1160.5317,288.1096 c 0.9623,-3.59898 0.8812,-3.26926 2.4083,-2.85248 0.43,0.14408 0.8916,0.22756 1.0259,0.18545 0.1342,-0.0421 0.6042,-0.49087 1.0442,-0.99729 0.858,-0.98719 1.6443,-1.60027 2.6922,-2.09955 0.9817,-0.46775 1.5585,-0.90612 1.488,-1.13108 -0.07,-0.22552 -0.439,-0.28086 -0.9371,-0.14067 -0.3118,0.0877 -0.3118,0.0761 -5e-4,-0.17719 0.4915,-0.39993 2.9319,-1.12224 4.0624,-1.20241 1.2226,-0.0867 2.9251,0.0364 4.9076,0.35488 1.9661,0.31581 2.5763,0.5023 4.7222,1.44331 3.0477,1.33641 5.99,4.02035 6.6474,6.06321 0.1992,0.61925 0.6546,0.85372 1.2783,0.65829 0.2713,-0.0849 1.0212,-0.14041 1.6664,-0.1232 1.1086,0.0295 1.1498,0.0452 0.7493,0.28326 -0.9562,0.56872 -0.9368,0.53864 -0.667,1.04572 0.2367,0.44514 0.2223,0.4981 -0.2239,0.81826 -0.5584,0.40065 -4.3671,1.90674 -4.6433,1.83618 -0.1042,-0.0264 -0.3646,0.0279 -0.5795,0.12095 -0.2152,0.093 -0.4573,0.11193 -0.538,0.0422 -0.08,-0.0698 -0.3246,-0.0294 -0.5421,0.0898 -0.2639,0.14446 -0.488,0.15699 -0.6724,0.0377 -0.31,-0.20078 -0.8069,-0.10064 -0.8778,0.17682 -0.069,0.26805 -0.7936,0.45063 -1.3762,0.34637 -0.7917,-0.14174 -2.3041,0.38974 -2.5994,0.91345 -0.1957,0.34786 -0.3057,0.41144 -0.6117,0.35333 -0.205,-0.0389 -0.4161,-0.20818 -0.4687,-0.37599 -0.069,-0.21796 -0.3263,-0.32856 -0.9032,-0.38725 -0.7926,-0.0806 -3.8694,-1.10613 -8.3845,-2.79467 -1.2522,-0.46827 -2.9562,-1.09569 -3.7867,-1.39427 -0.8306,-0.29857 -1.9804,-0.75482 -2.5553,-1.01387 l -1.0451,-0.47097 -0.2319,0.53814 c -0.4065,0.94362 -0.5892,0.80127 3.6835,2.8708 2.4781,1.20029 5.2712,2.30547 8.4215,3.33201 2.4676,0.80416 4.0011,1.12212 5.1371,1.06514 0.3877,-0.0195 0.7085,0.0524 0.7206,0.16142 0.013,0.10804 0.1411,0.14812 0.287,0.0891 0.2147,-0.0869 0.2437,-0.0544 0.152,0.16922 -0.075,0.18593 -0.2773,0.29494 -0.6136,0.33258 -0.3648,0.0407 -0.1227,0.14488 0.8953,0.3845 0.8129,0.19138 1.6847,0.27962 2.0885,0.21138 0.6475,-0.10942 0.7352,-0.18084 1.3327,-1.0856 0.3809,-0.5765 0.8973,-1.12647 1.276,-1.35883 0.7572,-0.46466 1.741,-0.62442 1.8428,-0.29934 0.1346,0.42931 -0.8173,1.94842 -1.6294,2.60065 -1.1543,0.92694 -3.4276,1.60575 -5.4998,1.64214 -2.6757,0.047 -5.6415,-0.56473 -8.1317,-1.67726 -2.0383,-0.91053 -4.8362,-3.093 -5.1178,-3.99213 -0.1399,-0.44685 -0.7217,-0.83133 -3.3094,-2.18737 -1.2712,-0.66618 -2.3237,-1.32668 -2.4365,-1.5292 -0.1089,-0.19605 -0.1752,-0.58999 -0.1464,-0.87542 z m 13.0693,7.18493 c 0.3102,0.10728 0.5952,0.29583 0.6339,0.41917 0.039,0.1233 0.1751,0.19133 0.3034,0.15116 0.1282,-0.0402 0.7045,0.004 1.2808,0.10031 0.9172,0.15165 1.0918,0.24228 1.4,0.72681 0.4407,0.69271 0.7542,0.79649 0.5631,0.1864 -0.078,-0.25166 -0.085,-0.52458 -0.014,-0.60649 0.14,-0.16161 -0.2541,-0.50158 -0.4941,-0.42637 -0.073,0.0226 -0.6851,-0.0986 -1.3622,-0.26972 -2.3389,-0.59056 -2.9489,-0.71543 -2.9116,-0.596 0.02,0.0659 0.2913,0.20761 0.6011,0.31482 z m 2.3066,-12.81813 c 2.5723,0.75872 4.1049,1.38575 7.0796,2.89662 2.0549,1.04369 2.6341,1.24171 2.5145,0.85981 -0.025,-0.0839 0.1239,-0.20628 0.3334,-0.27199 0.4731,-0.14819 0.4343,-0.2791 -0.3092,-1.04173 -1.9942,-2.04593 -6.0895,-3.972 -9.2322,-4.34197 -1.7058,-0.20081 -1.9436,-0.14898 -2.2822,0.49729 -0.1608,0.30735 -0.2877,0.60465 -0.282,0.66067 0.013,0.0561 0.9859,0.38962 2.1781,0.7413 z m -13.1001,-15.01603 c 1.5124,-2.25608 2.9932,-3.35738 5.9168,-4.4008 2.9038,-1.03615 5.0589,-1.20505 7.6251,-0.59752 1.2361,0.29262 1.2685,0.29075 1.9226,-0.11067 0.8283,-0.50821 4.293,-1.44718 6.2676,-1.69866 4.4611,-0.56818 8.6609,0.1046 13.6495,2.1867 3.3164,1.38412 5.6793,3.0011 8.1782,5.59657 1.696,1.7614 3.3405,4.18373 2.9276,4.313 -0.083,0.0258 -0.016,0.60373 0.1464,1.2841 0.4691,1.95816 0.081,3.90422 -1.1364,5.68519 -0.5961,0.87242 -1.9897,2.15725 -2.7255,2.5125 l -0.5604,0.27064 0.7777,-1.46144 c 0.5063,-0.95113 0.8198,-1.79339 0.8979,-2.41212 l 0.1201,-0.95071 -0.9204,-1.49403 c -1.1644,-1.88966 -2.9141,-3.75421 -5.9012,-6.28878 -1.8098,-1.5355 -2.335,-2.06656 -2.47,-2.49746 -0.1542,-0.49238 -0.3115,-0.60564 -1.5678,-1.12887 -4.6024,-1.9166 -8.6472,-2.76449 -12.2471,-2.56725 -1.4884,0.0816 -2.8853,0.40741 -3.0436,0.70985 -0.074,0.14011 0.1412,0.54756 0.6754,1.28405 0.6584,0.90697 0.8337,1.27636 1.1014,2.319 0.2665,1.03732 0.2838,1.42398 0.1077,2.3638 -0.2705,1.43619 -1.0288,2.7098 -2.3557,3.95702 -1.7901,1.68234 -3.0086,2.35006 -6.0118,3.29429 -2.5382,0.79809 -2.6252,0.81398 -4.1881,0.76573 -5.1539,-0.15915 -7.7868,-1.85984 -8.8033,-5.68644 0.092,-4.29135 0.334,-3.53321 1.6179,-5.24775 z m 17.3288,-3.57425 c 0.089,0.0683 1.0567,-0.0271 2.1502,-0.21226 2.4017,-0.40682 3.815,-0.43983 5.9028,-0.13789 1.6386,0.23695 5.7183,1.34696 7.6766,2.08867 0.6192,0.23455 1.2122,0.39942 1.3176,0.36639 0.1064,-0.0331 0.2801,-0.33267 0.3881,-0.66589 0.1077,-0.33319 0.3355,-0.82575 0.5059,-1.09461 0.1703,-0.26883 0.2711,-0.61255 0.2236,-0.76378 -0.1214,-0.38904 -2.9556,-1.54533 -4.895,-1.99736 -3.8158,-0.88936 -7.8713,-0.87362 -10.7934,0.0419 -1.4454,0.45282 -1.9541,0.79602 -2.4535,1.65486 -0.2654,0.45714 -0.268,0.53176 -0.023,0.71998 z m 23.9848,20.52909 c 0.1896,-0.14923 0.4372,-0.30025 0.5499,-0.33556 0.1127,-0.0353 0.7806,-0.47406 1.4843,-0.97491 2.1686,-1.54399 3.4787,-3.26916 4.09,-5.38648 l 0.309,-1.06976 0.2312,0.56785 c 0.4413,1.08354 0.559,4.57427 0.2234,6.63069 -0.2318,1.41985 -1.2353,3.29155 -2.3141,4.31658 -0.4718,0.4479 -1.0266,0.84218 -1.2331,0.87617 -0.3283,0.0541 -0.3917,-0.0113 -0.5025,-0.51449 -0.1514,-0.68723 -0.5934,-1.10704 -1.7851,-1.69587 -0.8146,-0.40249 -0.8732,-0.46903 -1.1282,-1.28369 -0.2451,-0.78197 -0.2384,-0.8836 0.075,-1.13053 z"
         id="path7551"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccccccsccsscccccccccccccccccccccscccccccscccssscccccccccccccscccsccsssccsccccsssccssccccccccsccccsssccccssccscscccccccsccccccscccc" />
      <path
         style="fill:#2e2d2a"
         d="m 1162.9526,285.36356 c 0.58,0.19649 0.7398,0.18163 1.3833,-0.12862 0.4003,-0.1929 1.1331,-0.50012 1.6285,-0.68267 0.4956,-0.18255 1.7754,-0.6691 2.8438,-1.08121 1.0686,-0.41213 2.1977,-0.77708 2.5096,-0.81098 0.3119,-0.034 1.0001,-0.12245 1.5296,-0.19673 0.9446,-0.13252 2.5291,0.11042 4.5329,0.69515 1.0766,0.31408 3.4511,1.40543 6.0045,2.7598 1.9902,1.05556 2.5998,1.26108 2.9402,0.99129 0.1102,-0.0874 0.3551,-0.12952 0.5439,-0.0937 0.4506,0.0856 0.3689,-0.18231 -0.325,-1.06397 -1.8472,-2.3473 -6.3542,-4.71297 -10.1703,-5.33827 -1.4505,-0.23765 -3.8105,-0.25923 -5.6428,-0.0515 -1.1615,0.13166 -1.3862,0.12057 -0.9884,-0.0487 0.7162,-0.30452 2.812,-0.62003 3.9152,-0.58941 1.668,0.0465 5.2142,0.64662 6.4585,1.09333 3.0209,1.08446 5.6664,2.847 7.2513,4.83092 0.8724,1.09218 1.5867,2.68522 1.2513,2.79031 -0.3386,0.10601 -0.1884,0.35525 0.215,0.35674 0.9271,0.002 -0.054,0.45268 -2.9381,1.34542 -3.2912,1.01869 -5.2254,1.45402 -6.7967,1.52971 -1.0292,0.0496 -3.1708,-0.0826 -3.991,-0.24654 l -0.489,-0.0976 0.5243,-0.0641 c 0.2884,-0.0352 0.5134,-0.0991 0.4999,-0.14209 -0.014,-0.0428 -0.6142,-0.21632 -1.335,-0.38549 -4.52,-1.06067 -12.6751,-4.23676 -12.9247,-5.03372 0.099,-0.69458 0.6395,-0.64663 1.5692,-0.33737 z m 9.7612,2.82163 c 1.1575,0.53661 2.0837,0.60249 2.1121,0.15027 0.038,-0.59878 -2.1152,-1.2735 -3.0948,-0.96991 -0.3961,0.12282 -0.2403,0.25269 0.9827,0.81964 z m -10.4565,-19.45388 c 1.1247,-1.66978 3.1714,-3.3565 5.5946,-4.61075 2.1308,-1.10297 6.6609,-1.62199 9.6224,-1.10245 0.5849,0.10269 1.1297,0.19397 1.2107,0.20298 0.082,0.009 -0.015,-0.11707 -0.2138,-0.28013 -0.1987,-0.16309 -0.3298,-0.35694 -0.2912,-0.43077 0.039,-0.0738 0.9718,-0.40446 2.0734,-0.73475 1.7197,-0.51554 1.8567,-0.53908 0.9669,-0.16632 -1.3046,0.5465 -1.4302,0.66414 -1.5411,1.44331 -0.088,0.61468 -0.075,0.64594 0.3578,0.96247 0.2465,0.17994 0.4857,0.44652 0.5314,0.5924 0.046,0.14585 0.4462,0.79598 0.8901,1.44471 1.0215,1.4926 1.2813,2.53057 1.0335,4.12806 -0.4272,2.75546 -3.0262,5.35458 -6.9283,6.92883 -2.8376,1.14479 -5.2137,1.42047 -8.1432,0.94488 -2.093,-0.33978 -3.2259,-0.85689 -4.2539,-1.94171 -1.1101,-1.17156 -1.9436,-2.73576 -1.986,-3.72734 -0.5227,-1.5348 -0.013,-2.33577 1.0767,-3.65342 z m 4.5155,23.87158 c 0.1064,-0.0333 0.5249,0.0391 0.9299,0.16104 0.7934,0.23878 0.9325,0.29182 1.7602,0.67113 0.2984,0.1368 0.8173,0.35112 1.1529,0.47627 0.3356,0.12519 0.6478,0.34528 0.6937,0.48917 0.046,0.14389 0.2728,0.29891 0.5044,0.3445 0.2314,0.0455 0.8359,0.26976 1.3433,0.49811 0.8493,0.38216 0.9266,0.45787 0.9712,0.95191 0.047,0.5236 0.054,0.52791 0.2629,0.17648 0.2829,-0.47537 0.3604,-0.48938 1.4768,-0.26677 0.7768,0.15491 1.0358,0.29639 1.3963,0.76302 0.5775,0.74745 0.9212,0.76343 0.692,0.0323 l -0.1716,-0.54806 1.5752,0.25715 c 0.8662,0.14143 1.6344,0.30851 1.7069,0.37127 0.073,0.0628 0.5037,0.0887 0.9582,0.0579 0.7828,-0.0534 0.8519,-0.0875 1.3032,-0.64262 0.2621,-0.32244 0.5393,-0.6059 0.616,-0.62994 0.076,-0.024 0.1469,-0.16249 0.156,-0.30768 0.043,-0.67217 2.1405,-1.71815 2.5105,-1.25137 0.2513,0.31729 -0.6668,1.82801 -1.486,2.44548 -0.355,0.26739 -1.2871,0.72336 -2.0713,1.01328 -1.1927,0.44087 -1.6879,0.54038 -3.0263,0.60822 -4.6711,0.23681 -9.8195,-1.63344 -12.7057,-4.61547 -0.7119,-0.73542 -0.8318,-0.96627 -0.5487,-1.05502 z m 21.2685,-28.93939 c 0.166,-0.0528 2.0581,0.35568 2.0879,0.4506 0.024,0.0783 -0.8057,-0.0557 -1.6531,-0.26656 -0.3126,-0.0779 -0.5082,-0.16063 -0.4348,-0.18404 z m 2.6142,0.52634 c 0.7866,0.1348 4.1042,1.1512 5.36,1.64215 0.6716,0.2626 1.2794,0.45914 1.3509,0.43677 0.071,-0.0224 0.1883,-0.27706 0.26,-0.56599 0.071,-0.28894 0.3251,-0.93845 0.5635,-1.44335 0.4202,-0.89024 0.4467,-0.91423 0.8743,-0.79291 0.2427,0.0688 1.1928,0.58621 2.1115,1.1497 6.8351,4.19264 9.8027,9.79819 7.4968,14.16019 -0.6186,1.17039 -1.9927,2.6939 -2.8789,3.19261 -0.608,0.34203 -0.5719,0.1555 0.2471,-1.27396 0.63,-1.09947 0.9563,-2.45594 0.7527,-3.12814 -0.067,-0.21764 -0.3961,-0.87442 -0.7338,-1.45954 -0.3377,-0.58514 -0.6715,-1.24735 -0.7419,-1.47158 -0.07,-0.22424 -0.3478,-0.55186 -0.6166,-0.72805 -0.2688,-0.17616 -1.0103,-0.83526 -1.6477,-1.46465 -0.6375,-0.62939 -1.5241,-1.44453 -1.9704,-1.81139 -0.4462,-0.36686 -1.1682,-0.96978 -1.6045,-1.33978 -0.4362,-0.36997 -0.9771,-0.81936 -1.2016,-0.9986 -0.2245,-0.17927 -0.4911,-0.5899 -0.592,-0.91256 -0.1768,-0.56415 -0.2663,-0.61888 -2.3312,-1.42629 -1.1811,-0.46182 -2.7319,-1.02119 -3.4462,-1.24306 -1.4816,-0.46012 -1.8923,-0.63126 -1.252,-0.52157 z m 14.1109,20.31462 c 0.06,-0.17272 0.6018,-0.66239 1.2016,-1.08817 1.8202,-1.29206 3.0035,-2.59438 3.8794,-4.26953 0.431,-0.82394 0.8326,-1.47232 0.8928,-1.44085 0.1532,0.08 0.3571,2.27649 0.3307,3.55831 -0.061,2.98321 -0.7458,5.09213 -2.0835,6.42355 -0.8062,0.80259 -0.8718,0.79118 -1.5325,-0.26676 -0.209,-0.33466 -0.538,-0.68415 -0.7313,-0.77664 -0.3515,-0.16827 -1.9831,-1.55405 -2.0387,-1.73164 -0.016,-0.0518 0.02,-0.23555 0.082,-0.40827 z"
         id="path7549"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccccccccccscccccccccccccccsccsccsccccccccsssssccccsccccccccccsccccccccsccccccccccscscccccccsscccccccccccccccccc" />
      <path
         style="fill:url(#linearGradient9542);fill-opacity:1"
         d="m 1162.5875,285.43002 c 0.5623,0.50709 2.6581,0.1198 4.0133,-0.74158 1.2274,-0.78021 3.5819,-1.47816 5.1038,-1.51299 1.6117,-0.0368 1.6569,-0.006 2.0184,1.36481 0.2176,0.82545 0.3645,1.15611 0.515,1.15914 0.1563,0.002 0.1164,-0.29463 -0.1516,-1.15238 -0.4361,-1.3914 -0.4053,-1.41543 1.497,-1.16918 2.0445,0.26464 2.0187,0.24383 1.662,1.3402 -0.3325,1.02232 -0.335,1.19141 -0.015,1.09129 0.1177,-0.0369 0.313,-0.43714 0.4334,-0.88917 0.1202,-0.45202 0.2972,-0.8467 0.3934,-0.87703 0.2517,-0.0794 3.1602,1.34504 3.2351,1.58434 0.037,0.11356 -0.3067,0.44998 -0.7899,0.77616 -0.469,0.31665 -0.8545,0.67008 -0.8566,0.78538 -0.013,0.3452 0.6499,0.036 1.4233,-0.67076 l 0.7161,-0.65451 0.6866,0.42322 c 0.3776,0.23277 1.0397,0.70954 1.4714,1.05949 0.7629,0.61849 1.3384,0.72181 1.3652,0.24509 0.013,-0.13737 0.233,-0.0888 0.6335,0.1365 0.3418,0.19231 0.7553,0.30771 0.919,0.25651 0.3364,-0.10548 0.7151,0.25766 0.4541,0.43547 -1.3537,0.92161 -5.5619,2.22578 -7.8095,2.42009 -3.3348,0.28831 -7.2882,-0.57354 -13.321,-2.90411 -1.6848,-0.65087 -2.0335,-0.84466 -2.0686,-1.1497 -0.037,-0.31144 -0.09,-0.33781 -0.3565,-0.17445 -0.2521,0.15431 -0.4957,0.0758 -1.2312,-0.3968 -0.6067,-0.2808 -1.377,-1.24477 0.059,-0.78503 z m 7.4987,1.91832 c 0.2488,-0.0396 0.3686,0.0367 0.4019,0.25549 0.1031,0.67495 4.8113,2.16025 5.8334,1.84005 0.1639,-0.0513 0.8537,-0.0474 1.5328,0.009 1.5596,0.12898 1.9502,0.11906 2.0993,-0.0532 0.2901,-0.33493 -0.592,-0.84545 -2.3673,-1.37005 -2.2672,-0.67 -2.9883,-0.9964 -3.0423,-1.37689 -0.1076,-0.75411 -2.8142,-1.12541 -3.9287,-0.53881 -1.0406,0.5477 -1.394,1.37227 -0.5291,1.2346 z m 13.071,1.69276 c 0.4656,-0.20451 0.8936,-0.46254 0.9508,-0.57342 0.07,-0.13528 -0.013,-0.13107 -0.2471,0.0129 -0.1934,0.11793 -0.643,0.30671 -0.9992,0.41955 -0.3562,0.11293 -0.6259,0.2744 -0.5993,0.35902 0.03,0.0969 0.3618,0.0161 0.8948,-0.21798 z m -20.9934,-19.87274 c 0.9025,-1.42782 2.1977,-2.64761 4.048,-3.8121 1.1019,-0.69353 1.718,-0.96647 3.4002,-1.50655 2.1704,-0.69678 3.1376,-0.8466 5.3514,-0.829 2.2469,0.0179 4.2487,0.61935 5.0436,1.29297 -1.2213,-0.81227 0.9964,-0.0623 2.1025,4.07938 0.1367,0.13877 0.1502,0.29858 0.04,0.46851 -0.091,0.14183 -0.119,0.41041 -0.06,0.59686 0.058,0.18647 0.013,0.50625 -0.1126,0.71064 -0.1202,0.20442 -0.1812,0.49092 -0.1355,0.63673 0.045,0.14579 0,0.33312 -0.1077,0.4163 -0.1052,0.0831 -0.1658,0.30991 -0.1353,0.5038 0.03,0.19392 -0.055,0.47011 -0.1886,0.61373 -0.1345,0.14361 -0.3702,0.46963 -0.524,0.7245 -0.1537,0.25485 -0.4006,0.4629 -0.5486,0.46234 -0.148,-5.5e-4 -0.4693,0.2514 -0.7142,0.55987 -0.245,0.30845 -0.5052,0.5796 -0.5784,0.60253 -0.073,0.0229 -0.1349,0.13653 -0.1374,0.25243 -1.612,1.15817 -3.3623,1.98032 -4.7076,2.42887 -0.1535,0.15639 -0.631,0.25292 -1.506,0.30434 -0.7048,0.0415 -1.4058,0.11431 -1.5573,0.16181 -1.9045,0.0726 -4.0779,-0.16444 -5.8454,-0.51376 -0.9245,-0.27884 -1.2245,-0.47046 -1.9792,-1.26425 -1.3087,-1.37666 -2.007,-2.86002 -2.018,-4.28669 0.1623,-1.68699 0.149,-1.46708 0.8705,-2.60327 z m 4.9986,23.81498 c 0.2237,-0.07 3.9772,1.4047 4.0337,1.58493 0.025,0.0832 -0.021,0.17286 -0.1052,0.19915 -0.085,0.0263 -0.1312,0.11643 -0.1053,0.20032 0.025,0.0839 0.2511,0.0887 0.4996,0.0113 0.31,-0.0971 0.7567,-0.0131 1.4211,0.26664 0.906,0.38157 0.976,0.44709 1.0726,1.00395 0.1089,0.62468 0.2937,0.70834 0.4928,0.22247 0.1668,-0.4068 0.4473,-0.45564 1.4267,-0.24842 0.6813,0.14416 0.9699,0.3146 1.4082,0.83145 0.6248,0.73668 1.0232,0.68435 0.7077,-0.0929 -0.1063,-0.26397 -0.1349,-0.47259 -0.061,-0.4636 0.8128,0.0992 2.8622,0.50719 3.1156,0.62001 0.1795,0.0799 0.7373,0.0561 1.2396,-0.0531 0.7916,-0.1718 0.9388,-0.25348 1.103,-0.61156 0.1042,-0.2273 0.3425,-0.46117 0.5295,-0.51974 0.2108,-0.0661 0.334,-0.23096 0.3243,-0.43455 -0.02,-0.42254 0.5048,-0.83024 1.4521,-1.12697 0.9049,-0.28346 1.0254,-0.10407 0.529,0.78765 -0.7336,1.31762 -1.9533,2.0894 -4.2146,2.66655 -3.1882,0.81368 -7.0044,0.28315 -10.6894,-1.48603 -1.9279,-0.92571 -4.7381,-3.18245 -4.1805,-3.35719 z m 11.5109,-12.41472 c 0.2969,0.0522 0.6095,0.15503 0.6946,0.22875 0.085,0.0738 -0.089,0.0914 -0.3851,0.0393 -0.297,-0.0522 -0.6097,-0.15503 -0.6948,-0.22874 -0.085,-0.0738 0.089,-0.0914 0.3853,-0.0394 z m 2.291,0.80467 c 0.2154,0.0992 0.4024,0.21483 0.4154,0.25679 0.014,0.042 -0.1522,-0.003 -0.3677,-0.10428 -0.2152,-0.0992 -0.4022,-0.21482 -0.4154,-0.25676 -0.014,-0.042 0.1524,0.003 0.3677,0.10416 z m 0.7398,0.35445 c 0.2354,-0.0738 2.2632,1.01825 3.1192,1.67961 1.0146,0.7839 2.8789,2.73995 2.8739,3.01546 0,0.11117 -0.3733,-0.19884 -0.8254,-0.68894 -1.0444,-1.13238 -2.4862,-2.27527 -4.0638,-3.22138 -0.681,-0.40844 -1.1779,-0.76158 -1.1039,-0.78475 z m 16.0502,-15.9647 c 0.1972,-0.83421 0.7866,-2.03963 1.0352,-2.1176 0.2922,-0.0914 3.4694,1.74684 4.753,2.75 1.4275,1.11583 3.4333,3.25094 4.2171,4.48941 0.8649,1.36601 1.6166,3.83112 1.5465,5.071 -0.081,1.42389 -0.482,2.53107 -1.3198,3.63893 -0.7391,0.97731 -1.8913,2.08292 -2.166,2.07795 -0.077,-10e-4 0.076,-0.32912 0.3452,-0.72817 0.8133,-1.20954 1.3442,-3.74152 0.8514,-4.06058 -0.1378,-0.0892 -0.2529,-0.35896 -0.2787,-0.65419 -0.03,-0.34097 -0.1592,-0.59678 -0.4021,-0.79623 -0.197,-0.16159 -0.4403,-0.55337 -0.5407,-0.87059 -0.2868,-0.90512 -1.1078,-2.10258 -1.5277,-2.22766 -0.2067,-0.0618 -0.4043,-0.2027 -0.4391,-0.31349 -0.092,-0.29625 -0.9964,-1.09446 -1.7673,-1.56104 -0.37,-0.22401 -0.798,-0.64242 -0.9509,-0.9298 -0.1555,-0.29218 -0.3978,-0.52261 -0.55,-0.52279 -0.5428,-6.5e-4 -1.0624,-0.11718 -1.1032,-0.24735 -0.023,-0.0733 -0.2177,-0.23317 -0.4325,-0.35545 -0.3902,-0.2219 -1.2927,-1.36395 -1.3843,-1.75147 -0.026,-0.11255 0.025,-0.51344 0.114,-0.89088 z m 9.7757,16.60323 c 0.6892,-0.66726 1.5644,-1.66331 1.9447,-2.21341 l 0.6917,-1.00021 0.209,0.48973 c 0.1152,0.26936 0.2272,0.95636 0.2498,1.52671 0.03,0.77868 -0.045,1.15155 -0.3079,1.49693 -0.2941,0.38818 -0.3114,0.52499 -0.1101,0.87666 0.1973,0.34482 0.1742,0.59631 -0.1334,1.45772 -0.4154,1.16247 -0.7384,1.49937 -1.4177,1.47773 -0.5113,-0.0163 -1.3385,-0.6469 -1.4923,-1.13758 -0.055,-0.17389 -0.181,-0.33709 -0.2812,-0.36266 -0.1009,-0.0256 -0.2773,-0.35065 -0.3938,-0.72245 l -0.2117,-0.67595 z"
         id="path7547"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccccccccccccccccccccccssccccccccccccccccccccccssscccccccscsscccccccccccccccccsccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccc" />
      <path
         style="fill:#171613"
         d="m 1164.459,286.52116 c 0.284,-0.67318 3.1152,-2.33263 4.6272,-2.71212 0.4349,-0.10916 0.5129,-0.0547 1.0353,0.72167 0.3107,0.46184 0.5591,0.93285 0.5519,1.0467 -0.013,0.11382 -0.3403,0.40962 -0.74,0.65719 -0.5678,0.35164 -0.7327,0.54768 -0.7535,0.8958 -0.021,0.35772 0.038,0.46768 0.3015,0.55723 0.1803,0.0614 0.3836,0.0943 0.4514,0.0728 0.069,-0.0213 0.1538,0.0583 0.191,0.17706 0.089,0.28418 2.941,1.38195 4.2154,1.62255 1.3056,0.24653 6.2707,0.39702 6.3231,0.19167 0.048,-0.19086 0.5247,-0.18334 0.585,0.01 0.024,0.0749 -0.082,0.17491 -0.2322,0.22222 -0.1508,0.0474 -0.3258,0.18455 -0.3887,0.30498 -0.2251,0.43028 -3.7473,0.49971 -6.0554,0.11931 -1.993,-0.32845 -7.3127,-2.05003 -9.3518,-3.02644 -0.9197,-0.44052 -0.9316,-0.45373 -0.7602,-0.86 z m 3.1893,6.74675 c 0.1239,0.0279 0.9438,0.31764 1.8223,0.64357 l 1.5971,0.59265 -0.5186,0.44354 c -0.6265,0.5355 -0.6728,0.52265 -2.0064,-0.5569 -1.0009,-0.81011 -1.3281,-1.22093 -0.8944,-1.12286 z m 3.5446,1.97677 c 0.8252,-0.25237 0.9451,-0.24166 1.7989,0.161 0.9025,0.42551 0.915,0.43979 0.9152,1.04664 0,0.33838 -0.069,0.63583 -0.154,0.66097 -0.2321,0.0688 -2.8861,-1.05047 -3.1845,-1.34308 -0.2466,-0.24212 -0.2147,-0.26895 0.6244,-0.52553 z m 3.2492,1.45265 0.3883,-0.57561 0.9878,0.1928 c 0.8742,0.17066 1.0437,0.27067 1.4762,0.87079 0.3593,0.49923 0.5655,0.65381 0.781,0.58628 0.2332,-0.073 0.2587,-0.2009 0.1252,-0.62748 l -0.1677,-0.53575 1.2798,0.20946 c 0.704,0.11519 1.4739,0.28262 1.7111,0.37203 0.2369,0.0894 0.7951,0.10107 1.2404,0.0262 0.6988,-0.11769 0.8596,-0.20493 1.175,-0.6368 0.2129,-0.29178 0.5474,-0.54257 0.8023,-0.60162 0.3881,-0.0899 0.4142,-0.13878 0.2322,-0.43574 -0.1843,-0.30092 -0.1411,-0.37359 0.4297,-0.7238 0.7514,-0.46097 1.3504,-0.66817 1.5163,-0.52454 0.1974,0.17093 -0.5182,1.31767 -1.2158,1.94814 -0.5816,0.5258 -0.8767,0.65923 -2.7141,1.22779 -1.9194,0.59405 -2.1715,0.63484 -3.6641,0.59353 -1.223,-0.0339 -4.7103,-0.59264 -4.7637,-0.76333 -0.013,-0.0146 0.1665,-0.2857 0.3804,-0.6023 z m -4.1793,-13.2275 c 0.4059,-0.12721 2.7023,-0.12419 2.8566,0.003 0.2455,0.20339 0.6863,1.69747 0.5483,1.85706 -0.1511,0.17431 -1.9658,0.22854 -2.2662,0.0678 -0.2434,-0.13027 -1.1529,-1.3392 -1.2565,-1.67026 -0.035,-0.11092 0.018,-0.22713 0.1176,-0.2583 z m 3.8174,-0.0235 c 0.2395,-0.075 2.9266,0.39094 3.095,0.53674 0.083,0.0709 0.029,0.48151 -0.1202,0.91263 -0.1479,0.43111 -0.2302,0.90755 -0.1827,1.05881 0.1531,0.48865 0.5431,0.15132 0.8187,-0.70825 0.1479,-0.46086 0.3479,-0.86269 0.4444,-0.89298 0.1968,-0.0615 2.3172,0.83698 2.7472,1.16433 0.329,0.25043 0.3041,0.28363 -0.6571,0.87254 -0.902,0.55282 -1.0959,0.9018 -0.6348,1.1429 0.2953,0.15442 0.3877,0.11105 1.1288,-0.52957 0.444,-0.38375 0.9283,-0.73567 1.0763,-0.78205 0.1479,-0.0463 0.6052,0.16547 1.0158,0.47076 0.7715,0.57354 1.5374,1.20812 1.5653,1.29666 0.013,0.0279 -0.4957,0.25431 -1.121,0.50334 -0.6249,0.24904 -1.1868,0.54898 -1.2483,0.66654 -0.1796,0.34339 -0.312,0.31069 -0.6528,-0.16108 -0.3499,-0.48414 -0.9736,-0.78601 -3.2888,-1.59145 -0.8362,-0.29092 -1.9576,-0.80325 -2.4923,-1.13852 -0.9584,-0.60119 -0.9763,-0.62442 -1.3105,-1.69103 -0.199,-0.63495 -0.2746,-1.10163 -0.183,-1.13032 z m 9.1319,5.77061 c 0.3001,-0.14528 0.7948,-0.40957 1.0997,-0.58729 0.9576,-0.55844 1.8708,-0.21118 1.1484,0.43672 -0.4385,0.39332 -2.1723,0.93192 -2.4808,0.77062 -0.3933,-0.20572 -0.3424,-0.3414 0.2327,-0.62005 z m 14.7941,-23.56732 c 0.1431,-0.81599 0.5663,-1.76864 0.8214,-1.84852 0.097,-0.0301 0.8086,0.29309 1.5837,0.71815 5.3071,2.91015 8.7401,7.28232 8.7497,11.1432 0,1.19782 -0.3082,2.41727 -0.6439,2.52241 -0.3247,0.10182 -0.4499,-0.47538 -0.1443,-0.66661 0.1507,-0.0944 0.2369,-0.36619 0.2065,-0.65097 -0.029,-0.26892 -0.062,-0.68265 -0.076,-0.91942 -0.02,-0.35346 -0.077,-0.41389 -0.3208,-0.33781 -0.3519,0.1103 -1.1339,-0.64057 -1.3693,-1.31491 -0.1215,-0.34713 -0.555,-0.40178 -0.4467,-0.0564 0.041,0.13282 0.014,0.26062 -0.06,0.28402 -0.075,0.0235 -0.218,-0.30573 -0.319,-0.7314 -0.1009,-0.42566 -0.262,-0.79409 -0.3586,-0.81874 -0.097,-0.0247 -0.2353,-0.23602 -0.3085,-0.46974 -0.073,-0.23371 -0.3095,-0.50615 -0.5248,-0.60542 -0.2153,-0.0992 -0.437,-0.32582 -0.4926,-0.50341 -0.055,-0.17762 -0.385,-0.50792 -0.7317,-0.73401 -0.3467,-0.22612 -0.8753,-0.69951 -1.1746,-1.052 -0.2993,-0.3525 -0.6484,-0.68362 -0.7756,-0.73586 -0.1274,-0.0522 -0.6647,-0.41149 -1.1941,-0.7984 -0.5293,-0.38689 -1.1515,-0.80953 -1.3829,-0.93917 -0.9404,-0.5271 -1.1355,-0.64793 -1.1482,-0.71059 -0.013,-0.0361 0.043,-0.3846 0.1115,-0.77451 z m 5.3627,3.33762 c 0.092,0.0238 0.1909,-0.0401 0.2169,-0.14177 0.1432,-0.56231 0.4002,-0.19681 1.1907,1.69398 0.2828,0.67642 0.6122,1.11522 0.4511,0.60097 -0.04,-0.12952 -0.013,-0.34115 0.077,-0.47025 0.1639,-0.25311 -0.1063,-1.13703 -0.4324,-1.41285 -0.1102,-0.0931 -0.4542,-0.44746 -0.7652,-0.78761 -0.3109,-0.34014 -0.6236,-0.60024 -0.6946,-0.578 -0.386,0.12095 -0.4216,0.99922 -0.044,1.09554 z m 2.6029,2.12286 c 0.1257,-0.0394 0.2086,-0.13626 0.1837,-0.21523 -0.06,-0.19232 -0.3415,-0.25545 -0.4253,-0.0953 -0.1177,0.22557 0.013,0.38451 0.2416,0.31062 z m 1.2443,2.96001 c 0.1164,-0.0366 0.2873,0.0279 0.3788,0.14321 0.091,0.11544 0.222,0.14543 0.29,0.0667 0.2039,-0.23553 0.075,-0.37792 -0.3945,-0.43645 -0.5417,-0.0675 -0.5952,-0.0533 -0.5345,0.14052 0.025,0.0839 0.1434,0.12258 0.2602,0.086 z m 0.8154,8.4543 c 0.048,-0.0151 0.2494,0.0142 0.4461,0.0655 0.2835,0.0738 0.3851,0.0408 0.4894,-0.15882 0.1064,-0.20237 0.059,-0.24847 -0.2367,-0.2343 -0.5288,0.0252 -0.5324,-0.22694 -0.013,-0.39196 0.3222,-0.10096 0.5046,-0.0584 0.6518,0.15174 0.1127,0.16053 0.1541,0.35477 0.091,0.43167 -0.061,0.0769 -0.1189,0.27868 -0.1276,0.44844 -0.013,0.22904 -0.1474,0.33651 -0.5272,0.41644 -0.4268,0.0899 -0.5417,0.0406 -0.6914,-0.29656 -0.098,-0.22236 -0.1399,-0.41679 -0.091,-0.43202 z"
         id="path7545"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cccccccccccccccccccccccccccccccccccccsccccccccscccccccccccccccccccccccccccccccccsccccccccccccccccccccccccccccsccccccccccccccccccccccsccccccccc" />
      <path
         sodipodi:nodetypes="ccccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1097.6041,222.25758 73.4707,1.70656 1.2794,18.79668 -73.3247,2.40545 z"
         inkscape:path-effect="#path-effect8453-6"
         id="path9401"
         d="m 1097.6041,222.25758 73.4707,1.70656 1.2794,18.79668 -73.3247,2.40545 -1.4254,-22.90869"
         style="opacity:0.63677135;fill:#f9f9f9;fill-opacity:1;stroke:#1a1a1a;stroke-width:0.43794248;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <g
         id="g280"
         transform="matrix(0.0957337,0,0,0.0957337,1124.6919,216.13019)">
        <path
           id="path282"
           d="m 329.88856,106.33165 c 0,0 -42.69233,-14.987947 -59.01833,27.63355 -7.06654,18.44975 -3.7522,39.36332 -5.26727,52.93603 -1.98615,17.78367 -7.4941,25.62769 -7.4941,25.62769 0,0 0.58423,0.19776 4.80991,-4.13884 4.22568,-4.33661 4.91376,-10.13906 4.91376,-10.13906 0,0 2.64177,12.42866 0.44199,19.59669 -2.19977,7.16803 -5.74004,14.82167 -5.74004,14.82167 0,0 5.39477,-6.22121 7.52465,-9.389 2.13075,-3.16894 3.98694,-10.85585 3.98694,-10.85585 0,0 1.95432,15.951 0.0632,25.63803 -1.89213,9.68718 -9.72507,18.83715 -9.72507,18.83715 0,0 5.22197,-3.06097 8.62288,-7.27321 3.40178,-4.21339 5.2925,-9.34133 5.2925,-9.34133 l -4.67654,21.21654 6.49534,-15.50487 c 0,0 4.70529,4.14048 5.80322,10.81636 1.09781,6.67488 0.75254,15.27534 0.75254,15.27534 0,0 14.3268,-13.25654 16.38871,-19.26445 2.0629,-6.00806 -2.43423,-19.868 -2.43423,-19.868 l -4.25454,-21.02143 42.20083,-89.52131 -8.68633,-16.0817 z"
           inkscape:connector-curvature="0" />
        <path
           id="path284"
           d="m 328.58322,107.09611 c 0,0 17.00725,-18.786692 41.31178,44.83167 24.30441,63.61737 -16.16687,98.73581 -16.16687,98.73581 0,0 5.25768,-7.34021 9.31259,-15.35594 4.05503,-8.01472 3.67843,-13.37384 3.67843,-13.37384 l -9.86315,17.71829 3.88555,-16.25409 c 0,0 -3.5724,2.05359 -4.82207,6.32497 -1.2477,4.27109 -1.09015,9.37682 -1.09015,9.37682 0,0 -2.69829,-15.93445 -2.95974,-21.88003 -0.26244,-5.94543 0.11797,-15.78535 0.11797,-15.78535 l -23.40434,-94.33831 z"
           inkscape:connector-curvature="0" />
        <path
           id="path286"
           d="m 284.59194,166.01473 c 0,0 0.70374,28.58091 7.22718,40.71318 6.52357,12.13327 24.7951,22.69906 27.74944,23.967 2.95337,1.26809 10.9687,-1.83079 14.06155,-4.00308 3.09186,-2.17216 18.69027,-19.51293 20.73124,-33.30686 1.16616,-7.8831 -1.86191,-29.96166 -7.95876,-46.68418 -4.57008,-12.53743 -12.54434,-21.68086 -12.54434,-21.68086 l -49.26631,40.9948 z"
           inkscape:connector-curvature="0"
           style="fill:#dec7ab;stroke:#8b5e3c" />
        <path
           id="path288"
           d="m 304.12457,119.11329 c -21.08067,5.5202 -23.20704,37.10376 -26.77066,57.86263 -1.80664,10.52367 -8.90019,18.71378 -8.90019,18.71378 0,0 6.62934,-0.7073 10.33975,-2.40169 3.70929,-1.69524 10.13479,-6.35981 10.13479,-6.35981 0,0 -0.61917,1.80236 -3.60727,4.81336 -2.98993,3.0123 -7.59272,4.27091 -7.59272,4.27091 0,0 18.54746,2.92579 33.83872,-20.73357 15.29027,-23.65921 31.19802,-40.00144 31.19802,-40.00144 0,0 -3.12207,-25.46571 -38.64044,-16.16417 z"
           inkscape:connector-curvature="0" />
        <linearGradient
           y2="94.209801"
           x2="350.2742"
           y1="213.9805"
           x1="252.89059"
           gradientUnits="userSpaceOnUse"
           id="linearGradient3416">
          <stop
             id="stop3418"
             style="stop-color:#FFFFFF"
             offset="0" />
          <stop
             id="stop3420"
             style="stop-color:#000000"
             offset="0.3846" />
        </linearGradient>
      </g>
      <g
         id="g297"
         transform="matrix(0.06964887,0,0,0.06964887,1120.3434,202.92106)">
        <path
           id="path299"
           d="m 526.85,166.087 c 0,0 5.621,20.399 12.033,39.863 6.413,19.463 -7.966,55.451 -7.966,55.451 l 7.398,-36.273 c 0,0 -7.908,19.793 -9.414,32.963 -1.507,13.17 1.194,19.466 1.194,19.466 0,0 -13,-25.434 -10.347,-50.874 2.653,-25.44 -3.916,15.545 -3.916,15.545 l -4.448,-58.324 15.466,-17.817"
           inkscape:connector-curvature="0" />
        <path
           id="path301"
           d="m 485.407,113.628 c -19.521,2.163 -41.032,33.607 -41.032,33.607 0,0 1.233,29.506 10.351,48.839 9.115,19.334 23.625,34.873 36.162,29.997 6.114,-2.378 20.615,-14.294 27.984,-28.092 7.742,-14.496 8.208,-30.843 8.208,-30.843 l -9.624,-26.543 c 0,0.001 -12.525,-29.127 -32.049,-26.965 z"
           inkscape:connector-curvature="0"
           style="fill:#dec7ab;stroke:#8b5e3c" />
        <path
           style="fill:#552200"
           id="path303"
           d="m 465.939,227.313 c 0,0 -1.436,-1.458 -3.616,-3.79 2.174,2.45 3.616,3.79 3.616,3.79 z m -35.528,-80.301 8.377,-12.998 c 0,0 -4.623,14.154 -5.2,18.775 -0.577,4.621 2.888,23.686 2.888,23.686 l 2.6,-19.931 c 0,0 -2.021,30.618 3.178,41.306 3.752,7.711 14.418,19.631 20.07,25.673 -6.698,-7.549 -20.359,-25.673 -20.359,-47.914 0,-29.463 4.622,-30.908 3.178,-11.843 -1.443,19.064 8.377,33.217 8.377,33.217 0,0 -11.555,-25.13 0.577,-46.505 8.466,-14.914 27.335,-21.39 37.969,-23.943 -0.346,0.459 -0.68,0.929 -0.996,1.412 -4.159,6.348 -3.673,13.688 -3.193,16.872 -0.21,-1.795 -0.202,-4.881 1.461,-8.207 2.6,-5.199 5.487,-6.932 5.487,-6.932 l 0.578,22.819 1.733,-11.554 2.311,13.576 1.733,-14.731 c 0,0 5.199,10.398 8.954,20.508 3.064,8.25 0.551,16.69 -0.478,19.518 0.827,-2.184 2.761,-7.701 3.654,-13.74 1.155,-7.799 1.155,-12.709 1.155,-12.709 0,0 -0.431,15.166 1.88,30.186 2.311,15.02 0.865,44.627 0.865,44.627 0,0 4.767,-33.218 3.9,-42.461 -0.567,-6.051 5.466,-17.093 7.706,-23.8 0.483,10.467 0.092,19.178 0.092,19.178 l 4.91,28.885 3.467,-2.6 c 0,0 1.155,13.865 0,25.997 -1.156,12.132 2.6,44.195 2.6,44.195 0,0 -2.312,-20.509 -0.289,-33.795 2.022,-13.288 4.621,-26.575 4.621,-26.575 0,0 2.022,6.644 3.178,14.731 1.156,8.087 -1.733,17.042 -1.733,17.042 0,0 4.333,-7.221 3.466,-19.931 -0.866,-12.709 -5.198,-27.441 -5.198,-27.441 0,0 4.621,11.265 7.798,18.776 3.178,7.51 0.579,21.664 0.579,21.664 0,0 3.402,-8.124 0.865,-21.953 -2.009,-10.954 -10.191,-27.193 -9.531,-33.795 1.733,-17.332 -6.933,-53.438 -6.933,-53.438 l 6.933,11.265 -8.376,-24.552 9.242,5.199 -14.153,-14.153 14.731,4.911 -20.22,-8.955 11.265,-8.377 -13.575,6.933 -4.622,-16.176 2.311,14.154 -13.864,-18.775 9.243,19.93 c 0,0 -11.843,-11.554 -40.728,-9.82 -28.885,1.733 -40.729,27.152 -40.729,27.152 l 8.955,-6.066 -12.709,12.42 10.109,-6.932 -12.132,15.021 7.51,-3.177 -5.488,14.151 z m 57.77,-0.578 c 0,0 -0.153,-0.597 -0.306,-1.614 0.117,1.011 0.306,1.614 0.306,1.614 z m 21.085,34.373 c 0,0 0.157,-0.354 0.39,-0.991 -0.242,0.636 -0.39,0.991 -0.39,0.991 z"
           inkscape:connector-curvature="0" />
        <path
           id="path305"
           d="m 526.695,166.146 c 0,0 0.875,-16.97 8.811,-8.893 7.936,8.078 -7.635,19.657 -6.944,25.291 0.689,5.633 -7.818,6.799 -8.512,3.438 -0.694,-3.361 6.645,-19.836 6.645,-19.836 z"
           inkscape:connector-curvature="0"
           style="fill:#dec7ab;stroke:#8b5e3c;stroke-width:0.25" />
        <path
           style="fill:#aa4400"
           id="path307"
           d="m 496.427,123.192 c 0,0 -24.952,19.635 -31.497,29.861 -6.545,10.227 -5.728,27.407 -5.728,27.407 0,0 -3.682,-15.135 -2.045,-26.18 1.637,-11.044 7.363,-21.68 7.363,-21.68 0,0 -9.817,13.499 -12.271,26.998 -2.455,13.499 5.317,49.087 5.317,49.087 0,0 -5.727,-21.271 -7.772,-35.588 -1.168,-8.176 -2.448,-23.424 1.228,-34.77 2.761,-8.523 10.636,-14.726 10.636,-14.726 l 34.769,-0.409 z"
           inkscape:connector-curvature="0" />
      </g>
      <path
         transform="matrix(0.11808159,-0.00399243,0.00827779,0.11895952,1011.6343,228.52081)"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter6246-9-0-2-9-5)"
         d="m 895.09375,10.71875 c -4.89014,0.216719 -8.9448,1.858112 -12.09375,4.875 -1.59759,1.530586 -4.8116,3.669737 -7.125,4.78125 -3.48742,1.675586 -4.60803,2.971118 -6.5,7.53125 -1.98958,4.795395 -2.20562,6.588936 -1.6875,14 0.32684,4.675 1.03173,10.449445 1.5625,12.84375 0.66284,2.990057 0.60921,5.338672 -0.15625,7.5 -1.69611,4.78904 1.1929,17.46626 4.59375,20.21875 1.9377,1.56828 2.75991,3.55419 3.53125,8.34375 0.55646,3.45534 1.96032,7.52946 3.09375,9.0625 2.52251,3.41188 2.09711,6.41111 -0.9375,6.84375 -1.55228,0.22131 -3.03996,1.87541 -4.75,5.25 -3.00542,5.93093 -4.01657,6.48488 -27.46875,15 -20.35415,7.39028 -23.40627,9.10357 -25.46875,14.21875 -1.54323,3.82737 -2.18837,20.71788 -0.84375,22.0625 0.37,0.36999 35.8075,0.54708 78.75,0.40625 l 78.0625,-0.25 0.3125,-9 c 0.354,-10.88614 -1.301,-16.03118 -6.0625,-19.03125 -1.7852,-1.12478 -11.125,-4.91156 -20.75,-8.40625 -23.45217,-8.51512 -24.46333,-9.06907 -27.46875,-15 -1.71004,-3.37459 -3.19772,-5.02869 -4.75,-5.25 -3.03461,-0.43264 -3.42876,-3.43187 -0.90625,-6.84375 1.13343,-1.53304 2.50604,-5.60716 3.0625,-9.0625 0.77134,-4.78956 1.6248,-6.77547 3.5625,-8.34375 3.40085,-2.75249 6.25861,-15.42971 4.5625,-20.21875 -0.7789,-2.199274 -0.79207,-4.477673 -0.0937,-7.59375 0.54954,-2.452163 1.07819,-8.088755 1.1875,-12.53125 0.17935,-7.289277 -0.12954,-8.730788 -3.03125,-14.625 -3.56517,-7.24189 -6.22518,-9.577032 -15.1875,-13.21875 -6.3848,-2.594377 -12.10986,-3.779219 -17,-3.5625 z"
         id="path21877-0"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ssssssssssssssscccsssssssssssss" />
      <path
         sodipodi:nodetypes="cssssssssssscccsssssssssscc"
         inkscape:connector-curvature="0"
         id="path21879-1"
         d="m 1114.5224,228.36959 c -0.1953,0.57841 -0.2058,0.79264 -0.084,1.67218 0.077,0.55483 0.2084,1.23894 0.2909,1.52164 0.1032,0.35305 0.1162,0.63266 0.044,0.89283 -0.1607,0.57648 0.2854,2.07302 0.7097,2.38686 0.2419,0.17884 0.3554,0.41179 0.4861,0.97848 0.094,0.40882 0.2939,0.88788 0.4404,1.06571 0.3261,0.39582 0.3006,0.7543 -0.054,0.81787 -0.1815,0.0325 -0.3435,0.23525 -0.5174,0.64351 -0.3058,0.71755 -0.4206,0.78747 -3.1194,1.89407 -2.3422,0.96039 -2.6885,1.1764 -2.8897,1.79313 -0.1506,0.46146 -0.087,2.47333 0.084,2.62792 0.046,0.0425 4.2327,-0.078 9.3022,-0.26605 l 9.2157,-0.34136 -0.037,-1.07188 c -0.048,-1.29644 -0.2863,-1.90188 -0.8734,-2.23975 -0.2201,-0.12667 -1.3543,-0.53986 -2.5198,-0.91715 -2.8397,-0.91933 -2.9637,-0.98119 -3.3677,-1.67473 -0.2298,-0.39461 -0.4191,-0.58546 -0.6044,-0.60557 -0.3619,-0.0394 -0.4333,-0.39457 -0.1636,-0.81053 0.1212,-0.18689 0.2494,-0.67702 0.2866,-1.09029 0.052,-0.57284 0.1358,-0.81249 0.3515,-1.00679 0.3789,-0.34101 0.6115,-1.86049 0.3715,-2.42343 -0.1102,-0.25851 -0.1306,-0.5295 -0.074,-0.90296 0.044,-0.29392 0.061,-0.96655 0.037,-1.49546 -0.039,-0.86785 -0.088,-1.0381 -0.4791,-1.72769 -1.8686,0.43939 -5.6289,0.33885 -6.8343,0.27944 z"
         style="fill:#1a1a1a;fill-opacity:1;fill-rule:nonzero;stroke:none" />
      <path
         style="fill:#ffffff;stroke:#ffffff;stroke-width:0.20648061;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 1118.4021,238.61093 0.5808,2.38743 -3.0327,-2.45196"
         id="path8675"
         inkscape:path-effect="#path-effect8677-6"
         inkscape:original-d="m 1118.4021,238.61093 0.5808,2.38743 -3.0327,-2.45196"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccc" />
      <path
         sodipodi:nodetypes="ccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1119.1665,238.67545 0.268,2.25837 2.5295,-2.38743"
         inkscape:path-effect="#path-effect8681-4"
         id="path8679"
         d="m 1119.1665,238.67545 0.268,2.25837 2.5295,-2.38743"
         style="fill:#ffffff;stroke:#ffffff;stroke-width:0.20472343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1119.241,241.12741 0.1289,2.96816"
         inkscape:path-effect="#path-effect8685-6"
         id="path8683"
         d="m 1119.241,241.12741 0.1289,2.96816"
         style="fill:none;stroke:#ffffff;stroke-width:0.20648061;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <g
         id="g385"
         transform="matrix(0.07627499,-0.01053122,0.00943033,0.07755553,1089.3221,197.71254)">
        <path
           sodipodi:nodetypes="cccccccccc"
           id="path387"
           d="m 321.52049,424.67593 46.39443,23.81444 4.33626,35.00642 c 0,0 3.04145,27.67211 -3.61155,44.67311 -6.653,17.002 -14.95813,43.23868 -18.65513,45.45568 -16.46089,23.36417 -41.8175,13.13887 -46.2535,10.92187 -4.434,-2.219 -27.686,-36.63745 -32.614,-54.13345 -2.815,-9.998 -4.74221,-39.54154 0.60379,-62.41154 4.008,-17.148 2.03231,-30.8747 2.03231,-30.8747 z"
           inkscape:connector-curvature="0"
           style="fill:#dec7ab;stroke:#8b5e3c" />
        <path
           sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc"
           id="path254"
           style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
           d="m 329.97842,532.06687 c 1.4597,0.74514 2.64786,1.72936 2.80811,3.60917 -5.88197,-0.697 -6.87412,4.66361 -11.36752,3.39845 -2.0509,-0.57734 -1.8213,-2.985 -3.75028,-4.1857 -1.39314,-0.86893 -5.03239,-0.4414 -7.07433,-1.74758 0.40477,-1.91392 3.12664,-1.24205 4.27071,-2.33048 2.31495,1.63016 3.77662,5.16162 6.10222,5.39435 1.58359,-0.62522 2.71833,-1.59775 4.25379,0.0161 2.33516,-0.54823 3.33051,-2.59223 4.7573,-4.15431 z m -51.35159,11.75673 c 0.75156,1.25308 4.7173,3.84597 6.33735,3.76946 -1.60207,-0.50123 -0.45158,-1.61269 0.48611,-1.82307 -0.61773,0.55337 -0.63564,1.67521 0.4579,1.93089 1.15072,-0.5038 0.30192,-0.90457 0.95518,-1.3001 1.21601,1.41299 -1.02323,1.63838 -1.43803,2.65432 1.67013,0.44442 1.17397,-1.52969 2.8441,-1.08451 -0.91147,0.97676 1.57598,1.54542 2.34295,2.61606 0.9906,1.38212 1.21341,5.35191 3.74192,5.12474 -1.52321,-1.31246 -2.45054,-3.14338 -3.74547,-4.65576 0.68173,-0.17314 1.1387,1.96112 1.41274,0.63152 -2.90634,-2.03661 -2.57215,-4.45172 -4.6752,-6.64058 2.72867,-0.0384 2.99028,4.52105 4.22121,4.23997 0.0148,-0.70098 -1.73977,-2.1202 -0.45431,-2.40033 0.4659,1.9239 1.40472,3.43566 2.80083,4.54696 0.10864,-0.35213 0.0195,-0.92412 0.47945,-0.88432 0.0491,0.57846 0.13255,1.12772 0.93736,1.04613 0.0348,-1.83688 -0.98605,-1.56766 -1.40253,-2.03877 0.82173,-2.08081 3.40283,-2.19538 4.75419,-3.68415 0.18033,0.82762 -0.70972,1.12264 -0.0103,1.40817 0.63601,-1.02547 2.11964,-1.10468 3.31909,-1.50041 -0.13669,0.69064 -2.04469,1.74459 -0.96185,2.23903 1.4497,-1.31242 1.40501,0.068 3.30884,-0.0914 2.23318,-4.79266 3.86047,-1.73321 -0.003,0.46899 2.75376,-0.25518 3.14745,-2.84707 5.68719,-2.16866 -0.0293,0.59727 -0.60919,0.58074 -0.4821,1.35384 1.84775,0.16925 1.25488,-2.38513 2.38578,-3.01546 1.32085,1.51924 0.59978,-1.33606 2.36841,-0.66853 0.33454,1.31898 -0.94649,0.83668 -0.95969,1.76943 2.36645,0.32883 -0.45434,2.24808 -0.48876,2.29215 -0.67409,0.85413 2.67539,-1.72196 4.7559,-4.15365 -0.0378,2.04729 1.11008,-1.09852 1.88322,1.15464 -1.12711,0.069 -2.75801,1.63719 -0.96279,2.23846 0.0798,-1.34697 1.43425,-1.97057 2.38888,-3.48494 -0.79259,2.46261 0.45352,0.71626 1.41679,0.16185 -0.75004,0.71038 -0.53525,3.20759 0.9195,3.39317 0.9452,-0.97524 -0.11472,-0.53451 -0.46163,-1.46212 1.17437,0.0641 1.95753,0.46667 2.35415,1.20891 -0.47627,-0.0494 -0.6002,0.75478 -0.007,0.93823 0.66092,-0.68263 0.41669,-2.37385 1.43774,-2.6539 -0.82489,1.5295 0.83627,4.78043 -0.99039,5.99298 -0.82221,-0.98235 -0.98127,0.0105 -2.36487,0.19924 -0.59153,-0.25956 -0.96031,-0.71512 -0.93375,-1.51509 0.90402,-0.44968 1.10255,-1.05355 0.0143,-1.87792 -0.63489,0.7103 0.14949,3.007 -1.43822,2.65433 -0.51931,-1.7231 2.00544,-2.44384 0.50165,-3.70036 -0.10722,0.35353 -0.39981,0.50105 -0.94758,0.36145 0.69765,4.31122 -2.40598,3.22718 -4.2676,1.86145 0.12876,1.93213 -0.98854,0.13758 -1.89252,0.25321 0.073,1.18516 -1.06648,1.01837 -1.43059,1.71567 -0.62535,-0.5416 -1.42028,-0.93667 -1.8784,-1.62394 0.41929,-0.78028 1.5907,-1.27257 0.0142,-1.87744 -0.51544,1.16022 -0.32429,3.10957 -1.44518,3.59273 -0.57947,-1.10745 -3.50528,-1.22466 -3.78474,0.50722 5.03615,0.19706 11.33803,-0.46609 16.99111,2.87984 1.74886,-1.62477 3.83929,-0.0998 5.21269,-1.75255 -0.59467,1.4646 4.72073,0.17995 7.07835,1.27786 0.0854,-1.78449 -2.22455,-1.47583 -2.33938,-3.08499 -0.2331,0.52768 -0.51131,1.00567 -0.9547,1.29936 -1.37918,-0.85398 -1.75808,0.33054 -2.35414,-1.20796 0.84405,-1.48241 1.0613,-2.6138 1.44486,-3.59231 1.65316,0.39883 0.95117,2.12953 1.39926,2.5078 1.78443,-1.05845 -0.46226,-3.11491 0.50398,-4.16946 0.0165,2.013 2.41367,3.98412 2.34652,2.1471 0.10809,0.68147 0.77249,0.87975 0.93425,1.51516 -0.55365,-0.66076 -1.78174,-0.40218 -2.36389,0.20013 1.2,0.35017 -0.50533,3.2374 1.87017,2.56207 -0.0208,-1.45695 -0.81336,-1.91747 0.0214,-2.81617 0.95888,2.01407 0.76189,-1.73579 2.82551,1.26228 0.14767,-1.2524 -2.5164,-2.41531 -1.39399,-2.97703 1.53978,1.16914 2.80383,3.10856 2.82861,0.79293 4.5209,3.27952 4.89288,4.27925 8.94373,4.77891 0.055,2.27053 -2.04992,2.12918 -1.45651,5.00065 -0.82116,-0.12942 -1.46925,-0.0629 -1.89205,0.25325 0.4892,-2.53654 -1.93512,-0.86468 -2.82955,-0.79257 -0.5365,-1.49829 0.23263,-1.47209 -1.41275,-0.6312 -0.68319,-1.95662 -1.82025,-1.09276 -3.29457,-1.78552 0.10295,1.89703 -3.54642,0.11617 -5.69154,2.63785 -0.66964,-1.82711 -0.62035,-1.25828 -1.41709,-0.16187 -0.0693,-0.56087 0.0919,-1.32307 -0.46035,-1.46148 -2.9871,0.42095 -7.34104,1.28719 -13.69824,-1.09527 -2.2793,1.93741 -10.4136,-1.7438 -12.73775,-2.86433 -0.17535,1.27348 -1.4183,0.38181 -2.37509,1.60826 0.19104,-1.8827 -2.41818,-1.76822 -0.46875,-0.52371 -1.16449,-0.0706 -2.27595,-0.18866 -2.82987,-0.7926 0.21225,1.49869 -1.27976,1.09451 -1.43416,2.18414 2.36873,-0.0768 -0.64161,1.65794 0.93019,1.98532 -0.1806,-1.71422 0.86709,-0.5446 0.46829,0.52379 0.87594,0.54862 1.58939,-1.22564 1.88895,0.21579 -0.19893,0.88108 -1.8334,0.16129 -1.43061,1.71519 1.68658,-0.60725 2.07553,-0.72842 3.30124,0.84645 -1.43794,0.95405 0.32553,1.1898 0.46207,1.46215 -0.662,0.25146 -2.2142,1.88554 -1.43463,2.18457 0.10724,-0.35371 0.3995,-0.50032 0.94758,-0.36114 -0.96034,1.52597 0.20925,-0.0152 0.46564,0.99224 -0.43612,0.77572 -1.66097,0.66935 -2.37198,1.13844 -0.0517,1.27533 0.77974,1.03433 -0.0142,1.87695 1.60749,0.29731 1.76619,-0.69586 2.36484,-0.19955 -0.33343,1.71857 -1.56688,-0.52595 -1.89935,1.19242 0.85097,1.12123 2.12322,1.87493 2.33582,3.55476 1.30701,0.0907 1.62765,-0.71058 0.9406,0.57714 2.25233,0.0838 2.58637,0.13815 4.7292,-0.3989 -0.0519,1.27485 0.77974,1.03434 -0.0142,1.87697 1.51876,-0.21698 0.98203,-0.28793 1.88539,0.68519 -0.0192,-0.81016 0.37247,-1.16211 0.9547,-1.30032 -0.002,0.46906 -0.007,0.9387 -0.0103,1.40818 1.77399,-0.38558 2.10067,-2.38808 3.8026,-2.8541 -0.77565,1.34237 -2.38635,1.75311 -2.86214,3.43137 1.7704,0.55572 1.0432,-1.67511 2.37554,-1.60789 -0.89148,0.79281 -0.0611,1.17344 -0.0179,2.34641 2.08057,0.47901 2.02262,-3.94056 3.78832,-0.97619 1.5871,-0.80143 -1.80748,-1.97199 -0.45447,-2.40066 0.30959,1.53745 1.56228,1.06469 1.87745,1.62365 -1.09047,-0.53444 -1.10208,2.26449 -0.47805,0.88492 1.48138,-1.34346 1.96388,-3.80188 4.28543,-4.20767 -2.72911,0.57235 -2.77983,7.17853 -1.48181,8.28572 0.0541,-3.6137 -0.73177,-6.24044 0.99088,-5.99336 0.15486,0.0201 -0.1893,1.65319 0.4624,1.462 0.39734,-0.11789 -0.20858,-2.6077 0.95843,-1.76956 -0.59092,1.91593 0.0113,3.70179 0.90475,5.27037 0.96122,-2.63083 -1.08345,-3.32894 0.0392,-5.16254 1.54614,1.60708 0.76968,5.62615 1.37426,5.79385 0.10981,-1.61307 0.96849,-2.38925 1.4444,-3.59283 0.16174,1.37684 0.45214,-1.8939 1.4199,-0.3075 -0.25041,0.66613 -0.70643,1.10313 -0.9583,1.76958 2.03182,0.009 0.59451,1.33236 1.40643,1.57002 0.91247,-0.45057 -1.00588,-3.08819 0.96915,-3.17771 -0.14037,0.27221 -1.18806,1.6725 -0.0144,1.87739 0.73835,-0.75313 1.3121,-1.69003 1.90945,-2.60046 0.50392,1.26081 -1.45101,2.07351 -0.0214,2.81612 0.65603,-1.74431 0.37385,-1.79318 0.96962,-3.17765 1.5705,1.01158 1.24407,1.07105 2.36436,-0.19933 1.61508,2.67254 9.31136,1.15639 5.70921,-4.98473 1.59877,-0.23644 0.64329,-2.67646 0.0179,-2.34641 1.89283,-0.80953 -0.56561,-3.19631 0.508,-4.6393 -1.2828,0.9185 -5.29282,2.28453 -3.80613,3.32352 -1.30254,-0.0206 -3.65157,-0.5042 -4.26358,1.39161 -0.80796,-1.76089 -3.51979,0.44025 -4.25299,-0.016 -0.40284,-0.2512 0.61966,-3.29346 -0.4624,-1.46219 -0.0503,0.7317 0.0505,1.63444 -0.95472,1.30031 0.0727,-0.5468 0.84906,-0.96803 0.0103,-1.40816 -0.84602,0.85576 -1.92283,0.09 -0.48303,1.35418 -1.64933,-0.67531 -4.36514,2.11 -3.30886,0.0914 -1.48097,-0.39159 -1.25684,1.1209 -2.37198,1.13827 -6.10003,-3.87411 -13.9893,-2.15174 -16.96253,-6.63467 0.51206,0.17069 1.12769,0.90183 0.46518,0.99266 -0.67752,-0.34065 -1.14704,-0.86319 -1.40606,-1.56996 1.24131,0.28141 0.38513,-1.7784 1.89917,-1.19199 -1.21187,1.39458 2.14185,1.05308 2.83716,-0.14565 -1.28633,-0.48911 -0.95827,0.82383 -1.89624,0.72246 -0.0211,-0.60256 -0.60011,-0.7184 -0.46148,-1.46114 0.62453,0.0764 0.42563,0.87195 0.93736,1.04611 1.44338,-0.66378 -1.27772,-1.6002 0.0144,-1.87742 0.41476,1.61952 1.0525,0.53058 1.88815,0.21565 6.09834,4.89641 17.98728,2.47376 22.65808,3.52807 -0.16698,-1.44953 1.7228,-0.60094 1.90372,-1.66208 1.03989,0.79503 -0.60408,1.07788 0.46067,1.46183 0.63996,-0.8641 1.11655,-1.90871 2.37911,-2.07668 -2.434,2.65519 -3.98053,4.12289 -6.19145,6.33855 1.44175,-0.22407 2.40462,0.21928 2.83622,-0.14575 -1.20511,-1.32461 1.30478,-2.49575 0.95113,-0.83089 0.32342,-1.53271 1.54172,-2.06453 2.38626,-3.01556 1.89721,1.73978 4.77716,-2.47141 6.6284,-1.59132 -1.87472,0.86768 -1.02826,3.85828 0.44762,3.33925 -1.4369,-3.74454 2.2943,-1.05614 1.89577,-0.72313 1.29909,-1.08827 -0.20282,-2.34073 1.91657,-3.53874 0.181,0.82819 -0.70928,1.12349 -0.0103,1.40802 1.39538,-1.43964 1.54273,-4.27308 2.88078,-5.77749 -0.14218,3.32497 2.65749,-1.50736 2.35334,1.2088 1.31534,-0.5529 -0.80464,-2.0137 0.48955,-2.29252 0.10394,0.37545 0.005,0.92694 0.46612,0.99229 0.54758,-0.49257 0.54676,-1.59775 0.49263,-2.76231 2.98418,-0.0767 2.57481,-4.79418 3.35541,-6.19236 -0.15324,0.97501 -1.6357,-0.68028 -1.40563,-1.56977 1.57461,2.28086 5.09866,-1.98397 4.75015,-3.21475 0.33892,0.80614 -0.95343,1.93433 -0.9513,0.8304 -0.0683,-1.21808 2.41964,-1.9809 1.43868,-2.65381 -0.10486,0.51456 -0.53094,0.67062 -0.95162,0.83087 0.20853,-0.87132 1.02512,-1.06336 0.96231,-2.23854 -1.46889,-0.23472 0.0439,-1.57351 -1.87512,-2.09339 0.71578,-1.22137 1.92523,1.03485 2.36388,-0.19968 -0.81054,-0.0675 -1.20776,-0.50031 -1.40825,-1.09991 4.83652,-6.12446 10.81931,-23.18248 7.3068,-28.75769 0.72451,-1.07221 0.56533,-2.39568 0.50878,-4.63921 -0.0149,-0.56008 0.47941,-7.00376 -1.37428,-5.79338 -1.16796,-2.36473 1.6476,-6.01713 0.0821,-10.79468 -0.98661,-3.01187 -1.62989,-0.86675 0.0143,-1.87649 -0.41772,-0.1864 -2.05774,-1.50663 -0.93345,-1.51599 0.47325,0.0527 0.55844,0.44372 0.94059,0.57712 0.41321,-1.04858 -1.63562,-2.21063 -0.45399,-2.40028 0.10849,0.52231 0.76867,1.21588 0.94041,0.5768 -1.90024,-2.05868 1.44489,-0.6754 -0.44355,-3.80801 0.96201,0.24733 0.91624,1.37534 1.87731,1.62287 -1.49253,-2.71384 -1.31748,-5.4118 -1.35875,-7.67019 0.83134,-0.0367 0.84259,2.90304 1.40516,1.56972 -1.01969,-2.44502 1.3447,-4.99137 0.0534,-7.0395 -1.21187,0.69626 0.28148,4.4151 -0.98327,5.05469 -1.07363,-2.46096 -3.1987,-4.96094 -1.82748,-8.1945 -2.18802,-1.43282 -2.48351,-6.20538 -2.77633,-7.83209 -0.23342,0.52799 -0.5118,1.00561 -0.95566,1.29974 -0.37594,-2.40473 -0.41254,-3.29953 -2.33533,-3.55487 0.47216,0.0539 0.94494,0.10793 1.41633,0.16182 -0.0746,-0.71166 0.18227,-1.71253 -0.45711,-1.93078 10e-4,2.81963 -0.42712,-0.40761 -1.42394,0.7764 0.78227,-1.80337 -0.38849,-0.63644 -0.45526,-2.40042 0.0199,0.80977 -0.37247,1.16162 -0.95469,1.30032 0.17125,-1.43735 -1.07671,-2.36705 0.025,-3.28509 -1.51373,-0.58683 -0.6585,1.47238 -1.89934,1.19195 0.5504,-1.31436 0.29212,-1.71103 -0.92615,-2.45422 0.95935,1.23221 -0.99715,2.85175 -1.43513,2.18449 0.14318,-0.53969 1.91618,-1.55548 0.49111,-2.29234 -0.26089,1.85765 -1.15615,0.39495 -1.9003,1.19183 1.93684,1.40199 -0.89856,1.3762 0.9268,2.45433 -1.99662,2.22955 -1.96524,-1.60794 -1.42037,0.3079 -1.27365,-4.47642 0.19555,-5.10198 -4.68279,-5.70189 -0.13638,2.09024 -3.0087,1.10486 -0.94403,-0.10787 -2.16227,-0.52095 -2.21345,1.31499 -3.3231,1.96886 -0.0957,-0.57846 -0.5215,-0.34799 -0.94464,-0.10781 -0.18055,-0.82861 0.71067,-1.12255 0.0103,-1.40771 -1.27772,-1.8248 -0.26472,1.72427 -2.38611,3.01543 -0.51944,-1.72359 2.00483,-2.44392 0.50165,-3.70051 -0.47768,0.59172 -0.77695,-0.28912 -1.42437,0.77637 -0.3798,-1.37076 0.67455,-1.1399 0.49015,-2.29246 -1.92863,0.68585 -4.26047,0.92319 -5.21919,2.69197 -0.47508,-1.91048 -3.13391,0.96365 -5.19039,-1.06222 0.9591,0.51057 2.9362,-0.0735 1.42427,-0.77685 -1.36695,9.4e-4 -3.89882,1.65738 -6.16105,2.11437 0.27193,-0.92692 1.42769,-0.75795 0.48751,-1.82288 -1.89629,0.626 -4.09412,-1.2848 -7.5623,0.0753 -0.0987,-0.89927 0.54029,-0.97425 0.48517,-1.82317 -5.64401,1.40649 -11.29146,-0.41978 -15.57444,-2.71849 -1.81402,-0.29045 -1.8432,1.41226 -3.3191,1.49996 -0.64546,-2.66383 -3.44002,0.57348 -3.77789,-0.43153 0.25026,-0.41965 2.13049,-1.31574 0.95923,-1.76949 -0.74806,0.90021 -1.97337,1.268 -2.38268,2.54596 0.35401,-1.24125 -0.93123,-1.05118 -0.9302,-1.98484 0.66126,0.11035 1.80652,0.10103 0.94803,-0.36155 -0.31431,-0.0359 -0.62985,-0.072 -0.94447,-0.1078 0.39522,1.4985 -2.64272,3.3665 -4.27086,2.33047 0.7045,-0.66056 4.112,-0.73624 2.85096,-2.02282 -0.15727,0.52271 -2.0722,1.38037 -2.36436,0.19916 1.07266,0.20672 2.76415,-1.27054 1.90276,-1.66124 -1.54646,3.0374 -8.40453,1.27521 -6.14941,0.70697 -1.90188,0.4792 -1.94932,3.05739 -4.74659,2.74579 0.28395,-0.94545 1.0038,-1.40345 1.43448,-2.18459 -3.25136,0.62934 -4.4071,3.59861 -6.65695,5.34541 0.1373,-0.69011 2.04529,-1.74375 0.96187,-2.23857 -0.76988,1.69343 -4.59776,5.9029 -2.87222,4.83895 -0.29343,3.46444 -3.58094,6.09125 -2.90451,9.06245 0.2331,-0.52865 0.51178,-1.0061 0.95516,-1.29983 -0.27372,1.10244 -2.11808,5.91138 -0.9766,4.11597 0.73819,-2.29442 2.51392,-5.00756 2.88311,-6.24709 0.0956,0.57847 0.5218,0.34802 0.944,0.10787 -1.00396,2.00092 -1.24124,4.08587 0.44741,3.33904 -0.0618,1.07212 -2.60886,1.77011 -0.96916,3.17774 1.20547,-2.46562 0.4756,2.12893 -0.47574,0.41503 0.002,0.88702 -1.58839,3.64194 -0.49374,2.76219 0.23361,-0.52888 0.51181,-1.00656 0.9552,-1.3001 0.0755,0.71125 -0.18182,1.71259 0.45758,1.93086 0.34502,-0.22215 -1.5874,4.39362 -1.92776,4.94699 0.055,-0.3676 1.57175,-1.24444 1.42021,-0.30764 -0.30711,1.19459 -0.0868,2.84876 1.40608,1.56999 -4.70624,6.46408 -2.86819,18.2199 -4.91837,25.27222 0.81129,0.27813 1.21584,-0.55805 1.41632,0.16182 -3.7647,7.32588 2.3957,19.21038 4.51863,27.28984 0.62858,-1.22046 -0.12236,6.0208 0.41521,7.56336 -1.44833,-3.65951 -6.80113,-7.46461 -6.06748,-10.08773 -0.10363,0.51564 -0.52907,0.67096 -0.95113,0.83103 -1.36187,-1.9198 -3.02233,-3.5774 -4.21065,-5.64812 1.07466,0.18613 1.80779,3.0344 2.8224,1.7313 -1.3147,-0.63975 0.23684,-2.72195 0.95472,-1.29986 -2.13952,-5.12079 -4.66285,-10.52773 -4.13507,-15.50292 -3.6e-4,0.26012 -0.38645,0.48909 -0.47186,-0.0539 0.80039,-0.0984 1.597,-2.57374 0.49682,-3.23168 0.12375,1.08492 -0.12722,1.75146 -0.95873,1.76971 0.38677,-4.37764 -1.17702,-7.05254 -1.81012,-10.54049 0.96929,0.52232 2.12974,-0.9746 0.95518,-1.30027 -5.6e-4,0.26103 -0.38645,0.48908 -0.47217,-0.0539 1.37244,-14.05981 -0.84759,-24.33369 0.28197,-37.07523 2.88574,-6.02 4.71631,-15.7172 11.01733,-19.40904 2.77435,-1.62552 6.5415,-5.81987 9.03934,-7.89186 6.21607,-5.15702 23.49236,-11.23732 32.67385,-8.48023 1.99072,-0.46394 1.99068,-0.68575 3.77761,0.43149 10.56834,-3.74817 21.91859,6.59146 30.17758,9.08335 5.62482,5.02314 11.53949,8.98638 15.94669,15.91254 0.12897,-0.64568 1.03973,-0.4166 1.42426,-0.77698 1.22005,2.66484 2.57719,5.2079 4.6716,7.10967 7.92403,9.96414 6.30757,30.8177 6.26453,46.27844 -0.47362,-0.0533 -0.55924,-0.44474 -0.94189,-0.5779 -8.9e-4,10.31659 -1.0115,19.65822 -1.63633,28.93569 -0.65091,9.64214 -8.4189,15.38765 -8.68511,23.43355 0.091,-1.63399 -0.10237,-3.01868 -0.91686,-3.86284 -0.66171,0.52224 -0.22233,2.27551 -1.43418,2.18508 -0.22846,-0.94542 1.05236,-2.87732 0.0142,-1.87713 -1.66471,3.50383 -2.67284,7.74214 -4.3385,11.2471 5.04224,2.41415 -2.97883,5.56298 -0.0643,8.44731 -3.42758,6.15759 -0.29022,14.95624 -8.0987,8.46947 3.03513,4.1891 -0.80733,3.98092 -0.98295,5.05443 11.21325,5.1641 -57.77176,57.39803 -72.32743,-26.80762 z m -1.2879,-112.18232 c -1.01494,3.54856 2.51249,-1.51112 1.43449,-2.18409 -0.44206,0.69488 -1.28664,1.66779 -1.43449,2.18409 z m -8.17368,18.32496 c 1.28875,-1.76307 2.46821,-5.40897 1.93488,-5.88507 -1.02409,2.20227 -2.07181,3.95962 -1.93488,5.88507 z m -1.44845,4.06221 c 0.10846,-0.35261 0.0195,-0.92428 0.47931,-0.88494 0.6398,-5.26388 -1.37198,-2.66497 -0.47265,-0.054 -0.47578,-0.0496 -0.60019,0.75526 -0.007,0.93892 z m -1.9248,4.47731 c 0.23638,-1.18372 1.92989,-3.17267 0.97677,-4.11592 -0.18541,1.24063 -2.05774,3.03009 -0.97677,4.11592 z m 93.34768,91.92337 c -0.002,0.31234 -0.005,0.62556 -0.007,0.93838 0.28835,0.0596 0.55844,0.13408 0.46953,0.52332 0.3143,0.0354 0.62938,0.0719 0.944,0.10787 0.029,-0.28324 0.0743,-0.54805 0.47637,-0.41528 0.003,-0.31279 0.005,-0.62557 0.007,-0.9384 -0.28799,-0.0601 -0.55842,-0.13458 -0.46919,-0.52374 -0.31463,-0.0364 -0.62972,-0.072 -0.94402,-0.10787 -0.0287,0.28329 -0.0746,0.548 -0.47669,0.41572 z m -10.06543,18.57777 c 2.06813,-2.42397 3.44745,-5.6151 4.32488,-9.3699 0.64948,2.4838 2.02669,-2.52606 1.91036,-2.59962 0.022,0.49609 0.60129,0.43757 0.47494,-0.41588 -0.0396,-1.6688 -1.56865,0.81888 -1.41181,-0.63064 0.26199,0.0309 0.53876,-0.31886 0.003,-0.46948 -1.2983,4.35318 -9.38457,7.75132 -5.30194,13.48548 z m -60.39333,-13.00455 c 1.3243,1.882 2.00262,0.41018 1.3952,2.97765 0.67289,0.18916 0.78996,0.86386 1.40918,1.10095 -0.18142,-2.2811 -1.29888,-0.50232 -0.44711,-3.33902 -2.0934,0.32391 -0.5652,-1.99955 -1.40609,-1.57 -0.0109,0.61863 -0.83096,0.3344 -0.95118,0.83042 z m 3.75957,2.77834 c 0.0288,-0.28326 0.0746,-0.54752 0.47542,-0.41586 1.00114,2.10882 -1.98749,2.1382 -0.96589,2.70827 0.94876,-1.03151 2.01127,1.02279 2.3684,-0.66856 -0.56976,-0.16497 -0.28675,-0.55494 0.007,-0.93915 -0.99611,-0.55271 -2.56242,-2.42631 -1.88508,-0.68468 z M 278.77341,429.45723 c 1.07847,0.67269 -2.4499,5.73259 -1.43449,2.18459 0.14786,-0.51682 0.99243,-1.48971 1.43449,-2.18459 z m -7.67283,14.62401 c 0.53319,0.4761 -0.64659,4.12243 -1.93534,5.88504 -0.13697,-1.92592 0.9108,-3.68281 1.93534,-5.88504 z m -3.37665,9.00837 c -0.89936,-2.61097 1.11165,-5.20951 0.47218,0.0539 -0.45945,-0.0399 -0.37084,0.53264 -0.47977,0.8852 -0.5926,-0.18387 -0.46866,-0.98779 0.008,-0.93913 z m -0.95516,1.30028 c 0.95312,0.94324 -0.74039,2.93267 -0.97677,4.11591 -1.08098,-1.08583 0.79136,-2.87482 0.97677,-4.11591 z m 39.93279,31.33537 c -0.35248,0.79491 -0.85927,-0.031 -1.41678,-0.16185 0.67261,0.90266 0.42514,1.11888 -0.9516,0.83039 0.89366,1.61007 1.80756,0.49829 3.29455,1.78568 0.0834,0.40882 -0.18745,0.4214 -0.47591,0.41486 -0.40075,-0.132 -0.44699,0.13202 -0.47523,0.41555 -2.0305,-2.99554 -5.25462,-2.64095 -10.36316,-4.47121 0.59436,1.12097 -2.77658,1.22023 -3.30575,-0.37757 -0.5404,1.97233 -7.85146,-1.62419 -8.49207,-1.90968 -2.06005,-0.91763 -3.10395,0.35649 -1.89252,0.2532 -1.62987,0.13881 -3.89387,0.12313 -6.14553,0.23797 1.04882,-2.08587 2.44373,-1.08035 4.26761,-1.86189 -1.39258,-0.08 -1.99334,-0.81403 -3.30885,0.0925 -1.02852,-1.18079 2.32538,-1.48189 2.38578,-3.01545 1.58783,-0.075 4.33227,0.30237 7.56933,-1.01415 3.65291,2.0282 7.5622,2.03362 12.74179,2.3946 1.34272,2.62809 3.66486,1.50741 5.1694,3.87845 -1.91627,-0.11614 0.19752,1.52433 1.39894,2.50867 z m 46.2883,3.40752 c -1.27247,-1.01529 1.07909,0.24439 0.93749,1.04706 0.72271,-1.2052 1.29392,-0.69573 2.37818,-2.07678 0.6386,1.30711 2.4624,1.57972 3.28744,2.72393 0.99954,-0.031 -0.48334,-1.68637 -1.40469,-1.56967 3.79818,0.45932 7.13311,3.51097 7.51222,6.49446 0.33951,1.4842 -1.30361,0.75413 -0.96328,2.23887 -0.80371,0.0807 -0.88815,-0.46831 -0.93688,-1.04652 -1.28543,0.27968 0.46856,1.69911 0.45449,2.40063 -2.01133,-0.0906 -5.41103,-4.96482 -7.53378,-3.67909 -6.57311,-1.83337 -17.49256,-1.60572 -23.1554,-0.29644 0.99705,-1.54293 0.0222,-0.85732 -0.93331,-1.51598 0.29391,-0.38378 0.57645,-0.77366 0.007,-0.93824 0.71741,-0.54941 4.55501,0.31343 2.3791,-2.07714 0.17161,-0.59671 0.83644,-0.64317 0.95473,-1.2994 0.4418,0.44887 0.30409,1.19141 0.45084,2.86931 0.31464,0.036 0.63018,0.072 0.94494,0.10793 0.74045,-0.0815 -0.40716,-0.87345 0.47853,-0.88442 -0.0863,-0.544 -0.47127,-0.31541 -0.4714,-0.0539 -1.76759,-1.85294 2.39842,-1.0809 1.44395,-3.59288 0.93364,1.24388 0.7426,0.55684 2.35414,1.20796 0.18047,-0.77898 -0.36114,-0.92704 -0.93735,-1.04612 3.17042,0.97408 8.08977,-0.36821 11.32982,1.76378 0.70185,-0.125 -0.18266,-0.62269 0.0103,-1.40799 0.96123,0.24755 0.91545,1.37554 1.87745,1.62367 -0.087,-0.39031 -0.47048,-0.52219 -0.46516,-0.99313 z m -51.56477,6.79277 c -0.14738,6.51653 -10.74358,6.46674 -9.91226,-1.60192 -2.94074,0.26629 -3.64369,1.89436 -5.68796,2.16845 0.74006,1.87785 -0.53392,1.75826 -0.0179,2.34638 -0.094,0.52295 -0.47556,0.20725 -0.47185,-0.0539 -0.77836,0.4676 -1.2374,-0.96157 -2.83344,-0.32364 -0.69918,-0.28505 0.19085,-0.57914 0.0103,-1.40725 -1.88365,0.42105 -3.58351,0.20449 -3.28387,-3.19367 1.79545,2.31884 5.00369,-0.67492 9.45827,-0.79841 7.39627,-0.20556 16.66347,1.53228 19.79968,6.48876 -2.59182,-1.51733 0.0329,0.83768 -0.0179,2.34686 -0.78645,-0.0897 -1.57432,-0.17978 -2.36079,-0.26964 -0.13576,-1.09914 1.36796,-0.36549 1.42702,-1.24638 -1.97246,-1.54134 -3.17157,-3.75771 -6.10983,-4.45568 z m 33.96494,8.10674 c -1.39677,0.2494 1.09138,0.82778 0.45838,1.93139 -0.3785,-0.36907 -1.28728,-0.87796 -1.41664,-0.16184 1.22743,-11.94707 22.94651,-0.90426 29.31149,-1.34929 -1.59204,-0.77049 -1.43873,-2.51851 0.47945,-0.88429 0.003,-0.31313 0.005,-0.62558 0.007,-0.93871 -0.18972,1.70548 1.50658,1.63162 -0.0179,2.34687 0.25888,0.6075 1.82965,-0.14103 1.40284,2.03882 -0.64496,-0.98244 -2.14128,-1.76391 -2.36485,0.19974 0.4587,0.0381 0.37035,-0.53286 0.479,-0.88453 1.65438,0.31664 -0.86911,1.98062 0.45802,1.93108 -0.92981,-0.53334 -2.11771,0.0922 -3.31968,1.49941 -0.68528,-0.28702 0.0514,-0.4062 0.007,-0.93871 -0.98233,0.16567 -1.61649,0.71963 -1.90274,1.66175 0.0325,-2.41962 -5.28839,1.82061 -6.60746,-1.22443 0.45878,0.0663 0.3621,0.61588 0.46502,0.99264 2.84878,-1.16056 0.28303,-3.65806 2.3965,-4.42358 -1.57549,-0.95486 -2.64784,-2.34973 -4.70375,-2.8862 -0.34592,6.70914 -9.98327,6.6249 -9.44042,-1.548 -2.80867,-0.45422 -3.76004,1.16551 -5.21532,2.22289 -0.13848,0.74229 0.44008,0.85903 0.46159,1.46209 1.27294,1.01535 -1.07909,-0.24392 -0.9378,-1.0471"
           inkscape:connector-curvature="0" />
      </g>
      <path
         sodipodi:nodetypes="ssssssssssssssscccsssssssssssss"
         inkscape:connector-curvature="0"
         id="path10432"
         d="m 895.09375,10.71875 c -4.89014,0.216719 -8.9448,1.858112 -12.09375,4.875 -1.59759,1.530586 -4.8116,3.669737 -7.125,4.78125 -3.48742,1.675586 -4.60803,2.971118 -6.5,7.53125 -1.98958,4.795395 -2.20562,6.588936 -1.6875,14 0.32684,4.675 1.03173,10.449445 1.5625,12.84375 0.66284,2.990057 0.60921,5.338672 -0.15625,7.5 -1.69611,4.78904 1.1929,17.46626 4.59375,20.21875 1.9377,1.56828 2.75991,3.55419 3.53125,8.34375 0.55646,3.45534 1.96032,7.52946 3.09375,9.0625 2.52251,3.41188 2.09711,6.41111 -0.9375,6.84375 -1.55228,0.22131 -3.03996,1.87541 -4.75,5.25 -3.00542,5.93093 -4.01657,6.48488 -27.46875,15 -20.35415,7.39028 -23.40627,9.10357 -25.46875,14.21875 -1.54323,3.82737 -2.18837,20.71788 -0.84375,22.0625 0.37,0.36999 35.8075,0.54708 78.75,0.40625 l 78.0625,-0.25 0.3125,-9 c 0.354,-10.88614 -1.301,-16.03118 -6.0625,-19.03125 -1.7852,-1.12478 -11.125,-4.91156 -20.75,-8.40625 -23.45217,-8.51512 -24.46333,-9.06907 -27.46875,-15 -1.71004,-3.37459 -3.19772,-5.02869 -4.75,-5.25 -3.03461,-0.43264 -3.42876,-3.43187 -0.90625,-6.84375 1.13343,-1.53304 2.50604,-5.60716 3.0625,-9.0625 0.77134,-4.78956 1.6248,-6.77547 3.5625,-8.34375 3.40085,-2.75249 6.25861,-15.42971 4.5625,-20.21875 -0.7789,-2.199274 -0.79207,-4.477673 -0.0937,-7.59375 0.54954,-2.452163 1.07819,-8.088755 1.1875,-12.53125 0.17935,-7.289277 -0.12954,-8.730788 -3.03125,-14.625 -3.56517,-7.24189 -6.22518,-9.577032 -15.1875,-13.21875 -6.3848,-2.594377 -12.10986,-3.779219 -17,-3.5625 z"
         style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;filter:url(#filter6246-9-0-2-9-5)"
         transform="matrix(0.11808159,0.00239897,0.00827779,0.11940757,1009.071,200.79088)" />
      <path
         style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none"
         d="m 1111.9591,206.20868 c -0.1953,0.56784 -0.2058,0.7815 -0.084,1.66763 0.077,0.559 0.2084,1.25022 0.2909,1.53739 0.1032,0.35863 0.1162,0.63895 0.044,0.89521 -0.1607,0.56778 0.2854,2.08847 0.7097,2.42527 0.2419,0.19194 0.3554,0.43103 0.4861,1.00479 0.094,0.41391 0.2939,0.90379 0.4404,1.08955 0.3261,0.41347 0.3006,0.77057 -0.054,0.81495 -0.1815,0.0227 -0.3435,0.21666 -0.5174,0.6155 -0.3058,0.701 -0.4206,0.76471 -3.1194,1.72523 -2.3422,0.83361 -2.6885,1.03088 -2.8897,1.63672 -0.1506,0.45331 -0.087,2.46862 0.084,2.63247 0.046,0.045 4.2327,0.1511 9.3022,0.23744 l 9.2157,0.15746 -0.037,-1.07388 c -0.048,-1.29904 -0.2863,-1.91738 -0.8734,-2.28702 -0.2201,-0.13859 -1.3543,-0.61317 -2.5198,-1.05354 -2.8397,-1.07304 -2.9637,-1.14161 -3.3677,-1.85702 -0.2298,-0.40705 -0.4191,-0.60814 -0.6044,-0.63828 -0.3619,-0.059 -0.4333,-0.41802 -0.1636,-0.81939 0.1212,-0.18033 0.2494,-0.66352 0.2866,-1.07477 0.052,-0.57003 0.1358,-0.80514 0.3515,-0.98777 0.3789,-0.3205 0.6115,-1.82739 0.3715,-2.40332 -0.1102,-0.26447 -0.1306,-0.53657 -0.074,-0.90697 0.044,-0.29153 0.061,-0.96324 0.037,-1.49345 -0.039,-0.86996 -0.088,-1.04287 -0.4791,-1.75362 -1.8686,0.33824 -5.6289,0.0342 -6.8343,-0.0905 z"
         id="path10434"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="cssssssssssscccsssssssssscc" />
      <path
         sodipodi:nodetypes="ccc"
         inkscape:connector-curvature="0"
         inkscape:original-d="m 1115.8388,216.66001 0.5808,2.41887 -3.3752,-2.35094"
         inkscape:path-effect="#path-effect10448"
         id="path10436"
         d="m 1115.8388,216.66001 0.5808,2.41887 -3.3752,-2.35094"
         style="fill:#ffffff;stroke:#000000;stroke-width:0.20648061;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" />
      <path
         style="fill:#ffffff;stroke:#000000;stroke-width:0.20472343;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 1116.6032,216.76591 0.268,2.27287 2.7836,-1.9522"
         id="path10438"
         inkscape:path-effect="#path-effect10450"
         inkscape:original-d="m 1116.6032,216.76591 0.268,2.27287 2.7836,-1.9522"
         inkscape:connector-curvature="0"
         sodipodi:nodetypes="ccc" />
      <path
         style="fill:none;stroke:#333333;stroke-width:0.20648061;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none"
         d="m 1116.6777,219.2219 0.1289,2.97514"
         id="path10440"
         inkscape:path-effect="#path-effect10452"
         inkscape:original-d="m 1116.6777,219.2219 0.1289,2.97514"
         inkscape:connector-curvature="0" />
      <g
         transform="matrix(0.07627499,-0.00640269,0.00943033,0.07806597,1086.7588,174.18761)"
         id="g10442">
        <path
           style="fill:#734138;fill-opacity:1;stroke:#8b5e3c"
           inkscape:connector-curvature="0"
           d="m 321.52049,424.67593 46.39443,23.81444 4.33626,35.00642 c 0,0 3.04145,27.67211 -3.61155,44.67311 -6.653,17.002 -14.95813,43.23868 -18.65513,45.45568 -16.46089,23.36417 -41.8175,13.13887 -46.2535,10.92187 -4.434,-2.219 -27.686,-36.63745 -32.614,-54.13345 -2.815,-9.998 -4.74221,-39.54154 0.60379,-62.41154 4.008,-17.148 2.03231,-30.8747 2.03231,-30.8747 z"
           id="path10444"
           sodipodi:nodetypes="cccccccccc" />
        <path
           inkscape:connector-curvature="0"
           d="m 329.97842,532.06687 c 1.4597,0.74514 2.64786,1.72936 2.80811,3.60917 -5.88197,-0.697 -6.87412,4.66361 -11.36752,3.39845 -2.0509,-0.57734 -1.8213,-2.985 -3.75028,-4.1857 -1.39314,-0.86893 -5.03239,-0.4414 -7.07433,-1.74758 0.40477,-1.91392 3.12664,-1.24205 4.27071,-2.33048 2.31495,1.63016 3.77662,5.16162 6.10222,5.39435 1.58359,-0.62522 2.71833,-1.59775 4.25379,0.0161 2.33516,-0.54823 3.33051,-2.59223 4.7573,-4.15431 z m -51.35159,11.75673 c 0.75156,1.25308 4.7173,3.84597 6.33735,3.76946 -1.60207,-0.50123 -0.45158,-1.61269 0.48611,-1.82307 -0.61773,0.55337 -0.63564,1.67521 0.4579,1.93089 1.15072,-0.5038 0.30192,-0.90457 0.95518,-1.3001 1.21601,1.41299 -1.02323,1.63838 -1.43803,2.65432 1.67013,0.44442 1.17397,-1.52969 2.8441,-1.08451 -0.91147,0.97676 1.57598,1.54542 2.34295,2.61606 0.9906,1.38212 1.21341,5.35191 3.74192,5.12474 -1.52321,-1.31246 -2.45054,-3.14338 -3.74547,-4.65576 0.68173,-0.17314 1.1387,1.96112 1.41274,0.63152 -2.90634,-2.03661 -2.57215,-4.45172 -4.6752,-6.64058 2.72867,-0.0384 2.99028,4.52105 4.22121,4.23997 0.0148,-0.70098 -1.73977,-2.1202 -0.45431,-2.40033 0.4659,1.9239 1.40472,3.43566 2.80083,4.54696 0.10864,-0.35213 0.0195,-0.92412 0.47945,-0.88432 0.0491,0.57846 0.13255,1.12772 0.93736,1.04613 0.0348,-1.83688 -0.98605,-1.56766 -1.40253,-2.03877 0.82173,-2.08081 3.40283,-2.19538 4.75419,-3.68415 0.18033,0.82762 -0.70972,1.12264 -0.0103,1.40817 0.63601,-1.02547 2.11964,-1.10468 3.31909,-1.50041 -0.13669,0.69064 -2.04469,1.74459 -0.96185,2.23903 1.4497,-1.31242 1.40501,0.068 3.30884,-0.0914 2.23318,-4.79266 3.86047,-1.73321 -0.003,0.46899 2.75376,-0.25518 3.14745,-2.84707 5.68719,-2.16866 -0.0293,0.59727 -0.60919,0.58074 -0.4821,1.35384 1.84775,0.16925 1.25488,-2.38513 2.38578,-3.01546 1.32085,1.51924 0.59978,-1.33606 2.36841,-0.66853 0.33454,1.31898 -0.94649,0.83668 -0.95969,1.76943 2.36645,0.32883 -0.45434,2.24808 -0.48876,2.29215 -0.67409,0.85413 2.67539,-1.72196 4.7559,-4.15365 -0.0378,2.04729 1.11008,-1.09852 1.88322,1.15464 -1.12711,0.069 -2.75801,1.63719 -0.96279,2.23846 0.0798,-1.34697 1.43425,-1.97057 2.38888,-3.48494 -0.79259,2.46261 0.45352,0.71626 1.41679,0.16185 -0.75004,0.71038 -0.53525,3.20759 0.9195,3.39317 0.9452,-0.97524 -0.11472,-0.53451 -0.46163,-1.46212 1.17437,0.0641 1.95753,0.46667 2.35415,1.20891 -0.47627,-0.0494 -0.6002,0.75478 -0.007,0.93823 0.66092,-0.68263 0.41669,-2.37385 1.43774,-2.6539 -0.82489,1.5295 0.83627,4.78043 -0.99039,5.99298 -0.82221,-0.98235 -0.98127,0.0105 -2.36487,0.19924 -0.59153,-0.25956 -0.96031,-0.71512 -0.93375,-1.51509 0.90402,-0.44968 1.10255,-1.05355 0.0143,-1.87792 -0.63489,0.7103 0.14949,3.007 -1.43822,2.65433 -0.51931,-1.7231 2.00544,-2.44384 0.50165,-3.70036 -0.10722,0.35353 -0.39981,0.50105 -0.94758,0.36145 0.69765,4.31122 -2.40598,3.22718 -4.2676,1.86145 0.12876,1.93213 -0.98854,0.13758 -1.89252,0.25321 0.073,1.18516 -1.06648,1.01837 -1.43059,1.71567 -0.62535,-0.5416 -1.42028,-0.93667 -1.8784,-1.62394 0.41929,-0.78028 1.5907,-1.27257 0.0142,-1.87744 -0.51544,1.16022 -0.32429,3.10957 -1.44518,3.59273 -0.57947,-1.10745 -3.50528,-1.22466 -3.78474,0.50722 5.03615,0.19706 11.33803,-0.46609 16.99111,2.87984 1.74886,-1.62477 3.83929,-0.0998 5.21269,-1.75255 -0.59467,1.4646 4.72073,0.17995 7.07835,1.27786 0.0854,-1.78449 -2.22455,-1.47583 -2.33938,-3.08499 -0.2331,0.52768 -0.51131,1.00567 -0.9547,1.29936 -1.37918,-0.85398 -1.75808,0.33054 -2.35414,-1.20796 0.84405,-1.48241 1.0613,-2.6138 1.44486,-3.59231 1.65316,0.39883 0.95117,2.12953 1.39926,2.5078 1.78443,-1.05845 -0.46226,-3.11491 0.50398,-4.16946 0.0165,2.013 2.41367,3.98412 2.34652,2.1471 0.10809,0.68147 0.77249,0.87975 0.93425,1.51516 -0.55365,-0.66076 -1.78174,-0.40218 -2.36389,0.20013 1.2,0.35017 -0.50533,3.2374 1.87017,2.56207 -0.0208,-1.45695 -0.81336,-1.91747 0.0214,-2.81617 0.95888,2.01407 0.76189,-1.73579 2.82551,1.26228 0.14767,-1.2524 -2.5164,-2.41531 -1.39399,-2.97703 1.53978,1.16914 2.80383,3.10856 2.82861,0.79293 4.5209,3.27952 4.89288,4.27925 8.94373,4.77891 0.055,2.27053 -2.04992,2.12918 -1.45651,5.00065 -0.82116,-0.12942 -1.46925,-0.0629 -1.89205,0.25325 0.4892,-2.53654 -1.93512,-0.86468 -2.82955,-0.79257 -0.5365,-1.49829 0.23263,-1.47209 -1.41275,-0.6312 -0.68319,-1.95662 -1.82025,-1.09276 -3.29457,-1.78552 0.10295,1.89703 -3.54642,0.11617 -5.69154,2.63785 -0.66964,-1.82711 -0.62035,-1.25828 -1.41709,-0.16187 -0.0693,-0.56087 0.0919,-1.32307 -0.46035,-1.46148 -2.9871,0.42095 -7.34104,1.28719 -13.69824,-1.09527 -2.2793,1.93741 -10.4136,-1.7438 -12.73775,-2.86433 -0.17535,1.27348 -1.4183,0.38181 -2.37509,1.60826 0.19104,-1.8827 -2.41818,-1.76822 -0.46875,-0.52371 -1.16449,-0.0706 -2.27595,-0.18866 -2.82987,-0.7926 0.21225,1.49869 -1.27976,1.09451 -1.43416,2.18414 2.36873,-0.0768 -0.64161,1.65794 0.93019,1.98532 -0.1806,-1.71422 0.86709,-0.5446 0.46829,0.52379 0.87594,0.54862 1.58939,-1.22564 1.88895,0.21579 -0.19893,0.88108 -1.8334,0.16129 -1.43061,1.71519 1.68658,-0.60725 2.07553,-0.72842 3.30124,0.84645 -1.43794,0.95405 0.32553,1.1898 0.46207,1.46215 -0.662,0.25146 -2.2142,1.88554 -1.43463,2.18457 0.10724,-0.35371 0.3995,-0.50032 0.94758,-0.36114 -0.96034,1.52597 0.20925,-0.0152 0.46564,0.99224 -0.43612,0.77572 -1.66097,0.66935 -2.37198,1.13844 -0.0517,1.27533 0.77974,1.03433 -0.0142,1.87695 1.60749,0.29731 1.76619,-0.69586 2.36484,-0.19955 -0.33343,1.71857 -1.56688,-0.52595 -1.89935,1.19242 0.85097,1.12123 2.12322,1.87493 2.33582,3.55476 1.30701,0.0907 1.62765,-0.71058 0.9406,0.57714 2.25233,0.0838 2.58637,0.13815 4.7292,-0.3989 -0.0519,1.27485 0.77974,1.03434 -0.0142,1.87697 1.51876,-0.21698 0.98203,-0.28793 1.88539,0.68519 -0.0192,-0.81016 0.37247,-1.16211 0.9547,-1.30032 -0.002,0.46906 -0.007,0.9387 -0.0103,1.40818 1.77399,-0.38558 2.10067,-2.38808 3.8026,-2.8541 -0.77565,1.34237 -2.38635,1.75311 -2.86214,3.43137 1.7704,0.55572 1.0432,-1.67511 2.37554,-1.60789 -0.89148,0.79281 -0.0611,1.17344 -0.0179,2.34641 2.08057,0.47901 2.02262,-3.94056 3.78832,-0.97619 1.5871,-0.80143 -1.80748,-1.97199 -0.45447,-2.40066 0.30959,1.53745 1.56228,1.06469 1.87745,1.62365 -1.09047,-0.53444 -1.10208,2.26449 -0.47805,0.88492 1.48138,-1.34346 1.96388,-3.80188 4.28543,-4.20767 -2.72911,0.57235 -2.77983,7.17853 -1.48181,8.28572 0.0541,-3.6137 -0.73177,-6.24044 0.99088,-5.99336 0.15486,0.0201 -0.1893,1.65319 0.4624,1.462 0.39734,-0.11789 -0.20858,-2.6077 0.95843,-1.76956 -0.59092,1.91593 0.0113,3.70179 0.90475,5.27037 0.96122,-2.63083 -1.08345,-3.32894 0.0392,-5.16254 1.54614,1.60708 0.76968,5.62615 1.37426,5.79385 0.10981,-1.61307 0.96849,-2.38925 1.4444,-3.59283 0.16174,1.37684 0.45214,-1.8939 1.4199,-0.3075 -0.25041,0.66613 -0.70643,1.10313 -0.9583,1.76958 2.03182,0.009 0.59451,1.33236 1.40643,1.57002 0.91247,-0.45057 -1.00588,-3.08819 0.96915,-3.17771 -0.14037,0.27221 -1.18806,1.6725 -0.0144,1.87739 0.73835,-0.75313 1.3121,-1.69003 1.90945,-2.60046 0.50392,1.26081 -1.45101,2.07351 -0.0214,2.81612 0.65603,-1.74431 0.37385,-1.79318 0.96962,-3.17765 1.5705,1.01158 1.24407,1.07105 2.36436,-0.19933 1.61508,2.67254 9.31136,1.15639 5.70921,-4.98473 1.59877,-0.23644 0.64329,-2.67646 0.0179,-2.34641 1.89283,-0.80953 -0.56561,-3.19631 0.508,-4.6393 -1.2828,0.9185 -5.29282,2.28453 -3.80613,3.32352 -1.30254,-0.0206 -3.65157,-0.5042 -4.26358,1.39161 -0.80796,-1.76089 -3.51979,0.44025 -4.25299,-0.016 -0.40284,-0.2512 0.61966,-3.29346 -0.4624,-1.46219 -0.0503,0.7317 0.0505,1.63444 -0.95472,1.30031 0.0727,-0.5468 0.84906,-0.96803 0.0103,-1.40816 -0.84602,0.85576 -1.92283,0.09 -0.48303,1.35418 -1.64933,-0.67531 -4.36514,2.11 -3.30886,0.0914 -1.48097,-0.39159 -1.25684,1.1209 -2.37198,1.13827 -6.10003,-3.87411 -13.9893,-2.15174 -16.96253,-6.63467 0.51206,0.17069 1.12769,0.90183 0.46518,0.99266 -0.67752,-0.34065 -1.14704,-0.86319 -1.40606,-1.56996 1.24131,0.28141 0.38513,-1.7784 1.89917,-1.19199 -1.21187,1.39458 2.14185,1.05308 2.83716,-0.14565 -1.28633,-0.48911 -0.95827,0.82383 -1.89624,0.72246 -0.0211,-0.60256 -0.60011,-0.7184 -0.46148,-1.46114 0.62453,0.0764 0.42563,0.87195 0.93736,1.04611 1.44338,-0.66378 -1.27772,-1.6002 0.0144,-1.87742 0.41476,1.61952 1.0525,0.53058 1.88815,0.21565 6.09834,4.89641 17.98728,2.47376 22.65808,3.52807 -0.16698,-1.44953 1.7228,-0.60094 1.90372,-1.66208 1.03989,0.79503 -0.60408,1.07788 0.46067,1.46183 0.63996,-0.8641 1.11655,-1.90871 2.37911,-2.07668 -2.434,2.65519 -3.98053,4.12289 -6.19145,6.33855 1.44175,-0.22407 2.40462,0.21928 2.83622,-0.14575 -1.20511,-1.32461 1.30478,-2.49575 0.95113,-0.83089 0.32342,-1.53271 1.54172,-2.06453 2.38626,-3.01556 1.89721,1.73978 4.77716,-2.47141 6.6284,-1.59132 -1.87472,0.86768 -1.02826,3.85828 0.44762,3.33925 -1.4369,-3.74454 2.2943,-1.05614 1.89577,-0.72313 1.29909,-1.08827 -0.20282,-2.34073 1.91657,-3.53874 0.181,0.82819 -0.70928,1.12349 -0.0103,1.40802 1.39538,-1.43964 1.54273,-4.27308 2.88078,-5.77749 -0.14218,3.32497 2.65749,-1.50736 2.35334,1.2088 1.31534,-0.5529 -0.80464,-2.0137 0.48955,-2.29252 0.10394,0.37545 0.005,0.92694 0.46612,0.99229 0.54758,-0.49257 0.54676,-1.59775 0.49263,-2.76231 2.98418,-0.0767 2.57481,-4.79418 3.35541,-6.19236 -0.15324,0.97501 -1.6357,-0.68028 -1.40563,-1.56977 1.57461,2.28086 5.09866,-1.98397 4.75015,-3.21475 0.33892,0.80614 -0.95343,1.93433 -0.9513,0.8304 -0.0683,-1.21808 2.41964,-1.9809 1.43868,-2.65381 -0.10486,0.51456 -0.53094,0.67062 -0.95162,0.83087 0.20853,-0.87132 1.02512,-1.06336 0.96231,-2.23854 -1.46889,-0.23472 0.0439,-1.57351 -1.87512,-2.09339 0.71578,-1.22137 1.92523,1.03485 2.36388,-0.19968 -0.81054,-0.0675 -1.20776,-0.50031 -1.40825,-1.09991 4.83652,-6.12446 10.81931,-23.18248 7.3068,-28.75769 0.72451,-1.07221 0.56533,-2.39568 0.50878,-4.63921 -0.0149,-0.56008 0.47941,-7.00376 -1.37428,-5.79338 -1.16796,-2.36473 1.6476,-6.01713 0.0821,-10.79468 -0.98661,-3.01187 -1.62989,-0.86675 0.0143,-1.87649 -0.41772,-0.1864 -2.05774,-1.50663 -0.93345,-1.51599 0.47325,0.0527 0.55844,0.44372 0.94059,0.57712 0.41321,-1.04858 -1.63562,-2.21063 -0.45399,-2.40028 0.10849,0.52231 0.76867,1.21588 0.94041,0.5768 -1.90024,-2.05868 1.44489,-0.6754 -0.44355,-3.80801 0.96201,0.24733 0.91624,1.37534 1.87731,1.62287 -1.49253,-2.71384 -1.31748,-5.4118 -1.35875,-7.67019 0.83134,-0.0367 0.84259,2.90304 1.40516,1.56972 -1.01969,-2.44502 1.3447,-4.99137 0.0534,-7.0395 -1.21187,0.69626 0.28148,4.4151 -0.98327,5.05469 -1.07363,-2.46096 -3.1987,-4.96094 -1.82748,-8.1945 -2.18802,-1.43282 -2.48351,-6.20538 -2.77633,-7.83209 -0.23342,0.52799 -0.5118,1.00561 -0.95566,1.29974 -0.37594,-2.40473 -0.41254,-3.29953 -2.33533,-3.55487 0.47216,0.0539 0.94494,0.10793 1.41633,0.16182 -0.0746,-0.71166 0.18227,-1.71253 -0.45711,-1.93078 10e-4,2.81963 -0.42712,-0.40761 -1.42394,0.7764 0.78227,-1.80337 -0.38849,-0.63644 -0.45526,-2.40042 0.0199,0.80977 -0.37247,1.16162 -0.95469,1.30032 0.17125,-1.43735 -1.07671,-2.36705 0.025,-3.28509 -1.51373,-0.58683 -0.6585,1.47238 -1.89934,1.19195 0.5504,-1.31436 0.29212,-1.71103 -0.92615,-2.45422 0.95935,1.23221 -0.99715,2.85175 -1.43513,2.18449 0.14318,-0.53969 1.91618,-1.55548 0.49111,-2.29234 -0.26089,1.85765 -1.15615,0.39495 -1.9003,1.19183 1.93684,1.40199 -0.89856,1.3762 0.9268,2.45433 -1.99662,2.22955 -1.96524,-1.60794 -1.42037,0.3079 -1.27365,-4.47642 0.19555,-5.10198 -4.68279,-5.70189 -0.13638,2.09024 -3.0087,1.10486 -0.94403,-0.10787 -2.16227,-0.52095 -2.21345,1.31499 -3.3231,1.96886 -0.0957,-0.57846 -0.5215,-0.34799 -0.94464,-0.10781 -0.18055,-0.82861 0.71067,-1.12255 0.0103,-1.40771 -1.27772,-1.8248 -0.26472,1.72427 -2.38611,3.01543 -0.51944,-1.72359 2.00483,-2.44392 0.50165,-3.70051 -0.47768,0.59172 -0.77695,-0.28912 -1.42437,0.77637 -0.3798,-1.37076 0.67455,-1.1399 0.49015,-2.29246 -1.92863,0.68585 -4.26047,0.92319 -5.21919,2.69197 -0.47508,-1.91048 -3.13391,0.96365 -5.19039,-1.06222 0.9591,0.51057 2.9362,-0.0735 1.42427,-0.77685 -1.36695,9.4e-4 -3.89882,1.65738 -6.16105,2.11437 0.27193,-0.92692 1.42769,-0.75795 0.48751,-1.82288 -1.89629,0.626 -4.09412,-1.2848 -7.5623,0.0753 -0.0987,-0.89927 0.54029,-0.97425 0.48517,-1.82317 -5.64401,1.40649 -11.29146,-0.41978 -15.57444,-2.71849 -1.81402,-0.29045 -1.8432,1.41226 -3.3191,1.49996 -0.64546,-2.66383 -3.44002,0.57348 -3.77789,-0.43153 0.25026,-0.41965 2.13049,-1.31574 0.95923,-1.76949 -0.74806,0.90021 -1.97337,1.268 -2.38268,2.54596 0.35401,-1.24125 -0.93123,-1.05118 -0.9302,-1.98484 0.66126,0.11035 1.80652,0.10103 0.94803,-0.36155 -0.31431,-0.0359 -0.62985,-0.072 -0.94447,-0.1078 0.39522,1.4985 -2.64272,3.3665 -4.27086,2.33047 0.7045,-0.66056 4.112,-0.73624 2.85096,-2.02282 -0.15727,0.52271 -2.0722,1.38037 -2.36436,0.19916 1.07266,0.20672 2.76415,-1.27054 1.90276,-1.66124 -1.54646,3.0374 -8.40453,1.27521 -6.14941,0.70697 -1.90188,0.4792 -1.94932,3.05739 -4.74659,2.74579 0.28395,-0.94545 1.0038,-1.40345 1.43448,-2.18459 -3.25136,0.62934 -4.4071,3.59861 -6.65695,5.34541 0.1373,-0.69011 2.04529,-1.74375 0.96187,-2.23857 -0.76988,1.69343 -4.59776,5.9029 -2.87222,4.83895 -0.29343,3.46444 -3.58094,6.09125 -2.90451,9.06245 0.2331,-0.52865 0.51178,-1.0061 0.95516,-1.29983 -0.27372,1.10244 -2.11808,5.91138 -0.9766,4.11597 0.73819,-2.29442 2.51392,-5.00756 2.88311,-6.24709 0.0956,0.57847 0.5218,0.34802 0.944,0.10787 -1.00396,2.00092 -1.24124,4.08587 0.44741,3.33904 -0.0618,1.07212 -2.60886,1.77011 -0.96916,3.17774 1.20547,-2.46562 0.4756,2.12893 -0.47574,0.41503 0.002,0.88702 -1.58839,3.64194 -0.49374,2.76219 0.23361,-0.52888 0.51181,-1.00656 0.9552,-1.3001 0.0755,0.71125 -0.18182,1.71259 0.45758,1.93086 0.34502,-0.22215 -1.5874,4.39362 -1.92776,4.94699 0.055,-0.3676 1.57175,-1.24444 1.42021,-0.30764 -0.30711,1.19459 -0.0868,2.84876 1.40608,1.56999 -4.70624,6.46408 -2.86819,18.2199 -4.91837,25.27222 0.81129,0.27813 1.21584,-0.55805 1.41632,0.16182 -3.7647,7.32588 2.3957,19.21038 4.51863,27.28984 0.62858,-1.22046 -0.12236,6.0208 0.41521,7.56336 -1.44833,-3.65951 -6.80113,-7.46461 -6.06748,-10.08773 -0.10363,0.51564 -0.52907,0.67096 -0.95113,0.83103 -1.36187,-1.9198 -3.02233,-3.5774 -4.21065,-5.64812 1.07466,0.18613 1.80779,3.0344 2.8224,1.7313 -1.3147,-0.63975 0.23684,-2.72195 0.95472,-1.29986 -2.13952,-5.12079 -4.66285,-10.52773 -4.13507,-15.50292 -3.6e-4,0.26012 -0.38645,0.48909 -0.47186,-0.0539 0.80039,-0.0984 1.597,-2.57374 0.49682,-3.23168 0.12375,1.08492 -0.12722,1.75146 -0.95873,1.76971 0.38677,-4.37764 -1.17702,-7.05254 -1.81012,-10.54049 0.96929,0.52232 2.12974,-0.9746 0.95518,-1.30027 -5.6e-4,0.26103 -0.38645,0.48908 -0.47217,-0.0539 1.37244,-14.05981 -0.84759,-24.33369 0.28197,-37.07523 2.88574,-6.02 4.71631,-15.7172 11.01733,-19.40904 2.77435,-1.62552 6.5415,-5.81987 9.03934,-7.89186 6.21607,-5.15702 23.49236,-11.23732 32.67385,-8.48023 1.99072,-0.46394 1.99068,-0.68575 3.77761,0.43149 10.56834,-3.74817 21.91859,6.59146 30.17758,9.08335 5.62482,5.02314 11.53949,8.98638 15.94669,15.91254 0.12897,-0.64568 1.03973,-0.4166 1.42426,-0.77698 1.22005,2.66484 2.57719,5.2079 4.6716,7.10967 7.92403,9.96414 6.30757,30.8177 6.26453,46.27844 -0.47362,-0.0533 -0.55924,-0.44474 -0.94189,-0.5779 -8.9e-4,10.31659 -1.0115,19.65822 -1.63633,28.93569 -0.65091,9.64214 -8.4189,15.38765 -8.68511,23.43355 0.091,-1.63399 -0.10237,-3.01868 -0.91686,-3.86284 -0.66171,0.52224 -0.22233,2.27551 -1.43418,2.18508 -0.22846,-0.94542 1.05236,-2.87732 0.0142,-1.87713 -1.66471,3.50383 -2.67284,7.74214 -4.3385,11.2471 5.04224,2.41415 -2.97883,5.56298 -0.0643,8.44731 -3.42758,6.15759 -0.29022,14.95624 -8.0987,8.46947 3.03513,4.1891 -0.80733,3.98092 -0.98295,5.05443 11.21325,5.1641 -57.77176,57.39803 -72.32743,-26.80762 z m -1.2879,-112.18232 c -1.01494,3.54856 2.51249,-1.51112 1.43449,-2.18409 -0.44206,0.69488 -1.28664,1.66779 -1.43449,2.18409 z m -8.17368,18.32496 c 1.28875,-1.76307 2.46821,-5.40897 1.93488,-5.88507 -1.02409,2.20227 -2.07181,3.95962 -1.93488,5.88507 z m -1.44845,4.06221 c 0.10846,-0.35261 0.0195,-0.92428 0.47931,-0.88494 0.6398,-5.26388 -1.37198,-2.66497 -0.47265,-0.054 -0.47578,-0.0496 -0.60019,0.75526 -0.007,0.93892 z m -1.9248,4.47731 c 0.23638,-1.18372 1.92989,-3.17267 0.97677,-4.11592 -0.18541,1.24063 -2.05774,3.03009 -0.97677,4.11592 z m 93.34768,91.92337 c -0.002,0.31234 -0.005,0.62556 -0.007,0.93838 0.28835,0.0596 0.55844,0.13408 0.46953,0.52332 0.3143,0.0354 0.62938,0.0719 0.944,0.10787 0.029,-0.28324 0.0743,-0.54805 0.47637,-0.41528 0.003,-0.31279 0.005,-0.62557 0.007,-0.9384 -0.28799,-0.0601 -0.55842,-0.13458 -0.46919,-0.52374 -0.31463,-0.0364 -0.62972,-0.072 -0.94402,-0.10787 -0.0287,0.28329 -0.0746,0.548 -0.47669,0.41572 z m -10.06543,18.57777 c 2.06813,-2.42397 3.44745,-5.6151 4.32488,-9.3699 0.64948,2.4838 2.02669,-2.52606 1.91036,-2.59962 0.022,0.49609 0.60129,0.43757 0.47494,-0.41588 -0.0396,-1.6688 -1.56865,0.81888 -1.41181,-0.63064 0.26199,0.0309 0.53876,-0.31886 0.003,-0.46948 -1.2983,4.35318 -9.38457,7.75132 -5.30194,13.48548 z m -60.39333,-13.00455 c 1.3243,1.882 2.00262,0.41018 1.3952,2.97765 0.67289,0.18916 0.78996,0.86386 1.40918,1.10095 -0.18142,-2.2811 -1.29888,-0.50232 -0.44711,-3.33902 -2.0934,0.32391 -0.5652,-1.99955 -1.40609,-1.57 -0.0109,0.61863 -0.83096,0.3344 -0.95118,0.83042 z m 3.75957,2.77834 c 0.0288,-0.28326 0.0746,-0.54752 0.47542,-0.41586 1.00114,2.10882 -1.98749,2.1382 -0.96589,2.70827 0.94876,-1.03151 2.01127,1.02279 2.3684,-0.66856 -0.56976,-0.16497 -0.28675,-0.55494 0.007,-0.93915 -0.99611,-0.55271 -2.56242,-2.42631 -1.88508,-0.68468 z M 278.77341,429.45723 c 1.07847,0.67269 -2.4499,5.73259 -1.43449,2.18459 0.14786,-0.51682 0.99243,-1.48971 1.43449,-2.18459 z m -7.67283,14.62401 c 0.53319,0.4761 -0.64659,4.12243 -1.93534,5.88504 -0.13697,-1.92592 0.9108,-3.68281 1.93534,-5.88504 z m -3.37665,9.00837 c -0.89936,-2.61097 1.11165,-5.20951 0.47218,0.0539 -0.45945,-0.0399 -0.37084,0.53264 -0.47977,0.8852 -0.5926,-0.18387 -0.46866,-0.98779 0.008,-0.93913 z m -0.95516,1.30028 c 0.95312,0.94324 -0.74039,2.93267 -0.97677,4.11591 -1.08098,-1.08583 0.79136,-2.87482 0.97677,-4.11591 z m 39.93279,31.33537 c -0.35248,0.79491 -0.85927,-0.031 -1.41678,-0.16185 0.67261,0.90266 0.42514,1.11888 -0.9516,0.83039 0.89366,1.61007 1.80756,0.49829 3.29455,1.78568 0.0834,0.40882 -0.18745,0.4214 -0.47591,0.41486 -0.40075,-0.132 -0.44699,0.13202 -0.47523,0.41555 -2.0305,-2.99554 -5.25462,-2.64095 -10.36316,-4.47121 0.59436,1.12097 -2.77658,1.22023 -3.30575,-0.37757 -0.5404,1.97233 -7.85146,-1.62419 -8.49207,-1.90968 -2.06005,-0.91763 -3.10395,0.35649 -1.89252,0.2532 -1.62987,0.13881 -3.89387,0.12313 -6.14553,0.23797 1.04882,-2.08587 2.44373,-1.08035 4.26761,-1.86189 -1.39258,-0.08 -1.99334,-0.81403 -3.30885,0.0925 -1.02852,-1.18079 2.32538,-1.48189 2.38578,-3.01545 1.58783,-0.075 4.33227,0.30237 7.56933,-1.01415 3.65291,2.0282 7.5622,2.03362 12.74179,2.3946 1.34272,2.62809 3.66486,1.50741 5.1694,3.87845 -1.91627,-0.11614 0.19752,1.52433 1.39894,2.50867 z m 46.2883,3.40752 c -1.27247,-1.01529 1.07909,0.24439 0.93749,1.04706 0.72271,-1.2052 1.29392,-0.69573 2.37818,-2.07678 0.6386,1.30711 2.4624,1.57972 3.28744,2.72393 0.99954,-0.031 -0.48334,-1.68637 -1.40469,-1.56967 3.79818,0.45932 7.13311,3.51097 7.51222,6.49446 0.33951,1.4842 -1.30361,0.75413 -0.96328,2.23887 -0.80371,0.0807 -0.88815,-0.46831 -0.93688,-1.04652 -1.28543,0.27968 0.46856,1.69911 0.45449,2.40063 -2.01133,-0.0906 -5.41103,-4.96482 -7.53378,-3.67909 -6.57311,-1.83337 -17.49256,-1.60572 -23.1554,-0.29644 0.99705,-1.54293 0.0222,-0.85732 -0.93331,-1.51598 0.29391,-0.38378 0.57645,-0.77366 0.007,-0.93824 0.71741,-0.54941 4.55501,0.31343 2.3791,-2.07714 0.17161,-0.59671 0.83644,-0.64317 0.95473,-1.2994 0.4418,0.44887 0.30409,1.19141 0.45084,2.86931 0.31464,0.036 0.63018,0.072 0.94494,0.10793 0.74045,-0.0815 -0.40716,-0.87345 0.47853,-0.88442 -0.0863,-0.544 -0.47127,-0.31541 -0.4714,-0.0539 -1.76759,-1.85294 2.39842,-1.0809 1.44395,-3.59288 0.93364,1.24388 0.7426,0.55684 2.35414,1.20796 0.18047,-0.77898 -0.36114,-0.92704 -0.93735,-1.04612 3.17042,0.97408 8.08977,-0.36821 11.32982,1.76378 0.70185,-0.125 -0.18266,-0.62269 0.0103,-1.40799 0.96123,0.24755 0.91545,1.37554 1.87745,1.62367 -0.087,-0.39031 -0.47048,-0.52219 -0.46516,-0.99313 z m -51.56477,6.79277 c -0.14738,6.51653 -10.74358,6.46674 -9.91226,-1.60192 -2.94074,0.26629 -3.64369,1.89436 -5.68796,2.16845 0.74006,1.87785 -0.53392,1.75826 -0.0179,2.34638 -0.094,0.52295 -0.47556,0.20725 -0.47185,-0.0539 -0.77836,0.4676 -1.2374,-0.96157 -2.83344,-0.32364 -0.69918,-0.28505 0.19085,-0.57914 0.0103,-1.40725 -1.88365,0.42105 -3.58351,0.20449 -3.28387,-3.19367 1.79545,2.31884 5.00369,-0.67492 9.45827,-0.79841 7.39627,-0.20556 16.66347,1.53228 19.79968,6.48876 -2.59182,-1.51733 0.0329,0.83768 -0.0179,2.34686 -0.78645,-0.0897 -1.57432,-0.17978 -2.36079,-0.26964 -0.13576,-1.09914 1.36796,-0.36549 1.42702,-1.24638 -1.97246,-1.54134 -3.17157,-3.75771 -6.10983,-4.45568 z m 33.96494,8.10674 c -1.39677,0.2494 1.09138,0.82778 0.45838,1.93139 -0.3785,-0.36907 -1.28728,-0.87796 -1.41664,-0.16184 1.22743,-11.94707 22.94651,-0.90426 29.31149,-1.34929 -1.59204,-0.77049 -1.43873,-2.51851 0.47945,-0.88429 0.003,-0.31313 0.005,-0.62558 0.007,-0.93871 -0.18972,1.70548 1.50658,1.63162 -0.0179,2.34687 0.25888,0.6075 1.82965,-0.14103 1.40284,2.03882 -0.64496,-0.98244 -2.14128,-1.76391 -2.36485,0.19974 0.4587,0.0381 0.37035,-0.53286 0.479,-0.88453 1.65438,0.31664 -0.86911,1.98062 0.45802,1.93108 -0.92981,-0.53334 -2.11771,0.0922 -3.31968,1.49941 -0.68528,-0.28702 0.0514,-0.4062 0.007,-0.93871 -0.98233,0.16567 -1.61649,0.71963 -1.90274,1.66175 0.0325,-2.41962 -5.28839,1.82061 -6.60746,-1.22443 0.45878,0.0663 0.3621,0.61588 0.46502,0.99264 2.84878,-1.16056 0.28303,-3.65806 2.3965,-4.42358 -1.57549,-0.95486 -2.64784,-2.34973 -4.70375,-2.8862 -0.34592,6.70914 -9.98327,6.6249 -9.44042,-1.548 -2.80867,-0.45422 -3.76004,1.16551 -5.21532,2.22289 -0.13848,0.74229 0.44008,0.85903 0.46159,1.46209 1.27294,1.01535 -1.07909,-0.24392 -0.9378,-1.0471"
           style="fill:#231f20;fill-opacity:1;fill-rule:evenodd;stroke:none"
           id="path10446"
           sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccscccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccc" />
      </g>
    </g>
  </g>
</svg>