summaryrefslogtreecommitdiff
path: root/src/fullcolor/legacy/applications-utilities.svg
blob: f814ee5d14d9b47fa7d509e21db5c1383eaccbbe (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
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
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
<?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="300"
   id="svg11300"
   inkscape:export-filename="/home/jimmac/Desktop/wi-fi.png"
   inkscape:export-xdpi="90.000000"
   inkscape:export-ydpi="90.000000"
   inkscape:output_extension="org.inkscape.output.svg.inkscape"
   inkscape:version="0.46"
   sodipodi:docname="applications-utilities.svg"
   sodipodi:version="0.32"
   style="display:inline;enable-background:new"
   version="1.0"
   width="400">
  <title
     id="title8836">Optical Drive</title>
  <metadata
     id="metadata154">
    <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:creator>
          <cc:Agent>
            <dc:title />
          </cc:Agent>
        </dc:creator>
        <dc:contributor>
          <cc:Agent>
            <dc:title />
          </cc:Agent>
        </dc:contributor>
        <dc:source />
        <cc:license
           rdf:resource="" />
        <dc:subject>
          <rdf:Bag />
        </dc:subject>
      </cc:Work>
    </rdf:RDF>
  </metadata>
  <sodipodi:namedview
     bordercolor="#666666"
     borderopacity="0.25490196"
     fill="#f57900"
     gridtolerance="12"
     guidetolerance="13"
     height="300px"
     id="base"
     inkscape:current-layer="layer6"
     inkscape:cx="144.68008"
     inkscape:cy="87.105301"
     inkscape:document-units="px"
     inkscape:grid-bbox="true"
     inkscape:guide-bbox="true"
     inkscape:pageopacity="0.0"
     inkscape:pageshadow="2"
     inkscape:showpageshadow="false"
     inkscape:snap-bbox="true"
     inkscape:snap-nodes="true"
     inkscape:window-height="876"
     inkscape:window-width="968"
     inkscape:window-x="132"
     inkscape:window-y="8"
     inkscape:zoom="1"
     objecttolerance="7"
     pagecolor="#ffffff"
     showgrid="false"
     showguides="true"
     stroke="#ef2929"
     width="400px">
    <inkscape:grid
       empspacing="2"
       enabled="true"
       id="grid5883"
       spacingx="0.5px"
       spacingy="0.5px"
       type="xygrid"
       visible="true" />
  </sodipodi:namedview>
  <defs
     id="defs3">
    <linearGradient
       id="linearGradient6886"
       inkscape:collect="always">
      <stop
         id="stop6888"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop6890"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6856"
       inkscape:collect="always">
      <stop
         id="stop6858"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop6860"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6776"
       inkscape:collect="always">
      <stop
         id="stop6778"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6780"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6594">
      <stop
         id="stop6596"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6714"
         offset="0.5"
         style="stop-color:#babdb6;stop-opacity:1;" />
      <stop
         id="stop6598"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6393">
      <stop
         id="stop6395"
         offset="0"
         style="stop-color:#d3d7cf;stop-opacity:1" />
      <stop
         id="stop6401"
         offset="0.5"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6397"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6377"
       inkscape:collect="always">
      <stop
         id="stop6379"
         offset="0"
         style="stop-color:#2e3436;stop-opacity:1" />
      <stop
         id="stop6381"
         offset="1"
         style="stop-color:#2e3436;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       id="linearGradient6350">
      <stop
         id="stop6352"
         offset="0"
         style="stop-color:#cc0000;stop-opacity:1" />
      <stop
         id="stop6354"
         offset="1"
         style="stop-color:#ef2929;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6340"
       inkscape:collect="always">
      <stop
         id="stop6342"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6344"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6346"
       inkscape:collect="always"
       x1="-7.449357"
       x2="-31.08465"
       xlink:href="#linearGradient6340"
       y1="17.625364"
       y2="46.566097" />
    <linearGradient
       gradientTransform="translate(1,-1)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6383"
       inkscape:collect="always"
       x1="16.175068"
       x2="17.103146"
       xlink:href="#linearGradient6377"
       y1="5.8339934"
       y2="6.8994184" />
    <linearGradient
       gradientTransform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,25.843866,-1.269435)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6387"
       inkscape:collect="always"
       x1="16.594913"
       x2="17.467747"
       xlink:href="#linearGradient6377"
       y1="6.2096438"
       y2="7.2198262" />
    <linearGradient
       gradientTransform="matrix(-1,0,0,-1,60.72042,35.508321)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6391"
       inkscape:collect="always"
       x1="17.694265"
       x2="16.578959"
       xlink:href="#linearGradient6377"
       y1="5.893404"
       y2="4.7780981" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6399"
       inkscape:collect="always"
       x1="14.273527"
       x2="33.601479"
       xlink:href="#linearGradient6393"
       y1="15.035544"
       y2="20.214453" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6409"
       inkscape:collect="always"
       x1="8.5690336"
       x2="22.398188"
       xlink:href="#linearGradient6393"
       y1="11.255746"
       y2="13" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6417"
       inkscape:collect="always"
       x1="40.570251"
       x2="40.570251"
       xlink:href="#linearGradient6393"
       y1="37.349899"
       y2="27.537407" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6425"
       inkscape:collect="always"
       x1="31.165529"
       x2="33.806744"
       xlink:href="#linearGradient6393"
       y1="34.234436"
       y2="24.377295" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6703"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientTransform="translate(0,-3)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6706"
       inkscape:collect="always"
       x1="14.001307"
       x2="14.001307"
       xlink:href="#linearGradient6594"
       y1="36.6875"
       y2="34.3125" />
    <linearGradient
       gradientTransform="translate(0,3)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6718"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientTransform="translate(0,6)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6722"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientTransform="translate(0,9)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6726"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6782"
       inkscape:collect="always"
       x1="8.1083107"
       x2="19.899494"
       xlink:href="#linearGradient6776"
       y1="20.627378"
       y2="24.283916" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6852"
       inkscape:collect="always"
       x1="-9.6076384"
       x2="-4.8166409"
       xlink:href="#linearGradient6350"
       y1="36.047863"
       y2="36.165699" />
    <radialGradient
       cx="23.953241"
       cy="37.923729"
       fx="23.953241"
       fy="37.923729"
       gradientTransform="matrix(1,0,0,0.4290909,0,21.651002)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6862"
       inkscape:collect="always"
       r="24.306795"
       xlink:href="#linearGradient6856" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6892"
       inkscape:collect="always"
       x1="17.75"
       x2="19.186819"
       xlink:href="#linearGradient6886"
       y1="14.625"
       y2="16.061819" />
    <radialGradient
       cx="23.953241"
       cy="37.923729"
       fx="23.953241"
       fy="37.923729"
       gradientTransform="matrix(1,0,0,0.4290909,0,21.651002)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6896"
       inkscape:collect="always"
       r="24.306795"
       xlink:href="#linearGradient6856" />
    <linearGradient
       id="linearGradient7230"
       inkscape:collect="always">
      <stop
         id="stop7232"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop7234"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <radialGradient
       cx="23.953241"
       cy="37.923729"
       fx="23.953241"
       fy="37.923729"
       gradientTransform="matrix(1,0,0,0.4290909,0,21.651002)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6565"
       inkscape:collect="always"
       r="24.306795"
       xlink:href="#linearGradient6856" />
    <radialGradient
       cx="23.953241"
       cy="37.923729"
       fx="23.953241"
       fy="37.923729"
       gradientTransform="matrix(1,0,0,0.4290909,0,21.651002)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6567"
       inkscape:collect="always"
       r="24.306795"
       xlink:href="#linearGradient6856" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0,6.115282)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6603"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0,4.1314405)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6606"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0,2.147599)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6609"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientTransform="matrix(-0.6604072,0,0,-0.6612805,40.100203,23.644718)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6612"
       inkscape:collect="always"
       x1="17.694265"
       x2="16.578959"
       xlink:href="#linearGradient6377"
       y1="5.893404"
       y2="4.7780981" />
    <linearGradient
       gradientTransform="matrix(0.4669784,0.6331538,-0.4669784,0.6331538,16.301009,-5.1679856)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6615"
       inkscape:collect="always"
       x1="16.594913"
       x2="17.467747"
       xlink:href="#linearGradient6377"
       y1="6.2096438"
       y2="7.2198262" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0.6604072,-0.497523)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6618"
       inkscape:collect="always"
       x1="16.175068"
       x2="17.103146"
       xlink:href="#linearGradient6377"
       y1="5.8339934"
       y2="6.8994184" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0,0.1637575)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6625"
       inkscape:collect="always"
       x1="13.660311"
       x2="13.6875"
       xlink:href="#linearGradient6594"
       y1="37"
       y2="33.5625" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0,-1.820084)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6628"
       inkscape:collect="always"
       x1="14.001307"
       x2="14.001307"
       xlink:href="#linearGradient6594"
       y1="36.6875"
       y2="34.3125" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0,0.1637575)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6642"
       inkscape:collect="always"
       x1="40.570251"
       x2="40.570251"
       xlink:href="#linearGradient6393"
       y1="37.349899"
       y2="27.537407" />
    <linearGradient
       gradientTransform="matrix(0.8106673,0,0,0.6612805,-5.4491403,0.1637575)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6646"
       inkscape:collect="always"
       x1="31.165529"
       x2="33.806744"
       xlink:href="#linearGradient6393"
       y1="34.234436"
       y2="24.377295" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0,0.1637575)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6651"
       inkscape:collect="always"
       x1="8.5690336"
       x2="22.398188"
       xlink:href="#linearGradient6393"
       y1="11.255746"
       y2="13" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0.375,-0.3362425)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6654"
       inkscape:collect="always"
       x1="17.75"
       x2="19.186819"
       xlink:href="#linearGradient6886"
       y1="14.625"
       y2="16.061819" />
    <linearGradient
       gradientTransform="matrix(0.6604072,0,0,0.6612805,0.375,-0.3362425)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6658"
       inkscape:collect="always"
       x1="14.273527"
       x2="33.601479"
       xlink:href="#linearGradient6393"
       y1="15.035544"
       y2="20.214453" />
    <linearGradient
       gradientTransform="matrix(0.6608297,0,0,0.6608297,-0.1176595,0.1176595)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient7219"
       inkscape:collect="always"
       x1="-9.6076384"
       x2="-4.8166409"
       xlink:href="#linearGradient6350"
       y1="36.047863"
       y2="36.165699" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient7221"
       inkscape:collect="always"
       x1="-7.449357"
       x2="-31.08465"
       xlink:href="#linearGradient6340"
       y1="17.625364"
       y2="46.566097" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient7236"
       inkscape:collect="always"
       x1="7.625"
       x2="13.21875"
       xlink:href="#linearGradient7230"
       y1="15.28125"
       y2="9" />
    <linearGradient
       id="linearGradient6475"
       inkscape:collect="always">
      <stop
         id="stop6477"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop6479"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6437"
       inkscape:collect="always">
      <stop
         id="stop6439"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6441"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6424"
       inkscape:collect="always">
      <stop
         id="stop6426"
         offset="0"
         style="stop-color:#cc0000;stop-opacity:1" />
      <stop
         id="stop6428"
         offset="1"
         style="stop-color:#ef2929;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6408"
       inkscape:collect="always">
      <stop
         id="stop6410"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6412"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6397"
       inkscape:collect="always">
      <stop
         id="stop6399"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop6402"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(0.3297188,0.6610932,-0.3297188,0.6610932,13.105617,-13.728491)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5486"
       inkscape:collect="always"
       x1="16.175068"
       x2="17.103146"
       xlink:href="#linearGradient6377"
       y1="5.8339934"
       y2="6.8994184" />
    <linearGradient
       gradientTransform="matrix(0.3669547,0.4709781,-0.3669547,0.4709781,12.55983,-15.159029)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5510"
       inkscape:collect="always"
       x1="40.570251"
       x2="40.570251"
       xlink:href="#linearGradient6393"
       y1="37.349899"
       y2="27.537407" />
    <linearGradient
       gradientTransform="matrix(0.4314119,0.4953406,-0.4314119,0.4953406,11.979949,-9.5380818)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5517"
       inkscape:collect="always"
       x1="8.5690336"
       x2="22.398188"
       xlink:href="#linearGradient6393"
       y1="11.255746"
       y2="13" />
    <linearGradient
       gradientTransform="matrix(0.3297188,0.3542106,-0.3297188,0.3542106,12.0942,-6.3153167)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5524"
       inkscape:collect="always"
       x1="14.273527"
       x2="33.601479"
       xlink:href="#linearGradient6393"
       y1="15.035544"
       y2="20.214453" />
    <linearGradient
       gradientTransform="matrix(0.3297188,0.6610932,-0.3297188,0.6610932,13.105617,4.271509)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6380"
       inkscape:collect="always"
       x1="16.175068"
       x2="17.103146"
       xlink:href="#linearGradient6377"
       y1="5.8339934"
       y2="6.8994184" />
    <linearGradient
       gradientTransform="matrix(0.3297188,0.6610932,-0.3297188,0.6610932,14.105617,-3.7284914)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6384"
       inkscape:collect="always"
       x1="16.175068"
       x2="17.103146"
       xlink:href="#linearGradient6377"
       y1="5.8339934"
       y2="6.8994184" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6404"
       inkscape:collect="always"
       x1="13.796335"
       x2="13.796335"
       xlink:href="#linearGradient6397"
       y1="4.3741069"
       y2="8.2998066" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6414"
       inkscape:collect="always"
       x1="6.625"
       x2="10.25"
       xlink:href="#linearGradient6408"
       y1="2.8125"
       y2="24.6875" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6430"
       inkscape:collect="always"
       x1="6.3639612"
       x2="11.402097"
       xlink:href="#linearGradient6424"
       y1="16.519922"
       y2="16.343145" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6443"
       inkscape:collect="always"
       x1="8.2201166"
       x2="10"
       xlink:href="#linearGradient6437"
       y1="6.797204"
       y2="13.161165" />
    <radialGradient
       cx="10.650796"
       cy="20.40901"
       fx="10.650796"
       fy="20.40901"
       gradientTransform="matrix(1,0,0,0.1350211,0,17.653363)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6481"
       inkscape:collect="always"
       r="10.474019"
       xlink:href="#linearGradient6475" />
    <linearGradient
       gradientTransform="matrix(0.3297188,0.3542106,-0.3297188,0.3542106,26.0942,-8.3153167)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5980"
       inkscape:collect="always"
       x1="23.368397"
       x2="41.371632"
       xlink:href="#linearGradient6393"
       y1="17.815943"
       y2="22.035683" />
    <linearGradient
       gradientTransform="matrix(0.3297188,0.6610932,-0.3297188,0.6610932,28.105617,-5.7284914)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5982"
       inkscape:collect="always"
       x1="16.175068"
       x2="17.103146"
       xlink:href="#linearGradient6377"
       y1="5.8339934"
       y2="6.8994184" />
    <linearGradient
       gradientTransform="matrix(0.3297188,0.6610932,-0.3297188,0.6610932,7.105617,-13.728491)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6980"
       inkscape:collect="always"
       x1="16.175068"
       x2="17.103146"
       xlink:href="#linearGradient6377"
       y1="5.8339934"
       y2="6.8994184" />
    <linearGradient
       gradientTransform="matrix(0.4314119,0.4953406,-0.4314119,0.4953406,5.979949,-9.5380818)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6983"
       inkscape:collect="always"
       x1="11.933805"
       x2="43.504211"
       xlink:href="#linearGradient6393"
       y1="9.4050837"
       y2="-10.459139" />
  </defs>
  <g
     id="layer6"
     inkscape:groupmode="layer"
     inkscape:label="baseplate"
     style="display:none">
    <rect
       height="48"
       id="rect6284"
       inkscape:label="48x48"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="48"
       x="296"
       y="50" />
    <rect
       height="32"
       id="rect6592"
       inkscape:label="32x32"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="32"
       x="303"
       y="126" />
    <rect
       height="22"
       id="rect6749"
       inkscape:label="22x22"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="22"
       x="303"
       y="177" />
    <rect
       height="16"
       id="rect6833"
       inkscape:label="16x16"
       style="fill:#eeeeec;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
       width="16"
       x="303"
       y="219" />
    <text
       id="context"
       inkscape:label="context"
       style="font-size:18.30070686px;font-style:normal;font-weight:normal;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Bitstream Vera Sans"
       x="20.970737"
       xml:space="preserve"
       y="21.513618"><tspan
         id="tspan2716"
         sodipodi:role="line"
         x="20.970737"
         y="21.513618">categories</tspan></text>
    <text
       id="icon-name"
       inkscape:label="icon-name"
       sodipodi:linespacing="125%"
       style="font-size:18.30070686px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-align:start;line-height:125%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;display:inline;enable-background:new;font-family:Droid Sans;-inkscape-font-specification:Droid Sans Bold"
       x="191.97073"
       xml:space="preserve"
       y="21.513618"><tspan
         id="tspan3023"
         sodipodi:role="line"
         x="191.97073"
         y="21.513618">applications-utilities</tspan></text>
  </g>
  <g
     id="layer2"
     inkscape:groupmode="layer"
     inkscape:label="small sizes"
     style="display:inline">
    <g
       id="g48"
       style="display:inline;enable-background:new"
       transform="translate(296,50) scale(1.000000,1.000000)">
      <path
         d="M 7.9461539,13.500001 L 32.146154,13.500001 C 40.335947,13.500001 41.500001,15.540179 41.500001,15.540179 C 41.500001,15.540179 40.16564,19.500001 24.269231,19.500001 L 7.9461539,19.500001 C 6.0369847,19.500001 4.5,18.162001 4.5,16.500001 C 4.5,14.838001 6.0369847,13.500001 7.9461539,13.500001 z "
         id="rect6318"
         sodipodi:nodetypes="cczccsc"
         style="fill:url(#linearGradient6399);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 7.9375,14.1875 C 6.3495436,14.1875 5.1875,15.25947 5.1875,16.5 C 5.1875,17.740529 6.3495432,18.812499 7.9375,18.8125 L 24.28125,18.8125 C 32.17224,18.8125 36.406811,17.811236 38.59375,16.875 C 39.68722,16.406882 40.262239,15.956285 40.5625,15.65625 C 40.370543,15.519124 40.15523,15.34935 39.65625,15.15625 C 38.456277,14.691873 36.194309,14.1875 32.15625,14.1875 L 7.9375,14.1875 z "
         id="path6365"
         inkscape:original="M 7.9375 13.5 C 6.0283308 13.5 4.5 14.837999 4.5 16.5 C 4.5 18.162 6.0283306 19.499999 7.9375 19.5 L 24.28125 19.5 C 40.177659 19.5 41.500001 15.53125 41.5 15.53125 C 41.5 15.53125 40.346045 13.5 32.15625 13.5 L 7.9375 13.5 z "
         inkscape:radius="-0.6875"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 7.9375,13 C 5.7947215,13 4,14.531475 4,16.5 C 4,18.468524 5.7947215,19.999999 7.9375,20 L 24.28125,20 L 25.15625,13 L 7.9375,13 z "
         id="path6873"
         sodipodi:nodetypes="cscccc"
         style="fill:url(#linearGradient6892);fill-opacity:1.0;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;opacity:0.25862069" />
      <path
         d="M 7.3106737,12.969322 C 5.6404946,14.639501 5.6625915,17.331647 7.3327708,19.001826 C 9.0029499,20.672005 11.672999,20.672005 13.343178,19.001826 L 17.475334,14.869671 C 19.442204,12.902801 20.811156,11.19549 21.740071,9.676856 L 20.878285,8.8150692 L 18.712771,10.980584 C 18.223099,11.470255 17.434675,11.470255 16.945004,10.980584 L 16.635644,10.671225 C 16.145973,10.181553 16.145973,9.393129 16.635644,8.9034576 L 19.950207,5.5888945 C 20.366428,5.1726738 21.036589,5.1726738 21.452809,5.5888945 L 22.977508,7.1135935 C 23.776728,4.7626954 23.6852,1.6098946 22.787137,0.7118315 C 21.867197,-0.2081086 18.10695,2.1730456 16.436771,3.8432247 L 7.3106737,12.969322 z "
         id="rect5331"
         sodipodi:nodetypes="cscccccccccccscc"
         style="opacity:1;fill:url(#linearGradient6409);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 48.260036 37.923729 A 24.306795 10.429825 0 1 1  -0.35355377,37.923729 A 24.306795 10.429825 0 1 1  48.260036 37.923729 z"
         id="path6854"
         sodipodi:cx="23.953241"
         sodipodi:cy="37.923729"
         sodipodi:rx="24.306795"
         sodipodi:ry="10.429825"
         sodipodi:type="arc"
         style="opacity:0.14224135;fill:url(#radialGradient6862);fill-opacity:1;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.9273485,0,0,0.5227119,2.4240612,22.446741)" />
      <path
         d="M 48.260036 37.923729 A 24.306795 10.429825 0 1 1  -0.35355377,37.923729 A 24.306795 10.429825 0 1 1  48.260036 37.923729 z"
         id="path6894"
         sodipodi:cx="23.953241"
         sodipodi:cy="37.923729"
         sodipodi:rx="24.306795"
         sodipodi:ry="10.429825"
         sodipodi:type="arc"
         style="opacity:0.28017241;fill:url(#radialGradient6896);fill-opacity:1;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.3043674,0,0,0.291842,21.889597,31.264686)" />
      <path
         d="M 34.5,39.060633 L 34.5,28.566516 C 34.5,21.78897 32.490493,21.044193 32.490493,21.044193 C 32.490493,21.044193 29.5,23.139345 29.5,31.020361 L 29.5,39.060633 C 29.5,40.689043 30.615,42 32,42 C 33.385,42 34.5,40.689043 34.5,39.060633 z "
         id="path6321"
         sodipodi:nodetypes="cczccsc"
         style="fill:url(#linearGradient6425);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 32.5,22.6875 C 32.273427,22.964978 32.01736,23.334359 31.71875,23.9375 C 31.03026,25.328134 30.3125,27.692785 30.3125,31.53125 L 30.3125,39.5625 C 30.3125,40.823808 31.121749,41.6875 32,41.6875 C 32.878252,41.6875 33.6875,40.823811 33.6875,39.5625 L 33.6875,29.0625 C 33.6875,25.752831 33.206588,23.974727 32.78125,23.09375 C 32.666925,22.856956 32.592879,22.813197 32.5,22.6875 z "
         id="path6373"
         inkscape:original="M 32.5 21.53125 C 32.499999 21.53125 29.5 23.650234 29.5 31.53125 L 29.5 39.5625 C 29.5 41.190908 30.615 42.5 32 42.5 C 33.385 42.5 34.5 41.19091 34.5 39.5625 L 34.5 29.0625 C 34.5 22.284953 32.5 21.53125 32.5 21.53125 z "
         inkscape:radius="-0.80419952"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="translate(0,-0.5)" />
      <path
         d="M 29.495112,37.757359 C 28.05187,39.200602 28.319899,40.824787 29.495112,42 C 30.670324,43.175211 32.780644,42.957106 34.223889,41.513864 L 44.869481,30.868272 C 46.990801,28.746951 47.697908,25.918524 47.697908,25.918524 L 45.576588,23.797204 C 45.576588,23.797204 43.443054,24.320957 41.554918,25.785942 C 40.148729,27.8224 41.14399,30.351122 39.212627,32.282485 C 38.233284,33.261828 37.656436,32.261828 36.677093,31.282485 C 36.554675,31.160068 36.459547,31.023493 36.367733,30.884738 L 29.495112,37.757359 z "
         id="rect6323"
         sodipodi:nodetypes="cscccccsscc"
         style="fill:url(#linearGradient6417);fill-opacity:1.0;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 45.375,24.625 C 44.93915,24.746984 43.568618,25.139675 42.09375,26.25 C 41.545484,27.082403 41.449935,28.058869 41.28125,29.1875 C 41.108514,30.343235 40.833242,31.666758 39.71875,32.78125 C 39.408471,33.091528 39.05957,33.319062 38.65625,33.375 C 38.25293,33.430938 37.874156,33.274435 37.59375,33.09375 C 37.091107,32.769863 36.736953,32.321897 36.34375,31.90625 L 30,38.25 C 29.385663,38.864337 29.194616,39.407904 29.21875,39.9375 C 29.242884,40.467096 29.506965,41.006965 30,41.5 C 30.851687,42.351685 32.486543,42.232204 33.71875,41 L 44.375,30.375 C 46.119007,28.630993 46.738732,26.576545 46.875,26.09375 L 45.375,24.625 z "
         id="path6369"
         inkscape:original="M 45.5625 23.8125 C 45.5625 23.812501 43.450636 24.316265 41.5625 25.78125 C 40.156313 27.817708 41.150113 30.349887 39.21875 32.28125 C 38.239407 33.260592 37.666843 32.260593 36.6875 31.28125 C 36.565081 31.158834 36.466814 31.013755 36.375 30.875 L 29.5 37.75 C 28.056759 39.193243 28.324787 40.824787 29.5 42 C 30.675213 43.175211 32.775505 42.943242 34.21875 41.5 L 44.875 30.875 C 46.996321 28.753678 47.6875 25.90625 47.6875 25.90625 L 45.5625 23.8125 z "
         inkscape:radius="-0.69164771"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 14.003495,25.466175 C 3.2364155,36.233255 2.5,36.721255 2.5,40.5 L 16.5,27 L 14.003495,25.466175 z "
         id="path6334"
         sodipodi:nodetypes="cccc"
         style="fill:#eeeeec;fill-rule:evenodd;stroke:#888a85;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 22.25,1.28125 C 22.185504,1.2752792 22.048753,1.2953375 21.84375,1.34375 C 20.645461,1.6267311 18.106106,3.2376436 16.96875,4.375 L 7.84375,13.5 C 6.4660496,14.8777 6.4905842,17.084334 7.875,18.46875 C 9.2594157,19.853166 11.428084,19.853166 12.8125,18.46875 L 16.9375,14.34375 C 18.319688,12.961562 20.203175,10.820309 21.030981,9.6969223 L 19.25,11.5 C 18.466451,12.283549 17.189799,12.283549 16.40625,11.5 L 16.09375,11.1875 C 15.321653,10.415403 15.321655,9.1470958 16.09375,8.375 L 19.40625,5.0625 C 20.110285,4.3584654 21.264715,4.3584642 21.96875,5.0625 L 22.4375,5.53125 C 22.567952,4.8032546 22.769524,4.0823939 22.75,3.40625 C 22.718581,2.3181718 22.395569,1.442082 22.25,1.28125 z "
         id="path6360"
         sodipodi:nodetypes="csccsccccccccccsc"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 14.0625,26.21875 C 8.95462,31.324147 6.1252658,34.145036 4.6875,35.96875 C 3.7233231,37.191747 3.4293266,38.038623 3.28125,38.9375 L 15.53125,27.09375 L 14.0625,26.21875 z "
         id="path6429"
         inkscape:original="M 14 25.46875 C 3.2329203 36.23583 2.5 36.721255 2.5 40.5 L 16.5 27 L 14 25.46875 z "
         inkscape:radius="-0.59492946"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 13.5,33.5 C 14.604,33.5 14.5,33 14.5,31.999998 L 14.5,27.5"
         id="path6634"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <g
         id="g6733">
        <path
           d="M 13.5,36.5 C 14.604,36.5 15.5,36 15.5,34.999998 C 15.5,33.999999 14.604,33.499999 13.5,33.499999"
           id="path6557"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 13.5,39.5 C 14.604,39.5 15.5,39 15.5,37.999998 C 15.5,36.999999 14.604,36.499999 13.5,36.499999"
           id="path6559"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 13.5,42.5 C 14.604,42.5 15.5,42 15.5,40.999998 C 15.5,39.999999 14.604,39.499999 13.5,39.499999"
           id="path6561"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 13.5,45.5 C 14.604,45.5 15.5,45 15.5,43.999998 C 15.5,42.999999 14.604,42.499999 13.5,42.499999"
           id="path6563"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 14.914,45.874999 C 14.552,45.624999 14.052,45.499999 13.5,45.499999"
           id="path6565"
           sodipodi:nodetypes="cs"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      </g>
      <path
         d="M 13.5,33.5 C 14.604,33.5 14.5,33 14.5,31.999998 L 14.5,27.5"
         id="path6630"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6706);stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <path
         d="M 13.5,36.5 C 14.604,36.5 15.5,36 15.5,34.999998 C 15.5,33.999999 14.604,33.499999 13.5,33.499999"
         id="path6452"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6703);stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <rect
         height="39.633751"
         id="rect5329"
         rx="4.2184806"
         ry="4.2184806"
         style="opacity:1;fill:url(#linearGradient6852);fill-opacity:1.0;stroke:#a40000;stroke-width:1.00026894;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.7186021,-0.6954215,0.7186021,0.6954215,0,0)"
         width="8.4369612"
         x="-11.48954"
         y="13.894407" />
      <path
         d="M -7.28125,14.90625 C -9.0852603,14.90625 -10.5,16.320989 -10.5,18.125 L -10.5,49.3125 C -10.5,51.11651 -9.085261,52.531248 -7.28125,52.53125 C -5.4772397,52.53125 -4.0625,51.116511 -4.0625,49.3125 L -4.0625,18.125 C -4.0625,16.32099 -5.47724,14.90625 -7.28125,14.90625 z "
         id="path6338"
         inkscape:original="M -7.28125 13.90625 C -9.6182882 13.90625 -11.5 15.787961 -11.5 18.125 L -11.5 49.3125 C -11.5 51.649538 -9.6182882 53.531248 -7.28125 53.53125 C -4.9442118 53.53125 -3.0625 51.649539 -3.0625 49.3125 L -3.0625 18.125 C -3.0625 15.787962 -4.9442118 13.90625 -7.28125 13.90625 z "
         inkscape:radius="-0.99301112"
         sodipodi:type="inkscape:offset"
         style="opacity:0.5;fill:none;fill-opacity:1.0;stroke:url(#linearGradient6346);stroke-width:1.00026894;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.7186021,-0.6954215,0.7186021,0.6954215,0,0)" />
      <path
         d="M 15.451495,6.9158842 L 19.561553,2.7174377 C 20.381486,3.6526955 17.546143,6.6250893 15.451495,6.9158842 z "
         id="path6375"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6383);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 31,15 L 37,15 C 36.918453,16.241107 32.686763,16.275517 31,15 z "
         id="path6385"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6387);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 46.268926,27.592438 L 42.158868,31.790885 C 41.338935,30.855626 44.174278,27.883233 46.268926,27.592438 z "
         id="path6389"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6391);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 13.5,39.5 C 14.604,39.5 15.5,39 15.5,37.999998 C 15.5,36.999999 14.604,36.499999 13.5,36.499999"
         id="path6716"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6718);stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <path
         d="M 13.5,42.5 C 14.604,42.5 15.5,42 15.5,40.999998 C 15.5,39.999999 14.604,39.499999 13.5,39.499999"
         id="path6720"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6722);stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <path
         d="M 13.5,45.5 C 14.604,45.5 15.5,45 15.5,43.999998 C 15.5,42.999999 14.604,42.499999 13.5,42.499999"
         id="path6724"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6726);stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <path
         d="M 14.914,45.874999 C 14.552,45.624999 14.052,45.499999 13.5,45.499999"
         id="path6555"
         sodipodi:nodetypes="cs"
         style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1.3;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <g
         id="g6744"
         transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,17.192388,-1.0918836)" />
      <path
         d="M 10.5 19.5 L 9.5 20.5 L 10.5 21.5 L 9.5 22.5 L 10.5 23.5 L 11.5 22.5 L 12.5 23.5 L 13.5 22.5 L 12.5 21.5 L 13.5 20.5 L 12.5 19.5 L 11.5 20.5 L 10.5 19.5 z "
         id="path146"
         style="fill:url(#linearGradient6782);fill-opacity:1.0;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <rect
         height="2.4531248"
         id="rect6864"
         style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#cc0000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)"
         width="2.328125"
         x="-7.5205135"
         y="50.892387" />
      <path
         d="M -5.71167,53.378658 L -7.0012319,53.378658"
         id="rect6866"
         sodipodi:nodetypes="cc"
         style="fill:#babdb6;fill-opacity:1;stroke:#babdb6;stroke-width:1.19999997;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none"
         transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" />
    </g>
    <g
       id="g32"
       style="display:inline;enable-background:new"
       transform="translate(303,126) scale(1.000000,1.000000)">
      <path
         d="M 5.6226972,8.5910449 L 21.604552,8.5910449 C 27.01315,8.5910449 27.781899,9.940175 27.781899,9.940175 C 27.781899,9.940175 26.900678,12.558728 16.402575,12.558728 L 5.6226972,12.558728 C 4.3618682,12.558728 3.3468324,11.673935 3.3468324,10.574886 C 3.3468324,9.4758382 4.3618682,8.5910449 5.6226972,8.5910449 z "
         id="path151"
         sodipodi:nodetypes="cczccsc"
         style="fill:url(#linearGradient6658);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 7.9375,14.5 C 6.5000319,14.5 5.5,15.456929 5.5,16.5 C 5.5,17.54307 6.5000313,18.499999 7.9375,18.5 L 24.28125,18.5 C 32.145435,18.5 36.343043,17.503772 38.46875,16.59375 C 39.301451,16.237268 39.624736,15.946311 39.9375,15.6875 C 39.787457,15.609179 39.759395,15.55704 39.53125,15.46875 C 38.383861,15.024723 36.16768,14.5 32.15625,14.5 L 7.9375,14.5 z "
         id="path153"
         inkscape:original="M 7.9375 13.5 C 6.0283308 13.5 4.5 14.837999 4.5 16.5 C 4.5 18.162 6.0283306 19.499999 7.9375 19.5 L 24.28125 19.5 C 40.177659 19.5 41.500001 15.53125 41.5 15.53125 C 41.5 15.53125 40.346045 13.5 32.15625 13.5 L 7.9375 13.5 z "
         inkscape:radius="-1.009594"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.51321733;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.6604072,0,0,0.6612805,0.375,-0.3362425)" />
      <path
         d="M 5.6169822,8.260404 C 4.2018758,8.260404 3.0166288,9.2731386 3.0166288,10.574886 C 3.0166288,11.876632 4.2018758,12.889367 5.6169822,12.889368 L 16.410512,12.889368 L 16.988369,8.260404 L 5.6169822,8.260404 z "
         id="path155"
         sodipodi:nodetypes="cscccc"
         style="opacity:0.25862068;fill:url(#linearGradient6654);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 4.8280215,8.7401172 C 3.7250232,9.844574 3.7396162,11.624838 4.8426146,12.729294 C 5.9456129,13.833751 7.7089326,13.833751 8.8119308,12.729294 L 11.540836,9.996781 C 12.839772,8.6961282 12.743837,8.5671167 13.357299,7.5628737 L 12.78817,6.9929909 L 12.358049,7.4250036 C 12.034666,7.7488135 11.513985,7.7488135 11.190603,7.4250036 L 10.986299,7.2204305 C 10.662917,6.89662 10.662917,6.3752505 10.986299,6.0514404 L 13.17526,3.8595844 C 13.450136,3.5843458 13.892715,3.5843458 14.16759,3.8595844 L 15.174512,4.8678382 C 15.702322,3.3132351 15.641877,1.2283494 15.048789,0.63447779 C 14.441254,0.026139341 11.95796,1.6007502 10.854962,2.7052071 L 4.8280215,8.7401172 z "
         id="path157"
         sodipodi:nodetypes="cscccccccccccscc"
         style="fill:url(#linearGradient6651);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 48.260036 37.923729 A 24.306795 10.429825 0 1 1  -0.35355377,37.923729 A 24.306795 10.429825 0 1 1  48.260036 37.923729 z"
         id="path159"
         sodipodi:cx="23.953241"
         sodipodi:cy="37.923729"
         sodipodi:rx="24.306795"
         sodipodi:ry="10.429825"
         sodipodi:type="arc"
         style="opacity:0.14224135;fill:url(#radialGradient6565);fill-opacity:1;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.6124276,0,0,0.3456592,1.6008675,15.00735)" />
      <path
         d="M 48.260036 37.923729 A 24.306795 10.429825 0 1 1  -0.35355377,37.923729 A 24.306795 10.429825 0 1 1  48.260036 37.923729 z"
         id="path161"
         sodipodi:cx="23.953241"
         sodipodi:cy="37.923729"
         sodipodi:rx="24.306795"
         sodipodi:ry="10.429825"
         sodipodi:type="arc"
         style="opacity:0.28017243;fill:url(#radialGradient6567);fill-opacity:1;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.2010064,0,0,0.1929894,14.456047,20.838485)" />
      <path
         d="M 22.518883,25.993792 L 22.518883,19.054237 C 22.518883,14.572378 20.889841,14.079872 20.889841,14.079872 C 20.889841,14.079872 18.465545,15.465355 18.465545,20.676917 L 18.465545,25.993792 C 18.465545,27.070628 19.36944,27.937539 20.492214,27.937539 C 21.614988,27.937539 22.518883,27.070628 22.518883,25.993792 z "
         id="path163"
         sodipodi:nodetypes="cczccsc"
         style="fill:url(#linearGradient6646);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 32.46875,23.59375 C 32.346469,23.786629 32.257721,23.856926 32.125,24.125 C 31.470453,25.447075 30.75,27.749094 30.75,31.53125 L 30.75,39.5625 C 30.75,40.621233 31.401386,41.25 32,41.25 C 32.598615,41.25 33.25,40.621236 33.25,39.5625 L 33.25,29.0625 C 33.25,26.035317 32.836412,24.457453 32.46875,23.59375 z "
         id="path165"
         inkscape:original="M 32.5 21.53125 C 32.499999 21.53125 29.5 23.650234 29.5 31.53125 L 29.5 39.5625 C 29.5 41.190908 30.615 42.5 32 42.5 C 33.385 42.5 34.5 41.19091 34.5 39.5625 L 34.5 29.0625 C 34.5 22.284953 32.5 21.53125 32.5 21.53125 z "
         inkscape:radius="-1.2479775"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.14404845;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(1.1553819,0,0,0.6612805,-16.45791,-0.1668828)" />
      <path
         d="M 19.478784,25.131963 C 18.525657,26.086351 18.702665,27.160393 19.478784,27.937539 C 20.254903,28.714683 21.648573,28.570454 22.601703,27.616066 L 29.632128,20.576344 C 31.033063,19.173556 31.500042,17.303172 31.500042,17.303172 L 30.099107,15.900384 C 30.099107,15.900384 28.690106,16.246732 27.443167,17.215498 C 26.51451,18.562168 27.171787,20.234363 25.896301,21.511535 C 25.249536,22.159156 24.868581,21.497875 24.221816,20.850255 C 24.140971,20.769303 24.078147,20.678988 24.017513,20.587232 L 19.478784,25.131963 z "
         id="path167"
         sodipodi:nodetypes="cscccccsscc"
         style="fill:url(#linearGradient6642);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 45.28125,25.03125 C 44.719541,25.204121 43.645354,25.62333 42.40625,26.53125 C 41.945274,27.262439 41.823466,28.099947 41.65625,29.21875 C 41.481314,30.389201 41.165222,31.834778 39.96875,33.03125 C 39.622419,33.377581 39.199139,33.679039 38.6875,33.75 C 38.175861,33.820961 37.703013,33.617611 37.375,33.40625 C 36.901275,33.100997 36.646118,32.744268 36.34375,32.40625 L 30.25,38.5 C 29.694766,39.055234 29.574777,39.521168 29.59375,39.9375 C 29.612723,40.353832 29.809065,40.809065 30.25,41.25 C 30.923456,41.923454 32.352804,41.865943 33.46875,40.75 L 44.125,30.125 C 45.66743,28.582569 46.266019,26.847532 46.46875,26.1875 L 45.28125,25.03125 z "
         id="path169"
         inkscape:original="M 45.5625 23.8125 C 45.5625 23.812501 43.450636 24.316265 41.5625 25.78125 C 40.156313 27.817708 41.150113 30.349887 39.21875 32.28125 C 38.239407 33.260592 37.666843 32.260593 36.6875 31.28125 C 36.565081 31.158834 36.466814 31.013755 36.375 30.875 L 29.5 37.75 C 28.056759 39.193243 28.324787 40.824787 29.5 42 C 30.675213 43.175211 32.775505 42.943242 34.21875 41.5 L 44.875 30.875 C 46.996321 28.753678 47.6875 25.90625 47.6875 25.90625 L 45.5625 23.8125 z "
         inkscape:radius="-1.0726773"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.51321733;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.6604072,0,0,0.6612805,0,0.1637575)" />
      <path
         d="M 13.90625,25.09375 C 13.836214,25.106855 13.771256,25.139334 13.71875,25.1875 C 8.3362423,30.570008 5.4682257,33.393734 3.90625,35.375 C 2.3442743,37.356266 2.125,38.585994 2.125,40.5 C 2.1293321,40.645787 2.216503,40.776311 2.3495079,40.836163 C 2.4825128,40.896015 2.6380141,40.874694 2.75,40.78125 L 16.75,27.28125 C 16.833045,27.199828 16.874359,27.084939 16.862184,26.969277 C 16.850009,26.853615 16.785678,26.749845 16.6875,26.6875 L 14.1875,25.15625 C 14.105543,25.099411 14.004567,25.076972 13.90625,25.09375 z "
         id="path6521"
         inkscape:original="M 14 25.46875 C 3.2329203 36.23583 2.5 36.721255 2.5 40.5 L 16.5 27 L 14 25.46875 z "
         inkscape:radius="0.38100424"
         sodipodi:type="inkscape:offset"
         style="fill:#eeeeec;fill-rule:evenodd;stroke:#888a85;stroke-width:1.51321733px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
         transform="matrix(0.6604072,0,0,0.6612805,0,0.1637575)" />
      <path
         d="M 14.590872,1.2383383 C 14.555003,1.2429717 14.543321,1.2409666 14.467045,1.2590033 C 14.123954,1.340133 13.50073,1.6461002 12.898578,2.0236089 C 12.296426,2.4011176 11.706797,2.8449951 11.350749,3.2015148 L 5.324533,9.2356994 C 4.4921024,10.069231 4.5062354,11.392082 5.3451708,12.232127 C 6.1845698,13.072636 7.4776038,13.072636 8.3170032,12.232127 L 11.041183,9.5043446 C 11.389791,9.1552757 12.946357,7.3977033 12.946357,7.3977033 C 12.946357,7.3977033 11.938785,8.8969578 11.530031,8.4876628 L 10.483964,7.7064882 C 9.8955448,7.1172906 9.8955461,6.1465235 10.483964,5.5573266 L 12.671563,3.3668349 C 13.214893,2.8227866 14.109455,2.8227856 14.652785,3.3668349 L 14.69406,3.408165 C 14.764723,3.0578219 14.826414,2.7119659 14.817887,2.4162442 C 14.808045,2.0749796 14.757918,1.7608115 14.69406,1.5276485 C 14.662131,1.411067 14.620416,1.3292906 14.590872,1.2590033 C 14.585778,1.2468848 14.596045,1.248988 14.590872,1.2383383 z "
         id="path6518"
         sodipodi:nodetypes="cssccscccccccccsssc"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 14.0625,26.21875 C 8.95462,31.324147 6.1252658,34.145036 4.6875,35.96875 C 3.7233231,37.191747 3.4293266,38.038623 3.28125,38.9375 L 15.53125,27.09375 L 14.0625,26.21875 z "
         id="path173"
         inkscape:original="M 14 25.46875 C 3.2329203 36.23583 2.5 36.721255 2.5 40.5 L 16.5 27 L 14 25.46875 z "
         inkscape:radius="-0.59492946"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.51321709;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:6;stroke-dasharray:none;stroke-opacity:1"
         transform="matrix(0.6604072,0,0,0.6612805,0,0.1637575)" />
      <path
         d="M 8.9154972,22.316654 C 9.6445867,22.316654 9.5759044,21.986014 9.5759044,21.324732 L 9.5759044,18.348971"
         id="path175"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:3.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <g
         id="g177"
         transform="matrix(0.6604072,0,0,0.6612805,0,0.1637575)">
        <path
           d="M 13.5,36.5 C 14.604,36.5 15.5,36 15.5,34.999998 C 15.5,33.999999 14.604,33.499999 13.5,33.499999"
           id="path179"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:4.53965187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 13.5,39.5 C 14.604,39.5 15.5,39 15.5,37.999998 C 15.5,36.999999 14.604,36.499999 13.5,36.499999"
           id="path181"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:4.53965187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 13.5,42.5 C 14.604,42.5 15.5,42 15.5,40.999998 C 15.5,39.999999 14.604,39.499999 13.5,39.499999"
           id="path183"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:4.53965187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 13.5,45.5 C 14.604,45.5 15.5,45 15.5,43.999998 C 15.5,42.999999 14.604,42.499999 13.5,42.499999"
           id="path185"
           sodipodi:nodetypes="css"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:4.53965187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 14.914,45.874999 C 14.552,45.624999 14.052,45.499999 13.5,45.499999"
           id="path187"
           sodipodi:nodetypes="cs"
           style="fill:none;fill-opacity:1;stroke:#888a85;stroke-width:4.53965187;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      </g>
      <path
         d="M 8.9154972,22.316654 C 9.6445867,22.316654 9.5759044,21.986014 9.5759044,21.324732 L 9.5759044,18.348971"
         id="path189"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6628);stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 8.9154972,24.300496 C 9.6445867,24.300496 10.236312,23.969856 10.236312,23.308574 C 10.236312,22.647294 9.6445867,22.316654 8.9154972,22.316654"
         id="path191"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6625);stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 10.204279,4.7370969 L 12.91859,1.9607461 C 13.46008,2.5792138 11.587599,4.5447999 10.204279,4.7370969 z "
         id="path193"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6618);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 19.706157,9.399907 L 23.6686,9.399907 C 23.614746,10.511213 20.820108,10.542024 19.706157,9.399907 z "
         id="path195"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6615);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1;opacity:0.65517241" />
      <path
         d="M 30.556332,18.410099 L 27.84202,21.18645 C 27.30053,20.567981 29.173011,18.602396 30.556332,18.410099 z "
         id="path197"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6612);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 8.9154972,26.284337 C 9.6445867,26.284337 10.236312,25.953697 10.236312,25.292415 C 10.236312,24.631135 9.6445867,24.300495 8.9154972,24.300495"
         id="path199"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6609);stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 8.9154972,28.268179 C 9.6445867,28.268179 10.236312,27.937539 10.236312,27.276257 C 10.236312,26.614977 9.6445867,26.284337 8.9154972,26.284337"
         id="path201"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6606);stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 8.9154972,30.25202 C 9.6445867,30.25202 10.236312,29.92138 10.236312,29.260098 C 10.236312,28.598818 9.6445867,28.268178 8.9154972,28.268178"
         id="path203"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient6603);stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 9.849313,30.5 C 9.6102456,30.33468 9.280042,30.25202 8.9154972,30.25202"
         id="path205"
         sodipodi:nodetypes="cs"
         style="fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <g
         id="g207"
         transform="matrix(0.4669784,0.4675959,-0.4669784,0.4675959,11.353977,-0.5582838)" />
      <g
         id="g7201"
         transform="matrix(1.073805,0,0,1.0574754,-0.9733226,-1.0926222)">
        <path
           d="M -4.9225917,9.2994967 C -3.3782074,9.2994967 -2.1348944,10.54281 -2.1348944,12.087194 L -2.1348944,32.70296 C -2.1348944,34.247344 -3.3782074,35.490657 -4.9225917,35.490657 C -6.466976,35.490657 -7.710289,34.247344 -7.710289,32.70296 L -7.710289,12.087194 C -7.710289,10.54281 -6.466976,9.2994967 -4.9225917,9.2994967 z "
           id="path210"
           style="fill:url(#linearGradient7219);fill-opacity:1;stroke:#a40000;stroke-width:0.93866318;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
           transform="matrix(0.7181427,-0.6958959,0.7181427,0.6958959,0,0)" />
        <path
           d="M -7.28125,15.375 C -8.8261961,15.375 -10.03125,16.580053 -10.03125,18.125 L -10.03125,49.3125 C -10.03125,50.857445 -8.8261972,52.062499 -7.28125,52.0625 C -5.7363039,52.0625 -4.53125,50.857447 -4.53125,49.3125 L -4.53125,18.125 C -4.53125,16.580055 -5.7363043,15.375 -7.28125,15.375 z "
           id="path212"
           style="opacity:0.5;fill:none;fill-opacity:1;stroke:url(#linearGradient7221);stroke-width:1.42043126;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
           transform="matrix(0.47457,-0.4598687,0.47457,0.4598687,0,0.1637575)" />
        <rect
           height="1.6211327"
           id="rect214"
           style="fill:#d3d7cf;fill-opacity:1;stroke:#cc0000;stroke-width:0.93843108;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
           transform="matrix(0.7066394,-0.7075738,0.7066394,0.7075738,0,0)"
           width="1.5385274"
           x="-5.0856037"
           y="33.747646" />
        <path
           d="M 22.259454,27.794153 L 21.657256,28.397146"
           id="path216"
           sodipodi:nodetypes="cc"
           style="fill:#babdb6;fill-opacity:1;stroke:#babdb6;stroke-width:1.12611687;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      </g>
      <path
         d="M 6.494796,12.5 L 5.494796,13.507169 L 6.494796,14.514337 L 5.494796,15.521506 L 6.494796,16.528675 L 7.494796,15.521506 L 8.494796,16.528675 L 9.494796,15.521506 L 8.494796,14.514337 L 9.494796,13.507169 L 8.494796,12.5 L 7.494796,13.507169 L 6.494796,12.5 z "
         id="path6228"
         style="opacity:0.66666667;fill:url(#linearGradient7236);fill-opacity:1.0;stroke:none;stroke-width:1.29999995;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
    </g>
    <g
       id="g22"
       style="display:inline;enable-background:new"
       transform="translate(303,177) scale(1.000000,1.000000)">
      <g
         id="g220"
         transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,17.192388,-1.0918836)" />
      <path
         d="M 10.262992,1.2811387 L 18.242187,9.8530353 C 20.942516,12.753947 20.5,14.5 20.5,14.5 C 20.5,14.5 16.24725,14.768754 12.666705,11.188209 L 7.2846794,5.4064023 C 6.6551904,4.7301543 7.5895814,1.7118043 8.1375741,1.1231063 C 8.6855667,0.53440824 9.633503,0.60489073 10.262992,1.2811387 z "
         id="path222"
         sodipodi:nodetypes="cczccsc"
         style="fill:url(#linearGradient5524);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 6.09375,1.59375 C 5.9667569,1.5843076 5.8772565,1.6156121 5.78125,1.71875 C 5.817086,1.6802521 5.6344394,1.9528252 5.5,2.28125 C 5.3655606,2.6096748 5.2247389,3.0260519 5.125,3.4375 C 5.0252611,3.8489481 4.973771,4.275945 4.96875,4.5625 C 4.963729,4.849055 5.0784865,4.9639591 4.9375,4.8125 L 10.3125,10.59375 C 12.977116,13.258366 15.459278,13.469516 16.53125,13.5 C 16.349935,12.854038 15.866246,11.804519 14.59375,10.4375 L 6.59375,1.875 C 6.4149186,1.6828849 6.2234208,1.6033915 6.09375,1.59375 z "
         id="path6361"
         inkscape:original="M 6.15625 0.71875 C 5.7720807 0.69018565 5.3989963 0.830651 5.125 1.125 C 4.5770073 1.713698 3.651761 4.7300022 4.28125 5.40625 L 9.65625 11.1875 C 13.236795 14.768045 17.5 14.5 17.5 14.5 C 17.5 14.5 17.950329 12.744662 15.25 9.84375 L 7.25 1.28125 C 6.9352555 0.94312601 6.5404193 0.74731435 6.15625 0.71875 z "
         inkscape:radius="-0.88837439"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="translate(3,0)" />
      <path
         d="M 9.1875,0.21875 C 8.6586962,0.17943156 8.1240968,0.37936493 7.75,0.78125 C 7.5158008,1.0328456 7.3837001,1.34704 7.21875,1.75 C 7.0537999,2.15296 6.8978993,2.6437925 6.78125,3.125 C 6.6646007,3.6062075 6.5702729,4.0876442 6.5625,4.53125 C 6.5547271,4.9748558 6.5810824,5.4006788 6.90625,5.75 L 12.28125,11.53125 C 12.291664,11.531576 12.302086,11.531576 12.3125,11.53125 C 16.042074,15.260824 20.53125,15 20.53125,15 C 20.741732,14.980144 20.916936,14.829968 20.96875,14.625 C 20.96875,14.625 21.031219,14.442033 21.03125,14.1875 C 21.031281,13.932967 20.999752,13.569447 20.875,13.125 C 20.625496,12.236107 20.018845,10.997381 18.625,9.5 L 10.625,0.9375 C 10.233819,0.51726142 9.7147979,0.25795647 9.1875,0.21875 z "
         id="path6393"
         inkscape:original="M 9.15625 0.71875 C 8.7720807 0.69018565 8.3989963 0.830651 8.125 1.125 C 7.5770073 1.713698 6.651761 4.7300022 7.28125 5.40625 L 12.65625 11.1875 C 16.236795 14.768045 20.5 14.5 20.5 14.5 C 20.5 14.5 20.950329 12.744662 18.25 9.84375 L 10.25 1.28125 C 9.9352555 0.94312601 9.5404193 0.74731435 9.15625 0.71875 z "
         inkscape:radius="0.49961689"
         sodipodi:type="inkscape:offset"
         style="opacity:0.38362068;fill:url(#linearGradient6404);fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 9.53874,0.50742344 C 8.0976701,0.50742341 6.9457794,1.851898 6.9457795,3.5065132 C 6.9457796,5.1611281 8.0976714,6.483712 9.53874,6.483712 L 13.104062,6.4837125 C 13.104062,6.4837125 14.5,6.5 14.5,6.5 C 14.5,6.5 14.5,4.5 14.5,4.5 C 14.5,4 15,3.5 15.5,3.5 L 17.5,3.5 C 18,3.5 18.5,4 18.5,4.5 C 18.5,4.5 18.5,5.5 18.5,5.5 L 19.5,5.5 C 20.858997,4.731391 21.503495,2.9916054 21.503495,2.1019114 C 21.503495,1.1905441 18.854024,0.50742341 17.412953,0.50742344 L 9.53874,0.50742344 z "
         id="path226"
         sodipodi:nodetypes="cscccccccccscc"
         style="fill:url(#linearGradient5517);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 21.124815 20.40901 A 10.474019 1.4142135 0 1 1  0.17677689,20.40901 A 10.474019 1.4142135 0 1 1  21.124815 20.40901 z"
         id="path6473"
         sodipodi:cx="10.650796"
         sodipodi:cy="20.40901"
         sodipodi:rx="10.474019"
         sodipodi:ry="1.4142135"
         sodipodi:type="arc"
         style="opacity:0.38362068;fill:url(#radialGradient6481);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:6.69999981;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="matrix(0.8002763,0,0,1.71875,1.1566269,-15.155112)" />
      <path
         d="M 8.1432207,16.503617 C 7.0840114,16.503619 6.5863635,17.39481 6.5863635,18.50181 C 6.586364,19.608808 7.4407904,20.499999 8.5,20.5 L 18.5,20.5 L 21.5,19.5 L 21.5,17.5 L 18.5,16.5 C 17.236704,16.796842 16.520323,18.513607 15.102878,18.513607 C 14.38413,18.513607 14.5,17.422499 14.5,16.5 L 8.1432207,16.503617 z "
         id="path229"
         sodipodi:nodetypes="cscccccscc"
         style="fill:url(#linearGradient5510);fill-opacity:1;stroke:#888a85;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <path
         d="M 6.6952174,5.9492397 C 4.4074214,9.1351715 0.26115816,12.530455 0.46564143,16 L 9.454482,7.6761877 L 6.6952174,5.9492397 z "
         id="path231"
         sodipodi:nodetypes="cccc"
         style="fill:#eeeeec;fill-rule:evenodd;stroke:#888a85;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 6.53125,1.21875 C 5.5472562,1.21875 4.6562499,2.1864509 4.65625,3.5 C 4.65625,4.8135485 5.5366412,5.75 6.53125,5.75 L 10.09375,5.75 C 10.104165,5.7497784 10.114585,5.7497784 10.125,5.75 C 10.125,5.75 10.441541,5.7431454 10.75,5.75 C 10.75,5.1640625 10.75,4.5 10.75,4.5 C 10.75,4.0052083 10.978354,3.5841459 11.28125,3.28125 C 11.584146,2.9783541 12.005208,2.75 12.5,2.75 L 14.5,2.75 C 14.994792,2.75 15.415854,2.9783541 15.71875,3.28125 C 16.021646,3.5841459 16.25,4.0052083 16.25,4.5 C 16.25,4.5 16.25,4.6439819 16.25,4.71875 C 16.690277,4.4181555 17.092982,3.9894013 17.34375,3.5 C 17.625122,2.950873 17.75,2.3622305 17.75,2.09375 C 17.75,2.2221609 17.801977,2.1878789 17.625,2.0625 C 17.448023,1.9371211 17.128513,1.783954 16.75,1.65625 C 15.992974,1.4008419 15.010871,1.25 14.40625,1.25 L 6.53125,1.21875 z "
         id="path5384"
         inkscape:original="M 6.53125 0.5 C 5.0901804 0.49999995 3.9374999 1.8453848 3.9375 3.5 C 3.9375 5.154615 5.0901817 6.46875 6.53125 6.46875 L 10.09375 6.46875 C 10.09375 6.4687498 11.5 6.5 11.5 6.5 C 11.5 6.5 11.5 4.5 11.5 4.5 C 11.5 4 12 3.5 12.5 3.5 L 14.5 3.5 C 15 3.5 15.5 4 15.5 4.5 C 15.5 4.5 15.5 5.5 15.5 5.5 L 16.5 5.5 C 17.858997 4.731391 18.5 2.983444 18.5 2.09375 C 18.500001 1.1823828 15.847321 0.49999997 14.40625 0.5 L 6.53125 0.5 z "
         inkscape:radius="-0.734375"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="translate(3,0)" />
      <path
         d="M 15.26053,1.0584329 L 18,1 C 17.961976,2.1603447 16.047056,2.2509481 15.26053,1.0584329 z "
         id="path234"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient5486);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 5.15625,17.25 C 4.8374146,17.250001 4.728936,17.341931 4.59375,17.53125 C 4.458564,17.720569 4.34375,18.060161 4.34375,18.5 C 4.3437503,19.224414 4.8623312,19.749999 5.5,19.75 L 15.34375,19.75 L 17.75,18.9375 L 17.75,18.0625 L 15.53125,17.3125 C 15.200154,17.436682 14.829834,17.720589 14.34375,18.15625 C 13.805542,18.638628 13.102865,19.25 12.09375,19.25 C 11.726671,19.25 11.307158,19.056932 11.09375,18.78125 C 10.880342,18.505568 10.820819,18.228535 10.78125,17.96875 C 10.74254,17.714607 10.780782,17.491484 10.78125,17.25 L 5.15625,17.25 z "
         id="path236"
         inkscape:original="M 5.15625 16.5 C 4.0970405 16.500003 3.59375 17.393 3.59375 18.5 C 3.5937504 19.606998 4.4407904 20.499999 5.5 20.5 L 15.5 20.5 L 18.5 19.5 L 18.5 17.5 L 15.5 16.5 C 14.236704 16.796842 13.511195 18.5 12.09375 18.5 C 11.375002 18.5 11.5 17.422499 11.5 16.5 L 5.15625 16.5 z "
         inkscape:radius="-0.75"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
         transform="translate(3,0)" />
      <path
         d="M 9.53125 0 C 7.7789795 -6.0797546e-08 6.4374999 1.6131697 6.4375 3.5 C 6.4375001 3.8248552 6.4874024 4.1372386 6.5625 4.4375 C 6.5612026 4.4678322 6.5630256 4.5012521 6.5625 4.53125 C 6.5547271 4.9748558 6.5810824 5.4006788 6.90625 5.75 L 12.28125 11.53125 C 12.291664 11.531576 12.302086 11.531576 12.3125 11.53125 C 12.535025 11.753775 12.773182 11.961233 13 12.15625 L 13 3.5 C 13 2.0844964 12.317677 0.82767194 11.28125 0 L 9.53125 0 z M 8.15625 16 C 7.4861324 16.000002 6.902749 16.304755 6.5625 16.78125 C 6.222251 17.257745 6.09375 17.870726 6.09375 18.5 C 6.0937509 19.862054 7.1597632 20.999999 8.5 21 L 11.28125 21 C 12.317677 20.172328 13 18.915504 13 17.5 L 13 16 L 8.15625 16 z "
         id="path6449"
         style="opacity:0.15;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
      <path
         d="M 6.875,7.09375 C 5.7491164,8.5422632 4.4289503,9.9945379 3.34375,11.40625 C 2.8454285,12.054505 2.4894774,12.662125 2.15625,13.28125 L 8.03125,7.84375 L 6.875,7.09375 z "
         id="path6376"
         inkscape:original="M 6.6875 5.9375 C 4.3997038 9.1234318 0.26426673 12.530455 0.46875 16 L 9.46875 7.6875 L 6.6875 5.9375 z "
         inkscape:radius="-0.86960024"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1" />
      <rect
         height="20"
         id="rect5529"
         rx="3.001497"
         ry="3.001497"
         style="opacity:1;fill:url(#linearGradient6430);fill-opacity:1.0;stroke:#a40000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         width="6.0029941"
         x="5.4970059"
         y="0.5" />
      <path
         d="M 15.26053,19.85399 L 18,19.912423 C 17.961976,18.752078 16.047056,18.661475 15.26053,19.85399 z "
         id="path6378"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6380);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 18.880086,12.143488 L 16.984306,10.165072 C 16.190706,11.012447 17.480693,12.430566 18.880086,12.143488 z "
         id="path6382"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6384);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <rect
         height="18"
         id="rect6406"
         rx="2"
         ry="2"
         style="opacity:0.4;fill:none;fill-opacity:1.0;stroke:url(#linearGradient6414);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         width="4"
         x="6.5"
         y="1.5" />
      <path
         d="M 8 6 L 8 7 L 7 7 L 7 8 L 8 8 L 8 9 L 9 9 L 9 8 L 10 8 L 10 7 L 9 7 L 9 6 L 8 6 z "
         id="rect6432"
         style="opacity:1;fill:url(#linearGradient6443);fill-opacity:1.0;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:6.69999981;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
    </g>
    <g
       id="g16"
       style="display:inline;enable-background:new"
       transform="translate(303,219) scale(1.000000,1.000000)">
      <g
         id="g246"
         transform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,17.192388,-1.0918836)" />
      <g
         id="g5975"
         transform="translate(-21,0)">
        <path
           d="M 26.262992,1.2811387 L 32.242187,7.8530353 C 34.942516,10.753947 34.5,12.5 34.5,12.5 C 34.5,12.5 30.05975,12.831254 26.666705,9.188209 L 22.284679,4.4064023 C 21.65519,3.7301543 23.589581,1.7118043 24.137574,1.1231063 C 24.685567,0.5344082 25.633503,0.6048907 26.262992,1.2811387 z "
           id="path249"
           sodipodi:nodetypes="cczccsc"
           style="fill:url(#linearGradient5980);fill-opacity:1;stroke:#888a85;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1" />
        <path
           d="M 4.9375,4.8125 L 10.3125,10.59375 C 12.977116,13.258366 15.459278,13.469516 16.53125,13.5 C 16.349935,12.854038 15.866246,11.804519 14.59375,10.4375 L 8.59375,3.875 C 7.0450133,3.4331007 5.060626,3.7720755 4.9375,4.8125 z "
           id="path251"
           sodipodi:nodetypes="cccccc"
           style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1"
           transform="translate(17,-2)" />
        <path
           d="M 32.880086,10.143488 L 30.984306,8.165072 C 30.190706,9.012447 31.480693,10.430566 32.880086,10.143488 z "
           id="path253"
           sodipodi:nodetypes="ccc"
           style="fill:url(#linearGradient5982);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      </g>
      <path
         d="M 4.1875,0.25 C 3.671028,0.21159845 3.146812,0.41978432 2.78125,0.8125 C 2.511821,1.1019417 1.873568,1.7679817 1.375,2.46875 C 1.125716,2.8191342 0.907203,3.163756 0.78125,3.53125 C 0.655297,3.898744 0.623796,4.3817439 0.9375,4.71875 L 2.96875,6.9375 C 3.1621062,6.9477191 3.3445119,6.96875 3.53125,6.96875 L 7.09375,6.96875 C 7.09375,6.96875 8.46875,7 8.46875,7 C 9.2178547,7.0183924 9.842849,6.4786154 9.96875,5.75 L 5.59375,0.96875 C 5.209086,0.55551213 4.702594,0.28829912 4.1875,0.25 z "
         id="path6989"
         sodipodi:nodetypes="cssscccccccc"
         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.10000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1;opacity:0.1" />
      <path
         d="M 3.53874,0.50742344 C 2.0976701,0.50742341 0.9457794,1.851898 0.9457795,3.5065132 C 0.9457796,5.1611281 2.0976714,5.483712 3.53874,5.483712 L 7.104062,5.4837125 C 7.104062,5.4837125 8.5,5.5 8.5,5.5 C 8.5,5.5 8.5,4.5 8.5,4.5 C 8.5,4 9,3.5 9.5,3.5 L 10.5,3.5 C 11,3.5 11.5,4 11.5,4.5 C 11.5,4.5 11.5,5.5 11.5,5.5 L 12.5,5.5 C 13.858997,4.731391 14.503495,2.9916054 14.503495,2.1019114 C 14.503495,1.1905441 11.854024,0.50742341 10.412953,0.50742344 L 3.53874,0.50742344 z "
         id="path256"
         sodipodi:nodetypes="cscccccccccscc"
         style="fill:url(#linearGradient6983);fill-opacity:1;stroke:#888a85;stroke-width:1.1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <path
         d="M 3.53125,1.28125 C 2.576431,1.28125 1.7187499,2.208221 1.71875,3.5 C 1.71875,4.1458892 1.8447104,4.2857479 2.09375,4.4375 C 2.3427896,4.5892521 2.8674833,4.6875 3.53125,4.6875 L 7.09375,4.6875 C 7.1041656,4.6872917 7.1145844,4.6872917 7.125,4.6875 C 7.125,4.6875 7.4292402,4.6810664 7.71875,4.6875 C 7.71875,4.6303711 7.71875,4.5 7.71875,4.5 C 7.71875,3.9895833 7.9397384,3.5602616 8.25,3.25 C 8.5602616,2.9397384 8.9895833,2.71875 9.5,2.71875 L 10.5,2.71875 C 11.010417,2.71875 11.439738,2.9397384 11.75,3.25 C 12.060262,3.5602616 12.28125,3.9895833 12.28125,4.5 C 12.28125,4.5 12.28125,4.5976562 12.28125,4.625 C 12.694408,4.329665 13.072579,3.9682315 13.3125,3.5 C 13.59076,2.9569463 13.71875,2.3509731 13.71875,2.09375 C 13.71875,2.2449002 13.795963,2.2148679 13.625,2.09375 C 13.454037,1.9726321 13.12576,1.814275 12.75,1.6875 C 11.998481,1.4339499 11.003472,1.28125 10.40625,1.28125 L 3.53125,1.28125 z "
         id="path6006"
         inkscape:original="M 3.53125 0.5 C 2.0901802 0.49999995 0.9374999 1.8453848 0.9375 3.5 C 0.9375001 5.154615 2.0901814 5.46875 3.53125 5.46875 L 7.09375 5.46875 C 7.0937499 5.4687498 8.5 5.5 8.5 5.5 C 8.5 5.5 8.5 4.5 8.5 4.5 C 8.5 4 9 3.5 9.5 3.5 L 10.5 3.5 C 11 3.5 11.5 4 11.5 4.5 C 11.5 4.5 11.5 5.5 11.5 5.5 L 12.5 5.5 C 13.858997 4.731391 14.5 2.983444 14.5 2.09375 C 14.5 1.1823828 11.847321 0.49999997 10.40625 0.5 L 3.53125 0.5 z "
         inkscape:radius="-0.78125"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;stroke-dasharray:none" />
      <path
         d="M 9.26053,1.0584329 L 12,1 C 11.961976,2.1603447 10.047056,2.2509481 9.26053,1.0584329 z "
         id="path259"
         sodipodi:nodetypes="ccc"
         style="fill:url(#linearGradient6980);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 3.53125 -0.03125 C 1.7595297 -0.031250061 0.40624989 1.5986562 0.40625 3.5 C 0.40625006 4.4506719 0.78884636 5.1862856 1.40625 5.5625 C 1.5606009 5.6565536 1.737398 5.7225993 1.90625 5.78125 L 5.3125 9.5 C 6.1674851 10.417981 7.0937862 11.095054 8 11.59375 L 8 3.5 C 8 2.069038 7.3059603 0.79562678 6.25 -0.03125 L 3.53125 -0.03125 z "
         id="path6995"
         style="fill:#000000;fill-opacity:1;stroke:none;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.7;stroke-opacity:1;opacity:0.15" />
      <rect
         height="15"
         id="rect262"
         rx="3.001497"
         ry="3.001497"
         style="opacity:1;fill:url(#linearGradient6430);fill-opacity:1;stroke:#a40000;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         width="6.0029941"
         x="0.49700594"
         y="0.5" />
      <rect
         height="13"
         id="rect264"
         rx="2"
         ry="2"
         style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient6414);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1"
         width="4"
         x="1.5"
         y="1.5" />
      <path
         d="M 3,6 L 3,7 L 2,7 L 2,8 L 3,8 L 3,9 L 4,9 L 4,8 L 5,8 L 5,7 L 4,7 L 4,6 L 3,6 z "
         id="path266"
         style="opacity:1;fill:url(#linearGradient6443);fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:6.69999981;stroke-dasharray:none;stroke-dashoffset:0.7;stroke-opacity:1" />
    </g>
  </g>
  <g
     id="layer4"
     inkscape:groupmode="layer"
     inkscape:label="hires"
     style="display:inline" />
</svg>