summaryrefslogtreecommitdiff
path: root/src/input-gaming.svg
blob: 5a6c5fb2865cb2ee0ad596331ac62e7c40d1026c (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
<?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="input-gaming.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="linearGradient6317"
       inkscape:collect="always">
      <stop
         id="stop6319"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6321"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6297"
       inkscape:collect="always">
      <stop
         id="stop6301"
         offset="0"
         style="stop-color:#7f837c;stop-opacity:1" />
      <stop
         id="stop6299"
         offset="1"
         style="stop-color:#4e504c;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient6260"
       inkscape:collect="always">
      <stop
         id="stop6262"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop6264"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient6240">
      <stop
         id="stop6242"
         offset="0"
         style="stop-color:#999999;stop-opacity:1;" />
      <stop
         id="stop6244"
         offset="1"
         style="stop-color:#7b7b7b;stop-opacity:1;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5804"
       inkscape:collect="always">
      <stop
         id="stop5806"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop5808"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5784"
       inkscape:collect="always">
      <stop
         id="stop5786"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop5788"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5739">
      <stop
         id="stop5741"
         offset="0"
         style="stop-color:#eeeeec;stop-opacity:1;" />
      <stop
         id="stop5747"
         offset="0.79172641"
         style="stop-color:#cacac5;stop-opacity:1" />
      <stop
         id="stop5743"
         offset="1"
         style="stop-color:#dedede;stop-opacity:1" />
    </linearGradient>
    <linearGradient
       id="linearGradient5731"
       inkscape:collect="always">
      <stop
         id="stop5733"
         offset="0"
         style="stop-color:#ffffff;stop-opacity:1;" />
      <stop
         id="stop5735"
         offset="1"
         style="stop-color:#ffffff;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       id="linearGradient5024">
      <stop
         id="stop5026"
         offset="0"
         style="stop-color:#555753" />
      <stop
         id="stop5028"
         offset="1"
         style="stop-color:#555753;stop-opacity:0;" />
    </linearGradient>
    <linearGradient
       gradientTransform="matrix(1,0,0,2.084749,1.4162166,3.9312152)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6086"
       inkscape:collect="always"
       x1="29.87479"
       x2="30.728344"
       xlink:href="#linearGradient5024"
       y1="4.7625585"
       y2="-0.46811083" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient5737"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient5731"
       y1="35"
       y2="28" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient5745"
       inkscape:collect="always"
       x1="22"
       x2="22"
       xlink:href="#linearGradient5739"
       y1="22.700733"
       y2="37.375" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient5790"
       inkscape:collect="always"
       x1="9.6875"
       x2="9.40625"
       xlink:href="#linearGradient5784"
       y1="31.34375"
       y2="29.3125" />
    <linearGradient
       gradientTransform="matrix(-1,0,0,1,23.106302,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient5800"
       inkscape:collect="always"
       x1="9.6875"
       x2="9.40625"
       xlink:href="#linearGradient5784"
       y1="31.34375"
       y2="29.3125" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient5810"
       inkscape:collect="always"
       x1="11.453125"
       x2="11.453125"
       xlink:href="#linearGradient5804"
       y1="34"
       y2="32.390625" />
    <filter
       height="1.2921087"
       id="filter6232"
       inkscape:collect="always"
       width="1.1154741"
       x="-0.057737055"
       y="-0.14605433">
      <feGaussianBlur
         id="feGaussianBlur6234"
         inkscape:collect="always"
         stdDeviation="1.0326498" />
    </filter>
    <linearGradient
       gradientTransform="matrix(0.7,0,0,1,5.7,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6280"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="27.680285"
       y2="31" />
    <linearGradient
       gradientTransform="matrix(0.7,0,0,1,5.7,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6282"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6260"
       y1="31"
       y2="27.680285" />
    <linearGradient
       gradientTransform="matrix(0.7,0,0,1,5.7,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6284"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="28"
       y2="31" />
    <linearGradient
       gradientTransform="translate(-1.5,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6286"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="27.680285"
       y2="31" />
    <linearGradient
       gradientTransform="translate(-1.5,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6288"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6260"
       y1="31"
       y2="27.680285" />
    <linearGradient
       gradientTransform="translate(-1.5,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6290"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="28"
       y2="31" />
    <radialGradient
       cx="11.5"
       cy="30.75"
       fx="11.5"
       fy="30.75"
       gradientTransform="matrix(1,0,0,0.9,0,3.45)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6303"
       inkscape:collect="always"
       r="5.5"
       xlink:href="#linearGradient6297" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6323"
       inkscape:collect="always"
       x1="21.666193"
       x2="21.666193"
       xlink:href="#linearGradient6317"
       y1="28.145767"
       y2="29.648371" />
    <linearGradient
       gradientTransform="translate(-6.6291261e-2,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6330"
       inkscape:collect="always"
       x1="21.666193"
       x2="21.666193"
       xlink:href="#linearGradient6317"
       y1="28.145767"
       y2="29.648371" />
    <linearGradient
       gradientTransform="matrix(0.6843492,0,0,1.423653,-64.473506,2.2954075)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6480"
       inkscape:collect="always"
       x1="29.87479"
       x2="30.728344"
       xlink:href="#linearGradient5024"
       y1="4.7625585"
       y2="-0.46811083" />
    <linearGradient
       gradientTransform="matrix(0.6843492,0,0,0.7054158,-65.817693,-0.752191)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6482"
       inkscape:collect="always"
       x1="22"
       x2="22"
       xlink:href="#linearGradient5739"
       y1="22.700733"
       y2="37.375" />
    <linearGradient
       gradientTransform="matrix(0.6843492,0,0,0.6828894,-65.817693,-0.2641777)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6484"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient5731"
       y1="35"
       y2="28" />
    <radialGradient
       cx="11.65625"
       cy="30.65625"
       fx="11.65625"
       fy="30.65625"
       gradientTransform="matrix(0.6843492,0,0,0.6000001,-66.041762,1.7999995)"
       gradientUnits="userSpaceOnUse"
       id="radialGradient6486"
       inkscape:collect="always"
       r="5.5"
       xlink:href="#linearGradient6297" />
    <linearGradient
       gradientUnits="userSpaceOnUse"
       id="linearGradient6488"
       inkscape:collect="always"
       x1="9.6875"
       x2="9.40625"
       xlink:href="#linearGradient5784"
       y1="31.34375"
       y2="29.3125" />
    <linearGradient
       gradientTransform="matrix(-1,0,0,1,23.106302,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6490"
       inkscape:collect="always"
       x1="9.6875"
       x2="9.40625"
       xlink:href="#linearGradient5784"
       y1="31.34375"
       y2="29.3125" />
    <linearGradient
       gradientTransform="matrix(0.9490611,0,0,1,0.6606143,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6492"
       inkscape:collect="always"
       x1="11.453125"
       x2="11.453125"
       xlink:href="#linearGradient5804"
       y1="34"
       y2="32.390625" />
    <linearGradient
       gradientTransform="matrix(0.7,0,0,1,5.7,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6494"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="27.680285"
       y2="31" />
    <linearGradient
       gradientTransform="matrix(0.7,0,0,1,5.7,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6496"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6260"
       y1="31"
       y2="27.680285" />
    <linearGradient
       gradientTransform="matrix(0.7,0,0,1,5.7,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6498"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="28"
       y2="31" />
    <linearGradient
       gradientTransform="translate(-1.5,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6500"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="27.680285"
       y2="31" />
    <linearGradient
       gradientTransform="translate(-1.5,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6502"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6260"
       y1="31"
       y2="27.680285" />
    <linearGradient
       gradientTransform="translate(-1.5,0)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6504"
       inkscape:collect="always"
       x1="24"
       x2="24"
       xlink:href="#linearGradient6240"
       y1="28"
       y2="31" />
    <linearGradient
       gradientTransform="matrix(0.6843492,0,0,0.6828894,-65.817693,-0.2641777)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6506"
       inkscape:collect="always"
       x1="21.666193"
       x2="21.666193"
       xlink:href="#linearGradient6317"
       y1="28.145767"
       y2="29.648371" />
    <linearGradient
       gradientTransform="matrix(0.6843492,0,0,0.6828894,-65.863059,-0.2641777)"
       gradientUnits="userSpaceOnUse"
       id="linearGradient6508"
       inkscape:collect="always"
       x1="21.666193"
       x2="21.666193"
       xlink:href="#linearGradient6317"
       y1="28.145767"
       y2="29.648371" />
  </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">devices</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">input-gaming</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 10.955203,22.664056 C 6.3273995,22.664056 2.5750634,26.442075 2.5750633,31.101556 C 2.5750633,35.761036 6.3273995,39.539058 10.955203,39.539056 C 14.281437,39.539056 17.142798,37.586796 18.497329,34.757806 L 29.51566,34.757806 C 30.851051,37.637443 33.756904,39.632806 37.119861,39.632806 C 41.747664,39.632806 45.499999,35.854787 45.5,31.195306 C 45.5,26.827044 42.183703,23.221579 37.957875,22.789056 C 37.646098,22.705142 37.334477,22.664056 36.99571,22.664056 L 11.948405,22.664056 C 11.844225,22.664056 11.740015,22.687009 11.63803,22.695306 C 11.407188,22.676063 11.190952,22.664056 10.955203,22.664056 z"
         id="path6206"
         style="opacity:0.64457831;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;filter:url(#filter6232)" />
      <path
         d="M 23.855556,23.955321 C 27.849005,14.622805 10.33528,20.756286 13.73735,15.886134 C 17.080987,11.099629 35.542805,21.077409 39.389419,16.001201 C 43.30144,10.838676 29.292251,12.644661 35.278506,3.4553216"
         id="path5014"
         sodipodi:nodetypes="czzc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6086);stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         d="M 10.955203,21.664056 C 6.3273995,21.664056 2.5750634,25.442075 2.5750633,30.101556 C 2.5750633,34.761036 6.3273995,38.539058 10.955203,38.539056 C 14.281437,38.539056 17.142798,36.586796 18.497329,33.757806 L 29.51566,33.757806 C 30.851051,36.637443 33.756904,38.632806 37.119861,38.632806 C 41.747664,38.632806 45.499999,34.854787 45.5,30.195306 C 45.5,25.827044 42.183703,22.221579 37.957875,21.789056 C 37.646098,21.705142 37.334477,21.664056 36.99571,21.664056 L 11.948405,21.664056 C 11.844225,21.664056 11.740015,21.687009 11.63803,21.695306 C 11.407188,21.676063 11.190952,21.664056 10.955203,21.664056 z"
         id="path5553"
         style="opacity:1;color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:0.99999994000000003;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 11.564747,22.500001 C 7.1525668,22.500001 3.5750633,25.617041 3.5750632,29.461327 C 3.5750632,33.305612 7.1525668,36.422655 11.564747,36.422653 C 14.736002,36.422653 17.464043,34.811949 18.755463,32.477901 L 29.260417,32.477901 C 30.533588,34.853735 33.304048,36.500002 36.510315,36.500002 C 40.922495,36.500002 44.499997,33.382962 44.499998,29.538675 C 44.499998,25.934658 41.338218,22.959983 37.309284,22.603131 C 37.012033,22.533899 36.714932,22.500001 36.391949,22.500001 L 12.511673,22.500001 C 12.412347,22.500001 12.312992,22.518938 12.215759,22.525784 C 11.995673,22.509908 11.789512,22.500001 11.564747,22.500001 z"
         id="path5729"
         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5737);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path5767"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:nonzero;stroke:#cc0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(-1.5,0.5)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path5769"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(3,-2.5)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path5771"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(7.5,0.5)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path5773"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(3,3.5)" />
      <path
         d="M 10.84375,25.5 C 10.099598,25.5 9.5,26.039638 9.5,26.709375 L 9.5,28.2 L 7.84375,28.2 C 7.0995978,28.2 6.5,28.739638 6.5,29.409375 L 6.5,30.403125 C 6.5,31.072862 7.0995978,31.6125 7.84375,31.6125 L 9.5,31.6125 L 9.5,33.290625 C 9.5,33.960362 10.099598,34.5 10.84375,34.5 L 12.15625,34.5 C 12.900402,34.5 13.5,33.960362 13.5,33.290625 L 13.5,31.6125 L 15.15625,31.6125 C 15.900402,31.6125 16.5,31.072862 16.5,30.403125 L 16.5,29.409375 C 16.5,28.739638 15.900402,28.2 15.15625,28.2 L 13.5,28.2 L 13.5,26.709375 C 13.5,26.039638 12.900402,25.5 12.15625,25.5 L 10.84375,25.5 z"
         id="rect5775"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="opacity:1;color:#000000;fill:url(#radialGradient6303);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <g
         id="g5812"
         style="opacity:0.84337349">
        <path
           d="M 7.0625,29.3125 C 7.0625,29.3125 7.03125,30.15625 7.625,30.1875 L 10.03125,30.1875 L 10,31.0625 L 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path5782"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 16.043802,29.3125 C 16.043802,29.3125 16.075052,30.15625 15.481302,30.1875 L 13.075052,30.1875 L 13.106302,31.0625 L 15.418802,31 C 16.231302,30.9375 16.043802,29.3125 16.043802,29.3125 z"
           id="path5798"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 9.9375,32.71875 C 10.0625,32.71875 12.96875,32.71875 12.96875,32.71875 C 12.926882,33.243364 13.047904,33.869784 12.375,34 L 10.625,34 C 9.8610868,33.869998 9.9917274,33.243022 9.9375,32.71875 z"
           id="path5802"
           sodipodi:nodetypes="ccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      </g>
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path5817"
         inkscape:transform-center-x="0.28125"
         inkscape:transform-center-y="1.78125"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375001;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(6.25e-2,-0.125)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path6200"
         inkscape:transform-center-x="0.28125"
         inkscape:transform-center-y="1.78125"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375001;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(-4.4375,2.84375)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path6202"
         inkscape:transform-center-x="0.28125"
         inkscape:transform-center-y="1.78125"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375001;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(4.59375,2.90625)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path6204"
         inkscape:transform-center-x="0.28125"
         inkscape:transform-center-y="1.78125"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375001;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(6.2499988e-2,5.875)" />
      <g
         id="g6274"
         transform="translate(1,-0.5)">
        <path
           d="M 19,28 L 19,31 L 22.5,29.5 L 19,28 z"
           id="path6256"
           style="opacity:1;color:#000000;fill:url(#linearGradient6280);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6282);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 19,28 L 19,31 L 22.5,29.5 L 19,28 z"
           id="path6236"
           style="opacity:1;color:#000000;fill:url(#linearGradient6284);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <rect
           height="3"
           id="rect6258"
           rx="0.84323502"
           ry="0.84323502"
           style="opacity:1;color:#000000;fill:url(#linearGradient6286);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6288);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           width="3"
           x="23.5"
           y="28" />
        <rect
           height="3"
           id="rect6238"
           rx="0.84323502"
           ry="0.84323502"
           style="opacity:1;color:#000000;fill:url(#linearGradient6290);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           width="3"
           x="23.5"
           y="28" />
      </g>
      <path
         d="M 20.845611,24.435235 C 20.831664,24.447189 20.751971,24.475081 20.726071,24.473089 C 20.662317,24.473089 20.648371,24.399373 20.640402,24.295772 L 20.640402,24.198149 C 20.640402,24.15631 20.638409,24.114471 20.638409,24.068648 C 20.638409,23.98497 20.640402,23.899301 20.642394,23.811638 C 20.71611,23.811638 20.744002,23.811638 20.783849,23.809646 C 20.799787,23.809646 20.81971,23.807654 20.833657,23.805662 C 20.873503,23.797692 20.889442,23.771792 20.895419,23.660222 L 20.642394,23.660222 C 20.642394,23.584514 20.644386,23.52076 20.646379,23.437082 L 20.646379,23.405205 C 20.526839,23.413174 20.475039,23.451029 20.4591,23.496852 C 20.457108,23.552637 20.451131,23.614399 20.449139,23.670184 C 20.437185,23.676161 20.4332,23.672176 20.417262,23.676161 C 20.391362,23.68413 20.361477,23.692099 20.331592,23.712022 C 20.315653,23.727961 20.313661,23.727961 20.313661,23.785738 C 20.343546,23.799685 20.377415,23.811638 20.431208,23.813631 L 20.431208,24.287803 C 20.431208,24.451173 20.469062,24.62849 20.668294,24.62849 C 20.732048,24.62849 20.807757,24.610559 20.85358,24.580674 C 20.867526,24.56872 20.877488,24.556766 20.881472,24.54282 C 20.883465,24.526882 20.883465,24.504966 20.883465,24.487035 C 20.883465,24.469104 20.881472,24.453166 20.87948,24.441212 L 20.845611,24.435235 M 21.033231,23.783746 C 21.037216,23.805662 21.045185,23.839531 21.073077,23.869416 C 21.102962,23.869416 21.124878,23.863439 21.146793,23.853477 C 21.204571,23.831562 21.282271,23.803669 21.346025,23.803669 C 21.411772,23.803669 21.419741,23.8475 21.419741,23.931178 L 21.419741,24.028801 C 21.407787,24.026809 21.393841,24.026809 21.37591,24.026809 C 21.357979,24.026809 21.336064,24.026809 21.318133,24.028801 C 21.192617,24.042748 20.969477,24.112479 20.969477,24.35355 C 20.969477,24.538835 21.098978,24.622513 21.234455,24.622513 C 21.29024,24.622513 21.340048,24.618528 21.387864,24.59462 C 21.399818,24.586651 21.421734,24.572705 21.431695,24.564736 C 21.457595,24.592628 21.505411,24.622513 21.551234,24.622513 C 21.612996,24.620521 21.656827,24.592628 21.674758,24.566728 C 21.674758,24.554774 21.676751,24.508951 21.678743,24.481058 C 21.616981,24.493012 21.622958,24.403358 21.622958,24.403358 C 21.622958,24.367496 21.62495,24.277841 21.62495,24.232018 C 21.626943,24.158302 21.626943,24.080602 21.626943,24.006886 L 21.626943,23.919224 C 21.626943,23.745892 21.575142,23.646276 21.415757,23.636314 C 21.383879,23.634322 21.377902,23.634322 21.346025,23.634322 C 21.206563,23.638307 21.081047,23.694092 21.037216,23.733938 C 21.033231,23.7439 21.031239,23.753861 21.031239,23.759838 C 21.031239,23.767807 21.031239,23.773784 21.035223,23.785738 L 21.033231,23.783746 M 21.415757,24.387419 C 21.413764,24.399373 21.411772,24.413319 21.411772,24.411327 L 21.413764,24.409335 C 21.389856,24.441212 21.330087,24.467112 21.278286,24.467112 L 21.266333,24.467112 C 21.216525,24.463127 21.180663,24.429258 21.180663,24.337611 C 21.180663,24.220064 21.254379,24.18221 21.340048,24.166272 L 21.338056,24.166272 C 21.357979,24.164279 21.379895,24.162287 21.399818,24.162287 L 21.419741,24.162287 L 21.419741,24.29378 C 21.419741,24.333626 21.419741,24.363511 21.415757,24.387419 M 22.201322,23.799685 C 22.302931,23.799685 22.3368,23.851485 22.3368,23.994932 L 22.3368,24.51692 C 22.3368,24.546805 22.342777,24.57669 22.358716,24.606574 C 22.490209,24.606574 22.526071,24.598605 22.551971,24.574697 C 22.549978,24.496997 22.547986,24.399373 22.547986,24.291788 L 22.547986,23.990947 C 22.547986,23.763823 22.50017,23.636314 22.25113,23.636314 C 22.203315,23.636314 22.163468,23.644284 22.121629,23.65823 C 22.085768,23.670184 22.043929,23.690107 22.004083,23.717999 C 21.992129,23.694092 21.968221,23.676161 21.932359,23.676161 C 21.928374,23.676161 21.91642,23.676161 21.904467,23.680145 C 21.860636,23.698076 21.834735,23.714015 21.820789,23.729953 C 21.834735,23.7698 21.842705,23.815623 21.842705,23.879377 L 21.842705,24.214087 C 21.842705,24.365503 21.840712,24.500981 21.83872,24.606574 L 21.89052,24.606574 C 21.978182,24.604582 22.000098,24.604582 22.02799,24.580674 C 22.047914,24.552782 22.051898,24.528874 22.051898,24.485043 L 22.051898,23.871408 L 22.045921,23.877385 C 22.085768,23.833554 22.137568,23.799685 22.201322,23.799685 M 23.412435,23.978993 C 23.412435,23.915239 23.398489,23.867423 23.366612,23.817615 C 23.39052,23.819608 23.402474,23.819608 23.430366,23.819608 C 23.478182,23.819608 23.50209,23.781754 23.50209,23.729953 C 23.50209,23.702061 23.49412,23.678153 23.486151,23.662214 C 23.466228,23.662214 23.424389,23.664207 23.398489,23.666199 L 23.400481,23.666199 C 23.358643,23.668191 23.302857,23.670184 23.259026,23.672176 C 23.25305,23.676161 23.255042,23.678153 23.259026,23.680145 C 23.213203,23.65823 23.151441,23.634322 23.08171,23.634322 C 22.876501,23.634322 22.729069,23.761831 22.729069,23.986963 C 22.729069,24.110486 22.770908,24.204126 22.856578,24.257918 C 22.848608,24.265888 22.850601,24.26788 22.840639,24.275849 C 22.810754,24.303742 22.7729,24.335619 22.745008,24.363511 C 22.729069,24.383434 22.719108,24.397381 22.719108,24.411327 C 22.7211,24.471096 22.770908,24.524889 22.868532,24.554774 C 22.868532,24.554774 22.928301,24.574697 23.019948,24.582666 C 23.031902,24.582666 23.045848,24.584659 23.057802,24.584659 C 23.103625,24.586651 23.147457,24.588643 23.191288,24.59462 C 23.259026,24.60259 23.27895,24.636459 23.294888,24.678298 C 23.294888,24.684275 23.294888,24.700213 23.294888,24.70619 C 23.296881,24.787875 23.195272,24.913392 23.063779,24.949253 C 23.027917,24.95523 22.97014,24.967184 22.930294,24.967184 C 22.904393,24.967184 22.88447,24.9632 22.880486,24.947261 C 22.872516,24.911399 22.942248,24.841668 23.006002,24.787876 C 23.041864,24.754006 23.02991,24.686267 22.980102,24.660367 C 22.854586,24.744044 22.653361,24.915384 22.673284,25.015 C 22.693207,25.080747 22.784854,25.102662 22.88447,25.102662 C 22.948224,25.102662 23.017956,25.094693 23.069756,25.084731 C 23.316804,25.026954 23.498105,24.827722 23.498105,24.652398 C 23.492128,24.534851 23.406458,24.46512 23.282934,24.441212 C 23.265003,24.437227 23.237111,24.435235 23.211211,24.433242 C 23.179334,24.43125 23.147457,24.427266 23.115579,24.425273 L 23.037879,24.419296 C 22.972132,24.413319 22.936271,24.395388 22.936271,24.377457 C 22.936271,24.369488 22.938263,24.357534 22.946232,24.349565 L 22.986079,24.309719 C 23.009986,24.313703 23.033894,24.315696 23.069756,24.315696 C 23.282934,24.315696 23.412435,24.192171 23.412435,23.978993 M 23.057802,23.767807 C 23.147456,23.767807 23.197265,23.839531 23.209218,23.961063 C 23.21918,24.086579 23.183318,24.180218 23.093664,24.180218 C 22.99604,24.180218 22.948224,24.102517 22.938263,23.977001 C 22.924317,23.835546 22.980102,23.767807 23.057802,23.767807 M 23.995469,24.461135 C 23.871945,24.461135 23.788268,24.39738 23.784283,24.198149 C 23.81616,24.200141 23.822137,24.198149 23.854014,24.198149 C 23.947653,24.198149 24.049262,24.194164 24.111024,24.186195 C 24.168801,24.178225 24.242517,24.152325 24.266425,24.132402 C 24.272402,24.102517 24.276386,24.058686 24.276386,24.014855 C 24.276386,23.980986 24.274394,23.949109 24.272402,23.919224 C 24.256463,23.745892 24.158839,23.634322 23.969569,23.634322 C 23.740452,23.634322 23.573097,23.777769 23.573097,24.164279 C 23.573097,24.327649 23.608959,24.453166 23.682675,24.528874 C 23.762368,24.608567 23.863976,24.626498 23.963592,24.626498 C 24.027346,24.626498 24.089108,24.614544 24.118993,24.606574 L 24.117001,24.606574 C 24.178763,24.590636 24.244509,24.544812 24.246502,24.502974 C 24.244509,24.481058 24.238532,24.441212 24.226578,24.403358 C 24.148878,24.445196 24.07317,24.461135 23.995469,24.461135 M 23.949646,23.781754 C 24.025354,23.781754 24.061216,23.833554 24.071177,23.939147 L 24.071177,23.95907 C 24.071177,23.967039 24.07317,23.973016 24.07317,23.980986 C 24.07317,24.004894 24.069185,24.026809 24.0652,24.040755 C 24.055239,24.046732 24.045277,24.046732 24.035316,24.048725 C 23.995469,24.052709 23.913784,24.054702 23.844053,24.054702 L 23.788268,24.054702 C 23.800222,23.875393 23.869953,23.791715 23.941676,23.781754 L 23.949646,23.781754 M 24.796787,23.799685 C 24.898395,23.799685 24.932265,23.851485 24.932265,23.994932 L 24.932265,24.51692 C 24.932265,24.546805 24.938242,24.57669 24.95418,24.606574 C 25.085673,24.606574 25.121535,24.598605 25.147435,24.574697 C 25.145443,24.496997 25.14345,24.399373 25.14345,24.291788 L 25.14345,23.990947 C 25.14345,23.763823 25.095635,23.636314 24.846595,23.636314 C 24.798779,23.636314 24.758933,23.644284 24.717094,23.65823 C 24.681232,23.670184 24.639393,23.690107 24.599547,23.717999 C 24.587593,23.694092 24.563685,23.676161 24.527823,23.676161 C 24.523839,23.676161 24.511885,23.676161 24.499931,23.680145 C 24.4561,23.698076 24.4302,23.714015 24.416254,23.729953 C 24.4302,23.7698 24.438169,23.815623 24.438169,23.879377 L 24.438169,24.214087 C 24.438169,24.365503 24.436177,24.500981 24.434184,24.606574 L 24.485985,24.606574 C 24.573647,24.604582 24.595562,24.604582 24.623455,24.580674 C 24.643378,24.552782 24.647363,24.528874 24.647363,24.485043 L 24.647363,23.871408 L 24.641386,23.877385 C 24.681232,23.833554 24.733033,23.799685 24.796787,23.799685 M 25.818629,24.435235 C 25.804683,24.447189 25.72499,24.475081 25.69909,24.473089 C 25.635336,24.473089 25.621389,24.399373 25.61342,24.295772 L 25.61342,24.198149 C 25.61342,24.15631 25.611428,24.114471 25.611428,24.068648 C 25.611428,23.98497 25.61342,23.899301 25.615413,23.811638 C 25.689128,23.811638 25.717021,23.811638 25.756867,23.809646 C 25.772806,23.809646 25.792729,23.807654 25.806675,23.805662 C 25.846522,23.797692 25.86246,23.771792 25.868437,23.660222 L 25.615413,23.660222 C 25.615413,23.584514 25.617405,23.52076 25.619397,23.437082 L 25.619397,23.405205 C 25.499858,23.413174 25.448058,23.451029 25.432119,23.496852 C 25.430127,23.552637 25.42415,23.614399 25.422157,23.670184 C 25.410204,23.676161 25.406219,23.672176 25.39028,23.676161 C 25.36438,23.68413 25.334495,23.692099 25.304611,23.712022 C 25.288672,23.727961 25.28668,23.727961 25.28668,23.785738 C 25.316564,23.799685 25.350434,23.811638 25.404227,23.813631 L 25.404227,24.287803 C 25.404227,24.451173 25.442081,24.62849 25.641313,24.62849 C 25.705067,24.62849 25.780775,24.610559 25.826598,24.580674 C 25.840545,24.56872 25.850506,24.556766 25.854491,24.54282 C 25.856483,24.526882 25.856483,24.504966 25.856483,24.487035 C 25.856483,24.469104 25.854491,24.453166 25.852499,24.441212 L 25.818629,24.435235 M 26.747393,24.12244 C 26.747393,23.801677 26.6159,23.634322 26.354906,23.634322 C 26.11782,23.634322 25.950465,23.791716 25.950465,24.134394 C 25.950465,24.48305 26.093912,24.62849 26.348929,24.62849 C 26.578046,24.62849 26.747393,24.45715 26.747393,24.12244 M 26.171612,24.126425 C 26.171612,23.879378 26.25529,23.785738 26.348929,23.785738 C 26.458506,23.785738 26.528238,23.879378 26.528238,24.128417 C 26.528238,24.391403 26.446552,24.481058 26.352914,24.481058 C 26.249313,24.481058 26.171612,24.391403 26.171612,24.126425"
         id="text6292"
         style="font-size:1.99232042px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:200%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;marker:none;marker-start:none;marker-mid:none;marker-end:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
      <path
         d="M 20.086252,27.67068 L 20.086252,29.106991 L 22.826291,29.106991 L 23.246135,28.974408 L 20.086252,27.67068 z"
         id="path6315"
         style="opacity:0.22289157;color:#000000;fill:url(#linearGradient6323);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 25.246209,27.71875 C 24.950442,27.71875 24.714959,27.954232 24.714959,28.25 L 24.714959,29.09375 L 27.214959,29.09375 L 27.214959,28.25 C 27.214959,27.954233 26.948226,27.71875 26.652459,27.71875 L 25.246209,27.71875 z"
         id="rect6325"
         style="opacity:0.22289157;color:#000000;fill:url(#linearGradient6330);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
    </g>
    <g
       id="g32"
       style="display:inline;enable-background:new"
       transform="translate(303,126) scale(1.000000,1.000000)">
      <path
         d="M 10.955203,22.664056 C 6.3273995,22.664056 2.5750634,26.442075 2.5750633,31.101556 C 2.5750633,35.761036 6.3273995,39.539058 10.955203,39.539056 C 14.281437,39.539056 17.142798,37.586796 18.497329,34.757806 L 29.51566,34.757806 C 30.851051,37.637443 33.756904,39.632806 37.119861,39.632806 C 41.747664,39.632806 45.499999,35.854787 45.5,31.195306 C 45.5,26.827044 42.183703,23.221579 37.957875,22.789056 C 37.646098,22.705142 37.334477,22.664056 36.99571,22.664056 L 11.948405,22.664056 C 11.844225,22.664056 11.740015,22.687009 11.63803,22.695306 C 11.407188,22.676063 11.190952,22.664056 10.955203,22.664056 z"
         id="path105"
         style="opacity:0.64457834;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter6232);enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-0.5676928,0.1108223)" />
      <path
         d="M 16.132838,15.969656 C 18.865751,9.5965805 6.8802478,13.785069 9.2084513,10.459294 C 11.496667,7.1906413 24.130997,14.00436 26.763424,10.537872 C 29.440613,7.0124393 19.853435,8.2457273 23.950124,1.9704248"
         id="path107"
         sodipodi:nodetypes="czzc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6086);stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         d="M 6.9294916,14.529975 C 3.762458,14.529975 1.1945498,17.195049 1.1945497,20.481921 C 1.1945497,23.768792 3.762458,26.433868 6.9294916,26.433867 C 9.2057973,26.433867 11.163967,25.056712 12.090939,23.061098 L 19.631325,23.061098 C 20.545199,25.09244 22.533817,26.5 24.835254,26.5 C 28.002287,26.5 30.570195,23.834926 30.570195,20.548053 C 30.570195,17.466613 28.30069,14.923261 25.408748,14.618152 C 25.195384,14.558957 24.982126,14.529975 24.750291,14.529975 L 7.6091886,14.529975 C 7.5378931,14.529975 7.4665771,14.546167 7.3967837,14.55202 C 7.2388072,14.538445 7.0908262,14.529975 6.9294916,14.529975 z"
         id="path109"
         style="opacity:1;color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 7.3466326,15.100833 C 4.3271606,15.100833 1.8788989,17.229427 1.8788988,19.854649 C 1.8788988,22.47987 4.3271606,24.608466 7.3466326,24.608465 C 9.5168783,24.608465 11.383811,23.508532 12.267593,21.914635 L 19.45665,21.914635 C 20.327943,23.537067 22.223906,24.661286 24.418112,24.661286 C 27.437584,24.661286 29.885844,22.532692 29.885845,19.907469 C 29.885845,17.446324 27.722083,15.41495 24.964886,15.17126 C 24.761462,15.123982 24.558141,15.100833 24.337108,15.100833 L 7.9946606,15.100833 C 7.9266869,15.100833 7.8586934,15.113765 7.7921521,15.11844 C 7.6415364,15.107599 7.5004503,15.100833 7.3466326,15.100833 z"
         id="path111"
         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5737);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path113"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:nonzero;stroke:#cc0000;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-1.5942166,7.7267e-2)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path115"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,1.4853547,-1.9714012)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path117"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,4.564926,7.7267e-2)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path119"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,1.4853547,2.1259352)" />
      <path
         d="M 6.6291498,16.5 C 6.11989,16.5 5.7095556,16.859759 5.7095556,17.30625 L 5.7095556,18.3 L 4.5761022,18.3 C 4.0668423,18.3 3.656508,18.659759 3.656508,19.106251 L 3.656508,19.768751 C 3.656508,20.215242 4.0668423,20.575 4.5761022,20.575 L 5.7095556,20.575 L 5.7095556,21.693751 C 5.7095556,22.140242 6.11989,22.5 6.6291498,22.5 L 7.5273582,22.5 C 8.036618,22.5 8.4469523,22.140242 8.4469523,21.693751 L 8.4469523,20.575 L 9.5804053,20.575 C 10.089665,20.575 10.5,20.215242 10.5,19.768751 L 10.5,19.106251 C 10.5,18.659759 10.089665,18.3 9.5804053,18.3 L 8.4469523,18.3 L 8.4469523,17.30625 C 8.4469523,16.859759 8.036618,16.5 7.5273582,16.5 L 6.6291498,16.5 z"
         id="path121"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="opacity:1;color:#000000;fill:url(#radialGradient6303);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <g
         id="g123"
         style="opacity:0.8433735"
         transform="matrix(0.6843492,0,0,0.6828894,-0.9063896,-1.1802176)">
        <path
           d="M 7.0625,29.3125 C 7.0625,29.3125 7.03125,30.15625 7.625,30.1875 L 10.03125,30.1875 L 10,31.0625 L 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path125"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 16.043802,29.3125 C 16.043802,29.3125 16.075052,30.15625 15.481302,30.1875 L 13.075052,30.1875 L 13.106302,31.0625 L 15.418802,31 C 16.231302,30.9375 16.043802,29.3125 16.043802,29.3125 z"
           id="path127"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 10.091909,32.71875 C 10.210541,32.71875 12.96875,32.71875 12.96875,32.71875 C 12.929015,33.243364 13.043872,33.869784 12.405245,34 L 10.744388,34 C 10.019388,33.869998 10.143374,33.243022 10.091909,32.71875 z"
           id="path129"
           sodipodi:nodetypes="ccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      </g>
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path131"
         inkscape:transform-center-x="0.19247238"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-0.524921,-0.3495389)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path133"
         inkscape:transform-center-x="0.19247238"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-3.6044923,1.677789)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path135"
         inkscape:transform-center-x="0.19247239"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,2.5760362,1.7204696)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path137"
         inkscape:transform-center-x="0.19247237"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-0.524921,3.7477975)" />
      <g
         id="g139"
         transform="matrix(0.6843492,0,0,0.6828894,0.1166563,-0.6056224)">
        <path
           d="M 19,28 L 19,31 L 22.5,29.5 L 19,28 z"
           id="path141"
           style="opacity:1;color:#000000;fill:url(#linearGradient6280);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6282);stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 19,28 L 19,31 L 22.5,29.5 L 19,28 z"
           id="path143"
           style="opacity:1;color:#000000;fill:url(#linearGradient6284);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <rect
           height="3"
           id="rect145"
           rx="1.2321707"
           ry="1.2348046"
           style="opacity:1;color:#000000;fill:url(#linearGradient6286);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6288);stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           width="3"
           x="23.5"
           y="28" />
        <rect
           height="3"
           id="rect147"
           rx="1.2321707"
           ry="1.2348046"
           style="opacity:1;color:#000000;fill:url(#linearGradient6290);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           width="3"
           x="23.5"
           y="28" />
      </g>
      <path
         d="M 13.697984,16.422384 C 13.688439,16.430547 13.633901,16.449594 13.616176,16.448234 C 13.572547,16.448234 13.563003,16.397894 13.557549,16.327146 L 13.557549,16.260481 C 13.557549,16.231909 13.556185,16.203338 13.556185,16.172046 C 13.556185,16.114903 13.557549,16.0564 13.558912,15.996536 C 13.60936,15.996536 13.628448,15.996536 13.655717,15.995176 C 13.666624,15.995176 13.680258,15.993816 13.689803,15.992455 C 13.717071,15.987013 13.727979,15.969326 13.73207,15.893136 L 13.558912,15.893136 C 13.558912,15.841436 13.560275,15.797899 13.561639,15.740756 L 13.561639,15.718987 C 13.479832,15.724429 13.444383,15.75028 13.433475,15.781572 C 13.432112,15.819667 13.428022,15.861844 13.426658,15.899939 C 13.418478,15.90402 13.41575,15.901299 13.404843,15.90402 C 13.387119,15.909462 13.366667,15.914904 13.346215,15.92851 C 13.335307,15.939394 13.333944,15.939394 13.333944,15.978849 C 13.354396,15.988374 13.377574,15.996536 13.414387,15.997897 L 13.414387,16.321704 C 13.414387,16.433268 13.440293,16.554356 13.576637,16.554356 C 13.620267,16.554356 13.672078,16.542111 13.703437,16.521703 C 13.712981,16.51354 13.719799,16.505376 13.722525,16.495853 C 13.723889,16.484969 13.723889,16.470003 13.723889,16.457758 C 13.723889,16.445513 13.722525,16.434629 13.721162,16.426466 L 13.697984,16.422384 M 13.826381,15.977489 C 13.829108,15.992455 13.834562,16.015584 13.85365,16.035992 C 13.874102,16.035992 13.8891,16.031911 13.904097,16.025108 C 13.943638,16.010142 13.996812,15.991094 14.040442,15.991094 C 14.085435,15.991094 14.090889,16.021026 14.090889,16.078169 L 14.090889,16.144835 C 14.082708,16.143474 14.073164,16.143474 14.060893,16.143474 C 14.048622,16.143474 14.033625,16.143474 14.021354,16.144835 C 13.935457,16.154359 13.782751,16.201977 13.782751,16.366602 C 13.782751,16.493131 13.871375,16.550274 13.964089,16.550274 C 14.002265,16.550274 14.036351,16.547553 14.069074,16.531226 C 14.077255,16.525784 14.092253,16.516261 14.09907,16.510819 C 14.116794,16.529866 14.149517,16.550274 14.180876,16.550274 C 14.223143,16.548914 14.253139,16.529866 14.26541,16.512179 C 14.26541,16.504016 14.266774,16.472724 14.268137,16.453676 C 14.22587,16.461839 14.22996,16.400616 14.22996,16.400616 C 14.22996,16.376126 14.231324,16.314901 14.231324,16.283609 C 14.232688,16.233269 14.232688,16.180209 14.232688,16.129869 L 14.232688,16.070006 C 14.232688,15.951639 14.197238,15.883612 14.088163,15.876809 C 14.066347,15.875449 14.062257,15.875449 14.040442,15.875449 C 13.945001,15.87817 13.859104,15.916265 13.829108,15.943476 C 13.826381,15.950279 13.825018,15.957081 13.825018,15.961163 C 13.825018,15.966605 13.825018,15.970686 13.827744,15.978849 L 13.826381,15.977489 M 14.088163,16.389731 C 14.086799,16.397894 14.085435,16.407418 14.085435,16.406058 L 14.086799,16.404697 C 14.070437,16.426466 14.029534,16.444153 13.994084,16.444153 L 13.985904,16.444153 C 13.951818,16.441431 13.927276,16.418302 13.927276,16.355718 C 13.927276,16.275446 13.977724,16.249596 14.036351,16.238712 L 14.034988,16.238712 C 14.048622,16.237351 14.06362,16.235991 14.077255,16.235991 L 14.090889,16.235991 L 14.090889,16.325786 C 14.090889,16.352996 14.090889,16.373405 14.088163,16.389731 M 14.625763,15.988374 C 14.695299,15.988374 14.718478,16.023747 14.718478,16.121706 L 14.718478,16.478166 C 14.718478,16.498574 14.722568,16.518982 14.733476,16.53939 C 14.823463,16.53939 14.848005,16.533948 14.86573,16.517621 C 14.864366,16.464561 14.863003,16.397894 14.863003,16.324426 L 14.863003,16.118984 C 14.863003,15.963884 14.83028,15.876809 14.659849,15.876809 C 14.627127,15.876809 14.599858,15.882252 14.571225,15.891776 C 14.546684,15.899939 14.518052,15.913544 14.490783,15.932591 C 14.482602,15.916265 14.466241,15.90402 14.441699,15.90402 C 14.438972,15.90402 14.430791,15.90402 14.422611,15.906741 C 14.392615,15.918986 14.37489,15.929871 14.365346,15.940754 C 14.37489,15.967966 14.380344,15.999258 14.380344,16.042795 L 14.380344,16.271364 C 14.380344,16.374765 14.37898,16.467281 14.377617,16.53939 L 14.413066,16.53939 C 14.473058,16.538029 14.488056,16.538029 14.507144,16.521703 C 14.520779,16.502656 14.523505,16.486329 14.523505,16.456397 L 14.523505,16.037353 L 14.519415,16.041434 C 14.546684,16.011502 14.582133,15.988374 14.625763,15.988374 M 15.454587,16.110821 C 15.454587,16.067284 15.445044,16.034631 15.423229,16.000618 C 15.43959,16.001979 15.447771,16.001979 15.466859,16.001979 C 15.499581,16.001979 15.515943,15.976129 15.515943,15.940754 C 15.515943,15.921707 15.510489,15.905381 15.505035,15.894496 C 15.491401,15.894496 15.462768,15.895857 15.445044,15.897218 L 15.446407,15.897218 C 15.417775,15.898578 15.379598,15.899939 15.349602,15.901299 C 15.345512,15.90402 15.346876,15.905381 15.349602,15.906741 C 15.318243,15.891776 15.275976,15.875449 15.228256,15.875449 C 15.087822,15.875449 14.986927,15.962524 14.986927,16.116264 C 14.986927,16.200616 15.015559,16.264562 15.074187,16.301296 C 15.068733,16.306739 15.070097,16.308099 15.063279,16.313541 C 15.042828,16.332589 15.016922,16.354357 14.997834,16.373405 C 14.986927,16.38701 14.98011,16.396534 14.98011,16.406058 C 14.981473,16.446873 15.015559,16.483608 15.082368,16.504016 C 15.082368,16.504016 15.123271,16.517621 15.185989,16.523063 C 15.19417,16.523063 15.203714,16.524424 15.211895,16.524424 C 15.243254,16.525784 15.27325,16.527145 15.303246,16.531226 C 15.349602,16.536669 15.363237,16.559798 15.374144,16.588369 C 15.374144,16.592451 15.374144,16.603335 15.374144,16.607416 C 15.375508,16.663198 15.305972,16.748912 15.215985,16.773402 C 15.191443,16.777483 15.151903,16.785646 15.124635,16.785646 C 15.106909,16.785646 15.093275,16.782926 15.090549,16.772041 C 15.085094,16.747551 15.132815,16.699933 15.176445,16.663199 C 15.200988,16.640069 15.192807,16.593811 15.158721,16.576124 C 15.072824,16.633266 14.935116,16.750273 14.94875,16.818299 C 14.962384,16.863197 15.025103,16.878163 15.093275,16.878163 C 15.136905,16.878163 15.184626,16.872721 15.220075,16.865918 C 15.389142,16.826463 15.513216,16.690409 15.513216,16.570682 C 15.509125,16.490411 15.450497,16.442792 15.365964,16.426466 C 15.353693,16.423744 15.334605,16.422384 15.31688,16.421023 C 15.295065,16.419663 15.27325,16.416942 15.251434,16.415581 L 15.19826,16.411499 C 15.153266,16.407418 15.128725,16.395173 15.128725,16.382928 C 15.128725,16.377486 15.130088,16.369323 15.135542,16.363881 L 15.162811,16.336671 C 15.179172,16.339391 15.195533,16.340752 15.220075,16.340752 C 15.365964,16.340752 15.454587,16.256398 15.454587,16.110821 M 15.211895,15.966605 C 15.273249,15.966605 15.307336,16.015584 15.315516,16.098577 C 15.322334,16.184291 15.297791,16.248236 15.236437,16.248236 C 15.169628,16.248236 15.136905,16.195174 15.130088,16.109461 C 15.120544,16.012863 15.158721,15.966605 15.211895,15.966605 M 15.853586,16.440071 C 15.769053,16.440071 15.711788,16.396533 15.709061,16.260481 C 15.730876,16.261841 15.734967,16.260481 15.756782,16.260481 C 15.820863,16.260481 15.8904,16.257759 15.932666,16.252317 C 15.972206,16.246875 16.022653,16.229188 16.039015,16.215583 C 16.043105,16.195174 16.045832,16.165243 16.045832,16.135311 C 16.045832,16.112182 16.044468,16.090414 16.043105,16.070006 C 16.032197,15.951639 15.965388,15.875449 15.835862,15.875449 C 15.679066,15.875449 15.564536,15.973408 15.564536,16.237351 C 15.564536,16.348915 15.589079,16.434629 15.639526,16.486329 C 15.694064,16.540751 15.763599,16.552996 15.831771,16.552996 C 15.875401,16.552996 15.917668,16.544832 15.93812,16.53939 L 15.936757,16.53939 C 15.979023,16.528506 16.024017,16.497213 16.025381,16.468642 C 16.024017,16.453676 16.019926,16.426466 16.011746,16.400616 C 15.958572,16.429186 15.906761,16.440071 15.853586,16.440071 M 15.822227,15.976129 C 15.874038,15.976129 15.89858,16.011502 15.905397,16.083611 L 15.905397,16.097216 C 15.905397,16.102658 15.906761,16.10674 15.906761,16.112182 C 15.906761,16.128509 15.904034,16.143474 15.901307,16.152998 C 15.89449,16.157079 15.887672,16.157079 15.880856,16.15844 C 15.853586,16.161161 15.797685,16.162522 15.749965,16.162522 L 15.711788,16.162522 C 15.719969,16.040074 15.76769,15.982931 15.816773,15.976129 L 15.822227,15.976129 M 16.401968,15.988374 C 16.471503,15.988374 16.494682,16.023747 16.494682,16.121706 L 16.494682,16.478166 C 16.494682,16.498574 16.498772,16.518982 16.509679,16.53939 C 16.599667,16.53939 16.624209,16.533948 16.641933,16.517621 C 16.64057,16.464561 16.639206,16.397894 16.639206,16.324426 L 16.639206,16.118984 C 16.639206,15.963884 16.606484,15.876809 16.436054,15.876809 C 16.403331,15.876809 16.376062,15.882252 16.34743,15.891776 C 16.322888,15.899939 16.294255,15.913544 16.266987,15.932591 C 16.258806,15.916265 16.242444,15.90402 16.217902,15.90402 C 16.215176,15.90402 16.206995,15.90402 16.198814,15.906741 C 16.168819,15.918986 16.151094,15.929871 16.14155,15.940754 C 16.151094,15.967966 16.156548,15.999258 16.156548,16.042795 L 16.156548,16.271364 C 16.156548,16.374765 16.155184,16.467281 16.153821,16.53939 L 16.189271,16.53939 C 16.249262,16.538029 16.264259,16.538029 16.283348,16.521703 C 16.296982,16.502656 16.299709,16.486329 16.299709,16.456397 L 16.299709,16.037353 L 16.295619,16.041434 C 16.322888,16.011502 16.358338,15.988374 16.401968,15.988374 M 17.101264,16.422384 C 17.09172,16.430547 17.037183,16.449594 17.019458,16.448234 C 16.975828,16.448234 16.966283,16.397894 16.96083,16.327146 L 16.96083,16.260481 C 16.96083,16.231909 16.959467,16.203338 16.959467,16.172046 C 16.959467,16.114903 16.96083,16.0564 16.962194,15.996536 C 17.01264,15.996536 17.031729,15.996536 17.058998,15.995176 C 17.069905,15.995176 17.08354,15.993816 17.093084,15.992455 C 17.120353,15.987013 17.13126,15.969326 17.13535,15.893136 L 16.962194,15.893136 C 16.962194,15.841436 16.963557,15.797899 16.96492,15.740756 L 16.96492,15.718987 C 16.883114,15.724429 16.847664,15.75028 16.836757,15.781572 C 16.835393,15.819667 16.831303,15.861844 16.829939,15.899939 C 16.821759,15.90402 16.819032,15.901299 16.808124,15.90402 C 16.790399,15.909462 16.769948,15.914904 16.749497,15.92851 C 16.738589,15.939394 16.737226,15.939394 16.737226,15.978849 C 16.757677,15.988374 16.780856,15.996536 16.817669,15.997897 L 16.817669,16.321704 C 16.817669,16.433268 16.843574,16.554356 16.979918,16.554356 C 17.023548,16.554356 17.075359,16.542111 17.106718,16.521703 C 17.116263,16.51354 17.123079,16.505376 17.125807,16.495853 C 17.12717,16.484969 17.12717,16.470003 17.12717,16.457758 C 17.12717,16.445513 17.125807,16.434629 17.124443,16.426466 L 17.101264,16.422384 M 17.736863,16.20878 C 17.736863,15.989734 17.646876,15.875449 17.468265,15.875449 C 17.306015,15.875449 17.191486,15.982932 17.191486,16.216943 C 17.191486,16.455036 17.289654,16.554356 17.464175,16.554356 C 17.620971,16.554356 17.736863,16.43735 17.736863,16.20878 M 17.342828,16.211501 C 17.342828,16.042795 17.400093,15.978849 17.464175,15.978849 C 17.539164,15.978849 17.586885,16.042795 17.586885,16.212861 C 17.586885,16.392452 17.530983,16.453676 17.466902,16.453676 C 17.396003,16.453676 17.342828,16.392452 17.342828,16.211501"
         id="path149"
         style="font-size:1.99232042px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:200%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
      <path
         d="M 13.178317,18.631835 L 13.178317,19.612677 L 15.05346,19.612677 L 15.34078,19.522137 L 13.178317,18.631835 z"
         id="path151"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6323);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 16.709529,18.664662 C 16.507121,18.664662 16.345969,18.82547 16.345969,19.027447 L 16.345969,19.603635 L 18.056842,19.603635 L 18.056842,19.027447 C 18.056842,18.82547 17.874303,18.664662 17.671895,18.664662 L 16.709529,18.664662 z"
         id="path153"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6330);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
    </g>
    <g
       id="g22"
       style="display:inline;enable-background:new"
       transform="translate(303,177) scale(1.000000,1.000000)">
      <path
         d="M 10.955203,22.664056 C 6.3273995,22.664056 2.5750634,26.442075 2.5750633,31.101556 C 2.5750633,35.761036 6.3273995,39.539058 10.955203,39.539056 C 14.281437,39.539056 17.142798,37.586796 18.497329,34.757806 L 29.51566,34.757806 C 30.851051,37.637443 33.756904,39.632806 37.119861,39.632806 C 41.747664,39.632806 45.499999,35.854787 45.5,31.195306 C 45.5,26.827044 42.183703,23.221579 37.957875,22.789056 C 37.646098,22.705142 37.334477,22.664056 36.99571,22.664056 L 11.948405,22.664056 C 11.844225,22.664056 11.740015,22.687009 11.63803,22.695306 C 11.407188,22.676063 11.190952,22.664056 10.955203,22.664056 z"
         id="path156"
         style="opacity:0.64457834;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter6232);enable-background:accumulate"
         transform="matrix(0.4611328,0,0,0.5170404,7.103508e-3,0.5624522)" />
      <path
         d="M 11.260367,12.569752 C 13.101877,7.744465 5.0257249,10.915722 6.5945306,8.3976568 C 8.1363915,5.9228409 16.64974,11.081755 18.42354,8.4571511 C 20.227501,5.7879176 13.767405,6.7216849 16.527863,1.9704249"
         id="path158"
         sodipodi:nodetypes="czzc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6086);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         d="M 4.7472123,11.479718 C 2.5029203,11.479718 0.6831936,13.497542 0.68319349,15.986153 C 0.68319349,18.474762 2.5029203,20.492588 4.7472123,20.492587 C 6.3602972,20.492587 7.7479375,20.012393 8.4048287,18.501441 L 13.748261,18.501441 C 14.39587,20.039444 15.805087,20.542659 17.435981,20.542659 C 19.680273,20.542659 21.499999,18.524835 21.499999,16.036223 C 21.499999,13.703153 19.891734,11.777489 17.842383,11.54648 C 17.691185,11.501661 17.540061,11.479718 17.375773,11.479718 L 5.2288739,11.479718 C 5.1783508,11.479718 5.1278134,11.491977 5.0783549,11.496409 C 4.9664062,11.486131 4.8615406,11.479718 4.7472123,11.479718 z"
         id="path160"
         sodipodi:nodetypes="cssccsscccsc"
         style="opacity:1;color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 5.356756,11.911935 C 3.3280872,11.911935 1.683193,13.523571 1.6831929,15.511222 C 1.6831929,17.498872 2.875342,19.48551 4.9040109,19.485509 C 6.3621166,19.485509 7.2405129,18.84376 7.6281169,17.445912 L 14.527864,17.445912 C 14.886759,18.740225 15.796359,19.5625 17.270562,19.5625 C 19.299232,19.5625 20.499998,17.538866 20.499999,15.551214 C 20.499999,13.687792 19.046248,12.149764 17.193792,11.965258 C 17.057119,11.929462 16.920516,11.911935 16.772012,11.911935 L 5.7921414,11.911935 C 5.7464724,11.911935 5.7007903,11.921726 5.6560836,11.925266 C 5.5548906,11.917058 5.4601003,11.911935 5.356756,11.911935 z"
         id="path162"
         sodipodi:nodetypes="cssccsscccsc"
         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5737);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path164"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.5,0,0,0.5606198,-1.5,-0.8185954)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path166"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.5,0,0,0.5606198,0.5,-2.1367346)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path168"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.5000004,0,0,0.5265028,2.4999876,0.204916)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path170"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.5,0,0,0.5606198,0.5,0.8632641)" />
      <path
         d="M 5.140625,13.5 C 4.7685491,13.5 4.4687501,13.552339 4.4687501,13.849999 L 4.4687501,14.5125 L 3.640625,14.5125 C 3.268549,14.5125 2.96875,14.752338 2.96875,15.050001 L 2.96875,15.897917 C 2.96875,16.195577 3.268549,16.435416 3.640625,16.435416 L 4.4687501,16.435416 L 4.4687501,16.962499 C 4.4687501,17.26016 4.7685491,17.499999 5.140625,17.499999 L 5.7968751,17.499999 C 6.168951,17.499999 6.4687499,17.26016 6.4687499,16.962499 L 6.4687499,16.435416 L 7.2968747,16.435416 C 7.6689506,16.435416 7.96875,16.195577 7.96875,15.897917 L 7.96875,15.050001 C 7.96875,14.752338 7.6689506,14.5125 7.2968747,14.5125 L 6.4687499,14.5125 L 6.4687499,13.849999 C 6.4687499,13.552339 6.168951,13.5 5.7968751,13.5 L 5.140625,13.5 z"
         id="path172"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="opacity:1;color:#000000;fill:#888a85;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <g
         id="g174"
         style="opacity:0.8433735"
         transform="matrix(0.4611328,0,0,0.5170404,-9.2481281,-0.4150411)">
        <path
           d="M 7.0625,29.3125 C 7.0625,29.3125 7.03125,30.15625 7.625,30.1875 L 10.03125,30.1875 L 10,31.0625 L 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path176"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 16.043802,29.3125 C 16.043802,29.3125 16.075052,30.15625 15.481302,30.1875 L 13.075052,30.1875 L 13.106302,31.0625 L 15.418802,31 C 16.231302,30.9375 16.043802,29.3125 16.043802,29.3125 z"
           id="path178"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 10.091909,32.71875 C 10.210541,32.71875 12.96875,32.71875 12.96875,32.71875 C 12.929015,33.243364 13.043872,33.869784 12.405245,34 L 10.744388,34 C 10.019388,33.869998 10.143374,33.243022 10.091909,32.71875 z"
           id="path180"
           sodipodi:nodetypes="ccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      </g>
      <path
         d="M 9.0698422,13.501656 C 9.0605541,13.510582 9.0074843,13.531408 8.9902364,13.52992 C 8.947782,13.52992 8.9384939,13.474879 8.9331873,13.397524 L 8.9331873,13.324634 C 8.9331873,13.293393 8.9318602,13.262154 8.9318602,13.227939 C 8.9318602,13.16546 8.9331873,13.101494 8.9345135,13.036038 C 8.9836039,13.036038 9.0021778,13.036038 9.0287126,13.034552 C 9.0393258,13.034552 9.0525932,13.033065 9.0618813,13.031577 C 9.0884151,13.025626 9.0990292,13.006288 9.1030108,12.922983 L 8.9345135,12.922983 C 8.9345135,12.866455 8.9358395,12.818851 8.9371667,12.756371 L 8.9371667,12.73257 C 8.8575621,12.738519 8.8230673,12.766785 8.8124532,12.800999 C 8.8111271,12.842653 8.8071467,12.888768 8.8058195,12.93042 C 8.7978597,12.934882 8.7952053,12.931908 8.7845922,12.934882 C 8.7673454,12.940834 8.7474432,12.946783 8.727542,12.961661 C 8.7169278,12.97356 8.7156018,12.97356 8.7156018,13.0167 C 8.735503,13.027115 8.7580574,13.036038 8.7938792,13.037527 L 8.7938792,13.391574 C 8.7938792,13.513557 8.819088,13.645953 8.9517614,13.645953 C 8.994217,13.645953 9.0446334,13.632565 9.0751476,13.61025 C 9.0844346,13.601326 9.0910694,13.5924 9.0937227,13.581988 C 9.0950499,13.570087 9.0950499,13.553724 9.0950499,13.540334 C 9.0950499,13.526945 9.0937227,13.515046 9.0923955,13.50612 L 9.0698422,13.501656 M 9.1947822,13.015213 C 9.1974365,13.031577 9.202743,13.056865 9.221317,13.07918 C 9.2412194,13.07918 9.2558128,13.074717 9.2704063,13.067279 C 9.3088837,13.050915 9.3606262,13.030088 9.4030818,13.030088 C 9.4468635,13.030088 9.4521701,13.062816 9.4521701,13.125296 L 9.4521701,13.198187 C 9.4442091,13.1967 9.4349222,13.1967 9.422982,13.1967 C 9.4110416,13.1967 9.3964481,13.1967 9.3845068,13.198187 C 9.3009229,13.208601 9.1523266,13.260666 9.1523266,13.440665 C 9.1523266,13.579011 9.2385649,13.641491 9.3287838,13.641491 C 9.3659317,13.641491 9.3991003,13.638515 9.4309428,13.620664 C 9.4389037,13.614713 9.4534972,13.604301 9.460131,13.598351 C 9.4773778,13.619176 9.5092203,13.641491 9.5397357,13.641491 C 9.580864,13.640003 9.6100533,13.619176 9.6219933,13.599838 C 9.6219933,13.590912 9.6233205,13.556698 9.6246462,13.535871 C 9.5835184,13.544796 9.5874978,13.477856 9.5874978,13.477856 C 9.5874978,13.451079 9.588825,13.384136 9.588825,13.349922 C 9.5901521,13.294881 9.5901521,13.236865 9.5901521,13.181824 L 9.5901521,13.11637 C 9.5901521,12.986948 9.5556563,12.912569 9.449518,12.905131 C 9.4282895,12.903643 9.4243091,12.903643 9.4030818,12.903643 C 9.3102098,12.906618 9.2266247,12.948271 9.1974365,12.978024 C 9.1947822,12.985462 9.1934561,12.9929 9.1934561,12.997362 C 9.1934561,13.003313 9.1934561,13.007774 9.1961093,13.0167 L 9.1947822,13.015213 M 9.449518,13.465955 C 9.4481907,13.474879 9.4468635,13.485293 9.4468635,13.483805 L 9.4481907,13.482318 C 9.4322689,13.50612 9.3924666,13.525459 9.3579708,13.525459 L 9.350011,13.525459 C 9.3168435,13.522483 9.2929619,13.497194 9.2929619,13.428765 C 9.2929619,13.340996 9.3420512,13.312732 9.3991003,13.300832 L 9.3977743,13.300832 C 9.4110416,13.299343 9.4256352,13.297857 9.4389037,13.297857 L 9.4521701,13.297857 L 9.4521701,13.396038 C 9.4521701,13.425788 9.4521701,13.448104 9.449518,13.465955 M 9.9726469,13.027115 C 10.040311,13.027115 10.062865,13.065791 10.062865,13.172898 L 10.062865,13.562648 C 10.062865,13.584963 10.066845,13.607276 10.077459,13.62959 C 10.165024,13.62959 10.188906,13.62364 10.206154,13.605788 C 10.204827,13.547772 10.2035,13.474879 10.2035,13.394551 L 10.2035,13.169922 C 10.2035,13.000337 10.171659,12.905131 10.005815,12.905131 C 9.973974,12.905131 9.9474385,12.911082 9.9195772,12.921496 C 9.8956959,12.93042 9.8678347,12.945296 9.8413006,12.966122 C 9.8333392,12.948271 9.8174193,12.934882 9.7935365,12.934882 C 9.7908837,12.934882 9.7829223,12.934882 9.7749624,12.937857 C 9.7457754,12.951247 9.7285269,12.963148 9.7192399,12.975048 C 9.7285269,13.004801 9.7338341,13.039015 9.7338341,13.086618 L 9.7338341,13.336533 C 9.7338341,13.44959 9.7325069,13.550747 9.7311798,13.62959 L 9.7656753,13.62959 C 9.8240521,13.628103 9.8386463,13.628103 9.8572205,13.61025 C 9.870489,13.589425 9.8731403,13.571574 9.8731403,13.538846 L 9.8731403,13.080668 L 9.8691618,13.085129 C 9.8956959,13.052403 9.9301914,13.027115 9.9726469,13.027115 M 10.779159,13.160997 C 10.779159,13.113394 10.769873,13.077692 10.748646,13.040502 C 10.764566,13.041991 10.772526,13.041991 10.791102,13.041991 C 10.822942,13.041991 10.838864,13.013727 10.838864,12.975048 C 10.838864,12.954222 10.833557,12.936371 10.82825,12.924469 C 10.814982,12.924469 10.78712,12.925958 10.769873,12.927445 L 10.771199,12.927445 C 10.743338,12.928933 10.706189,12.93042 10.677001,12.931908 C 10.673021,12.934882 10.674348,12.936371 10.677001,12.937857 C 10.646486,12.921496 10.605356,12.903643 10.558922,12.903643 C 10.422268,12.903643 10.324087,12.998851 10.324087,13.166948 C 10.324087,13.259178 10.35195,13.329096 10.409,13.36926 C 10.403693,13.375211 10.40502,13.376698 10.398386,13.382648 C 10.378484,13.403475 10.353276,13.427277 10.334702,13.448104 C 10.324087,13.46298 10.317455,13.473392 10.317455,13.483805 C 10.318782,13.528433 10.35195,13.568598 10.41696,13.590912 C 10.41696,13.590912 10.456762,13.605788 10.517792,13.611738 C 10.525753,13.611738 10.535041,13.613227 10.543,13.613227 C 10.573515,13.614713 10.602704,13.616202 10.631893,13.620664 C 10.677001,13.626615 10.690268,13.651904 10.700882,13.683143 C 10.700882,13.687606 10.700882,13.699507 10.700882,13.703969 C 10.70221,13.764961 10.634546,13.85868 10.54698,13.885456 C 10.523099,13.889919 10.484624,13.898843 10.45809,13.898843 C 10.440841,13.898843 10.427573,13.89587 10.424921,13.883967 C 10.419613,13.857191 10.46605,13.805126 10.508505,13.764961 C 10.532388,13.739672 10.524426,13.689093 10.491258,13.669755 C 10.407673,13.732233 10.273672,13.860167 10.286939,13.934546 C 10.300206,13.983637 10.361237,14 10.427573,14 C 10.470028,14 10.516466,13.994051 10.55096,13.986612 C 10.715477,13.943472 10.83621,13.794713 10.83621,13.663804 C 10.83223,13.576037 10.77518,13.523971 10.692922,13.50612 C 10.680981,13.503144 10.662408,13.501656 10.64516,13.500169 C 10.623931,13.498681 10.602704,13.495706 10.581475,13.494219 L 10.529732,13.489755 C 10.485949,13.485293 10.46207,13.471904 10.46207,13.458516 C 10.46207,13.452566 10.463397,13.44364 10.468702,13.437691 L 10.495238,13.407939 C 10.511158,13.410912 10.527079,13.412401 10.55096,13.412401 C 10.692922,13.412401 10.779159,13.320169 10.779159,13.160997 M 10.543,13.003313 C 10.602703,13.003313 10.635873,13.056865 10.643833,13.147609 C 10.650467,13.241329 10.626584,13.311246 10.566882,13.311246 C 10.501871,13.311246 10.470028,13.253228 10.463397,13.15951 C 10.45411,13.05389 10.491258,13.003313 10.543,13.003313 M 11.167419,13.520996 C 11.085161,13.520996 11.029438,13.473392 11.026784,13.324634 C 11.048011,13.326121 11.051992,13.324634 11.073221,13.324634 C 11.135576,13.324634 11.203241,13.321658 11.24437,13.315708 C 11.282845,13.309757 11.331935,13.290419 11.347856,13.275543 C 11.351835,13.253228 11.354489,13.220502 11.354489,13.187774 C 11.354489,13.162485 11.353162,13.138684 11.351835,13.11637 C 11.341222,12.986948 11.276209,12.903643 11.150172,12.903643 C 10.997595,12.903643 10.886149,13.01075 10.886149,13.299343 C 10.886149,13.421326 10.910032,13.515046 10.959121,13.571574 C 11.012191,13.631077 11.079854,13.644467 11.14619,13.644467 C 11.188646,13.644467 11.229775,13.63554 11.249677,13.62959 L 11.24835,13.62959 C 11.289478,13.617689 11.333262,13.583474 11.334589,13.552235 C 11.333262,13.535871 11.329281,13.50612 11.321321,13.477856 C 11.269578,13.509095 11.219163,13.520996 11.167419,13.520996 M 11.136903,13.013727 C 11.18732,13.013727 11.211201,13.052403 11.217836,13.131246 L 11.217836,13.146121 C 11.217836,13.152071 11.219163,13.156535 11.219163,13.162485 C 11.219163,13.180337 11.216508,13.1967 11.213854,13.207114 C 11.207221,13.211574 11.200587,13.211574 11.193954,13.213063 C 11.167419,13.216038 11.113022,13.217527 11.066586,13.217527 L 11.029438,13.217527 C 11.037398,13.083643 11.083835,13.021164 11.131596,13.013727 L 11.136903,13.013727 M 11.701038,13.027115 C 11.768702,13.027115 11.791258,13.065791 11.791258,13.172898 L 11.791258,13.562648 C 11.791258,13.584963 11.795236,13.607276 11.805849,13.62959 C 11.893416,13.62959 11.917297,13.62364 11.934544,13.605788 C 11.933217,13.547772 11.93189,13.474879 11.93189,13.394551 L 11.93189,13.169922 C 11.93189,13.000337 11.900049,12.905131 11.734207,12.905131 C 11.702364,12.905131 11.67583,12.911082 11.647969,12.921496 C 11.624087,12.93042 11.596225,12.945296 11.569691,12.966122 C 11.561731,12.948271 11.545808,12.934882 11.521927,12.934882 C 11.519275,12.934882 11.511314,12.934882 11.503352,12.937857 C 11.474165,12.951247 11.456918,12.963148 11.447631,12.975048 C 11.456918,13.004801 11.462224,13.039015 11.462224,13.086618 L 11.462224,13.336533 C 11.462224,13.44959 11.460897,13.550747 11.459571,13.62959 L 11.494067,13.62959 C 11.552444,13.628103 11.567036,13.628103 11.585612,13.61025 C 11.598879,13.589425 11.601533,13.571574 11.601533,13.538846 L 11.601533,13.080668 L 11.597552,13.085129 C 11.624087,13.052403 11.658583,13.027115 11.701038,13.027115 M 12.381511,13.501656 C 12.372224,13.510582 12.319155,13.531408 12.301907,13.52992 C 12.259452,13.52992 12.250164,13.474879 12.244856,13.397524 L 12.244856,13.324634 C 12.244856,13.293393 12.243531,13.262154 12.243531,13.227939 C 12.243531,13.16546 12.244856,13.101494 12.246184,13.036038 C 12.295272,13.036038 12.313847,13.036038 12.340383,13.034552 C 12.350996,13.034552 12.364264,13.033065 12.373551,13.031577 C 12.400085,13.025626 12.410698,13.006288 12.41468,12.922983 L 12.246184,12.922983 C 12.246184,12.866455 12.247511,12.818851 12.248836,12.756371 L 12.248836,12.73257 C 12.169233,12.738519 12.134737,12.766785 12.124124,12.800999 C 12.122797,12.842653 12.118816,12.888768 12.117489,12.93042 C 12.109529,12.934882 12.106876,12.931908 12.096262,12.934882 C 12.079015,12.940834 12.059113,12.946783 12.039213,12.961661 C 12.028599,12.97356 12.027272,12.97356 12.027272,13.0167 C 12.047172,13.027115 12.069727,13.036038 12.10555,13.037527 L 12.10555,13.391574 C 12.10555,13.513557 12.130757,13.645953 12.263431,13.645953 C 12.305886,13.645953 12.356303,13.632565 12.386817,13.61025 C 12.396105,13.601326 12.402738,13.5924 12.405394,13.581988 C 12.40672,13.570087 12.40672,13.553724 12.40672,13.540334 C 12.40672,13.526945 12.405394,13.515046 12.404065,13.50612 L 12.381511,13.501656 M 13,13.268104 C 13,13.028601 12.912436,12.903643 12.738632,12.903643 C 12.58075,12.903643 12.469303,13.021164 12.469303,13.27703 C 12.469303,13.537357 12.56483,13.645953 12.734653,13.645953 C 12.887228,13.645953 13,13.518021 13,13.268104 M 12.616572,13.271079 C 12.616572,13.086618 12.672296,13.0167 12.734653,13.0167 C 12.807623,13.0167 12.854059,13.086618 12.854059,13.272566 C 12.854059,13.46893 12.799663,13.535871 12.737306,13.535871 C 12.668315,13.535871 12.616572,13.46893 12.616572,13.271079"
         id="path182"
         style="font-size:1.99232042px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:200%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
      <path
         d="M 10.955203,22.664056 C 6.3273995,22.664056 2.5750634,26.442075 2.5750633,31.101556 C 2.5750633,35.761036 6.3273995,39.539058 10.955203,39.539056 C 14.281437,39.539056 17.142798,37.586796 18.497329,34.757806 L 29.51566,34.757806 C 30.851051,37.637443 33.756904,39.632806 37.119861,39.632806 C 41.747664,39.632806 45.499999,35.854787 45.5,31.195306 C 45.5,26.827044 42.183703,23.221579 37.957875,22.789056 C 37.646098,22.705142 37.334477,22.664056 36.99571,22.664056 L 11.948405,22.664056 C 11.844225,22.664056 11.740015,22.687009 11.63803,22.695306 C 11.407188,22.676063 11.190952,22.664056 10.955203,22.664056 z"
         id="path6430"
         style="opacity:0.64457834;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;filter:url(#filter6232);enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-65.817693,0.1108223)" />
      <path
         d="M -49.117162,15.969656 C -46.384249,9.5965805 -58.369752,13.785069 -56.041549,10.459294 C -53.753333,7.1906413 -41.119003,14.00436 -38.486576,10.537872 C -35.809387,7.0124393 -45.396565,8.2457273 -41.299876,1.9704248"
         id="path6432"
         sodipodi:nodetypes="czzc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6480);stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         d="M -58.320508,14.529975 C -61.487542,14.529975 -64.05545,17.195049 -64.05545,20.481921 C -64.05545,23.768792 -61.487542,26.433868 -58.320508,26.433867 C -56.044203,26.433867 -54.086033,25.056712 -53.159061,23.061098 L -45.618675,23.061098 C -44.704801,25.09244 -42.716183,26.5 -40.414746,26.5 C -37.247713,26.5 -34.679805,23.834926 -34.679805,20.548053 C -34.679805,17.466613 -36.94931,14.923261 -39.841252,14.618152 C -40.054616,14.558957 -40.267874,14.529975 -40.499709,14.529975 L -57.640811,14.529975 C -57.712107,14.529975 -57.783423,14.546167 -57.853216,14.55202 C -58.011193,14.538445 -58.159174,14.529975 -58.320508,14.529975 z"
         id="path6434"
         style="opacity:1;color:#000000;fill:url(#linearGradient6482);fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M -57.903367,15.100833 C -60.922839,15.100833 -63.371101,17.229427 -63.371101,19.854649 C -63.371101,22.47987 -60.922839,24.608466 -57.903367,24.608465 C -55.733122,24.608465 -53.866189,23.508532 -52.982407,21.914635 L -45.79335,21.914635 C -44.922057,23.537067 -43.026094,24.661286 -40.831888,24.661286 C -37.812416,24.661286 -35.364156,22.532692 -35.364155,19.907469 C -35.364155,17.446324 -37.527917,15.41495 -40.285114,15.17126 C -40.488538,15.123982 -40.691859,15.100833 -40.912892,15.100833 L -57.255339,15.100833 C -57.323313,15.100833 -57.391307,15.113765 -57.457848,15.11844 C -57.608464,15.107599 -57.74955,15.100833 -57.903367,15.100833 z"
         id="path6436"
         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6484);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path6438"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:nonzero;stroke:#cc0000;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-66.844217,7.7267e-2)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path6440"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-63.764645,-1.9714012)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path6442"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-60.685074,7.7267e-2)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path6444"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-63.764645,2.1259352)" />
      <path
         d="M -58.62085,16.5 C -59.13011,16.5 -59.540444,16.859759 -59.540444,17.30625 L -59.540444,18.3 L -60.673898,18.3 C -61.183158,18.3 -61.593492,18.659759 -61.593492,19.106251 L -61.593492,19.768751 C -61.593492,20.215242 -61.183158,20.575 -60.673898,20.575 L -59.540444,20.575 L -59.540444,21.693751 C -59.540444,22.140242 -59.13011,22.5 -58.62085,22.5 L -57.722642,22.5 C -57.213382,22.5 -56.803048,22.140242 -56.803048,21.693751 L -56.803048,20.575 L -55.669595,20.575 C -55.160335,20.575 -54.75,20.215242 -54.75,19.768751 L -54.75,19.106251 C -54.75,18.659759 -55.160335,18.3 -55.669595,18.3 L -56.803048,18.3 L -56.803048,17.30625 C -56.803048,16.859759 -57.213382,16.5 -57.722642,16.5 L -58.62085,16.5 z"
         id="path6446"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="opacity:1;color:#000000;fill:url(#radialGradient6486);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <g
         id="g6448"
         style="opacity:0.8433735"
         transform="matrix(0.6843492,0,0,0.6828894,-66.15639,-1.1802176)">
        <path
           d="M 7.0625,29.3125 C 7.0625,29.3125 7.03125,30.15625 7.625,30.1875 L 10.03125,30.1875 L 10,31.0625 L 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path6450"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient6488);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 16.043802,29.3125 C 16.043802,29.3125 16.075052,30.15625 15.481302,30.1875 L 13.075052,30.1875 L 13.106302,31.0625 L 15.418802,31 C 16.231302,30.9375 16.043802,29.3125 16.043802,29.3125 z"
           id="path6452"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient6490);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 10.091909,32.71875 C 10.210541,32.71875 12.96875,32.71875 12.96875,32.71875 C 12.929015,33.243364 13.043872,33.869784 12.405245,34 L 10.744388,34 C 10.019388,33.869998 10.143374,33.243022 10.091909,32.71875 z"
           id="path6454"
           sodipodi:nodetypes="ccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient6492);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      </g>
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path6456"
         inkscape:transform-center-x="0.19247238"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-65.774921,-0.3495389)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path6458"
         inkscape:transform-center-x="0.19247238"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-68.854492,1.677789)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path6460"
         inkscape:transform-center-x="0.19247239"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-62.673964,1.7204696)" />
      <path
         d="M 37.0625,25.640625 A 1.109375,0.484375 0 1 1 34.84375,25.640625 A 1.109375,0.484375 0 1 1 37.0625,25.640625 z"
         id="path6462"
         inkscape:transform-center-x="0.19247237"
         inkscape:transform-center-y="1.2163967"
         sodipodi:cx="35.953125"
         sodipodi:cy="25.640625"
         sodipodi:rx="1.109375"
         sodipodi:ry="0.484375"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-65.774921,3.7477975)" />
      <g
         id="g6464"
         transform="matrix(0.6843492,0,0,0.6828894,-65.133344,-0.6056224)">
        <path
           d="M 19,28 L 19,31 L 22.5,29.5 L 19,28 z"
           id="path6466"
           style="opacity:1;color:#000000;fill:url(#linearGradient6494);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6496);stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 19,28 L 19,31 L 22.5,29.5 L 19,28 z"
           id="path6468"
           style="opacity:1;color:#000000;fill:url(#linearGradient6498);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <rect
           height="3"
           id="rect6470"
           rx="1.2321707"
           ry="1.2348046"
           style="opacity:1;color:#000000;fill:url(#linearGradient6500);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6502);stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           width="3"
           x="23.5"
           y="28" />
        <rect
           height="3"
           id="rect6472"
           rx="1.2321707"
           ry="1.2348046"
           style="opacity:1;color:#000000;fill:url(#linearGradient6504);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
           width="3"
           x="23.5"
           y="28" />
      </g>
      <path
         d="M -51.552016,16.422384 C -51.561561,16.430547 -51.616099,16.449594 -51.633824,16.448234 C -51.677453,16.448234 -51.686997,16.397894 -51.692451,16.327146 L -51.692451,16.260481 C -51.692451,16.231909 -51.693815,16.203338 -51.693815,16.172046 C -51.693815,16.114903 -51.692451,16.0564 -51.691088,15.996536 C -51.64064,15.996536 -51.621552,15.996536 -51.594283,15.995176 C -51.583376,15.995176 -51.569742,15.993816 -51.560197,15.992455 C -51.532929,15.987013 -51.522021,15.969326 -51.51793,15.893136 L -51.691088,15.893136 C -51.691088,15.841436 -51.689725,15.797899 -51.688361,15.740756 L -51.688361,15.718987 C -51.770168,15.724429 -51.805617,15.75028 -51.816525,15.781572 C -51.817888,15.819667 -51.821978,15.861844 -51.823342,15.899939 C -51.831522,15.90402 -51.83425,15.901299 -51.845157,15.90402 C -51.862881,15.909462 -51.883333,15.914904 -51.903785,15.92851 C -51.914693,15.939394 -51.916056,15.939394 -51.916056,15.978849 C -51.895604,15.988374 -51.872426,15.996536 -51.835613,15.997897 L -51.835613,16.321704 C -51.835613,16.433268 -51.809707,16.554356 -51.673363,16.554356 C -51.629733,16.554356 -51.577922,16.542111 -51.546563,16.521703 C -51.537019,16.51354 -51.530201,16.505376 -51.527475,16.495853 C -51.526111,16.484969 -51.526111,16.470003 -51.526111,16.457758 C -51.526111,16.445513 -51.527475,16.434629 -51.528838,16.426466 L -51.552016,16.422384 M -51.423619,15.977489 C -51.420892,15.992455 -51.415438,16.015584 -51.39635,16.035992 C -51.375898,16.035992 -51.3609,16.031911 -51.345903,16.025108 C -51.306362,16.010142 -51.253188,15.991094 -51.209558,15.991094 C -51.164565,15.991094 -51.159111,16.021026 -51.159111,16.078169 L -51.159111,16.144835 C -51.167292,16.143474 -51.176836,16.143474 -51.189107,16.143474 C -51.201378,16.143474 -51.216375,16.143474 -51.228646,16.144835 C -51.314543,16.154359 -51.467249,16.201977 -51.467249,16.366602 C -51.467249,16.493131 -51.378625,16.550274 -51.285911,16.550274 C -51.247735,16.550274 -51.213649,16.547553 -51.180926,16.531226 C -51.172745,16.525784 -51.157747,16.516261 -51.15093,16.510819 C -51.133206,16.529866 -51.100483,16.550274 -51.069124,16.550274 C -51.026857,16.548914 -50.996861,16.529866 -50.98459,16.512179 C -50.98459,16.504016 -50.983226,16.472724 -50.981863,16.453676 C -51.02413,16.461839 -51.02004,16.400616 -51.02004,16.400616 C -51.02004,16.376126 -51.018676,16.314901 -51.018676,16.283609 C -51.017312,16.233269 -51.017312,16.180209 -51.017312,16.129869 L -51.017312,16.070006 C -51.017312,15.951639 -51.052762,15.883612 -51.161837,15.876809 C -51.183653,15.875449 -51.187743,15.875449 -51.209558,15.875449 C -51.304999,15.87817 -51.390896,15.916265 -51.420892,15.943476 C -51.423619,15.950279 -51.424982,15.957081 -51.424982,15.961163 C -51.424982,15.966605 -51.424982,15.970686 -51.422256,15.978849 L -51.423619,15.977489 M -51.161837,16.389731 C -51.163201,16.397894 -51.164565,16.407418 -51.164565,16.406058 L -51.163201,16.404697 C -51.179563,16.426466 -51.220466,16.444153 -51.255916,16.444153 L -51.264096,16.444153 C -51.298182,16.441431 -51.322724,16.418302 -51.322724,16.355718 C -51.322724,16.275446 -51.272276,16.249596 -51.213649,16.238712 L -51.215012,16.238712 C -51.201378,16.237351 -51.18638,16.235991 -51.172745,16.235991 L -51.159111,16.235991 L -51.159111,16.325786 C -51.159111,16.352996 -51.159111,16.373405 -51.161837,16.389731 M -50.624237,15.988374 C -50.554701,15.988374 -50.531522,16.023747 -50.531522,16.121706 L -50.531522,16.478166 C -50.531522,16.498574 -50.527432,16.518982 -50.516524,16.53939 C -50.426537,16.53939 -50.401995,16.533948 -50.38427,16.517621 C -50.385634,16.464561 -50.386997,16.397894 -50.386997,16.324426 L -50.386997,16.118984 C -50.386997,15.963884 -50.41972,15.876809 -50.590151,15.876809 C -50.622873,15.876809 -50.650142,15.882252 -50.678775,15.891776 C -50.703316,15.899939 -50.731948,15.913544 -50.759217,15.932591 C -50.767398,15.916265 -50.783759,15.90402 -50.808301,15.90402 C -50.811028,15.90402 -50.819209,15.90402 -50.827389,15.906741 C -50.857385,15.918986 -50.87511,15.929871 -50.884654,15.940754 C -50.87511,15.967966 -50.869656,15.999258 -50.869656,16.042795 L -50.869656,16.271364 C -50.869656,16.374765 -50.87102,16.467281 -50.872383,16.53939 L -50.836934,16.53939 C -50.776942,16.538029 -50.761944,16.538029 -50.742856,16.521703 C -50.729221,16.502656 -50.726495,16.486329 -50.726495,16.456397 L -50.726495,16.037353 L -50.730585,16.041434 C -50.703316,16.011502 -50.667867,15.988374 -50.624237,15.988374 M -49.795413,16.110821 C -49.795413,16.067284 -49.804956,16.034631 -49.826771,16.000618 C -49.81041,16.001979 -49.802229,16.001979 -49.783141,16.001979 C -49.750419,16.001979 -49.734057,15.976129 -49.734057,15.940754 C -49.734057,15.921707 -49.739511,15.905381 -49.744965,15.894496 C -49.758599,15.894496 -49.787232,15.895857 -49.804956,15.897218 L -49.803593,15.897218 C -49.832225,15.898578 -49.870402,15.899939 -49.900398,15.901299 C -49.904488,15.90402 -49.903124,15.905381 -49.900398,15.906741 C -49.931757,15.891776 -49.974024,15.875449 -50.021744,15.875449 C -50.162178,15.875449 -50.263073,15.962524 -50.263073,16.116264 C -50.263073,16.200616 -50.234441,16.264562 -50.175813,16.301296 C -50.181267,16.306739 -50.179903,16.308099 -50.186721,16.313541 C -50.207172,16.332589 -50.233078,16.354357 -50.252166,16.373405 C -50.263073,16.38701 -50.26989,16.396534 -50.26989,16.406058 C -50.268527,16.446873 -50.234441,16.483608 -50.167632,16.504016 C -50.167632,16.504016 -50.126729,16.517621 -50.064011,16.523063 C -50.05583,16.523063 -50.046286,16.524424 -50.038105,16.524424 C -50.006746,16.525784 -49.97675,16.527145 -49.946754,16.531226 C -49.900398,16.536669 -49.886763,16.559798 -49.875856,16.588369 C -49.875856,16.592451 -49.875856,16.603335 -49.875856,16.607416 C -49.874492,16.663198 -49.944028,16.748912 -50.034015,16.773402 C -50.058557,16.777483 -50.098097,16.785646 -50.125365,16.785646 C -50.143091,16.785646 -50.156725,16.782926 -50.159451,16.772041 C -50.164906,16.747551 -50.117185,16.699933 -50.073555,16.663199 C -50.049012,16.640069 -50.057193,16.593811 -50.091279,16.576124 C -50.177176,16.633266 -50.314884,16.750273 -50.30125,16.818299 C -50.287616,16.863197 -50.224897,16.878163 -50.156725,16.878163 C -50.113095,16.878163 -50.065374,16.872721 -50.029925,16.865918 C -49.860858,16.826463 -49.736784,16.690409 -49.736784,16.570682 C -49.740875,16.490411 -49.799503,16.442792 -49.884036,16.426466 C -49.896307,16.423744 -49.915395,16.422384 -49.93312,16.421023 C -49.954935,16.419663 -49.97675,16.416942 -49.998566,16.415581 L -50.05174,16.411499 C -50.096734,16.407418 -50.121275,16.395173 -50.121275,16.382928 C -50.121275,16.377486 -50.119912,16.369323 -50.114458,16.363881 L -50.087189,16.336671 C -50.070828,16.339391 -50.054467,16.340752 -50.029925,16.340752 C -49.884036,16.340752 -49.795413,16.256398 -49.795413,16.110821 M -50.038105,15.966605 C -49.976751,15.966605 -49.942664,16.015584 -49.934484,16.098577 C -49.927666,16.184291 -49.952209,16.248236 -50.013563,16.248236 C -50.080372,16.248236 -50.113095,16.195174 -50.119912,16.109461 C -50.129456,16.012863 -50.091279,15.966605 -50.038105,15.966605 M -49.396414,16.440071 C -49.480947,16.440071 -49.538212,16.396533 -49.540939,16.260481 C -49.519124,16.261841 -49.515033,16.260481 -49.493218,16.260481 C -49.429137,16.260481 -49.3596,16.257759 -49.317334,16.252317 C -49.277794,16.246875 -49.227347,16.229188 -49.210985,16.215583 C -49.206895,16.195174 -49.204168,16.165243 -49.204168,16.135311 C -49.204168,16.112182 -49.205532,16.090414 -49.206895,16.070006 C -49.217803,15.951639 -49.284612,15.875449 -49.414138,15.875449 C -49.570934,15.875449 -49.685464,15.973408 -49.685464,16.237351 C -49.685464,16.348915 -49.660921,16.434629 -49.610474,16.486329 C -49.555936,16.540751 -49.486401,16.552996 -49.418229,16.552996 C -49.374599,16.552996 -49.332332,16.544832 -49.31188,16.53939 L -49.313243,16.53939 C -49.270977,16.528506 -49.225983,16.497213 -49.224619,16.468642 C -49.225983,16.453676 -49.230074,16.426466 -49.238254,16.400616 C -49.291428,16.429186 -49.343239,16.440071 -49.396414,16.440071 M -49.427773,15.976129 C -49.375962,15.976129 -49.35142,16.011502 -49.344603,16.083611 L -49.344603,16.097216 C -49.344603,16.102658 -49.343239,16.10674 -49.343239,16.112182 C -49.343239,16.128509 -49.345966,16.143474 -49.348693,16.152998 C -49.35551,16.157079 -49.362328,16.157079 -49.369144,16.15844 C -49.396414,16.161161 -49.452315,16.162522 -49.500035,16.162522 L -49.538212,16.162522 C -49.530031,16.040074 -49.48231,15.982931 -49.433227,15.976129 L -49.427773,15.976129 M -48.848032,15.988374 C -48.778497,15.988374 -48.755318,16.023747 -48.755318,16.121706 L -48.755318,16.478166 C -48.755318,16.498574 -48.751228,16.518982 -48.740321,16.53939 C -48.650333,16.53939 -48.625791,16.533948 -48.608067,16.517621 C -48.60943,16.464561 -48.610794,16.397894 -48.610794,16.324426 L -48.610794,16.118984 C -48.610794,15.963884 -48.643516,15.876809 -48.813946,15.876809 C -48.846669,15.876809 -48.873938,15.882252 -48.90257,15.891776 C -48.927112,15.899939 -48.955745,15.913544 -48.983013,15.932591 C -48.991194,15.916265 -49.007556,15.90402 -49.032098,15.90402 C -49.034824,15.90402 -49.043005,15.90402 -49.051186,15.906741 C -49.081181,15.918986 -49.098906,15.929871 -49.10845,15.940754 C -49.098906,15.967966 -49.093452,15.999258 -49.093452,16.042795 L -49.093452,16.271364 C -49.093452,16.374765 -49.094816,16.467281 -49.096179,16.53939 L -49.060729,16.53939 C -49.000738,16.538029 -48.985741,16.538029 -48.966652,16.521703 C -48.953018,16.502656 -48.950291,16.486329 -48.950291,16.456397 L -48.950291,16.037353 L -48.954381,16.041434 C -48.927112,16.011502 -48.891662,15.988374 -48.848032,15.988374 M -48.148736,16.422384 C -48.15828,16.430547 -48.212817,16.449594 -48.230542,16.448234 C -48.274172,16.448234 -48.283717,16.397894 -48.28917,16.327146 L -48.28917,16.260481 C -48.28917,16.231909 -48.290533,16.203338 -48.290533,16.172046 C -48.290533,16.114903 -48.28917,16.0564 -48.287806,15.996536 C -48.23736,15.996536 -48.218271,15.996536 -48.191002,15.995176 C -48.180095,15.995176 -48.16646,15.993816 -48.156916,15.992455 C -48.129647,15.987013 -48.11874,15.969326 -48.11465,15.893136 L -48.287806,15.893136 C -48.287806,15.841436 -48.286443,15.797899 -48.28508,15.740756 L -48.28508,15.718987 C -48.366886,15.724429 -48.402336,15.75028 -48.413243,15.781572 C -48.414607,15.819667 -48.418697,15.861844 -48.420061,15.899939 C -48.428241,15.90402 -48.430968,15.901299 -48.441876,15.90402 C -48.459601,15.909462 -48.480052,15.914904 -48.500503,15.92851 C -48.511411,15.939394 -48.512774,15.939394 -48.512774,15.978849 C -48.492323,15.988374 -48.469144,15.996536 -48.432331,15.997897 L -48.432331,16.321704 C -48.432331,16.433268 -48.406426,16.554356 -48.270082,16.554356 C -48.226452,16.554356 -48.174641,16.542111 -48.143282,16.521703 C -48.133737,16.51354 -48.126921,16.505376 -48.124193,16.495853 C -48.12283,16.484969 -48.12283,16.470003 -48.12283,16.457758 C -48.12283,16.445513 -48.124193,16.434629 -48.125557,16.426466 L -48.148736,16.422384 M -47.513137,16.20878 C -47.513137,15.989734 -47.603124,15.875449 -47.781735,15.875449 C -47.943985,15.875449 -48.058514,15.982932 -48.058514,16.216943 C -48.058514,16.455036 -47.960346,16.554356 -47.785825,16.554356 C -47.629029,16.554356 -47.513137,16.43735 -47.513137,16.20878 M -47.907172,16.211501 C -47.907172,16.042795 -47.849907,15.978849 -47.785825,15.978849 C -47.710836,15.978849 -47.663115,16.042795 -47.663115,16.212861 C -47.663115,16.392452 -47.719017,16.453676 -47.783098,16.453676 C -47.853997,16.453676 -47.907172,16.392452 -47.907172,16.211501"
         id="path6474"
         style="font-size:1.99232042px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:200%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
      <path
         d="M -52.071683,18.631835 L -52.071683,19.612677 L -50.19654,19.612677 L -49.90922,19.522137 L -52.071683,18.631835 z"
         id="path6476"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6506);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M -48.540471,18.664662 C -48.742879,18.664662 -48.904031,18.82547 -48.904031,19.027447 L -48.904031,19.603635 L -47.193158,19.603635 L -47.193158,19.027447 C -47.193158,18.82547 -47.375697,18.664662 -47.578105,18.664662 L -48.540471,18.664662 z"
         id="path6478"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6508);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
    </g>
    <g
       id="g16"
       style="display:inline;enable-background:new"
       transform="translate(303,219) scale(1.000000,1.000000)">
      <path
         d="M 8.2434789,9.5297977 C 9.5597418,5.4043821 3.4700941,6.1880048 4.99685,3.1344063 C 6.5408735,0.046271844 12.537603,7.5505167 13.805469,5.3065917 C 15.094892,3.0245104 10.565774,2.4970165 12.008546,0.46782286"
         id="path210"
         sodipodi:nodetypes="czzc"
         style="fill:none;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6086);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;display:inline" />
      <path
         d="M 3.4284167,8.7523931 C 1.8112435,8.7523931 0.5,10.254718 0.49999992,12.107557 C 0.49999992,13.960395 1.8112435,15.462721 3.4284167,15.46272 C 4.5907601,15.46272 5.5906543,15.105203 6.0639914,13.980257 L 9.9143173,13.980257 C 10.380966,15.125344 11.396408,15.5 12.571584,15.5 C 14.188757,15.5 15.5,13.997675 15.5,12.144836 C 15.5,10.407802 14.34113,8.9740917 12.864426,8.8020992 C 12.755476,8.7687302 12.646581,8.7523931 12.528199,8.7523931 L 3.7754884,8.7523931 C 3.739083,8.7523931 3.7026671,8.7615202 3.6670287,8.7648199 C 3.5863616,8.7571677 3.5107985,8.7523931 3.4284167,8.7523931 z"
         id="path212"
         sodipodi:nodetypes="cssccsscccsc"
         style="opacity:1;color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:0.99999987999999995;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 3.9558475,9.0606473 C 2.5432971,9.0606473 1.3979668,10.210056 1.3979667,11.627636 C 1.3979667,13.045216 2.2280532,14.462073 3.6406037,14.462073 C 4.6558743,14.462073 5.2674966,14.004381 5.537383,13.007445 L 10.341637,13.007445 C 10.591534,13.930541 11.224883,14.516982 12.251362,14.516982 C 13.663913,14.516982 14.499999,13.073739 14.5,11.656158 C 14.5,10.327177 13.487762,9.2302654 12.197907,9.0986769 C 12.102743,9.0731474 12.007627,9.0606473 11.904225,9.0606473 L 4.2590038,9.0606473 C 4.2272048,9.0606473 4.1953966,9.0676302 4.1642676,9.0701549 C 4.0938075,9.064301 4.0278056,9.0606473 3.9558475,9.0606473 z"
         id="path214"
         sodipodi:nodetypes="cssccsscccsc"
         style="opacity:1;color:#000000;fill:none;fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5737);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path216"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#cc0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797553999999993;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.2500002,0,0,0.3254094,3.2187434,2.1945821)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path218"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797553999999993;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.2499998,0,0,0.3453799,4.2187574,0.6553791)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path220"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#4e9a06;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797553999999993;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.25,0,0,0.3333333,5.2187504,1.9806364)" />
      <path
         d="M 35,28.5 A 2,1.5 0 1 1 31,28.5 A 2,1.5 0 1 1 35,28.5 z"
         id="path222"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="opacity:1;color:#000000;fill:#c4a000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797553999999993;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.25,0,0,0.3333333,4.2187504,2.9806364)" />
      <path
         d="M 3.303125,13 C 3.0798794,13 2.9,12.960745 2.9,12.737501 L 2.9,12.053125 L 2.403125,12.053125 C 2.1798794,12.053125 2,11.873246 2,11.649998 L 2,11.201561 C 2,10.978316 2.1798794,10.798437 2.403125,10.798437 L 2.9,10.798437 L 2.9,10.403124 C 2.9,10.179879 3.0798794,10 3.303125,10 L 3.6968751,10 C 3.9201206,10 4.1,10.179879 4.1,10.403124 L 4.1,10.798437 L 4.5968748,10.798437 C 4.8201204,10.798437 5,10.978316 5,11.201561 L 5,11.649998 C 5,11.873246 4.8201204,12.053125 4.5968748,12.053125 L 4.1,12.053125 L 4.1,12.737501 C 4.1,12.960745 3.9201206,13 3.6968751,13 L 3.303125,13 z"
         id="path224"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="opacity:1;color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <g
         id="g226"
         style="opacity:0.8433735"
         transform="matrix(0.4611328,0,0,0.5170404,-9.2481281,-0.4150411)">
        <path
           d="M 7.0625,29.3125 C 7.0625,29.3125 7.03125,30.15625 7.625,30.1875 L 10.03125,30.1875 L 10,31.0625 L 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path228"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 16.043802,29.3125 C 16.043802,29.3125 16.075052,30.15625 15.481302,30.1875 L 13.075052,30.1875 L 13.106302,31.0625 L 15.418802,31 C 16.231302,30.9375 16.043802,29.3125 16.043802,29.3125 z"
           id="path230"
           sodipodi:nodetypes="cccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="M 10.091909,32.71875 C 10.210541,32.71875 12.96875,32.71875 12.96875,32.71875 C 12.929015,33.243364 13.043872,33.869784 12.405245,34 L 10.744388,34 C 10.019388,33.869998 10.143374,33.243022 10.091909,32.71875 z"
           id="path232"
           sodipodi:nodetypes="ccccc"
           style="opacity:1;color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      </g>
      <path
         d="M 6.2883039,10.270467 C 6.2807447,10.277716 6.237553,10.294628 6.2235155,10.29342 C 6.1889634,10.29342 6.1814041,10.248723 6.1770853,10.185906 L 6.1770853,10.126714 C 6.1770853,10.101344 6.1760052,10.075976 6.1760052,10.048191 C 6.1760052,9.9974541 6.1770853,9.9455095 6.1781646,9.8923549 C 6.2181176,9.8923549 6.2332342,9.8923549 6.2548299,9.8911481 C 6.2634677,9.8911481 6.2742655,9.8899406 6.2818248,9.8887323 C 6.3034198,9.8838997 6.3120582,9.8681959 6.3152987,9.8005467 L 6.1781646,9.8005467 C 6.1781646,9.7546422 6.1792438,9.7159846 6.1803239,9.6652468 L 6.1803239,9.6459188 C 6.1155365,9.6507498 6.0874624,9.6737036 6.078824,9.7014876 C 6.0777446,9.7353135 6.0745051,9.7727619 6.073425,9.806586 C 6.0669468,9.8102095 6.0647864,9.8077945 6.0561489,9.8102095 C 6.0421122,9.8150429 6.0259145,9.8198739 6.0097177,9.8319558 C 6.0010791,9.8416186 6,9.8416186 6,9.8766512 C 6.0161968,9.8851088 6.0345531,9.8923549 6.0637072,9.8935641 L 6.0637072,10.181073 C 6.0637072,10.280132 6.0842238,10.387647 6.192202,10.387647 C 6.2267552,10.387647 6.2677874,10.376775 6.2926218,10.358654 C 6.3001801,10.351406 6.30558,10.344158 6.3077394,10.335702 C 6.3088196,10.326039 6.3088196,10.312751 6.3088196,10.301877 C 6.3088196,10.291004 6.3077394,10.281341 6.3066593,10.274093 L 6.2883039,10.270467 M 6.3899882,9.8754436 C 6.3921485,9.8887323 6.3964673,9.9092678 6.411584,9.927389 C 6.4277819,9.927389 6.439659,9.9237649 6.4515361,9.9177246 C 6.4828516,9.904436 6.5249629,9.8875231 6.5595161,9.8875231 C 6.5951485,9.8875231 6.5994673,9.9141004 6.5994673,9.9648383 L 6.5994673,10.024031 C 6.5929882,10.022823 6.5854299,10.022823 6.5757121,10.022823 C 6.5659942,10.022823 6.5541171,10.022823 6.5443986,10.024031 C 6.4763725,10.032488 6.3554352,10.074768 6.3554352,10.220939 C 6.3554352,10.333285 6.4256214,10.384022 6.4990475,10.384022 C 6.5292809,10.384022 6.5562757,10.381606 6.5821912,10.36711 C 6.5886702,10.362278 6.6005474,10.353822 6.6059465,10.34899 C 6.619983,10.365902 6.6458985,10.384022 6.6707339,10.384022 C 6.7042068,10.382814 6.727963,10.365902 6.7376806,10.350198 C 6.7376806,10.342949 6.7387607,10.315166 6.7398397,10.298252 C 6.7063671,10.3055 6.7096059,10.25114 6.7096059,10.25114 C 6.7096059,10.229396 6.710686,10.175034 6.710686,10.147249 C 6.7117661,10.102552 6.7117661,10.05544 6.7117661,10.010743 L 6.7117661,9.9575898 C 6.7117661,9.8524906 6.6836911,9.7920899 6.5973089,9.7860497 C 6.5800318,9.7848414 6.5767922,9.7848414 6.5595161,9.7848414 C 6.4839308,9.7872573 6.4159038,9.8210823 6.3921485,9.8452437 C 6.3899882,9.8512839 6.3889089,9.857324 6.3889089,9.8609475 C 6.3889089,9.8657801 6.3889089,9.8694026 6.3910684,9.8766512 L 6.3899882,9.8754436 M 6.5973089,10.241476 C 6.5962286,10.248723 6.5951485,10.25718 6.5951485,10.255972 L 6.5962286,10.254763 C 6.5832705,10.274093 6.5508767,10.289797 6.5228018,10.289797 L 6.5163236,10.289797 C 6.4893297,10.287381 6.4698933,10.266844 6.4698933,10.211276 C 6.4698933,10.140001 6.5098454,10.117049 6.5562757,10.107386 L 6.5551965,10.107386 C 6.5659942,10.106176 6.5778715,10.104969 6.5886702,10.104969 L 6.5994673,10.104969 L 6.5994673,10.184699 C 6.5994673,10.208857 6.5994673,10.22698 6.5973089,10.241476 M 7.0230654,9.8851088 C 7.0781349,9.8851088 7.0964908,9.9165163 7.0964908,10.003494 L 7.0964908,10.319997 C 7.0964908,10.338118 7.09973,10.356238 7.1083683,10.374359 C 7.1796344,10.374359 7.1990712,10.369526 7.2131087,10.355029 C 7.2120287,10.307917 7.2109487,10.248723 7.2109487,10.183491 L 7.2109487,10.001078 C 7.2109487,9.8633633 7.1850344,9.7860497 7.0500597,9.7860497 C 7.0241454,9.7860497 7.0025492,9.7908823 6.9798737,9.7993392 C 6.9604376,9.806586 6.9377623,9.8186664 6.9161672,9.8355785 C 6.9096877,9.8210823 6.896731,9.8102095 6.8772936,9.8102095 C 6.8751346,9.8102095 6.8686551,9.8102095 6.8621768,9.8126255 C 6.8384226,9.8234989 6.8243846,9.8331634 6.8168262,9.842827 C 6.8243846,9.8669884 6.8287039,9.8947724 6.8287039,9.9334292 L 6.8287039,10.136376 C 6.8287039,10.228187 6.8276238,10.310332 6.8265436,10.374359 L 6.8546184,10.374359 C 6.9021292,10.373151 6.9140069,10.373151 6.9291238,10.358654 C 6.9399226,10.341741 6.9420805,10.327245 6.9420805,10.300669 L 6.9420805,9.9285974 L 6.9388424,9.93222 C 6.9604376,9.9056444 6.9885123,9.8851088 7.0230654,9.8851088 M 7.6794576,9.9938299 C 7.6794576,9.955173 7.6719,9.9261807 7.6546241,9.8959799 C 7.6675808,9.8971891 7.6740592,9.8971891 7.6891775,9.8971891 C 7.715091,9.8971891 7.7280495,9.8742369 7.7280495,9.842827 C 7.7280495,9.8259149 7.7237303,9.8114187 7.7194111,9.8017534 C 7.7086126,9.8017534 7.6859368,9.8029627 7.6719,9.8041702 L 7.6729792,9.8041702 C 7.6503041,9.8053785 7.6200699,9.806586 7.5963148,9.8077945 C 7.5930756,9.8102095 7.5941556,9.8114187 7.5963148,9.8126255 C 7.5714796,9.7993392 7.5380054,9.7848414 7.5002144,9.7848414 C 7.3889964,9.7848414 7.3090903,9.8621566 7.3090903,9.9986625 C 7.3090903,10.073559 7.331767,10.130337 7.378198,10.162953 C 7.3738789,10.167786 7.3749589,10.168994 7.3695597,10.173825 C 7.3533621,10.190738 7.3328462,10.210066 7.3177294,10.22698 C 7.3090903,10.239061 7.3036927,10.247515 7.3036927,10.255972 C 7.3047727,10.292212 7.331767,10.324829 7.3846764,10.342949 C 7.3846764,10.342949 7.4170699,10.355029 7.46674,10.359862 C 7.4732193,10.359862 7.4807785,10.361071 7.487256,10.361071 C 7.5120911,10.362278 7.535847,10.363487 7.5596029,10.36711 C 7.5963148,10.371943 7.6071123,10.392479 7.6157507,10.417847 C 7.6157507,10.421471 7.6157507,10.431136 7.6157507,10.434759 C 7.6168315,10.484289 7.5617621,10.560394 7.4904952,10.582139 C 7.4710592,10.585763 7.4397457,10.593009 7.4181506,10.593009 C 7.4041123,10.593009 7.393314,10.590595 7.3911556,10.58093 C 7.3868356,10.559185 7.424629,10.516905 7.4591816,10.484289 C 7.4786193,10.463753 7.4721393,10.422679 7.4451449,10.406975 C 7.3771181,10.457711 7.2680593,10.561602 7.2788568,10.622002 C 7.2896544,10.661868 7.3393253,10.675156 7.393314,10.675156 C 7.4278666,10.675156 7.4656609,10.670325 7.4937344,10.664284 C 7.627629,10.629251 7.7258895,10.508449 7.7258895,10.402142 C 7.7226503,10.33087 7.6762192,10.288589 7.6092723,10.274093 C 7.599554,10.271676 7.5844381,10.270467 7.5704004,10.269261 C 7.5531229,10.268051 7.535847,10.265636 7.5185695,10.264428 L 7.4764576,10.260803 C 7.4408241,10.25718 7.4213898,10.246307 7.4213898,10.235435 C 7.4213898,10.230603 7.4224698,10.223354 7.4267874,10.218524 L 7.4483841,10.194364 C 7.4613408,10.196777 7.4742984,10.197987 7.4937344,10.197987 C 7.6092723,10.197987 7.6794576,10.123088 7.6794576,9.9938299 M 7.487256,9.8657801 C 7.5358462,9.8657801 7.562842,9.9092678 7.5693204,9.982958 C 7.5747196,10.059064 7.5552821,10.115842 7.5066927,10.115842 C 7.4537825,10.115842 7.4278666,10.068728 7.4224698,9.9926223 C 7.4149115,9.9068519 7.4451449,9.8657801 7.487256,9.8657801 M 7.995449,10.286173 C 7.928502,10.286173 7.883151,10.247515 7.8809909,10.126714 C 7.898267,10.127922 7.901507,10.126714 7.9187845,10.126714 C 7.969533,10.126714 8.0246033,10.124298 8.0580767,10.119465 C 8.0893901,10.114633 8.1293429,10.098929 8.1423004,10.086849 C 8.1455388,10.068728 8.1476988,10.042152 8.1476988,10.015575 C 8.1476988,9.9950382 8.1466188,9.9757102 8.1455388,9.9575898 C 8.1369012,9.8524906 8.0839894,9.7848414 7.9814122,9.7848414 C 7.8572351,9.7848414 7.766533,9.8718194 7.766533,10.106176 C 7.766533,10.205234 7.7859706,10.281341 7.8259224,10.327245 C 7.8691143,10.375566 7.9241828,10.38644 7.9781714,10.38644 C 8.0127249,10.38644 8.0461984,10.37919 8.0623959,10.374359 L 8.0613159,10.374359 C 8.0947885,10.364694 8.1304229,10.336909 8.1315028,10.311541 C 8.1304229,10.298252 8.1271829,10.274093 8.1207045,10.25114 C 8.0785926,10.276509 8.0375616,10.286173 7.995449,10.286173 M 7.970613,9.8742369 C 8.0116457,9.8742369 8.0310816,9.9056444 8.0364816,9.9696701 L 8.0364816,9.9817495 C 8.0364816,9.9865813 8.0375616,9.9902064 8.0375616,9.9950382 C 8.0375616,10.009535 8.0354008,10.022823 8.0332408,10.03128 C 8.0278424,10.034902 8.0224433,10.034902 8.0170449,10.036111 C 7.995449,10.038527 7.9511771,10.039736 7.9133845,10.039736 L 7.883151,10.039736 C 7.8896294,9.9310133 7.9274228,9.8802762 7.9662938,9.8742369 L 7.970613,9.8742369 M 8.429743,9.8851088 C 8.4848123,9.8851088 8.5031699,9.9165163 8.5031699,10.003494 L 8.5031699,10.319997 C 8.5031699,10.338118 8.5064074,10.356238 8.515045,10.374359 C 8.5863127,10.374359 8.6057486,10.369526 8.6197853,10.355029 C 8.6187054,10.307917 8.6176254,10.248723 8.6176254,10.183491 L 8.6176254,10.001078 C 8.6176254,9.8633633 8.5917111,9.7860497 8.456738,9.7860497 C 8.4308222,9.7860497 8.4092271,9.7908823 8.386552,9.7993392 C 8.3671152,9.806586 8.3444393,9.8186664 8.3228442,9.8355785 C 8.3163658,9.8210823 8.3034067,9.8102095 8.2839708,9.8102095 C 8.2818124,9.8102095 8.2753332,9.8102095 8.2688531,9.8126255 C 8.2450989,9.8234989 8.2310621,9.8331634 8.2235038,9.842827 C 8.2310621,9.8669884 8.2353805,9.8947724 8.2353805,9.9334292 L 8.2353805,10.136376 C 8.2353805,10.228187 8.2343005,10.310332 8.2332213,10.374359 L 8.2612965,10.374359 C 8.3088074,10.373151 8.3206834,10.373151 8.3358017,10.358654 C 8.3465993,10.341741 8.3487593,10.327245 8.3487593,10.300669 L 8.3487593,9.9285974 L 8.3455193,9.93222 C 8.3671152,9.9056444 8.3951903,9.8851088 8.429743,9.8851088 M 8.9835563,10.270467 C 8.975998,10.277716 8.932807,10.294628 8.9187694,10.29342 C 8.8842167,10.29342 8.8766575,10.248723 8.8723376,10.185906 L 8.8723376,10.126714 C 8.8723376,10.101344 8.8712592,10.075976 8.8712592,10.048191 C 8.8712592,9.9974541 8.8723376,9.9455095 8.8734184,9.8923549 C 8.9133694,9.8923549 8.928487,9.8923549 8.9500837,9.8911481 C 8.9587213,9.8911481 8.9695196,9.8899406 8.977078,9.8887323 C 8.9986731,9.8838997 9.0073106,9.8681959 9.0105514,9.8005467 L 8.8734184,9.8005467 C 8.8734184,9.7546422 8.8744983,9.7159846 8.8755767,9.6652468 L 8.8755767,9.6459188 C 8.8107907,9.6507498 8.7827155,9.6737036 8.7740779,9.7014876 C 8.7729979,9.7353135 8.769758,9.7727619 8.768678,9.806586 C 8.7621996,9.8102095 8.7600404,9.8077945 8.751402,9.8102095 C 8.7373653,9.8150429 8.7211678,9.8198739 8.7049719,9.8319558 C 8.6963335,9.8416186 8.6952535,9.8416186 8.6952535,9.8766512 C 8.7114494,9.8851088 8.7298062,9.8923549 8.7589612,9.8935641 L 8.7589612,10.181073 C 8.7589612,10.280132 8.7794763,10.387647 8.8874551,10.387647 C 8.9220077,10.387647 8.9630404,10.376775 8.9878747,10.358654 C 8.9954339,10.351406 9.0008322,10.344158 9.0029938,10.335702 C 9.004073,10.326039 9.004073,10.312751 9.004073,10.301877 C 9.004073,10.291004 9.0029938,10.281341 9.0019122,10.274093 L 8.9835563,10.270467 M 9.4869231,10.080808 C 9.4869231,9.8863155 9.4156577,9.7848414 9.2742047,9.7848414 C 9.14571,9.7848414 9.0550072,9.8802762 9.0550072,10.088056 C 9.0550072,10.299459 9.1327533,10.387647 9.2709663,10.387647 C 9.3951418,10.387647 9.4869231,10.283756 9.4869231,10.080808 M 9.1748643,10.083224 C 9.1748643,9.9334292 9.2202162,9.8766512 9.2709663,9.8766512 C 9.3303542,9.8766512 9.3681468,9.9334292 9.3681468,10.084432 C 9.3681468,10.243892 9.3238758,10.298252 9.2731255,10.298252 C 9.2169762,10.298252 9.1748643,10.243892 9.1748643,10.083224"
         id="path234"
         style="font-size:1.99232042px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:200%;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid:none;marker-end:none;stroke-miterlimit:4;stroke-dashoffset:0;stroke-opacity:1;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
    </g>
  </g>
  <g
     id="layer4"
     inkscape:groupmode="layer"
     inkscape:label="hires"
     style="display:inline" />
</svg>