summaryrefslogtreecommitdiff
path: root/src/input-gaming.svg
blob: 3137619f71314caae96fb834f9827d9ab10e5438 (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
<?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+devel"
   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="layer2"
     inkscape:cx="212.52448"
     inkscape:cy="184.26902"
     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="722"
     inkscape:window-width="968"
     inkscape:window-x="132"
     inkscape:window-y="25"
     inkscape:zoom="2.25"
     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">
    <inkscape:perspective
       sodipodi:type="inkscape:persp3d"
       inkscape:vp_x="0 : 150 : 1"
       inkscape:vp_y="0 : 1000 : 0"
       inkscape:vp_z="400 : 150 : 1"
       inkscape:persp3d-origin="200 : 100 : 1"
       id="perspective185" />
    <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)">
      <path
         d="m 10.955203,22.664056 c -4.6278035,0 -8.3801396,3.778019 -8.3801397,8.4375 0,4.65948 3.7523362,8.437502 8.3801397,8.4375 3.326234,0 6.187595,-1.95226 7.542126,-4.78125 l 11.018331,0 c 1.335391,2.879637 4.241244,4.875 7.604201,4.875 4.627803,0 8.380138,-3.778019 8.380139,-8.4375 0,-4.368262 -3.316297,-7.973727 -7.542125,-8.40625 -0.311777,-0.08391 -0.623398,-0.125 -0.962165,-0.125 l -25.047305,0 c -0.10418,0 -0.20839,0.02295 -0.310375,0.03125 -0.230842,-0.01924 -0.447078,-0.03125 -0.682827,-0.03125 z"
         id="path6206"
         style="opacity:0.64457834;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6232);enable-background:accumulate" />
      <path
         d="M 23.855556,23.955321 C 27.849005,14.622805 10.33528,20.756286 13.73735,15.886134 17.080987,11.099629 35.542805,21.077409 39.389419,16.001201 43.30144,10.838676 29.292251,12.644661 35.278506,3.4553216"
         id="path5014"
         sodipodi:nodetypes="czzc"
         style="fill:none;stroke:url(#linearGradient6086);stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
      <path
         d="m 10.955203,21.664056 c -4.6278035,0 -8.3801396,3.778019 -8.3801397,8.4375 0,4.65948 3.7523362,8.437502 8.3801397,8.4375 3.326234,0 6.187595,-1.95226 7.542126,-4.78125 l 11.018331,0 c 1.335391,2.879637 4.241244,4.875 7.604201,4.875 4.627803,0 8.380138,-3.778019 8.380139,-8.4375 0,-4.368262 -3.316297,-7.973727 -7.542125,-8.40625 -0.311777,-0.08391 -0.623398,-0.125 -0.962165,-0.125 l -25.047305,0 c -0.10418,0 -0.20839,0.02295 -0.310375,0.03125 -0.230842,-0.01924 -0.447078,-0.03125 -0.682827,-0.03125 z"
         id="path5553"
         style="color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 11.564747,22.500001 c -4.4121802,0 -7.9896837,3.11704 -7.9896838,6.961326 0,3.844285 3.5775036,6.961328 7.9896838,6.961326 3.171255,0 5.899296,-1.610704 7.190716,-3.944752 l 10.504954,0 c 1.273171,2.375834 4.043631,4.022101 7.249898,4.022101 4.41218,0 7.989682,-3.11704 7.989683,-6.961327 0,-3.604017 -3.16178,-6.578692 -7.190714,-6.935544 -0.297251,-0.06923 -0.594352,-0.10313 -0.917335,-0.10313 l -23.880276,0 c -0.09933,0 -0.198681,0.01894 -0.295914,0.02578 -0.220086,-0.01588 -0.426247,-0.02578 -0.651012,-0.02578 z"
         id="path5729"
         style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 35,28.5 a 2,1.5 0 1 1 -4,0 2,1.5 0 1 1 4,0 z"
         id="path5767"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:nonzero;stroke:#cc0000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path5769"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path5771"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path5773"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 7.84375,28.2 C 7.0995978,28.2 6.5,28.739638 6.5,29.409375 l 0,0.99375 c 0,0.669737 0.5995978,1.209375 1.34375,1.209375 l 1.65625,0 0,1.678125 C 9.5,33.960362 10.099598,34.5 10.84375,34.5 l 1.3125,0 C 12.900402,34.5 13.5,33.960362 13.5,33.290625 l 0,-1.678125 1.65625,0 c 0.744152,0 1.34375,-0.539638 1.34375,-1.209375 l 0,-0.99375 C 16.5,28.739638 15.900402,28.2 15.15625,28.2 l -1.65625,0 0,-1.490625 C 13.5,26.039638 12.900402,25.5 12.15625,25.5 l -1.3125,0 z"
         id="rect5775"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="color:#000000;fill:url(#radialGradient6303);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <g
         id="g5812"
         style="opacity:0.8433735">
        <path
           d="m 7.0625,29.3125 c 0,0 -0.03125,0.84375 0.5625,0.875 l 2.40625,0 L 10,31.0625 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path5782"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 16.043802,29.3125 c 0,0 0.03125,0.84375 -0.5625,0.875 l -2.40625,0 0.03125,0.875 2.3125,-0.0625 c 0.8125,-0.0625 0.625,-1.6875 0.625,-1.6875 z"
           id="path5798"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 9.9375,32.71875 c 0.125,0 3.03125,0 3.03125,0 -0.04187,0.524614 0.07915,1.151034 -0.59375,1.28125 l -1.75,0 C 9.8610868,33.869998 9.9917274,33.243022 9.9375,32.71875 z"
           id="path5802"
           sodipodi:nodetypes="ccccc"
           style="color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(0.0625,-0.125)" />
      <path
         d="m 37.0625,25.640625 a 1.109375,0.484375 0 1 1 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="translate(0.06249999,5.875)" />
      <g
         id="g6274"
         transform="translate(1,-0.5)">
        <path
           d="m 19,28 0,3 3.5,-1.5 L 19,28 z"
           id="path6256"
           style="color:#000000;fill:url(#linearGradient6280);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6282);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 19,28 0,3 3.5,-1.5 L 19,28 z"
           id="path6236"
           style="color:#000000;fill:url(#linearGradient6284);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <rect
           height="3"
           id="rect6258"
           rx="0.84323502"
           ry="0.84323502"
           style="color:#000000;fill:url(#linearGradient6286);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6288);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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="color:#000000;fill:url(#linearGradient6290);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -0.01395,0.01195 -0.09364,0.03985 -0.11954,0.03785 -0.06375,0 -0.0777,-0.07372 -0.08567,-0.177317 l 0,-0.09762 c 0,-0.04184 -0.002,-0.08368 -0.002,-0.129501 0,-0.08368 0.002,-0.169347 0.004,-0.25701 0.07372,0 0.101608,0 0.141455,-0.002 0.01594,0 0.03586,-0.002 0.04981,-0.004 0.03985,-0.008 0.05579,-0.03387 0.06176,-0.14544 l -0.253025,0 c 0,-0.07571 0.002,-0.139462 0.004,-0.22314 l 0,-0.03188 c -0.11954,0.008 -0.17134,0.04582 -0.187279,0.09165 -0.002,0.05579 -0.008,0.117547 -0.01,0.173332 -0.01195,0.006 -0.01594,0.002 -0.03188,0.006 -0.0259,0.008 -0.05579,0.01594 -0.08567,0.03586 -0.01594,0.01594 -0.01793,0.01594 -0.01793,0.07372 0.02989,0.01395 0.06375,0.0259 0.117547,0.02789 l 0,0.474172 c 0,0.16337 0.03785,0.340687 0.237086,0.340687 0.06375,0 0.139463,-0.01793 0.185286,-0.04782 0.01395,-0.01195 0.02391,-0.02391 0.02789,-0.03785 0.002,-0.01594 0.002,-0.03785 0.002,-0.05579 0,-0.01793 -0.002,-0.03387 -0.004,-0.04582 l -0.03387,-0.006 m 0.18762,-0.651489 c 0.004,0.02192 0.01195,0.05579 0.03985,0.08567 0.02989,0 0.0518,-0.006 0.07372,-0.01594 0.05778,-0.02191 0.135478,-0.04981 0.199232,-0.04981 0.06575,0 0.07372,0.04383 0.07372,0.127509 l 0,0.09762 c -0.01195,-0.002 -0.0259,-0.002 -0.04383,-0.002 -0.01793,0 -0.03985,0 -0.05778,0.002 -0.125516,0.01395 -0.348656,0.08368 -0.348656,0.324749 0,0.185285 0.129501,0.268963 0.264978,0.268963 0.05579,0 0.105593,-0.004 0.153409,-0.02789 0.01195,-0.008 0.03387,-0.02191 0.04383,-0.02988 0.0259,0.02789 0.07372,0.05778 0.119539,0.05778 0.06176,-0.002 0.105593,-0.02989 0.123524,-0.05579 0,-0.01195 0.002,-0.05778 0.004,-0.08567 -0.06176,0.01195 -0.05579,-0.0777 -0.05579,-0.0777 0,-0.03586 0.002,-0.125517 0.002,-0.17134 0.002,-0.07372 0.002,-0.151416 0.002,-0.225132 l 0,-0.08766 c 0,-0.173332 -0.0518,-0.272948 -0.211186,-0.28291 -0.03188,-0.002 -0.03786,-0.002 -0.06973,-0.002 -0.139462,0.004 -0.264978,0.05977 -0.308809,0.09962 -0.004,0.01 -0.006,0.01992 -0.006,0.0259 0,0.008 0,0.01395 0.004,0.0259 l -0.002,-0.002 m 0.382526,0.603673 c -0.002,0.01195 -0.004,0.0259 -0.004,0.02391 l 0.002,-0.002 c -0.02391,0.03188 -0.08368,0.05778 -0.135478,0.05778 l -0.01195,0 c -0.04981,-0.004 -0.08567,-0.03785 -0.08567,-0.129501 0,-0.117547 0.07372,-0.155401 0.159385,-0.171339 l -0.002,0 c 0.01992,-0.002 0.04184,-0.004 0.06176,-0.004 l 0.01992,0 0,0.131493 c 0,0.03985 0,0.06973 -0.004,0.09364 m 0.785565,-0.587734 c 0.101609,0 0.135478,0.0518 0.135478,0.195247 l 0,0.521988 c 0,0.02989 0.006,0.05977 0.02192,0.08965 0.131493,0 0.167355,-0.008 0.193255,-0.03188 -0.002,-0.0777 -0.004,-0.175324 -0.004,-0.282909 l 0,-0.300841 c 0,-0.227124 -0.04782,-0.354633 -0.296856,-0.354633 -0.04781,0 -0.08766,0.008 -0.129501,0.02192 -0.03586,0.01195 -0.0777,0.03188 -0.117546,0.05977 -0.01195,-0.02391 -0.03586,-0.04184 -0.07172,-0.04184 -0.004,0 -0.01594,0 -0.02789,0.004 -0.04383,0.01793 -0.06973,0.03387 -0.08368,0.04981 0.01395,0.03985 0.02192,0.08567 0.02192,0.149424 l 0,0.33471 c 0,0.151416 -0.002,0.286894 -0.004,0.392487 l 0.0518,0 c 0.08766,-0.002 0.109578,-0.002 0.13747,-0.0259 0.01992,-0.02789 0.02391,-0.0518 0.02391,-0.09563 l 0,-0.613635 -0.006,0.006 c 0.03985,-0.04383 0.09165,-0.0777 0.155401,-0.0777 m 1.211113,0.179308 c 0,-0.06375 -0.01395,-0.11157 -0.04582,-0.161378 0.02391,0.002 0.03586,0.002 0.06375,0.002 0.04782,0 0.07172,-0.03785 0.07172,-0.08966 0,-0.02789 -0.008,-0.0518 -0.01594,-0.06774 -0.01992,0 -0.06176,0.002 -0.08766,0.004 l 0.002,0 c -0.04184,0.002 -0.09762,0.004 -0.141455,0.006 -0.006,0.004 -0.004,0.006 0,0.008 -0.04582,-0.02191 -0.107585,-0.04582 -0.177316,-0.04582 -0.205209,0 -0.352641,0.127509 -0.352641,0.352641 0,0.123523 0.04184,0.217163 0.127509,0.270955 -0.008,0.008 -0.006,0.01 -0.01594,0.01793 -0.02989,0.02789 -0.06774,0.05977 -0.09563,0.08766 -0.01594,0.01992 -0.0259,0.03387 -0.0259,0.04782 0.002,0.05977 0.0518,0.113562 0.149424,0.143447 0,0 0.05977,0.01992 0.151416,0.02789 0.01195,0 0.0259,0.002 0.03785,0.002 0.04582,0.002 0.08966,0.004 0.133486,0.01 0.06774,0.008 0.08766,0.04184 0.1036,0.08368 0,0.006 0,0.02191 0,0.02789 0.002,0.08169 -0.09962,0.207202 -0.231109,0.243063 -0.03586,0.006 -0.09364,0.01793 -0.133485,0.01793 -0.0259,0 -0.04582,-0.004 -0.04981,-0.01992 -0.008,-0.03586 0.06176,-0.105593 0.125516,-0.159385 0.03586,-0.03387 0.02391,-0.101609 -0.0259,-0.127509 -0.125516,0.08368 -0.326741,0.255017 -0.306818,0.354633 0.01992,0.06575 0.11157,0.08766 0.211186,0.08766 0.06375,0 0.133486,-0.008 0.185286,-0.01793 0.247048,-0.05778 0.428349,-0.257009 0.428349,-0.432333 -0.006,-0.117547 -0.09165,-0.187278 -0.215171,-0.211186 -0.01793,-0.004 -0.04582,-0.006 -0.07172,-0.008 -0.03188,-0.002 -0.06375,-0.006 -0.09563,-0.008 l -0.0777,-0.006 c -0.06575,-0.006 -0.101608,-0.02391 -0.101608,-0.04184 0,-0.008 0.002,-0.01992 0.01,-0.02789 l 0.03985,-0.03985 c 0.02391,0.004 0.04781,0.006 0.08368,0.006 0.213178,0 0.342679,-0.123525 0.342679,-0.336703 m -0.354633,-0.211186 c 0.08965,0 0.139463,0.07172 0.151416,0.193256 0.01,0.125516 -0.0259,0.219155 -0.115554,0.219155 -0.09762,0 -0.14544,-0.0777 -0.155401,-0.203217 -0.01395,-0.141455 0.04184,-0.209194 0.119539,-0.209194 m 0.937667,0.693328 c -0.123524,0 -0.207201,-0.06376 -0.211186,-0.262986 0.03188,0.002 0.03785,0 0.06973,0 0.09364,0 0.195248,-0.004 0.25701,-0.01195 0.05778,-0.008 0.131493,-0.03387 0.155401,-0.05379 0.006,-0.02989 0.01,-0.07372 0.01,-0.117547 0,-0.03387 -0.002,-0.06575 -0.004,-0.09563 -0.01594,-0.173332 -0.113563,-0.284902 -0.302833,-0.284902 -0.229117,0 -0.396472,0.143447 -0.396472,0.529957 0,0.16337 0.03586,0.288887 0.109578,0.364595 0.07969,0.07969 0.181301,0.09762 0.280917,0.09762 0.06375,0 0.125516,-0.01195 0.155401,-0.01992 l -0.002,0 c 0.06176,-0.01594 0.127508,-0.06176 0.129501,-0.1036 -0.002,-0.02192 -0.008,-0.06176 -0.01992,-0.09962 -0.0777,0.04184 -0.153408,0.05778 -0.231109,0.05778 m -0.04582,-0.679381 c 0.07571,0 0.11157,0.0518 0.121531,0.157393 l 0,0.01992 c 0,0.008 0.002,0.01395 0.002,0.02192 0,0.02391 -0.004,0.04582 -0.008,0.05977 -0.01,0.006 -0.01992,0.006 -0.02988,0.008 -0.03985,0.004 -0.121532,0.006 -0.191263,0.006 l -0.05579,0 c 0.01195,-0.179309 0.08169,-0.262987 0.153408,-0.272948 l 0.008,0 m 0.847141,0.01793 c 0.101608,0 0.135478,0.0518 0.135478,0.195247 l 0,0.521988 c 0,0.02989 0.006,0.05977 0.02191,0.08965 0.131493,0 0.167355,-0.008 0.193255,-0.03188 -0.002,-0.0777 -0.004,-0.175324 -0.004,-0.282909 l 0,-0.300841 c 0,-0.227124 -0.04781,-0.354633 -0.296855,-0.354633 -0.04782,0 -0.08766,0.008 -0.129501,0.02192 -0.03586,0.01195 -0.0777,0.03188 -0.117547,0.05977 -0.01195,-0.02391 -0.03586,-0.04184 -0.07172,-0.04184 -0.004,0 -0.01594,0 -0.02789,0.004 -0.04383,0.01793 -0.06973,0.03387 -0.08368,0.04981 0.01395,0.03985 0.02191,0.08567 0.02191,0.149424 l 0,0.33471 c 0,0.151416 -0.002,0.286894 -0.004,0.392487 l 0.0518,0 c 0.08766,-0.002 0.109577,-0.002 0.13747,-0.0259 0.01992,-0.02789 0.02391,-0.0518 0.02391,-0.09563 l 0,-0.613635 -0.006,0.006 c 0.03985,-0.04383 0.09165,-0.0777 0.155401,-0.0777 m 1.021842,0.63555 c -0.01395,0.01195 -0.09364,0.03985 -0.119539,0.03785 -0.06375,0 -0.0777,-0.07372 -0.08567,-0.177317 l 0,-0.09762 c 0,-0.04184 -0.002,-0.08368 -0.002,-0.129501 0,-0.08368 0.002,-0.169347 0.004,-0.25701 0.07371,0 0.101608,0 0.141454,-0.002 0.01594,0 0.03586,-0.002 0.04981,-0.004 0.03985,-0.008 0.05579,-0.03387 0.06176,-0.14544 l -0.253024,0 c 0,-0.07571 0.002,-0.139462 0.004,-0.22314 l 0,-0.03188 c -0.119539,0.008 -0.171339,0.04582 -0.187278,0.09165 -0.002,0.05579 -0.008,0.117547 -0.01,0.173332 -0.01195,0.006 -0.01594,0.002 -0.03188,0.006 -0.0259,0.008 -0.05579,0.01594 -0.08567,0.03586 -0.01594,0.01594 -0.01793,0.01594 -0.01793,0.07372 0.02988,0.01395 0.06375,0.0259 0.117547,0.02789 l 0,0.474172 c 0,0.16337 0.03785,0.340687 0.237086,0.340687 0.06375,0 0.139462,-0.01793 0.185285,-0.04782 0.01395,-0.01195 0.02391,-0.02391 0.02789,-0.03785 0.002,-0.01594 0.002,-0.03785 0.002,-0.05579 0,-0.01793 -0.002,-0.03387 -0.004,-0.04582 l -0.03387,-0.006 m 0.928764,-0.312795 c 0,-0.320763 -0.131493,-0.488118 -0.392487,-0.488118 -0.237086,0 -0.404441,0.157394 -0.404441,0.500072 0,0.348656 0.143447,0.494096 0.398464,0.494096 0.229117,0 0.398464,-0.17134 0.398464,-0.50605 m -0.575781,0.004 c 0,-0.247047 0.08368,-0.340687 0.177317,-0.340687 0.109577,0 0.179309,0.09364 0.179309,0.342679 0,0.262986 -0.08169,0.352641 -0.175324,0.352641 -0.103601,0 -0.181302,-0.08966 -0.181302,-0.354633"
         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;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
      <path
         d="m 20.086252,27.67068 0,1.436311 2.740039,0 0.419844,-0.132583 -3.159883,-1.303728 z"
         id="path6315"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6323);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 25.246209,27.71875 c -0.295767,0 -0.53125,0.235482 -0.53125,0.53125 l 0,0.84375 2.5,0 0,-0.84375 c 0,-0.295767 -0.266733,-0.53125 -0.5625,-0.53125 l -1.40625,0 z"
         id="rect6325"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6330);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
    </g>
    <g
       id="g32"
       style="display:inline;enable-background:new"
       transform="translate(303,126)">
      <path
         d="m 10.955203,22.664056 c -4.6278035,0 -8.3801396,3.778019 -8.3801397,8.4375 0,4.65948 3.7523362,8.437502 8.3801397,8.4375 3.326234,0 6.187595,-1.95226 7.542126,-4.78125 l 11.018331,0 c 1.335391,2.879637 4.241244,4.875 7.604201,4.875 4.627803,0 8.380138,-3.778019 8.380139,-8.4375 0,-4.368262 -3.316297,-7.973727 -7.542125,-8.40625 -0.311777,-0.08391 -0.623398,-0.125 -0.962165,-0.125 l -25.047305,0 c -0.10418,0 -0.20839,0.02295 -0.310375,0.03125 -0.230842,-0.01924 -0.447078,-0.03125 -0.682827,-0.03125 z"
         id="path105"
         style="opacity:0.64457834;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;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 11.496667,7.1906413 24.130997,14.00436 26.763424,10.537872 29.440613,7.0124393 19.853435,8.2457273 23.950124,1.9704248"
         id="path107"
         sodipodi:nodetypes="czzc"
         style="fill:none;stroke:url(#linearGradient6086);stroke-width:0.99999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
      <path
         d="m 6.9294916,14.529975 c -3.1670336,0 -5.7349418,2.665074 -5.7349419,5.951946 0,3.286871 2.5679083,5.951947 5.7349419,5.951946 2.2763057,0 4.2344754,-1.377155 5.1614474,-3.372769 l 7.540386,0 C 20.545199,25.09244 22.533817,26.5 24.835254,26.5 c 3.167033,0 5.734941,-2.665074 5.734941,-5.951947 0,-3.08144 -2.269505,-5.624792 -5.161447,-5.929901 -0.213364,-0.0592 -0.426622,-0.08818 -0.658457,-0.08818 l -17.1411024,0 c -0.071296,0 -0.1426115,0.01619 -0.2124049,0.02205 -0.1579765,-0.01358 -0.3059575,-0.02205 -0.4672921,-0.02205 z"
         id="path109"
         style="color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 7.3466326,15.100833 c -3.019472,0 -5.4677337,2.128594 -5.4677338,4.753816 0,2.625221 2.4482618,4.753817 5.4677338,4.753816 2.1702457,0 4.0371784,-1.099933 4.9209604,-2.69383 l 7.189057,0 c 0.871293,1.622432 2.767256,2.746651 4.961462,2.746651 3.019472,0 5.467732,-2.128594 5.467733,-4.753817 0,-2.461145 -2.163762,-4.492519 -4.920959,-4.736209 -0.203424,-0.04728 -0.406745,-0.07043 -0.627778,-0.07043 l -16.3424474,0 c -0.067974,0 -0.1359672,0.01293 -0.2025085,0.01761 -0.1506157,-0.01084 -0.2917018,-0.01761 -0.4455195,-0.01761 z"
         id="path111"
         style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 35,28.5 a 2,1.5 0 1 1 -4,0 2,1.5 0 1 1 4,0 z"
         id="path113"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:nonzero;stroke:#cc0000;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,-1.5942166,0.077267)" />
      <path
         d="m 35,28.5 a 2,1.5 0 1 1 -4,0 2,1.5 0 1 1 4,0 z"
         id="path115"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:#204a87;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path117"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:#4e9a06;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate"
         transform="matrix(0.6843492,0,0,0.6828894,4.564926,0.077267)" />
      <path
         d="m 35,28.5 a 2,1.5 0 1 1 -4,0 2,1.5 0 1 1 4,0 z"
         id="path119"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:#c4a000;stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 -0.5092598,0 -0.9195942,0.359759 -0.9195942,0.80625 l 0,0.99375 -1.1334534,0 c -0.5092599,0 -0.9195942,0.359759 -0.9195942,0.806251 l 0,0.6625 c 0,0.446491 0.4103343,0.806249 0.9195942,0.806249 l 1.1334534,0 0,1.118751 C 5.7095556,22.140242 6.11989,22.5 6.6291498,22.5 l 0.8982084,0 c 0.5092598,0 0.9195941,-0.359758 0.9195941,-0.806249 l 0,-1.118751 1.133453,0 C 10.089665,20.575 10.5,20.215242 10.5,19.768751 l 0,-0.6625 C 10.5,18.659759 10.089665,18.3 9.5804053,18.3 l -1.133453,0 0,-0.99375 C 8.4469523,16.859759 8.036618,16.5 7.5273582,16.5 l -0.8982084,0 z"
         id="path121"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="color:#000000;fill:url(#radialGradient6303);fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 0,0 -0.03125,0.84375 0.5625,0.875 l 2.40625,0 L 10,31.0625 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path125"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 16.043802,29.3125 c 0,0 0.03125,0.84375 -0.5625,0.875 l -2.40625,0 0.03125,0.875 2.3125,-0.0625 c 0.8125,-0.0625 0.625,-1.6875 0.625,-1.6875 z"
           id="path127"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 10.091909,32.71875 c 0.118632,0 2.876841,0 2.876841,0 -0.03974,0.524614 0.07512,1.151034 -0.563505,1.28125 l -1.660857,0 c -0.725,-0.130002 -0.601014,-0.756978 -0.652479,-1.28125 z"
           id="path129"
           sodipodi:nodetypes="ccccc"
           style="color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -2.21875,0 1.109375,0.484375 0 1 1 2.21875,0 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="color:#000000;fill:#ffffff;fill-opacity:0.64375;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 0,3 3.5,-1.5 L 19,28 z"
           id="path141"
           style="color:#000000;fill:url(#linearGradient6280);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6282);stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 19,28 0,3 3.5,-1.5 L 19,28 z"
           id="path143"
           style="color:#000000;fill:url(#linearGradient6284);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <rect
           height="3"
           id="rect145"
           rx="1.2321707"
           ry="1.2348046"
           style="color:#000000;fill:url(#linearGradient6286);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient6288);stroke-width:1.46280336;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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="color:#000000;fill:url(#linearGradient6290);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 -0.0095,0.0082 -0.06408,0.02721 -0.08181,0.02585 -0.04363,0 -0.05317,-0.05034 -0.05863,-0.121088 l 0,-0.06667 c 0,-0.02857 -0.0014,-0.05714 -0.0014,-0.08843 0,-0.05714 0.0014,-0.115646 0.0027,-0.17551 0.05045,0 0.06954,0 0.0968,-0.0014 0.01091,0 0.02454,-0.0014 0.03409,-0.0027 0.02727,-0.0054 0.03818,-0.02313 0.04227,-0.09932 l -0.173158,0 c 0,-0.0517 0.0014,-0.09524 0.0027,-0.15238 l 0,-0.02177 c -0.08181,0.0054 -0.117256,0.03129 -0.128164,0.06259 -0.0014,0.0381 -0.0055,0.08027 -0.0068,0.118367 -0.0082,0.0041 -0.01091,0.0014 -0.02182,0.0041 -0.01772,0.0054 -0.03818,0.01088 -0.05863,0.02449 -0.01091,0.01088 -0.01227,0.01088 -0.01227,0.05034 0.02045,0.0095 0.04363,0.01769 0.08044,0.01905 l 0,0.323807 c 0,0.111564 0.02591,0.232652 0.16225,0.232652 0.04363,0 0.09544,-0.01225 0.1268,-0.03265 0.0095,-0.0082 0.01636,-0.01633 0.01909,-0.02585 0.0014,-0.01088 0.0014,-0.02585 0.0014,-0.0381 0,-0.01225 -0.0014,-0.02313 -0.0027,-0.03129 l -0.02318,-0.0041 m 0.128397,-0.444895 c 0.0027,0.01497 0.0082,0.0381 0.02727,0.0585 0.02045,0 0.03545,-0.0041 0.05045,-0.01088 0.03954,-0.01497 0.09272,-0.03401 0.136345,-0.03401 0.04499,0 0.05045,0.02993 0.05045,0.08707 l 0,0.06667 c -0.0082,-0.0014 -0.01773,-0.0014 -0.03,-0.0014 -0.01227,0 -0.02727,0 -0.03954,0.0014 -0.0859,0.0095 -0.238603,0.05714 -0.238603,0.221767 0,0.126529 0.08862,0.183672 0.181338,0.183672 0.03818,0 0.07226,-0.0027 0.104985,-0.01905 0.0082,-0.0054 0.02318,-0.01497 0.03,-0.02041 0.01772,0.01905 0.05045,0.03946 0.08181,0.03946 0.04227,-0.0014 0.07226,-0.02041 0.08453,-0.0381 0,-0.0082 0.0014,-0.03946 0.0027,-0.0585 -0.04227,0.0082 -0.03818,-0.05306 -0.03818,-0.05306 0,-0.02449 0.0014,-0.08572 0.0014,-0.117007 0.0014,-0.05034 0.0014,-0.1034 0.0014,-0.15374 l 0,-0.05986 c 0,-0.118367 -0.03545,-0.186394 -0.144525,-0.193197 -0.02182,-0.0014 -0.02591,-0.0014 -0.04772,-0.0014 -0.09544,0.0027 -0.181338,0.04082 -0.211334,0.06803 -0.0027,0.0068 -0.0041,0.01361 -0.0041,0.01769 0,0.0054 0,0.0095 0.0027,0.01769 l -0.0014,-0.0014 m 0.261782,0.412242 c -0.0014,0.0082 -0.0027,0.01769 -0.0027,0.01633 l 0.0014,-0.0014 c -0.01636,0.02177 -0.05726,0.03946 -0.09271,0.03946 l -0.0082,0 c -0.03409,-0.0027 -0.05863,-0.02585 -0.05863,-0.08844 0,-0.08027 0.05045,-0.106122 0.109075,-0.117006 l -0.0014,0 c 0.01363,-0.0014 0.02863,-0.0027 0.04227,-0.0027 l 0.01363,0 0,0.0898 c 0,0.02721 0,0.04762 -0.0027,0.06395 m 0.5376,-0.401357 c 0.06954,0 0.09272,0.03537 0.09272,0.133332 l 0,0.35646 c 0,0.02041 0.0041,0.04082 0.015,0.06122 0.08999,0 0.114529,-0.0054 0.132254,-0.02177 -0.0014,-0.05306 -0.0027,-0.119727 -0.0027,-0.193195 l 0,-0.205442 c 0,-0.1551 -0.03272,-0.242175 -0.203154,-0.242175 -0.03272,0 -0.05999,0.0054 -0.08862,0.01497 -0.02454,0.0082 -0.05317,0.02177 -0.08044,0.04082 -0.0082,-0.01633 -0.02454,-0.02857 -0.04908,-0.02857 -0.0027,0 -0.01091,0 -0.01909,0.0027 -0.03,0.01225 -0.04772,0.02313 -0.05726,0.03401 0.0095,0.02721 0.015,0.0585 0.015,0.102041 l 0,0.228569 c 0,0.103401 -0.0014,0.195917 -0.0027,0.268026 l 0.03545,0 c 0.05999,-0.0014 0.07499,-0.0014 0.09408,-0.01769 0.01363,-0.01905 0.01636,-0.03537 0.01636,-0.06531 l 0,-0.419044 -0.0041,0.0041 c 0.02727,-0.02993 0.06272,-0.05306 0.106348,-0.05306 m 0.828824,0.122447 c 0,-0.04354 -0.0095,-0.07619 -0.03136,-0.110203 0.01636,0.0014 0.02454,0.0014 0.04363,0.0014 0.03272,0 0.04908,-0.02585 0.04908,-0.06122 0,-0.01905 -0.0055,-0.03537 -0.01091,-0.04626 -0.01363,0 -0.04227,0.0014 -0.05999,0.0027 l 0.0014,0 c -0.02863,0.0014 -0.06681,0.0027 -0.0968,0.0041 -0.0041,0.0027 -0.0027,0.0041 0,0.0054 -0.03136,-0.01497 -0.07363,-0.03129 -0.121346,-0.03129 -0.140434,0 -0.241329,0.08708 -0.241329,0.240815 0,0.08435 0.02863,0.148298 0.08726,0.185032 -0.0055,0.0054 -0.0041,0.0068 -0.01091,0.01225 -0.02045,0.01905 -0.04636,0.04082 -0.06545,0.05986 -0.01091,0.0136 -0.01772,0.02313 -0.01772,0.03265 0.0014,0.04081 0.03545,0.07755 0.102258,0.09796 0,0 0.0409,0.0136 0.103621,0.01905 0.0082,0 0.01773,0.0014 0.02591,0.0014 0.03136,0.0014 0.06136,0.0027 0.09135,0.0068 0.04636,0.0054 0.05999,0.02857 0.0709,0.05714 0,0.0041 0,0.01497 0,0.01905 0.0014,0.05578 -0.06817,0.141496 -0.158159,0.165986 -0.02454,0.0041 -0.06408,0.01224 -0.09135,0.01224 -0.01773,0 -0.03136,-0.0027 -0.03409,-0.0136 -0.0055,-0.02449 0.04227,-0.07211 0.0859,-0.108842 0.02454,-0.02313 0.01636,-0.06939 -0.01772,-0.08707 -0.0859,0.05714 -0.223605,0.174149 -0.209971,0.242175 0.01363,0.0449 0.07635,0.05986 0.144525,0.05986 0.04363,0 0.09135,-0.0054 0.1268,-0.01225 0.169067,-0.03946 0.293141,-0.175509 0.293141,-0.295236 -0.0041,-0.08027 -0.06272,-0.12789 -0.147252,-0.144216 -0.01227,-0.0027 -0.03136,-0.0041 -0.04908,-0.0054 -0.02182,-0.0014 -0.04363,-0.0041 -0.06545,-0.0054 l -0.05317,-0.0041 c -0.04499,-0.0041 -0.06954,-0.01633 -0.06954,-0.02857 0,-0.0054 0.0014,-0.0136 0.0068,-0.01905 l 0.02727,-0.02721 c 0.01636,0.0027 0.03272,0.0041 0.05726,0.0041 0.145889,0 0.234512,-0.08435 0.234512,-0.229931 m -0.242692,-0.144216 c 0.06135,0 0.09544,0.04898 0.103621,0.131972 0.0068,0.08571 -0.01773,0.149659 -0.07908,0.149659 -0.06681,0 -0.09953,-0.05306 -0.106349,-0.138775 -0.0095,-0.0966 0.02863,-0.142856 0.08181,-0.142856 m 0.641691,0.473466 c -0.08453,0 -0.141798,-0.04354 -0.144525,-0.17959 0.02182,0.0014 0.02591,0 0.04772,0 0.06408,0 0.133618,-0.0027 0.175884,-0.0082 0.03954,-0.0054 0.08999,-0.02313 0.106349,-0.03673 0.0041,-0.02041 0.0068,-0.05034 0.0068,-0.08027 0,-0.02313 -0.0014,-0.0449 -0.0027,-0.06531 -0.01091,-0.118367 -0.07772,-0.194557 -0.207243,-0.194557 -0.156796,0 -0.271326,0.09796 -0.271326,0.361902 0,0.111564 0.02454,0.197278 0.07499,0.248978 0.05454,0.05442 0.124073,0.06667 0.192245,0.06667 0.04363,0 0.0859,-0.0082 0.106349,-0.01361 l -0.0014,0 c 0.04227,-0.01088 0.08726,-0.04218 0.08862,-0.07075 -0.0014,-0.01497 -0.0055,-0.04218 -0.01364,-0.06803 -0.05317,0.02857 -0.104985,0.03946 -0.15816,0.03946 m -0.03136,-0.463942 c 0.05181,0 0.07635,0.03537 0.08317,0.107482 l 0,0.0136 c 0,0.0054 0.0014,0.0095 0.0014,0.01497 0,0.01633 -0.0027,0.03129 -0.0055,0.04082 -0.0068,0.0041 -0.01363,0.0041 -0.02045,0.0054 -0.02727,0.0027 -0.08317,0.0041 -0.130891,0.0041 l -0.03818,0 c 0.0082,-0.122448 0.0559,-0.179591 0.104985,-0.186393 l 0.0055,0 m 0.579741,0.01225 c 0.06953,0 0.09271,0.03537 0.09271,0.133332 l 0,0.35646 c 0,0.02041 0.0041,0.04082 0.015,0.06122 0.08999,0 0.11453,-0.0054 0.132254,-0.02177 -0.0014,-0.05306 -0.0027,-0.119727 -0.0027,-0.193195 l 0,-0.205442 c 0,-0.1551 -0.03272,-0.242175 -0.203152,-0.242175 -0.03272,0 -0.05999,0.0054 -0.08862,0.01497 -0.02454,0.0082 -0.05317,0.02177 -0.08044,0.04082 -0.0082,-0.01633 -0.02454,-0.02857 -0.04909,-0.02857 -0.0027,0 -0.01091,0 -0.01909,0.0027 -0.02999,0.01225 -0.04772,0.02313 -0.05726,0.03401 0.0095,0.02721 0.015,0.0585 0.015,0.102041 l 0,0.228569 c 0,0.103401 -0.0014,0.195917 -0.0027,0.268026 l 0.03545,0 c 0.05999,-0.0014 0.07499,-0.0014 0.09408,-0.01769 0.01363,-0.01905 0.01636,-0.03537 0.01636,-0.06531 l 0,-0.419044 -0.0041,0.0041 c 0.02727,-0.02993 0.06272,-0.05306 0.106349,-0.05306 m 0.699296,0.43401 c -0.0095,0.0082 -0.06408,0.02721 -0.08181,0.02585 -0.04363,0 -0.05317,-0.05034 -0.05863,-0.121088 l 0,-0.06667 c 0,-0.02857 -0.0014,-0.05714 -0.0014,-0.08843 0,-0.05714 0.0014,-0.115646 0.0027,-0.17551 0.05045,0 0.06953,0 0.0968,-0.0014 0.01091,0 0.02454,-0.0014 0.03409,-0.0027 0.02727,-0.0054 0.03818,-0.02313 0.04227,-0.09932 l -0.173156,0 c 0,-0.0517 0.0014,-0.09524 0.0027,-0.15238 l 0,-0.02177 c -0.08181,0.0054 -0.117256,0.03129 -0.128163,0.06259 -0.0014,0.0381 -0.0055,0.08027 -0.0068,0.118367 -0.0082,0.0041 -0.01091,0.0014 -0.02182,0.0041 -0.01772,0.0054 -0.03818,0.01088 -0.05863,0.02449 -0.01091,0.01088 -0.01227,0.01088 -0.01227,0.05034 0.02045,0.0095 0.04363,0.01769 0.08044,0.01905 l 0,0.323807 c 0,0.111564 0.02591,0.232652 0.162249,0.232652 0.04363,0 0.09544,-0.01225 0.1268,-0.03265 0.0095,-0.0082 0.01636,-0.01633 0.01909,-0.02585 0.0014,-0.01088 0.0014,-0.02585 0.0014,-0.0381 0,-0.01225 -0.0014,-0.02313 -0.0027,-0.03129 l -0.02318,-0.0041 m 0.635599,-0.213604 c 0,-0.219046 -0.08999,-0.333331 -0.268598,-0.333331 -0.16225,0 -0.276779,0.107483 -0.276779,0.341494 0,0.238093 0.09817,0.337413 0.272689,0.337413 0.156796,0 0.272688,-0.117006 0.272688,-0.345576 m -0.394035,0.0027 c 0,-0.168706 0.05726,-0.232652 0.121347,-0.232652 0.07499,0 0.12271,0.06395 0.12271,0.234012 0,0.179591 -0.0559,0.240815 -0.119983,0.240815 -0.0709,0 -0.124074,-0.06122 -0.124074,-0.242175"
         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;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
      <path
         d="m 13.178317,18.631835 0,0.980842 1.875143,0 0.28732,-0.09054 -2.162463,-0.890302 z"
         id="path151"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6323);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 16.709529,18.664662 c -0.202408,0 -0.36356,0.160808 -0.36356,0.362785 l 0,0.576188 1.710873,0 0,-0.576188 c 0,-0.201977 -0.182539,-0.362785 -0.384947,-0.362785 l -0.962366,0 z"
         id="path153"
         style="opacity:0.22289159;color:#000000;fill:url(#linearGradient6330);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
    </g>
    <g
       id="g22"
       style="display:inline;enable-background:new"
       transform="translate(303,177)">
      <path
         d="m 10.955203,22.664056 c -4.6278035,0 -8.3801396,3.778019 -8.3801397,8.4375 0,4.65948 3.7523362,8.437502 8.3801397,8.4375 3.326234,0 6.187595,-1.95226 7.542126,-4.78125 l 11.018331,0 c 1.335391,2.879637 4.241244,4.875 7.604201,4.875 4.627803,0 8.380138,-3.778019 8.380139,-8.4375 0,-4.368262 -3.316297,-7.973727 -7.542125,-8.40625 -0.311777,-0.08391 -0.623398,-0.125 -0.962165,-0.125 l -25.047305,0 c -0.10418,0 -0.20839,0.02295 -0.310375,0.03125 -0.230842,-0.01924 -0.447078,-0.03125 -0.682827,-0.03125 z"
         id="path156"
         style="opacity:0.64457834;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.99999994;marker:none;visibility:visible;display:inline;overflow:visible;filter:url(#filter6232);enable-background:accumulate"
         transform="matrix(0.4611328,0,0,0.5170404,0.00710351,0.5624522)" />
      <path
         d="M 11.260367,12.569752 C 13.101877,7.744465 5.0257249,10.915722 6.5945306,8.3976568 8.1363915,5.9228409 16.64974,11.081755 18.42354,8.4571511 20.227501,5.7879176 13.767405,6.7216849 16.527863,1.9704249"
         id="path158"
         sodipodi:nodetypes="czzc"
         style="fill:none;stroke:url(#linearGradient6086);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
      <path
         d="m 4.7472123,11.479718 c -2.244292,0 -4.0640187,2.017824 -4.06401881,4.506435 0,2.488609 1.81972681,4.506435 4.06401881,4.506434 1.6130849,0 3.0007252,-0.480194 3.6576164,-1.991146 l 5.3434323,0 c 0.647609,1.538003 2.056826,2.041218 3.68772,2.041218 2.244292,0 4.064018,-2.017824 4.064018,-4.506436 0,-2.33307 -1.608265,-4.258734 -3.657616,-4.489743 -0.151198,-0.04482 -0.302322,-0.06676 -0.46661,-0.06676 l -12.1468991,0 c -0.050523,0 -0.1010605,0.01226 -0.150519,0.01669 -0.1119487,-0.01028 -0.2168143,-0.01669 -0.3311426,-0.01669 z"
         id="path160"
         sodipodi:nodetypes="cssccsscccsc"
         style="color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#babdb6;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 5.356756,11.911935 c -2.0286688,0 -3.673563,1.611636 -3.6735631,3.599287 0,1.98765 1.1921491,3.974288 3.220818,3.974287 1.4581057,0 2.336502,-0.641749 2.724106,-2.039597 l 6.8997471,0 c 0.358895,1.294313 1.268495,2.116588 2.742698,2.116588 2.02867,0 3.229436,-2.023634 3.229437,-4.011286 0,-1.863422 -1.453751,-3.40145 -3.306207,-3.585956 -0.136673,-0.0358 -0.273276,-0.05332 -0.42178,-0.05332 l -10.9798706,0 c -0.045669,0 -0.091351,0.0098 -0.1360578,0.01333 -0.101193,-0.0082 -0.1959833,-0.01333 -0.2993276,-0.01333 z"
         id="path162"
         sodipodi:nodetypes="cssccsscccsc"
         style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-width:0.99999994;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 35,28.5 a 2,1.5 0 1 1 -4,0 2,1.5 0 1 1 4,0 z"
         id="path164"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#ef2929;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path166"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#3465a4;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path168"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#73d216;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path170"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#edd400;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 -0.3720759,0 -0.6718749,0.05234 -0.6718749,0.349999 l 0,0.662501 -0.8281251,0 c -0.372076,0 -0.671875,0.239838 -0.671875,0.537501 l 0,0.847916 c 0,0.29766 0.299799,0.537499 0.671875,0.537499 l 0.8281251,0 0,0.527083 c 0,0.297661 0.299799,0.5375 0.6718749,0.5375 l 0.6562501,0 c 0.3720759,0 0.6718748,-0.239839 0.6718748,-0.5375 l 0,-0.527083 0.8281248,0 c 0.3720759,0 0.6718753,-0.239839 0.6718753,-0.537499 l 0,-0.847916 c 0,-0.297663 -0.2997994,-0.537501 -0.6718753,-0.537501 l -0.8281248,0 0,-0.662501 C 6.4687499,13.552339 6.168951,13.5 5.7968751,13.5 l -0.6562501,0 z"
         id="path172"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="color:#000000;fill:#888a85;fill-opacity:1;fill-rule:nonzero;stroke:#2e3436;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;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 0,0 -0.03125,0.84375 0.5625,0.875 l 2.40625,0 L 10,31.0625 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path176"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 16.043802,29.3125 c 0,0 0.03125,0.84375 -0.5625,0.875 l -2.40625,0 0.03125,0.875 2.3125,-0.0625 c 0.8125,-0.0625 0.625,-1.6875 0.625,-1.6875 z"
           id="path178"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 10.091909,32.71875 c 0.118632,0 2.876841,0 2.876841,0 -0.03974,0.524614 0.07512,1.151034 -0.563505,1.28125 l -1.660857,0 c -0.725,-0.130002 -0.601014,-0.756978 -0.652479,-1.28125 z"
           id="path180"
           sodipodi:nodetypes="ccccc"
           style="color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      </g>
      <path
         d="m 9.0698422,13.501656 c -0.00929,0.0089 -0.062358,0.02975 -0.079606,0.02826 -0.042454,0 -0.051743,-0.05504 -0.057049,-0.132396 l 0,-0.07289 c 0,-0.03124 -0.00133,-0.06248 -0.00133,-0.0967 0,-0.06248 0.00133,-0.126445 0.00265,-0.191901 0.04909,0 0.067664,0 0.094199,-0.0015 0.010613,0 0.023881,-0.0015 0.033169,-0.003 0.026534,-0.006 0.037148,-0.02529 0.04113,-0.108594 l -0.1684973,0 c 0,-0.05653 0.00133,-0.104132 0.00265,-0.166612 l 0,-0.0238 c -0.079605,0.0059 -0.1140994,0.03421 -0.1247135,0.06843 -0.00133,0.04165 -0.00531,0.08777 -0.00663,0.129421 -0.00796,0.0045 -0.010614,0.0015 -0.021227,0.0045 -0.017247,0.006 -0.037149,0.0119 -0.05705,0.02678 -0.010614,0.0119 -0.01194,0.0119 -0.01194,0.05504 0.019901,0.01042 0.042456,0.01934 0.078277,0.02083 l 0,0.354047 c 0,0.121983 0.025209,0.254379 0.1578822,0.254379 0.042456,0 0.092872,-0.01339 0.1233862,-0.0357 0.00929,-0.0089 0.015922,-0.01785 0.018575,-0.02826 0.00133,-0.0119 0.00133,-0.02826 0.00133,-0.04165 0,-0.01339 -0.00133,-0.02529 -0.00265,-0.03421 l -0.022553,-0.0045 m 0.12494,-0.486443 c 0.00265,0.01636 0.00796,0.04165 0.026535,0.06397 0.019902,0 0.034496,-0.0045 0.049089,-0.0119 0.038477,-0.01636 0.09022,-0.03719 0.1326755,-0.03719 0.043782,0 0.049088,0.03273 0.049088,0.09521 l 0,0.07289 c -0.00796,-0.0015 -0.017248,-0.0015 -0.029188,-0.0015 -0.01194,0 -0.026534,0 -0.038475,0.0015 -0.083584,0.01041 -0.2321802,0.06248 -0.2321802,0.242478 0,0.138346 0.086238,0.200826 0.1764572,0.200826 0.037148,0 0.070317,-0.003 0.102159,-0.02083 0.00796,-0.006 0.022554,-0.01636 0.029188,-0.02231 0.017247,0.02083 0.049089,0.04314 0.079605,0.04314 0.041128,-0.0015 0.070318,-0.02232 0.082258,-0.04165 0,-0.0089 0.00133,-0.04314 0.00265,-0.06397 -0.041128,0.0089 -0.037148,-0.05802 -0.037148,-0.05802 0,-0.02678 0.00133,-0.09372 0.00133,-0.127934 0.00133,-0.05504 0.00133,-0.113057 0.00133,-0.168098 l 0,-0.06545 c 0,-0.129422 -0.034496,-0.203801 -0.1406341,-0.211239 -0.021228,-0.0015 -0.025209,-0.0015 -0.046436,-0.0015 -0.092872,0.003 -0.1764571,0.04463 -0.2056453,0.07438 -0.00265,0.0074 -0.00398,0.01488 -0.00398,0.01934 0,0.006 0,0.01041 0.00265,0.01934 l -0.00133,-0.0015 m 0.2547358,0.450742 c -0.00133,0.0089 -0.00265,0.01934 -0.00265,0.01785 l 0.00133,-0.0015 c -0.015922,0.0238 -0.055724,0.04314 -0.09022,0.04314 l -0.00796,0 c -0.033168,-0.003 -0.057049,-0.02826 -0.057049,-0.09669 0,-0.08777 0.049089,-0.116033 0.1061384,-0.127933 l -0.00133,0 c 0.013267,-0.0015 0.027861,-0.003 0.041129,-0.003 l 0.013266,0 0,0.09818 c 0,0.02975 0,0.05207 -0.00265,0.06992 m 0.5231289,-0.43884 c 0.067664,0 0.090218,0.03868 0.090218,0.145783 l 0,0.38975 c 0,0.02232 0.004,0.04463 0.01459,0.06694 0.08757,0 0.111447,-0.006 0.128695,-0.0238 -0.0013,-0.05802 -0.0027,-0.130909 -0.0027,-0.211237 l 0,-0.224629 c 0,-0.169585 -0.03184,-0.264791 -0.197685,-0.264791 -0.031841,0 -0.058376,0.006 -0.086238,0.01636 -0.023881,0.0089 -0.051743,0.0238 -0.078277,0.04463 -0.00796,-0.01785 -0.023881,-0.03124 -0.047764,-0.03124 -0.00265,0 -0.010614,0 -0.018574,0.003 -0.029187,0.01339 -0.046435,0.02529 -0.055722,0.03719 0.00929,0.02975 0.014594,0.06397 0.014594,0.11157 l 0,0.249915 c 0,0.113057 -0.00133,0.214214 -0.00265,0.293057 l 0.034496,0 c 0.058377,-0.0015 0.072971,-0.0015 0.091545,-0.01934 0.013268,-0.02083 0.01592,-0.03868 0.01592,-0.0714 l 0,-0.458178 -0.00398,0.0045 c 0.026534,-0.03273 0.06103,-0.05801 0.1034851,-0.05801 m 0.8065121,0.133882 c 0,-0.0476 -0.0093,-0.0833 -0.03051,-0.120495 0.01592,0.0015 0.02388,0.0015 0.04246,0.0015 0.03184,0 0.04776,-0.02826 0.04776,-0.06694 0,-0.02083 -0.0053,-0.03868 -0.01061,-0.05058 -0.01327,0 -0.04113,0.0015 -0.05838,0.003 l 0.0013,0 c -0.02786,0.0015 -0.06501,0.003 -0.0942,0.0045 -0.004,0.003 -0.0027,0.0045 0,0.0059 -0.03052,-0.01636 -0.07165,-0.03421 -0.118079,-0.03421 -0.136654,0 -0.234835,0.09521 -0.234835,0.263305 0,0.09223 0.02786,0.162148 0.08491,0.202312 -0.0053,0.006 -0.004,0.0074 -0.01061,0.01339 -0.0199,0.02083 -0.04511,0.04463 -0.06368,0.06546 -0.01061,0.01488 -0.01725,0.02529 -0.01725,0.0357 0.0013,0.04463 0.03449,0.08479 0.0995,0.107107 0,0 0.0398,0.01488 0.100832,0.02083 0.008,0 0.01725,0.0015 0.02521,0.0015 0.03052,0.0015 0.0597,0.003 0.08889,0.0074 0.04511,0.006 0.05837,0.03124 0.06899,0.06248 0,0.0045 0,0.01636 0,0.02083 0.0013,0.06099 -0.06634,0.154711 -0.153902,0.181487 -0.02388,0.0045 -0.06236,0.01339 -0.08889,0.01339 -0.01725,0 -0.03052,-0.003 -0.03317,-0.01488 -0.0053,-0.02678 0.04113,-0.07884 0.08358,-0.119006 0.02388,-0.02529 0.01592,-0.07587 -0.01725,-0.09521 -0.08358,0.06248 -0.217586,0.190412 -0.204319,0.264791 0.01327,0.04909 0.0743,0.06545 0.140634,0.06545 0.04245,0 0.08889,-0.0059 0.123387,-0.01339 0.164517,-0.04314 0.28525,-0.191899 0.28525,-0.322808 -0.004,-0.08777 -0.06103,-0.139833 -0.143288,-0.157684 -0.01194,-0.003 -0.03051,-0.0045 -0.04776,-0.006 -0.02123,-0.0015 -0.04246,-0.0045 -0.06369,-0.006 l -0.05174,-0.0045 c -0.04378,-0.0045 -0.06766,-0.01785 -0.06766,-0.03124 0,-0.006 0.0013,-0.01488 0.0066,-0.02083 l 0.02654,-0.02975 c 0.01592,0.003 0.03184,0.0045 0.05572,0.0045 0.141962,0 0.228199,-0.09223 0.228199,-0.251404 M 10.543,13.003313 c 0.0597,0 0.09287,0.05355 0.100833,0.144296 0.0066,0.09372 -0.01725,0.163637 -0.07695,0.163637 -0.06501,0 -0.09685,-0.05802 -0.103485,-0.151736 -0.0093,-0.10562 0.02786,-0.156197 0.0796,-0.156197 m 0.624419,0.517683 c -0.08226,0 -0.137981,-0.0476 -0.140635,-0.196362 0.02123,0.0015 0.02521,0 0.04644,0 0.06236,0 0.13002,-0.003 0.171149,-0.0089 0.03848,-0.006 0.08756,-0.02529 0.103486,-0.04017 0.004,-0.02232 0.0066,-0.05504 0.0066,-0.08777 0,-0.02529 -0.0013,-0.04909 -0.0027,-0.0714 -0.01061,-0.129422 -0.07563,-0.212727 -0.201663,-0.212727 -0.152577,0 -0.264023,0.107107 -0.264023,0.3957 0,0.121983 0.02388,0.215703 0.07297,0.272231 0.05307,0.0595 0.120733,0.07289 0.187069,0.07289 0.04246,0 0.08358,-0.0089 0.103487,-0.01488 l -0.0013,0 c 0.04113,-0.0119 0.08491,-0.04612 0.08624,-0.07736 -0.0013,-0.01636 -0.0053,-0.04612 -0.01327,-0.07438 -0.05174,0.03124 -0.102158,0.04314 -0.153902,0.04314 m -0.03052,-0.507269 c 0.05042,0 0.0743,0.03868 0.08093,0.117519 l 0,0.01487 c 0,0.0059 0.0013,0.01041 0.0013,0.01636 0,0.01785 -0.0027,0.03421 -0.0053,0.04463 -0.0066,0.0045 -0.01327,0.0045 -0.0199,0.0059 -0.02653,0.003 -0.08093,0.0045 -0.127368,0.0045 l -0.03715,0 c 0.008,-0.133884 0.0544,-0.196363 0.102158,-0.2038 l 0.0053,0 m 0.564135,0.01339 c 0.06766,0 0.09022,0.03868 0.09022,0.145783 l 0,0.38975 c 0,0.02232 0.004,0.04463 0.01459,0.06694 0.08757,0 0.111448,-0.006 0.128695,-0.0238 -0.0013,-0.05802 -0.0027,-0.130909 -0.0027,-0.211237 l 0,-0.224629 c 0,-0.169585 -0.03184,-0.264791 -0.197683,-0.264791 -0.03184,0 -0.05838,0.006 -0.08624,0.01636 -0.02388,0.0089 -0.05174,0.0238 -0.07828,0.04463 -0.008,-0.01785 -0.02388,-0.03124 -0.04776,-0.03124 -0.0027,0 -0.01061,0 -0.01858,0.003 -0.02919,0.01339 -0.04643,0.02529 -0.05572,0.03719 0.0093,0.02975 0.01459,0.06397 0.01459,0.11157 l 0,0.249915 c 0,0.113057 -0.0013,0.214214 -0.0027,0.293057 l 0.0345,0 c 0.05838,-0.0015 0.07297,-0.0015 0.09154,-0.01934 0.01327,-0.02083 0.01592,-0.03868 0.01592,-0.0714 l 0,-0.458178 -0.004,0.0045 c 0.02653,-0.03273 0.06103,-0.05801 0.103486,-0.05801 m 0.680473,0.474541 c -0.0093,0.0089 -0.06236,0.02975 -0.0796,0.02826 -0.04246,0 -0.05174,-0.05504 -0.05705,-0.132396 l 0,-0.07289 c 0,-0.03124 -0.0013,-0.06248 -0.0013,-0.0967 0,-0.06248 0.0013,-0.126445 0.0027,-0.191901 0.04909,0 0.06766,0 0.0942,-0.0015 0.01061,0 0.02388,-0.0015 0.03317,-0.003 0.02653,-0.006 0.03715,-0.02529 0.04113,-0.108594 l -0.168496,0 c 0,-0.05653 0.0013,-0.104132 0.0027,-0.166612 l 0,-0.0238 c -0.0796,0.0059 -0.114099,0.03421 -0.124712,0.06843 -0.0013,0.04165 -0.0053,0.08777 -0.0066,0.129421 -0.008,0.0045 -0.01061,0.0015 -0.02123,0.0045 -0.01725,0.006 -0.03715,0.0119 -0.05705,0.02678 -0.01061,0.0119 -0.01194,0.0119 -0.01194,0.05504 0.0199,0.01042 0.04246,0.01934 0.07828,0.02083 l 0,0.354047 c 0,0.121983 0.02521,0.254379 0.157881,0.254379 0.04245,0 0.09287,-0.01339 0.123386,-0.0357 0.0093,-0.0089 0.01592,-0.01785 0.01858,-0.02826 0.0013,-0.0119 0.0013,-0.02826 0.0013,-0.04165 0,-0.01339 -0.0013,-0.02529 -0.0027,-0.03421 l -0.02255,-0.0045 M 13,13.268104 c 0,-0.239503 -0.08756,-0.364461 -0.261368,-0.364461 -0.157882,0 -0.269329,0.117521 -0.269329,0.373387 0,0.260327 0.09553,0.368923 0.26535,0.368923 C 12.887228,13.645953 13,13.518021 13,13.268104 m -0.383428,0.003 c 0,-0.184461 0.05572,-0.254379 0.118081,-0.254379 0.07297,0 0.119406,0.06992 0.119406,0.255866 0,0.196364 -0.0544,0.263305 -0.116753,0.263305 -0.06899,0 -0.120734,-0.06694 -0.120734,-0.264792"
         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;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Qlassik Bold" />
    </g>
    <g
       id="g16"
       style="display:inline;enable-background:new"
       transform="translate(303,219)">
      <path
         d="M 8.2434789,9.5297977 C 9.5597418,5.4043821 3.4700941,6.1880048 4.99685,3.1344063 6.5408735,0.04627184 12.537603,7.5505167 13.805469,5.3065917 15.094892,3.0245104 10.565774,2.4970165 12.008546,0.46782286"
         id="path210"
         sodipodi:nodetypes="czzc"
         style="fill:none;stroke:url(#linearGradient6086);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" />
      <path
         d="m 3.4284167,8.7523931 c -1.6171732,0 -2.9284167,1.5023249 -2.92841678,3.3551639 0,1.852838 1.31124358,3.355164 2.92841678,3.355163 1.1623434,0 2.1622376,-0.357517 2.6355747,-1.482463 l 3.8503259,0 C 10.380966,15.125344 11.396408,15.5 12.571584,15.5 14.188757,15.5 15.5,13.997675 15.5,12.144836 c 0,-1.737034 -1.15887,-3.1707443 -2.635574,-3.3427368 -0.10895,-0.033369 -0.217845,-0.049706 -0.336227,-0.049706 l -8.7527106,0 c -0.036405,0 -0.072821,0.00913 -0.1084597,0.012427 -0.080667,-0.00765 -0.1562302,-0.012427 -0.238612,-0.012427 z"
         id="path212"
         sodipodi:nodetypes="cssccsscccsc"
         style="color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:nonzero;stroke:#888a85;stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 3.9558475,9.0606473 c -1.4125504,0 -2.5578807,1.1494087 -2.5578808,2.5669887 0,1.41758 0.8300865,2.834437 2.242637,2.834437 1.0152706,0 1.6268929,-0.457692 1.8967793,-1.454628 l 4.804254,0 c 0.249897,0.923096 0.883246,1.509537 1.909725,1.509537 1.412551,0 2.248637,-1.443243 2.248638,-2.860824 0,-1.328981 -1.012238,-2.4258926 -2.302093,-2.5574811 -0.09516,-0.025529 -0.19028,-0.03803 -0.293682,-0.03803 l -7.6452212,0 c -0.031799,0 -0.063607,0.00698 -0.094736,0.00951 -0.07046,-0.00585 -0.136462,-0.00951 -0.2084201,-0.00951 z"
         id="path214"
         sodipodi:nodetypes="cssccsscccsc"
         style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      <path
         d="m 35,28.5 a 2,1.5 0 1 1 -4,0 2,1.5 0 1 1 4,0 z"
         id="path216"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#cc0000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path218"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#204a87;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path220"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#4e9a06;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 -4,0 2,1.5 0 1 1 4,0 z"
         id="path222"
         sodipodi:cx="33"
         sodipodi:cy="28.5"
         sodipodi:rx="2"
         sodipodi:ry="1.5"
         sodipodi:type="arc"
         style="color:#000000;fill:#c4a000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:2.04797554;marker:none;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 0,-0.684376 -0.496875,0 C 2.1798794,12.053125 2,11.873246 2,11.649998 l 0,-0.448437 c 0,-0.223245 0.1798794,-0.403124 0.403125,-0.403124 l 0.496875,0 0,-0.395313 C 2.9,10.179879 3.0798794,10 3.303125,10 l 0.3937501,0 C 3.9201206,10 4.1,10.179879 4.1,10.403124 l 0,0.395313 0.4968748,0 C 4.8201204,10.798437 5,10.978316 5,11.201561 l 0,0.448437 c 0,0.223248 -0.1798796,0.403127 -0.4031252,0.403127 l -0.4968748,0 0,0.684376 C 4.1,12.960745 3.9201206,13 3.6968751,13 L 3.303125,13 z"
         id="path224"
         sodipodi:nodetypes="ccccccccccccccccccccc"
         style="color:#000000;fill:#555753;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;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 0,0 -0.03125,0.84375 0.5625,0.875 l 2.40625,0 L 10,31.0625 7.6875,31 C 6.875,30.9375 7.0625,29.3125 7.0625,29.3125 z"
           id="path228"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5790);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 16.043802,29.3125 c 0,0 0.03125,0.84375 -0.5625,0.875 l -2.40625,0 0.03125,0.875 2.3125,-0.0625 c 0.8125,-0.0625 0.625,-1.6875 0.625,-1.6875 z"
           id="path230"
           sodipodi:nodetypes="cccccc"
           style="color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
        <path
           d="m 10.091909,32.71875 c 0.118632,0 2.876841,0 2.876841,0 -0.03974,0.524614 0.07512,1.151034 -0.563505,1.28125 l -1.660857,0 c -0.725,-0.130002 -0.601014,-0.756978 -0.652479,-1.28125 z"
           id="path232"
           sodipodi:nodetypes="ccccc"
           style="color:#000000;fill:url(#linearGradient5810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" />
      </g>
      <path
         d="m 6.2883039,10.270467 c -0.00756,0.0072 -0.050751,0.02416 -0.064788,0.02295 -0.034552,0 -0.042111,-0.0447 -0.04643,-0.107514 l 0,-0.05919 c 0,-0.02537 -0.00108,-0.05074 -0.00108,-0.07852 0,-0.050737 0.00108,-0.1026815 0.00216,-0.1558361 0.039953,0 0.05507,0 0.076665,-0.00121 0.00864,0 0.019436,-0.00121 0.026995,-0.00242 0.021595,-0.00483 0.030233,-0.020536 0.033474,-0.088186 l -0.1371341,0 c 0,-0.045905 0.00108,-0.084562 0.00216,-0.1352999 l 0,-0.019328 c -0.064787,0.00483 -0.092862,0.027785 -0.1014999,0.055569 -0.00108,0.033826 -0.00432,0.071274 -0.0054,0.1050984 -0.00648,0.00362 -0.00864,0.00121 -0.017276,0.00362 -0.014037,0.00483 -0.030234,0.00966 -0.046431,0.021746 C 6.0010791,9.8416186 6,9.8416186 6,9.8766512 c 0.016197,0.00846 0.034553,0.015704 0.063707,0.016913 l 0,0.2875089 c 0,0.09906 0.020517,0.206574 0.1284948,0.206574 0.034553,0 0.075585,-0.01087 0.1004198,-0.02899 0.00756,-0.0072 0.012958,-0.0145 0.015118,-0.02295 0.00108,-0.0097 0.00108,-0.02295 0.00108,-0.03383 0,-0.01087 -0.00108,-0.02054 -0.00216,-0.02778 l -0.018355,-0.0036 M 6.3899882,9.8754436 c 0.00216,0.013289 0.00648,0.033824 0.021596,0.051945 0.016198,0 0.028075,-0.00362 0.039952,-0.00966 0.031315,-0.013289 0.073427,-0.030202 0.10798,-0.030202 0.035632,0 0.039951,0.026577 0.039951,0.077315 l 0,0.059193 c -0.00648,-0.0012 -0.014037,-0.0012 -0.023755,-0.0012 -0.00972,0 -0.021595,0 -0.031313,0.0012 -0.068026,0.0085 -0.1889634,0.05074 -0.1889634,0.196908 0,0.112346 0.070186,0.163083 0.1436123,0.163083 0.030233,0 0.057228,-0.0024 0.083144,-0.01691 0.00648,-0.0048 0.018356,-0.01329 0.023755,-0.01812 0.014037,0.01691 0.039952,0.03503 0.064787,0.03503 0.033473,-0.0012 0.057229,-0.01812 0.066947,-0.03382 0,-0.0072 0.00108,-0.03503 0.00216,-0.05195 -0.033473,0.0072 -0.030234,-0.04711 -0.030234,-0.04711 0,-0.02174 0.00108,-0.07611 0.00108,-0.103891 0.00108,-0.0447 0.00108,-0.09181 0.00108,-0.136506 l 0,-0.053153 c 0,-0.1050992 -0.028075,-0.1654999 -0.1144572,-0.1715401 -0.017277,-0.00121 -0.020517,-0.00121 -0.037793,-0.00121 -0.075585,0.00242 -0.1436123,0.036241 -0.1673676,0.060402 -0.00216,0.00604 -0.00324,0.01208 -0.00324,0.015704 0,0.00483 0,0.00846 0.00216,0.015704 l -0.00108,-0.00121 m 0.2073207,0.3660324 c -0.00108,0.0072 -0.00216,0.0157 -0.00216,0.0145 l 0.00108,-0.0012 c -0.012958,0.01933 -0.045352,0.03503 -0.073427,0.03503 l -0.00648,0 c -0.026994,-0.0024 -0.04643,-0.02295 -0.04643,-0.07852 0,-0.07127 0.039952,-0.09423 0.086382,-0.10389 l -0.00108,0 c 0.010798,-0.0012 0.022675,-0.0024 0.033474,-0.0024 l 0.010797,0 0,0.07973 c 0,0.02416 0,0.04228 -0.00216,0.05678 M 7.0230654,9.8851088 c 0.05507,0 0.073425,0.031408 0.073425,0.1183852 l 0,0.316503 c 0,0.01812 0.00324,0.03624 0.011878,0.05436 0.071266,0 0.090703,-0.0048 0.1047404,-0.01933 -0.00108,-0.04711 -0.00216,-0.106306 -0.00216,-0.171538 l 0,-0.182413 c 0,-0.1377147 -0.025914,-0.2150283 -0.160889,-0.2150283 -0.025914,0 -0.047511,0.00483 -0.070186,0.01329 -0.019436,0.00725 -0.042111,0.019327 -0.063706,0.036239 -0.00648,-0.014496 -0.019436,-0.025369 -0.038874,-0.025369 -0.00216,0 -0.00864,0 -0.015117,0.00242 -0.023754,0.010873 -0.037792,0.020538 -0.045351,0.030202 0.00756,0.024161 0.011878,0.051945 0.011878,0.090602 l 0,0.2029468 c 0,0.09181 -0.00108,0.173956 -0.00216,0.237983 l 0.028075,0 c 0.047511,-0.0012 0.059389,-0.0012 0.074505,-0.01571 0.010799,-0.01691 0.012957,-0.03141 0.012957,-0.05799 l 0,-0.3720716 -0.00324,0.00362 c 0.021595,-0.026576 0.04967,-0.047111 0.084223,-0.047111 m 0.6563922,0.1087211 c 0,-0.038657 -0.00756,-0.067649 -0.024833,-0.09785 0.012957,0.00121 0.019435,0.00121 0.034553,0.00121 0.025913,0 0.038872,-0.022952 0.038872,-0.054362 0,-0.016912 -0.00432,-0.031408 -0.00864,-0.041074 -0.010798,0 -0.033474,0.00121 -0.047511,0.00242 l 0.00108,0 c -0.022675,0.00121 -0.052909,0.00242 -0.076664,0.00362 -0.00324,0.00241 -0.00216,0.00362 0,0.00483 -0.024835,-0.013286 -0.058309,-0.027784 -0.0961,-0.027784 -0.111218,0 -0.1911241,0.077315 -0.1911241,0.2138211 0,0.074896 0.022677,0.1316745 0.069108,0.1642905 -0.00432,0.0048 -0.00324,0.006 -0.00864,0.01087 -0.016198,0.01691 -0.036714,0.03624 -0.05183,0.05315 -0.00864,0.01208 -0.014037,0.02054 -0.014037,0.02899 0.00108,0.03624 0.028074,0.06886 0.080984,0.08698 0,0 0.032394,0.01208 0.082064,0.01691 0.00648,0 0.014039,0.0012 0.020516,0.0012 0.024835,0.0012 0.048591,0.0024 0.072347,0.006 0.036712,0.0048 0.047509,0.02537 0.056148,0.05074 0,0.0036 0,0.01329 0,0.01691 0.00108,0.04953 -0.053989,0.125635 -0.1252555,0.14738 -0.019436,0.0036 -0.05075,0.01087 -0.072345,0.01087 -0.014038,0 -0.024837,-0.0024 -0.026995,-0.01208 -0.00432,-0.02175 0.033473,-0.06403 0.068026,-0.09664 0.019438,-0.02054 0.012958,-0.06161 -0.014037,-0.07731 -0.068027,0.05074 -0.1770856,0.154627 -0.1662881,0.215027 0.010798,0.03987 0.060468,0.05315 0.1144572,0.05315 0.034553,0 0.072347,-0.0048 0.1004204,-0.01087 0.1338946,-0.03503 0.2321551,-0.155835 0.2321551,-0.262142 -0.00324,-0.07127 -0.04967,-0.113553 -0.1166172,-0.128049 -0.00972,-0.0024 -0.024834,-0.0036 -0.038872,-0.0048 -0.017277,-0.0012 -0.034553,-0.0036 -0.051831,-0.0048 l -0.042112,-0.0036 c -0.035633,-0.0036 -0.055068,-0.0145 -0.055068,-0.02537 0,-0.0048 0.00108,-0.01208 0.0054,-0.01691 l 0.021597,-0.02416 c 0.012957,0.0024 0.025914,0.0036 0.04535,0.0036 0.1155379,0 0.1857232,-0.0749 0.1857232,-0.2041571 M 7.487256,9.8657801 c 0.04859,0 0.075586,0.043488 0.082064,0.1171779 0.0054,0.076106 -0.014038,0.132884 -0.062628,0.132884 -0.05291,0 -0.078826,-0.04711 -0.084223,-0.1232197 -0.00756,-0.08577 0.022675,-0.1268422 0.064786,-0.1268422 m 0.508193,0.4203929 c -0.066947,0 -0.112298,-0.03866 -0.1144581,-0.159459 0.017276,0.0012 0.020516,0 0.037794,0 0.050749,0 0.1058188,-0.0024 0.1392922,-0.0072 0.031313,-0.0048 0.071266,-0.02054 0.084224,-0.03262 0.00324,-0.01812 0.0054,-0.0447 0.0054,-0.07127 0,-0.020537 -0.00108,-0.039865 -0.00216,-0.057985 -0.00864,-0.1050992 -0.061549,-0.1727484 -0.1641266,-0.1727484 -0.1241771,0 -0.2148792,0.086978 -0.2148792,0.3213346 0,0.09906 0.019438,0.175165 0.059389,0.221069 0.043192,0.04832 0.09826,0.0592 0.152249,0.0592 0.034554,0 0.068027,-0.0073 0.084225,-0.01208 l -0.00108,0 c 0.033473,-0.0097 0.069107,-0.03745 0.070187,-0.06282 -0.00108,-0.01329 -0.00432,-0.03745 -0.010798,-0.0604 -0.042112,0.02537 -0.083143,0.03503 -0.1252555,0.03503 M 7.970613,9.8742369 c 0.041033,0 0.060469,0.031408 0.065869,0.095433 l 0,0.012079 c 0,0.00483 0.00108,0.00846 0.00108,0.013289 0,0.014497 -0.00216,0.027785 -0.00432,0.036242 -0.0054,0.0036 -0.010797,0.0036 -0.016196,0.0048 -0.021596,0.0024 -0.065868,0.0036 -0.1036604,0.0036 l -0.030234,0 c 0.00648,-0.1087227 0.044272,-0.1594598 0.083143,-0.1654991 l 0.00432,0 m 0.45913,0.010872 c 0.055069,0 0.073427,0.031408 0.073427,0.1183852 l 0,0.316503 c 0,0.01812 0.00324,0.03624 0.011875,0.05436 0.071268,0 0.090704,-0.0048 0.1047403,-0.01933 -0.00108,-0.04711 -0.00216,-0.106306 -0.00216,-0.171538 l 0,-0.182413 c 0,-0.1377147 -0.025914,-0.2150283 -0.1608874,-0.2150283 -0.025916,0 -0.047511,0.00483 -0.070186,0.01329 -0.019437,0.00725 -0.042113,0.019327 -0.063708,0.036239 -0.00648,-0.014496 -0.019438,-0.025369 -0.038873,-0.025369 -0.00216,0 -0.00864,0 -0.015118,0.00242 -0.023754,0.010873 -0.037791,0.020538 -0.045349,0.030202 0.00756,0.024161 0.011877,0.051945 0.011877,0.090602 l 0,0.2029468 c 0,0.09181 -0.00108,0.173956 -0.00216,0.237983 l 0.028075,0 c 0.047511,-0.0012 0.059387,-0.0012 0.074505,-0.01571 0.010798,-0.01691 0.012958,-0.03141 0.012958,-0.05799 l 0,-0.3720716 -0.00324,0.00362 c 0.021596,-0.026576 0.049671,-0.047111 0.084224,-0.047111 m 0.5538133,0.3853582 c -0.00756,0.0072 -0.050749,0.02416 -0.064787,0.02295 -0.034553,0 -0.042112,-0.0447 -0.046432,-0.107514 l 0,-0.05919 c 0,-0.02537 -0.00108,-0.05074 -0.00108,-0.07852 0,-0.050737 0.00108,-0.1026815 0.00216,-0.1558361 0.039951,0 0.055069,0 0.076665,-0.00121 0.00864,0 0.019436,-0.00121 0.026994,-0.00242 0.021595,-0.00483 0.030233,-0.020536 0.033473,-0.088186 l -0.137133,0 c 0,-0.045905 0.00108,-0.084562 0.00216,-0.1352999 l 0,-0.019328 c -0.064786,0.00483 -0.092861,0.027785 -0.1014988,0.055569 -0.00108,0.033826 -0.00432,0.071274 -0.0054,0.1050984 -0.00648,0.00362 -0.00864,0.00121 -0.017276,0.00362 -0.014037,0.00483 -0.030234,0.00966 -0.04643,0.021746 -0.00864,0.00966 -0.00972,0.00966 -0.00972,0.044695 0.016196,0.00846 0.034553,0.015704 0.063708,0.016913 l 0,0.2875089 c 0,0.09906 0.020515,0.206574 0.1284939,0.206574 0.034553,0 0.075585,-0.01087 0.1004196,-0.02899 0.00756,-0.0072 0.012957,-0.0145 0.015119,-0.02295 0.00108,-0.0097 0.00108,-0.02295 0.00108,-0.03383 0,-0.01087 -0.00108,-0.02054 -0.00216,-0.02778 l -0.018356,-0.0036 m 0.5033668,-0.189659 c 0,-0.1944925 -0.071265,-0.2959666 -0.2127184,-0.2959666 -0.1284947,0 -0.2191975,0.095435 -0.2191975,0.3032146 0,0.211403 0.077746,0.299591 0.2159591,0.299591 0.1241755,0 0.2159568,-0.103891 0.2159568,-0.306839 m -0.3120588,0.0024 c 0,-0.1497948 0.045352,-0.2065728 0.096102,-0.2065728 0.059388,0 0.097181,0.056778 0.097181,0.2077808 0,0.15946 -0.044271,0.21382 -0.095021,0.21382 -0.056149,0 -0.098261,-0.05436 -0.098261,-0.215028"
         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;marker:none;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>