File: winetest.svg

package info (click to toggle)
wine 4.0-2
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 209,096 kB
  • sloc: ansic: 2,906,412; perl: 18,817; yacc: 15,629; makefile: 9,134; objc: 6,543; lex: 4,315; python: 1,786; cpp: 1,042; sh: 771; java: 742; xml: 557; awk: 69; cs: 17
file content (1399 lines) | stat: -rw-r--r-- 58,255 bytes parent folder | download | duplicates (13)
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
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
<?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"
   height="272"
   width="632"
   version="1.1"
   id="svg2"
   inkscape:version="0.48.3.1 r9886"
   sodipodi:docname="winetest.svg">
  <metadata
     id="metadata163">
    <rdf:RDF>
      <cc:Work
         rdf:about="">
        <dc:format>image/svg+xml</dc:format>
        <dc:type
           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <sodipodi:namedview
     pagecolor="#ffffff"
     bordercolor="#666666"
     borderopacity="1"
     objecttolerance="10"
     gridtolerance="10"
     guidetolerance="10"
     inkscape:pageopacity="0"
     inkscape:pageshadow="2"
     inkscape:window-width="1264"
     inkscape:window-height="735"
     id="namedview161"
     showgrid="false"
     inkscape:zoom="0.96195652"
     inkscape:cx="184"
     inkscape:cy="32"
     inkscape:window-x="229"
     inkscape:window-y="66"
     inkscape:window-maximized="0"
     inkscape:current-layer="svg2" />
  <defs
     id="defs4">
    <linearGradient
       id="linearGradient11342">
      <stop
         id="stop11344"
         stop-color="#000"
         stop-opacity="0.25098041"
         offset="0" />
      <stop
         id="stop11346"
         stop-color="#000"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <filter
       id="filter3436"
       height="1.2801698"
       width="1.1580106"
       color-interpolation-filters="sRGB"
       y="-0.14008497"
       x="-0.079005308">
      <feGaussianBlur
         id="feGaussianBlur3438"
         stdDeviation="0.3190069" />
    </filter>
    <linearGradient
       id="linearGradient3198">
      <stop
         id="stop3200"
         stop-color="#FFF"
         offset="0" />
      <stop
         id="stop3202"
         stop-color="#FFF"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3090"
       y2="25.5"
       gradientUnits="userSpaceOnUse"
       y1="27.5"
       gradientTransform="translate(-8.0000004,15.967633)"
       x2="20.5"
       x1="16">
      <stop
         id="stop3375"
         stop-color="#000"
         offset="0" />
      <stop
         id="stop3377"
         stop-color="#373737"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3092"
       y2="27"
       gradientUnits="userSpaceOnUse"
       y1="27"
       gradientTransform="translate(-8.0000004,15.967633)"
       x2="21.5"
       x1="16">
      <stop
         id="stop3444"
         stop-color="#000"
         offset="0" />
      <stop
         id="stop3446"
         stop-color="#000"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <filter
       id="filter3391"
       height="1.336"
       width="1.1344"
       color-interpolation-filters="sRGB"
       y="-0.168"
       x="-0.067199998">
      <feGaussianBlur
         id="feGaussianBlur3393"
         stdDeviation="0.14" />
    </filter>
    <radialGradient
       id="radialGradient3137"
       gradientUnits="userSpaceOnUse"
       cx="18"
       cy="14.19"
       r="5.5054998"
       gradientTransform="matrix(1.551329,0,0,0.2811779,-6.282309,21.56066)">
      <stop
         id="stop3454"
         stop-color="#FFF"
         offset="0" />
      <stop
         id="stop3456"
         stop-color="#FFF"
         stop-opacity="0"
         offset="1" />
    </radialGradient>
    <linearGradient
       id="linearGradient3141"
       y2="18.312"
       xlink:href="#linearGradient3198"
       gradientUnits="userSpaceOnUse"
       y1="18.312"
       gradientTransform="matrix(1.551329,0,0,1.5293489,-17.346928,-5.860392)"
       x2="23"
       x1="17.605" />
    <linearGradient
       id="linearGradient3144"
       y2="19"
       xlink:href="#linearGradient3198"
       gradientUnits="userSpaceOnUse"
       y1="46.500999"
       gradientTransform="matrix(0.7719782,0,0,0.7714112,-11.943403,1.1285048)"
       x2="22"
       x1="59.547001" />
    <radialGradient
       id="radialGradient3147"
       gradientUnits="userSpaceOnUse"
       cx="25.017"
       cy="13.192"
       r="9.7512999"
       gradientTransform="matrix(1.9227697,0,0,0.69781448,-25.66573,16.539882)">
      <stop
         id="stop3173"
         stop-color="#fd0000"
         offset="0" />
      <stop
         id="stop3175"
         stop-color="#6a0000"
         offset="1" />
    </radialGradient>
    <linearGradient
       id="linearGradient3149"
       y2="7.1352"
       gradientUnits="userSpaceOnUse"
       y1="15.984"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,8.7089316)"
       x2="22.035999"
       x1="27.216999">
      <stop
         id="stop4404"
         stop-color="#e80000"
         offset="0" />
      <stop
         id="stop4406"
         stop-color="#490000"
         offset="1" />
    </linearGradient>
    <radialGradient
       id="radialGradient3152"
       gradientUnits="userSpaceOnUse"
       cx="26.625"
       cy="26.577"
       r="12.5"
       gradientTransform="matrix(1.4717199,-0.4836227,0.1784028,0.5276254,-21.295808,32.149903)">
      <stop
         id="stop3191"
         stop-color="#e40000"
         offset="0" />
      <stop
         id="stop3193"
         stop-color="#490000"
         offset="1" />
    </radialGradient>
    <linearGradient
       id="linearGradient3155"
       y2="27"
       gradientUnits="userSpaceOnUse"
       y1="33"
       gradientTransform="matrix(1.551329,0,0,1.529349,-18.67392,-4.841787)"
       x2="19"
       x1="29">
      <stop
         id="stop3222"
         stop-color="#373737"
         offset="0" />
      <stop
         id="stop3224"
         stop-color="#FFF"
         offset="1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3158"
       y2="5.0353999"
       xlink:href="#linearGradient3198"
       gradientUnits="userSpaceOnUse"
       y1="12.038"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,33.922637)"
       x2="17.799"
       x1="25.268999" />
    <linearGradient
       id="linearGradient3161"
       y2="9.2770004"
       gradientUnits="userSpaceOnUse"
       y1="19.122"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,33.943191)"
       x2="21.440001"
       x1="29.455">
      <stop
         id="stop3230"
         stop-color="#373737"
         offset="0" />
      <stop
         id="stop3232"
         stop-color="#373737"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <radialGradient
       id="radialGradient3165"
       gradientUnits="userSpaceOnUse"
       cx="27.5"
       cy="22.614"
       r="6.5"
       gradientTransform="matrix(2.3866597,-0.117642,0.1489799,2.9373862,-45.014562,-31.328692)">
      <stop
         id="stop3348"
         stop-color="#737373"
         offset="0" />
      <stop
         id="stop3350"
         stop-color="#000"
         stop-opacity="0"
         offset="1" />
    </radialGradient>
    <radialGradient
       id="radialGradient3169"
       gradientUnits="userSpaceOnUse"
       cx="37.375"
       cy="33.188"
       r="14.625"
       gradientTransform="matrix(0.6310473,0,0,0.15625948,-6.042649,22.941126)">
      <stop
         id="stop4335"
         stop-color="#000"
         offset="0" />
      <stop
         id="stop4337"
         stop-color="#000"
         stop-opacity="0"
         offset="1" />
    </radialGradient>
    <radialGradient
       id="radialGradient3175"
       gradientUnits="userSpaceOnUse"
       cx="21"
       cy="20"
       r="13"
       gradientTransform="matrix(1.118998e-6,2.3076922,-2.3076924,2.3142422e-7,75.179487,-20.461539)">
      <stop
         id="stop12125"
         stop-color="#d3d7cf"
         offset="0" />
      <stop
         id="stop12127"
         stop-color="#babdb6"
         offset="1" />
    </radialGradient>
    <radialGradient
       id="radialGradient3178"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient11342"
       cx="13.75"
       cy="26.75"
       r="0.75"
       gradientTransform="matrix(-3.6041687e-6,-2.9999979,3,-2.4855603e-6,-51.974284,92.489886)" />
    <radialGradient
       id="radialGradient3181"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient11342"
       cx="13.75"
       cy="26.75"
       r="0.75"
       gradientTransform="matrix(3.6041687e-6,-2.9999975,-3,-2.48556e-6,131.02561,92.489876)" />
    <linearGradient
       id="linearGradient3184"
       y2="24"
       gradientUnits="userSpaceOnUse"
       y1="26"
       gradientTransform="matrix(1.5517242,0,0,2.2499997,8.1032502,-5.010146)"
       x2="16.5"
       x1="16.5">
      <stop
         id="stop11358"
         stop-color="#000"
         stop-opacity="0"
         offset="0" />
      <stop
         id="stop11366"
         stop-color="#000"
         stop-opacity="0.25098041"
         offset="0.5" />
      <stop
         id="stop11360"
         stop-color="#2e3436"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <filter
       id="filter3436-1"
       height="1.2801698"
       width="1.1580106"
       color-interpolation-filters="sRGB"
       y="-0.14008497"
       x="-0.079005308">
      <feGaussianBlur
         id="feGaussianBlur3438-1"
         stdDeviation="0.3190069" />
    </filter>
    <filter
       id="filter3391-5"
       height="1.336"
       width="1.1344"
       color-interpolation-filters="sRGB"
       y="-0.168"
       x="-0.067199998">
      <feGaussianBlur
         id="feGaussianBlur3393-9"
         stdDeviation="0.14" />
    </filter>
    <linearGradient
       id="linearGradient3496"
       y2="24"
       gradientUnits="userSpaceOnUse"
       y1="26"
       gradientTransform="matrix(1.0344828,0,0,1.4999998,176.05172,15.774879)"
       x2="16.5"
       x1="16.5">
      <stop
         id="stop11358-9"
         stop-color="#000"
         stop-opacity="0"
         offset="0" />
      <stop
         id="stop11366-0"
         stop-color="#000"
         stop-opacity="0.25098041"
         offset="0.5" />
      <stop
         id="stop11360-8"
         stop-color="#2e3436"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <radialGradient
       id="radialGradient3498"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient11342"
       cx="13.75"
       cy="26.75"
       r="0.75"
       gradientTransform="matrix(-2.4027791e-6,-1.9999986,2,-1.6570402e-6,136.00003,80.7749)" />
    <radialGradient
       id="radialGradient3500"
       gradientUnits="userSpaceOnUse"
       xlink:href="#linearGradient11342"
       cx="13.75"
       cy="26.75"
       r="0.75"
       gradientTransform="matrix(2.4027791e-6,-1.9999984,-2,-1.65704e-6,257.99996,80.774895)" />
    <radialGradient
       id="radialGradient3502"
       gradientUnits="userSpaceOnUse"
       cx="15.5"
       cy="14"
       r="8.5"
       gradientTransform="matrix(3.4167092e-6,2.5300957,-2.1176473,2.6423529e-7,221.14701,-1.441612)">
      <stop
         id="stop10042-6"
         stop-color="#d3d7cf"
         offset="0" />
      <stop
         id="stop10044-3"
         stop-color="#babdb6"
         offset="1" />
    </radialGradient>
    <radialGradient
       id="radialGradient3504"
       gradientUnits="userSpaceOnUse"
       cx="37.375"
       cy="33.188"
       r="14.625"
       gradientTransform="matrix(0.4206982,0,0,0.10417298,167.09958,34.409845)">
      <stop
         id="stop4335-5"
         stop-color="#000"
         offset="0" />
      <stop
         id="stop4337-6"
         stop-color="#000"
         stop-opacity="0"
         offset="1" />
    </radialGradient>
    <radialGradient
       id="radialGradient3506"
       gradientUnits="userSpaceOnUse"
       cx="27.5"
       cy="22.614"
       r="6.5"
       gradientTransform="matrix(1.5911065,-0.078428,0.09931994,1.9582576,141.11831,-1.770035)">
      <stop
         id="stop3348-9"
         stop-color="#737373"
         offset="0" />
      <stop
         id="stop3350-8"
         stop-color="#000"
         stop-opacity="0"
         offset="1" />
    </radialGradient>
    <linearGradient
       id="linearGradient3508"
       y2="9.2770004"
       gradientUnits="userSpaceOnUse"
       y1="14.243"
       gradientTransform="matrix(1.2744752,0,0,1.0288787,154.18707,40.978858)"
       x2="21.440001"
       x1="27.681">
      <stop
         id="stop3230-8"
         stop-color="#373737"
         offset="0" />
      <stop
         id="stop3232-1"
         stop-color="#373737"
         stop-opacity="0"
         offset="1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3510"
       y2="5.0353999"
       xlink:href="#linearGradient3198"
       gradientUnits="userSpaceOnUse"
       y1="12.038"
       gradientTransform="matrix(1.2818465,0,0,0.9398128,154.01753,41.958583)"
       x2="17.799"
       x1="25.268999" />
    <linearGradient
       id="linearGradient3512"
       y2="27"
       gradientUnits="userSpaceOnUse"
       y1="33"
       gradientTransform="matrix(1.0342194,0,0,1.0195661,158.67874,15.887903)"
       x2="19"
       x1="29">
      <stop
         id="stop3222-4"
         stop-color="#373737"
         offset="0" />
      <stop
         id="stop3224-4"
         stop-color="#FFF"
         offset="1" />
    </linearGradient>
    <radialGradient
       id="radialGradient3514"
       gradientUnits="userSpaceOnUse"
       cx="26.625"
       cy="26.577"
       r="12.5"
       gradientTransform="matrix(0.9811466,-0.3224151,0.1189352,0.3517503,156.93081,40.549031)">
      <stop
         id="stop3191-7"
         stop-color="#e40000"
         offset="0" />
      <stop
         id="stop3193-6"
         stop-color="#490000"
         offset="1" />
    </radialGradient>
    <radialGradient
       id="radialGradient3516"
       gradientUnits="userSpaceOnUse"
       cx="25.017"
       cy="13.192"
       r="9.7512999"
       gradientTransform="matrix(1.2818465,0,0,0.46520969,154.01753,30.14235)">
      <stop
         id="stop3173-1"
         stop-color="#fd0000"
         offset="0" />
      <stop
         id="stop3175-7"
         stop-color="#6a0000"
         offset="1" />
    </radialGradient>
    <linearGradient
       id="linearGradient3518"
       y2="7.1352"
       gradientUnits="userSpaceOnUse"
       y1="15.984"
       gradientTransform="matrix(1.2818465,0,0,0.9398128,154.01753,24.921716)"
       x2="22.035999"
       x1="27.216999">
      <stop
         id="stop4404-9"
         stop-color="#e80000"
         offset="0" />
      <stop
         id="stop4406-6"
         stop-color="#490000"
         offset="1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3520"
       y2="19"
       xlink:href="#linearGradient3198"
       gradientUnits="userSpaceOnUse"
       y1="25.27"
       gradientTransform="matrix(1.0293043,0,0,1.0285483,158.8315,15.939672)"
       x2="22"
       x1="30.375999" />
    <linearGradient
       id="linearGradient3522"
       y2="18.312"
       xlink:href="#linearGradient3198"
       gradientUnits="userSpaceOnUse"
       y1="18.312"
       gradientTransform="matrix(1.0342194,0,0,1.019566,159.5634,15.208833)"
       x2="23"
       x1="17.605" />
    <radialGradient
       id="radialGradient3524"
       gradientUnits="userSpaceOnUse"
       cx="18"
       cy="14.19"
       r="5.5054998"
       gradientTransform="matrix(1.0342194,0,0,0.1874519,166.93981,33.489536)">
      <stop
         id="stop3454-1"
         stop-color="#FFF"
         offset="0" />
      <stop
         id="stop3456-7"
         stop-color="#FFF"
         stop-opacity="0"
         offset="1" />
    </radialGradient>
    <radialGradient
       id="radialGradient3093"
       gradientUnits="userSpaceOnUse"
       cx="16.882999"
       cy="14.472"
       r="8.5"
       gradientTransform="matrix(3.4167092e-6,2.5300957,-2.1176473,2.6423529e-7,328.14701,1.783514)">
      <stop
         id="stop10042-3-0"
         stop-color="#eeeeec"
         offset="0" />
      <stop
         id="stop10044-0-5"
         stop-color="#d3d7cf"
         offset="1" />
    </radialGradient>
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3184"
       id="linearGradient3188"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.5517242,0,0,2.2499997,8.1032502,-5.010146)"
       x1="16.5"
       y1="26"
       x2="16.5"
       y2="24" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient11342"
       id="radialGradient3190"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(3.6041687e-6,-2.9999975,-3,-2.48556e-6,131.02561,92.489876)"
       cx="13.75"
       cy="26.75"
       r="0.75" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#linearGradient11342"
       id="radialGradient3192"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(-3.6041687e-6,-2.9999979,3,-2.4855603e-6,-51.974284,92.489886)"
       cx="13.75"
       cy="26.75"
       r="0.75" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3175"
       id="radialGradient3194"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.118998e-6,2.3076922,-2.3076924,2.3142422e-7,75.179487,-20.461539)"
       cx="21"
       cy="20"
       r="13" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3169"
       id="radialGradient3196"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.6310473,0,0,0.15625948,-6.042649,22.941126)"
       cx="37.375"
       cy="33.188"
       r="14.625" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3165"
       id="radialGradient3198"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.3866597,-0.117642,0.1489799,2.9373862,-45.014562,-31.328692)"
       cx="27.5"
       cy="22.614"
       r="6.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3161"
       id="linearGradient3200"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,33.943191)"
       x1="29.455"
       y1="19.122"
       x2="21.440001"
       y2="9.2770004" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3198"
       id="linearGradient3202"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,33.922637)"
       x1="25.268999"
       y1="12.038"
       x2="17.799"
       y2="5.0353999" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3155"
       id="linearGradient3204"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.551329,0,0,1.529349,-18.67392,-4.841787)"
       x1="29"
       y1="33"
       x2="19"
       y2="27" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3152"
       id="radialGradient3206"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4717199,-0.4836227,0.1784028,0.5276254,-21.295808,32.149903)"
       cx="26.625"
       cy="26.577"
       r="12.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3147"
       id="radialGradient3208"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9227697,0,0,0.69781448,-25.66573,16.539882)"
       cx="25.017"
       cy="13.192"
       r="9.7512999" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient3210"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,8.7089316)"
       x1="27.216999"
       y1="15.984"
       x2="22.035999"
       y2="7.1352" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3198"
       id="linearGradient3212"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.7719782,0,0,0.7714112,-11.943403,1.1285048)"
       x1="59.547001"
       y1="46.500999"
       x2="22"
       y2="19" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3198"
       id="linearGradient3214"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.551329,0,0,1.5293489,-17.346928,-5.860392)"
       x1="17.605"
       y1="18.312"
       x2="23"
       y2="18.312" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3137"
       id="radialGradient3216"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.551329,0,0,0.2811779,-6.282309,21.56066)"
       cx="18"
       cy="14.19"
       r="5.5054998" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3090"
       id="linearGradient3218"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-8.0000004,15.967633)"
       x1="16"
       y1="27.5"
       x2="20.5"
       y2="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3092"
       id="linearGradient3220"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-8.0000004,15.967633)"
       x1="16"
       y1="27"
       x2="21.5"
       y2="27" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3184"
       id="linearGradient3222"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.5517242,0,0,2.2499997,8.1032502,-5.010146)"
       x1="16.5"
       y1="26"
       x2="16.5"
       y2="24" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3175"
       id="radialGradient3224"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.118998e-6,2.3076922,-2.3076924,2.3142422e-7,75.179487,-20.461539)"
       cx="21"
       cy="20"
       r="13" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3169"
       id="radialGradient3226"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(0.6310473,0,0,0.15625948,-6.042649,22.941126)"
       cx="37.375"
       cy="33.188"
       r="14.625" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3165"
       id="radialGradient3228"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(2.3866597,-0.117642,0.1489799,2.9373862,-45.014562,-31.328692)"
       cx="27.5"
       cy="22.614"
       r="6.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3161"
       id="linearGradient3230"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,33.943191)"
       x1="29.455"
       y1="19.122"
       x2="21.440001"
       y2="9.2770004" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3155"
       id="linearGradient3232"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.551329,0,0,1.529349,-18.67392,-4.841787)"
       x1="29"
       y1="33"
       x2="19"
       y2="27" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3152"
       id="radialGradient3234"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.4717199,-0.4836227,0.1784028,0.5276254,-21.295808,32.149903)"
       cx="26.625"
       cy="26.577"
       r="12.5" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3147"
       id="radialGradient3236"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9227697,0,0,0.69781448,-25.66573,16.539882)"
       cx="25.017"
       cy="13.192"
       r="9.7512999" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3149"
       id="linearGradient3238"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.9227697,0,0,1.4097191,-25.66573,8.7089316)"
       x1="27.216999"
       y1="15.984"
       x2="22.035999"
       y2="7.1352" />
    <radialGradient
       inkscape:collect="always"
       xlink:href="#radialGradient3137"
       id="radialGradient3240"
       gradientUnits="userSpaceOnUse"
       gradientTransform="matrix(1.551329,0,0,0.2811779,-6.282309,21.56066)"
       cx="18"
       cy="14.19"
       r="5.5054998" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3090"
       id="linearGradient3242"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-8.0000004,15.967633)"
       x1="16"
       y1="27.5"
       x2="20.5"
       y2="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3092"
       id="linearGradient3244"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-8.0000004,15.967633)"
       x1="16"
       y1="27"
       x2="21.5"
       y2="27" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3090"
       id="linearGradient3246"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-8.0000004,15.967633)"
       x1="16"
       y1="27.5"
       x2="20.5"
       y2="25.5" />
    <linearGradient
       inkscape:collect="always"
       xlink:href="#linearGradient3092"
       id="linearGradient3248"
       gradientUnits="userSpaceOnUse"
       gradientTransform="translate(-8.0000004,15.967633)"
       x1="16"
       y1="27"
       x2="21.5"
       y2="27" />
  </defs>
  <image
     id="icon:16-4"
     xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQBAMAAADt3eJSAAAAAXNSR0IArs4c6QAAADBQTFRFAAAA fwAAAH8Af38AAAB/fwB/AH9/wMDAf39//wAAAP8A//8AAAD//wD/AP//////HPn1FAAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwUEQUV7iAT ZwAAAFdJREFUCNdVzTEOwDAIA0ArU5+BOlV5Xpd0jLKQdzDyyhiY6ulkgQz80wQ702/oYF43aBYu 0MkLFtAl6P4Q3Vh8AWcRWO52BSZfCs1QgBRyIhATg6jRjQO3Kio66tQ5ygAAAABJRU5ErkJggg== "
     height="16"
     width="16"
     y="248"
     x="344" />
  <image
     id="icon:16-8"
     xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAAAXNSR0IArs4c6QAAASBQTFRFPXgF PXkFPXoFPnoFQX4HQX8HTn8gS4IVRYULTYEcSIkMW384SowNZ4FOTZAPV40kUJQQU5UVUZYRdoVn VJkTVZoTf4h3WJ8Vg4l8homBbphFiIqFXaYXi42IXqYYX6gaYaoZkJKNkZKOkpOPZbEcZbIcbb0g cMIhdMYkeMwlec4mc9IWdNIXdNMXdNMYddMYddQZe9EndtQZdtQad9UbfNMneNYdeNYefNQnetYf etYgetYhe9chfdYme9cifdYne9cjftYpftclftcmrcKZxdK4z9fI2t3W2t3X297Y3N7Y3N/Z3d/a 3eDa3uDb3+Hc4OLd4OLe4ePd4ePe4uPf4+Tg5OXh5ebi5efj5+jk6Onl6Onm6ern6+vo6+zp7e3q EMrRgAAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJ TUUH2QwUEQQyUjGXTQAAAJVJREFUGNN9j7sSgkAMRfMJxEomQ4EWFvsHakMoFBEfgCA+8P//wmzC jp23yMw5s7mTBfgbRICEQuIYeYVA4/h+PYe+q2tkl4n4LKcXxiJo2jeWFYqiwHMVyDwzrsjE2rEy mXgQbpz1H1UMBLh1ue8vVdxlovUfVHR+egYqVNwW4fZ0r6Jtm+Z6OZ+qsth58fucJAH4AtdHHmN2 JdaVAAAAAElFTkSuQmCC "
     height="16"
     width="16"
     y="248"
     x="320" />
  <image
     id="icon:32-4"
     xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgBAMAAACBVGfHAAAAAXNSR0IArs4c6QAAADBQTFRFf38A AAAAfwAAAH8AAAB/fwB/AH9/wMDAf39//wAAAP8A//8AAAD//wD/AP//////ZbHcXQAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwUEQonoW9e KAAAAORJREFUKM99kSEPgzAQhZtgzu4v1Kw43BZ+1iYO14aJ1i3BoXH9e4jOde8oorBkLxXcl3e9 d0WpXwWorolzZleBd2K2nxpk6ASsHY4gpQqQGLi6lcTAqQYJObyrYg1aa7NHa5Qar495nidTQN8B iAMW0SsuajQFSLzcx06RDqgnz9ATBgCDevLS0ce7AK3bVsvcJi6y0ygdJnUYEW8CaNSzCesiBr9t jSZHuB+nAIRVtMYFI3ZATlHqIzLUQEIegMMaR4BFD2BbrgD5osSbBAT7uYSQiwR4vCEPYdfmgDX8 +9knfQG/x5cKCT7icwAAAABJRU5ErkJggg== "
     height="32"
     width="32"
     y="232"
     x="256" />
  <image
     id="icon:32-8"
     xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAAXNSR0IArs4c6QAAAvpQTFRFaAAA SwAAXwAAWgIATAcCaQAAagABZQMAbQEAcwAAdwAAfgABUg0KgwIAWQ0PWw4JhAMAjQEAewYIkwAA lAABmAAEnwAAoQACogAAfQoLmAMNrAABVRgVrwAApQQApQQFmwcHuQAAuwIBzAAClRAMaBwa0QAA 0QAGxwQA2QAB3AAD3QEEkBcXdyIetREXciYnyg8UqR4feSssOz06bzAvPkA9ni8urSwpkTk3ujAw yy4tkEA+bk9QpERDs0NE4jw6gFhWx0ZItUxNZWZkQ3sFZmdlRHwHgWFiP38KR34KQIALylBTQ4IP bG5rT4AbhGlof2toSIYGRoYTUYIdSYcHcHJvcXNwcnRxomtt2V5fgXZ2m3Fvenx5jXl2hnt7qXJ0 hH9+3Ghqy21shId4hIaDlYKEg4l/hoiF13Jzh4mGiomBjYiHiIqHpYKDjomIiYuIpoOElIiIkIqJ ioyJi42KkoyLnomGjI6Lj46GpIiHk42MjY+M33l6jpCNlI+Nj5GOlZCOkJKPlpGPkZOQlJOLkpSR k5WSsI2OyIeFmZSSlJaT2oODvouLlZeUuo6MlpiVmJqXmpuYm52ZypCSnJ6ba7oWrZmcnZ+c2I+Q o56dnqCdn6GexZmWoaOgacEdoqSh5ZKQrqGio6WipKajq6WkpaekrKalpqilp6mmqKqnqauoqqyp yKSlrK6rra+s6p+grrCtsLKusbOveNQcsrSxxq+sedUds7WyftMq5amrfNghtri1t7m21bGyftok f9sm5bCvgNwn1La1u726gd0pvL67g94qwL+2wcC3vsG9heEtwsG5vMO4wMK+w8K6xMS7wMa8xcW8 wce9x8a9wsi+yMe+xsjFyci/x8nGysnAy8rBxs3Cx87D0MvJzs3Ezc/Ly9HGztDMzNLHzdPJ0NLP ztTK0tTRz9bL09XS0NfM1NbT1dfU2dvX2tzZ293a3d/c3uDd3+He4OLf4eTg4+Xh5Obj5efk5ujl 5+nm6Orn6evo6uzp8/Xy+vz5I1RMxAAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMA AA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwUER8tdg9RIgAAAlVJREFUOMtjYCACzGptrK+vb2ydhUO+ sXXFhj1H92xY0dqMXcHEiRNnL1q+aPbE6ROxyi/d+OPXj++fv3z5/nndUqwGbH/44cXZLWtXrdqw GqsRzUdffbi/ZfncWbOnb8LqiP6Tb95cWzyxt62xcW0XVk+e/PDq5MTG6vycnEXYrFi59Ojnuwv9 HdwDohL6Z6/EVDA31ehQj62onLiClIrZtLmokn5A3KRvfqDbSkNNS1tbW31yE4p84DwXBoYqfou9 HXaOiTUZ3pbyc0pzkIDPsWNTgxmaZHi2FqgysbOysnIIren8+fPHj+/fv3z58vmzz65duzwZGBbb MEbnmjCzcnILCDq17375/NGjRw/u3bl1y2vXrmMeIIuKWPgirLkEhMXl9HYWvnjeAjXfBSgflANS MD9OV1JHWFxW0WBBWfmPRzkQ97kB5QM/QjgzY20NpRWV7ddXzsz58SgELOayedexkItQBQzLSuOT Imf0VS1hyPkRsgOkwmUHUD4HrgDojoaGqiIgnROy4xhQBVieIec8QgFDTEo4iMr6AlYBlkdVUL24 BETlfLkNUgGWZ8g59wGhoHhiMVQB0JbNYHlUBdWNFTAFDBB3AjmnkRS05jdCFNwEikHkGXLOvEco mJjeDxb7fL0+JzktDRyWtSdgClbPnVifXluSOR2o4MqVK1cvXb5w8fy50yeOQxU0Lr/2cJ2zsWlY cWbOh88Q8PHjhw/v37+BKJjycHl5Sqirb/3fuTlooBqsoGTts9cPb7z+/edwPo7M2VVbP3HxxPrq LgZyAACZPDLgOzCnrAAAAABJRU5ErkJggg== "
     height="32"
     width="32"
     y="232"
     x="216" />
  <image
     id="icon:48-4"
     xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwBAMAAAClLOS0AAAAAXNSR0IArs4c6QAAADBQTFRFf38A AAAAfwAAAH8AAAB/fwB/AH9/wMDAf39//wAAAP8A//8AAAD//wD/AP//////ZbHcXQAAAAF0Uk5T AEDm2GYAAAABYktHRACIBR1IAAAACXBIWXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwUEQIU1ma1 NgAAAU1JREFUOMutlKFyhDAQhjODWdtXiOFwuM6c6Tv1xMZBMazrTE0HfY7Xq0gd3d0klEtCVX+Z Lx9ZNgvG/BGS1NZRUhLATYJjDt69GoMrwBZSB347Nfx3DQycquE5uQFRwLxeiMIwlMBvJwZqs+Yc OCQraTNAFqdu4VgqgawvHwfQ9AFYxFdr6TfXewQa2lK+1rU3YOdwuJ0x5foALju4rSs/CqZLLHd2 6QQRjJlsAM7H/jYsjFqvpPukBFh4EQBS1LK4BEQIDWWlW1qCCFh4DgDIdi2NEYgwxysArmQ04G99 EPoEjE4oeGmECCYD2gh9hx2AXJKAuwo58Lw7vPQOjFwFH76uKhTA8X7tUgHCCRXANfV10KhQAaZ/ AOHjZJBmIQCgwZOs+f3OUcHMw/v2ROhywN8HOh4Etx2SDNnlDgNHekYYGxrLP8DZL+O/8gOtlD2R NYHDGAAAAABJRU5ErkJggg== "
     height="48"
     width="48"
     y="216"
     x="120" />
  <image
     id="icon:48-8"
     xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAMAAABg3Am1AAAAAXNSR0IArs4c6QAAAv1QTFRFXiAc TAAAUAIAVwABWgIAYQACTAcCYwEAaQABcwAAbgIAdwAAfwACGhwaggEAigACjAAAlAABjgIGmQEA oAABrAABpAMAiQsDtgAAkQoQsAMAwgAAuwIBXxsbzQADzwAAhRUWxwQAxwQJ2QABjxYWYCMjMDIv aiQj4AkGphkWeyYmbC0t4Q4Suxsb0RoZfzExoiopdzY15hkelzExfzg65xwlyCoq4SMpekBA0iop 4yYlmzw8ekZDhUNBzTE0UlRRgExPiE1NflBRxj0/kk9MXV9coU9SglpYfFxdPncN0EZGn1RUZWZk RHwHjV5fSXoTlV5bimFfg2NksldXR38MUHsfQoIN4U1Ka21qR4AZgmdmzVNVyldVbnBt2VZWUoQe S4kLc3VyVIcqp2logHV1UI4SjnNyaIJRXYo1pm9yv2ll42BknnRyXI8xpXR0g359foB9aI45Zo5A 42ZneYZpnHp7tHR0f4ZwV5sWapJEsHh6q3p6hIaDfol40XJxhYh5V6EPg4l/cZRNhIqAiIqHpYKD 2XR1vX17lIiIioyJXacYjI6LtYODko2MmIyMjpCNlZCPvoWHkJKPxYSCZK0TlJOL1IOBk5WSzYWG 5n+AmZSTYrIZso+QoJSVlpiV8IB+r5OSmZuXZ7ggm52awJORvpSWa7oW2I6PnqCdn6Gelal3sJ2f 3JKTkax4cL8doqSh74+SwJ2eqaSj2peVpKajbsUjy56b0Z2cp6mmcsgZqqyp4Z2c9Zub3aKkrrCt eM4jzaipbtQY46aieNQbsrSxp7ubftMqubSzrbqbyLGue9cgz7Gwtri1ftok27Czubu45bCwgNwn xbm5tcCuu7+ugt4qv761vb+8usG2tMafheAtvsG9wsG5wcO/vsW6xMS7wsTBxsW89rm7xcfEw8m+ yMrHy8rBxczBwdG3zM7LydDF0M/H0tHIzdPJytXC0NLPz9bL2dPS09XS1tjV1dzR2dvY3N/b3+He 4uTh5efk6Orn7O7r8fPw9Pfz+vz5wkAtYgAAAAF0Uk5TAEDm2GYAAAABYktHRACIBR1IAAAACXBI WXMAAA3XAAAN1wFCKJt4AAAAB3RJTUUH2QwUEDgzVwe0EwAABKVJREFUSMfVVn1MG2UYP5xDBg4o DISBsM7MqCx+TIOoWRaZmk1FNCKOZTiyD0Wjgk4Us2Zu66nr6tl6W9fkNB1ddRRdQG+gWJWJnXda gUqJgFcohaPMQLG9Iv2iMT7XDyiodPE/f29679fv9z7v87xfRZD/BI1KieMyGa5UaS6HLpMTJEnS NA1fFS6LyVcSHUajeXjADMlI0wQeS0DMcTA2EUy6i64AEVPAeQKBwJ88AoE5jlPFEmhNrJ/jOJMZ vKA7dJw2Br+1fYDzz7rYLiCD1+QA2bK8gOwwct5ZhxXYLU3aJm0HrY7hAm1ywZRoskWjIXjY5DEE VpPH42B1JEGoCBzHCasyhs/DA36Pw0QCG5OgGCahl49rO2ky+jmXkSAwFK0R1dag7U3L+6yzmvwu 0yfbim8rKt62c19tDUEuu6G05GP39nx08IGrUwSCtOzstLTs+0zLLh1RkPh4z/lDW3PXr8/LF+bl CXMzvviXML0e/B67SXDo53NvFQqF+dfdsHHTprvvvLkR+0d+xeEKPpNvTnyv5/ypXU+d/npsbOzT Aw8WZpwA9/+G10oopplX4EVxj/704avrrhGkp6cL0pKTkxLekbv9QfiC8AI8v1dcYLqZL0FBFMcX /NhQd21cfPyKK69KSFyVlPQt4XQ6p6cnJ6cmJy9dmpiYGB/vA77ewNS/hCDqpzfENXxQVxC3YiWQ k5NTUm/9jLDbndN2+7R9yj4VVPRVtDH6TuZkNe+EtDhuQ8OLm1euAnpqavqaNY3H2BmXMjJ3iQRF j5Q2M3o9c/KJUFx3Fl1xx7MPAVuQnpmZkbX1c5nPaUej47M7yD/zgjhUxR65JWHd7SlAX5uVk1P4 DSbxuRYJ9pzh+c17/pCEG7C996SkAn1tjjD/ye8wROxzOaME1WcpQyfTtnvQPd+I7X3uxsysXGH+ xtON75KIxDc5tSCofp8x6Jm20r5R70IjVndqV2HuXQfOvcnvCrHfMf3KPP84xKf3QsUb1hF3lFkt 9vzbX504KA8eBbDww/byUMfLx/nxqVIEtViiBYiaIORyNHTWUN/35RRTxRePHmaoTooqg0br6CIB UlmL7tsRKqK/lVFMLwWKo/WMoZsylPCNI4stIGo1hoWvVfTXcsbQ2ctUVddTvZAHNylqHlksIDUk Hr7CUO/HVTATA3MW5t9NlYQaR4YWCxBcKw2XFF4bKAywWN2d1C9l4VGWWkCkREQg8k3YnimH1dWD lTAfojS4RCAhInUUBBKEt2EIxSpkYemUYFtG+jy2UQWClMOJmecj6NBSC1JRpK5w21gR5Pup/Qvd 6ED/EgEmimxGkWfcouAL26O60f5oC60qKVx7cFqU/FUvdrOslD88R6IuAVmUBaW6i3XMqGuV5I4t D1fWIhKvxTJusYxCGgEMAfoHB/vnBTIbvD+sSb1l9err78fYGRz1ssNW1spj2GweBJj7jUbjvEDH mbsu0h2tlZUY/zzM0Qq32+2BFIInUnBHjqGM9XAOq6kLXmqbwxOYhfgqRJDECrFYEZy/GH4iVKKI REUtb6dZF+fnHBw808Tl/BfQaXA+LBKpqh35/+EvS6jSP7CroC4AAAAASUVORK5CYII= "
     height="48"
     width="48"
     y="216"
     x="64" />
  <g
     id="g3186"
     transform="translate(0,208)">
    <rect
       id="rect11354"
       height="4.5"
       width="22.5"
       y="48.990002"
       x="28.275999"
       style="fill:url(#linearGradient3222)" />
    <path
       id="path11350"
       d="m 50.776,53.49 a 2.25,2.25 0 0 0 0,-4.5 v 2.25 z"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3181)" />
    <path
       id="path11324"
       d="m 28.276,53.49 a 2.25,2.25 0 1 1 0,-4.5 v 2.25 z"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3178)" />
    <path
       id="rect9775"
       style="fill:url(#radialGradient3224);stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
       d="m 27.526,25.5 0,25 25,0 0,-25 -25,0 z m 4,4 17,0 0,17 -17,0 0,-17 z"
       stroke-miterlimit="4"
       inkscape:connector-curvature="0" />
    <rect
       id="rect10554"
       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.49803999;stroke-dasharray:none"
       height="23"
       width="23"
       stroke-miterlimit="4"
       y="26.5"
       x="28.525999" />
    <path
       id="path11310"
       d="m 51.385,23.703 -14.906,15.562 -4.3594,-4.3594 -3.1875,3.1875 6,6 1.6406,1.6406 1.5938,-1.6875 16.5,-17.25 -3.2812,-3.0938 z"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#3a7404;stroke-width:1;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="path11318"
       d="m 51.432,25.109 -14.25,14.859 a 0.99221,0.99221 0 0 1 -1.4062,0 l -3.6562,-3.6562 -1.7812,1.7812 5.2969,5.2969 0.9375,0.9375 0.89062,-0.98438 15.797,-16.5 -1.8281,-1.7344 z"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#8ae234;stroke-width:1;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="path4331"
       d="m 26.772,28.127 a 9.2291,2.2853 0 0 1 -18.458,0 9.2291,2.2853 0 1 1 18.458,0 z"
       inkscape:connector-curvature="0"
       style="opacity:0.07000002;fill:url(#radialGradient3226)" />
    <path
       id="path3420"
       style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
       d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
       transform="matrix(1.9227697,0,0,1.4097191,-25.66573,35.49309)"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3159"
       d="m 26.315,11.216 c -0.77566,-1.5293 -14.738,-1.5293 -15.513,0 0,2.294 -2.327,9.1761 -2.327,15.293 0,6.1174 7.7566,9.9408 10.084,9.9408 2.327,0 10.084,-3.8234 10.084,-9.9408 0,-6.1174 -2.327,-12.999 -2.327,-15.293 z"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3228);fill-rule:evenodd" />
    <path
       id="path2385"
       style="fill:none;stroke:#919191;stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 26.315,11.237 a 7.7566,1.5499 0 0 1 -15.513,0 7.7566,1.5499 0 1 1 15.513,0 z"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3157"
       style="fill:url(#linearGradient3230);stroke:#888a85;stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 27.09,49.45 a 8.5325,3.0792722 0 0 1 -17.065,0 8.5325,3.0792722 0 1 1 17.065,0 z"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3236"
       style="fill:none;stroke:url(#linearGradient3158);stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 26.058,49.43 a 7.5,1.9084 0 0 1 -15,0 7.5,1.9084 0 1 1 15,0 z"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3163"
       d="m 14.68,34.921 c 1.5513,1.5293 3.1027,3.8234 3.1027,12.235 0,1.5293 0.20982,2.294 0.77566,2.294 0.56585,0 0.77566,-0.76467 0.77566,-2.294 0,-8.4114 1.5513,-10.705 3.1027,-12.235"
       inkscape:connector-curvature="0"
       style="fill:url(#linearGradient3232);fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter" />
    <path
       id="path3179"
       d="m 8.558,24.021 c 0,9 7.673,12.429 10,12.429 2.327,0 10,-3.4295 10,-12.429"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3234);fill-rule:evenodd" />
    <path
       id="path5788"
       style="fill:url(#radialGradient3236);stroke:url(#linearGradient3238);stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 28.058,24.216 a 9.5,2.294 0 0 1 -19,0 9.5,2.294 0 1 1 19,0 z"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3196"
       d="m 9.558,24.521 c -1.5,6.5 6.5,11 9,11 2.5,0 11,-4.5 9,-12 -0.5,-4 -1,-6 -2,-9.5"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:url(#linearGradient3144);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter" />
    <path
       id="path3266"
       d="m 12.904,14.021 4.654,0 c 0,0 -2.327,9.1761 -2.327,12.999 0,2.294 1.5513,3.8234 0.77566,4.588 -0.77566,0.76468 -4.654,-2.2183 -4.654,-6.1174 0,-1.5293 0.77566,-6.1174 1.5513,-11.47 z"
       inkscape:connector-curvature="0"
       style="fill:url(#linearGradient3141);fill-rule:evenodd" />
    <path
       id="path3358"
       d="m 26.058,12.521 c -0.5,0.5 -3.4617,1.0499 -7.7434,1.0499 -4.2817,0 -6.7566,-0.5499 -7.2566,-1.0499"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#ffffff;stroke-width:1.01098013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
    <path
       id="path3450"
       d="m 27.558,23.521 c 0,0.85555 -3.5,2 -9.019,2.0499 C 13.02,25.6208 9.558,24.3765 9.558,23.521"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:url(#radialGradient3240);stroke-width:1.01098013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
    <path
       id="path3395"
       d="m 16.558,37.021 c 0,0 0.5,1 2,0.95884 1.5,-0.04116 2,-0.95884 2,-0.95884"
       inkscape:connector-curvature="0"
       style="opacity:0.35;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="path3363"
       d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
       transform="matrix(1.551329,0,0,1.5293489,6.147343,-17.456033)"
       inkscape:connector-curvature="0"
       style="fill:url(#linearGradient3242);fill-rule:evenodd;stroke:url(#linearGradient3244);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)" />
    <path
       id="path3354"
       d="m 26.315,11.216 c -0.77566,-2.294 -14.738,-2.294 -15.513,0 0,2.294 -2.327,9.1761 -2.327,15.293 0,6.1174 7.7566,9.9408 10.084,9.9408 2.327,0 10.084,-3.8234 10.084,-9.9408 0,-6.1174 -2.327,-12.999 -2.327,-15.293 z"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#919191;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter" />
  </g>
  <rect
     id="icon:48-32"
     height="48"
     width="48"
     y="216"
     x="8"
     style="fill:none" />
  <g
     id="g3469"
     transform="translate(0,208.21287)">
    <rect
       id="rect11354-7"
       height="3"
       width="15"
       y="51.775002"
       x="189.5"
       style="fill:url(#linearGradient3496)" />
    <path
       id="path11324-5"
       d="m 189.5,54.775 a 1.5,1.5 0 1 1 0,-3 v 1.5 z"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3498)" />
    <path
       id="path11350-3"
       d="m 204.5,54.775 a 1.5,1.5 0 0 0 0,-3 v 1.5 z"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3500)" />
    <path
       id="rect9775-8"
       style="fill:url(#radialGradient3502);stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
       d="m 189.5,36.275 0,16 16,0 0,-16 -16,0 z m 3,3 10,0 0,10 -10,0 0,-10 z"
       stroke-miterlimit="4"
       inkscape:connector-curvature="0" />
    <rect
       id="rect10554-8"
       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.49803999;stroke-dasharray:none"
       height="14"
       width="14"
       stroke-miterlimit="4"
       y="37.275002"
       x="190.5" />
    <path
       id="path4331-3"
       d="m 188.98,37.867 a 6.1527,1.5235 0 0 1 -12.305,0 6.1527,1.5235 0 1 1 12.305,0 z"
       inkscape:connector-curvature="0"
       style="opacity:0.07000002;fill:url(#radialGradient3504)" />
    <path
       id="path3420-1"
       style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436-1)"
       d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
       transform="matrix(1.2818465,0,0,0.9398128,154.01753,42.777822)"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3159-8"
       d="m 188.67,26.593 c -0.51711,-1.0196 -9.8251,-1.0196 -10.342,0 0,1.5293 -1.5513,6.1174 -1.5513,10.196 0,4.0783 5.1711,6.6272 6.7224,6.6272 1.5513,0 6.7224,-2.5489 6.7224,-6.6272 0,-4.0783 -1.5513,-8.6663 -1.5513,-10.196 z"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3506);fill-rule:evenodd" />
    <path
       id="path3157-9"
       style="fill:url(#linearGradient3508);stroke:#888a85;stroke-width:1.04329979;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 188.98,52.297 a 5.4785,1.9784361 0 1 1 -10.957,0 5.4785,1.9784361 0 1 1 10.957,0 z"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3236-6"
       style="fill:none;stroke:url(#linearGradient3510);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 188,52.297 a 4.5,1.2723 0 1 1 -9,0 4.5,1.2723 0 1 1 9,0 z"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3163-4"
       d="m 180.91,42.397 c 1.0342,1.0196 2.0684,2.5489 2.0684,8.1565 0,1.0196 0.13988,1.5293 0.51711,1.5293 0.37723,0 0.51711,-0.50978 0.51711,-1.5293 0,-5.6076 1.0342,-7.137 2.0684,-8.1565"
       inkscape:connector-curvature="0"
       style="fill:url(#linearGradient3512);fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
    <path
       id="path3179-3"
       d="m 176.5,35.297 c 0,6 5.4487,8.1197 7,8.1197 1.5513,0 7,-2.1197 7,-8.1197"
       inkscape:connector-curvature="0"
       style="fill:url(#radialGradient3514);fill-rule:evenodd" />
    <path
       id="path5788-3"
       style="fill:url(#radialGradient3516);stroke:url(#linearGradient3518);stroke-width:0.67398685;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 189.83,35.26 a 6.3335,1.5293483 0 0 1 -12.667,0 6.3335,1.5293483 0 1 1 12.667,0 z"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path10032"
       d="m 188.09,28.609 -10.5,6.9062 c -0.47185,2.1071 0.57612,3.8839 1.9688,5.1562 0.69977,0.63931 1.4778,1.1545 2.1875,1.5 0.70965,0.3455 1.3655,0.53125 1.75,0.53125 0.38459,0 1.0458,-0.20765 1.7812,-0.5625 0.73541,-0.35485 1.5613,-0.85244 2.2812,-1.5312 1.4399,-1.3576 2.4993,-3.3228 1.8438,-5.7812 a 0.10694,0.10694 0 0 1 0,-0.03125 c -0.32628,-2.6102 -0.67143,-3.938 -1.3125,-6.1875 z"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:url(#linearGradient3520);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
    <path
       id="path3266-3"
       d="m 179.73,28.463 3.1026,0 c 0,0 -1.5513,6.1174 -1.5513,8.6663 0,1.5293 1.0342,2.5489 0.51711,3.0587 -0.51711,0.50978 -3.1026,-1.4789 -3.1026,-4.0783 0,-1.0196 0.51711,-4.0783 1.0342,-7.6467 z"
       inkscape:connector-curvature="0"
       style="fill:url(#linearGradient3522);fill-rule:evenodd" />
    <path
       id="path2385-8"
       style="fill:none;stroke:#919191;stroke-width:0.97392541;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       d="m 188.68,26.523 a 5.1841,1.2399 0 1 1 -7.8e-4,-0.02154"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0" />
    <path
       id="path3358-6"
       d="m 188.5,27.762 c -0.33333,0.33333 -2.3078,0.69994 -5.1622,0.69994 -2.8544,0 -4.5044,-0.3666 -4.8378,-0.69994"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#ffffff;stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
    <path
       id="path3450-0"
       d="m 189.5,34.797 c 0,0.57036 -2.3333,1.3333 -6.0127,1.3666 -3.68,0.032 -5.99,-0.797 -5.99,-1.367"
       stroke-miterlimit="0"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:url(#radialGradient3524);stroke-width:0.67398679;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
    <path
       id="path3395-4"
       d="m 182.17,43.797 c 0,0 0.33333,0.66667 1.3333,0.63923 1,-0.02744 1.3333,-0.63923 1.3333,-0.63923"
       inkscape:connector-curvature="0"
       style="opacity:0.35;fill:none;stroke:#000000;stroke-width:0.66666669px;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="path3363-8"
       d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
       transform="matrix(1.0342194,0,0,1.019566,175.22625,7.478405)"
       inkscape:connector-curvature="0"
       style="fill:url(#linearGradient3246);fill-rule:evenodd;stroke:url(#linearGradient3248);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391-5)" />
    <path
       id="path3354-8"
       d="m 188.67,26.593 c -0.6711,-1.7968 -9.6711,-1.7968 -10.342,0 0,1.5293 -1.8289,6.1249 -1.8289,10.203 0,4.0783 5.4487,6.6197 7,6.6197 1.5513,0 7,-2.5414 7,-6.6197 0,-4.0783 -1.8289,-8.6738 -1.8289,-10.203 z"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#919191;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter" />
    <path
       id="path11310-8"
       d="m 205.28,34.244 -9.9375,10.375 -2.9062,-2.9062 -2.125,2.125 4,4 1.0938,1.0938 1.0625,-1.125 11,-11.5 -2.1875,-2.0625 z"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#3a7404;stroke-width:1;stroke-linecap:round;stroke-linejoin:round" />
    <path
       id="path11318-9"
       d="M 205.31,35.556 196,45.275 a 0.92628,0.92628 0 0 1 -1.3125,0 l -2.25,-2.25 -0.8125,0.8125 3.3438,3.3438 0.40625,0.40625 0.40625,-0.40625 a 0.92628,0.92628 0 0 1 0.0312,0 l 10.344,-10.812 -0.84375,-0.8125 z"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#8ae234;stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round" />
  </g>
  <rect
     id="icon:32-32"
     height="32"
     width="32"
     y="232"
     x="176"
     style="fill:none" />
  <g
     id="g3095"
     style="stroke-linecap:round;stroke-linejoin:round"
     transform="translate(0,208)">
    <path
       id="rect9775-9"
       style="fill:url(#radialGradient3093);stroke:#888a85;stroke-width:1;stroke-miterlimit:4;stroke-dasharray:none"
       d="m 296.5,42.5 0,13 13,0 0,-13 -13,0 z m 2,2 9,0 0,9 -9,0 0,-9 z"
       stroke-miterlimit="4"
       inkscape:connector-curvature="0" />
    <path
       id="path11310-2"
       d="M 309.31,40.938 302.5,48.5 300,46 l -2.12,2.125 4.62,4.375 1.06,-1.125 7.94,-8.375 -2.19,-2.062 z"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#3a7404;stroke-width:1" />
    <path
       id="path10848"
       d="m 309.34,41.656 -6.4688,7.1875 a 0.49091,0.49091 0 0 1 -0.71875,0 l -2.15,-2.156 -1.4375,1.4375 3.9062,3.6875 0.75,-0.78125 7.5938,-8 -1.4688,-1.375 z"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#8ae234;stroke-width:0.5" />
  </g>
  <rect
     id="icon:16-32"
     height="16"
     width="16"
     y="248"
     x="296"
     style="fill:none" />
  <g
     id="g3140"
     transform="matrix(5.3399447,0,0,5.3399447,327.41394,-36.242917)">
    <rect
       x="28.275999"
       y="48.990002"
       width="22.5"
       height="4.5"
       id="rect3142"
       style="fill:url(#linearGradient3188)" />
    <path
       d="m 50.776,53.49 a 2.25,2.25 0 0 0 0,-4.5 v 2.25 z"
       id="path3144"
       style="fill:url(#radialGradient3190)"
       inkscape:connector-curvature="0" />
    <path
       d="m 28.276,53.49 a 2.25,2.25 0 1 1 0,-4.5 v 2.25 z"
       id="path3146"
       style="fill:url(#radialGradient3192)"
       inkscape:connector-curvature="0" />
    <path
       stroke-miterlimit="4"
       d="m 27.526,25.5 0,25 25,0 0,-25 -25,0 z m 4,4 17,0 0,17 -17,0 0,-17 z"
       style="fill:url(#radialGradient3194);stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
       id="path3148"
       inkscape:connector-curvature="0" />
    <rect
       x="28.525999"
       y="26.5"
       stroke-miterlimit="4"
       width="23"
       height="23"
       style="fill:none;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.49803999;stroke-dasharray:none"
       id="rect3150" />
    <path
       d="m 51.385,23.703 -14.906,15.562 -4.3594,-4.3594 -3.1875,3.1875 6,6 1.6406,1.6406 1.5938,-1.6875 16.5,-17.25 -3.2812,-3.0938 z"
       id="path3152"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#3a7404;stroke-width:1;stroke-linecap:round;stroke-linejoin:round" />
    <path
       d="m 51.432,25.109 -14.25,14.859 a 0.99221,0.99221 0 0 1 -1.4062,0 l -3.6562,-3.6562 -1.7812,1.7812 5.2969,5.2969 0.9375,0.9375 0.89062,-0.98438 15.797,-16.5 -1.8281,-1.7344 z"
       id="path3154"
       inkscape:connector-curvature="0"
       style="fill:#73d216;fill-rule:evenodd;stroke:#8ae234;stroke-width:1;stroke-linecap:round;stroke-linejoin:round" />
    <path
       d="m 26.772,28.127 a 9.2291,2.2853 0 0 1 -18.458,0 9.2291,2.2853 0 1 1 18.458,0 z"
       id="path3156"
       style="opacity:0.07000002;fill:url(#radialGradient3196)"
       inkscape:connector-curvature="0" />
    <path
       stroke-miterlimit="0"
       transform="matrix(1.9227697,0,0,1.4097191,-25.66573,35.49309)"
       d="m 27.438,11 a 4.4375,2.1843 0 1 1 -8.875,0 4.4375,2.1843 0 1 1 8.875,0 z"
       style="opacity:0.2;fill:#000000;stroke:#000000;stroke-width:0.61406273;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none;filter:url(#filter3436)"
       id="path3158"
       inkscape:connector-curvature="0" />
    <path
       d="m 26.315,11.216 c -0.77566,-1.5293 -14.738,-1.5293 -15.513,0 0,2.294 -2.327,9.1761 -2.327,15.293 0,6.1174 7.7566,9.9408 10.084,9.9408 2.327,0 10.084,-3.8234 10.084,-9.9408 0,-6.1174 -2.327,-12.999 -2.327,-15.293 z"
       id="path3160"
       style="fill:url(#radialGradient3198);fill-rule:evenodd"
       inkscape:connector-curvature="0" />
    <path
       stroke-miterlimit="0"
       d="m 26.315,11.237 a 7.7566,1.5499 0 0 1 -15.513,0 7.7566,1.5499 0 1 1 15.513,0 z"
       style="fill:none;stroke:#919191;stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       id="path3162"
       inkscape:connector-curvature="0" />
    <path
       stroke-miterlimit="0"
       d="m 27.09,49.45 a 8.5325,3.0792722 0 0 1 -17.065,0 8.5325,3.0792722 0 1 1 17.065,0 z"
       style="fill:url(#linearGradient3200);stroke:#888a85;stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       id="path3164"
       inkscape:connector-curvature="0" />
    <path
       stroke-miterlimit="0"
       d="m 26.058,49.43 a 7.5,1.9084 0 0 1 -15,0 7.5,1.9084 0 1 1 15,0 z"
       style="fill:none;stroke:url(#linearGradient3202);stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       id="path3166"
       inkscape:connector-curvature="0" />
    <path
       d="m 14.68,34.921 c 1.5513,1.5293 3.1027,3.8234 3.1027,12.235 0,1.5293 0.20982,2.294 0.77566,2.294 0.56585,0 0.77566,-0.76467 0.77566,-2.294 0,-8.4114 1.5513,-10.705 3.1027,-12.235"
       id="path3168"
       style="fill:url(#linearGradient3204);fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter"
       inkscape:connector-curvature="0" />
    <path
       d="m 8.558,24.021 c 0,9 7.673,12.429 10,12.429 2.327,0 10,-3.4295 10,-12.429"
       id="path3170"
       style="fill:url(#radialGradient3206);fill-rule:evenodd"
       inkscape:connector-curvature="0" />
    <path
       stroke-miterlimit="0"
       d="m 28.058,24.216 a 9.5,2.294 0 0 1 -19,0 9.5,2.294 0 1 1 19,0 z"
       style="fill:url(#radialGradient3208);stroke:url(#linearGradient3210);stroke-width:1.01098025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none"
       id="path3172"
       inkscape:connector-curvature="0" />
    <path
       d="m 9.558,24.521 c -1.5,6.5 6.5,11 9,11 2.5,0 11,-4.5 9,-12 -0.5,-4 -1,-6 -2,-9.5"
       id="path3174"
       style="fill:none;stroke:url(#linearGradient3212);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter"
       inkscape:connector-curvature="0" />
    <path
       d="m 12.904,14.021 4.654,0 c 0,0 -2.327,9.1761 -2.327,12.999 0,2.294 1.5513,3.8234 0.77566,4.588 -0.77566,0.76468 -4.654,-2.2183 -4.654,-6.1174 0,-1.5293 0.77566,-6.1174 1.5513,-11.47 z"
       id="path3176"
       style="fill:url(#linearGradient3214);fill-rule:evenodd"
       inkscape:connector-curvature="0" />
    <path
       stroke-miterlimit="0"
       d="m 26.058,12.521 c -0.5,0.5 -3.4617,1.0499 -7.7434,1.0499 -4.2817,0 -6.7566,-0.5499 -7.2566,-1.0499"
       id="path3178"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#ffffff;stroke-width:1.01098013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0" />
    <path
       stroke-miterlimit="0"
       d="m 27.558,23.521 c 0,0.85555 -3.5,2 -9.019,2.0499 C 13.02,25.6208 9.558,24.3765 9.558,23.521"
       id="path3180"
       style="fill:none;stroke:url(#radialGradient3216);stroke-width:1.01098013;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0"
       inkscape:connector-curvature="0" />
    <path
       d="m 16.558,37.021 c 0,0 0.5,1 2,0.95884 1.5,-0.04116 2,-0.95884 2,-0.95884"
       id="path3182"
       inkscape:connector-curvature="0"
       style="opacity:0.35;fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round" />
    <path
       transform="matrix(1.551329,0,0,1.5293489,6.147343,-17.456033)"
       d="m 8,43.468 2.5,-1 2.4688,0.125 -4.9687,0.875 z"
       id="path3184"
       style="fill:url(#linearGradient3218);fill-rule:evenodd;stroke:url(#linearGradient3220);stroke-width:0.64922434px;stroke-linecap:round;stroke-linejoin:round;filter:url(#filter3391)"
       inkscape:connector-curvature="0" />
    <path
       d="m 26.315,11.216 c -0.77566,-2.294 -14.738,-2.294 -15.513,0 0,2.294 -2.327,9.1761 -2.327,15.293 0,6.1174 7.7566,9.9408 10.084,9.9408 2.327,0 10.084,-3.8234 10.084,-9.9408 0,-6.1174 -2.327,-12.999 -2.327,-15.293 z"
       id="path3186"
       inkscape:connector-curvature="0"
       style="fill:none;stroke:#919191;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter" />
  </g>
  <rect
     id="icon:256-32"
     height="256"
     width="256"
     y="8"
     x="368"
     style="fill:none" />
</svg>