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
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<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"
version="1.1"
id="svg1901"
height="231"
width="561">
<defs
id="defs1903">
<font
id="font3118"
horiz-adv-x="1024">
<font-face
font-family="SVGFont 1"
id="font-face3120"
units-per-em="1024" />
<missing-glyph
id="missing-glyph3122"
d="M0,0h1000v1024h-1000z" />
</font>
</defs>
<metadata
id="metadata1906">
<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 />
</cc:Work>
</rdf:RDF>
</metadata>
<g
transform="translate(-124.5,-526.86145)"
id="layer1">
<path
id="rect3115"
d="m 130,224.09448 550,0 0,220 -550,0 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:0.13524589;marker:none;enable-background:accumulate"
transform="translate(0,308.2677)" />
<path
id="path3003"
d="m 185,727.36221 50,0 350,0"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
<g
transform="translate(160,2.7294197e-5)"
id="g3238">
<g
id="g3908-4-9"
transform="translate(50.125,-69.875)">
<path
id="rect3806-4-2-2"
d="m 16.740473,657.23718 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86548 l 0,36.26908 c 0,1.03347 -0.832001,1.86547 -1.865473,1.86547 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86547 l 0,-36.26908 c 0,-1.03348 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-7-2"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(0.74636894,298.81113)">
<path
id="path149"
style=""
d="m 17.025016,365.12887 c 0,2.398 1.166,4.246 4.004,4.246 2.706,0 4.004,-2.013 4.004,-4.246 0,-2.321 -1.408,-4.048 -4.004,-4.048 -2.596,0 -4.004,1.727 -4.004,4.048 z m 1.804,0 c 0,-1.518 0.726,-2.596 2.2,-2.596 1.474,0 2.2,1.078 2.2,2.596 0,1.518 -0.561,2.794 -2.2,2.794 -1.694,0 -2.2,-1.276 -2.2,-2.794 z" />
<path
id="path151"
style=""
d="m 26.159484,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.496,0.418 -1.947,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.22,-0.803 -0.726,-0.803 -0.506,0 -0.726,0.319 -0.726,0.803 l 0,4.433 z" />
<path
id="path153"
style=""
d="m 26.540016,372.35587 c 0.044,-0.165 0.088,-0.341 0.088,-0.517 0,-0.55 -0.451,-0.814 -0.869,-0.814 -0.429,0 -0.704,0.209 -0.814,0.737 l -1.078,5.258 -0.022,0 -1.199,-5.137 c -0.11,-0.495 -0.264,-0.858 -1.023,-0.858 -0.671,0 -0.847,0.231 -0.946,0.671 l -1.232,5.324 -0.022,0 -1.067,-5.258 c -0.11,-0.528 -0.385,-0.737 -0.847,-0.737 -0.418,0 -0.869,0.264 -0.869,0.814 0,0.176 0.044,0.352 0.088,0.517 l 1.551,6.017 c 0.165,0.627 0.429,0.858 1.089,0.858 0.682,0 0.935,-0.286 1.078,-0.891 l 1.177,-4.829 0.022,0 1.177,4.829 c 0.154,0.605 0.396,0.891 1.078,0.891 0.66,0 0.924,-0.231 1.089,-0.858 l 1.551,-6.017 z" />
<path
id="path155"
style=""
d="m 27.450609,378.42787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-4.433 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,4.433 z m -0.033,-6.611 c 0,0.462 0.374,0.836 0.836,0.836 0.462,0 0.836,-0.374 0.836,-0.836 0,-0.462 -0.374,-0.836 -0.836,-0.836 -0.462,0 -0.836,0.374 -0.836,0.836 z" />
<path
id="path157"
style=""
d="m 30.413391,378.42787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.496,0.418 -1.947,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.22,-0.803 -0.726,-0.803 -0.506,0 -0.726,0.319 -0.726,0.803 l 0,4.433 z" />
<path
id="path159"
style=""
d="m 42.583,371.82787 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,2.178 -0.022,0 c -0.319,-0.517 -0.869,-0.814 -1.584,-0.814 -1.694,0 -2.475,1.441 -2.475,2.981 0,2.079 1.177,3.058 2.519,3.058 0.781,0 1.43,-0.33 1.694,-1.012 l 0.022,0 0,0.253 c 0,0.495 0.253,0.759 0.726,0.759 0.495,0 0.726,-0.264 0.726,-0.759 l 0,-6.644 z m -4.081,4.4 c 0,-0.748 0.253,-1.782 1.276,-1.782 0.979,-0.011 1.287,0.957 1.287,1.782 0,0.913 -0.352,1.749 -1.287,1.749 -0.858,-0.022 -1.276,-0.803 -1.276,-1.749 z" />
<path
id="path161"
style=""
d="m 45.226609,376.20587 c 0,-1.045 0.429,-1.826 1.364,-1.826 0.935,0 1.364,0.781 1.364,1.826 0,0.979 -0.407,1.837 -1.364,1.837 -0.957,0 -1.364,-0.858 -1.364,-1.837 z m -1.606,0 c 0,1.606 0.781,3.025 2.97,3.025 2.189,0 2.97,-1.419 2.97,-3.025 0,-1.694 -1.034,-3.014 -2.97,-3.014 -1.936,0 -2.97,1.32 -2.97,3.014 z" />
<path
id="path163"
style=""
d="m 51.314766,378.36187 c 0.231,0.759 0.407,0.869 1.045,0.869 0.671,0 0.836,-0.198 1.001,-0.836 l 0.792,-3.157 0.022,0 0.792,3.157 c 0.165,0.638 0.33,0.836 1.001,0.836 0.638,0 0.814,-0.11 1.045,-0.869 l 1.177,-3.828 c 0.055,-0.176 0.11,-0.352 0.11,-0.594 0,-0.418 -0.374,-0.748 -0.781,-0.748 -0.594,0 -0.693,0.319 -0.792,0.781 l -0.792,3.52 -0.022,0 -0.693,-3.201 c -0.143,-0.638 -0.297,-1.122 -1.056,-1.1 -0.748,-0.022 -0.88,0.473 -1.012,1.1 l -0.682,3.201 -0.022,0 -0.847,-3.52 c -0.11,-0.462 -0.198,-0.781 -0.792,-0.781 -0.407,0 -0.781,0.33 -0.781,0.748 0,0.242 0.055,0.418 0.11,0.594 l 1.177,3.828 z" />
<path
id="path165"
style=""
d="m 58.820547,374.98487 c 0,1.078 0.726,1.463 1.661,1.694 l 0.946,0.231 c 0.572,0.143 0.924,0.209 0.924,0.616 0,0.33 -0.363,0.583 -0.935,0.583 -1.188,0 -1.254,-0.99 -1.947,-0.99 -0.451,0 -0.649,0.319 -0.649,0.671 0,0.792 1.21,1.441 2.662,1.441 1.21,0 2.475,-0.605 2.475,-1.914 0,-1.122 -1.089,-1.507 -2.002,-1.716 l -0.671,-0.154 c -0.495,-0.11 -0.858,-0.198 -0.858,-0.572 0,-0.341 0.363,-0.495 0.924,-0.495 1.012,0 1.034,0.737 1.661,0.737 0.418,0 0.671,-0.33 0.671,-0.704 0,-0.737 -1.232,-1.221 -2.453,-1.221 -1.111,0 -2.409,0.484 -2.409,1.793 z" />
</g>
</g>
<g
id="g3908-4"
transform="translate(50.125,-49.875)">
<path
id="rect3806-4-2"
d="m 16.740473,662.23718 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86548 l 0,31.26908 c 0,1.03347 -0.832001,1.86547 -1.865473,1.86547 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86547 l 0,-31.26908 c 0,-1.03348 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-7"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(0.73921187,303.05351)">
<path
id="path169"
style="font-size:11px"
d="m 17.025016,365.12887 c 0,2.398 1.166,4.246 4.004,4.246 2.706,0 4.004,-2.013 4.004,-4.246 0,-2.321 -1.408,-4.048 -4.004,-4.048 -2.596,0 -4.004,1.727 -4.004,4.048 z m 1.804,0 c 0,-1.518 0.726,-2.596 2.2,-2.596 1.474,0 2.2,1.078 2.2,2.596 0,1.518 -0.561,2.794 -2.2,2.794 -1.694,0 -2.2,-1.276 -2.2,-2.794 z" />
<path
id="path171"
style="font-size:11px"
d="m 26.159484,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.496,0.418 -1.947,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.22,-0.803 -0.726,-0.803 -0.506,0 -0.726,0.319 -0.726,0.803 l 0,4.433 z" />
<path
id="path173"
style="font-size:11px"
d="m 17.025016,375.02887 c 0,2.398 1.166,4.246 4.004,4.246 2.706,0 4.004,-2.013 4.004,-4.246 0,-2.321 -1.408,-4.048 -4.004,-4.048 -2.596,0 -4.004,1.727 -4.004,4.048 z m 1.804,0 c 0,-1.518 0.726,-2.596 2.2,-2.596 1.474,0 2.2,1.078 2.2,2.596 0,1.518 -0.561,2.794 -2.2,2.794 -1.694,0 -2.2,-1.276 -2.2,-2.794 z" />
<path
id="path175"
style="font-size:11px"
d="m 28.997484,374.15987 c -0.572,-0.132 -1.232,-0.308 -1.232,-0.858 0,-0.55 0.462,-0.935 1.298,-0.935 1.683,0 1.529,1.177 2.365,1.177 0.44,0 0.825,-0.264 0.825,-0.715 0,-1.056 -1.661,-1.848 -3.069,-1.848 -1.529,0 -3.157,0.66 -3.157,2.42 0,0.847 0.297,1.749 1.936,2.167 l 2.035,0.517 c 0.616,0.154 0.77,0.506 0.77,0.825 0,0.528 -0.517,1.045 -1.452,1.045 -1.826,0 -1.573,-1.43 -2.552,-1.43 -0.44,0 -0.759,0.308 -0.759,0.748 0,0.858 1.023,2.002 3.311,2.002 2.178,0 3.256,-1.067 3.256,-2.497 0,-0.924 -0.418,-1.903 -2.068,-2.277 l -1.507,-0.341 z" />
<path
id="path177"
style="font-size:11px"
d="m 36.798547,377.76787 c -0.209,0.308 -0.242,0.506 -0.242,0.693 0,0.44 0.341,0.77 0.869,0.77 0.275,0 0.55,-0.099 0.704,-0.352 l 1.562,-2.497 1.452,2.431 c 0.209,0.352 0.462,0.418 0.759,0.418 0.506,0 0.924,-0.308 0.924,-0.891 0,-0.209 -0.11,-0.352 -0.297,-0.638 l -1.793,-2.695 1.837,-2.684 c 0.088,-0.121 0.165,-0.33 0.165,-0.484 0,-0.572 -0.429,-0.814 -0.869,-0.814 -0.396,0 -0.55,0.143 -0.737,0.44 l -1.397,2.255 -1.309,-2.255 c -0.11,-0.187 -0.319,-0.44 -0.748,-0.44 -0.517,0 -0.902,0.374 -0.902,0.847 0,0.209 0.077,0.385 0.187,0.55 l 1.727,2.585 -1.892,2.761 z" />
</g>
</g>
<g
id="g3908"
transform="translate(50.125,-29.875)">
<path
id="rect3806-4"
d="m 16.740473,667.23718 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86548 l 0,26.26908 c 0,1.03347 -0.832001,1.86547 -1.865473,1.86547 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86547 l 0,-26.26908 c 0,-1.03348 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:8px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(0.71890704,308.81113)">
<path
id="path181"
style="font-size:11px"
d="m 17.025016,365.12887 c 0,2.398 1.166,4.246 4.004,4.246 2.706,0 4.004,-2.013 4.004,-4.246 0,-2.321 -1.408,-4.048 -4.004,-4.048 -2.596,0 -4.004,1.727 -4.004,4.048 z m 1.804,0 c 0,-1.518 0.726,-2.596 2.2,-2.596 1.474,0 2.2,1.078 2.2,2.596 0,1.518 -0.561,2.794 -2.2,2.794 -1.694,0 -2.2,-1.276 -2.2,-2.794 z" />
<path
id="path183"
style="font-size:11px"
d="m 26.159484,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.496,0.418 -1.947,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.22,-0.803 -0.726,-0.803 -0.506,0 -0.726,0.319 -0.726,0.803 l 0,4.433 z" />
<path
id="path185"
style="font-size:11px"
d="m 17.377016,378.03187 c 0,0.803 0.418,1.056 1.056,1.056 l 3.762,0 c 0.517,0 0.935,-0.264 0.935,-0.759 0,-0.495 -0.418,-0.759 -0.935,-0.759 l -3.014,0 0,-5.643 c 0,-0.539 -0.352,-0.902 -0.902,-0.902 -0.55,0 -0.902,0.363 -0.902,0.902 l 0,6.105 z" />
<path
id="path187"
style="font-size:11px"
d="m 23.991625,378.42787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-4.433 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,4.433 z m -0.033,-6.611 c 0,0.462 0.374,0.836 0.836,0.836 0.462,0 0.836,-0.374 0.836,-0.836 0,-0.462 -0.374,-0.836 -0.836,-0.836 -0.462,0 -0.836,0.374 -0.836,0.836 z" />
<path
id="path189"
style="font-size:11px"
d="m 26.954406,378.42787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.496,0.418 -1.947,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.22,-0.803 -0.726,-0.803 -0.506,0 -0.726,0.319 -0.726,0.803 l 0,4.433 z" />
<path
id="path191"
style="font-size:11px"
d="m 39.124016,373.99487 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,2.651 c 0,0.803 -0.66,1.265 -1.221,1.265 -0.693,0 -1.012,-0.462 -1.012,-1.111 l 0,-2.805 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,3.124 c 0,1.628 1.056,2.112 2.024,2.112 0.913,0 1.496,-0.418 1.947,-1.012 l 0.022,0 0,0.209 c 0,0.484 0.22,0.803 0.726,0.803 0.506,0 0.726,-0.319 0.726,-0.803 l 0,-4.433 z" />
<path
id="path193"
style="font-size:11px"
d="m 42.405625,377.22887 0.924,1.474 c 0.209,0.33 0.407,0.528 0.737,0.528 0.517,0 0.814,-0.363 0.814,-0.748 0,-0.231 -0.066,-0.363 -0.154,-0.484 l -1.243,-1.848 1.166,-1.727 c 0.099,-0.143 0.165,-0.308 0.165,-0.539 0,-0.363 -0.352,-0.693 -0.726,-0.693 -0.253,0 -0.495,0.066 -0.737,0.473 l -0.869,1.419 -0.902,-1.485 c -0.187,-0.308 -0.396,-0.407 -0.649,-0.407 -0.583,0 -0.858,0.462 -0.858,0.803 0,0.154 0.077,0.297 0.165,0.418 l 1.155,1.738 -1.232,1.815 c -0.143,0.209 -0.22,0.374 -0.22,0.517 0,0.44 0.396,0.748 0.781,0.748 0.297,0 0.517,-0.154 0.627,-0.319 l 1.056,-1.683 z" />
</g>
</g>
<g
id="g3822"
transform="translate(30,-2.7058031e-6)">
<path
id="path3005-2"
d="m 19.911936,426.71852 a 9.1659365,9.1659365 0 0 1 -2.53643,-12.71142 9.1659365,9.1659365 0 0 1 12.711199,-2.53756 9.1659365,9.1659365 0 0 1 2.538696,12.71097 9.1659365,9.1659365 0 0 1 -12.710747,2.53983 L 25,419.09448 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:0.13524589;marker:none;enable-background:accumulate"
transform="matrix(0.54549827,0,0,0.54549827,36.362543,498.74687)" />
<path
transform="translate(0,308.2677)"
id="path3804"
d="m 50,419.09448 c 0,-15 0,-25.36336 0,-25.36336"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<g
id="g3868"
transform="translate(4.8113861,-12.853955)">
<path
id="rect3806"
d="m 33.219076,675.21613 83.939074,0 c 1.67888,0 3.03046,1.35158 3.03046,3.03046 l 0,33.93909 c 0,1.67887 -1.35158,3.03046 -3.03046,3.03046 l -83.939074,0 c -1.678876,0 -3.030462,-1.35159 -3.030462,-3.03046 l 0,-33.93909 c 0,-1.67888 1.351586,-3.03046 3.030462,-3.03046 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(18.369364,319.99189)">
<path
id="path198"
style=""
d="m 17.757016,370.83262 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-9.312 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,9.312 z" />
<path
id="path200"
style=""
d="m 22.531516,370.97662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-3.856 c 0,-1.168 0.96,-1.84 1.776,-1.84 1.008,0 1.472,0.672 1.472,1.616 l 0,4.08 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-4.544 c 0,-2.368 -1.536,-3.072 -2.944,-3.072 -1.328,0 -2.176,0.608 -2.832,1.472 l -0.032,0 0,-0.304 c 0,-0.704 -0.32,-1.168 -1.056,-1.168 -0.736,0 -1.056,0.464 -1.056,1.168 l 0,6.448 z" />
<path
id="path202"
style=""
d="m 31.944766,365.96862 c 0,1.568 1.056,2.128 2.416,2.464 l 1.376,0.336 c 0.832,0.208 1.344,0.304 1.344,0.896 0,0.48 -0.528,0.848 -1.36,0.848 -1.728,0 -1.824,-1.44 -2.832,-1.44 -0.656,0 -0.944,0.464 -0.944,0.976 0,1.152 1.76,2.096 3.872,2.096 1.76,0 3.6,-0.88 3.6,-2.784 0,-1.632 -1.584,-2.192 -2.912,-2.496 l -0.976,-0.224 c -0.72,-0.16 -1.248,-0.288 -1.248,-0.832 0,-0.496 0.528,-0.72 1.344,-0.72 1.472,0 1.504,1.072 2.416,1.072 0.608,0 0.976,-0.48 0.976,-1.024 0,-1.072 -1.792,-1.776 -3.568,-1.776 -1.616,0 -3.504,0.704 -3.504,2.608 z" />
<path
id="path204"
style=""
d="m 41.514516,370.06462 c 0,1.376 0.704,2.08 2.4,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
<path
id="path206"
style=""
d="m 54.572766,365.76062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path208"
style=""
d="m 56.722016,370.97662 c 0,0.768 0.464,1.168 1.168,1.168 0.704,0 1.168,-0.4 1.168,-1.168 l 0,-9.6 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path210"
style=""
d="m 61.159516,370.97662 c 0,0.768 0.464,1.168 1.168,1.168 0.704,0 1.168,-0.4 1.168,-1.168 l 0,-9.6 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path212"
style=""
d="m 24.509016,375.92062 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,6.784 c 0,1.248 -0.48,1.888 -1.344,1.888 -0.928,0 -1.28,-0.544 -1.28,-1.296 0,-0.784 -0.24,-1.52 -1.184,-1.52 -0.8,0 -1.248,0.624 -1.248,1.6 0,1.136 0.592,3.232 3.744,3.232 2.592,0 3.936,-1.456 3.936,-3.872 l 0,-6.816 z" />
<path
id="path214"
style=""
d="m 26.944516,384.80062 c 0,1.168 0.608,1.536 1.536,1.536 l 3.152,0 c 3.504,0 5.536,-2.112 5.536,-5.76 0,-4.512 -2.624,-5.76 -5.488,-5.76 l -3.2,0 c -0.928,0 -1.536,0.368 -1.536,1.536 l 0,8.448 z m 2.624,-7.872 2.192,0 c 1.92,0 2.784,1.376 2.784,3.648 0,1.776 -0.672,3.648 -2.768,3.648 l -2.208,0 0,-7.296 z" />
<path
id="path216"
style=""
d="m 39.100766,385.23262 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-2.608 1.44,-1.44 3.024,4.672 c 0.352,0.56 0.64,0.688 1.168,0.688 0.624,0 1.344,-0.288 1.344,-1.264 0,-0.336 -0.256,-0.672 -0.496,-1.04 l -3.184,-4.848 2.688,-2.832 c 0.224,-0.224 0.432,-0.496 0.432,-0.896 0,-0.672 -0.624,-1.056 -1.248,-1.056 -0.464,0 -0.736,0.256 -1.04,0.576 l -4.128,4.544 0,-3.808 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,9.312 z" />
</g>
</g>
</g>
<g
transform="translate(160,2.7294197e-5)"
id="g3271">
<g
id="g3908-4-9-7"
transform="translate(150.125,-70.238342)">
<path
id="rect3806-4-2-2-0"
d="m 16.740473,657.60052 56.269054,0 c 1.033472,0 1.865473,0.83201 1.865473,1.86548 l 0,36.26902 c 0,1.03347 -0.832001,1.86547 -1.865473,1.86547 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86547 l 0,-36.26902 c 0,-1.03347 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-7-2-4"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(0.96798326,298.92194)">
<path
id="path220"
style=""
d="m 17.421016,368.13187 c 0,0.803 0.418,1.056 1.056,1.056 l 4.323,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.575,0 0,-1.914 3.058,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -3.058,0 0,-1.716 3.487,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -4.235,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z" />
<path
id="path222"
style=""
d="m 24.412031,366.42687 c 0,1.683 0.935,2.904 2.915,2.904 1.65,0 2.442,-0.968 2.442,-1.672 0,-0.319 -0.264,-0.616 -0.671,-0.616 -0.847,0 -0.605,1.034 -1.727,1.034 -0.88,0 -1.353,-0.649 -1.353,-1.65 0,-1.452 0.737,-1.881 1.364,-1.881 1.155,0 0.88,0.946 1.639,0.946 0.407,0 0.748,-0.231 0.748,-0.693 0,-0.748 -1.001,-1.507 -2.343,-1.507 -1.969,0 -3.014,1.287 -3.014,3.135 z" />
<path
id="path224"
style=""
d="m 30.716234,368.52787 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-6.6 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path226"
style=""
d="m 33.767016,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-4.433 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,4.433 z m -0.033,-6.611 c 0,0.462 0.374,0.836 0.836,0.836 0.462,0 0.836,-0.374 0.836,-0.836 0,-0.462 -0.374,-0.836 -0.836,-0.836 -0.462,0 -0.836,0.374 -0.836,0.836 z" />
<path
id="path228"
style=""
d="m 36.729797,370.66187 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-2.145 0.022,0 c 0.297,0.517 0.847,0.814 1.584,0.814 1.694,0 2.475,-1.441 2.475,-2.981 0,-2.079 -1.177,-3.058 -2.519,-3.058 -0.781,0 -1.43,0.33 -1.694,1.012 l -0.022,0 0,-0.253 c 0,-0.495 -0.253,-0.759 -0.726,-0.759 -0.495,0 -0.726,0.264 -0.726,0.759 l 0,6.611 z m 4.081,-4.367 c 0,0.748 -0.253,1.782 -1.276,1.782 -0.979,0.011 -1.287,-0.957 -1.287,-1.782 0,-0.913 0.352,-1.749 1.287,-1.749 0.858,0.022 1.276,0.803 1.276,1.749 z" />
<path
id="path230"
style=""
d="m 43.201406,365.08487 c 0,1.078 0.726,1.463 1.661,1.694 l 0.946,0.231 c 0.572,0.143 0.924,0.209 0.924,0.616 0,0.33 -0.363,0.583 -0.935,0.583 -1.188,0 -1.254,-0.99 -1.947,-0.99 -0.451,0 -0.649,0.319 -0.649,0.671 0,0.792 1.21,1.441 2.662,1.441 1.21,0 2.475,-0.605 2.475,-1.914 0,-1.122 -1.089,-1.507 -2.002,-1.716 l -0.671,-0.154 c -0.495,-0.11 -0.858,-0.198 -0.858,-0.572 0,-0.341 0.363,-0.495 0.924,-0.495 1.012,0 1.034,0.737 1.661,0.737 0.418,0 0.671,-0.33 0.671,-0.704 0,-0.737 -1.232,-1.221 -2.453,-1.221 -1.111,0 -2.409,0.484 -2.409,1.793 z" />
<path
id="path232"
style=""
d="m 54.356609,366.61387 c 0.539,0 0.704,-0.143 0.704,-0.693 0,-1.32 -1.056,-2.629 -2.904,-2.629 -1.903,0 -3.036,1.254 -3.036,3.124 0,1.397 0.847,2.915 3.091,2.915 0.968,0 2.519,-0.451 2.519,-1.419 0,-0.297 -0.275,-0.627 -0.66,-0.627 -0.649,0 -0.649,0.792 -1.859,0.792 -0.935,0 -1.485,-0.616 -1.485,-1.463 l 3.63,0 z m -3.63,-0.924 c 0.176,-0.781 0.66,-1.276 1.463,-1.276 0.715,0 1.265,0.539 1.353,1.276 l -2.816,0 z" />
<path
id="path234"
style=""
d="m 17.377016,378.32887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-6.402 c 0,-0.539 -0.352,-0.902 -0.902,-0.902 -0.55,0 -0.902,0.363 -0.902,0.902 l 0,6.402 z" />
<path
id="path236"
style=""
d="m 20.857484,378.03187 c 0,0.803 0.418,1.056 1.056,1.056 l 2.167,0 c 2.409,0 3.806,-1.452 3.806,-3.96 0,-3.102 -1.804,-3.96 -3.773,-3.96 l -2.2,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z m 1.804,-5.412 1.507,0 c 1.32,0 1.914,0.946 1.914,2.508 0,1.221 -0.462,2.508 -1.903,2.508 l -1.518,0 0,-5.016 z" />
<path
id="path238"
style=""
d="m 29.258906,378.03187 c 0,0.803 0.418,1.056 1.056,1.056 l 4.323,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.575,0 0,-1.914 3.058,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -3.058,0 0,-1.716 3.487,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -4.235,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z" />
</g>
</g>
<g
id="g3908-4-1"
transform="translate(145.125,-49.874982)">
<path
id="rect3806-4-2-6"
d="m 21.740473,662.23712 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86547 l 0,31.2691 c 0,1.03348 -0.832001,1.86548 -1.865473,1.86548 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86548 l 0,-31.2691 c 0,-1.03347 0.832001,-1.86547 1.865473,-1.86547 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-7-0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(5.79546,303.04687)">
<path
id="path242"
style=""
d="m 17.344016,368.46187 c 0,0.583 0.33,0.869 0.869,0.869 0.539,0 0.869,-0.286 0.869,-0.869 l 0,-4.565 0.022,0 3.135,4.95 c 0.231,0.363 0.418,0.484 0.99,0.484 0.759,0 1.067,-0.407 1.067,-1.122 l 0,-6.215 c 0,-0.583 -0.33,-0.869 -0.869,-0.869 -0.539,0 -0.869,0.286 -0.869,0.869 l 0,4.697 -0.022,0 -3.157,-5.093 c -0.198,-0.33 -0.528,-0.473 -0.902,-0.473 -0.77,0 -1.133,0.308 -1.133,1.056 l 0,6.281 z" />
<path
id="path244"
style=""
d="m 30.723797,366.61387 c 0.539,0 0.704,-0.143 0.704,-0.693 0,-1.32 -1.056,-2.629 -2.904,-2.629 -1.903,0 -3.036,1.254 -3.036,3.124 0,1.397 0.847,2.915 3.091,2.915 0.968,0 2.519,-0.451 2.519,-1.419 0,-0.297 -0.275,-0.627 -0.66,-0.627 -0.649,0 -0.649,0.792 -1.859,0.792 -0.935,0 -1.485,-0.616 -1.485,-1.463 l 3.63,0 z m -3.63,-0.924 c 0.176,-0.781 0.66,-1.276 1.463,-1.276 0.715,0 1.265,0.539 1.353,1.276 l -2.816,0 z" />
<path
id="path246"
style=""
d="m 32.872406,367.90087 c 0,0.946 0.484,1.43 1.65,1.43 0.77,0 1.166,-0.253 1.166,-0.715 0,-0.341 -0.209,-0.539 -0.561,-0.539 l -0.231,0 c -0.286,0 -0.418,-0.132 -0.418,-0.374 l 0,-3.212 0.484,0 c 0.473,0 0.726,-0.143 0.726,-0.528 0,-0.385 -0.253,-0.528 -0.726,-0.528 l -0.484,0 0,-0.979 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,0.979 -0.275,0 c -0.451,0 -0.638,0.176 -0.638,0.528 0,0.352 0.187,0.528 0.638,0.528 l 0.275,0 0,3.41 z" />
<path
id="path248"
style=""
d="m 36.712953,368.13187 c 0,0.803 0.418,1.056 1.056,1.056 l 2.651,0 c 1.562,0 2.915,-0.682 2.915,-2.343 0,-1.089 -0.55,-1.683 -1.386,-1.903 l 0,-0.022 c 0.748,-0.297 1.111,-0.935 1.111,-1.606 0,-1.749 -1.573,-2.046 -2.893,-2.046 l -2.398,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z m 1.804,-2.464 1.298,0 c 0.88,0 1.716,0.121 1.716,1.078 0,0.913 -0.792,1.056 -1.496,1.056 l -1.518,0 0,-2.134 z m 0,-3.08 1.43,0 c 0.671,0 1.309,0.209 1.309,0.968 0,0.627 -0.407,0.968 -1.254,0.968 l -1.485,0 0,-1.936 z" />
<path
id="path250"
style=""
d="m 49.458172,366.61387 c 0.539,0 0.704,-0.143 0.704,-0.693 0,-1.32 -1.056,-2.629 -2.904,-2.629 -1.903,0 -3.036,1.254 -3.036,3.124 0,1.397 0.847,2.915 3.091,2.915 0.968,0 2.519,-0.451 2.519,-1.419 0,-0.297 -0.275,-0.627 -0.66,-0.627 -0.649,0 -0.649,0.792 -1.859,0.792 -0.935,0 -1.485,-0.616 -1.485,-1.463 l 3.63,0 z m -3.63,-0.924 c 0.176,-0.781 0.66,-1.276 1.463,-1.276 0.715,0 1.265,0.539 1.353,1.276 l -2.816,0 z" />
<path
id="path252"
style=""
d="m 56.523781,364.94187 c 0,-1.155 -1.067,-1.65 -2.607,-1.65 -1.65,0 -2.552,0.814 -2.552,1.452 0,0.33 0.275,0.616 0.682,0.616 0.638,0 0.671,-0.88 1.859,-0.88 0.539,0 1.012,0.198 1.012,0.66 0,0.462 -0.308,0.55 -0.693,0.594 l -0.979,0.11 c -1.232,0.143 -2.244,0.517 -2.244,1.848 0,1.012 0.902,1.639 1.815,1.639 0.847,0 1.573,-0.242 2.2,-0.935 0.022,0.495 0.253,0.935 0.946,0.935 0.385,0 0.726,-0.253 0.726,-0.616 0,-0.253 -0.165,-0.407 -0.165,-1.078 l 0,-2.695 z m -1.606,2.167 c 0,0.594 -0.539,1.166 -1.419,1.166 -0.55,0 -0.891,-0.297 -0.891,-0.66 0,-0.484 0.363,-0.693 1.034,-0.792 l 0.583,-0.088 c 0.187,-0.033 0.517,-0.088 0.693,-0.253 l 0,0.627 z" />
<path
id="path254"
style=""
d="m 57.913391,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.496,0.418 -1.947,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.22,-0.803 -0.726,-0.803 -0.506,0 -0.726,0.319 -0.726,0.803 l 0,4.433 z" />
<path
id="path256"
style=""
d="m 64.385,365.08487 c 0,1.078 0.726,1.463 1.661,1.694 l 0.946,0.231 c 0.572,0.143 0.924,0.209 0.924,0.616 0,0.33 -0.363,0.583 -0.935,0.583 -1.188,0 -1.254,-0.99 -1.947,-0.99 -0.451,0 -0.649,0.319 -0.649,0.671 0,0.792 1.21,1.441 2.662,1.441 1.21,0 2.475,-0.605 2.475,-1.914 0,-1.122 -1.089,-1.507 -2.002,-1.716 l -0.671,-0.154 c -0.495,-0.11 -0.858,-0.198 -0.858,-0.572 0,-0.341 0.363,-0.495 0.924,-0.495 1.012,0 1.034,0.737 1.661,0.737 0.418,0 0.671,-0.33 0.671,-0.704 0,-0.737 -1.232,-1.221 -2.453,-1.221 -1.111,0 -2.409,0.484 -2.409,1.793 z" />
<path
id="path258"
style=""
d="m 17.377016,378.32887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-6.402 c 0,-0.539 -0.352,-0.902 -0.902,-0.902 -0.55,0 -0.902,0.363 -0.902,0.902 l 0,6.402 z" />
<path
id="path260"
style=""
d="m 20.857484,378.03187 c 0,0.803 0.418,1.056 1.056,1.056 l 2.167,0 c 2.409,0 3.806,-1.452 3.806,-3.96 0,-3.102 -1.804,-3.96 -3.773,-3.96 l -2.2,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z m 1.804,-5.412 1.507,0 c 1.32,0 1.914,0.946 1.914,2.508 0,1.221 -0.462,2.508 -1.903,2.508 l -1.518,0 0,-5.016 z" />
<path
id="path262"
style=""
d="m 29.258906,378.03187 c 0,0.803 0.418,1.056 1.056,1.056 l 4.323,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.575,0 0,-1.914 3.058,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -3.058,0 0,-1.716 3.487,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -4.235,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z" />
</g>
</g>
<g
id="g3908-3"
transform="translate(145.125,-29.874982)">
<path
id="rect3806-4-0"
d="m 21.740473,667.23712 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86547 l 0,26.2691 c 0,1.03348 -0.832001,1.86548 -1.865473,1.86548 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86548 l 0,-26.2691 c 0,-1.03347 0.832001,-1.86547 1.865473,-1.86547 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-8"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(5.77146,308.61462)">
<path
id="path266"
style=""
d="m 17.377016,368.42887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-6.402 c 0,-0.539 -0.352,-0.902 -0.902,-0.902 -0.55,0 -0.902,0.363 -0.902,0.902 l 0,6.402 z" />
<path
id="path268"
style=""
d="m 20.659484,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.496,0.418 -1.947,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.22,-0.803 -0.726,-0.803 -0.506,0 -0.726,0.319 -0.726,0.803 l 0,4.433 z" />
<path
id="path270"
style=""
d="m 27.802094,367.90087 c 0,0.946 0.484,1.43 1.65,1.43 0.77,0 1.166,-0.253 1.166,-0.715 0,-0.341 -0.209,-0.539 -0.561,-0.539 l -0.231,0 c -0.286,0 -0.418,-0.132 -0.418,-0.374 l 0,-3.212 0.484,0 c 0.473,0 0.726,-0.143 0.726,-0.528 0,-0.385 -0.253,-0.528 -0.726,-0.528 l -0.484,0 0,-0.979 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,0.979 -0.275,0 c -0.451,0 -0.638,0.176 -0.638,0.528 0,0.352 0.187,0.528 0.638,0.528 l 0.275,0 0,3.41 z" />
<path
id="path272"
style=""
d="m 36.438641,366.61387 c 0.539,0 0.704,-0.143 0.704,-0.693 0,-1.32 -1.056,-2.629 -2.904,-2.629 -1.903,0 -3.036,1.254 -3.036,3.124 0,1.397 0.847,2.915 3.091,2.915 0.968,0 2.519,-0.451 2.519,-1.419 0,-0.297 -0.275,-0.627 -0.66,-0.627 -0.649,0 -0.649,0.792 -1.859,0.792 -0.935,0 -1.485,-0.616 -1.485,-1.463 l 3.63,0 z m -3.63,-0.924 c 0.176,-0.781 0.66,-1.276 1.463,-1.276 0.715,0 1.265,0.539 1.353,1.276 l -2.816,0 z" />
<path
id="path274"
style=""
d="m 38.25725,368.52787 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-6.6 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path276"
style=""
d="m 41.308031,368.52787 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-6.6 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path278"
style=""
d="m 44.358812,368.52787 c 0,0.429 0.176,0.803 0.803001,0.803 0.626999,0 0.802999,-0.374 0.802999,-0.803 l 0,-4.433 c 0,-0.429 -0.176,-0.803 -0.802999,-0.803 -0.627001,0 -0.803001,0.374 -0.803001,0.803 l 0,4.433 z m -0.033,-6.611 c 0,0.462 0.374,0.836 0.836001,0.836 0.461999,0 0.836,-0.374 0.836,-0.836 0,-0.462 -0.374001,-0.836 -0.836,-0.836 -0.462001,0 -0.836001,0.374 -0.836001,0.836 z" />
<path
id="path280"
style=""
d="m 52.161594,362.02687 c 0,-0.539 -0.352,-0.902 -0.902,-0.902 -0.55,0 -0.902,0.363 -0.902,0.902 l 0,4.664 c 0,0.858 -0.33,1.298 -0.924,1.298 -0.638,0 -0.88,-0.374 -0.88,-0.891 0,-0.539 -0.165,-1.045 -0.814,-1.045 -0.55,0 -0.858,0.429 -0.858,1.1 0,0.781 0.407,2.222 2.574,2.222 1.782,0 2.706,-1.001 2.706,-2.662 l 0,-4.686 z" />
<path
id="path282"
style=""
d="m 17.377016,378.32887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-6.402 c 0,-0.539 -0.352,-0.902 -0.902,-0.902 -0.55,0 -0.902,0.363 -0.902,0.902 l 0,6.402 z" />
<path
id="path284"
style=""
d="m 20.857484,378.03187 c 0,0.803 0.418,1.056 1.056,1.056 l 2.167,0 c 2.409,0 3.806,-1.452 3.806,-3.96 0,-3.102 -1.804,-3.96 -3.773,-3.96 l -2.2,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z m 1.804,-5.412 1.507,0 c 1.32,0 1.914,0.946 1.914,2.508 0,1.221 -0.462,2.508 -1.903,2.508 l -1.518,0 0,-5.016 z" />
<path
id="path286"
style=""
d="m 29.258906,378.03187 c 0,0.803 0.418,1.056 1.056,1.056 l 4.323,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.575,0 0,-1.914 3.058,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -3.058,0 0,-1.716 3.487,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -4.235,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z" />
<path
id="path288"
style=""
d="m 36.194922,377.74587 c -0.066,0.176 -0.176,0.495 -0.176,0.693 0,0.484 0.341,0.792 0.836,0.792 0.429,0 0.682,-0.143 0.803,-0.495 l 0.473,-1.32 2.904,0 0.462,1.32 c 0.132,0.352 0.418,0.495 0.814,0.495 0.462,0 0.847,-0.352 0.847,-0.792 0,-0.198 -0.11,-0.517 -0.176,-0.693 l -2.178,-6.061 c -0.198,-0.561 -0.561,-0.66 -0.968,-0.66 l -0.429,0 c -0.44,0 -0.726,0.143 -0.88,0.55 l -2.332,6.171 z m 4.444,-1.584 -2.112,0 1.067,-3.179 0.022,0 1.023,3.179 z" />
</g>
</g>
<g
id="g3822-0"
transform="translate(130,2.421875e-6)">
<path
id="path3005-2-8"
d="m 19.911936,426.71852 a 9.1659365,9.1659365 0 0 1 -2.53643,-12.71142 9.1659365,9.1659365 0 0 1 12.711199,-2.53756 9.1659365,9.1659365 0 0 1 2.538696,12.71097 9.1659365,9.1659365 0 0 1 -12.710747,2.53983 L 25,419.09448 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:0.13524589;marker:none;enable-background:accumulate"
transform="matrix(0.54549827,0,0,0.54549827,36.362543,498.74687)" />
<path
transform="translate(0,308.2677)"
id="path3804-9"
d="m 50,419.09448 c 0,-15 0,-25.36336 0,-25.36336"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<path
id="rect3806-0"
d="m 138.03046,661.99884 83.93908,0 c 1.67887,0 3.03046,1.35159 3.03046,3.03046 l 0,34.30242 c 0,1.67888 -1.35159,3.03046 -3.03046,3.03046 l -83.93908,0 c -1.67887,0 -3.03046,-1.35158 -3.03046,-3.03046 l 0,-34.30242 c 0,-1.67887 1.35159,-3.03046 3.03046,-3.03046 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-3"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(123.18075,306.77458)">
<path
id="path293"
style=""
d="m 17.757016,370.83262 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-9.312 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,9.312 z" />
<path
id="path295"
style=""
d="m 22.531516,370.97662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-3.856 c 0,-1.168 0.96,-1.84 1.776,-1.84 1.008,0 1.472,0.672 1.472,1.616 l 0,4.08 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-4.544 c 0,-2.368 -1.536,-3.072 -2.944,-3.072 -1.328,0 -2.176,0.608 -2.832,1.472 l -0.032,0 0,-0.304 c 0,-0.704 -0.32,-1.168 -1.056,-1.168 -0.736,0 -1.056,0.464 -1.056,1.168 l 0,6.448 z" />
<path
id="path297"
style=""
d="m 31.944766,365.96862 c 0,1.568 1.056,2.128 2.416,2.464 l 1.376,0.336 c 0.832,0.208 1.344,0.304 1.344,0.896 0,0.48 -0.528,0.848 -1.36,0.848 -1.728,0 -1.824,-1.44 -2.832,-1.44 -0.656,0 -0.944,0.464 -0.944,0.976 0,1.152 1.76,2.096 3.872,2.096 1.76,0 3.6,-0.88 3.6,-2.784 0,-1.632 -1.584,-2.192 -2.912,-2.496 l -0.976,-0.224 c -0.72,-0.16 -1.248,-0.288 -1.248,-0.832 0,-0.496 0.528,-0.72 1.344,-0.72 1.472,0 1.504,1.072 2.416,1.072 0.608,0 0.976,-0.48 0.976,-1.024 0,-1.072 -1.792,-1.776 -3.568,-1.776 -1.616,0 -3.504,0.704 -3.504,2.608 z" />
<path
id="path299"
style=""
d="m 41.514516,370.06462 c 0,1.376 0.704,2.08 2.4,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
<path
id="path301"
style=""
d="m 54.572766,365.76062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path303"
style=""
d="m 56.722016,370.97662 c 0,0.768 0.464,1.168 1.168,1.168 0.704,0 1.168,-0.4 1.168,-1.168 l 0,-9.6 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path305"
style=""
d="m 61.159516,370.97662 c 0,0.768 0.464,1.168 1.168,1.168 0.704,0 1.168,-0.4 1.168,-1.168 l 0,-9.6 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path307"
style=""
d="m 78.135266,365.76062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path309"
style=""
d="m 80.156516,370.97662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-3.856 c 0,-1.168 0.96,-1.84 1.776,-1.84 1.008,0 1.472,0.672 1.472,1.616 l 0,4.08 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-4.544 c 0,-2.368 -1.536,-3.072 -2.944,-3.072 -1.328,0 -2.176,0.608 -2.832,1.472 l -0.032,0 0,-0.304 c 0,-0.704 -0.32,-1.168 -1.056,-1.168 -0.736,0 -1.056,0.464 -1.056,1.168 l 0,6.448 z" />
<path
id="path311"
style=""
d="m 17.757016,385.23262 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-9.312 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,9.312 z" />
<path
id="path313"
style=""
d="m 22.819516,384.80062 c 0,1.168 0.608,1.536 1.536,1.536 l 3.152,0 c 3.504,0 5.536,-2.112 5.536,-5.76 0,-4.512 -2.624,-5.76 -5.488,-5.76 l -3.2,0 c -0.928,0 -1.536,0.368 -1.536,1.536 l 0,8.448 z m 2.624,-7.872 2.192,0 c 1.92,0 2.784,1.376 2.784,3.648 0,1.776 -0.672,3.648 -2.768,3.648 l -2.208,0 0,-7.296 z" />
<path
id="path315"
style=""
d="m 35.039766,384.80062 c 0,1.168 0.608,1.536 1.536,1.536 l 6.288,0 c 0.768,0 1.328,-0.224 1.328,-1.056 0,-0.832 -0.56,-1.056 -1.328,-1.056 l -5.2,0 0,-2.784 4.448,0 c 0.688,0 1.232,-0.192 1.232,-1.008 0,-0.816 -0.544,-1.008 -1.232,-1.008 l -4.448,0 0,-2.496 5.072,0 c 0.768,0 1.328,-0.224 1.328,-1.056 0,-0.832 -0.56,-1.056 -1.328,-1.056 l -6.16,0 c -0.928,0 -1.536,0.368 -1.536,1.536 l 0,8.448 z" />
</g>
</g>
<g
id="g3271-5"
transform="translate(260,2.7294197e-5)">
<g
id="g3908-4-9-7-8"
transform="translate(150.125,-110.23837)">
<path
id="rect3806-4-2-2-0-0"
d="m 16.740473,647.60052 56.269054,0 c 1.033472,0 1.865473,0.83201 1.865473,1.86548 l 0,46.26914 c 0,1.03348 -0.832001,1.86548 -1.865473,1.86548 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86548 l 0,-46.26914 c 0,-1.03347 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-7-2-4-0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(1.0223215,288.61775)">
<path
id="path319"
style=""
d="m 16.816016,367.84587 c -0.066,0.176 -0.176,0.495 -0.176,0.693 0,0.484 0.341,0.792 0.836,0.792 0.429,0 0.682,-0.143 0.803,-0.495 l 0.473,-1.32 2.904,0 0.462,1.32 c 0.132,0.352 0.418,0.495 0.814,0.495 0.462,0 0.847,-0.352 0.847,-0.792 0,-0.198 -0.11,-0.517 -0.176,-0.693 l -2.178,-6.061 c -0.198,-0.561 -0.561,-0.66 -0.968,-0.66 l -0.429,0 c -0.44,0 -0.726,0.143 -0.88,0.55 l -2.332,6.171 z m 4.444,-1.584 -2.112,0 1.067,-3.179 0.022,0 1.023,3.179 z" />
<path
id="path321"
style=""
d="m 24.526672,370.66187 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-2.145 0.022,0 c 0.297,0.517 0.847,0.814 1.584,0.814 1.694,0 2.475,-1.441 2.475,-2.981 0,-2.079 -1.177,-3.058 -2.519,-3.058 -0.781,0 -1.43,0.33 -1.694,1.012 l -0.022,0 0,-0.253 c 0,-0.495 -0.253,-0.759 -0.726,-0.759 -0.495,0 -0.726,0.264 -0.726,0.759 l 0,6.611 z m 4.081,-4.367 c 0,0.748 -0.253,1.782 -1.276,1.782 -0.979,0.011 -1.287,-0.957 -1.287,-1.782 0,-0.913 0.352,-1.749 1.287,-1.749 0.858,0.022 1.276,0.803 1.276,1.749 z" />
<path
id="path323"
style=""
d="m 36.586281,364.94187 c 0,-1.155 -1.067,-1.65 -2.607,-1.65 -1.65,0 -2.552,0.814 -2.552,1.452 0,0.33 0.275,0.616 0.682,0.616 0.638,0 0.671,-0.88 1.859,-0.88 0.539,0 1.012,0.198 1.012,0.66 0,0.462 -0.308,0.55 -0.693,0.594 l -0.979,0.11 c -1.232,0.143 -2.244,0.517 -2.244,1.848 0,1.012 0.902,1.639 1.815,1.639 0.847,0 1.573,-0.242 2.2,-0.935 0.022,0.495 0.253,0.935 0.946,0.935 0.385,0 0.726,-0.253 0.726,-0.616 0,-0.253 -0.165,-0.407 -0.165,-1.078 l 0,-2.695 z m -1.606,2.167 c 0,0.594 -0.539,1.166 -1.419,1.166 -0.55,0 -0.891,-0.297 -0.891,-0.66 0,-0.484 0.363,-0.693 1.034,-0.792 l 0.583,-0.088 c 0.187,-0.033 0.517,-0.088 0.693,-0.253 l 0,0.627 z" />
<path
id="path325"
style=""
d="m 37.667891,366.42687 c 0,1.683 0.935,2.904 2.915,2.904 1.65,0 2.442,-0.968 2.442,-1.672 0,-0.319 -0.264,-0.616 -0.671,-0.616 -0.847,0 -0.605,1.034 -1.727,1.034 -0.88,0 -1.353,-0.649 -1.353,-1.65 0,-1.452 0.737,-1.881 1.364,-1.881 1.155,0 0.88,0.946 1.639,0.946 0.407,0 0.748,-0.231 0.748,-0.693 0,-0.748 -1.001,-1.507 -2.343,-1.507 -1.969,0 -3.014,1.287 -3.014,3.135 z" />
<path
id="path327"
style=""
d="m 43.884094,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.474,0.429 -1.793,0.847 l -0.022,0 0,-2.211 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path329"
style=""
d="m 55.602703,366.61387 c 0.539,0 0.704,-0.143 0.704,-0.693 0,-1.32 -1.056,-2.629 -2.904,-2.629 -1.903,0 -3.036,1.254 -3.036,3.124 0,1.397 0.847,2.915 3.091,2.915 0.968,0 2.519,-0.451 2.519,-1.419 0,-0.297 -0.275,-0.627 -0.66,-0.627 -0.649,0 -0.649,0.792 -1.859,0.792 -0.935,0 -1.485,-0.616 -1.485,-1.463 l 3.63,0 z m -3.63,-0.924 c 0.176,-0.781 0.66,-1.276 1.463,-1.276 0.715,0 1.265,0.539 1.353,1.276 l -2.816,0 z" />
<path
id="path331"
style=""
d="m 19.313016,378.32887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-5.643 1.705,0 c 0.517,0 0.935,-0.264 0.935,-0.759 0,-0.495 -0.418,-0.759 -0.935,-0.759 l -5.214,0 c -0.517,0 -0.935,0.264 -0.935,0.759 0,0.495 0.418,0.759 0.935,0.759 l 1.705,0 0,5.643 z" />
<path
id="path333"
style=""
d="m 24.386766,376.20587 c 0,-1.045 0.429,-1.826 1.364,-1.826 0.935,0 1.364,0.781 1.364,1.826 0,0.979 -0.407,1.837 -1.364,1.837 -0.957,0 -1.364,-0.858 -1.364,-1.837 z m -1.606,0 c 0,1.606 0.781,3.025 2.97,3.025 2.189,0 2.97,-1.419 2.97,-3.025 0,-1.694 -1.034,-3.014 -2.97,-3.014 -1.936,0 -2.97,1.32 -2.97,3.014 z" />
<path
id="path335"
style=""
d="m 29.747375,378.42787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.673 c 0,-0.748 0.55,-1.243 1.166,-1.243 0.627,0 0.88,0.462 0.88,1.034 l 0,2.882 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.673 c 0,-0.748 0.55,-1.243 1.166,-1.243 0.627,0 0.88,0.462 0.88,1.034 l 0,2.882 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.289 c 0,-1.441 -0.891,-1.947 -2.002,-1.947 -0.869,0 -1.441,0.385 -1.892,1.012 -0.297,-0.759 -0.99,-1.012 -1.54,-1.012 -0.814,0 -1.518,0.374 -1.936,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.286,-0.803 -0.759,-0.803 -0.473,0 -0.759,0.319 -0.759,0.803 l 0,4.433 z" />
<path
id="path337"
style=""
d="m 39.622969,376.32687 c 0,1.683 0.935,2.904 2.915,2.904 1.65,0 2.442,-0.968 2.442,-1.672 0,-0.319 -0.264,-0.616 -0.671,-0.616 -0.847,0 -0.605,1.034 -1.727,1.034 -0.88,0 -1.353,-0.649 -1.353,-1.65 0,-1.452 0.737,-1.881 1.364,-1.881 1.155,0 0.88,0.946 1.639,0.946 0.407,0 0.748,-0.231 0.748,-0.693 0,-0.748 -1.001,-1.507 -2.343,-1.507 -1.969,0 -3.014,1.287 -3.014,3.135 z" />
<path
id="path339"
style=""
d="m 51.174172,374.84187 c 0,-1.155 -1.067,-1.65 -2.607,-1.65 -1.65,0 -2.552,0.814 -2.552,1.452 0,0.33 0.275,0.616 0.682,0.616 0.638,0 0.671,-0.88 1.859,-0.88 0.539,0 1.012,0.198 1.012,0.66 0,0.462 -0.308,0.55 -0.693,0.594 l -0.979,0.11 c -1.232,0.143 -2.244,0.517 -2.244,1.848 0,1.012 0.902,1.639 1.815,1.639 0.847,0 1.573,-0.242 2.2,-0.935 0.022,0.495 0.253,0.935 0.946,0.935 0.385,0 0.726,-0.253 0.726,-0.616 0,-0.253 -0.165,-0.407 -0.165,-1.078 l 0,-2.695 z m -1.606,2.167 c 0,0.594 -0.539,1.166 -1.419,1.166 -0.55,0 -0.891,-0.297 -0.891,-0.66 0,-0.484 0.363,-0.693 1.034,-0.792 l 0.583,-0.088 c 0.187,-0.033 0.517,-0.088 0.693,-0.253 l 0,0.627 z" />
<path
id="path341"
style=""
d="m 52.981781,377.80087 c 0,0.946 0.484,1.43 1.65,1.43 0.77,0 1.166,-0.253 1.166,-0.715 0,-0.341 -0.209,-0.539 -0.561,-0.539 l -0.231,0 c -0.286,0 -0.418,-0.132 -0.418,-0.374 l 0,-3.212 0.484,0 c 0.473,0 0.726,-0.143 0.726,-0.528 0,-0.385 -0.253,-0.528 -0.726,-0.528 l -0.484,0 0,-0.979 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,0.979 -0.275,0 c -0.451,0 -0.638,0.176 -0.638,0.528 0,0.352 0.187,0.528 0.638,0.528 l 0.275,0 0,3.41 z" />
</g>
</g>
<g
id="g3908-4-1-3"
transform="translate(145.125,-89.874981)">
<path
id="rect3806-4-2-6-8"
d="m 21.740473,652.23712 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86547 l 0,41.2691 c 0,1.03348 -0.832001,1.86548 -1.865473,1.86548 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86548 l 0,-41.2691 c 0,-1.03347 0.832001,-1.86547 1.865473,-1.86547 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-7-0-0"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(5.7477504,293.01433)">
<path
id="path345"
style=""
d="m 19.313016,368.42887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-5.643 1.705,0 c 0.517,0 0.935,-0.264 0.935,-0.759 0,-0.495 -0.418,-0.759 -0.935,-0.759 l -5.214,0 c -0.517,0 -0.935,0.264 -0.935,0.759 0,0.495 0.418,0.759 0.935,0.759 l 1.705,0 0,5.643 z" />
<path
id="path347"
style=""
d="m 24.386766,366.30587 c 0,-1.045 0.429,-1.826 1.364,-1.826 0.935,0 1.364,0.781 1.364,1.826 0,0.979 -0.407,1.837 -1.364,1.837 -0.957,0 -1.364,-0.858 -1.364,-1.837 z m -1.606,0 c 0,1.606 0.781,3.025 2.97,3.025 2.189,0 2.97,-1.419 2.97,-3.025 0,-1.694 -1.034,-3.014 -2.97,-3.014 -1.936,0 -2.97,1.32 -2.97,3.014 z" />
<path
id="path349"
style=""
d="m 29.747375,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.673 c 0,-0.748 0.55,-1.243 1.166,-1.243 0.627,0 0.88,0.462 0.88,1.034 l 0,2.882 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.673 c 0,-0.748 0.55,-1.243 1.166,-1.243 0.627,0 0.88,0.462 0.88,1.034 l 0,2.882 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.289 c 0,-1.441 -0.891,-1.947 -2.002,-1.947 -0.869,0 -1.441,0.385 -1.892,1.012 -0.297,-0.759 -0.99,-1.012 -1.54,-1.012 -0.814,0 -1.518,0.374 -1.936,1.012 l -0.022,0 0,-0.209 c 0,-0.484 -0.286,-0.803 -0.759,-0.803 -0.473,0 -0.759,0.319 -0.759,0.803 l 0,4.433 z" />
<path
id="path351"
style=""
d="m 40.172969,368.13187 c 0,0.803 0.418,1.056 1.056,1.056 l 4.323,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.575,0 0,-1.914 3.058,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -3.058,0 0,-1.716 3.487,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -4.235,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z" />
<path
id="path353"
style=""
d="m 47.713984,368.13187 c 0,0.803 0.418,1.056 1.056,1.056 l 4.323,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.575,0 0,-1.914 3.058,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -3.058,0 0,-1.716 3.487,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -4.235,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,5.808 z" />
</g>
</g>
<g
id="g3908-4-1-3-3"
transform="translate(145.125,-69.875003)">
<path
id="rect3806-4-2-6-8-5"
d="m 21.740473,657.23718 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86548 l 0,36.26907 c 0,1.03347 -0.832001,1.86548 -1.865473,1.86548 l -56.269054,0 c -1.033472,0 -1.865473,-0.83201 -1.865473,-1.86548 l 0,-36.26907 c 0,-1.03348 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-7-0-0-9"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(6.486036,298.2575)">
<path
id="path357"
style=""
d="m 26.540016,362.45587 c 0.044,-0.165 0.088,-0.341 0.088,-0.517 0,-0.55 -0.451,-0.814 -0.869,-0.814 -0.429,0 -0.704,0.209 -0.814,0.737 l -1.078,5.258 -0.022,0 -1.199,-5.137 c -0.11,-0.495 -0.264,-0.858 -1.023,-0.858 -0.671,0 -0.847,0.231 -0.946,0.671 l -1.232,5.324 -0.022,0 -1.067,-5.258 c -0.11,-0.528 -0.385,-0.737 -0.847,-0.737 -0.418,0 -0.869,0.264 -0.869,0.814 0,0.176 0.044,0.352 0.088,0.517 l 1.551,6.017 c 0.165,0.627 0.429,0.858 1.089,0.858 0.682,0 0.935,-0.286 1.078,-0.891 l 1.177,-4.829 0.022,0 1.177,4.829 c 0.154,0.605 0.396,0.891 1.078,0.891 0.66,0 0.924,-0.231 1.089,-0.858 l 1.551,-6.017 z" />
<path
id="path359"
style=""
d="m 27.450609,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-4.433 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,4.433 z m -0.033,-6.611 c 0,0.462 0.374,0.836 0.836,0.836 0.462,0 0.836,-0.374 0.836,-0.836 0,-0.462 -0.374,-0.836 -0.836,-0.836 -0.462,0 -0.836,0.374 -0.836,0.836 z" />
<path
id="path361"
style=""
d="m 30.501391,368.52787 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-6.6 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path363"
style=""
d="m 38.909172,361.92787 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,2.178 -0.022,0 c -0.319,-0.517 -0.869,-0.814 -1.584,-0.814 -1.694,0 -2.475,1.441 -2.475,2.981 0,2.079 1.177,3.058 2.519,3.058 0.781,0 1.43,-0.33 1.694,-1.012 l 0.022,0 0,0.253 c 0,0.495 0.253,0.759 0.726,0.759 0.495,0 0.726,-0.264 0.726,-0.759 l 0,-6.644 z m -4.081,4.4 c 0,-0.748 0.253,-1.782 1.276,-1.782 0.979,-0.011 1.287,0.957 1.287,1.782 0,0.913 -0.352,1.749 -1.287,1.749 -0.858,-0.022 -1.276,-0.803 -1.276,-1.749 z" />
<path
id="path365"
style=""
d="m 40.606781,368.52787 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-4.037 0.396,0 c 0.396,0 0.649,-0.143 0.649,-0.528 0,-0.385 -0.253,-0.528 -0.649,-0.528 l -0.396,0 0,-0.715 c 0,-0.242 0.077,-0.352 0.22,-0.352 0.099,0 0.187,0.033 0.286,0.033 0.286,0 0.539,-0.209 0.539,-0.594 0,-0.55 -0.473,-0.726 -0.968,-0.726 -1.199,0 -1.683,0.462 -1.683,1.551 l 0,0.803 -0.275,0 c -0.451,0 -0.638,0.176 -0.638,0.528 0,0.352 0.187,0.528 0.638,0.528 l 0.275,0 0,4.037 z m 3.333,0 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-6.6 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path367"
style=""
d="m 48.013391,363.89687 c -0.099,-0.363 -0.396,-0.605 -0.825,-0.605 -0.429,0 -0.781,0.33 -0.781,0.77 0,0.187 0.066,0.363 0.198,0.748 l 1.672,4.763 c -0.121,0.495 -0.352,0.506 -0.561,0.506 l -0.165,0 c -0.429,0 -0.737,0.22 -0.737,0.649 0,0.385 0.297,0.737 1.012,0.737 1.012,0 1.452,-0.572 1.837,-1.672 l 1.859,-5.269 c 0.077,-0.209 0.121,-0.374 0.121,-0.506 0,-0.198 -0.187,-0.726 -0.825,-0.726 -0.44,0 -0.66,0.308 -0.77,0.715 l -0.979,3.641 -0.022,0 -1.034,-3.751 z" />
</g>
</g>
<g
id="g3908-3-3"
transform="translate(145.125,-49.875)">
<path
id="rect3806-4-0-0"
d="m 21.740473,662.23718 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86548 l 0,31.26908 c 0,1.03347 -0.832001,1.86547 -1.865473,1.86547 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86547 l 0,-31.26908 c 0,-1.03348 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-8-5"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(5.5983218,303.07893)">
<path
id="path371"
style=""
d="m 24.725016,365.74487 c 0,-0.495 -0.209,-0.759 -0.737,-0.759 l -2.222,0 c -0.451,0 -0.704,0.253 -0.704,0.693 0,0.55 0.429,0.693 0.814,0.693 l 1.177,0 c -0.088,0.968 -0.924,1.617 -1.881,1.617 -1.474,0 -2.244,-1.078 -2.244,-2.64 0,-2.002 0.979,-2.816 2.222,-2.816 1.76,0 1.43,1.243 2.321,1.243 0.385,0 0.847,-0.165 0.847,-0.792 0,-0.704 -1.067,-1.903 -3.069,-1.903 -2.453,0 -4.125,1.474 -4.125,4.147 0,2.222 1.067,4.147 3.861,4.147 1.122,0 1.837,-0.418 2.354,-1.067 0.11,0.704 0.253,1.023 0.77,1.023 0.363,0 0.616,-0.275 0.616,-0.605 l 0,-2.981 z" />
<path
id="path373"
style=""
d="m 26.226,368.52787 c 0,0.528 0.319,0.803 0.803,0.803 0.484,0 0.803,-0.275 0.803,-0.803 l 0,-6.6 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path375"
style=""
d="m 34.523781,364.94187 c 0,-1.155 -1.067,-1.65 -2.607,-1.65 -1.65,0 -2.552,0.814 -2.552,1.452 0,0.33 0.275,0.616 0.682,0.616 0.638,0 0.671,-0.88 1.859,-0.88 0.539,0 1.012,0.198 1.012,0.66 0,0.462 -0.308,0.55 -0.693,0.594 l -0.979,0.11 c -1.232,0.143 -2.244,0.517 -2.244,1.848 0,1.012 0.902,1.639 1.815,1.639 0.847,0 1.573,-0.242 2.2,-0.935 0.022,0.495 0.253,0.935 0.946,0.935 0.385,0 0.726,-0.253 0.726,-0.616 0,-0.253 -0.165,-0.407 -0.165,-1.078 l 0,-2.695 z m -1.606,2.167 c 0,0.594 -0.539,1.166 -1.419,1.166 -0.55,0 -0.891,-0.297 -0.891,-0.66 0,-0.484 0.363,-0.693 1.034,-0.792 l 0.583,-0.088 c 0.187,-0.033 0.517,-0.088 0.693,-0.253 l 0,0.627 z" />
<path
id="path377"
style=""
d="m 35.660391,365.08487 c 0,1.078 0.726,1.463 1.661,1.694 l 0.946,0.231 c 0.572,0.143 0.924,0.209 0.924,0.616 0,0.33 -0.363,0.583 -0.935,0.583 -1.188,0 -1.254,-0.99 -1.947,-0.99 -0.451,0 -0.649,0.319 -0.649,0.671 0,0.792 1.21,1.441 2.662,1.441 1.21,0 2.475,-0.605 2.475,-1.914 0,-1.122 -1.089,-1.507 -2.002,-1.716 l -0.671,-0.154 c -0.495,-0.11 -0.858,-0.198 -0.858,-0.572 0,-0.341 0.363,-0.495 0.924,-0.495 1.012,0 1.034,0.737 1.661,0.737 0.418,0 0.671,-0.33 0.671,-0.704 0,-0.737 -1.232,-1.221 -2.453,-1.221 -1.111,0 -2.409,0.484 -2.409,1.793 z" />
<path
id="path379"
style=""
d="m 41.568594,365.08487 c 0,1.078 0.726,1.463 1.661,1.694 l 0.946,0.231 c 0.572,0.143 0.924,0.209 0.924,0.616 0,0.33 -0.363,0.583 -0.935,0.583 -1.188,0 -1.254,-0.99 -1.947,-0.99 -0.451,0 -0.649,0.319 -0.649,0.671 0,0.792 1.21,1.441 2.662,1.441 1.21,0 2.475,-0.605 2.475,-1.914 0,-1.122 -1.089,-1.507 -2.002,-1.716 l -0.671,-0.154 c -0.495,-0.11 -0.858,-0.198 -0.858,-0.572 0,-0.341 0.363,-0.495 0.924,-0.495 1.012,0 1.034,0.737 1.661,0.737 0.418,0 0.671,-0.33 0.671,-0.704 0,-0.737 -1.232,-1.221 -2.453,-1.221 -1.111,0 -2.409,0.484 -2.409,1.793 z" />
<path
id="path381"
style=""
d="m 47.971797,368.42887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-2.475 2.728,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -2.728,0 0,-1.848 3.223,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.971,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,6.105 z" />
<path
id="path383"
style=""
d="m 54.75725,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-4.433 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,4.433 z m -0.033,-6.611 c 0,0.462 0.374,0.836 0.836,0.836 0.462,0 0.836,-0.374 0.836,-0.836 0,-0.462 -0.374,-0.836 -0.836,-0.836 -0.462,0 -0.836,0.374 -0.836,0.836 z" />
<path
id="path385"
style=""
d="m 57.467031,365.08487 c 0,1.078 0.726,1.463 1.661,1.694 l 0.946,0.231 c 0.572,0.143 0.924,0.209 0.924,0.616 0,0.33 -0.363,0.583 -0.935,0.583 -1.188,0 -1.254,-0.99 -1.947,-0.99 -0.451,0 -0.649,0.319 -0.649,0.671 0,0.792 1.21,1.441 2.662,1.441 1.21,0 2.475,-0.605 2.475,-1.914 0,-1.122 -1.089,-1.507 -2.002,-1.716 l -0.671,-0.154 c -0.495,-0.11 -0.858,-0.198 -0.858,-0.572 0,-0.341 0.363,-0.495 0.924,-0.495 1.012,0 1.034,0.737 1.661,0.737 0.418,0 0.671,-0.33 0.671,-0.704 0,-0.737 -1.232,-1.221 -2.453,-1.221 -1.111,0 -2.409,0.484 -2.409,1.793 z" />
<path
id="path387"
style=""
d="m 63.628234,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.474,0.429 -1.793,0.847 l -0.022,0 0,-2.211 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
</g>
</g>
<g
id="g3908-3-3-7"
transform="translate(145.125,-29.875002)">
<path
id="rect3806-4-0-0-8"
d="m 21.740473,667.23718 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86548 l 0,26.26907 c 0,1.03348 -0.832001,1.86548 -1.865473,1.86548 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86548 l 0,-26.26907 c 0,-1.03348 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-8-5-5"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(5.4917504,307.90036)">
<path
id="path391"
style=""
d="m 17.025016,365.12887 c 0,2.398 1.166,4.246 4.004,4.246 2.706,0 4.004,-2.013 4.004,-4.246 0,-2.321 -1.408,-4.048 -4.004,-4.048 -2.596,0 -4.004,1.727 -4.004,4.048 z m 1.804,0 c 0,-1.518 0.726,-2.596 2.2,-2.596 1.474,0 2.2,1.078 2.2,2.596 0,1.518 -0.561,2.794 -2.2,2.794 -1.694,0 -2.2,-1.276 -2.2,-2.794 z" />
<path
id="path393"
style=""
d="m 26.577484,367.90087 c 0,0.946 0.484,1.43 1.65,1.43 0.77,0 1.166,-0.253 1.166,-0.715 0,-0.341 -0.209,-0.539 -0.561,-0.539 l -0.231,0 c -0.286,0 -0.418,-0.132 -0.418,-0.374 l 0,-3.212 0.484,0 c 0.473,0 0.726,-0.143 0.726,-0.528 0,-0.385 -0.253,-0.528 -0.726,-0.528 l -0.484,0 0,-0.979 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,0.979 -0.275,0 c -0.451,0 -0.638,0.176 -0.638,0.528 0,0.352 0.187,0.528 0.638,0.528 l 0.275,0 0,3.41 z" />
<path
id="path395"
style=""
d="m 30.220031,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-2.651 c 0,-0.803 0.66,-1.265 1.221,-1.265 0.693,0 1.012,0.462 1.012,1.111 l 0,2.805 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-3.124 c 0,-1.628 -1.056,-2.112 -2.024,-2.112 -0.913,0 -1.474,0.429 -1.793,0.847 l -0.022,0 0,-2.211 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.6 z" />
<path
id="path397"
style=""
d="m 41.938641,366.61387 c 0.539,0 0.704,-0.143 0.704,-0.693 0,-1.32 -1.056,-2.629 -2.904,-2.629 -1.903,0 -3.036,1.254 -3.036,3.124 0,1.397 0.847,2.915 3.091,2.915 0.968,0 2.519,-0.451 2.519,-1.419 0,-0.297 -0.275,-0.627 -0.66,-0.627 -0.649,0 -0.649,0.792 -1.859,0.792 -0.935,0 -1.485,-0.616 -1.485,-1.463 l 3.63,0 z m -3.63,-0.924 c 0.176,-0.781 0.66,-1.276 1.463,-1.276 0.715,0 1.265,0.539 1.353,1.276 l -2.816,0 z" />
<path
id="path399"
style=""
d="m 43.75725,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-1.87 c 0,-1.331 0.352,-1.782 1.001,-1.782 l 0.286,0 c 0.396,0 0.792,-0.209 0.792,-0.803 0,-0.451 -0.374,-0.781 -0.88,-0.781 -0.781,0 -1.144,0.693 -1.331,1.364 l -0.022,0 0,-0.616 c 0,-0.484 -0.319,-0.748 -0.726,-0.748 -0.407,0 -0.726,0.264 -0.726,0.748 l 0,4.488 z" />
</g>
</g>
<g
id="g3822-0-3"
transform="translate(130,2.421875e-6)">
<path
id="path3005-2-8-1"
d="m 19.911936,426.71852 a 9.1659365,9.1659365 0 0 1 -2.53643,-12.71142 9.1659365,9.1659365 0 0 1 12.711199,-2.53756 9.1659365,9.1659365 0 0 1 2.538696,12.71097 9.1659365,9.1659365 0 0 1 -12.710747,2.53983 L 25,419.09448 Z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#000000;fill-opacity:1;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 1;stroke-dashoffset:0;stroke-opacity:0.13524589;marker:none;enable-background:accumulate"
transform="matrix(0.54549827,0,0,0.54549827,36.362543,498.74687)" />
<path
transform="translate(0,308.2677)"
id="path3804-9-3"
d="m 50,419.09448 c 0,-15 0,-25.36336 0,-25.36336"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
</g>
<path
id="rect3806-0-6"
d="m 138.03046,661.99884 83.93908,0 c 1.67887,0 3.03046,1.35159 3.03046,3.03046 l 0,34.30242 c 0,1.67888 -1.35159,3.03046 -3.03046,3.03046 l -83.93908,0 c -1.67887,0 -3.03046,-1.35158 -3.03046,-3.03046 l 0,-34.30242 c 0,-1.67887 1.35159,-3.03046 3.03046,-3.03046 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-3-6"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(122.76475,307.13793)">
<path
id="path404"
style=""
d="m 17.757016,370.83262 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-9.312 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,9.312 z" />
<path
id="path406"
style=""
d="m 22.531516,370.97662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-3.856 c 0,-1.168 0.96,-1.84 1.776,-1.84 1.008,0 1.472,0.672 1.472,1.616 l 0,4.08 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-4.544 c 0,-2.368 -1.536,-3.072 -2.944,-3.072 -1.328,0 -2.176,0.608 -2.832,1.472 l -0.032,0 0,-0.304 c 0,-0.704 -0.32,-1.168 -1.056,-1.168 -0.736,0 -1.056,0.464 -1.056,1.168 l 0,6.448 z" />
<path
id="path408"
style=""
d="m 31.944766,365.96862 c 0,1.568 1.056,2.128 2.416,2.464 l 1.376,0.336 c 0.832,0.208 1.344,0.304 1.344,0.896 0,0.48 -0.528,0.848 -1.36,0.848 -1.728,0 -1.824,-1.44 -2.832,-1.44 -0.656,0 -0.944,0.464 -0.944,0.976 0,1.152 1.76,2.096 3.872,2.096 1.76,0 3.6,-0.88 3.6,-2.784 0,-1.632 -1.584,-2.192 -2.912,-2.496 l -0.976,-0.224 c -0.72,-0.16 -1.248,-0.288 -1.248,-0.832 0,-0.496 0.528,-0.72 1.344,-0.72 1.472,0 1.504,1.072 2.416,1.072 0.608,0 0.976,-0.48 0.976,-1.024 0,-1.072 -1.792,-1.776 -3.568,-1.776 -1.616,0 -3.504,0.704 -3.504,2.608 z" />
<path
id="path410"
style=""
d="m 41.514516,370.06462 c 0,1.376 0.704,2.08 2.4,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
<path
id="path412"
style=""
d="m 54.572766,365.76062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path414"
style=""
d="m 56.722016,370.97662 c 0,0.768 0.464,1.168 1.168,1.168 0.704,0 1.168,-0.4 1.168,-1.168 l 0,-9.6 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path416"
style=""
d="m 61.159516,370.97662 c 0,0.768 0.464,1.168 1.168,1.168 0.704,0 1.168,-0.4 1.168,-1.168 l 0,-9.6 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path418"
style=""
d="m 78.135266,365.76062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path420"
style=""
d="m 21.597016,379.16862 c -0.832,-0.192 -1.792,-0.448 -1.792,-1.248 0,-0.8 0.672,-1.36 1.888,-1.36 2.448,0 2.224,1.712 3.44,1.712 0.64,0 1.2,-0.384 1.2,-1.04 0,-1.536 -2.416,-2.688 -4.464,-2.688 -2.224,0 -4.592,0.96 -4.592,3.52 0,1.232 0.432,2.544 2.816,3.152 l 2.96,0.752 c 0.896,0.224 1.12,0.736 1.12,1.2 0,0.768 -0.752,1.52 -2.112,1.52 -2.656,0 -2.288,-2.08 -3.712,-2.08 -0.64,0 -1.104,0.448 -1.104,1.088 0,1.248 1.488,2.912 4.816,2.912 3.168,0 4.736,-1.552 4.736,-3.632 0,-1.344 -0.608,-2.768 -3.008,-3.312 l -2.192,-0.496 z" />
<path
id="path422"
style=""
d="m 35.701766,382.59262 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664,-0.656 3.664,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944,0 -0.944,1.152 -2.704,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.28,0 z m -5.28,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
<path
id="path424"
style=""
d="m 38.347016,385.37662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-2.72 c 0,-1.936 0.512,-2.592 1.456,-2.592 l 0.416,0 c 0.576,0 1.152,-0.304 1.152,-1.168 0,-0.656 -0.544,-1.136 -1.28,-1.136 -1.136,0 -1.664,1.008 -1.936,1.984 l -0.032,0 0,-0.896 c 0,-0.704 -0.464,-1.088 -1.056,-1.088 -0.592,0 -1.056,0.384 -1.056,1.088 l 0,6.528 z" />
<path
id="path426"
style=""
d="m 46.255016,385.71262 c 0.224,0.624 0.368,0.832 1.536,0.832 1.168,0 1.312,-0.208 1.536,-0.832 l 2.208,-6.144 c 0.064,-0.192 0.144,-0.448 0.144,-0.592 0,-0.832 -0.576,-1.216 -1.136,-1.216 -0.88,0 -1.104,0.736 -1.168,0.976 l -1.568,5.28 -0.032,0 -1.568,-5.28 c -0.064,-0.24 -0.288,-0.976 -1.168,-0.976 -0.56,0 -1.136,0.384 -1.136,1.216 0,0.144 0.08,0.4 0.144,0.592 l 2.208,6.144 z" />
<path
id="path428"
style=""
d="m 59.983016,382.59262 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664,-0.656 3.664,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944,0 -0.944,1.152 -2.704,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.28,0 z m -5.28,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
<path
id="path430"
style=""
d="m 62.628266,385.37662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-2.72 c 0,-1.936 0.512,-2.592 1.456,-2.592 l 0.416,0 c 0.576,0 1.152,-0.304 1.152,-1.168 0,-0.656 -0.544,-1.136 -1.28,-1.136 -1.136,0 -1.664,1.008 -1.936,1.984 l -0.032,0 0,-0.896 c 0,-0.704 -0.464,-1.088 -1.056,-1.088 -0.592,0 -1.056,0.384 -1.056,1.088 l 0,6.528 z" />
</g>
</g>
<g
id="g3238-6"
transform="translate(460,-0.36332963)">
<g
id="g3908-0"
transform="translate(50.125,-29.511643)">
<path
id="rect3806-4-6"
d="m 16.740473,667.23718 56.269054,0 c 1.033472,0 1.865473,0.832 1.865473,1.86548 l 0,26.26908 c 0,1.03347 -0.832001,1.86547 -1.865473,1.86547 l -56.269054,0 c -1.033472,0 -1.865473,-0.832 -1.865473,-1.86547 l 0,-26.26908 c 0,-1.03348 0.832001,-1.86548 1.865473,-1.86548 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#e0e0e0;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:1, 2;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-5-9"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:11px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(-0.038706,307.54845)">
<path
id="path434"
style=""
d="m 17.421016,368.42887 c 0,0.539 0.352,0.902 0.902,0.902 0.55,0 0.902,-0.363 0.902,-0.902 l 0,-2.475 2.728,0 c 0.473,0 0.847,-0.132 0.847,-0.693 0,-0.561 -0.374,-0.693 -0.847,-0.693 l -2.728,0 0,-1.848 3.223,0 c 0.528,0 0.913,-0.154 0.913,-0.726 0,-0.572 -0.385,-0.726 -0.913,-0.726 l -3.971,0 c -0.638,0 -1.056,0.253 -1.056,1.056 l 0,6.105 z" />
<path
id="path436"
style=""
d="m 24.206469,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-4.433 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.803,0.374 -0.803,0.803 l 0,4.433 z m -0.033,-6.611 c 0,0.462 0.374,0.836 0.836,0.836 0.462,0 0.836,-0.374 0.836,-0.836 0,-0.462 -0.374,-0.836 -0.836,-0.836 -0.462,0 -0.836,0.374 -0.836,0.836 z" />
<path
id="path438"
style=""
d="m 27.25725,368.52787 c 0,0.429 0.176,0.803 0.803,0.803 0.627,0 0.803,-0.374 0.803,-0.803 l 0,-1.87 c 0,-1.331 0.352,-1.782 1.001,-1.782 l 0.286,0 c 0.396,0 0.792,-0.209 0.792,-0.803 0,-0.451 -0.374,-0.781 -0.88,-0.781 -0.781,0 -1.144,0.693 -1.331,1.364 l -0.022,0 0,-0.616 c 0,-0.484 -0.319,-0.748 -0.726,-0.748 -0.407,0 -0.726,0.264 -0.726,0.748 l 0,4.488 z" />
<path
id="path440"
style=""
d="m 36.503094,366.61387 c 0.539,0 0.704,-0.143 0.704,-0.693 0,-1.32 -1.056,-2.629 -2.904,-2.629 -1.903,0 -3.036,1.254 -3.036,3.124 0,1.397 0.847,2.915 3.091,2.915 0.968,0 2.519,-0.451 2.519,-1.419 0,-0.297 -0.275,-0.627 -0.66,-0.627 -0.649,0 -0.649,0.792 -1.859,0.792 -0.935,0 -1.485,-0.616 -1.485,-1.463 l 3.63,0 z m -3.63,-0.924 c 0.176,-0.781 0.66,-1.276 1.463,-1.276 0.715,0 1.265,0.539 1.353,1.276 l -2.816,0 z" />
<path
id="path442"
style=""
d="m 38.233703,368.57187 c 0,0.495 0.231,0.759 0.726,0.759 0.473,0 0.726,-0.264 0.726,-0.759 l 0,-0.253 0.022,0 c 0.264,0.682 0.913,1.012 1.694,1.012 1.342,0 2.519,-0.979 2.519,-3.058 0,-1.54 -0.781,-2.981 -2.475,-2.981 -0.715,0 -1.265,0.297 -1.584,0.814 l -0.022,0 0,-2.178 c 0,-0.528 -0.319,-0.803 -0.803,-0.803 -0.484,0 -0.803,0.275 -0.803,0.803 l 0,6.644 z m 4.081,-2.244 c 0,0.946 -0.418,1.727 -1.276,1.749 -0.935,0 -1.287,-0.836 -1.287,-1.749 0,-0.825 0.308,-1.793 1.287,-1.782 1.023,0 1.276,1.034 1.276,1.782 z" />
<path
id="path444"
style=""
d="m 50.403312,364.09487 c 0,-0.429 -0.176,-0.803 -0.803,-0.803 -0.627,0 -0.802999,0.374 -0.802999,0.803 l 0,2.651 c 0,0.803 -0.660001,1.265 -1.221001,1.265 -0.692999,0 -1.012,-0.462 -1.012,-1.111 l 0,-2.805 c 0,-0.429 -0.176,-0.803 -0.802999,-0.803 -0.627001,0 -0.803001,0.374 -0.803001,0.803 l 0,3.124 c 0,1.628 1.056001,2.112 2.024,2.112 0.913001,0 1.496,-0.418 1.947001,-1.012 l 0.022,0 0,0.209 c 0,0.484 0.22,0.803 0.726,0.803 0.506,0 0.726,-0.319 0.726,-0.803 l 0,-4.433 z" />
<path
id="path446"
style=""
d="m 53.046922,366.29487 c 0,-0.99 0.319,-1.749 1.353,-1.749 0.748,0 1.188,0.517 1.188,1.683 0,1.144 -0.55,1.617 -1.265,1.617 -0.913,0 -1.276,-0.814 -1.276,-1.551 z m 4.081,-2.244 c 0,-0.495 -0.231,-0.759 -0.726,-0.759 -0.473,0 -0.726,0.264 -0.726,0.759 l 0,0.198 -0.022,0 c -0.297,-0.594 -0.913,-0.957 -1.694,-0.957 -1.353,0 -2.519,0.979 -2.519,3.058 0,1.584 0.88,2.684 2.574,2.684 0.638,0 1.265,-0.352 1.551,-0.77 l 0.022,0 0,0.33 c 0,1.265 -0.396,1.76 -1.375,1.76 -0.902,0 -1.034,-0.825 -1.705,-0.825 -0.352,0 -0.66,0.286 -0.66,0.682 0,0.781 1.199,1.331 2.42,1.331 1.672,0 2.86,-0.891 2.86,-2.827 l 0,-4.664 z" />
</g>
</g>
<g
id="g3822-1"
transform="translate(30,0.3633567)">
<path
id="path3005-2-1"
d="m 19.911936,426.71852 a 9.1659365,9.1659365 0 0 1 -2.602258,-12.61135 9.1659365,9.1659365 0 0 1 12.576029,-2.76796 9.1659365,9.1659365 0 0 1 2.933174,12.53852 9.1659365,9.1659365 0 0 1 -12.498848,3.09789"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.66637278;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
transform="matrix(0.54549827,0,0,0.54549827,36.362543,498.74687)" />
<path
transform="translate(0,308.2677)"
id="path3804-4"
d="m 50,414.09448 c 0,-15 0,-20.36336 0,-20.36336"
style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 4;stroke-dashoffset:0;stroke-opacity:1" />
</g>
<g
id="g3868-8"
transform="translate(4.8113861,-12.853955)">
<path
id="rect3806-8"
d="m 33.219076,675.57947 83.939074,0 c 1.67888,0 3.03046,1.35158 3.03046,3.03046 l 0,33.93905 c 0,1.67888 -1.35158,3.03046 -3.03046,3.03046 l -83.939074,0 c -1.678876,0 -3.030462,-1.35158 -3.030462,-3.03046 l 0,-33.93905 c 0,-1.67888 1.351586,-3.03046 3.030462,-3.03046 z"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:2;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:2, 4;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate" />
<g
id="flowRoot3808-4"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(18.369364,319.99189)">
<path
id="path451"
style=""
d="m 17.245016,366.03262 c 0,3.488 1.696,6.176 5.824,6.176 3.936,0 5.824,-2.928 5.824,-6.176 0,-3.376 -2.048,-5.888 -5.824,-5.888 -3.776,0 -5.824,2.512 -5.824,5.888 z m 2.624,0 c 0,-2.208 1.056,-3.776 3.2,-3.776 2.144,0 3.2,1.568 3.2,3.776 0,2.208 -0.816,4.064 -3.2,4.064 -2.464,0 -3.2,-1.856 -3.2,-4.064 z" />
<path
id="path453"
style=""
d="m 31.139516,370.06462 c 0,1.376 0.704,2.08 2.4,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
<path
id="path455"
style=""
d="m 36.437766,370.97662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-3.856 c 0,-1.168 0.96,-1.84 1.776,-1.84 1.008,0 1.472,0.672 1.472,1.616 l 0,4.08 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-4.544 c 0,-2.368 -1.536,-3.072 -2.944,-3.072 -1.328,0 -2.144,0.624 -2.608,1.232 l -0.032,0 0,-3.216 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path457"
style=""
d="m 53.483016,368.19262 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664,-0.656 3.664,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944,0 -0.944,1.152 -2.704,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.28,0 z m -5.28,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
<path
id="path459"
style=""
d="m 56.128266,370.97662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-2.72 c 0,-1.936 0.512,-2.592 1.456,-2.592 l 0.416,0 c 0.576,0 1.152,-0.304 1.152,-1.168 0,-0.656 -0.544,-1.136 -1.28,-1.136 -1.136,0 -1.664,1.008 -1.936,1.984 l -0.032,0 0,-0.896 c 0,-0.704 -0.464,-1.088 -1.056,-1.088 -0.592,0 -1.056,0.384 -1.056,1.088 l 0,6.528 z" />
<path
id="path461"
style=""
d="m 20.573016,385.23262 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-8.208 2.48,0 c 0.752,0 1.36,-0.384 1.36,-1.104 0,-0.72 -0.608,-1.104 -1.36,-1.104 l -7.584,0 c -0.752,0 -1.36,0.384 -1.36,1.104 0,0.72 0.608,1.104 1.36,1.104 l 2.48,0 0,8.208 z" />
<path
id="path463"
style=""
d="m 27.953016,382.14462 c 0,-1.52 0.624,-2.656 1.984,-2.656 1.36,0 1.984,1.136 1.984,2.656 0,1.424 -0.592,2.672 -1.984,2.672 -1.392,0 -1.984,-1.248 -1.984,-2.672 z m -2.336,0 c 0,2.336 1.136,4.4 4.32,4.4 3.184,0 4.32,-2.064 4.32,-4.4 0,-2.464 -1.504,-4.384 -4.32,-4.384 -2.816,0 -4.32,1.92 -4.32,4.384 z" />
<path
id="path465"
style=""
d="m 37.734266,382.14462 c 0,-1.52 0.624,-2.656 1.984,-2.656 1.36,0 1.984,1.136 1.984,2.656 0,1.424 -0.592,2.672 -1.984,2.672 -1.392,0 -1.984,-1.248 -1.984,-2.672 z m -2.336,0 c 0,2.336 1.136,4.4 4.32,4.4 3.184,0 4.32,-2.064 4.32,-4.4 0,-2.464 -1.504,-4.384 -4.32,-4.384 -2.816,0 -4.32,1.92 -4.32,4.384 z" />
<path
id="path467"
style=""
d="m 45.659516,385.37662 c 0,0.768 0.464,1.168 1.168,1.168 0.704,0 1.168,-0.4 1.168,-1.168 l 0,-9.6 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,9.6 z" />
<path
id="path469"
style=""
d="m 49.601016,380.36862 c 0,1.568 1.056,2.128 2.416,2.464 l 1.376,0.336 c 0.832,0.208 1.344,0.304 1.344,0.896 0,0.48 -0.528,0.848 -1.36,0.848 -1.728,0 -1.824,-1.44 -2.832,-1.44 -0.656,0 -0.944,0.464 -0.944,0.976 0,1.152 1.76,2.096 3.872,2.096 1.76,0 3.6,-0.88 3.6,-2.784 0,-1.632 -1.584,-2.192 -2.912,-2.496 l -0.976,-0.224 c -0.72,-0.16 -1.248,-0.288 -1.248,-0.832 0,-0.496 0.528,-0.72 1.344,-0.72 1.472,0 1.504,1.072 2.416,1.072 0.608,0 0.976,-0.48 0.976,-1.024 0,-1.072 -1.792,-1.776 -3.568,-1.776 -1.616,0 -3.504,0.704 -3.504,2.608 z" />
</g>
</g>
</g>
<path
id="path3005-2-1-8-2"
d="m 14.823881,434.34255 a 18.331858,18.331858 0 0 1 -5.2045132,-25.22269 18.331858,18.331858 0 0 1 25.1520382,-5.53591 18.331858,18.331858 0 0 1 5.866343,25.07703 18.331858,18.331858 0 0 1 -24.997676,6.19576"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.66637278;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
transform="matrix(0.54549827,0,0,0.54549827,581.36254,498.74687)" />
<g
id="flowRoot3808-4-1"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(590.48907,346.65234)">
<path
id="path473"
style=""
d="m 28.445016,366.92862 c 0,-0.72 -0.304,-1.104 -1.072,-1.104 l -3.232,0 c -0.656,0 -1.024,0.368 -1.024,1.008 0,0.8 0.624,1.008 1.184,1.008 l 1.712,0 c -0.128,1.408 -1.344,2.352 -2.736,2.352 -2.144,0 -3.264,-1.568 -3.264,-3.84 0,-2.912 1.424,-4.096 3.232,-4.096 2.56,0 2.08,1.808 3.376,1.808 0.56,0 1.232,-0.24 1.232,-1.152 0,-1.024 -1.552,-2.768 -4.464,-2.768 -3.568,0 -6,2.144 -6,6.032 0,3.232 1.552,6.032 5.616,6.032 1.632,0 2.672,-0.608 3.424,-1.552 0.16,1.024 0.368,1.488 1.12,1.488 0.528,0 0.896,-0.4 0.896,-0.88 l 0,-4.336 z" />
<path
id="path475"
style=""
d="m 32.484266,367.74462 c 0,-1.52 0.624,-2.656 1.984,-2.656 1.36,0 1.984,1.136 1.984,2.656 0,1.424 -0.592,2.672 -1.984,2.672 -1.392,0 -1.984,-1.248 -1.984,-2.672 z m -2.336,0 c 0,2.336 1.136,4.4 4.32,4.4 3.184,0 4.32,-2.064 4.32,-4.4 0,-2.464 -1.504,-4.384 -4.32,-4.384 -2.816,0 -4.32,1.92 -4.32,4.384 z" />
<path
id="path477"
style=""
d="m 17.389016,380.57662 c 0,3.968 2.128,6.032 5.728,6.032 2.544,0 4.56,-1.648 4.56,-3.312 0,-0.64 -0.64,-1.008 -1.28,-1.008 -1.264,0 -1.216,2.208 -3.28,2.208 -2.272,0 -3.104,-1.824 -3.104,-3.92 0,-2.496 1.36,-3.92 3.008,-3.92 2.4,0 1.952,2.08 3.472,2.08 0.784,0 1.184,-0.448 1.184,-1.184 0,-1.12 -1.648,-3.008 -4.656,-3.008 -3.712,0 -5.632,2.784 -5.632,6.032 z" />
<path
id="path479"
style=""
d="m 29.159516,385.37662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-2.72 c 0,-1.936 0.512,-2.592 1.456,-2.592 l 0.416,0 c 0.576,0 1.152,-0.304 1.152,-1.168 0,-0.656 -0.544,-1.136 -1.28,-1.136 -1.136,0 -1.664,1.008 -1.936,1.984 l -0.032,0 0,-0.896 c 0,-0.704 -0.464,-1.088 -1.056,-1.088 -0.592,0 -1.056,0.384 -1.056,1.088 l 0,6.528 z" />
<path
id="path481"
style=""
d="m 42.608016,382.59262 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664,-0.656 3.664,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944,0 -0.944,1.152 -2.704,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.28,0 z m -5.28,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
<path
id="path483"
style=""
d="m 52.885266,380.16062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path485"
style=""
d="m 55.514516,384.46462 c 0,1.376 0.704,2.08 2.4,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
<path
id="path487"
style=""
d="m 68.076766,382.59262 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664,-0.656 3.664,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944,0 -0.944,1.152 -2.704,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.28,0 z m -5.28,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
<path
id="path489"
style=""
d="m 83.260266,380.16062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path491"
style=""
d="m 17.757016,399.63261 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-3.12 2.912,0 c 2.544,0 4,-1.552 4,-3.648 0,-2.56 -1.776,-3.648 -3.984,-3.648 l -4.016,0 c -0.928,0 -1.536,0.368 -1.536,1.536 l 0,8.88 z m 2.624,-8.4 2.176,0 c 1.296,0 2.112,0.48 2.112,1.632 0,0.992 -0.784,1.632 -1.84,1.632 l -2.448,0 0,-3.264 z" />
<path
id="path493"
style=""
d="m 28.847016,399.77661 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-2.72 c 0,-1.936 0.512,-2.592 1.456,-2.592 l 0.416,0 c 0.576,0 1.152,-0.304 1.152,-1.168 0,-0.656 -0.544,-1.136 -1.28,-1.136 -1.136,0 -1.664,1.008 -1.936,1.984 l -0.032,0 0,-0.896 c 0,-0.704 -0.464,-1.088 -1.056,-1.088 -0.592,0 -1.056,0.384 -1.056,1.088 l 0,6.528 z" />
<path
id="path495"
style=""
d="m 37.015516,396.54461 c 0,-1.52 0.624,-2.656 1.984,-2.656 1.36,0 1.984,1.136 1.984,2.656 0,1.424 -0.592,2.672 -1.984,2.672 -1.392,0 -1.984,-1.248 -1.984,-2.672 z m -2.336,0 c 0,2.336 1.136,4.4 4.32,4.4 3.184,0 4.32,-2.064 4.32,-4.4 0,-2.464 -1.504,-4.384 -4.32,-4.384 -2.816,0 -4.32,1.92 -4.32,4.384 z" />
<path
id="path497"
style=""
d="m 44.940766,401.80861 c 0,0.224 -0.112,0.416 -0.336,0.416 l -0.256,0 c -0.496,0 -0.736,0.224 -0.736,0.816 0,0.672 0.384,1.008 1.28,1.008 1.744,0 2.384,-0.8 2.384,-2.48 l 0,-8.24 c 0,-0.624 -0.256,-1.168 -1.168,-1.168 -0.912,0 -1.168,0.544 -1.168,1.168 l 0,8.48 z m -0.048,-11.648 c 0,0.672 0.544,1.216 1.216,1.216 0.672,0 1.216,-0.544 1.216,-1.216 0,-0.672 -0.544,-1.216 -1.216,-1.216 -0.672,0 -1.216,0.544 -1.216,1.216 z" />
<path
id="path499"
style=""
d="m 56.514266,396.99261 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664,-0.656 3.664,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944,0 -0.944,1.152 -2.704,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.28,0 z m -5.28,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
<path
id="path501"
style=""
d="m 58.583516,396.72061 c 0,2.448 1.36,4.224 4.24,4.224 2.4,0 3.552,-1.408 3.552,-2.432 0,-0.464 -0.384,-0.896 -0.976,-0.896 -1.232,0 -0.88,1.504 -2.512,1.504 -1.28,0 -1.968,-0.944 -1.968,-2.4 0,-2.112 1.072,-2.736 1.984,-2.736 1.68,0 1.28,1.376 2.384,1.376 0.592,0 1.088,-0.336 1.088,-1.008 0,-1.088 -1.456,-2.192 -3.408,-2.192 -2.864,0 -4.384,1.872 -4.384,4.56 z" />
<path
id="path503"
style=""
d="m 68.233266,398.86461 c 0,1.376 0.704,2.08 2.4,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
</g>
<path
id="path3005-2-1-8-2-7"
d="m 14.823881,434.34255 a 18.331858,18.331858 0 0 1 -5.2045132,-25.22269 18.331858,18.331858 0 0 1 25.1520382,-5.53591 18.331858,18.331858 0 0 1 5.866343,25.07703 18.331858,18.331858 0 0 1 -24.997676,6.19576"
style="color:#000000;display:inline;overflow:visible;visibility:visible;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.66637278;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1;marker:none;enable-background:accumulate"
transform="matrix(0.54549827,0,0,0.54549827,171.36254,498.74687)" />
<g
id="flowRoot3808-4-1-8"
style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:16px;line-height:89.99999762%;font-family:'Helvetica Rounded LT Std';-inkscape-font-specification:'Helvetica Rounded LT Std Bold';text-align:end;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:end;fill:#000000;fill-opacity:1;stroke:none"
transform="translate(69.45294,353.63285)">
<path
id="path507"
style=""
d="m 68.372406,364.76862 c -0.832,-0.192 -1.792,-0.448 -1.792,-1.248 0,-0.8 0.672,-1.36 1.888,-1.36 2.448,0 2.224,1.712 3.44,1.712 0.64,0 1.2,-0.384 1.2,-1.04 0,-1.536 -2.416,-2.688 -4.464,-2.688 -2.224,0 -4.592,0.96 -4.592,3.52 0,1.232 0.432,2.544 2.816,3.152 l 2.96,0.752 c 0.896,0.224 1.12,0.736 1.12,1.2 0,0.768 -0.752,1.52 -2.112,1.52 -2.656,0 -2.288,-2.08 -3.712,-2.08 -0.64,0 -1.104,0.448 -1.104,1.088 0,1.248 1.488,2.912 4.816,2.912 3.168,0 4.736,-1.552 4.736,-3.632 0,-1.344 -0.608,-2.768 -3.008,-3.312 l -2.192,-0.496 z" />
<path
id="path509"
style=""
d="m 75.821156,370.06462 c 0,1.376 0.704,2.08 2.4,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464,-1.168 -1.168,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
<path
id="path511"
style=""
d="m 88.879406,365.76062 c 0,-1.68 -1.552,-2.4 -3.792,-2.4 -2.4,0 -3.712,1.184 -3.712,2.112 0,0.48 0.4,0.896 0.992,0.896 0.928,0 0.976,-1.28 2.704,-1.28 0.784,0 1.472,0.288 1.472,0.96 0,0.672 -0.448,0.8 -1.008,0.864 l -1.424,0.16 c -1.792,0.208 -3.264,0.752 -3.264,2.688 0,1.472 1.312,2.384 2.64,2.384 1.232,0 2.288,-0.352 3.2,-1.36 0.032,0.72 0.368,1.36 1.376,1.36 0.56,0 1.056,-0.368 1.056,-0.896 0,-0.368 -0.24,-0.592 -0.24,-1.568 l 0,-3.92 z m -2.336,3.152 c 0,0.864 -0.784,1.696 -2.064,1.696 -0.8,0 -1.296,-0.432 -1.296,-0.96 0,-0.704 0.528,-1.008 1.504,-1.152 l 0.848,-0.128 c 0.272,-0.048 0.752,-0.128 1.008,-0.368 l 0,0.912 z" />
<path
id="path513"
style=""
d="m 91.028656,370.97662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-2.72 c 0,-1.936 0.512,-2.592 1.456,-2.592 l 0.416,0 c 0.576,0 1.152,-0.304 1.152,-1.168 0,-0.656 -0.544,-1.136 -1.28,-1.136 -1.136,0 -1.664,1.008 -1.936,1.984 l -0.032,0 0,-0.896 c 0,-0.704 -0.464,-1.088 -1.056,-1.088 -0.592,0 -1.056,0.384 -1.056,1.088 l 0,6.528 z" />
<path
id="path515"
style=""
d="m 98.008656,370.06462 c 0,1.376 0.704,2.08 2.400004,2.08 1.12,0 1.696,-0.368 1.696,-1.04 0,-0.496 -0.304,-0.784 -0.816,-0.784 l -0.336,0 c -0.416,0 -0.608,-0.192 -0.608,-0.544 l 0,-4.672 0.704,0 c 0.688,0 1.056,-0.208 1.056,-0.768 0,-0.56 -0.368,-0.768 -1.056,-0.768 l -0.704,0 0,-1.424 c 0,-0.768 -0.464004,-1.168 -1.168004,-1.168 -0.704,0 -1.168,0.4 -1.168,1.168 l 0,1.424 -0.4,0 c -0.656,0 -0.928,0.256 -0.928,0.768 0,0.512 0.272,0.768 0.928,0.768 l 0.4,0 0,4.96 z" />
<path
id="path517"
style=""
d="m 65.282406,385.23262 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-3.84 4.768,0 0,3.84 c 0,0.784 0.512,1.312 1.312,1.312 0.8,0 1.312,-0.528 1.312,-1.312 l 0,-9.312 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,3.264 -4.768,0 0,-3.264 c 0,-0.784 -0.512,-1.312 -1.312,-1.312 -0.8,0 -1.312,0.528 -1.312,1.312 l 0,9.312 z" />
<path
id="path519"
style=""
d="m 84.695906,382.59262 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664,-0.656 3.664,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944,0 -0.944,1.152 -2.704,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.28,0 z m -5.28,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
<path
id="path521"
style=""
d="m 87.341156,385.37662 c 0,0.624 0.256,1.168 1.168,1.168 0.912,0 1.168,-0.544 1.168,-1.168 l 0,-2.72 c 0,-1.936 0.512,-2.592 1.456,-2.592 l 0.416,0 c 0.576,0 1.152,-0.304 1.152,-1.168 0,-0.656 -0.544,-1.136 -1.28,-1.136 -1.136,0 -1.664,1.008 -1.936,1.984 l -0.032,0 0,-0.896 c 0,-0.704 -0.464,-1.088 -1.056,-1.088 -0.592,0 -1.056,0.384 -1.056,1.088 l 0,6.528 z" />
<path
id="path523"
style=""
d="m 100.78966,382.59262 c 0.784,0 1.024,-0.208 1.024,-1.008 0,-1.92 -1.536,-3.824 -4.224004,-3.824 -2.768,0 -4.416,1.824 -4.416,4.544 0,2.032 1.232,4.24 4.496,4.24 1.408,0 3.664004,-0.656 3.664004,-2.064 0,-0.432 -0.4,-0.912 -0.96,-0.912 -0.944004,0 -0.944004,1.152 -2.704004,1.152 -1.36,0 -2.16,-0.896 -2.16,-2.128 l 5.280004,0 z m -5.280004,-1.344 c 0.256,-1.136 0.96,-1.856 2.128,-1.856 1.04,0 1.84,0.784 1.968,1.856 l -4.096,0 z" />
</g>
</g>
</svg>
|