summaryrefslogtreecommitdiff
path: root/src/fullcolor/legacy/insert-link.svg
blob: 1a96f9abae571b18d7900294291b8d2fe5df6332 (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
<?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="insert-link.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="linearGradient3346"
       inkscape:collect="always">
      <stop
         id="stop3349"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop3351"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3325"
       inkscape:collect="always">
      <stop
         id="stop3327"
         offset="0"
         style="stop-color:#babdb6;stop-opacity:1" />
      <stop
         id="stop3333"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3284"
       inkscape:collect="always">
      <stop
         id="stop3286"
         offset="0"
         style="stop-color:#ce5c00;stop-opacity:1;" />
      <stop
         id="stop3288"
         offset="1"
         style="stop-color:#f57900;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3276"
       inkscape:collect="always">
      <stop
         id="stop3278"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop3280"
         offset="1"
         style="stop-color:white;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3269">
      <stop
         id="stop3271"
         offset="0"
         style="stop-color:#fecb81;stop-opacity:1" />
      <stop
         id="stop3273"
         offset="1"
         style="stop-color:#fcaf3e;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient2397"
       inkscape:collect="always">
      <stop
         id="stop2399"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop2401"
         offset="1"
         style="stop-color:#888a85;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2391"
       inkscape:collect="always">
      <stop
         id="stop2393"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop2395"
         offset="1"
         style="stop-color:#888a85;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient2379"
       inkscape:collect="always">
      <stop
         id="stop2381"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop2383"
         offset="1"
         style="stop-color:#888a85;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3487"
       inkscape:collect="always">
      <stop
         id="stop3489"
         offset="0"
         style="stop-color:white;stop-opacity:1" />
      <stop
         id="stop3491"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3473">
      <stop
         id="stop3475"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop3481"
         offset="0.5"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop3477"
         offset="1"
         style="stop-color:#cecec8;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3303"
       inkscape:collect="always">
      <stop
         id="stop3305"
         offset="0"
         style="stop-color:#888a85;stop-opacity:1" />
      <stop
         id="stop3307"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient3417"
       inkscape:collect="always">
      <stop
         id="stop3419"
         offset="0"
         style="stop-color:white;stop-opacity:1" />
      <stop
         id="stop3421"
         offset="1"
         style="stop-color:#eeeeec;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3397"
       inkscape:collect="always">
      <stop
         id="stop3399"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop3401"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3387">
      <stop
         id="stop3389"
         offset="0"
         style="stop-color:#8f9388;stop-opacity:1;" />
      <stop
         id="stop3354"
         offset="0.5"
         style="stop-color:#c6cac2;stop-opacity:1;" />
      <stop
         id="stop3391"
         offset="1"
         style="stop-color:#d3d7cf;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3377"
       inkscape:collect="always">
      <stop
         id="stop3379"
         offset="0"
         style="stop-color:#555753;stop-opacity:1" />
      <stop
         id="stop3381"
         offset="1"
         style="stop-color:#888a85;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3359"
       inkscape:collect="always">
      <stop
         id="stop3361"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop3363"
         offset="1"
         style="stop-color:white;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3351"
       inkscape:collect="always">
      <stop
         id="stop3353"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop3355"
         offset="1"
         style="stop-color:white;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3327"
       inkscape:collect="always">
      <stop
         id="stop3329"
         offset="0"
         style="stop-color:white;stop-opacity:1;" />
      <stop
         id="stop3331"
         offset="1"
         style="stop-color:white;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient3188"
       inkscape:collect="always">
      <stop
         id="stop3190"
         offset="0"
         style="stop-color:black;stop-opacity:1;" />
      <stop
         id="stop3192"
         offset="1"
         style="stop-color:black;stop-opacity:0;" />
    </linearGradient>
    <radialGradient
       cx="7.0126991"
       cy="22.25555"
       fx="7.0126991"
       fy="22.25555"
       gradientTransform="matrix(0.21225,0,0,0.254807,12.01156,16.32913)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2504"
       inkscape:collect="always"
       r="13"
       xlink:href="#linearGradient3487" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2506"
       inkscape:collect="always"
       x1="23.467106"
       x2="23.467106"
       xlink:href="#linearGradient3303"
       y1="20.201925"
       y2="17.015749" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2508"
       inkscape:collect="always"
       x1="32.309578"
       x2="44.187737"
       xlink:href="#linearGradient3397"
       y1="15.875"
       y2="15.875" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2510"
       inkscape:collect="always"
       x1="37.124252"
       x2="47.5625"
       xlink:href="#linearGradient3377"
       y1="13.375"
       y2="13.375" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2512"
       inkscape:collect="always"
       x1="37.551125"
       x2="46.821011"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2514"
       inkscape:collect="always"
       x1="36.122208"
       x2="47.312737"
       xlink:href="#linearGradient3325"
       y1="15.875"
       y2="15.875" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2516"
       inkscape:collect="always"
       x1="41.125"
       x2="47.5625"
       xlink:href="#linearGradient2397"
       y1="13.375"
       y2="13.375" />
    <radialGradient
       cx="31.349806"
       cy="14.914701"
       fx="31.349794"
       fy="14.914677"
       gradientTransform="matrix(1.027139,7.049762e-7,-2.341676e-7,0.341179,-0.857269,11.25477)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2518"
       inkscape:collect="always"
       r="12"
       xlink:href="#linearGradient3417" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2520"
       inkscape:collect="always"
       x1="35.176235"
       x2="47.651093"
       xlink:href="#linearGradient3351"
       y1="17.240854"
       y2="17.240854" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2522"
       inkscape:collect="always"
       x1="35.253414"
       x2="48.08326"
       xlink:href="#linearGradient3327"
       y1="14.589205"
       y2="14.589205" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2524"
       inkscape:collect="always"
       x1="37.551125"
       x2="46.258511"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2526"
       inkscape:collect="always"
       x1="34.122208"
       x2="44.853527"
       xlink:href="#linearGradient3346"
       y1="15.8125"
       y2="16.0625" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2528"
       inkscape:collect="always"
       x1="37.5"
       x2="47.5625"
       xlink:href="#linearGradient2391"
       y1="13.4375"
       y2="13.375" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2530"
       inkscape:collect="always"
       x1="37.551125"
       x2="44.822086"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2532"
       inkscape:collect="always"
       x1="29.861185"
       x2="46.562737"
       xlink:href="#linearGradient3387"
       y1="15.875"
       y2="15.875" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2534"
       inkscape:collect="always"
       x1="41.125"
       x2="47.5625"
       xlink:href="#linearGradient2379"
       y1="13.375"
       y2="13.375" />
    <radialGradient
       cx="35.973373"
       cy="14.052355"
       fx="35.973362"
       fy="14.05233"
       gradientTransform="matrix(0.751224,2.345941e-6,-7.16423e-7,0.229414,8.256114,12.93155)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2536"
       inkscape:collect="always"
       r="12"
       xlink:href="#linearGradient3417" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2538"
       inkscape:collect="always"
       x1="35.176235"
       x2="47.651093"
       xlink:href="#linearGradient3351"
       y1="17.240854"
       y2="17.240854" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2540"
       inkscape:collect="always"
       x1="35.253414"
       x2="48.08326"
       xlink:href="#linearGradient3327"
       y1="14.589205"
       y2="14.589205" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2542"
       inkscape:collect="always"
       x1="37.551125"
       x2="44.571289"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2544"
       inkscape:collect="always"
       x1="20"
       x2="20"
       xlink:href="#linearGradient3473"
       y1="24"
       y2="19.121248" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2546"
       inkscape:collect="always"
       x1="22.750002"
       x2="23.062502"
       xlink:href="#linearGradient3269"
       y1="40.000755"
       y2="36.472179" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2548"
       inkscape:collect="always"
       x1="17.25"
       x2="17.25"
       xlink:href="#linearGradient3284"
       y1="41.147343"
       y2="36.103439" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient2550"
       inkscape:collect="always"
       x1="18.875"
       x2="18.875"
       xlink:href="#linearGradient3276"
       y1="35.183414"
       y2="43.978611" />
    <radialGradient
       cx="23.8125"
       cy="43"
       fx="23.8125"
       fy="43"
       gradientTransform="matrix(1,0,0,0.194656,0,34.62977)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient2552"
       inkscape:collect="always"
       r="16.375"
       xlink:href="#linearGradient3188" />
    <linearGradient
       gradientTransform="matrix(0.7037038,0,0,0.7037787,-0.8888896,-2.5199064)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5062"
       inkscape:collect="always"
       x1="20"
       x2="20"
       xlink:href="#linearGradient3473"
       y1="24"
       y2="19.121248" />
    <linearGradient
       gradientTransform="matrix(0.6666667,0,0,0.4294197,-9.311684e-2,5.120373)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5073"
       inkscape:collect="always"
       x1="37.551125"
       x2="46.258511"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientTransform="matrix(0.6548584,0,0,0.6124156,0.4913941,-0.3800274)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5076"
       inkscape:collect="always"
       x1="35.253414"
       x2="48.08326"
       xlink:href="#linearGradient3327"
       y1="14.589205"
       y2="14.589205" />
    <linearGradient
       gradientTransform="matrix(0.6666667,0,0,0.7984706,-9.311684e-2,-4.473237)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5079"
       inkscape:collect="always"
       x1="35.176235"
       x2="47.651093"
       xlink:href="#linearGradient3351"
       y1="17.240854"
       y2="17.240854" />
    <linearGradient
       gradientTransform="matrix(0.6697314,0,0,0.6561597,-0.2478813,-1.3581565)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5083"
       inkscape:collect="always"
       x1="36.122208"
       x2="47.312737"
       xlink:href="#linearGradient3325"
       y1="15.875"
       y2="15.875" />
    <linearGradient
       gradientTransform="matrix(0.6697314,0,0,0.6561597,-0.2478813,-1.3581565)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5085"
       inkscape:collect="always"
       x1="41.125"
       x2="47.5625"
       xlink:href="#linearGradient2397"
       y1="13.375"
       y2="13.375" />
    <linearGradient
       gradientTransform="matrix(0.6666667,0,0,0.6666667,0.1458317,-1.1275323)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5090"
       inkscape:collect="always"
       x1="37.551125"
       x2="46.821011"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientTransform="matrix(0.6666667,0,0,0.817519,-9.311684e-2,-4.981773)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5093"
       inkscape:collect="always"
       x1="32.309578"
       x2="44.187737"
       xlink:href="#linearGradient3397"
       y1="15.875"
       y2="15.875" />
    <linearGradient
       gradientTransform="matrix(0.6666667,0,0,0.817519,-9.311684e-2,-4.981773)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5095"
       inkscape:collect="always"
       x1="37.124252"
       x2="47.5625"
       xlink:href="#linearGradient3377"
       y1="13.375"
       y2="13.375" />
    <linearGradient
       gradientTransform="matrix(0.6666667,0,0,0.6666667,-9.311684e-2,-1.5735497)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5098"
       inkscape:collect="always"
       x1="23.467106"
       x2="23.467106"
       xlink:href="#linearGradient3303"
       y1="20.201925"
       y2="17.015749" />
    <radialGradient
       cx="31.349806"
       cy="14.914701"
       fx="31.349794"
       fy="14.914677"
       gradientTransform="matrix(1.027139,7.049762e-7,-2.341676e-7,0.341179,-0.857269,11.25477)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient5100"
       inkscape:collect="always"
       r="12"
       xlink:href="#linearGradient3417" />
    <linearGradient
       gradientTransform="matrix(-0.6501257,0,0,0.7952356,31.088105,-4.6592026)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5121"
       inkscape:collect="always"
       x1="37.551125"
       x2="44.571289"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientTransform="matrix(-0.6666667,0,0,0.6666667,31.833334,-1.1666675)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5124"
       inkscape:collect="always"
       x1="35.253414"
       x2="48.08326"
       xlink:href="#linearGradient3327"
       y1="14.589205"
       y2="14.589205" />
    <linearGradient
       gradientTransform="matrix(-0.6666667,0,0,0.6666667,31.833334,-2.1666673)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5127"
       inkscape:collect="always"
       x1="35.176235"
       x2="47.651093"
       xlink:href="#linearGradient3351"
       y1="17.240854"
       y2="17.240854" />
    <linearGradient
       gradientTransform="matrix(-0.6666667,0,0,0.6666667,31.906885,-1.5735497)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5131"
       inkscape:collect="always"
       x1="29.861185"
       x2="46.562737"
       xlink:href="#linearGradient3387"
       y1="15.875"
       y2="15.875" />
    <linearGradient
       gradientTransform="matrix(-0.6666667,0,0,0.6666667,31.906885,-1.5735497)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5133"
       inkscape:collect="always"
       x1="41.125"
       x2="47.5625"
       xlink:href="#linearGradient2379"
       y1="13.375"
       y2="13.375" />
    <linearGradient
       gradientTransform="matrix(-0.6666667,0,0,0.6666667,31.854168,-1.1666681)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5136"
       inkscape:collect="always"
       x1="37.551125"
       x2="44.822086"
       xlink:href="#linearGradient3359"
       y1="26.433243"
       y2="26.433243" />
    <linearGradient
       gradientTransform="matrix(-0.6666667,0,0,0.6666667,31.906885,-1.5735497)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5139"
       inkscape:collect="always"
       x1="34.122208"
       x2="44.853527"
       xlink:href="#linearGradient3346"
       y1="15.8125"
       y2="16.0625" />
    <linearGradient
       gradientTransform="matrix(-0.6666667,0,0,0.6666667,31.906885,-1.5735497)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5141"
       inkscape:collect="always"
       x1="37.5"
       x2="47.5625"
       xlink:href="#linearGradient2391"
       y1="13.4375"
       y2="13.375" />
    <radialGradient
       cx="35.973373"
       cy="14.052355"
       fx="35.973362"
       fy="14.05233"
       gradientTransform="matrix(0.751224,2.345941e-6,-7.16423e-7,0.229414,8.256114,12.93155)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient5143"
       inkscape:collect="always"
       r="12"
       xlink:href="#linearGradient3417" />
  </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">actions</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">insert-link</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 40.1875 43 A 16.375 3.1875 0 1 1  7.4375,43 A 16.375 3.1875 0 1 1  40.1875 43 z"
         id="path4121"
         sodipodi:cx="23.8125"
         sodipodi:cy="43"
         sodipodi:rx="16.375"
         sodipodi:ry="3.1875"
         sodipodi:type="arc"
         style="opacity:0.2;color:black;fill:url(#radialGradient2552);fill-opacity:1;fill-rule:nonzero;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:1.4;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
         transform="matrix(1.068703,0,0,1.411765,-1.9485,-17.2059)" />
      <g
         id="g4123">
        <path
           d="M 15.500002,35.500004 L 32.500012,35.500004 L 24.000007,44.499996 L 15.500002,35.500004 z "
           id="path4125"
           sodipodi:nodetypes="cccc"
           style="color:black;fill:url(#linearGradient2546);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2548);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:1.4;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 17.8125,34.5 L 24,41.0625 L 30.1875,34.5 L 17.8125,34.5 z "
           id="path4127"
           inkscape:original="M 15.5 33.5 L 24 42.5 L 32.5 33.5 L 15.5 33.5 z "
           inkscape:radius="-1"
           sodipodi:type="inkscape:offset"
           style="opacity:0.7;color:black;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2550);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:1.4;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="translate(0,2)" />
      </g>
      <g
         id="g3410">
        <rect
           height="5.0000014"
           id="rect2308"
           style="opacity:1;fill:url(#linearGradient2506);fill-opacity:1;stroke:#555753;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1"
           width="17.000036"
           x="15.499967"
           y="16.499998" />
        <path
           d="M 26.5,22.5 C 26.5,25.5 31.701962,27.500001 33.4375,27.5 L 50.5,27.5 L 50.5,22.5 L 26.5,22.5 z "
           id="path2387"
           sodipodi:nodetypes="ccccc"
           style="fill:url(#linearGradient2508);fill-opacity:1;stroke:url(#linearGradient2510);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 49.5,23.5 L 34.90625,23.5 C 34.503276,23.824101 34.028916,24 33.53125,24"
           id="path3315"
           sodipodi:nodetypes="ccc"
           style="opacity:0.7;fill:none;fill-opacity:1;stroke:url(#linearGradient2512);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 11.1875,18.5 C 10.768143,19.213373 10.5,20.075257 10.5,21 C 10.5,23.492998 12.266265,25.499999 14.46875,25.5 L 33.53125,25.5 C 35.733735,25.5 37.500001,23.492999 37.5,21 C 37.5,20.075257 37.231857,19.213373 36.8125,18.5 L 34,18.5 C 32.788125,18.5 31.794854,19.35874 31.5625,20.5 L 30,20.5 L 25.53125,20.5 L 18,20.5 C 16.788124,20.500001 15.794854,19.64126 15.5625,18.5 L 11.1875,18.5 z "
           id="rect2342"
           style="opacity:1;fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 17.5,17.5 L 30.5,17.5"
           id="path3301"
           style="opacity:0.5;fill:none;fill-rule:evenodd;stroke:white;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
        <path
           d="M 32.4375,13.5 C 30.326785,13.5 26.639368,16.58704 26.5,20.5 L 35.46875,20.5 L 35.46875,18.5 L 50.5,18.5 L 50.5,13.5 L 32.4375,13.5 z "
           id="path2389"
           sodipodi:nodetypes="ccccccc"
           style="fill:url(#linearGradient2514);fill-opacity:1;stroke:url(#linearGradient2516);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 32.4375,13.96875 C 31.610667,13.96875 30.201749,14.649802 29.0625,15.84375 C 28.029017,16.926854 27.225347,18.415244 27.03125,20.03125 L 35,20.03125 L 35,18.5 C 35.000026,18.241127 35.209877,18.031276 35.46875,18.03125 L 50.03125,18.03125 L 50.03125,13.96875 L 32.4375,13.96875 z "
           id="path3407"
           inkscape:original="M 32.4375 13.5 C 30.326785 13.5 26.639368 16.58704 26.5 20.5 L 35.46875 20.5 L 35.46875 18.5 L 50.5 18.5 L 50.5 13.5 L 32.4375 13.5 z "
           inkscape:radius="-0.46875"
           sodipodi:type="inkscape:offset"
           style="opacity:0.8;fill:url(#radialGradient2518);fill-opacity:1;stroke:none;stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 30.65625,22 C 30.562069,21.681452 30.5,21.350165 30.5,21 C 30.5,19.078297 32.078298,17.5 34,17.5 L 49.5,17.5"
           id="path3311"
           sodipodi:nodetypes="cscc"
           style="opacity:0.6;fill:none;fill-opacity:1;stroke:url(#linearGradient2520);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 49.5,14.5 L 32.4375,14.5 C 31.869661,14.5 30.504368,15.100658 29.4375,16.21875 C 28.370632,17.336842 27.55885,18.847695 27.5,20.5 L 27.5,22"
           id="path3313"
           sodipodi:nodetypes="ccscc"
           style="fill:none;fill-opacity:1;stroke:url(#linearGradient2522);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 28.21875,24 C 28.621471,24.450694 29.155735,24.871288 29.8125,25.25 C 31.187093,26.042634 32.953859,26.5 33.4375,26.5 L 49.5,26.5"
           id="path3317"
           sodipodi:nodetypes="cscc"
           style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient2524);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <g
           id="g3264"
           transform="matrix(-1,0,0,1,48,0)">
          <path
             d="M 26.5,22.5 C 26.5,25.5 31.701962,27.500001 33.4375,27.5 L 50.5,27.5 L 50.5,22.5 L 26.5,22.5 z "
             id="path3250"
             sodipodi:nodetypes="ccccc"
             style="fill:url(#linearGradient2526);fill-opacity:1;stroke:url(#linearGradient2528);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
          <path
             d="M 49.5,23.5 L 34.90625,23.5 C 34.503276,23.824101 34.028916,24 33.53125,24"
             id="path3252"
             sodipodi:nodetypes="ccc"
             style="opacity:0.7;fill:none;fill-opacity:1;stroke:url(#linearGradient2530);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
          <path
             d="M 32.4375,13.5 C 30.326785,13.5 26.639368,16.58704 26.5,20.5 L 35.46875,20.5 L 35.46875,18.5 L 50.5,18.5 L 50.5,13.5 L 32.4375,13.5 z "
             id="path3254"
             sodipodi:nodetypes="ccccccc"
             style="fill:url(#linearGradient2532);fill-opacity:1;stroke:url(#linearGradient2534);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
          <path
             d="M 32.4375,13.96875 C 31.610667,13.96875 30.201749,14.649802 29.0625,15.84375 C 28.029017,16.926854 27.225347,18.415244 27.03125,20.03125 L 35,20.03125 L 35,18.5 C 35.000026,18.241127 35.209877,18.031276 35.46875,18.03125 L 50.03125,18.03125 L 50.03125,13.96875 L 32.4375,13.96875 z "
             id="path3256"
             inkscape:original="M 32.4375 13.5 C 30.326785 13.5 26.639368 16.58704 26.5 20.5 L 35.46875 20.5 L 35.46875 18.5 L 50.5 18.5 L 50.5 13.5 L 32.4375 13.5 z "
             inkscape:radius="-0.46875"
             sodipodi:type="inkscape:offset"
             style="opacity:0.7;fill:url(#radialGradient2536);fill-opacity:1;stroke:none;stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
          <path
             d="M 30.65625,22 C 30.562069,21.681452 30.5,21.350165 30.5,21 C 30.5,19.078297 32.078298,17.5 34,17.5 L 49.5,17.5"
             id="path3258"
             sodipodi:nodetypes="cscc"
             style="opacity:0.6;fill:none;fill-opacity:1;stroke:url(#linearGradient2538);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
          <path
             d="M 49.5,14.5 L 32.4375,14.5 C 31.869661,14.5 30.504368,15.100658 29.4375,16.21875 C 28.370632,17.336842 27.55885,18.847695 27.5,20.5 L 27.5,22"
             id="path3260"
             sodipodi:nodetypes="ccscc"
             style="fill:none;fill-opacity:1;stroke:url(#linearGradient2540);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
          <path
             d="M 28.21875,24 C 28.621471,24.450694 29.155735,24.871288 29.8125,25.25 C 31.187093,26.042634 32.953859,26.5 33.4375,26.5 L 49.5,26.5"
             id="path3262"
             sodipodi:nodetypes="cscc"
             style="opacity:0.5;fill:none;fill-opacity:1;stroke:url(#linearGradient2542);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        </g>
        <path
           d="M 11.1875,18.5 C 10.768143,19.213373 10.5,20.075257 10.5,21 C 10.499999,23.492999 12.266265,25.5 14.46875,25.5 L 33.53125,25.5 C 35.733735,25.5 37.500001,23.492999 37.5,21 C 37.5,20.075257 37.231857,19.213373 36.8125,18.5 L 34,18.5 C 32.788125,18.5 31.794854,19.35874 31.5625,20.5 L 16.4375,20.5 C 16.205146,19.35874 15.211875,18.5 14,18.5 L 11.1875,18.5 z "
           id="path2369"
           sodipodi:nodetypes="csccscccccc"
           style="opacity:1;fill:url(#linearGradient2544);fill-opacity:1;stroke:#555753;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 35.8125,18 L 35.8125,18 z M 11.5625,19 C 11.340174,19.430873 11.122207,19.902367 11.03125,20.40625 C 10.996251,20.600139 11,20.795284 11,21 C 10.999999,22.128418 11.401404,23.125855 12.03125,23.84375 C 12.188542,24.023522 12.346598,24.170299 12.53125,24.3125 C 12.715902,24.454701 12.917774,24.587785 13.125,24.6875 C 13.539199,24.886185 13.994066,25 14.46875,25 L 33.53125,25 C 34.007288,25 34.460548,24.88693 34.875,24.6875 C 35.082226,24.587785 35.284098,24.454701 35.46875,24.3125 C 35.653402,24.170299 35.811458,24.023522 35.96875,23.84375 C 36.598596,23.125854 37,22.128418 37,21 C 37,20.816582 36.988929,20.644895 36.96875,20.46875 C 36.965553,20.449195 36.97226,20.425696 36.96875,20.40625 C 36.877793,19.902367 36.659826,19.430873 36.4375,19 L 35.375,19 C 35.752188,19.511977 36,20.196919 36,21 C 36.000001,22.794054 34.817078,24 33.53125,24 L 14.46875,24 C 13.182922,23.999999 12,22.794053 12,21 C 12,20.196919 12.247812,19.511977 12.625,19 L 11.5625,19 z "
           id="path3299"
           sodipodi:nodetypes="cccsssssccssssssccsccscc"
           style="opacity:0.5;fill:white;fill-opacity:1;stroke:none;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
        <path
           d="M 15,19.25 L 15,20.5625 C 15,21.350226 15.649774,22 16.4375,22 L 31.5625,22 C 32.350226,22 33,21.350226 33,20.5625 L 33,19.25 C 32.518273,19.528997 32.179101,20.021035 32.0625,20.59375 C 32.049672,20.66098 32.004791,20.695863 31.96875,20.75 C 31.904537,20.908347 31.750768,21 31.5625,21 L 16.4375,21 C 16.262617,21.003082 16.123355,20.888349 16.03125,20.75 C 15.995209,20.695863 15.950328,20.66098 15.9375,20.59375 C 15.820899,20.021035 15.481727,19.528997 15,19.25 z "
           id="rect3343"
           sodipodi:nodetypes="ccccccssccssc"
           style="opacity:0.8;fill:white;fill-opacity:1;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.4;stroke-opacity:1" />
      </g>
      <path
         d="M 11.5,19 C 11.198127,19.592213 11,20.27145 11,21 C 10.999999,23.256835 12.570013,25 14.46875,25 L 33.53125,25 C 35.429987,25 37.000001,23.256835 37,21 C 37,20.27145 36.801873,19.592213 36.5,19 L 34,19 C 33.024326,19 32.249062,19.677406 32.0625,20.59375 C 32.016889,20.832791 31.805816,21.004288 31.5625,21 L 16.4375,21 C 16.194184,21.004288 15.983111,20.832791 15.9375,20.59375 C 15.750938,19.677406 14.975674,19 14,19 L 11.5,19 z "
         id="path3485"
         inkscape:original="M 11.1875 18.5 C 10.768143 19.213373 10.5 20.075257 10.5 21 C 10.499999 23.492999 12.266265 25.5 14.46875 25.5 L 33.53125 25.5 C 35.733735 25.5 37.500001 23.492999 37.5 21 C 37.5 20.075257 37.231857 19.213373 36.8125 18.5 L 34 18.5 C 32.788125 18.5 31.794854 19.35874 31.5625 20.5 L 16.4375 20.5 C 16.205146 19.35874 15.211875 18.5 14 18.5 L 11.1875 18.5 z "
         inkscape:radius="-0.49999997"
         sodipodi:type="inkscape:offset"
         style="opacity:1;fill:url(#radialGradient2504);fill-opacity:1;stroke:none;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
    </g>
    <g
       id="g32"
       style="display:inline;enable-background:new"
       transform="translate(303,126) scale(1.000000,1.000000)">
      <path
         d="M 40.1875,43 A 16.375,3.1875 0 1 1 7.4375,43 A 16.375,3.1875 0 1 1 40.1875,43 z"
         id="path151"
         sodipodi:cx="23.8125"
         sodipodi:cy="43"
         sodipodi:rx="16.375"
         sodipodi:ry="3.1875"
         sodipodi:type="arc"
         style="opacity:0.2;color:#000000;fill:url(#radialGradient2552);fill-opacity:1;fill-rule:nonzero;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:1.4;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
         transform="matrix(0.7328244,0,0,0.9411767,-1.4503815,-13.470597)" />
      <g
         id="g153"
         transform="matrix(0.6458396,0,0,0.6666667,0.4737449,-2.1666657)">
        <path
           d="M 15.500002,35.500004 L 32.500012,35.500004 L 24.000007,44.499996 L 15.500002,35.500004 z"
           id="path155"
           sodipodi:nodetypes="cccc"
           style="color:#000000;fill:url(#linearGradient2546);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2548);stroke-width:1.52399492;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:1.4;stroke-opacity:1;visibility:visible;display:inline;overflow:visible" />
        <path
           d="M 17.8125,34.5 L 24,41.0625 L 30.1875,34.5 L 17.8125,34.5 z"
           id="path157"
           inkscape:original="M 15.5 33.5 L 24 42.5 L 32.5 33.5 L 15.5 33.5 z "
           inkscape:radius="-1"
           sodipodi:type="inkscape:offset"
           style="opacity:0.7;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient2550);stroke-width:1.86067462;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:1.4;stroke-opacity:1;visibility:visible;display:inline;overflow:visible"
           transform="matrix(0.8693142,0,0,0.7717007,3.1364581,10.376324)" />
      </g>
      <rect
         height="3.3333344"
         id="rect159"
         style="fill:url(#linearGradient5098);fill-opacity:1;stroke:#555753;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1"
         width="11.333358"
         x="10.240194"
         y="9.4264498" />
      <path
         d="M 17.573551,13.488529 C 17.573551,16.49985 19.680137,17.5 22.878792,17.5 L 33.573552,17.5 L 33.573552,13.488529 L 17.573551,13.488529 z"
         id="path161"
         sodipodi:nodetypes="ccccc"
         style="fill:url(#linearGradient5093);fill-opacity:1;stroke:url(#linearGradient5095);stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 33.145834,14.539135 L 23.416667,14.539135 C 23.148017,14.755202 22.831777,14.872468 22.5,14.872468"
         id="path163"
         sodipodi:nodetypes="ccc"
         style="opacity:0.7;fill:none;fill-opacity:1;stroke:url(#linearGradient5090);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 7.3652169,10.759784 C 7.0856455,11.235366 6.9068835,11.809956 6.9068835,12.426451 C 6.9068835,14.08845 8.0843936,15.42645 9.552717,15.426451 L 22.261051,15.426451 C 23.729374,15.426451 24.906885,14.08845 24.906884,12.426451 C 24.906884,11.809956 24.728122,11.235366 24.448551,10.759784 L 22.573551,10.759784 C 21.765634,10.759784 21.103454,11.332278 20.948551,12.093118 L 19.906884,12.093118 L 16.927717,12.093118 L 11.906884,12.093118 C 11.098966,12.093118 10.436786,11.520624 10.281884,10.759784 L 7.3652169,10.759784 z"
         id="path165"
         style="fill:#d3d7cf;fill-opacity:1;stroke:#888a85;stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 11.57355,10.465585 L 20.240218,10.465585"
         id="path167"
         style="opacity:0.5;fill:none;fill-rule:evenodd;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
      <path
         d="M 21.47653,7.4999994 C 20.062918,7.4999994 17.593339,9.5255907 17.5,12.093118 L 23.506653,12.093118 L 23.506653,10.594564 L 33.573553,10.594564 L 33.573553,7.4999994 L 21.47653,7.4999994 z"
         id="path169"
         sodipodi:nodetypes="ccccccc"
         style="fill:url(#linearGradient5083);fill-opacity:1;stroke:url(#linearGradient5085);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 32.4375,13.96875 C 31.610667,13.96875 30.201749,14.649802 29.0625,15.84375 C 28.029017,16.926854 27.225347,18.415244 27.03125,20.03125 L 35,20.03125 L 35,18.5 C 35.000026,18.241127 35.209877,18.031276 35.46875,18.03125 L 50.03125,18.03125 L 50.03125,13.96875 L 32.4375,13.96875 z"
         id="path171"
         inkscape:original="M 32.4375 13.5 C 30.326785 13.5 26.639368 16.58704 26.5 20.5 L 35.46875 20.5 L 35.46875 18.5 L 50.5 18.5 L 50.5 13.5 L 32.4375 13.5 z "
         inkscape:radius="-0.46875"
         sodipodi:type="inkscape:offset"
         style="opacity:0.8;fill:url(#radialGradient5100);fill-opacity:1;stroke:none;stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1"
         transform="matrix(0.6666667,0,0,0.623607,-9.311684e-2,-0.7110107)" />
      <path
         d="M 20.344384,13.093117 C 20.281597,12.838765 20.240218,12.574243 20.240218,12.294646 C 20.240218,10.760224 21.292416,9.4999992 22.573551,9.4999992 L 32.906885,9.4999992"
         id="path173"
         sodipodi:nodetypes="cscc"
         style="opacity:0.6;fill:none;fill-opacity:1;stroke:url(#linearGradient5079);stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 32.906883,8.5000001 L 21.733362,8.5000001 C 21.361508,8.5000001 20.467435,8.8678522 19.768787,9.5525895 C 19.070139,10.237327 18.538537,11.162596 18.499999,12.174494 L 18.499999,13.093118"
         id="path175"
         sodipodi:nodetypes="ccscc"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient5076);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 18.919175,15.284177 C 19.187656,15.477714 19.562157,15.837374 20,16 C 20.916396,16.340373 21.876124,16.499995 22.198551,16.499995 L 32.906885,16.499995"
         id="path177"
         sodipodi:nodetypes="cscc"
         style="opacity:0.4;fill:none;fill-opacity:1;stroke:url(#linearGradient5073);stroke-width:0.99999899;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 14.240217,13.550607 C 14.240217,15.550607 12.581076,17.449395 9.6152172,17.449395 L -1.7597833,17.449395 L -1.7597833,13.550607 L 14.240217,13.550607 z"
         id="path179"
         sodipodi:nodetypes="ccccc"
         style="fill:url(#linearGradient5139);fill-opacity:1;stroke:url(#linearGradient5141);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M -1.1458334,14.5 L 8.5833337,14.5 C 8.851983,14.716067 9.1682231,14.833333 9.5000004,14.833333"
         id="path181"
         sodipodi:nodetypes="ccc"
         style="opacity:0.7;fill:none;fill-opacity:1;stroke:url(#linearGradient5136);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 10.281884,7.4264507 C 11.689027,7.4264507 14.147305,9.4844775 14.240217,12.093118 L 8.2610505,12.093118 L 8.2610505,10.511472 L -1.7597833,10.511472 L -1.7597833,7.4264507 L 10.281884,7.4264507 z"
         id="path183"
         sodipodi:nodetypes="ccccccc"
         style="fill:url(#linearGradient5131);fill-opacity:1;stroke:url(#linearGradient5133);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 32.4375,13.96875 C 31.610667,13.96875 30.201749,14.649802 29.0625,15.84375 C 28.029017,16.926854 27.225347,18.415244 27.03125,20.03125 L 35,20.03125 L 35,18.5 C 35.000026,18.241127 35.209877,18.031276 35.46875,18.03125 L 50.03125,18.03125 L 50.03125,13.96875 L 32.4375,13.96875 z"
         id="path185"
         inkscape:original="M 32.4375 13.5 C 30.326785 13.5 26.639368 16.58704 26.5 20.5 L 35.46875 20.5 L 35.46875 18.5 L 50.5 18.5 L 50.5 13.5 L 32.4375 13.5 z "
         inkscape:radius="-0.46875"
         sodipodi:type="inkscape:offset"
         style="opacity:0.7;fill:url(#radialGradient5143);fill-opacity:1;stroke:none;stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1"
         transform="matrix(-0.6666667,0,0,0.6666667,32.020834,-1.3541673)" />
      <path
         d="M 11.395833,12.5 C 11.45862,12.287634 11.5,12.066776 11.5,11.833333 C 11.5,10.552198 10.447801,9.4999999 9.1666666,9.4999999 L -1.1666672,9.4999999"
         id="path187"
         sodipodi:nodetypes="cscc"
         style="opacity:0.6;fill:none;fill-opacity:1;stroke:url(#linearGradient5127);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M -1.1666672,8.4999996 L 10.208333,8.4999996 C 10.586892,8.4999996 11.497088,8.9004383 12.208333,9.645833 C 12.919578,10.391228 13.460766,11.398463 13.5,12.5 L 13.5,13.5"
         id="path189"
         sodipodi:nodetypes="ccscc"
         style="fill:none;fill-opacity:1;stroke:url(#linearGradient5124);stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 12.742371,14.426451 C 12.480551,14.784859 12.133213,15.119331 11.706233,15.420495 C 10.812575,16.050826 9.6639549,16.41454 9.3495274,16.41454 L -1.0931166,16.41454"
         id="path191"
         sodipodi:nodetypes="cscc"
         style="opacity:0.5;fill:none;fill-opacity:1;stroke:url(#linearGradient5121);stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 6.9837962,10.499999 C 6.688693,11.002056 6.4999998,11.608632 6.4999998,12.259446 C 6.4999991,14.013965 7.7429271,15.488527 9.2928241,15.488527 L 22.707177,15.488527 C 24.257073,15.488527 25.500002,14.013965 25.500001,12.259446 C 25.500001,11.608632 25.311308,11.002056 25.016205,10.499999 L 23.037038,10.499999 C 22.184237,10.499999 21.485269,10.731895 21.321761,11.535089 L 10.678241,11.535089 C 10.514732,10.731895 9.8157644,10.499999 8.962963,10.499999 L 6.9837962,10.499999 z"
         id="path193"
         sodipodi:nodetypes="csccscccccc"
         style="fill:url(#linearGradient5062);fill-opacity:1;stroke:#555753;stroke-width:0.99999917;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 24.188856,10.426451 L 24.188856,10.426451 z M 7.6244448,11.093118 C 7.4725809,11.380366 7.3236945,11.694696 7.2615647,12.030618 C 7.2376579,12.159877 7.2402188,12.289974 7.2402188,12.426451 C 7.2402181,13.17873 7.5144052,13.843688 7.9446332,14.322284 C 8.0520744,14.442132 8.1600375,14.539984 8.2861674,14.634784 C 8.4122974,14.729585 8.5501898,14.818308 8.6917394,14.884784 C 8.9746657,15.017241 9.285371,15.093118 9.6096127,15.093118 L 22.630606,15.093118 C 22.955773,15.093118 23.26538,15.017738 23.548479,14.884784 C 23.690029,14.818308 23.827921,14.729585 23.954052,14.634784 C 24.080181,14.539984 24.188145,14.442132 24.295586,14.322284 C 24.725813,13.843687 25,13.17873 25,12.426451 C 25,12.304172 24.992437,12.189714 24.978654,12.072284 C 24.97647,12.059248 24.981052,12.043582 24.978654,12.030618 C 24.916525,11.694696 24.767638,11.380366 24.615774,11.093118 L 23.890014,11.093118 C 24.147659,11.434436 24.316931,11.891064 24.316931,12.426451 C 24.316932,13.622487 23.508915,14.426451 22.630606,14.426451 L 9.6096127,14.426451 C 8.7313041,14.42645 7.9232873,13.622486 7.9232873,12.426451 C 7.9232873,11.891064 8.0925599,11.434436 8.3502051,11.093118 L 7.6244448,11.093118 z"
         id="path195"
         sodipodi:nodetypes="cccsssssccssssssccsccscc"
         style="opacity:0.5;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 9.9068837,11.259784 L 9.9068837,12.134784 C 9.9068837,12.659935 10.340066,13.093118 10.865217,13.093118 L 20.948551,13.093118 C 21.473702,13.093118 21.906884,12.659935 21.906884,12.134784 L 21.906884,11.259784 C 21.585733,11.445782 21.359618,11.773808 21.281884,12.155618 C 21.273332,12.200438 21.243412,12.223693 21.219384,12.259784 C 21.176576,12.365349 21.074063,12.426451 20.948551,12.426451 L 10.865217,12.426451 C 10.748628,12.428506 10.655787,12.352017 10.594384,12.259784 C 10.570356,12.223693 10.540436,12.200438 10.531884,12.155618 C 10.45415,11.773808 10.228035,11.445782 9.9068837,11.259784 z"
         id="path197"
         sodipodi:nodetypes="ccccccssccssc"
         style="opacity:0.8;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.99999976;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:1.4;stroke-opacity:1" />
      <path
         d="M 11.5,19 C 11.198127,19.592213 11,20.27145 11,21 C 10.999999,23.256835 12.570013,25 14.46875,25 L 33.53125,25 C 35.429987,25 37.000001,23.256835 37,21 C 37,20.27145 36.801873,19.592213 36.5,19 L 34,19 C 33.024326,19 32.249062,19.677406 32.0625,20.59375 C 32.016889,20.832791 31.805816,21.004288 31.5625,21 L 16.4375,21 C 16.194184,21.004288 15.983111,20.832791 15.9375,20.59375 C 15.750938,19.677406 14.975674,19 14,19 L 11.5,19 z"
         id="path199"
         inkscape:original="M 11.1875 18.5 C 10.768143 19.213373 10.5 20.075257 10.5 21 C 10.499999 23.492999 12.266265 25.5 14.46875 25.5 L 33.53125 25.5 C 35.733735 25.5 37.500001 23.492999 37.5 21 C 37.5 20.075257 37.231857 19.213373 36.8125 18.5 L 34 18.5 C 32.788125 18.5 31.794854 19.35874 31.5625 20.5 L 16.4375 20.5 C 16.205146 19.35874 15.211875 18.5 14 18.5 L 11.1875 18.5 z "
         inkscape:radius="-0.49999997"
         sodipodi:type="inkscape:offset"
         style="opacity:1;fill:url(#radialGradient2504);fill-opacity:1;stroke:none;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:1.4;stroke-opacity:1"
         transform="matrix(0.6666667,0,0,0.6511469,-9.311684e-2,-1.2786729)" />
    </g>
    <g
       id="g22"
       style="display:inline;enable-background:new"
       transform="translate(303,177)">
      <image
         height="22"
         id="image22"
         width="22"
         x="0"
         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAABmJLR0QAAAAAAAD5Q7t/AAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1wECEQw4zdVZ2QAAA2BJREFUOMvtk01slFUUhp/7/c20dOwUtEQplNg2hKosTEHSFjAusKmNU41CbXDlqjWmK7sg0RhDFNIV8YdYYeOGiiZAI4W0Qo02ooS2CTRTbKuRlo7OtNPONwxfZ+b7uW6mZkJKAybsPMlJbu573vece8498L89bBOv7Xs1BDQDIaAkd+/5fMak47hHvz75zbGViPvfeL1N09SOTCZbBSh50FVggEw2U5tOL3VZljWVupOSt28n5WJiQf42cUO+/8F7VuuBlp67RVsPtPSEx8NOfCEuXdeVy+a6rrRteyCTzXSK/ot9m4FG4E1gJ4AQggJ/AYHAI3R3f0k0GkUIAYCUkoonK+h8t5M/bv5OIpFASm855zxwGhjUur84HgUmgL8MQ8O2XTRVo7Kqkt176nlm29OoYwqhUDMAZ8+eYfeeXdyYCHPh/AU5MTElPOkhFPBcOQ1cBsZE/hNbWvdFD390uNQwDI50HSESiaw6oLKyjbS3vU0kMstnn3+aOtXzbWAZ0/IDdV39c3z8eumWLVs59OEhFEVFCAVFEQih4LoOtm3jOA624yClh207fH9pAEVRFvO1tL2NDQ1ABbApmbR8gz/8SGHhGizLoqioCE3T0XUdXTcwTRMzaZJMmpimSXxhgbm5GLMzs1hWet3exoZeYBS4JebnYxUJM7EhYS5uj8aiTSPDI89PT8+QSqVwHGfVVqiqSkFhAZvLy6nZXjO7vnT9+WBxyfVgcXBe9F/s04AA0JT7y83ZbFaduRXh9Jm+OwnT/O7K0E8t+YI76nf1BIuLm15pblyzsewJDMMAGAZOAr8Ck/8Ob1vNjsblRRGCR/1+/6RtO0dHfvl5xQV5dmdtm65rHel0ukpKFGAQ+AoYunb1ytTDW+l7AfIdfIl1FKxGDsZZEp+QWQnT7kWyAuopPSteFkWPZVdMnJozrIDsBTf0QMLJJfegUPW64rr2El/1SwqOBVKC5icz1uuZ5z6OS889+MCtAAi/RbmiGkPBp2pKS2tfNKTnELvcnzXDozHPzdZXn+DmfxE2AKPzOR7fv1U/t7ayehNAfDI8feKaHTo2yt+ADWRzfl/Cvpz7AV/dBtZ2veA77kmUjoFM+3CUOJDJeRqwAOd+K1ZzM9Bz1eu5eCdXqZ13lneT/wHNSnR+iiZJugAAAABJRU5ErkJggg=="
         y="0" />
    </g>
    <g
       id="g16"
       style="display:inline;enable-background:new"
       transform="translate(303,219)">
      <image
         height="16"
         id="image16"
         width="16"
         x="0"
         xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABmJLR0QA/wD/AP+gvaeTAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAB3RJTUUH1wECECkDle8KLQAAAnBJREFUOMulUk1IVFEYPfe9e+cfzCAjm2lRgQglJWES6gjBFCL+p5MMBS0CJZBcBkXEYEkrV5H9LCLQaKEDliWEYhYRNG3CMcfEVIbUZnxvfp6j7765LSrIGozoLM/5zuH7Pg5pam6oBHARQA2+I2M2m8KcGz2P+h7fQha0nD7VRqncsb6+EUI6vVapaVogmUqKRCIuVpWY+Dg9Ja5cvay1+rz9v5tbfd7+ydAkj8aiwjCMATr+anTTACEEVosVjY311t7eOy1NzQ0thBAAgBACLqcLO/N2YHYuDEVRQHtv3wUAMMbAOQelFPv274XbXYGDRQcgf5BQW1sHAAgEBlHhLsfU9CSGh5+JcHjmRzQAb2tz4kbXdYfJZEb3zW5EIhFsBeduJ9rbLwToT4LK8moo9MFRUFAI/zU/JEkGIRIkiYAQCYbBoes6OOfQOYcQGeg6F9RTddINoDOR0lyjY+OwWu3QNA0OhwOUMjDGwJgJqqpCjauIx1Woqoqv0ShWVpZBZj5NuxV1tXNpeakm+C6I+fkFpJJJ6JxveYIsy7DZrIN0dm4GAAhjFEdLS3C4+BAWFiMYGHyaUlR16O3ES++vxpKy8v5tOTnV9XVVdpczH6ToSMmmIhGCjMViCes67wm+eZ21SMWlx9oYox3pdDqE/wXJRiYvyc8B4oFs/lM01gGIEUeXcQIAaNaAlOEnttyy7b57Njl3DwRPg8gmGLE5xB6c14Sm+LfcAABC51BJmGnIVX3GbsnbhbUvn7H4pC8luF5deB9jfw0AgKAPxyVmCuSXeeyRiZFURt+oLX6IF//0pKAPnvdn6VLQB082/RvxMQVBPhl4pwAAAABJRU5ErkJggg=="
         y="0" />
    </g>
  </g>
  <g
     id="layer4"
     inkscape:groupmode="layer"
     inkscape:label="hires"
     style="display:inline" />
</svg>