summaryrefslogtreecommitdiff
path: root/src/dialog-password.svg
blob: 9f34ef059ad974b3ae1d4ea790c05a827cca3f0b (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
1449
1450
1451
1452
1453
1454
1455
1456
1457
<?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="dialog-password.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="linearGradient7614"
       inkscape:collect="always">
      <stop
         id="stop7616"
         offset="0"
         style="stop-color:#babdb6;stop-opacity:1" />
      <stop
         id="stop7628"
         offset="0.4873454"
         style="stop-color:#ffffff;stop-opacity:1" />
      <stop
         id="stop7618"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient7604"
       inkscape:collect="always">
      <stop
         id="stop7606"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop7608"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7592"
       inkscape:collect="always">
      <stop
         id="stop7594"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop7596"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7582"
       inkscape:collect="always">
      <stop
         id="stop7584"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop7586"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7567"
       inkscape:collect="always">
      <stop
         id="stop7569"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop7571"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient7557"
       inkscape:collect="always">
      <stop
         id="stop7559"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         id="stop7561"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient7549"
       inkscape:collect="always">
      <stop
         id="stop7551"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1" />
      <stop
         id="stop7553"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient7491"
       inkscape:collect="always">
      <stop
         id="stop7493"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         id="stop7495"
         offset="1"
         style="stop-color:#babdb6;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6826"
       inkscape:collect="always">
      <stop
         id="stop6828"
         offset="0"
         style="stop-color:#babdb6;stop-opacity:1" />
      <stop
         id="stop6830"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2816"
       inkscape:collect="always">
      <stop
         id="stop2818"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop2820"
         offset="1"
         style="stop-color:white;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient4542"
       inkscape:collect="always">
      <stop
         id="stop4544"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop4546"
         offset="1"
         style="stop-color:#888a85;stop-opacity:0" />
    </linearGradient>
    <linearGradient
       id="linearGradient6958"
       inkscape:collect="always">
      <stop
         id="stop6960"
         offset="0"
         style="stop-color:#000000;stop-opacity:1" />
      <stop
         id="stop6962"
         offset="1"
         style="stop-color:#888a85;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6789"
       inkscape:collect="always"
       x1="6.7188582"
       x2="44.344444"
       xlink:href="#linearGradient7614"
       y1="22.936218"
       y2="42.604996" />
    <linearGradient
       gradientTransform="matrix(0,0.625,-0.676136,0,37.10227,15.875)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6791"
       inkscape:collect="always"
       x1="17"
       x2="17"
       xlink:href="#linearGradient6958"
       y1="45.248375"
       y2="30.759407" />
    <linearGradient
       gradientTransform="matrix(0.727273,0,0,0.999999,12.27273,-34.84375)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6798"
       inkscape:collect="always"
       x1="33.120464"
       x2="22.328388"
       xlink:href="#linearGradient4542"
       y1="20.5"
       y2="20.5" />
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6834"
       inkscape:collect="always"
       x1="15.406166"
       x2="16.864777"
       xlink:href="#linearGradient2816"
       y1="37.34367"
       y2="24.249567" />
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient7425"
       inkscape:collect="always"
       x1="13.819278"
       x2="36.227631"
       xlink:href="#linearGradient6826"
       y1="30.029789"
       y2="45.194965" />
    <linearGradient
       gradientTransform="matrix(0,0.625,-0.676136,0,37.10227,15.875)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient7427"
       inkscape:collect="always"
       x1="17"
       x2="17"
       xlink:href="#linearGradient6958"
       y1="45.248375"
       y2="30.759407" />
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient7431"
       inkscape:collect="always"
       x1="15.406166"
       x2="16.864777"
       xlink:href="#linearGradient2816"
       y1="37.34367"
       y2="24.249567" />
    <linearGradient
       gradientTransform="matrix(0.727273,0,0,0.999999,12.27273,-34.84375)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient7433"
       inkscape:collect="always"
       x1="33.120464"
       x2="22.328388"
       xlink:href="#linearGradient4542"
       y1="20.5"
       y2="20.5" />
    <radialGradient
       cx="20"
       cy="46"
       fx="20"
       fy="46"
       gradientTransform="matrix(1,0,0,0.25,0,34.5)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient7610"
       inkscape:collect="always"
       r="8"
       xlink:href="#linearGradient7604" />
    <radialGradient
       cx="20"
       cy="46"
       fx="20"
       fy="46"
       gradientTransform="matrix(1,0,0,0.25,0,34.5)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient7612"
       inkscape:collect="always"
       r="8"
       xlink:href="#linearGradient7604" />
    <radialGradient
       cx="17.812502"
       cy="14.729167"
       fx="17.812502"
       fy="14.729167"
       gradientTransform="matrix(1,0,0,0.6315789,0,2.947369)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6179"
       inkscape:collect="always"
       r="9.5000006"
       xlink:href="#linearGradient7557" />
    <radialGradient
       cx="23.681061"
       cy="5.3414755"
       fx="23.681061"
       fy="5.3414755"
       gradientTransform="matrix(-1.5922835,-0.1907818,-1.1802872,-1.4345654,57.810344,15.557175)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6183"
       inkscape:collect="always"
       r="5.0552441"
       xlink:href="#linearGradient7491" />
    <radialGradient
       cx="11.15625"
       cy="2.0625"
       fx="11.15625"
       fy="2.0625"
       gradientTransform="matrix(1,0,0,0.6206897,0,0.7823276)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6187"
       inkscape:collect="always"
       r="0.90625"
       xlink:href="#linearGradient7592" />
    <radialGradient
       cx="24.090876"
       cy="5.052979"
       fx="24.090876"
       fy="5.052979"
       gradientTransform="matrix(1.6372128,-0.3629926,2.1525103,1.8500902,-36.53018,2.08716)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6191"
       inkscape:collect="always"
       r="4.4921517"
       xlink:href="#linearGradient7549" />
    <linearGradient
       gradientTransform="matrix(1.1304264,-0.235981,0.915432,0.6373638,-15.020125,7.538008)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6195"
       inkscape:collect="always"
       x1="20.722668"
       x2="22.697027"
       xlink:href="#linearGradient7567"
       y1="16.830494"
       y2="15.894469" />
    <radialGradient
       cx="11.15625"
       cy="2.0625"
       fx="11.15625"
       fy="2.0625"
       gradientTransform="matrix(1,0,0,0.6206897,0,0.7823276)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6201"
       inkscape:collect="always"
       r="0.90625"
       xlink:href="#linearGradient7582" />
    <radialGradient
       cx="20"
       cy="46"
       fx="20"
       fy="46"
       gradientTransform="matrix(1,0,0,0.25,0,34.5)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6228"
       inkscape:collect="always"
       r="8"
       xlink:href="#linearGradient7604" />
    <radialGradient
       cx="20"
       cy="46"
       fx="20"
       fy="46"
       gradientTransform="matrix(1,0,0,0.25,0,34.5)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6230"
       inkscape:collect="always"
       r="8"
       xlink:href="#linearGradient7604" />
    <radialGradient
       cx="11.15625"
       cy="2.0625"
       fx="11.15625"
       fy="2.0625"
       gradientTransform="matrix(1,0,0,0.6206897,0,0.7823276)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6234"
       inkscape:collect="always"
       r="0.90625"
       xlink:href="#linearGradient7582" />
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6236"
       inkscape:collect="always"
       x1="13.819278"
       x2="36.227631"
       xlink:href="#linearGradient6826"
       y1="30.029789"
       y2="45.194965" />
    <linearGradient
       gradientTransform="matrix(0,0.625,-0.676136,0,37.10227,15.875)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6238"
       inkscape:collect="always"
       x1="17"
       x2="17"
       xlink:href="#linearGradient6958"
       y1="45.248375"
       y2="30.759407" />
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6240"
       inkscape:collect="always"
       x1="15.406166"
       x2="16.864777"
       xlink:href="#linearGradient2816"
       y1="37.34367"
       y2="24.249567" />
    <linearGradient
       gradientTransform="matrix(0.727273,0,0,0.999999,12.27273,-34.84375)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6242"
       inkscape:collect="always"
       x1="33.120464"
       x2="22.328388"
       xlink:href="#linearGradient4542"
       y1="20.5"
       y2="20.5" />
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6244"
       inkscape:collect="always"
       x1="6.7188582"
       x2="44.344444"
       xlink:href="#linearGradient7614"
       y1="22.936218"
       y2="42.604996" />
    <linearGradient
       gradientTransform="matrix(0,0.625,-0.676136,0,37.10227,15.875)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6246"
       inkscape:collect="always"
       x1="17"
       x2="17"
       xlink:href="#linearGradient6958"
       y1="45.248375"
       y2="30.759407" />
    <linearGradient
       gradientTransform="matrix(0,0.673693,-0.676136,0,37.10227,14.81577)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6248"
       inkscape:collect="always"
       x1="15.406166"
       x2="16.864777"
       xlink:href="#linearGradient2816"
       y1="37.34367"
       y2="24.249567" />
    <linearGradient
       gradientTransform="matrix(0.727273,0,0,0.999999,12.27273,-34.84375)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6250"
       inkscape:collect="always"
       x1="33.120464"
       x2="22.328388"
       xlink:href="#linearGradient4542"
       y1="20.5"
       y2="20.5" />
    <linearGradient
       gradientTransform="matrix(0.7950203,-0.1659636,0.6438164,0.4482531,-12.337199,5.0427279)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6262"
       inkscape:collect="always"
       x1="20.722668"
       x2="22.697027"
       xlink:href="#linearGradient7567"
       y1="16.830494"
       y2="15.894469" />
    <radialGradient
       cx="24.090876"
       cy="5.052979"
       fx="24.090876"
       fy="5.052979"
       gradientTransform="matrix(1.1514393,-0.2552899,1.5138441,1.3011544,-27.465057,1.209188)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6265"
       inkscape:collect="always"
       r="4.4921517"
       xlink:href="#linearGradient7549" />
    <radialGradient
       cx="23.681061"
       cy="5.3414755"
       fx="23.681061"
       fy="5.3414755"
       gradientTransform="matrix(-1.1198409,-0.1341754,-0.830087,-1.0089189,38.883916,10.682547)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6269"
       inkscape:collect="always"
       r="5.055244"
       xlink:href="#linearGradient7491" />
    <radialGradient
       cx="17.812502"
       cy="14.729167"
       fx="17.812502"
       fy="14.729167"
       gradientTransform="matrix(0.7032924,0,0,0.4441846,-1.7736594,1.8141664)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6286"
       inkscape:collect="always"
       r="9.500001"
       xlink:href="#linearGradient7557" />
    <linearGradient
       id="linearGradient6877"
       inkscape:collect="always">
      <stop
         id="stop6879"
         offset="0"
         style="stop-color:#d3d7cf;stop-opacity:1" />
      <stop
         id="stop6881"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6863"
       inkscape:collect="always">
      <stop
         id="stop6865"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop6867"
         offset="1"
         style="stop-color:#babdb6;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6855"
       inkscape:collect="always">
      <stop
         id="stop6857"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop6859"
         offset="1"
         style="stop-color:#babdb6;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6847"
       inkscape:collect="always">
      <stop
         id="stop6849"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1" />
      <stop
         id="stop6851"
         offset="1"
         style="stop-color:#babdb6;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6837"
       inkscape:collect="always">
      <stop
         id="stop6839"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6841"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6821"
       inkscape:collect="always">
      <stop
         id="stop6823"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop6825"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6811"
       inkscape:collect="always">
      <stop
         id="stop6813"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6815"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6762"
       inkscape:collect="always">
      <stop
         id="stop6764"
         offset="0"
         style="stop-color:#000000;stop-opacity:1;" />
      <stop
         id="stop6766"
         offset="1"
         style="stop-color:#000000;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6753"
       inkscape:collect="always">
      <stop
         id="stop6755"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop6757"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6742"
       inkscape:collect="always">
      <stop
         id="stop6744"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6746"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6833"
       inkscape:collect="always">
      <stop
         id="stop6835"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6837"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6793"
       inkscape:collect="always">
      <stop
         id="stop6795"
         offset="0"
         style="stop-color:#d3d7cf;stop-opacity:1;" />
      <stop
         id="stop6797"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,4.0850314,-5.107357)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6119"
       inkscape:collect="always"
       x1="9.4656744"
       x2="13.530422"
       xlink:href="#linearGradient6793"
       y1="4.9728107"
       y2="8.6812181" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6121"
       inkscape:collect="always"
       x1="6.5"
       x2="7.5"
       xlink:href="#linearGradient6762"
       y1="9"
       y2="5.5" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6123"
       inkscape:collect="always"
       x1="8.7232523"
       x2="5.9061942"
       xlink:href="#linearGradient6833"
       y1="6.2651649"
       y2="5.2978506" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6125"
       inkscape:collect="always"
       x1="9.9340439"
       x2="10.562407"
       xlink:href="#linearGradient6742"
       y1="4.53125"
       y2="22.717516" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6127"
       inkscape:collect="always"
       x1="14.4375"
       x2="8"
       xlink:href="#linearGradient6753"
       y1="13.8125"
       y2="7.5" />
    <linearGradient
       gradientTransform="matrix(0,1.0000001,-1.0000001,0,2.9939421,-1.0071264)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6776"
       inkscape:collect="always"
       x1="9.4656744"
       x2="13.530422"
       xlink:href="#linearGradient6793"
       y1="4.9728107"
       y2="8.6812181" />
    <linearGradient
       gradientTransform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,-3.506058,-0.3596506)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6778"
       inkscape:collect="always"
       x1="6.4375"
       x2="8.4537582"
       xlink:href="#linearGradient6762"
       y1="6.7797499"
       y2="8.7975082" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6780"
       inkscape:collect="always"
       x1="8.7232523"
       x2="6.1381931"
       xlink:href="#linearGradient6833"
       y1="6.2651649"
       y2="6.2651649" />
    <linearGradient
       gradientTransform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,-3.506058,-0.3596506)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6782"
       inkscape:collect="always"
       x1="9.2127371"
       x2="17.65192"
       xlink:href="#linearGradient6753"
       y1="9.4198446"
       y2="17.15192" />
    <radialGradient
       cx="2.0133355"
       cy="-0.56112808"
       fx="2.0133355"
       fy="-0.56112808"
       gradientTransform="matrix(1.8934298,-0.5603083,0.3410254,0.8002882,-1.5251608,2.5117967)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6817"
       inkscape:collect="always"
       r="4.4564355"
       xlink:href="#linearGradient6811" />
    <radialGradient
       cx="6.53125"
       cy="5.5"
       fx="6.53125"
       fy="5.5"
       gradientTransform="matrix(1,0,0,0.5376344,0,2.5430108)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6827"
       inkscape:collect="always"
       r="2.90625"
       xlink:href="#linearGradient6821" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6843"
       inkscape:collect="always"
       x1="-7.96875"
       x2="0.96875"
       xlink:href="#linearGradient6837"
       y1="11.5"
       y2="11.5" />
    <radialGradient
       cx="3.625"
       cy="1.5411059"
       fx="3.625"
       fy="1.5411059"
       gradientTransform="matrix(0.9538273,0,0,0.5635838,0.1673761,1.7252077)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6853"
       inkscape:collect="always"
       r="5.40625"
       xlink:href="#linearGradient6847" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6861"
       inkscape:collect="always"
       x1="4.703125"
       x2="0.71875"
       xlink:href="#linearGradient6855"
       y1="11.5"
       y2="7.0625" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6869"
       inkscape:collect="always"
       x1="0.9375"
       x2="3.625"
       xlink:href="#linearGradient6863"
       y1="6.5625"
       y2="8.75" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6883"
       inkscape:collect="always"
       x1="10.689062"
       x2="7.875"
       xlink:href="#linearGradient6877"
       y1="5.46875"
       y2="5.46875" />
    <radialGradient
       cx="6.53125"
       cy="5.5"
       fx="6.53125"
       fy="5.5"
       gradientTransform="matrix(1,0,0,0.5376344,0,2.5430108)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6887"
       inkscape:collect="always"
       r="2.90625"
       xlink:href="#linearGradient6821" />
    <linearGradient
       gradientTransform="matrix(0.7071068,0.7071068,-0.7071068,0.7071068,4.0850314,-5.107357)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6150"
       inkscape:collect="always"
       x1="9.4656744"
       x2="13.530422"
       xlink:href="#linearGradient6793"
       y1="4.9728107"
       y2="8.6812181" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6154"
       inkscape:collect="always"
       x1="8.7232523"
       x2="5.9061942"
       xlink:href="#linearGradient6833"
       y1="6.2651649"
       y2="5.2978506" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6748"
       inkscape:collect="always"
       x1="9.9340439"
       x2="10.562407"
       xlink:href="#linearGradient6742"
       y1="4.53125"
       y2="22.717516" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6760"
       inkscape:collect="always"
       x1="14.4375"
       x2="8"
       xlink:href="#linearGradient6753"
       y1="13.8125"
       y2="7.5" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6768"
       inkscape:collect="always"
       x1="7.1875"
       x2="7.5"
       xlink:href="#linearGradient6762"
       y1="8.84375"
       y2="6.03125" />
  </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">status</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">dialog-password</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 28,46 A 8,2 0 1 1 12,46 A 8,2 0 1 1 28,46 z"
         id="path7600"
         sodipodi:cx="20"
         sodipodi:cy="46"
         sodipodi:rx="8"
         sodipodi:ry="2"
         sodipodi:type="arc"
         style="opacity:0.16289593;fill:url(#radialGradient7612);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741673999999996;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(1.1875,0,0,1.75,9.75,-37.5)" />
      <path
         d="M 28,46 A 8,2 0 1 1 12,46 A 8,2 0 1 1 28,46 z"
         id="path7602"
         sodipodi:cx="20"
         sodipodi:cy="46"
         sodipodi:rx="8"
         sodipodi:ry="2"
         sodipodi:type="arc"
         style="opacity:0.16289593;fill:url(#radialGradient7610);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741673999999996;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(1.25,0,0,1.75,-8,-37.5)" />
      <path
         d="M 24.281173,13.417592 C 21.785192,13.938638 16.273503,11.934434 11.978296,8.943923 C 7.683089,5.953412 6.222848,3.103453 8.718829,2.582407"
         id="use6159"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 21.021707,7.056075 C 25.316914,10.046586 26.777155,12.896546 24.281173,13.417592 C 21.785192,13.938638 16.273503,11.934434 11.978296,8.943923 C 7.683089,5.953412 6.222848,3.103453 8.718829,2.582407 C 11.214811,2.061361 16.7265,4.065564 21.021707,7.056075 z"
         id="use6161"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6179);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 12.0625,2.0625 A 0.90625,0.5625 0 1 1 10.25,2.0625 A 0.90625,0.5625 0 1 1 12.0625,2.0625 z"
         id="use6173"
         sodipodi:cx="11.15625"
         sodipodi:cy="2.0625"
         sodipodi:rx="0.90625"
         sodipodi:ry="0.5625"
         sodipodi:type="arc"
         style="fill:url(#radialGradient6201);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741674;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(1.1034483,0,0,1.7777778,2.636801,7.009256)" />
      <g
         id="g7413"
         transform="matrix(1.222459,0.3275569,-0.3275569,1.222459,15.102844,-16.514282)">
        <path
           d="M 13.4375,16.5 C 9.5186162,16.499999 6.34375,19.657775 6.34375,23.5625 C 6.3437502,26.380698 7.9483759,28.863095 10.34375,30 L 10.34375,31.5 L 11.84375,33 L 10.34375,34.5 L 10.34375,35.5 L 12.34375,36.5 L 12.34375,37.5 L 10.34375,38.5 L 10.34375,39.5 L 11.84375,41 L 10.34375,42.5 L 10.34375,43.5 L 12.84375,45.5 L 15.34375,45.5 L 16.34375,44 L 16.34375,30 C 18.716179,28.854566 20.34375,26.301484 20.34375,23.5 C 20.34375,19.595276 17.356384,16.5 13.4375,16.5 z M 13.34375,18.5 C 14.44775,18.5 15.34375,19.396 15.34375,20.5 C 15.34375,21.604 14.44775,22.5 13.34375,22.5 C 12.23975,22.5 11.34375,21.604 11.34375,20.5 C 11.34375,19.396 12.23975,18.5 13.34375,18.5 z"
           id="path7415"
           sodipodi:nodetypes="csccccccccccccccccsccsssc"
           style="fill:url(#linearGradient7425);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.79014969000000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 18.846598,24 L 8.028422,24 C 8.028422,26.76 10.451693,29 13.43751,29 C 16.423327,29 18.846598,26.76 18.846598,24 z"
           id="path7417"
           style="opacity:0.3;fill:url(#linearGradient7427);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0274241;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 13.4375,17.28125 C 9.9358164,17.281249 7.125,20.078754 7.125,23.5625 C 7.1250002,26.085898 8.5663689,28.305758 10.6875,29.3125 C 10.951494,29.440624 11.120744,29.706589 11.125,30 L 11.125,31.15625 L 12.40625,32.4375 C 12.560213,32.584102 12.647354,32.787405 12.647354,33 C 12.647354,33.212595 12.560213,33.415898 12.40625,33.5625 L 11.125,34.84375 L 11.125,35.03125 L 12.6875,35.8125 C 12.951494,35.940624 13.120744,36.206589 13.125,36.5 L 13.125,37.5 C 13.120744,37.793411 12.951494,38.059376 12.6875,38.1875 L 11.125,38.96875 L 11.125,39.15625 L 12.40625,40.4375 C 12.560213,40.584102 12.647354,40.787405 12.647354,41 C 12.647354,41.212595 12.560213,41.415898 12.40625,41.5625 L 11.125,42.84375 L 11.125,43.125 L 13.125,44.71875 L 14.90625,44.71875 L 15.5625,43.75 L 15.5625,30 C 15.566756,29.706589 15.736006,29.440624 16,29.3125 C 18.090762,28.303058 19.5625,26.000684 19.5625,23.5 C 19.5625,19.991393 16.947441,17.28125 13.4375,17.28125 z M 13.34375,17.71875 C 14.867958,17.71875 16.125,18.975792 16.125,20.5 C 16.125,22.024208 14.867958,23.28125 13.34375,23.28125 C 11.819542,23.28125 10.5625,22.024208 10.5625,20.5 C 10.5625,18.975792 11.819542,17.71875 13.34375,17.71875 z"
           id="path7419"
           inkscape:href="#path1884"
           inkscape:original="M 13.4375 16.5 C 9.5186162 16.499999 6.34375 19.657775 6.34375 23.5625 C 6.3437502 26.380698 7.9483759 28.863095 10.34375 30 L 10.34375 31.5 L 11.84375 33 L 10.34375 34.5 L 10.34375 35.5 L 12.34375 36.5 L 12.34375 37.5 L 10.34375 38.5 L 10.34375 39.5 L 11.84375 41 L 10.34375 42.5 L 10.34375 43.5 L 12.84375 45.5 L 15.34375 45.5 L 16.34375 44 L 16.34375 30 C 18.716179 28.854566 20.34375 26.301484 20.34375 23.5 C 20.34375 19.595276 17.356384 16.5 13.4375 16.5 z M 13.34375 18.5 C 14.44775 18.5 15.34375 19.396 15.34375 20.5 C 15.34375 21.604 14.44775 22.5 13.34375 22.5 C 12.23975 22.5 11.34375 21.604 11.34375 20.5 C 11.34375 19.396 12.23975 18.5 13.34375 18.5 z "
           inkscape:radius="-0.77663463"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.79014969000000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           xlink:href="#path1884" />
        <path
           d="M 13.40625,17.625 C 13.187538,17.629341 12.939695,17.659156 12.71875,17.6875 C 11.78621,17.807129 10.942882,18.147772 10.1875,18.625 C 10.361143,19.259817 10.61214,19.783079 10.90625,20.25 C 11.032204,18.930646 12.148103,17.90625 13.5,17.90625 C 14.936081,17.90625 16.09375,19.063918 16.09375,20.5 C 16.09375,21.936083 14.936081,23.09375 13.5,23.09375 C 13.422832,23.09375 13.35303,23.07256 13.28125,23.0625 C 14.340561,24.332754 15.303193,26.006767 15.5625,29.15625 C 17.828737,28.247206 19.4375,26.230684 19.4375,23.5625 C 19.35195,20.960576 17.896038,18.951077 15.4375,17.9375 C 14.757352,17.712171 14.073888,17.611746 13.40625,17.625 z M 15.375,34.6875 C 15.095565,37.273086 14.520442,40.429504 13.5625,44.375 L 14.71875,44.375 L 15.375,43.0625 L 15.375,34.6875 z"
           id="path7421"
           inkscape:original="M 13.40625 17.53125 C 13.179953 17.535742 12.940048 17.565361 12.71875 17.59375 C 11.746507 17.718472 10.844502 18.056009 10.0625 18.5625 C 10.273788 19.382459 10.603512 20.028723 11 20.59375 C 10.998818 20.562191 11 20.531846 11 20.5 C 11 19.119998 12.119999 18 13.5 18 C 14.880001 18 16 19.119998 16 20.5 C 16 21.880003 14.880001 23 13.5 23 C 13.338115 23 13.184591 22.966937 13.03125 22.9375 C 14.159156 24.243071 15.219875 25.922289 15.46875 29.3125 C 17.839227 28.416828 19.53125 26.324417 19.53125 23.5625 C 19.444481 20.923505 17.958879 18.870351 15.46875 17.84375 C 14.777284 17.614671 14.085142 17.517773 13.40625 17.53125 z M 15.46875 31.96875 C 15.356466 34.978468 14.778907 38.970391 13.4375 44.46875 L 14.78125 44.46875 L 15.46875 43.125 L 15.46875 31.96875 z "
           inkscape:radius="-0.10364762"
           sodipodi:type="inkscape:offset"
           style="opacity:0.6;fill:url(#linearGradient7431);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <rect
           height="0.98128641"
           id="rect7423"
           style="opacity:0.61538463;fill:url(#linearGradient7433);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0,1,-1,0,0,0)"
           width="16.311773"
           x="29"
           y="-14.84375" />
      </g>
      <path
         d="M 25.6875 8.875 C 25.098939 8.9118192 24.505084 8.9957928 23.90625 9.15625 C 19.115576 10.439907 16.25223 15.351634 17.53125 20.125 C 18.454371 23.57013 21.230603 26.082302 24.53125 26.6875 L 24.71875 27.4375 L 25.25 25.5 C 28.525392 24.876859 31.363605 22.299699 32.28125 18.875 C 33.299279 15.075659 31.836651 11.286796 28.78125 9.25 C 27.800972 8.9441375 26.762022 8.8077801 25.6875 8.875 z M 24.84375 10.375 C 25.011592 10.385047 25.175051 10.423547 25.34375 10.46875 C 26.419208 10.756918 27.150516 11.696908 27.21875 12.75 C 27.348212 12.957411 27.464707 13.189157 27.53125 13.4375 C 27.892873 14.787095 27.099594 16.169627 25.75 16.53125 C 24.400405 16.892874 23.017873 16.099594 22.65625 14.75 C 22.613776 14.591486 22.573871 14.439118 22.5625 14.28125 C 22.557842 14.273973 22.567083 14.257324 22.5625 14.25 C 22.202707 13.675077 22.060751 12.956288 22.25 12.25 C 22.566419 11.069104 23.668855 10.304668 24.84375 10.375 z "
         id="path7441"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999976000000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;opacity:0.15" />
      <g
         id="g6765"
         transform="matrix(1.222459,-0.3275569,0.3275569,1.222459,2.064799,-7.6041513)">
        <path
           d="M 13.4375,16.5 C 9.5186162,16.499999 6.34375,19.657775 6.34375,23.5625 C 6.3437502,26.380698 7.9483759,28.863095 10.34375,30 L 10.34375,31.5 L 11.84375,33 L 10.34375,34.5 L 10.34375,35.5 L 12.34375,36.5 L 12.34375,37.5 L 10.34375,38.5 L 10.34375,39.5 L 11.84375,41 L 10.34375,42.5 L 10.34375,43.5 L 12.84375,45.5 L 15.34375,45.5 L 16.34375,44 L 16.34375,30 C 18.716179,28.854566 20.34375,26.301484 20.34375,23.5 C 20.34375,19.595276 17.356384,16.5 13.4375,16.5 z M 13.34375,18.5 C 14.44775,18.5 15.34375,19.396 15.34375,20.5 C 15.34375,21.604 14.44775,22.5 13.34375,22.5 C 12.23975,22.5 11.34375,21.604 11.34375,20.5 C 11.34375,19.396 12.23975,18.5 13.34375,18.5 z"
           id="path6767"
           sodipodi:nodetypes="csccccccccccccccccsccsssc"
           style="fill:url(#linearGradient6789);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:0.79014969000000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 18.846598,24 L 8.028422,24 C 8.028422,26.76 10.451693,29 13.43751,29 C 16.423327,29 18.846598,26.76 18.846598,24 z"
           id="path6769"
           style="opacity:0.3;fill:url(#linearGradient6791);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0274241;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 13.4375,17.28125 C 9.9358164,17.281249 7.125,20.078754 7.125,23.5625 C 7.1250002,26.085898 8.5663689,28.305758 10.6875,29.3125 C 10.951494,29.440624 11.120744,29.706589 11.125,30 L 11.125,31.15625 L 12.40625,32.4375 C 12.560213,32.584102 12.647354,32.787405 12.647354,33 C 12.647354,33.212595 12.560213,33.415898 12.40625,33.5625 L 11.125,34.84375 L 11.125,35.03125 L 12.6875,35.8125 C 12.951494,35.940624 13.120744,36.206589 13.125,36.5 L 13.125,37.5 C 13.120744,37.793411 12.951494,38.059376 12.6875,38.1875 L 11.125,38.96875 L 11.125,39.15625 L 12.40625,40.4375 C 12.560213,40.584102 12.647354,40.787405 12.647354,41 C 12.647354,41.212595 12.560213,41.415898 12.40625,41.5625 L 11.125,42.84375 L 11.125,43.125 L 13.125,44.71875 L 14.90625,44.71875 L 15.5625,43.75 L 15.5625,30 C 15.566756,29.706589 15.736006,29.440624 16,29.3125 C 18.090762,28.303058 19.5625,26.000684 19.5625,23.5 C 19.5625,19.991393 16.947441,17.28125 13.4375,17.28125 z M 13.34375,17.71875 C 14.867958,17.71875 16.125,18.975792 16.125,20.5 C 16.125,22.024208 14.867958,23.28125 13.34375,23.28125 C 11.819542,23.28125 10.5625,22.024208 10.5625,20.5 C 10.5625,18.975792 11.819542,17.71875 13.34375,17.71875 z"
           id="path6771"
           inkscape:href="#path1884"
           inkscape:original="M 13.4375 16.5 C 9.5186162 16.499999 6.34375 19.657775 6.34375 23.5625 C 6.3437502 26.380698 7.9483759 28.863095 10.34375 30 L 10.34375 31.5 L 11.84375 33 L 10.34375 34.5 L 10.34375 35.5 L 12.34375 36.5 L 12.34375 37.5 L 10.34375 38.5 L 10.34375 39.5 L 11.84375 41 L 10.34375 42.5 L 10.34375 43.5 L 12.84375 45.5 L 15.34375 45.5 L 16.34375 44 L 16.34375 30 C 18.716179 28.854566 20.34375 26.301484 20.34375 23.5 C 20.34375 19.595276 17.356384 16.5 13.4375 16.5 z M 13.34375 18.5 C 14.44775 18.5 15.34375 19.396 15.34375 20.5 C 15.34375 21.604 14.44775 22.5 13.34375 22.5 C 12.23975 22.5 11.34375 21.604 11.34375 20.5 C 11.34375 19.396 12.23975 18.5 13.34375 18.5 z "
           inkscape:radius="-0.77663463"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.79014969000000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           xlink:href="#path1884" />
        <path
           d="M 13.40625,17.625 C 13.187538,17.629341 12.939695,17.659156 12.71875,17.6875 C 11.78621,17.807129 10.942882,18.147772 10.1875,18.625 C 10.361143,19.259817 10.61214,19.783079 10.90625,20.25 C 11.032204,18.930646 12.148103,17.90625 13.5,17.90625 C 14.936081,17.90625 16.09375,19.063918 16.09375,20.5 C 16.09375,21.936083 14.936081,23.09375 13.5,23.09375 C 13.422832,23.09375 13.35303,23.07256 13.28125,23.0625 C 14.340561,24.332754 15.303193,26.006767 15.5625,29.15625 C 17.828737,28.247206 19.4375,26.230684 19.4375,23.5625 C 19.35195,20.960576 17.896038,18.951077 15.4375,17.9375 C 14.757352,17.712171 14.073888,17.611746 13.40625,17.625 z M 15.375,34.6875 C 15.095565,37.273086 14.520442,40.429504 13.5625,44.375 L 14.71875,44.375 L 15.375,43.0625 L 15.375,34.6875 z"
           id="path6832"
           inkscape:original="M 13.40625 17.53125 C 13.179953 17.535742 12.940048 17.565361 12.71875 17.59375 C 11.746507 17.718472 10.844502 18.056009 10.0625 18.5625 C 10.273788 19.382459 10.603512 20.028723 11 20.59375 C 10.998818 20.562191 11 20.531846 11 20.5 C 11 19.119998 12.119999 18 13.5 18 C 14.880001 18 16 19.119998 16 20.5 C 16 21.880003 14.880001 23 13.5 23 C 13.338115 23 13.184591 22.966937 13.03125 22.9375 C 14.159156 24.243071 15.219875 25.922289 15.46875 29.3125 C 17.839227 28.416828 19.53125 26.324417 19.53125 23.5625 C 19.444481 20.923505 17.958879 18.870351 15.46875 17.84375 C 14.777284 17.614671 14.085142 17.517773 13.40625 17.53125 z M 15.46875 31.96875 C 15.356466 34.978468 14.778907 38.970391 13.4375 44.46875 L 14.78125 44.46875 L 15.46875 43.125 L 15.46875 31.96875 z "
           inkscape:radius="-0.10364762"
           sodipodi:type="inkscape:offset"
           style="opacity:0.6;fill:url(#linearGradient6834);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <rect
           height="0.98128641"
           id="rect6776"
           style="opacity:0.61538463;fill:url(#linearGradient6798);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0,1,-1,0,0,0)"
           width="16.311773"
           x="29"
           y="-14.84375" />
      </g>
      <path
         d="M 7.973909,5.14413 C 6.383785,2.550006 8.912938,1.724058 13.619341,3.300498 C 18.325744,4.876938 23.43597,8.261744 25.026094,10.855869 C 25.815137,12.143112 25.66966,12.968832 24.589384,13.334608"
         id="use6163"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6183);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 12.0625,2.0625 A 0.90625,0.5625 0 1 1 10.25,2.0625 A 0.90625,0.5625 0 1 1 12.0625,2.0625 z"
         id="use6165"
         sodipodi:cx="11.15625"
         sodipodi:cy="2.0625"
         sodipodi:rx="0.90625"
         sodipodi:ry="0.5625"
         sodipodi:type="arc"
         style="fill:url(#radialGradient6187);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741674;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(1.5911082,0,0,2.563452,-6.228703,-2.588246)" />
      <path
         d="M 10.813348,8.082144 C 6.962997,5.046919 6.385696,2.546748 9.524729,2.501404 C 12.663762,2.45606 18.336305,4.88263 22.186655,7.917855 C 25.978296,10.906798 26.608939,13.378828 23.609463,13.49505"
         id="use6167"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6191);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 22.186054,7.917381 C 25.978172,10.906487 26.609106,13.378821 23.609463,13.49505"
         id="use6169"
         sodipodi:nodetypes="cc"
         style="opacity:0.10407242;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6195);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 12.0625,2.0625 A 0.90625,0.5625 0 1 1 10.25,2.0625 A 0.90625,0.5625 0 1 1 12.0625,2.0625 z"
         id="use6171"
         sodipodi:cx="11.15625"
         sodipodi:cy="2.0625"
         sodipodi:rx="0.90625"
         sodipodi:ry="0.5625"
         sodipodi:type="arc"
         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741674;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(1.1034483,0,0,1.7777778,-0.69986,-0.945696)" />
    </g>
    <g
       id="g32"
       style="display:inline;enable-background:new"
       transform="translate(303,126) scale(1.000000,1.000000)">
      <path
         d="M 28,46 A 8,2 0 1 1 12,46 A 8,2 0 1 1 28,46 z"
         id="path169"
         sodipodi:cx="20"
         sodipodi:cy="46"
         sodipodi:rx="8"
         sodipodi:ry="2"
         sodipodi:type="arc"
         style="opacity:0.16289595;fill:url(#radialGradient6228);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741674;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.8351597,0,0,1.2307617,5.0834415,-26.632161)" />
      <path
         d="M 28,46 A 8,2 0 1 1 12,46 A 8,2 0 1 1 28,46 z"
         id="path171"
         sodipodi:cx="20"
         sodipodi:cy="46"
         sodipodi:rx="8"
         sodipodi:ry="2"
         sodipodi:type="arc"
         style="opacity:0.16289595;fill:url(#radialGradient6230);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741674;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.8791155,0,0,1.2307617,-7.3999986,-26.632161)" />
      <path
         d="M 15.303105,9.1777947 C 13.547701,9.5442424 9.6713716,8.1347009 6.6505851,6.0314973 C 3.6297987,3.9282936 2.6028223,1.9239391 4.3582268,1.5574914"
         id="path173"
         sodipodi:nodetypes="css"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#babdb6;stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 13.010747,4.7037881 C 16.031534,6.8069918 17.05851,8.811347 15.303105,9.1777947 C 13.547701,9.5442424 9.6713716,8.1347009 6.6505851,6.0314973 C 3.6297987,3.9282936 2.6028223,1.9239391 4.3582268,1.5574914 C 6.1136319,1.1910437 9.9899609,2.6005845 13.010747,4.7037881 z"
         id="path175"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6286);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 12.0625,2.0625 A 0.90625,0.5625 0 1 1 10.25,2.0625 A 0.90625,0.5625 0 1 1 12.0625,2.0625 z"
         id="path177"
         sodipodi:cx="11.15625"
         sodipodi:cy="2.0625"
         sodipodi:rx="0.90625"
         sodipodi:ry="0.5625"
         sodipodi:type="arc"
         style="fill:url(#radialGradient6234);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741674;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.7760468,0,0,1.2502976,8.0782704e-2,4.6708607)" />
      <g
         id="g179"
         transform="matrix(0.8597461,0.2303683,-0.2303683,0.8597461,8.848056,-11.873065)">
        <path
           d="M 13.4375,16.5 C 9.5186162,16.499999 6.34375,19.657775 6.34375,23.5625 C 6.3437502,26.380698 7.9483759,28.863095 10.34375,30 L 10.34375,31.5 L 11.84375,33 L 10.34375,34.5 L 10.34375,35.5 L 12.34375,36.5 L 12.34375,37.5 L 10.34375,38.5 L 10.34375,39.5 L 11.84375,41 L 10.34375,42.5 L 10.34375,43.5 L 12.84375,45.5 L 15.34375,45.5 L 16.34375,44 L 16.34375,30 C 18.716179,28.854566 20.34375,26.301484 20.34375,23.5 C 20.34375,19.595276 17.356384,16.5 13.4375,16.5 z M 13.34375,18.5 C 14.44775,18.5 15.34375,19.396 15.34375,20.5 C 15.34375,21.604 14.44775,22.5 13.34375,22.5 C 12.23975,22.5 11.34375,21.604 11.34375,20.5 C 11.34375,19.396 12.23975,18.5 13.34375,18.5 z"
           id="path181"
           sodipodi:nodetypes="csccccccccccccccccsccsssc"
           style="fill:url(#linearGradient6236);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.12350094;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 18.846598,24 L 8.028422,24 C 8.028422,26.76 10.451693,29 13.43751,29 C 16.423327,29 18.846598,26.76 18.846598,24 z"
           id="path183"
           style="opacity:0.3;fill:url(#linearGradient6238);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0274241;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 13.8125,17.625 C 15.235641,17.878908 16.40625,19.008982 16.40625,20.5 C 16.40625,22.171372 15.015122,23.5625 13.34375,23.5625 C 11.672378,23.5625 10.28125,22.171372 10.28125,20.5 C 10.28125,19.083719 11.368676,18.05361 12.6875,17.71875 C 9.7060987,18.097252 7.40625,20.49013 7.40625,23.5625 C 7.4062502,25.982654 8.7561635,28.101343 10.78125,29.0625 C 11.154019,29.227046 11.397734,29.592618 11.40625,30 L 11.40625,31.0625 L 12.59375,32.25 C 12.795638,32.44732 12.909449,32.717699 12.909449,33 C 12.909449,33.282301 12.795638,33.55268 12.59375,33.75 L 11.46875,34.875 L 12.8125,35.5625 C 13.173082,35.736113 13.403423,36.099809 13.40625,36.5 L 13.40625,37.5 C 13.403423,37.900191 13.173082,38.263887 12.8125,38.4375 L 11.46875,39.125 L 12.59375,40.25 C 12.795638,40.44732 12.909449,40.717699 12.909449,41 C 12.909449,41.282301 12.795638,41.55268 12.59375,41.75 L 11.40625,42.9375 L 11.40625,43 L 13.1875,44.4375 L 14.78125,44.4375 L 15.28125,43.6875 L 15.28125,30 C 15.284077,29.599809 15.514418,29.236113 15.875,29.0625 C 17.867118,28.100684 19.28125,25.895339 19.28125,23.5 C 19.28125,20.264429 16.975546,17.819838 13.8125,17.625 z"
           id="path185"
           inkscape:href="#path1884"
           inkscape:original="M 13.4375 16.5 C 9.5186162 16.499999 6.34375 19.657775 6.34375 23.5625 C 6.3437502 26.380698 7.9483759 28.863095 10.34375 30 L 10.34375 31.5 L 11.84375 33 L 10.34375 34.5 L 10.34375 35.5 L 12.34375 36.5 L 12.34375 37.5 L 10.34375 38.5 L 10.34375 39.5 L 11.84375 41 L 10.34375 42.5 L 10.34375 43.5 L 12.84375 45.5 L 15.34375 45.5 L 16.34375 44 L 16.34375 30 C 18.716179 28.854566 20.34375 26.301484 20.34375 23.5 C 20.34375 19.595276 17.356384 16.5 13.4375 16.5 z M 13.34375 18.5 C 14.44775 18.5 15.34375 19.396 15.34375 20.5 C 15.34375 21.604 14.44775 22.5 13.34375 22.5 C 12.23975 22.5 11.34375 21.604 11.34375 20.5 C 11.34375 19.396 12.23975 18.5 13.34375 18.5 z "
           inkscape:radius="-1.0486252"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.12350094;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           xlink:href="#path1884" />
        <path
           d="M 13.40625,17.625 C 13.187538,17.629341 12.939695,17.659156 12.71875,17.6875 C 11.78621,17.807129 10.942882,18.147772 10.1875,18.625 C 10.361143,19.259817 10.61214,19.783079 10.90625,20.25 C 11.032204,18.930646 12.148103,17.90625 13.5,17.90625 C 14.936081,17.90625 16.09375,19.063918 16.09375,20.5 C 16.09375,21.936083 14.936081,23.09375 13.5,23.09375 C 13.422832,23.09375 13.35303,23.07256 13.28125,23.0625 C 14.340561,24.332754 15.303193,26.006767 15.5625,29.15625 C 17.828737,28.247206 19.4375,26.230684 19.4375,23.5625 C 19.35195,20.960576 17.896038,18.951077 15.4375,17.9375 C 14.757352,17.712171 14.073888,17.611746 13.40625,17.625 z M 15.375,34.6875 C 15.095565,37.273086 14.520442,40.429504 13.5625,44.375 L 14.71875,44.375 L 15.375,43.0625 L 15.375,34.6875 z"
           id="path187"
           inkscape:original="M 13.40625 17.53125 C 13.179953 17.535742 12.940048 17.565361 12.71875 17.59375 C 11.746507 17.718472 10.844502 18.056009 10.0625 18.5625 C 10.273788 19.382459 10.603512 20.028723 11 20.59375 C 10.998818 20.562191 11 20.531846 11 20.5 C 11 19.119998 12.119999 18 13.5 18 C 14.880001 18 16 19.119998 16 20.5 C 16 21.880003 14.880001 23 13.5 23 C 13.338115 23 13.184591 22.966937 13.03125 22.9375 C 14.159156 24.243071 15.219875 25.922289 15.46875 29.3125 C 17.839227 28.416828 19.53125 26.324417 19.53125 23.5625 C 19.444481 20.923505 17.958879 18.870351 15.46875 17.84375 C 14.777284 17.614671 14.085142 17.517773 13.40625 17.53125 z M 15.46875 31.96875 C 15.356466 34.978468 14.778907 38.970391 13.4375 44.46875 L 14.78125 44.46875 L 15.46875 43.125 L 15.46875 31.96875 z "
           inkscape:radius="-0.10364762"
           sodipodi:type="inkscape:offset"
           style="opacity:0.6;fill:url(#linearGradient6240);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <rect
           height="0.98128641"
           id="rect189"
           style="opacity:0.61538463;fill:url(#linearGradient6242);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0,1,-1,0,0,0)"
           width="16.311773"
           x="29"
           y="-14.84375" />
      </g>
      <path
         d="M 16.292164,5.9830243 C 15.878234,6.0089189 15.46058,6.0679769 15.039425,6.1808252 C 11.67018,7.0836114 9.6564104,10.537992 10.555935,13.895064 C 11.205159,16.317997 13.157662,18.084789 15.478982,18.51042 L 15.61085,19.037889 L 15.984474,17.67526 C 18.288032,17.23701 20.284126,15.424513 20.929498,13.015948 C 21.64547,10.343901 20.616815,7.679222 18.467975,6.2467589 C 17.778553,6.0316481 17.047867,5.935749 16.292164,5.9830243 z M 15.698761,7.0379629 C 15.816803,7.0450288 15.931763,7.0721056 16.050407,7.1038965 C 16.806769,7.3065629 17.321092,7.9676507 17.369081,8.7082823 C 17.46013,8.8541529 17.54206,9.0171381 17.588859,9.1917958 C 17.843186,10.140956 17.285279,11.11328 16.33612,11.367607 C 15.38696,11.621934 14.414636,11.064026 14.160309,10.114867 C 14.130437,10.003385 14.102373,9.8962262 14.094375,9.7851988 C 14.091099,9.7800809 14.097599,9.7683718 14.094375,9.7632209 C 13.841336,9.3588819 13.741499,8.8533631 13.874597,8.3566361 C 14.097132,7.5261209 14.872466,6.9884989 15.698761,7.0379629 z"
         id="path191"
         style="opacity:0.15;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
      <g
         id="g193"
         transform="matrix(0.8597461,-0.2303683,0.2303683,0.8597461,-0.321502,-5.6066376)">
        <path
           d="M 13.4375,16.5 C 9.5186162,16.499999 6.34375,19.657775 6.34375,23.5625 C 6.3437502,26.380698 7.9483759,28.863095 10.34375,30 L 10.34375,31.5 L 11.84375,33 L 10.34375,34.5 L 10.34375,35.5 L 12.34375,36.5 L 12.34375,37.5 L 10.34375,38.5 L 10.34375,39.5 L 11.84375,41 L 10.34375,42.5 L 10.34375,43.5 L 12.84375,45.5 L 15.34375,45.5 L 16.34375,44 L 16.34375,30 C 18.716179,28.854566 20.34375,26.301484 20.34375,23.5 C 20.34375,19.595276 17.356384,16.5 13.4375,16.5 z M 13.34375,18.5 C 14.44775,18.5 15.34375,19.396 15.34375,20.5 C 15.34375,21.604 14.44775,22.5 13.34375,22.5 C 12.23975,22.5 11.34375,21.604 11.34375,20.5 C 11.34375,19.396 12.23975,18.5 13.34375,18.5 z"
           id="path195"
           sodipodi:nodetypes="csccccccccccccccccsccsssc"
           style="fill:url(#linearGradient6244);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1.12350094;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 18.846598,24 L 8.028422,24 C 8.028422,26.76 10.451693,29 13.43751,29 C 16.423327,29 18.846598,26.76 18.846598,24 z"
           id="path197"
           style="opacity:0.3;fill:url(#linearGradient6246);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0274241;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <path
           d="M 14.3125,17.78125 C 15.499474,18.223999 16.46875,19.167746 16.46875,20.5 C 16.46875,22.20953 15.05328,23.625 13.34375,23.625 C 11.63422,23.625 10.21875,22.20953 10.21875,20.5 C 10.21875,19.253222 11.087188,18.372264 12.15625,17.875 C 9.4794915,18.466658 7.46875,20.714731 7.46875,23.5625 C 7.4687502,25.955884 8.8123167,28.050663 10.8125,29 C 11.205951,29.178699 11.461385,29.567931 11.46875,30 L 11.46875,31.0625 L 12.625,32.21875 C 13.048688,32.653418 13.048688,33.346582 12.625,33.78125 L 11.5625,34.84375 L 12.84375,35.5 C 13.225028,35.687656 13.467147,36.075047 13.46875,36.5 L 13.46875,37.5 C 13.467147,37.924953 13.225028,38.312344 12.84375,38.5 L 11.5625,39.15625 L 12.625,40.21875 C 13.048688,40.653418 13.048688,41.346582 12.625,41.78125 L 11.46875,42.9375 L 11.46875,42.96875 L 13.21875,44.375 L 14.75,44.375 L 15.21875,43.65625 L 15.21875,30 C 15.220353,29.575047 15.462472,29.187656 15.84375,29 C 17.810291,28.050533 19.21875,25.868024 19.21875,23.5 C 19.21875,20.480849 17.165819,18.202559 14.3125,17.78125 z"
           id="path199"
           inkscape:href="#path1884"
           inkscape:original="M 13.4375 16.5 C 9.5186162 16.499999 6.34375 19.657775 6.34375 23.5625 C 6.3437502 26.380698 7.9483759 28.863095 10.34375 30 L 10.34375 31.5 L 11.84375 33 L 10.34375 34.5 L 10.34375 35.5 L 12.34375 36.5 L 12.34375 37.5 L 10.34375 38.5 L 10.34375 39.5 L 11.84375 41 L 10.34375 42.5 L 10.34375 43.5 L 12.84375 45.5 L 15.34375 45.5 L 16.34375 44 L 16.34375 30 C 18.716179 28.854566 20.34375 26.301484 20.34375 23.5 C 20.34375 19.595276 17.356384 16.5 13.4375 16.5 z M 13.34375 18.5 C 14.44775 18.5 15.34375 19.396 15.34375 20.5 C 15.34375 21.604 14.44775 22.5 13.34375 22.5 C 12.23975 22.5 11.34375 21.604 11.34375 20.5 C 11.34375 19.396 12.23975 18.5 13.34375 18.5 z "
           inkscape:radius="-1.1191492"
           sodipodi:type="inkscape:offset"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1.12350094;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           xlink:href="#path1884" />
        <path
           d="M 13.40625,17.625 C 13.187538,17.629341 12.939695,17.659156 12.71875,17.6875 C 11.78621,17.807129 10.942882,18.147772 10.1875,18.625 C 10.361143,19.259817 10.61214,19.783079 10.90625,20.25 C 11.032204,18.930646 12.148103,17.90625 13.5,17.90625 C 14.936081,17.90625 16.09375,19.063918 16.09375,20.5 C 16.09375,21.936083 14.936081,23.09375 13.5,23.09375 C 13.422832,23.09375 13.35303,23.07256 13.28125,23.0625 C 14.340561,24.332754 15.303193,26.006767 15.5625,29.15625 C 17.828737,28.247206 19.4375,26.230684 19.4375,23.5625 C 19.35195,20.960576 17.896038,18.951077 15.4375,17.9375 C 14.757352,17.712171 14.073888,17.611746 13.40625,17.625 z M 15.375,34.6875 C 15.095565,37.273086 14.520442,40.429504 13.5625,44.375 L 14.71875,44.375 L 15.375,43.0625 L 15.375,34.6875 z"
           id="path201"
           inkscape:original="M 13.40625 17.53125 C 13.179953 17.535742 12.940048 17.565361 12.71875 17.59375 C 11.746507 17.718472 10.844502 18.056009 10.0625 18.5625 C 10.273788 19.382459 10.603512 20.028723 11 20.59375 C 10.998818 20.562191 11 20.531846 11 20.5 C 11 19.119998 12.119999 18 13.5 18 C 14.880001 18 16 19.119998 16 20.5 C 16 21.880003 14.880001 23 13.5 23 C 13.338115 23 13.184591 22.966937 13.03125 22.9375 C 14.159156 24.243071 15.219875 25.922289 15.46875 29.3125 C 17.839227 28.416828 19.53125 26.324417 19.53125 23.5625 C 19.444481 20.923505 17.958879 18.870351 15.46875 17.84375 C 14.777284 17.614671 14.085142 17.517773 13.40625 17.53125 z M 15.46875 31.96875 C 15.356466 34.978468 14.778907 38.970391 13.4375 44.46875 L 14.78125 44.46875 L 15.46875 43.125 L 15.46875 31.96875 z "
           inkscape:radius="-0.10364762"
           sodipodi:type="inkscape:offset"
           style="opacity:0.6;fill:url(#linearGradient6248);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
        <rect
           height="0.98128641"
           id="rect203"
           style="opacity:0.61538463;fill:url(#linearGradient6250);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
           transform="matrix(0,1,-1,0,0,0)"
           width="16.311773"
           x="29"
           y="-14.84375" />
      </g>
      <path
         d="M 3.8343302,3.3591317 C 2.7160081,1.534704 4.4947422,0.95382109 7.8047196,2.0625194 C 11.114697,3.1712176 14.70868,5.551726 15.827002,7.3761544 C 16.38193,8.2814626 16.279617,8.8621852 15.519867,9.1194327"
         id="path205"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6269);stroke-width:3;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 5.8312861,5.4254147 C 3.1233635,3.290764 2.7173521,1.5324127 4.9250101,1.5005226 C 7.1326682,1.4686325 11.122125,3.1752208 13.830046,5.3098714 C 16.496679,7.4119723 16.940205,9.1505323 14.830696,9.2322703"
         id="path207"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6265);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 13.829624,5.3095381 C 16.496592,7.4117536 16.940323,9.1505273 14.830696,9.2322703"
         id="path209"
         sodipodi:nodetypes="cc"
         style="opacity:0.10407242;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6262);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 12.0625,2.0625 A 0.90625,0.5625 0 1 1 10.25,2.0625 A 0.90625,0.5625 0 1 1 12.0625,2.0625 z"
         id="path211"
         sodipodi:cx="11.15625"
         sodipodi:cy="2.0625"
         sodipodi:rx="0.90625"
         sodipodi:ry="0.5625"
         sodipodi:type="arc"
         style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.67741674;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.7760468,0,0,1.2502976,-2.2658656,-0.9237966)" />
    </g>
    <g
       id="g22"
       style="display:inline;enable-background:new"
       transform="translate(303,177) scale(1.000000,1.000000)">
      <path
         d="M 7.84375,6.7000001 C 7.296591,7.1103691 6.44965,7.4125001 5.5,7.4125001 C 4.55035,7.4125001 3.703409,7.1103691 3.15625,6.7000001 C 2.609091,6.2896311 2.40625,5.8538364 2.40625,5.5000001 C 2.40625,5.1461638 2.609091,4.7103691 3.15625,4.3000001 M 2.1875,2.4625001 C 1.286659,3.1381311 0.59375,4.1978364 0.59375,5.5000001 C 0.59375,6.8021638 1.286659,7.8618691 2.1875,8.5375001 C 3.088341,9.2131311 4.24165,9.5875001 5.5,9.5875001 C 6.75835,9.5875001 7.911659,9.2131311 8.8125,8.5375001"
         id="path6796"
         sodipodi:nodetypes="csssccssss"
         style="opacity:1;fill:url(#linearGradient6869);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6861);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1" />
      <path
         d="M 9.4375,5.5 A 2.90625,1.5625 0 1 1 3.625,5.5 A 2.90625,1.5625 0 1 1 9.4375,5.5 z"
         id="path6885"
         sodipodi:cx="6.53125"
         sodipodi:cy="5.5"
         sodipodi:rx="2.90625"
         sodipodi:ry="1.5625"
         sodipodi:type="arc"
         style="opacity:0.27149321;fill:url(#radialGradient6887);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1"
         transform="matrix(1.548387,0,0,1.28,-1.612903,12.96)" />
      <g
         id="g6769"
         transform="translate(12,0)">
        <path
           d="M 0.0294758,3.9584078 C -0.87552433,3.0534077 -2.1260583,2.5 -3.5060582,2.5 C -6.2660581,2.5 -8.5,4.7339416 -8.5,7.4939418 C -8.4999997,9.5385796 -7.2541443,11.271336 -5.4947961,12.045942 L -5.5000002,14.575418 L -4.5,16 L -5.5,17.5 L -5.5,18.5 C -5.5,18.5 -3.5,20.5 -3.5,20.5 L -2.5000011,20.5 L -1.5,19.5 L -1.5173203,12.045942 C 0.242028,11.271336 1.4878833,9.5385796 1.4878836,7.4939418 C 1.4878837,6.1139418 0.93447593,4.8634079 0.0294758,3.9584078 z M -2.7989514,5.3726214 C -2.6179513,5.5536215 -2.4895922,5.803728 -2.4895922,6.0797282 C -2.489592,6.6317287 -2.9540578,7.0961942 -3.5060582,7.0961942 C -4.0580582,7.0961943 -4.5225242,6.6317286 -4.5225242,6.0797282 C -4.5225242,5.5277278 -4.0580586,5.0632622 -3.5060582,5.0632622 C -3.230058,5.0632622 -2.9799515,5.1916213 -2.7989514,5.3726214 z"
           id="path6081"
           sodipodi:nodetypes="csscccccccccsccssssc"
           style="fill:url(#linearGradient6776);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
        <path
           d="M 0.71269221,8.9174565 L -7.7248082,8.9174565 C -7.1033899,10.658697 -5.459898,11.917457 -3.506058,11.917457 C -1.5522181,11.917457 0.091274801,10.658698 0.71269221,8.9174565 z"
           id="path6083"
           style="opacity:0.06334845;fill:url(#linearGradient6778);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
        <path
           d="M -3.5,3.53125 C -5.7081443,3.53125 -7.46875,5.2918555 -7.46875,7.5 C -7.4687498,9.1320467 -6.5076956,10.471218 -5.09375,11.09375 C -4.7160672,11.2524 -4.4699334,11.621601 -4.46875,12.03125 L -4.46875,14.25 L -3.65625,15.40625 C -3.4167176,15.75445 -3.4167176,16.2143 -3.65625,16.5625 L -4.46875,17.78125 L -4.46875,18.09375 C -4.1062012,18.456299 -3.4562988,19.106201 -3.09375,19.46875 L -2.90625,19.46875 L -2.53125,19.09375 L -2.5625,12.03125 C -2.5613166,11.621601 -2.3151828,11.2524 -1.9375,11.09375 C -0.51947782,10.469423 0.46874976,9.1216542 0.46875,7.5 C 0.46875008,6.3977756 0.036201058,5.411201 -0.6875,4.6875 C -1.411201,3.9637989 -2.3977756,3.53125 -3.5,3.53125 z"
           id="path6765"
           inkscape:original="M -3.5 2.5 C -6.2599999 2.5 -8.5 4.7399998 -8.5 7.5 C -8.4999997 9.5446378 -7.2593482 11.256644 -5.5 12.03125 L -5.5 14.5625 L -4.5 16 L -5.5 17.5 L -5.5 18.5 C -5.5 18.5 -3.5 20.5 -3.5 20.5 L -2.5 20.5 L -1.5 19.5 L -1.53125 12.03125 C 0.22809828 11.256644 1.4999997 9.5446378 1.5 7.5 C 1.5000001 6.12 0.93625013 4.8737501 0.03125 3.96875 C -0.87375013 3.0637498 -2.1200001 2.5 -3.5 2.5 z "
           inkscape:radius="-1.0199475"
           sodipodi:type="inkscape:offset"
           style="opacity:0.52036205000000002;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6843);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1" />
        <path
           d="M 8.5,6 A 1.5,1.5 0 1 1 5.5,6 A 1.5,1.5 0 1 1 8.5,6 z"
           id="path6085"
           sodipodi:cx="7"
           sodipodi:cy="6"
           sodipodi:rx="1.5"
           sodipodi:ry="1.5"
           sodipodi:type="arc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6780);stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
           transform="matrix(0,1.3333333,-1.3333333,0,4.493942,-3.3285949)" />
        <path
           d="M -3.1525046,18.37868 L -3.1525046,12.721825"
           id="path6091"
           sodipodi:nodetypes="cc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6782);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
      </g>
      <path
         d="M 9.5 2.59375 C 8.5663877 2.7819214 7.6929324 3.2445676 6.96875 3.96875 C 5.0171354 5.9203646 5.0171352 9.0796352 6.96875 11.03125 C 7.9351022 11.997602 9.203404 12.468405 10.46875 12.46875 L 10.46875 12.03125 C 12.228099 11.256644 13.5 9.5446378 13.5 7.5 C 13.5 6.12 12.93625 4.8737501 12.03125 3.96875 C 11.359419 3.2969188 10.495528 2.795499 9.53125 2.59375 C 9.5213192 2.5916723 9.5099523 2.595769 9.5 2.59375 z M 8.5 5.0625 C 8.7759997 5.0625002 9.0064999 5.1939999 9.1875 5.375 C 9.23275 5.42025 9.2750132 5.4780369 9.3125 5.53125 C 9.3766345 5.5201298 9.4360068 5.5 9.5 5.5 C 9.7559728 5.5 10.023588 5.5860884 10.21875 5.78125 C 10.609073 6.1715732 10.609073 6.8284268 10.21875 7.21875 C 9.8284271 7.609073 9.1715732 7.6090732 8.78125 7.21875 C 8.7376256 7.1751256 8.721373 7.1120388 8.6875 7.0625 C 8.6231759 7.0757572 8.5676471 7.09375 8.5 7.09375 C 7.9479995 7.09375 7.46875 6.6457504 7.46875 6.09375 C 7.4687502 5.5417497 7.9479996 5.0625 8.5 5.0625 z "
         id="path6802"
         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1;opacity:0.14027149" />
      <g
         id="g6111"
         transform="translate(5,1)">
        <path
           d="M 5.5,0.5 C 4.2201366,0.50000003 2.9445573,0.99294272 1.96875,1.96875 C 0.017135421,3.9203646 0.017135161,7.0796352 1.96875,9.03125 C 3.4145274,10.477027 5.5207239,10.821318 7.3125,10.125 L 8,11 L 9.5,10.5 L 9.5,12.5 L 11.5,12.5 L 11.5,14 L 12,14.5 C 12,14.5 15,14.5 15,14.5 L 15.5,14 L 15.5,12.5 L 10.125,7.3125 C 10.821318,5.5207238 10.477027,3.4145274 9.03125,1.96875 C 8.0554428,0.9929426 6.7798634,0.49999997 5.5,0.5 z M 4.5,3.5 C 4.7559728,3.5 5.0235884,3.5860884 5.21875,3.78125 C 5.6090734,4.1715732 5.6090732,4.8284268 5.21875,5.21875 C 4.8284271,5.609073 4.1715732,5.6090732 3.78125,5.21875 C 3.3909268,4.8284267 3.3909268,4.1715732 3.78125,3.78125 C 3.9764116,3.5860884 4.2440272,3.5 4.5,3.5 z"
           id="path7124"
           style="fill:url(#linearGradient6119);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
        <path
           d="M 9.543012,3.5767984 L 3.5767984,9.543012 C 5.2474506,10.334846 7.2996521,10.062799 8.6812256,8.6812256 C 10.062799,7.2996522 10.334847,5.2474503 9.543012,3.5767984 z"
           id="path6142"
           style="opacity:0.13574661;fill:url(#linearGradient6121);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1" />
        <path
           d="M 8.5,6 A 1.5,1.5 0 1 1 5.5,6 A 1.5,1.5 0 1 1 8.5,6 z"
           id="path7134"
           sodipodi:cx="7"
           sodipodi:cy="6"
           sodipodi:rx="1.5"
           sodipodi:ry="1.5"
           sodipodi:type="arc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6123);stroke-width:0.75;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
           transform="matrix(0.942809,0.942809,-0.942809,0.942809,3.5574935,-7.7562147)" />
        <path
           d="M 5.5,1.53125 C 4.4849664,1.53125 3.4683295,1.9066705 2.6875,2.6875 C 1.129419,4.245581 1.1294188,6.7544188 2.6875,8.3125 C 3.8370193,9.462019 5.5070738,9.7121406 6.9375,9.15625 C 7.3657587,8.9946645 7.8492807,9.1346313 8.125,9.5 L 8.375,9.8125 L 9.1875,9.53125 C 9.4986527,9.4323875 9.8382391,9.4866661 10.103073,9.6775927 C 10.367906,9.8685192 10.526718,10.173551 10.53125,10.5 L 10.53125,11.46875 L 11.5,11.46875 C 12.069487,11.468887 12.531113,11.930513 12.53125,12.5 L 12.53125,13.46875 C 13.095934,13.46875 13.904066,13.46875 14.46875,13.46875 L 14.46875,12.9375 L 9.40625,8.0625 C 9.1016694,7.7733588 9.0027957,7.3284268 9.15625,6.9375 C 9.7121406,5.5070736 9.462019,3.8370193 8.3125,2.6875 C 7.5316707,1.9066705 6.5150336,1.53125 5.5,1.53125 z"
           id="path6161"
           inkscape:original="M 5.5 0.5 C 4.2201366 0.50000003 2.9445573 0.99294272 1.96875 1.96875 C 0.017135421 3.9203646 0.017135161 7.0796352 1.96875 9.03125 C 3.4145274 10.477027 5.5207239 10.821318 7.3125 10.125 L 8 11 L 9.5 10.5 L 9.5 12.5 L 11.5 12.5 L 11.5 14 L 12 14.5 C 12 14.5 15 14.5 15 14.5 L 15.5 14 L 15.5 12.5 L 10.125 7.3125 C 10.821318 5.5207238 10.477027 3.4145274 9.03125 1.96875 C 8.0554428 0.9929426 6.7798634 0.49999997 5.5 0.5 z "
           inkscape:radius="-1.0313957"
           sodipodi:type="inkscape:offset"
           style="opacity:0.42986426;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1" />
        <path
           d="M 14.46875,13.46875 L 14.46875,12.9375 L 9.40625,8.0625 C 9.1016694,7.7733588 9.0027957,7.3284268 9.15625,6.9375 C 9.7121406,5.5070736 9.462019,3.8370193 8.3125,2.6875 C 7.5316707,1.9066705 6.5150336,1.53125 5.5,1.53125 C 4.4849664,1.53125 3.4683295,1.9066705 2.6875,2.6875 C 1.129419,4.245581 1.1294188,6.7544188 2.6875,8.3125"
           id="path6750"
           sodipodi:nodetypes="cccsscsc"
           style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6125);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
        <path
           d="M 13.5,13 L 9.5,9"
           id="path6773"
           sodipodi:nodetypes="cc"
           style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6127);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
      </g>
      <path
         d="M 9.4375,5.5 A 2.90625,1.5625 0 1 1 3.625,5.5 A 2.90625,1.5625 0 1 1 9.4375,5.5 z"
         id="path6819"
         sodipodi:cx="6.53125"
         sodipodi:cy="5.5"
         sodipodi:rx="2.90625"
         sodipodi:ry="1.5625"
         sodipodi:type="arc"
         style="opacity:0.3438914;fill:url(#radialGradient6827);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992;stroke-opacity:1"
         transform="matrix(1.3494623,0,0,1.56,-1.7355511,-4.455)" />
      <path
         d="M 2.40625,5.5 C 2.4062499,5.1461638 2.6090913,4.722869 3.15625,4.3125 C 3.7034086,3.9021309 4.5503502,3.59375 5.5,3.59375 C 6.4496497,3.59375 7.2965913,3.902131 7.84375,4.3125 C 8.3909086,4.7228689 8.59375,5.1461637 8.59375,5.5 C 8.59375,5.5787502 8.5841545,5.6643143 8.5625,5.75 C 8.5598303,5.760564 8.5655255,5.7706008 8.5625,5.78125 C 8.6885996,6.1891858 9.0508235,6.5 9.5,6.5 C 9.8797197,6.5 10.205684,6.2807631 10.375,5.96875 C 10.376374,5.9584679 10.373713,5.9478178 10.375,5.9375 C 10.393104,5.7923624 10.40625,5.6519671 10.40625,5.5 C 10.40625,4.1978364 9.7133413,3.144381 8.8125,2.46875 C 7.9116586,1.7931191 6.7583502,1.40625 5.5,1.40625 C 4.2416497,1.40625 3.0883413,1.7931191 2.1875,2.46875 C 1.2866586,3.144381 0.59375,4.1978363 0.59375,5.5"
         id="path6784"
         sodipodi:nodetypes="cssssssssssscsc"
         style="opacity:1;fill:url(#linearGradient6883);fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6853);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1" />
      <path
         d="M 8,3.5 A 4,2.5 0 1 1 0,3.5 A 4,2.5 0 1 1 8,3.5 z"
         id="path6809"
         sodipodi:cx="4"
         sodipodi:cy="3.5"
         sodipodi:rx="4"
         sodipodi:ry="2.5"
         sodipodi:type="arc"
         style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#radialGradient6817);stroke-width:0.91287094000000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1"
         transform="matrix(1,0,0,1.2,1.5,1.3000001)" />
    </g>
    <g
       id="g16"
       style="display:inline;enable-background:new"
       transform="translate(303,219) scale(1.000000,1.000000)">
      <path
         d="M 5.5 0.5 C 4.2201366 0.50000003 2.9445573 0.99294272 1.96875 1.96875 C 0.017135421 3.9203646 0.017135161 7.0796352 1.96875 9.03125 C 3.4145274 10.477027 5.5207239 10.821318 7.3125 10.125 L 8 11 L 9.5 10.5 L 9.5 12.5 L 11.5 12.5 L 11.5 14 L 12 14.5 C 12 14.5 15 14.5 15 14.5 L 15.5 14 L 15.5 12.5 L 10.125 7.3125 C 10.821318 5.5207238 10.477027 3.4145274 9.03125 1.96875 C 8.0554428 0.9929426 6.7798634 0.49999997 5.5 0.5 z M 4.5 3.5 C 4.7559728 3.5 5.0235884 3.5860884 5.21875 3.78125 C 5.6090734 4.1715732 5.6090732 4.8284268 5.21875 5.21875 C 4.8284271 5.609073 4.1715732 5.6090732 3.78125 5.21875 C 3.3909268 4.8284267 3.3909268 4.1715732 3.78125 3.78125 C 3.9764116 3.5860884 4.2440272 3.5 4.5 3.5 z "
         id="path234"
         style="fill:url(#linearGradient6150);fill-opacity:1;fill-rule:evenodd;stroke:#888a85;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1" />
      <path
         d="M 9.543012,3.5767984 L 3.5767984,9.543012 C 5.2474506,10.334846 7.2996521,10.062799 8.6812256,8.6812256 C 10.062799,7.2996522 10.334847,5.2474503 9.543012,3.5767984 z"
         id="path236"
         style="opacity:0.10859729000000000;fill:url(#linearGradient6768);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1" />
      <path
         d="M 8.5,6 A 1.5,1.5 0 1 1 5.5,6 A 1.5,1.5 0 1 1 8.5,6 z"
         id="path238"
         sodipodi:cx="7"
         sodipodi:cy="6"
         sodipodi:rx="1.5"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6154);stroke-width:0.75000000000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1"
         transform="matrix(0.942809,0.942809,-0.942809,0.942809,3.5574935,-7.7562147)" />
      <path
         d="M 5.5,1.53125 C 4.4849664,1.53125 3.4683295,1.9066705 2.6875,2.6875 C 1.129419,4.245581 1.1294188,6.7544188 2.6875,8.3125 C 3.8370193,9.462019 5.5070738,9.7121406 6.9375,9.15625 C 7.3657587,8.9946645 7.8492807,9.1346313 8.125,9.5 L 8.375,9.8125 L 9.1875,9.53125 C 9.4986527,9.4323875 9.8382391,9.4866661 10.103073,9.6775927 C 10.367906,9.8685192 10.526718,10.173551 10.53125,10.5 L 10.53125,11.46875 L 11.5,11.46875 C 12.069487,11.468887 12.531113,11.930513 12.53125,12.5 L 12.53125,13.46875 C 13.095934,13.46875 13.904066,13.46875 14.46875,13.46875 L 14.46875,12.9375 L 9.40625,8.0625 C 9.1016694,7.7733588 9.0027957,7.3284268 9.15625,6.9375 C 9.7121406,5.5070736 9.462019,3.8370193 8.3125,2.6875 C 7.5316707,1.9066705 6.5150336,1.53125 5.5,1.53125 z"
         id="path240"
         inkscape:original="M 5.5 0.5 C 4.2201366 0.50000003 2.9445573 0.99294272 1.96875 1.96875 C 0.017135421 3.9203646 0.017135161 7.0796352 1.96875 9.03125 C 3.4145274 10.477027 5.5207239 10.821318 7.3125 10.125 L 8 11 L 9.5 10.5 L 9.5 12.5 L 11.5 12.5 L 11.5 14 L 12 14.5 C 12 14.5 15 14.5 15 14.5 L 15.5 14 L 15.5 12.5 L 10.125 7.3125 C 10.821318 5.5207238 10.477027 3.4145274 9.03125 1.96875 C 8.0554428 0.9929426 6.7798634 0.49999997 5.5 0.5 z "
         inkscape:radius="-1.0313957"
         sodipodi:type="inkscape:offset"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0.69999992000000000;stroke-opacity:1;opacity:0.42986425000000000" />
      <path
         d="M 14.46875,13.46875 L 14.46875,12.9375 L 9.40625,8.0625 C 9.1016694,7.7733588 9.0027957,7.3284268 9.15625,6.9375 C 9.7121406,5.5070736 9.462019,3.8370193 8.3125,2.6875 C 7.5316707,1.9066705 6.5150336,1.53125 5.5,1.53125 C 4.4849664,1.53125 3.4683295,1.9066705 2.6875,2.6875 C 1.129419,4.245581 1.1294188,6.7544188 2.6875,8.3125"
         id="path242"
         sodipodi:nodetypes="cccsscsc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6748);stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0.69999992;stroke-opacity:1" />
      <path
         d="M 13.5,13 L 9.5,9"
         id="path244"
         sodipodi:nodetypes="cc"
         style="opacity:1;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6760);stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" />
    </g>
  </g>
  <g
     id="layer4"
     inkscape:groupmode="layer"
     inkscape:label="hires"
     style="display:inline" />
</svg>