1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
width="695.61249"
height="765.31958"
id="svg2"
sodipodi:docname="GCM-Galois_Counter_Mode.svg"
inkscape:version="0.92.3 (2405546, 2018-03-11)">
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1236"
inkscape:window-height="945"
id="namedview292"
showgrid="false"
showguides="true"
inkscape:guide-bbox="true"
fit-margin-top="10"
fit-margin-left="10"
fit-margin-right="10"
fit-margin-bottom="10"
inkscape:zoom="0.65391053"
inkscape:cx="632.36731"
inkscape:cy="481.88405"
inkscape:window-x="680"
inkscape:window-y="79"
inkscape:window-maximized="0"
inkscape:current-layer="text4422" />
<defs
id="defs4" />
<metadata
id="metadata7">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:40px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="-25.40925"
y="92.446503"
id="text4406"><tspan
sodipodi:role="line"
id="tspan4404"
x="-25.40925"
y="127.83713"></tspan></text>
<text
xml:space="preserve"
style="font-style:normal;font-weight:normal;font-size:32px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
x="-29.734655"
y="63.790699"
id="text4410"><tspan
sodipodi:role="line"
id="tspan4408"
x="-29.734655"
y="92.103195"></tspan></text>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path2995"
d="m 14.2925,102.6046 h 129.325 V 74.25835 H 14.2925 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path2997"
d="m 14.2925,102.6046 h 129.325 V 74.25835 H 14.2925 Z" />
<g
id="text2999"
transform="matrix(1.25,0,0,1.25,40.5325,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3591"
d="m 8.2302804,-3.5135915 1.3261415,0.3349533 C 9.2784242,-2.0894683 8.7782734,-1.2589217 8.055968,-0.68699599 7.3336464,-0.11506887 6.4506923,0.17089436 5.4071028,0.17089453 4.3270451,0.17089436 3.4486481,-0.04898972 2.7719092,-0.48875834 2.0951648,-0.928526 1.5802031,-1.5653923 1.2270227,-2.3993591 0.8738398,-3.2333212 0.69724897,-4.1288076 0.69724967,-5.0858211 c -7e-7,-1.0435898 0.19937605,-1.953887 0.59813083,-2.7308945 0.3987522,-0.7769919 0.9661215,-1.367147 1.7021095,-1.7704673 0.735982,-0.4033011 1.5460213,-0.6049561 2.4301201,-0.6049671 1.0025748,1.1e-5 1.8456537,0.2552129 2.529239,0.7656079 0.6835695,0.5104139 1.1597951,1.2281702 1.4286783,2.1532711 L 8.0798932,-6.9656609 C 7.8474688,-7.6948032 7.5102373,-8.225715 7.0681976,-8.5583979 6.6261438,-8.8910636 6.0701675,-9.0574008 5.400267,-9.0574099 c -0.7701693,9.1e-6 -1.4138713,0.184575 -1.9311081,0.5536983 -0.5172437,0.3691403 -0.8806791,0.8647339 -1.0903071,1.4867824 -0.2096328,0.6220624 -0.314448,1.2634859 -0.3144459,1.9242723 -2.1e-6,0.8521983 0.1241811,1.5961584 0.37255,2.2318825 0.2483641,0.6357299 0.6345853,1.1108162 1.1586649,1.4252604 0.5240725,0.314447 1.0914417,0.47166984 1.7021095,0.47166887 0.7428155,9.7e-7 1.3717067,-0.21418667 1.8866756,-0.64256337 0.5149544,-0.4283736 0.8635789,-1.0641006 1.0458745,-1.907183 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3593"
d="m 10.575073,-3.6297997 c 0,-1.3443653 0.373689,-2.3401098 1.121068,-2.9872363 0.624333,-0.537741 1.385382,-0.8066148 2.283151,-0.8066222 0.998019,7.4e-6 1.813755,0.3269853 2.44721,0.9809346 0.633442,0.6539621 0.950166,1.5574236 0.950173,2.7103872 -7e-6,0.9342262 -0.14014,1.6690719 -0.4204,2.2045393 -0.280274,0.53547055 -0.688142,0.95131348 -1.223605,1.24753008 -0.535475,0.29621716 -1.119933,0.4443256 -1.753378,0.44432576 -1.016256,-1.6e-7 -1.837688,-0.32583873 -2.464299,-0.97751668 -0.626614,-0.65167636 -0.93992,-1.59045596 -0.93992,-2.81634176 z m 1.26462,0 c -2e-6,0.9296689 0.202792,1.6257786 0.608384,2.0883311 0.405587,0.4625556 0.915992,0.6938326 1.531215,0.69383175 0.610659,8.5e-7 1.118785,-0.23241545 1.524379,-0.69724965 0.405584,-0.4648311 0.608379,-1.173473 0.608385,-2.1259279 -6e-6,-0.8977614 -0.20394,-1.5779209 -0.611803,-2.0404807 -0.407873,-0.4625483 -0.91486,-0.6938253 -1.520961,-0.6938317 -0.615223,6.4e-6 -1.125628,0.2301441 -1.531215,0.6904139 -0.405592,0.4602811 -0.608386,1.1552515 -0.608384,2.0849132 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3595"
d="m 23.576854,0 v -1.0663818 c -0.565096,0.82029393 -1.332981,1.23044038 -2.303658,1.23044054 -0.428378,-1.6e-7 -0.828271,-0.08202945 -1.199679,-0.24608811 -0.371413,-0.1640585 -0.647123,-0.37027102 -0.82713,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.23044 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241528,0.5776248 0.492176,0.7621896 0.250642,0.18456703 0.560531,0.27684998 0.929666,0.27684908 0.369128,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552554,-0.4466028 0.686996,-0.7724433 0.134432,-0.3258366 0.20165,-0.7986443 0.201656,-1.4184246 v -3.8895594 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3597"
d="m 26.60523,0 v -7.2595995 h 1.107397 v 1.032203 c 0.533188,-0.7975008 1.303352,-1.1962543 2.310494,-1.1962617 0.437485,7.4e-6 0.839656,0.078619 1.206515,0.2358344 0.366848,0.15723 0.641418,0.3634426 0.823712,0.6186382 0.182281,0.2552088 0.309882,0.5582615 0.382803,0.9091589 0.04556,0.2278648 0.06835,0.6266183 0.06836,1.1962617 V 0 h -1.23044 v -4.4159146 c -6e-6,-0.5012856 -0.04786,-0.8761139 -0.143552,-1.1244859 -0.09571,-0.248361 -0.265461,-0.4465984 -0.509265,-0.594713 -0.243815,-0.1481023 -0.529778,-0.2221565 -0.857891,-0.2221629 -0.52408,6.4e-6 -0.97638,0.1663436 -1.356903,0.4990121 -0.380527,0.3326802 -0.570789,0.96385 -0.570787,1.8935113 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3599"
d="m 37.077772,-1.1005607 0.17773,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.519519,-0.55711615 -0.10026,-0.23013706 -0.150389,-0.71433777 -0.150388,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237277 v 0.9570094 h -1.237277 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3601"
d="m 43.250651,-2.3378371 1.271455,0.1572229 c -0.200523,0.742823 -0.571933,1.31930665 -1.114232,1.72945265 -0.542311,0.4101469 -1.235003,0.61522013 -2.078078,0.61522029 -1.061827,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933084,-1.57108797 -0.933084,-2.75140187 0,-1.2213214 0.314445,-2.1692154 0.943338,-2.8436849 0.62889,-0.6744567 1.444626,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763626,0.3304032 2.378851,0.9911882 0.615214,0.660798 0.922824,1.5904633 0.922831,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413938 c 0.04557,0.7975103 0.27115,1.4081728 0.676742,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517543,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318998,-0.2369723 0.571922,-0.6152184 0.758772,-1.1347396 z m -4.039947,-1.9892123 h 4.053619 c -0.05469,-0.6106582 -0.209637,-1.068655 -0.464834,-1.373992 -0.391923,-0.4739413 -0.900049,-0.7109148 -1.524379,-0.7109212 -0.565094,6.4e-6 -1.040181,0.1891295 -1.42526,0.5673698 -0.385085,0.378252 -0.598133,0.8840993 -0.639146,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3603"
d="m 46.053446,0 v -7.2595995 h 1.107397 v 1.1005608 c 0.282543,-0.5149555 0.543442,-0.8544656 0.782696,-1.0185314 0.23925,-0.1640514 0.502427,-0.2460807 0.789533,-0.2460881 0.4147,7.4e-6 0.83624,0.1321657 1.26462,0.3964753 l -0.423819,1.1415754 c -0.300778,-0.1777242 -0.601552,-0.2665893 -0.902323,-0.2665954 -0.268877,6.1e-6 -0.510408,0.080896 -0.724593,0.2426702 -0.21419,0.1617859 -0.366856,0.3862271 -0.457997,0.6733244 -0.136718,0.4374948 -0.205076,0.915999 -0.205073,1.435514 V 0 Z" />
</g>
<g
id="text3003"
transform="matrix(1.25,0,0,1.25,107.65,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3606"
d="m 0.58104139,-4.9422697 c -5.8e-7,-1.1848626 0.12190406,-2.1384531 0.36571428,-2.8607744 C 1.190564,-8.5253497 1.55286,-9.0824653 2.0336449,-9.4743925 2.5144256,-9.8663008 3.1193916,-10.06226 3.8485447,-10.06227 c 0.5377437,10e-6 1.0094122,0.1082435 1.4150067,0.3246999 0.405584,0.2164759 0.7405369,0.528643 1.0048598,0.936502 0.2643103,0.4078767 0.4716622,0.9046096 0.6220561,1.4902003 0.1503801,0.5856053 0.2255736,1.3751372 0.2255808,2.3685981 -7.2e-6,1.1757581 -0.1207725,2.1247914 -0.3622964,2.8471028 C 6.5122142,-1.3728513 6.1510575,-0.81459643 5.6702804,-0.42040053 5.1894919,-0.0262038 4.5822473,0.17089436 3.8485447,0.17089453 2.8824181,0.17089436 2.1236472,-0.17545154 1.5722296,-0.86814419 0.91143656,-1.7021078 0.58104081,-3.0601483 0.58104139,-4.9422697 Z m 1.26461951,0 c -1.9e-6,1.6451479 0.1925391,2.7400111 0.5776235,3.2845928 0.3850795,0.544585 0.8601658,0.81687667 1.4252603,0.81687583 0.5650868,8.4e-7 1.0401732,-0.27343013 1.4252604,-0.82029373 0.3850766,-0.5468603 0.5776176,-1.6405841 0.5776235,-3.2811749 -5.9e-6,-1.6496952 -0.1925469,-2.7456977 -0.5776235,-3.2880107 -0.3850872,-0.5422965 -0.8647307,-0.8134489 -1.4389319,-0.8134579 -0.5650945,9e-6 -1.0162556,0.2392611 -1.3534847,0.717757 -0.4238205,0.6106708 -0.6357295,1.7385736 -0.6357276,3.3837116 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3007"
d="M 282.7,102.6046 H 412.025 V 74.25835 H 282.7 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3009"
d="M 282.7,102.6046 H 412.025 V 74.25835 H 282.7 Z" />
<g
id="text3011"
transform="matrix(1.25,0,0,1.25,308.9375,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3609"
d="m 8.2302804,-3.5135915 1.3261415,0.3349533 C 9.2784242,-2.0894683 8.7782734,-1.2589217 8.055968,-0.68699599 7.3336464,-0.11506887 6.4506923,0.17089436 5.4071028,0.17089453 4.3270451,0.17089436 3.4486481,-0.04898972 2.7719092,-0.48875834 2.0951648,-0.928526 1.5802031,-1.5653923 1.2270227,-2.3993591 0.8738398,-3.2333212 0.69724897,-4.1288076 0.69724967,-5.0858211 c -7e-7,-1.0435898 0.19937605,-1.953887 0.59813083,-2.7308945 0.3987522,-0.7769919 0.9661215,-1.367147 1.7021095,-1.7704673 0.735982,-0.4033011 1.5460213,-0.6049561 2.4301201,-0.6049671 1.0025748,1.1e-5 1.8456537,0.2552129 2.529239,0.7656079 0.6835695,0.5104139 1.1597951,1.2281702 1.4286783,2.1532711 L 8.0798932,-6.9656609 C 7.8474688,-7.6948032 7.5102373,-8.225715 7.0681976,-8.5583979 6.6261438,-8.8910636 6.0701675,-9.0574008 5.400267,-9.0574099 c -0.7701693,9.1e-6 -1.4138713,0.184575 -1.9311081,0.5536983 -0.5172437,0.3691403 -0.8806791,0.8647339 -1.0903071,1.4867824 -0.2096328,0.6220624 -0.314448,1.2634859 -0.3144459,1.9242723 -2.1e-6,0.8521983 0.1241811,1.5961584 0.37255,2.2318825 0.2483641,0.6357299 0.6345853,1.1108162 1.1586649,1.4252604 0.5240725,0.314447 1.0914417,0.47166984 1.7021095,0.47166887 0.7428155,9.7e-7 1.3717067,-0.21418667 1.8866756,-0.64256337 0.5149544,-0.4283736 0.8635789,-1.0641006 1.0458745,-1.907183 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3611"
d="m 10.575073,-3.6297997 c 0,-1.3443653 0.373689,-2.3401098 1.121068,-2.9872363 0.624333,-0.537741 1.385382,-0.8066148 2.283151,-0.8066222 0.998019,7.4e-6 1.813755,0.3269853 2.44721,0.9809346 0.633442,0.6539621 0.950166,1.5574236 0.950173,2.7103872 -7e-6,0.9342262 -0.14014,1.6690719 -0.4204,2.2045393 -0.280274,0.53547055 -0.688142,0.95131348 -1.223605,1.24753008 -0.535475,0.29621716 -1.119933,0.4443256 -1.753378,0.44432576 -1.016256,-1.6e-7 -1.837688,-0.32583873 -2.464299,-0.97751668 -0.626614,-0.65167636 -0.93992,-1.59045596 -0.93992,-2.81634176 z m 1.26462,0 c -2e-6,0.9296689 0.202792,1.6257786 0.608384,2.0883311 0.405587,0.4625556 0.915992,0.6938326 1.531215,0.69383175 0.610659,8.5e-7 1.118785,-0.23241545 1.524379,-0.69724965 0.405584,-0.4648311 0.608379,-1.173473 0.608385,-2.1259279 -6e-6,-0.8977614 -0.20394,-1.5779209 -0.611803,-2.0404807 -0.407873,-0.4625483 -0.91486,-0.6938253 -1.520961,-0.6938317 -0.615223,6.4e-6 -1.125628,0.2301441 -1.531215,0.6904139 -0.405592,0.4602811 -0.608386,1.1552515 -0.608384,2.0849132 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3613"
d="m 23.576854,0 v -1.0663818 c -0.565096,0.82029393 -1.332981,1.23044038 -2.303658,1.23044054 -0.428378,-1.6e-7 -0.828271,-0.08202945 -1.199679,-0.24608811 -0.371413,-0.1640585 -0.647123,-0.37027102 -0.82713,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.23044 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241528,0.5776248 0.492176,0.7621896 0.250642,0.18456703 0.560531,0.27684998 0.929666,0.27684908 0.369128,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552554,-0.4466028 0.686996,-0.7724433 0.134432,-0.3258366 0.20165,-0.7986443 0.201656,-1.4184246 v -3.8895594 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3615"
d="m 26.60523,0 v -7.2595995 h 1.107397 v 1.032203 c 0.533188,-0.7975008 1.303352,-1.1962543 2.310494,-1.1962617 0.437485,7.4e-6 0.839656,0.078619 1.206515,0.2358344 0.366848,0.15723 0.641418,0.3634426 0.823712,0.6186382 0.182281,0.2552088 0.309882,0.5582615 0.382803,0.9091589 0.04556,0.2278648 0.06835,0.6266183 0.06836,1.1962617 V 0 h -1.23044 v -4.4159146 c -6e-6,-0.5012856 -0.04786,-0.8761139 -0.143552,-1.1244859 -0.09571,-0.248361 -0.265461,-0.4465984 -0.509265,-0.594713 -0.243815,-0.1481023 -0.529778,-0.2221565 -0.857891,-0.2221629 -0.52408,6.4e-6 -0.97638,0.1663436 -1.356903,0.4990121 -0.380527,0.3326802 -0.570789,0.96385 -0.570787,1.8935113 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3617"
d="m 37.077772,-1.1005607 0.17773,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.519519,-0.55711615 -0.10026,-0.23013706 -0.150389,-0.71433777 -0.150388,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237277 v 0.9570094 h -1.237277 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3619"
d="m 43.250651,-2.3378371 1.271455,0.1572229 c -0.200523,0.742823 -0.571933,1.31930665 -1.114232,1.72945265 -0.542311,0.4101469 -1.235003,0.61522013 -2.078078,0.61522029 -1.061827,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933084,-1.57108797 -0.933084,-2.75140187 0,-1.2213214 0.314445,-2.1692154 0.943338,-2.8436849 0.62889,-0.6744567 1.444626,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763626,0.3304032 2.378851,0.9911882 0.615214,0.660798 0.922824,1.5904633 0.922831,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413938 c 0.04557,0.7975103 0.27115,1.4081728 0.676742,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517543,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318998,-0.2369723 0.571922,-0.6152184 0.758772,-1.1347396 z m -4.039947,-1.9892123 h 4.053619 c -0.05469,-0.6106582 -0.209637,-1.068655 -0.464834,-1.373992 -0.391923,-0.4739413 -0.900049,-0.7109148 -1.524379,-0.7109212 -0.565094,6.4e-6 -1.040181,0.1891295 -1.42526,0.5673698 -0.385085,0.378252 -0.598133,0.8840993 -0.639146,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3621"
d="m 46.053446,0 v -7.2595995 h 1.107397 v 1.1005608 c 0.282543,-0.5149555 0.543442,-0.8544656 0.782696,-1.0185314 0.23925,-0.1640514 0.502427,-0.2460807 0.789533,-0.2460881 0.4147,7.4e-6 0.83624,0.1321657 1.26462,0.3964753 l -0.423819,1.1415754 c -0.300778,-0.1777242 -0.601552,-0.2665893 -0.902323,-0.2665954 -0.268877,6.1e-6 -0.510408,0.080896 -0.724593,0.2426702 -0.21419,0.1617859 -0.366856,0.3862271 -0.457997,0.6733244 -0.136718,0.4374948 -0.205076,0.915999 -0.205073,1.435514 V 0 Z" />
</g>
<g
id="text3015"
transform="matrix(1.25,0,0,1.25,376.0625,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3624"
d="M 5.2157009,0 H 3.9852603 V -7.8406409 C 3.6890395,-7.5580877 3.3005396,-7.2755423 2.8197597,-6.993004 2.3389741,-6.7104517 1.907181,-6.4985427 1.5243792,-6.3572764 V -7.5467023 C 2.2125123,-7.8702547 2.8140604,-8.2621724 3.3290254,-8.7224566 3.8439837,-9.1827233 4.2085583,-9.6293273 4.4227503,-10.06227 h 0.7929506 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3019"
d="m 551.9875,102.6046 h 129.325 V 74.25835 h -129.325 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3021"
d="m 551.9875,102.6046 h 129.325 V 74.25835 h -129.325 z" />
<g
id="text3023"
transform="matrix(1.25,0,0,1.25,578.225,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3627"
d="m 8.2302804,-3.5135915 1.3261415,0.3349533 C 9.2784242,-2.0894683 8.7782734,-1.2589217 8.055968,-0.68699599 7.3336464,-0.11506887 6.4506923,0.17089436 5.4071028,0.17089453 4.3270451,0.17089436 3.4486481,-0.04898972 2.7719092,-0.48875834 2.0951648,-0.928526 1.5802031,-1.5653923 1.2270227,-2.3993591 0.8738398,-3.2333212 0.69724897,-4.1288076 0.69724967,-5.0858211 c -7e-7,-1.0435898 0.19937605,-1.953887 0.59813083,-2.7308945 0.3987522,-0.7769919 0.9661215,-1.367147 1.7021095,-1.7704673 0.735982,-0.4033011 1.5460213,-0.6049561 2.4301201,-0.6049671 1.0025748,1.1e-5 1.8456537,0.2552129 2.529239,0.7656079 0.6835695,0.5104139 1.1597951,1.2281702 1.4286783,2.1532711 L 8.0798932,-6.9656609 C 7.8474688,-7.6948032 7.5102373,-8.225715 7.0681976,-8.5583979 6.6261438,-8.8910636 6.0701675,-9.0574008 5.400267,-9.0574099 c -0.7701693,9.1e-6 -1.4138713,0.184575 -1.9311081,0.5536983 -0.5172437,0.3691403 -0.8806791,0.8647339 -1.0903071,1.4867824 -0.2096328,0.6220624 -0.314448,1.2634859 -0.3144459,1.9242723 -2.1e-6,0.8521983 0.1241811,1.5961584 0.37255,2.2318825 0.2483641,0.6357299 0.6345853,1.1108162 1.1586649,1.4252604 0.5240725,0.314447 1.0914417,0.47166984 1.7021095,0.47166887 0.7428155,9.7e-7 1.3717067,-0.21418667 1.8866756,-0.64256337 0.5149544,-0.4283736 0.8635789,-1.0641006 1.0458745,-1.907183 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3629"
d="m 10.575073,-3.6297997 c 0,-1.3443653 0.373689,-2.3401098 1.121068,-2.9872363 0.624333,-0.537741 1.385382,-0.8066148 2.283151,-0.8066222 0.998019,7.4e-6 1.813755,0.3269853 2.44721,0.9809346 0.633442,0.6539621 0.950166,1.5574236 0.950173,2.7103872 -7e-6,0.9342262 -0.14014,1.6690719 -0.4204,2.2045393 -0.280274,0.53547055 -0.688142,0.95131348 -1.223605,1.24753008 -0.535475,0.29621716 -1.119933,0.4443256 -1.753378,0.44432576 -1.016256,-1.6e-7 -1.837688,-0.32583873 -2.464299,-0.97751668 -0.626614,-0.65167636 -0.93992,-1.59045596 -0.93992,-2.81634176 z m 1.26462,0 c -2e-6,0.9296689 0.202792,1.6257786 0.608384,2.0883311 0.405587,0.4625556 0.915992,0.6938326 1.531215,0.69383175 0.610659,8.5e-7 1.118785,-0.23241545 1.524379,-0.69724965 0.405584,-0.4648311 0.608379,-1.173473 0.608385,-2.1259279 -6e-6,-0.8977614 -0.20394,-1.5779209 -0.611803,-2.0404807 -0.407873,-0.4625483 -0.91486,-0.6938253 -1.520961,-0.6938317 -0.615223,6.4e-6 -1.125628,0.2301441 -1.531215,0.6904139 -0.405592,0.4602811 -0.608386,1.1552515 -0.608384,2.0849132 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3631"
d="m 23.576854,0 v -1.0663818 c -0.565096,0.82029393 -1.332981,1.23044038 -2.303658,1.23044054 -0.428378,-1.6e-7 -0.828271,-0.08202945 -1.199679,-0.24608811 -0.371413,-0.1640585 -0.647123,-0.37027102 -0.82713,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.23044 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241528,0.5776248 0.492176,0.7621896 0.250642,0.18456703 0.560531,0.27684998 0.929666,0.27684908 0.369128,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552554,-0.4466028 0.686996,-0.7724433 0.134432,-0.3258366 0.20165,-0.7986443 0.201656,-1.4184246 v -3.8895594 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3633"
d="m 26.60523,0 v -7.2595995 h 1.107397 v 1.032203 c 0.533188,-0.7975008 1.303352,-1.1962543 2.310494,-1.1962617 0.437485,7.4e-6 0.839656,0.078619 1.206515,0.2358344 0.366848,0.15723 0.641418,0.3634426 0.823712,0.6186382 0.182281,0.2552088 0.309882,0.5582615 0.382803,0.9091589 0.04556,0.2278648 0.06835,0.6266183 0.06836,1.1962617 V 0 h -1.23044 v -4.4159146 c -6e-6,-0.5012856 -0.04786,-0.8761139 -0.143552,-1.1244859 -0.09571,-0.248361 -0.265461,-0.4465984 -0.509265,-0.594713 -0.243815,-0.1481023 -0.529778,-0.2221565 -0.857891,-0.2221629 -0.52408,6.4e-6 -0.97638,0.1663436 -1.356903,0.4990121 -0.380527,0.3326802 -0.570789,0.96385 -0.570787,1.8935113 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3635"
d="m 37.077772,-1.1005607 0.17773,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.519519,-0.55711615 -0.10026,-0.23013706 -0.150389,-0.71433777 -0.150388,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237277 v 0.9570094 h -1.237277 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3637"
d="m 43.250651,-2.3378371 1.271455,0.1572229 c -0.200523,0.742823 -0.571933,1.31930665 -1.114232,1.72945265 -0.542311,0.4101469 -1.235003,0.61522013 -2.078078,0.61522029 -1.061827,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933084,-1.57108797 -0.933084,-2.75140187 0,-1.2213214 0.314445,-2.1692154 0.943338,-2.8436849 0.62889,-0.6744567 1.444626,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763626,0.3304032 2.378851,0.9911882 0.615214,0.660798 0.922824,1.5904633 0.922831,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413938 c 0.04557,0.7975103 0.27115,1.4081728 0.676742,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517543,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318998,-0.2369723 0.571922,-0.6152184 0.758772,-1.1347396 z m -4.039947,-1.9892123 h 4.053619 c -0.05469,-0.6106582 -0.209637,-1.068655 -0.464834,-1.373992 -0.391923,-0.4739413 -0.900049,-0.7109148 -1.524379,-0.7109212 -0.565094,6.4e-6 -1.040181,0.1891295 -1.42526,0.5673698 -0.385085,0.378252 -0.598133,0.8840993 -0.639146,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3639"
d="m 46.053446,0 v -7.2595995 h 1.107397 v 1.1005608 c 0.282543,-0.5149555 0.543442,-0.8544656 0.782696,-1.0185314 0.23925,-0.1640514 0.502427,-0.2460807 0.789533,-0.2460881 0.4147,7.4e-6 0.83624,0.1321657 1.26462,0.3964753 l -0.423819,1.1415754 c -0.300778,-0.1777242 -0.601552,-0.2665893 -0.902323,-0.2665954 -0.268877,6.1e-6 -0.510408,0.080896 -0.724593,0.2426702 -0.21419,0.1617859 -0.366856,0.3862271 -0.457997,0.6733244 -0.136718,0.4374948 -0.205076,0.915999 -0.205073,1.435514 V 0 Z" />
</g>
<g
id="text3027"
transform="matrix(1.25,0,0,1.25,645.35,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3642"
d="M 7.0476902,-1.1825901 V 0 H 0.42381842 C 0.41470363,-0.29621688 0.46255405,-0.58104081 0.56736983,-0.85447263 0.73598502,-1.3056329 1.0059981,-1.7499582 1.3774099,-2.1874499 1.7488189,-2.6249373 2.2854272,-3.1307846 2.9872363,-3.7049933 4.0764,-4.5981974 4.812385,-5.3057001 5.1951936,-5.8275033 5.5779917,-6.3492949 5.7693934,-6.84261 5.7693992,-7.3074499 5.7693934,-7.7950612 5.5950812,-8.2063469 5.2464619,-8.5413084 4.8978322,-8.8762528 4.4432532,-9.0437293 3.8827236,-9.0437383 c -0.5924376,9e-6 -1.0663846,0.1777392 -1.4218424,0.5331909 -0.3554627,0.3554688 -0.5354715,0.8476445 -0.5400267,1.4765287 L 0.65623498,-7.1638985 C 0.7428208,-8.1072282 1.0686594,-8.8261238 1.6337517,-9.3205874 2.1988407,-9.8150325 2.9576116,-10.06226 3.9100668,-10.06227 c 0.9615616,10e-6 1.7226111,0.2666056 2.2831508,0.7997867 0.5605273,0.5331996 0.8407941,1.1939912 0.8408011,1.9823765 -7e-6,0.4010394 -0.082036,0.7952357 -0.2460881,1.1825901 -0.1640654,0.3873666 -0.4363571,0.7952345 -0.8168759,1.2236048 -0.3805307,0.4283801 -1.0128398,1.0162567 -1.8969292,1.7636315 -0.7382677,0.61978 -1.2122147,1.0401801 -1.4218425,1.2612016 -0.209633,0.2210252 -0.382806,0.4431879 -0.5195193,0.6664887 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3031"
d="M 282.7,318.7421 H 412.025 V 290.39585 H 282.7 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3033"
d="M 282.7,318.7421 H 412.025 V 290.39585 H 282.7 Z" />
<g
id="text3035"
transform="matrix(1.25,0,0,1.25,300.1875,309.8171)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3645"
d="m 8.2302804,-3.5135915 1.3261415,0.3349533 C 9.2784242,-2.0894683 8.7782734,-1.2589217 8.055968,-0.68699599 7.3336464,-0.11506887 6.4506923,0.17089436 5.4071028,0.17089453 4.3270451,0.17089436 3.4486481,-0.04898972 2.7719092,-0.48875834 2.0951648,-0.928526 1.5802031,-1.5653923 1.2270227,-2.3993591 0.8738398,-3.2333212 0.69724897,-4.1288076 0.69724967,-5.0858211 c -7e-7,-1.0435898 0.19937605,-1.953887 0.59813083,-2.7308945 0.3987522,-0.7769919 0.9661215,-1.367147 1.7021095,-1.7704673 0.735982,-0.4033011 1.5460213,-0.6049561 2.4301201,-0.6049671 1.0025748,1.1e-5 1.8456537,0.2552129 2.529239,0.7656079 0.6835695,0.5104139 1.1597951,1.2281702 1.4286783,2.1532711 L 8.0798932,-6.9656609 C 7.8474688,-7.6948032 7.5102373,-8.225715 7.0681976,-8.5583979 6.6261438,-8.8910636 6.0701675,-9.0574008 5.400267,-9.0574099 c -0.7701693,9.1e-6 -1.4138713,0.184575 -1.9311081,0.5536983 -0.5172437,0.3691403 -0.8806791,0.8647339 -1.0903071,1.4867824 -0.2096328,0.6220624 -0.314448,1.2634859 -0.3144459,1.9242723 -2.1e-6,0.8521983 0.1241811,1.5961584 0.37255,2.2318825 0.2483641,0.6357299 0.6345853,1.1108162 1.1586649,1.4252604 0.5240725,0.314447 1.0914417,0.47166984 1.7021095,0.47166887 0.7428155,9.7e-7 1.3717067,-0.21418667 1.8866756,-0.64256337 0.5149544,-0.4283736 0.8635789,-1.0641006 1.0458745,-1.907183 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3647"
d="m 11.039906,-8.6062483 v -1.4150067 h 1.230441 v 1.4150067 z m 0,8.6062483 v -7.2595995 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3649"
d="M 14.143327,2.7821629 V -7.2595995 h 1.121068 v 0.9433378 c 0.264314,-0.3691255 0.56281,-0.6459743 0.895487,-0.8305474 0.332671,-0.1845587 0.735982,-0.2768417 1.209933,-0.2768491 0.619773,7.4e-6 1.166635,0.1595088 1.640588,0.4785047 0.473941,0.3190097 0.83168,0.7690315 1.073217,1.3500667 0.241524,0.5810464 0.36229,1.2179127 0.362297,1.9106008 -7e-6,0.7428245 -0.133305,1.4115911 -0.399893,2.0063018 -0.266602,0.594714 -0.653963,1.05043227 -1.162083,1.36715616 C 18.375809,0.00569648 17.84148,0.16405858 17.28095,0.16405874 16.8708,0.16405858 16.502807,0.07747211 16.176971,-0.09570093 15.85113,-0.26887379 15.583395,-0.48761856 15.373767,-0.75193591 V 2.7821629 Z m 1.114232,-6.3709479 c -2e-6,0.934226 0.189121,1.6246392 0.56737,2.0712416 0.378243,0.4466054 0.83624,0.6699074 1.373992,0.66990655 0.546858,8.5e-7 1.015108,-0.23127615 1.404753,-0.69383175 0.389633,-0.4625525 0.584453,-1.1791695 0.584459,-2.1498532 -6e-6,-0.9251044 -0.190268,-1.6177962 -0.570788,-2.0780774 -0.38053,-0.4602697 -0.835109,-0.6904074 -1.363738,-0.6904139 -0.52408,6.5e-6 -0.987773,0.2449551 -1.391081,0.7348465 -0.403314,0.4899029 -0.604969,1.2019627 -0.604967,2.1361816 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3651"
d="m 21.929407,0 v -10.021255 h 1.230441 v 3.5956208 c 0.574202,-0.6653422 1.298795,-0.9980166 2.173778,-0.998024 0.537743,7.4e-6 1.004854,0.1059619 1.401335,0.3178638 0.396469,0.2119161 0.680154,0.5047151 0.851055,0.8783979 0.170888,0.3736952 0.256335,0.9159999 0.256342,1.6269159 V 0 h -1.230441 v -4.6004806 c -6e-6,-0.6152151 -0.133303,-1.0629583 -0.399893,-1.343231 -0.266601,-0.2802608 -0.643707,-0.4203942 -1.131322,-0.4204005 -0.364579,6.3e-6 -0.707507,0.094568 -1.028785,0.2836849 -0.321284,0.1891291 -0.550283,0.4454707 -0.686996,0.7690253 -0.136718,0.3235653 -0.205076,0.7701692 -0.205073,1.3398131 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3653"
d="m 34.685099,-2.3378371 1.271455,0.1572229 c -0.200523,0.742823 -0.571933,1.31930665 -1.114232,1.72945265 -0.542311,0.4101469 -1.235002,0.61522013 -2.078077,0.61522029 -1.061828,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933085,-1.57108797 -0.933084,-2.75140187 -1e-6,-1.2213214 0.314445,-2.1692154 0.943337,-2.8436849 0.62889,-0.6744567 1.444626,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763626,0.3304032 2.378852,0.9911882 0.615213,0.660798 0.922823,1.5904633 0.92283,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413938 c 0.04557,0.7975103 0.27115,1.4081728 0.676742,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517544,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318997,-0.2369723 0.571921,-0.6152184 0.758771,-1.1347396 z m -4.039946,-1.9892123 h 4.053618 c -0.05469,-0.6106582 -0.209637,-1.068655 -0.464833,-1.373992 -0.391924,-0.4739413 -0.900049,-0.7109148 -1.52438,-0.7109212 -0.565094,6.4e-6 -1.04018,0.1891295 -1.42526,0.5673698 -0.385084,0.378252 -0.598133,0.8840993 -0.639145,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3655"
d="m 37.487894,0 v -7.2595995 h 1.107397 v 1.1005608 c 0.282543,-0.5149555 0.543442,-0.8544656 0.782697,-1.0185314 0.239249,-0.1640514 0.502426,-0.2460807 0.789532,-0.2460881 0.4147,7.4e-6 0.83624,0.1321657 1.26462,0.3964753 l -0.423819,1.1415754 c -0.300778,-0.1777242 -0.601552,-0.2665893 -0.902323,-0.2665954 -0.268877,6.1e-6 -0.510408,0.080896 -0.724592,0.2426702 -0.214191,0.1617859 -0.366856,0.3862271 -0.457998,0.6733244 -0.136718,0.4374948 -0.205075,0.915999 -0.205073,1.435514 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3657"
d="m 44.850099,-1.1005607 0.17773,1.08688914 c -0.346349,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.246089,-0.14127255 -0.419262,-0.32697775 -0.519519,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -3e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.4204,0.088865 0.136713,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3659"
d="m 51.022978,-2.3378371 1.271456,0.1572229 c -0.200524,0.742823 -0.571934,1.31930665 -1.114233,1.72945265 -0.54231,0.4101469 -1.235002,0.61522013 -2.078077,0.61522029 -1.061828,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933085,-1.57108797 -0.933084,-2.75140187 -1e-6,-1.2213214 0.314445,-2.1692154 0.943337,-2.8436849 0.62889,-0.6744567 1.444626,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763626,0.3304032 2.378852,0.9911882 0.615213,0.660798 0.922823,1.5904633 0.92283,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413939 c 0.04557,0.7975103 0.271151,1.4081728 0.676742,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517544,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318997,-0.2369723 0.571921,-0.6152184 0.758771,-1.1347396 z m -4.039946,-1.9892123 h 4.053618 c -0.05469,-0.6106582 -0.209636,-1.068655 -0.464833,-1.373992 -0.391923,-0.4739413 -0.900049,-0.7109148 -1.524379,-0.7109212 -0.565095,6.4e-6 -1.040181,0.1891295 -1.425261,0.5673698 -0.385084,0.378252 -0.598132,0.8840993 -0.639145,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3661"
d="m 53.019151,0 2.652283,-3.7733511 -2.454045,-3.4862484 h 1.538051 l 1.114232,1.7021095 c 0.209627,0.3235656 0.378243,0.5947179 0.505848,0.813458 0.200512,-0.3007694 0.385078,-0.5673646 0.553698,-0.7997864 l 1.223605,-1.7157811 h 1.469693 L 57.113784,-3.8417089 59.813918,0 H 58.30321 L 56.81301,-2.2558077 56.416534,-2.8641923 54.509352,0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3663"
d="m 63.525819,-1.1005607 0.17773,1.08688914 c -0.346349,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792952,-0.07063642 -1.039038,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.51952,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -3e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.4204,0.088865 0.136713,1.1e-6 0.316722,-0.015949 0.540027,-0.04785 z" />
</g>
<g
id="text3039"
transform="matrix(1.25,0,0,1.25,384.8125,309.8171)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3666"
d="M 5.2157009,0 H 3.9852603 V -7.8406409 C 3.6890395,-7.5580877 3.3005396,-7.2755423 2.8197597,-6.993004 2.3389741,-6.7104517 1.907181,-6.4985427 1.5243792,-6.3572764 V -7.5467023 C 2.2125123,-7.8702547 2.8140604,-8.2621724 3.3290254,-8.7224566 3.8439837,-9.1827233 4.2085583,-9.6293273 4.4227503,-10.06227 h 0.7929506 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3043"
d="M 435.95,254.9671 H 565.275 V 226.62085 H 435.95 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3045"
d="M 435.95,254.9671 H 565.275 V 226.62085 H 435.95 Z" />
<g
id="text3047"
transform="matrix(1.25,0,0,1.25,459.75,246.0421)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3669"
d="m 1.0800534,0 v -10.021255 h 3.7801869 c 0.6653438,10e-6 1.1734697,0.03191 1.5243792,0.095701 0.4921693,0.082039 0.9045944,0.2381228 1.2372764,0.468251 0.3326667,0.2301472 0.6004012,0.5525679 0.8032042,0.9672631 0.2027862,0.4147121 0.3041836,0.8704304 0.3041923,1.3671562 -8.7e-6,0.8522003 -0.2711611,1.5733744 -0.813458,2.1635247 -0.5423126,0.5901601 -1.5221069,0.8852377 -2.9393858,0.8852336 H 2.4061949 V 1e-7 Z m 1.3261415,-5.2567156 h 2.590761 c 0.8567454,5.2e-6 1.4651293,-0.1594962 1.8251536,-0.4785047 C 7.1821201,-6.0542174 7.3621288,-6.5030999 7.3621362,-7.0818692 7.3621288,-7.5011229 7.2561743,-7.860001 7.0442724,-8.1585047 6.8323563,-8.456992 6.5532289,-8.6540901 6.2068892,-8.7497997 5.983581,-8.8090344 5.571156,-8.838656 4.9696128,-8.8386649 H 2.4061949 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3671"
d="m 10.233167,0 v -10.021255 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3673"
d="m 18.107963,-0.89548732 c -0.455724,0.38736144 -0.894353,0.66079241 -1.315888,0.82029373 -0.421544,0.15950147 -0.873844,0.23925217 -1.356903,0.23925233 -0.79751,-1.6e-7 -1.410451,-0.19481972 -1.838825,-0.58445927 -0.428376,-0.38963871 -0.642564,-0.88751097 -0.642563,-1.49361817 -1e-6,-0.3554583 0.08089,-0.6801576 0.24267,-0.9740988 0.161779,-0.2939354 0.373688,-0.5297696 0.635728,-0.7075033 0.262036,-0.1777266 0.557114,-0.3121635 0.885233,-0.4033111 0.241529,-0.063797 0.606103,-0.1253185 1.093725,-0.1845661 0.993463,-0.1184826 1.724891,-0.2597552 2.194286,-0.4238184 0.0046,-0.1686112 0.0068,-0.275705 0.0068,-0.3212817 -6e-6,-0.5012852 -0.116214,-0.8544669 -0.348625,-1.0595461 -0.314451,-0.2779822 -0.781562,-0.4169762 -1.401335,-0.4169826 -0.578766,6.4e-6 -1.006002,0.1014037 -1.281709,0.3041922 -0.275712,0.2028008 -0.479646,0.5616789 -0.611802,1.0766355 l -1.203098,-0.1640587 c 0.109372,-0.5149565 0.28938,-0.9307994 0.540027,-1.24753 0.250644,-0.3167178 0.61294,-0.5605271 1.086889,-0.7314286 0.473945,-0.1708872 1.023085,-0.2563344 1.647423,-0.2563418 0.619773,7.4e-6 1.123342,0.072922 1.510708,0.218745 0.387355,0.145837 0.672179,0.3292636 0.854472,0.5502804 0.182281,0.22103 0.309882,0.5001574 0.382804,0.8373831 0.04101,0.2096363 0.06151,0.5878824 0.06152,1.1347397 v 1.6405874 c -7e-6,1.143856 0.0262,1.8673087 0.07861,2.17036052 C 19.38055,-0.56850855 19.484226,-0.27798815 19.639178,0 H 18.354051 C 18.226444,-0.25520224 18.144415,-0.55369771 18.107963,-0.89548732 Z M 18.005426,-3.6434713 c -0.446609,0.182291 -1.116515,0.3372352 -2.00972,0.4648331 -0.50585,0.072918 -0.863589,0.1549474 -1.073217,0.2460881 -0.209633,0.091147 -0.371413,0.2244442 -0.485341,0.3998932 -0.113931,0.1754541 -0.170896,0.3702737 -0.170894,0.5844593 -2e-6,0.3281191 0.124181,0.6015501 0.37255,0.8202937 0.248364,0.21874593 0.611799,0.32811832 1.090307,0.32811752 0.473944,8e-7 0.895483,-0.10367511 1.264619,-0.31102802 0.369128,-0.2073507 0.64028,-0.4910354 0.813458,-0.8510548 0.132153,-0.2779861 0.198232,-0.6881326 0.198238,-1.2304405 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3675"
d="m 21.163683,-8.6062483 v -1.4150067 h 1.23044 v 1.4150067 z m 0,8.6062483 v -7.2595995 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3677"
d="M 24.267103,0 V -7.2595995 H 25.3745 v 1.032203 c 0.533188,-0.7975008 1.303352,-1.1962543 2.310494,-1.1962617 0.437485,7.4e-6 0.839656,0.078619 1.206515,0.2358344 0.366848,0.15723 0.641418,0.3634426 0.823712,0.6186382 0.18228,0.2552088 0.309882,0.5582615 0.382803,0.9091589 0.04556,0.2278648 0.06835,0.6266183 0.06836,1.1962617 V 0 h -1.23044 v -4.4159146 c -6e-6,-0.5012856 -0.04786,-0.8761139 -0.143552,-1.1244859 -0.09571,-0.248361 -0.265461,-0.4465984 -0.509266,-0.594713 -0.243814,-0.1481023 -0.529777,-0.2221565 -0.85789,-0.2221629 -0.52408,6.4e-6 -0.976381,0.1663436 -1.356903,0.4990121 -0.380527,0.3326802 -0.57079,0.96385 -0.570787,1.8935113 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3679"
d="m 34.739644,-1.1005607 0.177731,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929667,0.10937249 -0.446606,-9e-8 -0.792952,-0.07063642 -1.039038,-0.21190921 C 32.70258,-0.25748083 32.529407,-0.44318603 32.42915,-0.67332443 32.328891,-0.90346149 32.278762,-1.3876622 32.278763,-2.1259279 V -6.3025901 H 31.37644 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540026,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3681"
d="m 40.912524,-2.3378371 1.271455,0.1572229 c -0.200523,0.742823 -0.571934,1.31930665 -1.114232,1.72945265 -0.542311,0.4101469 -1.235003,0.61522013 -2.078078,0.61522029 -1.061827,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933084,-1.57108797 -0.933084,-2.75140187 0,-1.2213214 0.314445,-2.1692154 0.943338,-2.8436849 0.62889,-0.6744567 1.444625,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763625,0.3304032 2.378851,0.9911882 0.615214,0.660798 0.922824,1.5904633 0.922831,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413939 c 0.04557,0.7975103 0.271151,1.4081728 0.676743,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517543,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318998,-0.2369723 0.571921,-0.6152184 0.758772,-1.1347396 z m -4.039947,-1.9892123 h 4.053618 c -0.05469,-0.6106582 -0.209636,-1.068655 -0.464833,-1.373992 -0.391923,-0.4739413 -0.900049,-0.7109148 -1.524379,-0.7109212 -0.565094,6.4e-6 -1.040181,0.1891295 -1.42526,0.5673698 -0.385085,0.378252 -0.598133,0.8840993 -0.639146,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3683"
d="m 42.908697,0 2.652283,-3.7733511 -2.454046,-3.4862484 h 1.538051 l 1.114232,1.7021095 c 0.209628,0.3235656 0.378244,0.5947179 0.505848,0.813458 0.200513,-0.3007694 0.385079,-0.5673646 0.553698,-0.7997864 l 1.223605,-1.7157811 h 1.469693 L 47.00333,-3.8417089 49.703463,0 H 48.192755 L 46.702555,-2.2558077 46.30608,-2.8641923 44.398897,0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3685"
d="m 53.415365,-1.1005607 0.17773,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 C 51.3783,-0.25748083 51.205127,-0.44318603 51.104871,-0.67332443 51.004611,-0.90346149 50.954482,-1.3876622 50.954483,-2.1259279 V -6.3025901 H 50.05216 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237277 v 0.9570094 h -1.237277 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.238111,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
</g>
<g
id="text3051"
transform="matrix(1.25,0,0,1.25,531.7375,246.0421)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3688"
d="M 7.0476902,-1.1825901 V 0 H 0.42381842 C 0.41470363,-0.29621688 0.46255405,-0.58104081 0.56736983,-0.85447263 0.73598502,-1.3056329 1.0059981,-1.7499582 1.3774099,-2.1874499 1.7488189,-2.6249373 2.2854272,-3.1307846 2.9872363,-3.7049933 4.0764,-4.5981974 4.812385,-5.3057001 5.1951936,-5.8275033 5.5779917,-6.3492949 5.7693934,-6.84261 5.7693992,-7.3074499 5.7693934,-7.7950612 5.5950812,-8.2063469 5.2464619,-8.5413084 4.8978322,-8.8762528 4.4432532,-9.0437293 3.8827236,-9.0437383 c -0.5924376,9e-6 -1.0663846,0.1777392 -1.4218424,0.5331909 -0.3554627,0.3554688 -0.5354715,0.8476445 -0.5400267,1.4765287 L 0.65623498,-7.1638985 C 0.7428208,-8.1072282 1.0686594,-8.8261238 1.6337517,-9.3205874 2.1988407,-9.8150325 2.9576116,-10.06226 3.9100668,-10.06227 c 0.9615616,10e-6 1.7226111,0.2666056 2.2831508,0.7997867 0.5605273,0.5331996 0.8407941,1.1939912 0.8408011,1.9823765 -7e-6,0.4010394 -0.082036,0.7952357 -0.2460881,1.1825901 -0.1640654,0.3873666 -0.4363571,0.7952345 -0.8168759,1.2236048 -0.3805307,0.4283801 -1.0128398,1.0162567 -1.8969292,1.7636315 -0.7382677,0.61978 -1.2122147,1.0401801 -1.4218425,1.2612016 -0.209633,0.2210252 -0.382806,0.4431879 -0.5195193,0.6664887 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3055"
d="m 551.9875,318.7421 h 129.325 v -28.34625 h -129.325 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3057"
d="m 551.9875,318.7421 h 129.325 v -28.34625 h -129.325 z" />
<g
id="text3059"
transform="matrix(1.25,0,0,1.25,569.475,309.8171)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3691"
d="m 8.2302804,-3.5135915 1.3261415,0.3349533 C 9.2784242,-2.0894683 8.7782734,-1.2589217 8.055968,-0.68699599 7.3336464,-0.11506887 6.4506923,0.17089436 5.4071028,0.17089453 4.3270451,0.17089436 3.4486481,-0.04898972 2.7719092,-0.48875834 2.0951648,-0.928526 1.5802031,-1.5653923 1.2270227,-2.3993591 0.8738398,-3.2333212 0.69724897,-4.1288076 0.69724967,-5.0858211 c -7e-7,-1.0435898 0.19937605,-1.953887 0.59813083,-2.7308945 0.3987522,-0.7769919 0.9661215,-1.367147 1.7021095,-1.7704673 0.735982,-0.4033011 1.5460213,-0.6049561 2.4301201,-0.6049671 1.0025748,1.1e-5 1.8456537,0.2552129 2.529239,0.7656079 0.6835695,0.5104139 1.1597951,1.2281702 1.4286783,2.1532711 L 8.0798932,-6.9656609 C 7.8474688,-7.6948032 7.5102373,-8.225715 7.0681976,-8.5583979 6.6261438,-8.8910636 6.0701675,-9.0574008 5.400267,-9.0574099 c -0.7701693,9.1e-6 -1.4138713,0.184575 -1.9311081,0.5536983 -0.5172437,0.3691403 -0.8806791,0.8647339 -1.0903071,1.4867824 -0.2096328,0.6220624 -0.314448,1.2634859 -0.3144459,1.9242723 -2.1e-6,0.8521983 0.1241811,1.5961584 0.37255,2.2318825 0.2483641,0.6357299 0.6345853,1.1108162 1.1586649,1.4252604 0.5240725,0.314447 1.0914417,0.47166984 1.7021095,0.47166887 0.7428155,9.7e-7 1.3717067,-0.21418667 1.8866756,-0.64256337 0.5149544,-0.4283736 0.8635789,-1.0641006 1.0458745,-1.907183 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3693"
d="m 11.039906,-8.6062483 v -1.4150067 h 1.230441 v 1.4150067 z m 0,8.6062483 v -7.2595995 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3695"
d="M 14.143327,2.7821629 V -7.2595995 h 1.121068 v 0.9433378 c 0.264314,-0.3691255 0.56281,-0.6459743 0.895487,-0.8305474 0.332671,-0.1845587 0.735982,-0.2768417 1.209933,-0.2768491 0.619773,7.4e-6 1.166635,0.1595088 1.640588,0.4785047 0.473941,0.3190097 0.83168,0.7690315 1.073217,1.3500667 0.241524,0.5810464 0.36229,1.2179127 0.362297,1.9106008 -7e-6,0.7428245 -0.133305,1.4115911 -0.399893,2.0063018 -0.266602,0.594714 -0.653963,1.05043227 -1.162083,1.36715616 C 18.375809,0.00569648 17.84148,0.16405858 17.28095,0.16405874 16.8708,0.16405858 16.502807,0.07747211 16.176971,-0.09570093 15.85113,-0.26887379 15.583395,-0.48761856 15.373767,-0.75193591 V 2.7821629 Z m 1.114232,-6.3709479 c -2e-6,0.934226 0.189121,1.6246392 0.56737,2.0712416 0.378243,0.4466054 0.83624,0.6699074 1.373992,0.66990655 0.546858,8.5e-7 1.015108,-0.23127615 1.404753,-0.69383175 0.389633,-0.4625525 0.584453,-1.1791695 0.584459,-2.1498532 -6e-6,-0.9251044 -0.190268,-1.6177962 -0.570788,-2.0780774 -0.38053,-0.4602697 -0.835109,-0.6904074 -1.363738,-0.6904139 -0.52408,6.5e-6 -0.987773,0.2449551 -1.391081,0.7348465 -0.403314,0.4899029 -0.604969,1.2019627 -0.604967,2.1361816 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3697"
d="m 21.929407,0 v -10.021255 h 1.230441 v 3.5956208 c 0.574202,-0.6653422 1.298795,-0.9980166 2.173778,-0.998024 0.537743,7.4e-6 1.004854,0.1059619 1.401335,0.3178638 0.396469,0.2119161 0.680154,0.5047151 0.851055,0.8783979 0.170888,0.3736952 0.256335,0.9159999 0.256342,1.6269159 V 0 h -1.230441 v -4.6004806 c -6e-6,-0.6152151 -0.133303,-1.0629583 -0.399893,-1.343231 -0.266601,-0.2802608 -0.643707,-0.4203942 -1.131322,-0.4204005 -0.364579,6.3e-6 -0.707507,0.094568 -1.028785,0.2836849 -0.321284,0.1891291 -0.550283,0.4454707 -0.686996,0.7690253 -0.136718,0.3235653 -0.205076,0.7701692 -0.205073,1.3398131 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3699"
d="m 34.685099,-2.3378371 1.271455,0.1572229 c -0.200523,0.742823 -0.571933,1.31930665 -1.114232,1.72945265 -0.542311,0.4101469 -1.235002,0.61522013 -2.078077,0.61522029 -1.061828,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933085,-1.57108797 -0.933084,-2.75140187 -1e-6,-1.2213214 0.314445,-2.1692154 0.943337,-2.8436849 0.62889,-0.6744567 1.444626,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763626,0.3304032 2.378852,0.9911882 0.615213,0.660798 0.922823,1.5904633 0.92283,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413938 c 0.04557,0.7975103 0.27115,1.4081728 0.676742,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517544,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318997,-0.2369723 0.571921,-0.6152184 0.758771,-1.1347396 z m -4.039946,-1.9892123 h 4.053618 c -0.05469,-0.6106582 -0.209637,-1.068655 -0.464833,-1.373992 -0.391924,-0.4739413 -0.900049,-0.7109148 -1.52438,-0.7109212 -0.565094,6.4e-6 -1.04018,0.1891295 -1.42526,0.5673698 -0.385084,0.378252 -0.598133,0.8840993 -0.639145,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3701"
d="m 37.487894,0 v -7.2595995 h 1.107397 v 1.1005608 c 0.282543,-0.5149555 0.543442,-0.8544656 0.782697,-1.0185314 0.239249,-0.1640514 0.502426,-0.2460807 0.789532,-0.2460881 0.4147,7.4e-6 0.83624,0.1321657 1.26462,0.3964753 l -0.423819,1.1415754 c -0.300778,-0.1777242 -0.601552,-0.2665893 -0.902323,-0.2665954 -0.268877,6.1e-6 -0.510408,0.080896 -0.724592,0.2426702 -0.214191,0.1617859 -0.366856,0.3862271 -0.457998,0.6733244 -0.136718,0.4374948 -0.205075,0.915999 -0.205073,1.435514 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3703"
d="m 44.850099,-1.1005607 0.17773,1.08688914 c -0.346349,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.246089,-0.14127255 -0.419262,-0.32697775 -0.519519,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -3e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.4204,0.088865 0.136713,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3705"
d="m 51.022978,-2.3378371 1.271456,0.1572229 c -0.200524,0.742823 -0.571934,1.31930665 -1.114233,1.72945265 -0.54231,0.4101469 -1.235002,0.61522013 -2.078077,0.61522029 -1.061828,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933085,-1.57108797 -0.933084,-2.75140187 -1e-6,-1.2213214 0.314445,-2.1692154 0.943337,-2.8436849 0.62889,-0.6744567 1.444626,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763626,0.3304032 2.378852,0.9911882 0.615213,0.660798 0.922823,1.5904633 0.92283,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413939 c 0.04557,0.7975103 0.271151,1.4081728 0.676742,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517544,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318997,-0.2369723 0.571921,-0.6152184 0.758771,-1.1347396 z m -4.039946,-1.9892123 h 4.053618 c -0.05469,-0.6106582 -0.209636,-1.068655 -0.464833,-1.373992 -0.391923,-0.4739413 -0.900049,-0.7109148 -1.524379,-0.7109212 -0.565095,6.4e-6 -1.040181,0.1891295 -1.425261,0.5673698 -0.385084,0.378252 -0.598132,0.8840993 -0.639145,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3707"
d="m 53.019151,0 2.652283,-3.7733511 -2.454045,-3.4862484 h 1.538051 l 1.114232,1.7021095 c 0.209627,0.3235656 0.378243,0.5947179 0.505848,0.813458 0.200512,-0.3007694 0.385078,-0.5673646 0.553698,-0.7997864 l 1.223605,-1.7157811 h 1.469693 L 57.113784,-3.8417089 59.813918,0 H 58.30321 L 56.81301,-2.2558077 56.416534,-2.8641923 54.509352,0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3709"
d="m 63.525819,-1.1005607 0.17773,1.08688914 c -0.346349,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792952,-0.07063642 -1.039038,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.51952,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -3e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.4204,0.088865 0.136713,1.1e-6 0.316722,-0.015949 0.540027,-0.04785 z" />
</g>
<g
id="text3063"
transform="matrix(1.25,0,0,1.25,654.1,309.8171)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3712"
d="M 7.0476902,-1.1825901 V 0 H 0.42381842 C 0.41470363,-0.29621688 0.46255405,-0.58104081 0.56736983,-0.85447263 0.73598502,-1.3056329 1.0059981,-1.7499582 1.3774099,-2.1874499 1.7488189,-2.6249373 2.2854272,-3.1307846 2.9872363,-3.7049933 4.0764,-4.5981974 4.812385,-5.3057001 5.1951936,-5.8275033 5.5779917,-6.3492949 5.7693934,-6.84261 5.7693992,-7.3074499 5.7693934,-7.7950612 5.5950812,-8.2063469 5.2464619,-8.5413084 4.8978322,-8.8762528 4.4432532,-9.0437293 3.8827236,-9.0437383 c -0.5924376,9e-6 -1.0663846,0.1777392 -1.4218424,0.5331909 -0.3554627,0.3554688 -0.5354715,0.8476445 -0.5400267,1.4765287 L 0.65623498,-7.1638985 C 0.7428208,-8.1072282 1.0686594,-8.8261238 1.6337517,-9.3205874 2.1988407,-9.8150325 2.9576116,-10.06226 3.9100668,-10.06227 c 0.9615616,10e-6 1.7226111,0.2666056 2.2831508,0.7997867 0.5605273,0.5331996 0.8407941,1.1939912 0.8408011,1.9823765 -7e-6,0.4010394 -0.082036,0.7952357 -0.2460881,1.1825901 -0.1640654,0.3873666 -0.4363571,0.7952345 -0.8168759,1.2236048 -0.3805307,0.4283801 -1.0128398,1.0162567 -1.8969292,1.7636315 -0.7382677,0.61978 -1.2122147,1.0401801 -1.4218425,1.2612016 -0.209633,0.2210252 -0.382806,0.4431879 -0.5195193,0.6664887 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3067"
d="m 164.8875,254.9671 h 129.325 v -28.34625 h -129.325 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3069"
d="m 164.8875,254.9671 h 129.325 v -28.34625 h -129.325 z" />
<g
id="text3071"
transform="matrix(1.25,0,0,1.25,188.6875,246.0421)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3715"
d="m 1.0800534,0 v -10.021255 h 3.7801869 c 0.6653438,10e-6 1.1734697,0.03191 1.5243792,0.095701 0.4921693,0.082039 0.9045944,0.2381228 1.2372764,0.468251 0.3326667,0.2301472 0.6004012,0.5525679 0.8032042,0.9672631 0.2027862,0.4147121 0.3041836,0.8704304 0.3041923,1.3671562 -8.7e-6,0.8522003 -0.2711611,1.5733744 -0.813458,2.1635247 -0.5423126,0.5901601 -1.5221069,0.8852377 -2.9393858,0.8852336 H 2.4061949 V 1e-7 Z m 1.3261415,-5.2567156 h 2.590761 c 0.8567454,5.2e-6 1.4651293,-0.1594962 1.8251536,-0.4785047 C 7.1821201,-6.0542174 7.3621288,-6.5030999 7.3621362,-7.0818692 7.3621288,-7.5011229 7.2561743,-7.860001 7.0442724,-8.1585047 6.8323563,-8.456992 6.5532289,-8.6540901 6.2068892,-8.7497997 5.983581,-8.8090344 5.571156,-8.838656 4.9696128,-8.8386649 H 2.4061949 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3717"
d="m 10.233167,0 v -10.021255 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3719"
d="m 18.107963,-0.89548732 c -0.455724,0.38736144 -0.894353,0.66079241 -1.315888,0.82029373 -0.421544,0.15950147 -0.873844,0.23925217 -1.356903,0.23925233 -0.79751,-1.6e-7 -1.410451,-0.19481972 -1.838825,-0.58445927 -0.428376,-0.38963871 -0.642564,-0.88751097 -0.642563,-1.49361817 -1e-6,-0.3554583 0.08089,-0.6801576 0.24267,-0.9740988 0.161779,-0.2939354 0.373688,-0.5297696 0.635728,-0.7075033 0.262036,-0.1777266 0.557114,-0.3121635 0.885233,-0.4033111 0.241529,-0.063797 0.606103,-0.1253185 1.093725,-0.1845661 0.993463,-0.1184826 1.724891,-0.2597552 2.194286,-0.4238184 0.0046,-0.1686112 0.0068,-0.275705 0.0068,-0.3212817 -6e-6,-0.5012852 -0.116214,-0.8544669 -0.348625,-1.0595461 -0.314451,-0.2779822 -0.781562,-0.4169762 -1.401335,-0.4169826 -0.578766,6.4e-6 -1.006002,0.1014037 -1.281709,0.3041922 -0.275712,0.2028008 -0.479646,0.5616789 -0.611802,1.0766355 l -1.203098,-0.1640587 c 0.109372,-0.5149565 0.28938,-0.9307994 0.540027,-1.24753 0.250644,-0.3167178 0.61294,-0.5605271 1.086889,-0.7314286 0.473945,-0.1708872 1.023085,-0.2563344 1.647423,-0.2563418 0.619773,7.4e-6 1.123342,0.072922 1.510708,0.218745 0.387355,0.145837 0.672179,0.3292636 0.854472,0.5502804 0.182281,0.22103 0.309882,0.5001574 0.382804,0.8373831 0.04101,0.2096363 0.06151,0.5878824 0.06152,1.1347397 v 1.6405874 c -7e-6,1.143856 0.0262,1.8673087 0.07861,2.17036052 C 19.38055,-0.56850855 19.484226,-0.27798815 19.639178,0 H 18.354051 C 18.226444,-0.25520224 18.144415,-0.55369771 18.107963,-0.89548732 Z M 18.005426,-3.6434713 c -0.446609,0.182291 -1.116515,0.3372352 -2.00972,0.4648331 -0.50585,0.072918 -0.863589,0.1549474 -1.073217,0.2460881 -0.209633,0.091147 -0.371413,0.2244442 -0.485341,0.3998932 -0.113931,0.1754541 -0.170896,0.3702737 -0.170894,0.5844593 -2e-6,0.3281191 0.124181,0.6015501 0.37255,0.8202937 0.248364,0.21874593 0.611799,0.32811832 1.090307,0.32811752 0.473944,8e-7 0.895483,-0.10367511 1.264619,-0.31102802 0.369128,-0.2073507 0.64028,-0.4910354 0.813458,-0.8510548 0.132153,-0.2779861 0.198232,-0.6881326 0.198238,-1.2304405 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3721"
d="m 21.163683,-8.6062483 v -1.4150067 h 1.23044 v 1.4150067 z m 0,8.6062483 v -7.2595995 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3723"
d="M 24.267103,0 V -7.2595995 H 25.3745 v 1.032203 c 0.533188,-0.7975008 1.303352,-1.1962543 2.310494,-1.1962617 0.437485,7.4e-6 0.839656,0.078619 1.206515,0.2358344 0.366848,0.15723 0.641418,0.3634426 0.823712,0.6186382 0.18228,0.2552088 0.309882,0.5582615 0.382803,0.9091589 0.04556,0.2278648 0.06835,0.6266183 0.06836,1.1962617 V 0 h -1.23044 v -4.4159146 c -6e-6,-0.5012856 -0.04786,-0.8761139 -0.143552,-1.1244859 -0.09571,-0.248361 -0.265461,-0.4465984 -0.509266,-0.594713 -0.243814,-0.1481023 -0.529777,-0.2221565 -0.85789,-0.2221629 -0.52408,6.4e-6 -0.976381,0.1663436 -1.356903,0.4990121 -0.380527,0.3326802 -0.57079,0.96385 -0.570787,1.8935113 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3725"
d="m 34.739644,-1.1005607 0.177731,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929667,0.10937249 -0.446606,-9e-8 -0.792952,-0.07063642 -1.039038,-0.21190921 C 32.70258,-0.25748083 32.529407,-0.44318603 32.42915,-0.67332443 32.328891,-0.90346149 32.278762,-1.3876622 32.278763,-2.1259279 V -6.3025901 H 31.37644 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540026,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3727"
d="m 40.912524,-2.3378371 1.271455,0.1572229 c -0.200523,0.742823 -0.571934,1.31930665 -1.114232,1.72945265 -0.542311,0.4101469 -1.235003,0.61522013 -2.078078,0.61522029 -1.061827,-1.6e-7 -1.903767,-0.32697803 -2.525821,-0.98093457 -0.622057,-0.65395487 -0.933084,-1.57108797 -0.933084,-2.75140187 0,-1.2213214 0.314445,-2.1692154 0.943338,-2.8436849 0.62889,-0.6744567 1.444625,-1.0116882 2.44721,-1.0116956 0.970676,7.4e-6 1.763625,0.3304032 2.378851,0.9911882 0.615214,0.660798 0.922824,1.5904633 0.922831,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 h -5.413939 c 0.04557,0.7975103 0.271151,1.4081728 0.676743,1.8319893 0.405587,0.4238195 0.911434,0.6357285 1.517543,0.63572765 0.451157,8.5e-7 0.836239,-0.1184859 1.155247,-0.35546065 0.318998,-0.2369723 0.571921,-0.6152184 0.758772,-1.1347396 z m -4.039947,-1.9892123 h 4.053618 c -0.05469,-0.6106582 -0.209636,-1.068655 -0.464833,-1.373992 -0.391923,-0.4739413 -0.900049,-0.7109148 -1.524379,-0.7109212 -0.565094,6.4e-6 -1.040181,0.1891295 -1.42526,0.5673698 -0.385085,0.378252 -0.598133,0.8840993 -0.639146,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3729"
d="m 42.908697,0 2.652283,-3.7733511 -2.454046,-3.4862484 h 1.538051 l 1.114232,1.7021095 c 0.209628,0.3235656 0.378244,0.5947179 0.505848,0.813458 0.200513,-0.3007694 0.385079,-0.5673646 0.553698,-0.7997864 l 1.223605,-1.7157811 h 1.469693 L 47.00333,-3.8417089 49.703463,0 H 48.192755 L 46.702555,-2.2558077 46.30608,-2.8641923 44.398897,0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3731"
d="m 53.415365,-1.1005607 0.17773,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 C 51.3783,-0.25748083 51.205127,-0.44318603 51.104871,-0.67332443 51.004611,-0.90346149 50.954482,-1.3876622 50.954483,-2.1259279 V -6.3025901 H 50.05216 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237277 v 0.9570094 h -1.237277 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.238111,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
</g>
<g
id="text3075"
transform="matrix(1.25,0,0,1.25,260.675,246.0421)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3734"
d="M 5.2157009,0 H 3.9852603 V -7.8406409 C 3.6890395,-7.5580877 3.3005396,-7.2755423 2.8197597,-6.993004 2.3389741,-6.7104517 1.907181,-6.4985427 1.5243792,-6.3572764 V -7.5467023 C 2.2125123,-7.8702547 2.8140604,-8.2621724 3.3290254,-8.7224566 3.8439837,-9.1827233 4.2085583,-9.6293273 4.4227503,-10.06227 h 0.7929506 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3079"
d="m 552.1625,754.5696 h 129.325 v -28.34625 h -129.325 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3081"
d="m 552.1625,754.5696 h 129.325 v -28.34625 h -129.325 z" />
<g
id="text3083"
transform="matrix(1.25,0,0,1.25,581.325,745.6471)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3737"
d="M -0.02050734,0 3.8280374,-10.021255 H 5.2567156 L 9.3581842,0 H 7.8474766 L 6.6785581,-3.0350868 H 2.4882243 L 1.3876636,0 Z M 2.871028,-4.1151402 H 6.2684112 L 5.2225367,-6.8904673 C 4.9035287,-7.7335392 4.6665552,-8.426231 4.5116155,-8.9685447 4.3840099,-8.325973 4.2040011,-7.6879674 3.9715888,-7.054526 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3739"
d="m 15.018214,0 v -1.0663818 c -0.565096,0.82029393 -1.332982,1.23044038 -2.303658,1.23044054 -0.428379,-1.6e-7 -0.828272,-0.08202945 -1.19968,-0.24608811 -0.371412,-0.1640585 -0.647122,-0.37027102 -0.827129,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.230441 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241529,0.5776248 0.492177,0.7621896 0.250642,0.18456703 0.56053,0.27684998 0.929666,0.27684908 0.369128,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552553,-0.4466028 0.686996,-0.7724433 0.134431,-0.3258366 0.20165,-0.7986443 0.201655,-1.4184246 v -3.8895594 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3741"
d="m 20.733053,-1.1005607 0.17773,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.519519,-0.55711615 -0.10026,-0.23013706 -0.150389,-0.71433777 -0.150388,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237277 v 0.9570094 h -1.237277 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.238111,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3743"
d="m 21.936319,0 v -10.021255 h 1.230441 v 3.5956208 c 0.574203,-0.6653422 1.298795,-0.9980166 2.173778,-0.998024 0.537743,7.4e-6 1.004855,0.1059619 1.401335,0.3178638 0.396469,0.2119161 0.680154,0.5047151 0.851055,0.8783979 0.170888,0.3736952 0.256335,0.9159999 0.256342,1.6269159 V 0 h -1.230441 v -4.6004806 c -5e-6,-0.6152151 -0.133303,-1.0629583 -0.399893,-1.343231 -0.2666,-0.2802608 -0.643707,-0.4203942 -1.131322,-0.4204005 -0.364578,6.3e-6 -0.707506,0.094568 -1.028785,0.2836849 -0.321284,0.1891291 -0.550283,0.4454707 -0.686996,0.7690253 -0.136718,0.3235653 -0.205075,0.7701692 -0.205073,1.3398131 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3745"
d="m 36.319096,0 v -8.8386649 h -3.301682 v -1.1825901 h 7.943178 v 1.1825901 H 37.645238 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3747"
d="m 46.900761,-0.89548732 c -0.455724,0.38736144 -0.894353,0.66079241 -1.315888,0.82029373 -0.421544,0.15950147 -0.873844,0.23925217 -1.356903,0.23925233 -0.79751,-1.6e-7 -1.410451,-0.19481972 -1.838825,-0.58445927 -0.428376,-0.38963871 -0.642564,-0.88751097 -0.642563,-1.49361817 -10e-7,-0.3554583 0.08089,-0.6801576 0.24267,-0.9740988 0.161779,-0.2939354 0.373688,-0.5297696 0.635728,-0.7075033 0.262036,-0.1777266 0.557114,-0.3121635 0.885233,-0.4033111 0.241529,-0.063797 0.606103,-0.1253185 1.093725,-0.1845661 0.993463,-0.1184826 1.724891,-0.2597552 2.194286,-0.4238184 0.0046,-0.1686112 0.0068,-0.275705 0.0068,-0.3212817 -6e-6,-0.5012852 -0.116214,-0.8544669 -0.348625,-1.0595461 -0.314451,-0.2779822 -0.781562,-0.4169762 -1.401335,-0.4169826 -0.578766,6.4e-6 -1.006002,0.1014037 -1.281709,0.3041922 -0.275712,0.2028008 -0.479646,0.5616789 -0.611802,1.0766355 l -1.203098,-0.1640587 c 0.109372,-0.5149565 0.28938,-0.9307994 0.540027,-1.24753 0.250644,-0.3167178 0.61294,-0.5605271 1.086889,-0.7314286 0.473945,-0.1708872 1.023085,-0.2563344 1.647423,-0.2563418 0.619773,7.4e-6 1.123342,0.072922 1.510708,0.218745 0.387355,0.145837 0.672179,0.3292636 0.854472,0.5502804 0.182281,0.22103 0.309883,0.5001574 0.382804,0.8373831 0.04101,0.2096363 0.06151,0.5878824 0.06152,1.1347397 v 1.6405874 c -7e-6,1.143856 0.0262,1.8673087 0.07861,2.17036052 C 48.173348,-0.56850855 48.277024,-0.27798815 48.431976,0 H 47.146849 C 47.019242,-0.25520224 46.937213,-0.55369771 46.900761,-0.89548732 Z M 46.798224,-3.6434713 c -0.446609,0.182291 -1.116515,0.3372352 -2.00972,0.4648331 -0.50585,0.072918 -0.863589,0.1549474 -1.073217,0.2460881 -0.209633,0.091147 -0.371413,0.2244442 -0.485341,0.3998932 -0.113931,0.1754541 -0.170896,0.3702737 -0.170894,0.5844593 -2e-6,0.3281191 0.124181,0.6015501 0.37255,0.8202937 0.248364,0.21874593 0.6118,0.32811832 1.090307,0.32811752 0.473944,8e-7 0.895483,-0.10367511 1.264619,-0.31102802 0.369128,-0.2073507 0.64028,-0.4910354 0.813458,-0.8510548 0.132153,-0.2779861 0.198233,-0.6881326 0.198238,-1.2304405 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3749"
d="m 49.724067,0.60154873 1.196262,0.17773031 c 0.05013,0.36913106 0.189121,0.63800486 0.416982,0.80662216 0.305329,0.2278576 0.722311,0.3417871 1.250948,0.3417891 0.569645,-2e-6 1.009413,-0.1139315 1.319306,-0.3417891 0.309884,-0.2278607 0.519514,-0.5468635 0.628892,-0.95700934 0.06379,-0.25064569 0.09342,-0.7770003 0.08886,-1.57906542 C 54.087569,-0.3167242 53.417663,0 52.615602,0 c -0.998026,0 -1.770469,-0.36001744 -2.317329,-1.0800534 -0.546864,-0.7200338 -0.820295,-1.5836199 -0.820294,-2.590761 -10e-7,-0.6926881 0.125322,-1.331833 0.375968,-1.9174366 0.250644,-0.5855924 0.614079,-1.0378928 1.090307,-1.3569025 0.476224,-0.3189959 1.035618,-0.4784973 1.678184,-0.4785047 0.856747,7.4e-6 1.56311,0.3463533 2.119092,1.0390387 v -0.87498 h 1.13474 v 6.27524703 c -7e-6,1.13018232 -0.115076,1.9311072 -0.345207,2.40277707 -0.230144,0.471667 -0.594719,0.8442167 -1.093725,1.1176502 C 53.938321,2.8095032 53.324241,2.9462187 52.595095,2.9462216 51.729227,2.9462187 51.029699,2.7513991 50.49651,2.3617623 49.963318,1.9721209 49.705838,1.3853836 49.724067,0.60154873 Z m 1.018531,-4.36122833 c -10e-7,0.952455 0.189122,1.6474254 0.56737,2.0849132 0.378244,0.4374913 0.852191,0.656236 1.421843,0.656235 0.565087,1e-6 1.039034,-0.2176044 1.421842,-0.6528171 0.382798,-0.4352092 0.5742,-1.1176474 0.574206,-2.0473164 -6e-6,-0.8886469 -0.197104,-1.5585528 -0.591295,-2.0097196 -0.394202,-0.4511554 -0.869288,-0.6767359 -1.425261,-0.6767423 -0.546865,6.4e-6 -1.011698,0.222169 -1.394499,0.6664886 -0.382806,0.4443311 -0.574207,1.1039833 -0.574206,1.9789586 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3087"
d="M 435.95,538.4296 H 565.275 V 510.08335 H 435.95 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3089"
d="M 435.95,538.4296 H 565.275 V 510.08335 H 435.95 Z" />
<g
id="text3091"
transform="matrix(1.25,0,0,1.25,444.0375,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3752"
d="M 0.89548732,0 V -10.021255 H 2.1259279 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3754"
d="m 9.0026992,-2.3378371 1.2714548,0.1572229 C 10.073631,-1.4377912 9.7022209,-0.86130755 9.1599222,-0.45116155 8.6176114,-0.04101465 7.9249196,0.16405858 7.0818447,0.16405874 6.0200172,0.16405858 5.1780777,-0.16291929 4.5560236,-0.81687583 3.9339667,-1.4708307 3.622939,-2.3879638 3.6229395,-3.5682777 c -5e-7,-1.2213214 0.3144451,-2.1692154 0.9433378,-2.8436849 0.6288898,-0.6744567 1.4446255,-1.0116882 2.4472096,-1.0116956 0.9706761,7.4e-6 1.7636259,0.3304032 2.3788518,0.9911882 0.6152133,0.660798 0.9228233,1.5904633 0.9228303,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 H 4.8944308 c 0.04557,0.7975103 0.2711506,1.4081728 0.6767423,1.8319893 0.4055868,0.4238195 0.9114341,0.6357285 1.5175434,0.63572765 0.4511571,8.5e-7 0.8362391,-0.1184859 1.155247,-0.35546065 0.3189977,-0.2369723 0.5719213,-0.6152184 0.7587717,-1.1347396 z M 4.9627526,-4.3270494 H 9.0163708 C 8.9616787,-4.9377076 8.8067345,-5.3957044 8.5515377,-5.7010414 8.1596145,-6.1749827 7.6514886,-6.4119562 7.0271585,-6.4119626 c -0.5650946,6.4e-6 -1.0401809,0.1891295 -1.4252604,0.5673698 -0.3850844,0.378252 -0.5981327,0.8840993 -0.6391455,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3756"
d="m 11.819166,0 v -7.2595995 h 1.107397 v 1.032203 c 0.533188,-0.7975008 1.303352,-1.1962543 2.310494,-1.1962617 0.437485,7.4e-6 0.839656,0.078619 1.206515,0.2358344 0.366848,0.15723 0.641418,0.3634426 0.823712,0.6186382 0.18228,0.2552088 0.309882,0.5582615 0.382803,0.9091589 0.04556,0.2278648 0.06835,0.6266183 0.06836,1.1962617 V 0 h -1.230441 v -4.4159146 c -5e-6,-0.5012856 -0.04786,-0.8761139 -0.143551,-1.1244859 -0.09571,-0.248361 -0.265461,-0.4465984 -0.509266,-0.594713 -0.243814,-0.1481023 -0.529777,-0.2221565 -0.85789,-0.2221629 -0.52408,6.4e-6 -0.976381,0.1663436 -1.356903,0.4990121 -0.380527,0.3326802 -0.57079,0.96385 -0.570787,1.8935113 V 0 Z" />
</g>
<g
id="text3095"
transform="matrix(1.25,0,0,1.25,467.4,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3759"
d="M 3.2743391,2.9462216 C 2.5953156,2.0894683 2.0211106,1.0868881 1.5517223,-0.06152203 1.0823309,-1.209932 0.847636,-2.3993567 0.84763685,-3.6297997 0.847636,-4.7144056 1.0230875,-5.7534433 1.373992,-6.7469159 1.7841371,-7.8998764 2.4175855,-9.0482865 3.2743391,-10.19215 h 0.8818158 c -0.5514233,0.9479047 -0.9159979,1.6246463 -1.093725,2.0302274 -0.2779912,0.6288994 -0.496736,1.2851338 -0.656235,1.968705 -0.1959612,0.8521994 -0.2939407,1.7089497 -0.2939386,2.5702536 -2.1e-6,2.1920086 0.6812968,4.38173494 2.0438986,6.5691856 z" />
</g>
<g
id="text3099"
transform="matrix(1.25,0,0,1.25,473.225,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3762"
d="M -0.02050734,0 3.8280374,-10.021255 H 5.2567156 L 9.3581842,0 H 7.8474766 L 6.6785581,-3.0350868 H 2.4882243 L 1.3876636,0 Z M 2.871028,-4.1151402 H 6.2684112 L 5.2225367,-6.8904673 C 4.9035287,-7.7335392 4.6665552,-8.426231 4.5116155,-8.9685447 4.3840099,-8.325973 4.2040011,-7.6879674 3.9715888,-7.054526 Z" />
</g>
<g
id="text3103"
transform="matrix(1.25,0,0,1.25,484.8875,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3765"
d="M 1.7294526,2.9462216 H 0.84763685 C 2.2102337,0.75877094 2.8915325,-1.4309554 2.8915354,-3.622964 2.8915325,-4.4797107 2.7935531,-5.3296253 2.5975968,-6.1727103 2.44265,-6.8562815 2.2261838,-7.5125158 1.9481976,-8.1414152 1.7704655,-8.5515535 1.4036123,-9.2351309 0.84763685,-10.19215 H 1.7294526 c 0.8567486,1.1438635 1.490197,2.2922736 1.9003471,3.4452341 0.3508995,0.9934726 0.526351,2.0325103 0.5263552,3.1171162 -4.2e-6,1.230443 -0.2358384,2.4198677 -0.7075034,3.56827767 C 2.9769797,1.0868881 2.4039139,2.0894683 1.7294526,2.9462216 Z" />
</g>
<g
id="text3107"
transform="matrix(1.25,0,0,1.25,495.5875,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3768"
d="M 1.2851268,2.9462216 V -10.19215 H 2.3583445 V 2.9462216 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3770"
d="M 4.9218468,2.9462216 V -10.19215 H 5.9950644 V 2.9462216 Z" />
</g>
<g
id="text3111"
transform="matrix(1.25,0,0,1.25,509.5375,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3773"
d="M 0.89548732,0 V -10.021255 H 2.1259279 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3775"
d="m 9.0026992,-2.3378371 1.2714548,0.1572229 C 10.073631,-1.4377912 9.7022209,-0.86130755 9.1599222,-0.45116155 8.6176114,-0.04101465 7.9249196,0.16405858 7.0818447,0.16405874 6.0200172,0.16405858 5.1780777,-0.16291929 4.5560236,-0.81687583 3.9339667,-1.4708307 3.622939,-2.3879638 3.6229395,-3.5682777 c -5e-7,-1.2213214 0.3144451,-2.1692154 0.9433378,-2.8436849 0.6288898,-0.6744567 1.4446255,-1.0116882 2.4472096,-1.0116956 0.9706761,7.4e-6 1.7636259,0.3304032 2.3788518,0.9911882 0.6152133,0.660798 0.9228233,1.5904633 0.9228303,2.7889987 -7e-6,0.072919 -0.0023,0.182291 -0.0068,0.3281175 H 4.8944308 c 0.04557,0.7975103 0.2711506,1.4081728 0.6767423,1.8319893 0.4055868,0.4238195 0.9114341,0.6357285 1.5175434,0.63572765 0.4511571,8.5e-7 0.8362391,-0.1184859 1.155247,-0.35546065 0.3189977,-0.2369723 0.5719213,-0.6152184 0.7587717,-1.1347396 z M 4.9627526,-4.3270494 H 9.0163708 C 8.9616787,-4.9377076 8.8067345,-5.3957044 8.5515377,-5.7010414 8.1596145,-6.1749827 7.6514886,-6.4119562 7.0271585,-6.4119626 c -0.5650946,6.4e-6 -1.0401809,0.1891295 -1.4252604,0.5673698 -0.3850844,0.378252 -0.5981327,0.8840993 -0.6391455,1.5175434 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3777"
d="m 11.819166,0 v -7.2595995 h 1.107397 v 1.032203 c 0.533188,-0.7975008 1.303352,-1.1962543 2.310494,-1.1962617 0.437485,7.4e-6 0.839656,0.078619 1.206515,0.2358344 0.366848,0.15723 0.641418,0.3634426 0.823712,0.6186382 0.18228,0.2552088 0.309882,0.5582615 0.382803,0.9091589 0.04556,0.2278648 0.06835,0.6266183 0.06836,1.1962617 V 0 h -1.230441 v -4.4159146 c -5e-6,-0.5012856 -0.04786,-0.8761139 -0.143551,-1.1244859 -0.09571,-0.248361 -0.265461,-0.4465984 -0.509266,-0.594713 -0.243814,-0.1481023 -0.529777,-0.2221565 -0.85789,-0.2221629 -0.52408,6.4e-6 -0.976381,0.1663436 -1.356903,0.4990121 -0.380527,0.3326802 -0.57079,0.96385 -0.570787,1.8935113 V 0 Z" />
</g>
<g
id="text3115"
transform="matrix(1.25,0,0,1.25,532.8875,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3780"
d="M 3.2743391,2.9462216 C 2.5953156,2.0894683 2.0211106,1.0868881 1.5517223,-0.06152203 1.0823309,-1.209932 0.847636,-2.3993567 0.84763685,-3.6297997 0.847636,-4.7144056 1.0230875,-5.7534433 1.373992,-6.7469159 1.7841371,-7.8998764 2.4175855,-9.0482865 3.2743391,-10.19215 h 0.8818158 c -0.5514233,0.9479047 -0.9159979,1.6246463 -1.093725,2.0302274 -0.2779912,0.6288994 -0.496736,1.2851338 -0.656235,1.968705 -0.1959612,0.8521994 -0.2939407,1.7089497 -0.2939386,2.5702536 -2.1e-6,2.1920086 0.6812968,4.38173494 2.0438986,6.5691856 z" />
</g>
<g
id="text3119"
transform="matrix(1.25,0,0,1.25,538.7125,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3783"
d="m 8.2302804,-3.5135915 1.3261415,0.3349533 C 9.2784242,-2.0894683 8.7782734,-1.2589217 8.055968,-0.68699599 7.3336464,-0.11506887 6.4506923,0.17089436 5.4071028,0.17089453 4.3270451,0.17089436 3.4486481,-0.04898972 2.7719092,-0.48875834 2.0951648,-0.928526 1.5802031,-1.5653923 1.2270227,-2.3993591 0.8738398,-3.2333212 0.69724897,-4.1288076 0.69724967,-5.0858211 c -7e-7,-1.0435898 0.19937605,-1.953887 0.59813083,-2.7308945 0.3987522,-0.7769919 0.9661215,-1.367147 1.7021095,-1.7704673 0.735982,-0.4033011 1.5460213,-0.6049561 2.4301201,-0.6049671 1.0025748,1.1e-5 1.8456537,0.2552129 2.529239,0.7656079 0.6835695,0.5104139 1.1597951,1.2281702 1.4286783,2.1532711 L 8.0798932,-6.9656609 C 7.8474688,-7.6948032 7.5102373,-8.225715 7.0681976,-8.5583979 6.6261438,-8.8910636 6.0701675,-9.0574008 5.400267,-9.0574099 c -0.7701693,9.1e-6 -1.4138713,0.184575 -1.9311081,0.5536983 -0.5172437,0.3691403 -0.8806791,0.8647339 -1.0903071,1.4867824 -0.2096328,0.6220624 -0.314448,1.2634859 -0.3144459,1.9242723 -2.1e-6,0.8521983 0.1241811,1.5961584 0.37255,2.2318825 0.2483641,0.6357299 0.6345853,1.1108162 1.1586649,1.4252604 0.5240725,0.314447 1.0914417,0.47166984 1.7021095,0.47166887 0.7428155,9.7e-7 1.3717067,-0.21418667 1.8866756,-0.64256337 0.5149544,-0.4283736 0.8635789,-1.0641006 1.0458745,-1.907183 z" />
</g>
<g
id="text3123"
transform="matrix(1.25,0,0,1.25,551.35,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3786"
d="M 1.7294526,2.9462216 H 0.84763685 C 2.2102337,0.75877094 2.8915325,-1.4309554 2.8915354,-3.622964 2.8915325,-4.4797107 2.7935531,-5.3296253 2.5975968,-6.1727103 2.44265,-6.8562815 2.2261838,-7.5125158 1.9481976,-8.1414152 1.7704655,-8.5515535 1.4036123,-9.2351309 0.84763685,-10.19215 H 1.7294526 c 0.8567486,1.1438635 1.490197,2.2922736 1.9003471,3.4452341 0.3508995,0.9934726 0.526351,2.0325103 0.5263552,3.1171162 -4.2e-6,1.230443 -0.2358384,2.4198677 -0.7075034,3.56827767 C 2.9769797,1.0868881 2.4039139,2.0894683 1.7294526,2.9462216 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3127"
d="m 21.38,188.6546 h 115.1575 c 5.875,0 10.625,-4.75 10.625,-10.625 0,0 0,0 0,0 v 0 -30.3875 c 0,-5.8625 -4.75,-10.625 -10.625,-10.625 H 21.38 c -5.87125,0 -10.63,4.7625 -10.63,10.625 v 0 30.3875 c 0,5.875 4.75875,10.625 10.63,10.625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3129"
d="m 21.38,188.6546 h 115.1575 c 5.875,0 10.625,-4.75 10.625,-10.625 0,0 0,0 0,0 v 0 -30.3875 c 0,-5.8625 -4.75,-10.625 -10.625,-10.625 H 21.38 c -5.87125,0 -10.63,4.7625 -10.63,10.625 v 0 30.3875 c 0,5.875 4.75875,10.625 10.63,10.625 z" />
<g
id="text3131"
transform="matrix(1.25,0,0,1.25,66.89875,168.0921)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3789"
d="M 0.62889186,0 2.7274766,-10.021255 H 9.959733 L 9.7204806,-8.8796796 H 3.8280374 l -0.656235,3.1171162 H 8.9138585 L 8.6746061,-4.620988 H 2.9325501 L 2.2079573,-1.1347397 H 8.5173832 L 8.2781308,0 Z" />
</g>
<g
id="text3135"
transform="matrix(1.25,0,0,1.25,83.4375,170.5046)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:9.09864044px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3792"
d="M 0.40428529,0 1.7637501,-6.5129916 h 0.8707683 l -0.6530762,3.136543 3.5363856,-3.136543 h 1.226184 L 3.7185362,-3.8607024 5.9354412,0 H 4.9624909 L 3.0832307,-3.3009228 1.7193232,-2.1147231 1.2750536,0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3139"
d="m 289.7875,188.6546 h 115.15 c 5.875,0 10.6375,-4.75 10.6375,-10.625 0,0 0,0 0,0 v -30.3875 c 0,-5.8625 -4.7625,-10.625 -10.6375,-10.625 h -115.15 c -5.875,0 -10.6375,4.7625 -10.6375,10.625 v 0 30.3875 c 0,5.875 4.7625,10.625 10.6375,10.625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3141"
d="m 289.7875,188.6546 h 115.15 c 5.875,0 10.6375,-4.75 10.6375,-10.625 0,0 0,0 0,0 v -30.3875 c 0,-5.8625 -4.7625,-10.625 -10.6375,-10.625 h -115.15 c -5.875,0 -10.6375,4.7625 -10.6375,10.625 v 0 30.3875 c 0,5.875 4.7625,10.625 10.6375,10.625 z" />
<g
id="text3143"
transform="matrix(1.25,0,0,1.25,335.3,168.0921)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3795"
d="M 0.62889186,0 2.7274766,-10.021255 H 9.959733 L 9.7204806,-8.8796796 H 3.8280374 l -0.656235,3.1171162 H 8.9138585 L 8.6746061,-4.620988 H 2.9325501 L 2.2079573,-1.1347397 H 8.5173832 L 8.2781308,0 Z" />
</g>
<g
id="text3147"
transform="matrix(1.25,0,0,1.25,351.8375,170.5046)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:9.09864044px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3798"
d="M 0.40428529,0 1.7637501,-6.5129916 h 0.8707683 l -0.6530762,3.136543 3.5363856,-3.136543 h 1.226184 L 3.7185362,-3.8607024 5.9354412,0 H 4.9624909 L 3.0832307,-3.3009228 1.7193232,-2.1147231 1.2750536,0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3151"
d="m 559.075,188.6546 h 115.1625 c 5.8625,0 10.625,-4.75 10.625,-10.625 0,0 0,0 0,0 v 0 -30.3875 c 0,-5.8625 -4.7625,-10.625 -10.625,-10.625 H 559.075 c -5.875,0 -10.625,4.7625 -10.625,10.625 v 0 30.3875 c 0,5.875 4.75,10.625 10.625,10.625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3153"
d="m 559.075,188.6546 h 115.1625 c 5.8625,0 10.625,-4.75 10.625,-10.625 0,0 0,0 0,0 v 0 -30.3875 c 0,-5.8625 -4.7625,-10.625 -10.625,-10.625 H 559.075 c -5.875,0 -10.625,4.7625 -10.625,10.625 v 0 30.3875 c 0,5.875 4.75,10.625 10.625,10.625 z" />
<g
id="text3155"
transform="matrix(1.25,0,0,1.25,604.6,168.0921)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3801"
d="M 0.62889186,0 2.7274766,-10.021255 H 9.959733 L 9.7204806,-8.8796796 H 3.8280374 l -0.656235,3.1171162 H 8.9138585 L 8.6746061,-4.620988 H 2.9325501 L 2.2079573,-1.1347397 H 8.5173832 L 8.2781308,0 Z" />
</g>
<g
id="text3159"
transform="matrix(1.25,0,0,1.25,621.125,170.5046)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:9.09864044px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3804"
d="M 0.40428529,0 1.7637501,-6.5129916 h 0.8707683 l -0.6530762,3.136543 3.5363856,-3.136543 h 1.226184 L 3.7185362,-3.8607024 5.9354412,0 H 4.9624909 L 3.0832307,-3.3009228 1.7193232,-2.1147231 1.2750536,0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3163"
d="M 127.675,472.1296 H 235.75 c 5.875,0 10.625,-4.7625 10.625,-10.6375 0,0 0,0 0,0 v -30.3875 c 0,-5.8625 -4.75,-10.625 -10.625,-10.625 v 0 H 127.675 c -5.8625,0 -10.625,4.7625 -10.625,10.625 v 0 30.3875 c 0,5.875 4.7625,10.6375 10.625,10.6375 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3165"
d="M 127.675,472.1296 H 235.75 c 5.875,0 10.625,-4.7625 10.625,-10.6375 0,0 0,0 0,0 v -30.3875 c 0,-5.8625 -4.75,-10.625 -10.625,-10.625 v 0 H 127.675 c -5.8625,0 -10.625,4.7625 -10.625,10.625 v 0 30.3875 c 0,5.875 4.7625,10.6375 10.625,10.6375 z" />
<g
id="text3167"
transform="matrix(1.25,0,0,1.25,158.65,451.5671)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3807"
d="M 0.92283044,0 V -7.2595995 H 2.0233912 v 1.0185314 c 0.2278571,-0.355454 0.5309098,-0.6414172 0.9091589,-0.8578905 0.3782432,-0.2164591 0.808897,-0.3246922 1.2919626,-0.3246996 0.5377433,7.4e-6 0.9786508,0.1116584 1.3227236,0.3349533 0.3440618,0.223309 0.5867318,0.535476 0.7280107,0.936502 0.5741988,-0.8476299 1.3215767,-1.2714479 2.2421362,-1.2714553 0.7200263,7.4e-6 1.273724,0.1993842 1.6610948,0.5981308 0.38735,0.3987604 0.581031,1.0128407 0.581041,1.842243 V 0 H 9.5359145 V -4.5731375 C 9.535905,-5.0653087 9.4960297,-5.4196296 9.4162884,-5.6361015 9.3365283,-5.852562 9.1918377,-6.0268743 8.9822163,-6.1590387 8.7725769,-6.2911909 8.526489,-6.35727 8.2439519,-6.3572764 c -0.5104127,6.4e-6 -0.9342307,0.1697615 -1.2714552,0.5092657 -0.3372385,0.339516 -0.5058543,0.88296 -0.5058478,1.6303338 V 0 H 5.2362083 V -4.7166889 C 5.236203,-5.2635461 5.135945,-5.6736926 4.9354339,-5.9471295 4.7349129,-6.2205545 4.4067958,-6.35727 3.9510814,-6.3572764 3.6047316,-6.35727 3.2845895,-6.2661264 2.9906542,-6.0838451 2.6967129,-5.9015517 2.4836646,-5.6349565 2.3515087,-5.2840587 2.219348,-4.9331504 2.1532689,-4.4273031 2.153271,-3.7665154 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3809"
d="m 17.342374,0 v -1.0663818 c -0.565096,0.82029393 -1.332981,1.23044038 -2.303658,1.23044054 -0.428378,-1.6e-7 -0.828271,-0.08202945 -1.199679,-0.24608811 -0.371413,-0.1640585 -0.647122,-0.37027102 -0.82713,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.23044 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241528,0.5776248 0.492176,0.7621896 0.250643,0.18456703 0.560531,0.27684998 0.929666,0.27684908 0.369129,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552554,-0.4466028 0.686996,-0.7724433 0.134432,-0.3258366 0.20165,-0.7986443 0.201656,-1.4184246 v -3.8895594 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3811"
d="m 20.343407,0 v -10.021255 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3813"
d="m 26.167468,-1.1005607 0.177731,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.51952,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540026,-0.04785 z" />
</g>
<g
id="text3171"
transform="matrix(1.25,0,0,1.25,196.5625,453.9796)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:9.09864044px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3816"
d="M 0.38207182,0 1.7459793,-6.5129916 H 2.612305 L 2.0480826,-3.8073901 H 5.4245312 L 5.9887536,-6.5129916 H 6.8595219 L 5.5000571,0 H 4.6292887 L 5.2690369,-3.0699026 H 1.897031 L 1.2528401,0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3175"
d="M 293.325,472.1296 H 401.4 c 5.875,0 10.625,-4.7625 10.625,-10.6375 0,0 0,0 0,0 v 0 -30.3875 c 0,-5.8625 -4.75,-10.625 -10.625,-10.625 v 0 H 293.325 c -5.8625,0 -10.625,4.7625 -10.625,10.625 v 0 30.3875 c 0,5.875 4.7625,10.6375 10.625,10.6375 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3177"
d="M 293.325,472.1296 H 401.4 c 5.875,0 10.625,-4.7625 10.625,-10.6375 0,0 0,0 0,0 v 0 -30.3875 c 0,-5.8625 -4.75,-10.625 -10.625,-10.625 v 0 H 293.325 c -5.8625,0 -10.625,4.7625 -10.625,10.625 v 0 30.3875 c 0,5.875 4.7625,10.6375 10.625,10.6375 z" />
<g
id="text3179"
transform="matrix(1.25,0,0,1.25,324.3,451.5671)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3819"
d="M 0.92283044,0 V -7.2595995 H 2.0233912 v 1.0185314 c 0.2278571,-0.355454 0.5309098,-0.6414172 0.9091589,-0.8578905 0.3782432,-0.2164591 0.808897,-0.3246922 1.2919626,-0.3246996 0.5377433,7.4e-6 0.9786508,0.1116584 1.3227236,0.3349533 0.3440618,0.223309 0.5867318,0.535476 0.7280107,0.936502 0.5741988,-0.8476299 1.3215767,-1.2714479 2.2421362,-1.2714553 0.7200263,7.4e-6 1.273724,0.1993842 1.6610948,0.5981308 0.38735,0.3987604 0.581031,1.0128407 0.581041,1.842243 V 0 H 9.5359145 V -4.5731375 C 9.535905,-5.0653087 9.4960297,-5.4196296 9.4162884,-5.6361015 9.3365283,-5.852562 9.1918377,-6.0268743 8.9822163,-6.1590387 8.7725769,-6.2911909 8.526489,-6.35727 8.2439519,-6.3572764 c -0.5104127,6.4e-6 -0.9342307,0.1697615 -1.2714552,0.5092657 -0.3372385,0.339516 -0.5058543,0.88296 -0.5058478,1.6303338 V 0 H 5.2362083 V -4.7166889 C 5.236203,-5.2635461 5.135945,-5.6736926 4.9354339,-5.9471295 4.7349129,-6.2205545 4.4067958,-6.35727 3.9510814,-6.3572764 3.6047316,-6.35727 3.2845895,-6.2661264 2.9906542,-6.0838451 2.6967129,-5.9015517 2.4836646,-5.6349565 2.3515087,-5.2840587 2.219348,-4.9331504 2.1532689,-4.4273031 2.153271,-3.7665154 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3821"
d="m 17.342374,0 v -1.0663818 c -0.565096,0.82029393 -1.332981,1.23044038 -2.303658,1.23044054 -0.428378,-1.6e-7 -0.828271,-0.08202945 -1.199679,-0.24608811 -0.371413,-0.1640585 -0.647122,-0.37027102 -0.82713,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.23044 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241528,0.5776248 0.492176,0.7621896 0.250643,0.18456703 0.560531,0.27684998 0.929666,0.27684908 0.369129,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552554,-0.4466028 0.686996,-0.7724433 0.134432,-0.3258366 0.20165,-0.7986443 0.201656,-1.4184246 v -3.8895594 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3823"
d="m 20.343407,0 v -10.021255 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3825"
d="m 26.167468,-1.1005607 0.177731,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.51952,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540026,-0.04785 z" />
</g>
<g
id="text3183"
transform="matrix(1.25,0,0,1.25,362.2125,453.9796)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:9.09864044px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3828"
d="M 0.38207182,0 1.7459793,-6.5129916 H 2.612305 L 2.0480826,-3.8073901 H 5.4245312 L 5.9887536,-6.5129916 H 6.8595219 L 5.5000571,0 H 4.6292887 L 5.2690369,-3.0699026 H 1.897031 L 1.2528401,0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3187"
d="m 562.625,472.1296 h 108.0625 c 5.875,0 10.6375,-4.7625 10.6375,-10.6375 0,0 0,0 0,0 v -30.3875 c 0,-5.8625 -4.7625,-10.625 -10.6375,-10.625 v 0 H 562.625 c -5.875,0 -10.6375,4.7625 -10.6375,10.625 v 30.3875 c 0,5.875 4.7625,10.6375 10.6375,10.6375 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3189"
d="m 562.625,472.1296 h 108.0625 c 5.875,0 10.6375,-4.7625 10.6375,-10.6375 0,0 0,0 0,0 v -30.3875 c 0,-5.8625 -4.7625,-10.625 -10.6375,-10.625 v 0 H 562.625 c -5.875,0 -10.6375,4.7625 -10.6375,10.625 v 30.3875 c 0,5.875 4.7625,10.6375 10.6375,10.6375 z" />
<g
id="text3191"
transform="matrix(1.25,0,0,1.25,593.5875,451.5671)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3831"
d="M 0.92283044,0 V -7.2595995 H 2.0233912 v 1.0185314 c 0.2278571,-0.355454 0.5309098,-0.6414172 0.9091589,-0.8578905 0.3782432,-0.2164591 0.808897,-0.3246922 1.2919626,-0.3246996 0.5377433,7.4e-6 0.9786508,0.1116584 1.3227236,0.3349533 0.3440618,0.223309 0.5867318,0.535476 0.7280107,0.936502 0.5741988,-0.8476299 1.3215767,-1.2714479 2.2421362,-1.2714553 0.7200263,7.4e-6 1.273724,0.1993842 1.6610948,0.5981308 0.38735,0.3987604 0.581031,1.0128407 0.581041,1.842243 V 0 H 9.5359145 V -4.5731375 C 9.535905,-5.0653087 9.4960297,-5.4196296 9.4162884,-5.6361015 9.3365283,-5.852562 9.1918377,-6.0268743 8.9822163,-6.1590387 8.7725769,-6.2911909 8.526489,-6.35727 8.2439519,-6.3572764 c -0.5104127,6.4e-6 -0.9342307,0.1697615 -1.2714552,0.5092657 -0.3372385,0.339516 -0.5058543,0.88296 -0.5058478,1.6303338 V 0 H 5.2362083 V -4.7166889 C 5.236203,-5.2635461 5.135945,-5.6736926 4.9354339,-5.9471295 4.7349129,-6.2205545 4.4067958,-6.35727 3.9510814,-6.3572764 3.6047316,-6.35727 3.2845895,-6.2661264 2.9906542,-6.0838451 2.6967129,-5.9015517 2.4836646,-5.6349565 2.3515087,-5.2840587 2.219348,-4.9331504 2.1532689,-4.4273031 2.153271,-3.7665154 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3833"
d="m 17.342374,0 v -1.0663818 c -0.565096,0.82029393 -1.332981,1.23044038 -2.303658,1.23044054 -0.428378,-1.6e-7 -0.828271,-0.08202945 -1.199679,-0.24608811 -0.371413,-0.1640585 -0.647122,-0.37027102 -0.82713,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.23044 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241528,0.5776248 0.492176,0.7621896 0.250643,0.18456703 0.560531,0.27684998 0.929666,0.27684908 0.369129,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552554,-0.4466028 0.686996,-0.7724433 0.134432,-0.3258366 0.20165,-0.7986443 0.201656,-1.4184246 v -3.8895594 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3835"
d="m 20.343407,0 v -10.021255 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3837"
d="m 26.167468,-1.1005607 0.177731,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.51952,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540026,-0.04785 z" />
</g>
<g
id="text3195"
transform="matrix(1.25,0,0,1.25,631.5125,453.9796)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:9.09864044px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3840"
d="M 0.38207182,0 1.7459793,-6.5129916 H 2.612305 L 2.0480826,-3.8073901 H 5.4245312 L 5.9887536,-6.5129916 H 6.8595219 L 5.5000571,0 H 4.6292887 L 5.2690369,-3.0699026 H 1.897031 L 1.2528401,0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3199"
d="m 562.625,625.5046 h 108.0625 c 5.875,0 10.6375,-4.7625 10.6375,-10.625 0,0 0,0 0,0 v -30.3875 c 0,-5.875 -4.7625,-10.625 -10.6375,-10.625 H 562.625 c -5.875,0 -10.6375,4.75 -10.6375,10.625 v 30.3875 c 0,5.8625 4.7625,10.625 10.6375,10.625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3201"
d="m 562.625,625.5046 h 108.0625 c 5.875,0 10.6375,-4.7625 10.6375,-10.625 0,0 0,0 0,0 v -30.3875 c 0,-5.875 -4.7625,-10.625 -10.6375,-10.625 H 562.625 c -5.875,0 -10.6375,4.75 -10.6375,10.625 v 30.3875 c 0,5.8625 4.7625,10.625 10.6375,10.625 z" />
<g
id="text3203"
transform="matrix(1.25,0,0,1.25,593.5875,604.9421)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3843"
d="M 0.92283044,0 V -7.2595995 H 2.0233912 v 1.0185314 c 0.2278571,-0.355454 0.5309098,-0.6414172 0.9091589,-0.8578905 0.3782432,-0.2164591 0.808897,-0.3246922 1.2919626,-0.3246996 0.5377433,7.4e-6 0.9786508,0.1116584 1.3227236,0.3349533 0.3440618,0.223309 0.5867318,0.535476 0.7280107,0.936502 0.5741988,-0.8476299 1.3215767,-1.2714479 2.2421362,-1.2714553 0.7200263,7.4e-6 1.273724,0.1993842 1.6610948,0.5981308 0.38735,0.3987604 0.581031,1.0128407 0.581041,1.842243 V 0 H 9.5359145 V -4.5731375 C 9.535905,-5.0653087 9.4960297,-5.4196296 9.4162884,-5.6361015 9.3365283,-5.852562 9.1918377,-6.0268743 8.9822163,-6.1590387 8.7725769,-6.2911909 8.526489,-6.35727 8.2439519,-6.3572764 c -0.5104127,6.4e-6 -0.9342307,0.1697615 -1.2714552,0.5092657 -0.3372385,0.339516 -0.5058543,0.88296 -0.5058478,1.6303338 V 0 H 5.2362083 V -4.7166889 C 5.236203,-5.2635461 5.135945,-5.6736926 4.9354339,-5.9471295 4.7349129,-6.2205545 4.4067958,-6.35727 3.9510814,-6.3572764 3.6047316,-6.35727 3.2845895,-6.2661264 2.9906542,-6.0838451 2.6967129,-5.9015517 2.4836646,-5.6349565 2.3515087,-5.2840587 2.219348,-4.9331504 2.1532689,-4.4273031 2.153271,-3.7665154 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3845"
d="m 17.342374,0 v -1.0663818 c -0.565096,0.82029393 -1.332981,1.23044038 -2.303658,1.23044054 -0.428378,-1.6e-7 -0.828271,-0.08202945 -1.199679,-0.24608811 -0.371413,-0.1640585 -0.647122,-0.37027102 -0.82713,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.23044 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241528,0.5776248 0.492176,0.7621896 0.250643,0.18456703 0.560531,0.27684998 0.929666,0.27684908 0.369129,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552554,-0.4466028 0.686996,-0.7724433 0.134432,-0.3258366 0.20165,-0.7986443 0.201656,-1.4184246 v -3.8895594 h 1.23044 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3847"
d="m 20.343407,0 v -10.021255 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3849"
d="m 26.167468,-1.1005607 0.177731,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.51952,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540026,-0.04785 z" />
</g>
<g
id="text3207"
transform="matrix(1.25,0,0,1.25,631.5125,607.3671)">
<path
inkscape:connector-curvature="0"
style="font-style:italic;font-variant:normal;font-weight:normal;font-size:9.09864044px;font-family:Arial;-inkscape-font-specification:'Arial Italic';writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3852"
d="M 0.38207182,0 1.7459793,-6.5129916 H 2.612305 L 2.0480826,-3.8073901 H 5.4245312 L 5.9887536,-6.5129916 H 6.8595219 L 5.5000571,0 H 4.6292887 L 5.2690369,-3.0699026 H 1.897031 L 1.2528401,0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3211"
d="M 117.05,538.4296 H 246.375 V 510.08335 H 117.05 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3213"
d="M 117.05,538.4296 H 246.375 V 510.08335 H 117.05 Z" />
<g
id="text3215"
transform="matrix(1.25,0,0,1.25,135.5,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3855"
d="M -0.02050734,0 3.8280374,-10.021255 H 5.2567156 L 9.3581842,0 H 7.8474766 L 6.6785581,-3.0350868 H 2.4882243 L 1.3876636,0 Z M 2.871028,-4.1151402 H 6.2684112 L 5.2225367,-6.8904673 C 4.9035287,-7.7335392 4.6665552,-8.426231 4.5116155,-8.9685447 4.3840099,-8.325973 4.2040011,-7.6879674 3.9715888,-7.054526 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3857"
d="m 15.018214,0 v -1.0663818 c -0.565096,0.82029393 -1.332982,1.23044038 -2.303658,1.23044054 -0.428379,-1.6e-7 -0.828272,-0.08202945 -1.19968,-0.24608811 -0.371412,-0.1640585 -0.647122,-0.37027102 -0.827129,-0.61863819 -0.18001,-0.24836576 -0.306472,-0.55255774 -0.379386,-0.91257674 -0.05013,-0.2415291 -0.07519,-0.6243325 -0.07519,-1.1484112 v -4.497944 h 1.230441 v 4.0262751 c -2e-6,0.642566 0.02506,1.0754983 0.07519,1.2987984 0.07747,0.3235619 0.241529,0.5776248 0.492177,0.7621896 0.250642,0.18456703 0.56053,0.27684998 0.929666,0.27684908 0.369128,9e-7 0.715474,-0.0945606 1.039039,-0.28368488 0.323555,-0.1891219 0.552553,-0.4466028 0.686996,-0.7724433 0.134431,-0.3258366 0.20165,-0.7986443 0.201655,-1.4184246 v -3.8895594 h 1.230441 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3859"
d="m 20.733053,-1.1005607 0.17773,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.519519,-0.55711615 -0.10026,-0.23013706 -0.150389,-0.71433777 -0.150388,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237277 v 0.9570094 h -1.237277 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.238111,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540027,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3861"
d="m 21.936319,0 v -10.021255 h 1.230441 v 3.5956208 c 0.574203,-0.6653422 1.298795,-0.9980166 2.173778,-0.998024 0.537743,7.4e-6 1.004855,0.1059619 1.401335,0.3178638 0.396469,0.2119161 0.680154,0.5047151 0.851055,0.8783979 0.170888,0.3736952 0.256335,0.9159999 0.256342,1.6269159 V 0 h -1.230441 v -4.6004806 c -5e-6,-0.6152151 -0.133303,-1.0629583 -0.399893,-1.343231 -0.2666,-0.2802608 -0.643707,-0.4203942 -1.131322,-0.4204005 -0.364578,6.3e-6 -0.707506,0.094568 -1.028785,0.2836849 -0.321284,0.1891291 -0.550283,0.4454707 -0.686996,0.7690253 -0.136718,0.3235653 -0.205075,0.7701692 -0.205073,1.3398131 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3863"
d="m 33.76935,0 v -10.021255 h 3.45207 c 0.779273,10e-6 1.373986,0.04786 1.784138,0.1435514 0.574199,0.1321682 1.064096,0.3714203 1.469693,0.717757 0.528626,0.4466131 0.923961,1.0174002 1.186008,1.7123632 0.262029,0.6949778 0.393048,1.4890669 0.393058,2.3822697 -10e-6,0.7610545 -0.08887,1.4355176 -0.266596,2.0233911 -0.177739,0.5878797 -0.405598,1.0743589 -0.683578,1.4594393 -0.277996,0.3850835 -0.582188,0.68813618 -0.912577,0.90915887 -0.330403,0.22102404 -0.729156,0.3885005 -1.196261,0.5024299 C 38.528187,-0.05696479 37.991579,0 37.385478,0 Z m 1.326142,-1.1825901 h 2.139599 c 0.660787,1.2e-6 1.179167,-0.061521 1.55514,-0.1845661 0.375962,-0.1230426 0.675597,-0.2962155 0.898906,-0.5195194 0.314438,-0.3144437 0.559387,-0.7371224 0.734846,-1.2680373 0.175444,-0.5309087 0.26317,-1.1746108 0.263178,-1.9311082 -8e-6,-1.048147 -0.172042,-1.853629 -0.516102,-2.4164486 C 39.826984,-8.0650743 39.408863,-8.4421811 38.916693,-8.6335915 38.561227,-8.7702983 37.9893,-8.838656 37.200912,-8.8386649 h -2.10542 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3865"
d="m 48.459564,-0.89548732 c -0.455724,0.38736144 -0.894352,0.66079241 -1.315887,0.82029373 -0.421544,0.15950147 -0.873845,0.23925217 -1.356903,0.23925233 -0.79751,-1.6e-7 -1.410451,-0.19481972 -1.838825,-0.58445927 -0.428376,-0.38963871 -0.642564,-0.88751097 -0.642564,-1.49361817 0,-0.3554583 0.08089,-0.6801576 0.242671,-0.9740988 0.161779,-0.2939354 0.373688,-0.5297696 0.635727,-0.7075033 0.262037,-0.1777266 0.557115,-0.3121635 0.885234,-0.4033111 0.241528,-0.063797 0.606103,-0.1253185 1.093725,-0.1845661 0.993462,-0.1184826 1.72489,-0.2597552 2.194286,-0.4238184 0.0046,-0.1686112 0.0068,-0.275705 0.0068,-0.3212817 -5e-6,-0.5012852 -0.116213,-0.8544669 -0.348624,-1.0595461 -0.314451,-0.2779822 -0.781562,-0.4169762 -1.401336,-0.4169826 -0.578766,6.4e-6 -1.006001,0.1014037 -1.281708,0.3041922 -0.275713,0.2028008 -0.479646,0.5616789 -0.611803,1.0766355 L 43.51726,-5.1883578 c 0.109371,-0.5149565 0.28938,-0.9307994 0.540026,-1.24753 0.250644,-0.3167178 0.61294,-0.5605271 1.08689,-0.7314286 0.473944,-0.1708872 1.023085,-0.2563344 1.647423,-0.2563418 0.619773,7.4e-6 1.123341,0.072922 1.510707,0.218745 0.387355,0.145837 0.672179,0.3292636 0.854473,0.5502804 0.182281,0.22103 0.309882,0.5001574 0.382804,0.8373831 0.04101,0.2096363 0.06151,0.5878824 0.06152,1.1347397 v 1.6405874 c -7e-6,1.143856 0.0262,1.8673087 0.07861,2.17036052 C 49.732152,-0.56850855 49.835828,-0.27798815 49.990779,0 H 48.705652 C 48.578045,-0.25520224 48.496016,-0.55369771 48.459564,-0.89548732 Z M 48.357028,-3.6434713 c -0.44661,0.182291 -1.116516,0.3372352 -2.00972,0.4648331 -0.505851,0.072918 -0.86359,0.1549474 -1.073218,0.2460881 -0.209632,0.091147 -0.371412,0.2244442 -0.48534,0.3998932 -0.113932,0.1754541 -0.170896,0.3702737 -0.170895,0.5844593 -10e-7,0.3281191 0.124182,0.6015501 0.37255,0.8202937 0.248365,0.21874593 0.6118,0.32811832 1.090308,0.32811752 0.473943,8e-7 0.895483,-0.10367511 1.264619,-0.31102802 0.369127,-0.2073507 0.64028,-0.4910354 0.813458,-0.8510548 0.132153,-0.2779861 0.198232,-0.6881326 0.198238,-1.2304405 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3867"
d="m 54.194909,-1.1005607 0.177731,1.08688914 c -0.34635,0.07291494 -0.656238,0.1093724 -0.929666,0.10937249 -0.446607,-9e-8 -0.792953,-0.07063642 -1.039039,-0.21190921 -0.24609,-0.14127255 -0.419263,-0.32697775 -0.51952,-0.55711615 -0.100259,-0.23013706 -0.150388,-0.71433777 -0.150387,-1.45260347 v -4.1766622 h -0.902323 v -0.9570094 h 0.902323 v -1.7978104 l 1.223605,-0.7382643 v 2.5360747 h 1.237276 v 0.9570094 h -1.237276 v 4.24502 c -2e-6,0.3509051 0.02164,0.5764857 0.06494,0.6767423 0.04329,0.1002594 0.113927,0.1800101 0.211909,0.2392524 0.09798,0.059244 0.23811,0.088866 0.420401,0.088865 0.136712,1.1e-6 0.316721,-0.015949 0.540026,-0.04785 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3869"
d="m 60.135372,-0.89548732 c -0.455724,0.38736144 -0.894352,0.66079241 -1.315888,0.82029373 -0.421543,0.15950147 -0.873844,0.23925217 -1.356902,0.23925233 -0.79751,-1.6e-7 -1.410451,-0.19481972 -1.838825,-0.58445927 -0.428377,-0.38963871 -0.642564,-0.88751097 -0.642564,-1.49361817 0,-0.3554583 0.08089,-0.6801576 0.242671,-0.9740988 0.161779,-0.2939354 0.373688,-0.5297696 0.635727,-0.7075033 0.262037,-0.1777266 0.557114,-0.3121635 0.885234,-0.4033111 0.241528,-0.063797 0.606103,-0.1253185 1.093725,-0.1845661 0.993462,-0.1184826 1.72489,-0.2597552 2.194286,-0.4238184 0.0046,-0.1686112 0.0068,-0.275705 0.0068,-0.3212817 -5e-6,-0.5012852 -0.116213,-0.8544669 -0.348624,-1.0595461 -0.314451,-0.2779822 -0.781563,-0.4169762 -1.401336,-0.4169826 -0.578766,6.4e-6 -1.006001,0.1014037 -1.281709,0.3041922 -0.275712,0.2028008 -0.479646,0.5616789 -0.611802,1.0766355 l -1.203097,-0.1640587 c 0.109371,-0.5149565 0.28938,-0.9307994 0.540026,-1.24753 0.250644,-0.3167178 0.61294,-0.5605271 1.08689,-0.7314286 0.473944,-0.1708872 1.023085,-0.2563344 1.647423,-0.2563418 0.619773,7.4e-6 1.123341,0.072922 1.510707,0.218745 0.387355,0.145837 0.672179,0.3292636 0.854473,0.5502804 0.182281,0.22103 0.309882,0.5001574 0.382804,0.8373831 0.04101,0.2096363 0.06151,0.5878824 0.06152,1.1347397 v 1.6405874 c -7e-6,1.143856 0.0262,1.8673087 0.07861,2.17036052 C 61.40796,-0.56850855 61.511636,-0.27798815 61.666587,0 H 60.38146 C 60.253853,-0.25520224 60.171824,-0.55369771 60.135372,-0.89548732 Z M 60.032836,-3.6434713 c -0.44661,0.182291 -1.116516,0.3372352 -2.00972,0.4648331 -0.505851,0.072918 -0.86359,0.1549474 -1.073218,0.2460881 -0.209633,0.091147 -0.371413,0.2244442 -0.48534,0.3998932 -0.113932,0.1754541 -0.170896,0.3702737 -0.170895,0.5844593 -1e-6,0.3281191 0.124182,0.6015501 0.37255,0.8202937 0.248365,0.21874593 0.6118,0.32811832 1.090308,0.32811752 0.473943,8e-7 0.895483,-0.10367511 1.264619,-0.31102802 0.369127,-0.2073507 0.64028,-0.4910354 0.813458,-0.8510548 0.132153,-0.2779861 0.198232,-0.6881326 0.198238,-1.2304405 z" />
</g>
<g
id="text3219"
transform="matrix(1.25,0,0,1.25,218.1875,529.5046)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3872"
d="M 5.2157009,0 H 3.9852603 V -7.8406409 C 3.6890395,-7.5580877 3.3005396,-7.2755423 2.8197597,-6.993004 2.3389741,-6.7104517 1.907181,-6.4985427 1.5243792,-6.3572764 V -7.5467023 C 2.2125123,-7.8702547 2.8140604,-8.2621724 3.3290254,-8.7224566 3.8439837,-9.1827233 4.2085583,-9.6293273 4.4227503,-10.06227 h 0.7929506 z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3223"
d="m 187.9125,102.0046 h 50.5 c 5.8625,0 10.625,-4.75 10.625,-10.625 0,0 0,0 0,0 v -5.9 c 0,-5.875 -4.7625,-10.6375 -10.625,-10.6375 h -50.5 c -5.8625,0 -10.625,4.7625 -10.625,10.6375 v 0 5.9 c 0,5.875 4.7625,10.625 10.625,10.625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3225"
d="m 187.9125,102.0046 h 50.5 c 5.8625,0 10.625,-4.75 10.625,-10.625 0,0 0,0 0,0 v -5.9 c 0,-5.875 -4.7625,-10.6375 -10.625,-10.6375 h -50.5 c -5.8625,0 -10.625,4.7625 -10.625,10.6375 v 0 5.9 c 0,5.875 4.7625,10.625 10.625,10.625 z" />
<g
id="text3227"
transform="matrix(1.25,0,0,1.25,199.0625,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3875"
d="M 0.92966622,-8.6062483 V -10.021255 H 2.1601068 v 1.4150067 z m 0,8.6062483 V -7.2595995 H 2.1601068 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3877"
d="m 4.0330864,0 v -7.2595995 h 1.1073965 v 1.032203 c 0.5331884,-0.7975008 1.3033523,-1.1962543 2.310494,-1.1962617 0.4374852,7.4e-6 0.8396566,0.078619 1.2065154,0.2358344 0.3668476,0.15723 0.6414179,0.3634426 0.8237116,0.6186382 0.1822809,0.2552088 0.309882,0.5582615 0.3828037,0.9091589 0.045565,0.2278648 0.068351,0.6266183 0.068358,1.1962617 V 0 H 8.701925 V -4.4159146 C 8.7019193,-4.9172002 8.6540688,-5.2920285 8.5583734,-5.5404005 8.4626672,-5.7887615 8.2929121,-5.9869989 8.0491078,-6.1351135 7.8052935,-6.2832158 7.5193303,-6.35727 7.1912172,-6.3572764 6.6671371,-6.35727 6.2148367,-6.1909328 5.8343147,-5.8582643 5.4537872,-5.5255841 5.2635248,-4.8944143 5.263527,-3.964753 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3879"
d="m 16.556362,-2.6591188 1.209934,0.1572229 c -0.132166,0.833967 -0.470536,1.4867834 -1.015114,1.95845131 -0.544589,0.47166896 -1.213356,0.70750317 -2.006302,0.70750333 -0.993469,-1.6e-7 -1.792116,-0.32469943 -2.395941,-0.97409879 -0.603828,-0.64939775 -0.905741,-1.58020235 -0.905741,-2.79241655 0,-0.7838318 0.129879,-1.4696879 0.38964,-2.0575701 0.259758,-0.5878709 0.655094,-1.0287784 1.186008,-1.3227236 0.530909,-0.2939313 1.108532,-0.4409005 1.73287,-0.4409079 0.788389,7.4e-6 1.43323,0.1993842 1.934526,0.5981308 0.501284,0.3987604 0.822566,0.9649903 0.963845,1.6986916 l -1.196261,0.1845661 c -0.113936,-0.4876136 -0.315591,-0.8544668 -0.604967,-1.1005607 -0.289386,-0.2460819 -0.63915,-0.3691258 -1.049292,-0.3691322 -0.619781,6.4e-6 -1.12335,0.2221691 -1.510708,0.6664886 -0.387363,0.4443311 -0.581043,1.1472766 -0.581041,2.1088385 -2e-6,0.9752407 0.186842,1.6838827 0.560534,2.1259279 0.373686,0.4420482 0.861305,0.6630716 1.462857,0.66307075 0.483057,8.5e-7 0.886368,-0.14810759 1.209933,-0.44432575 0.323555,-0.2962156 0.528628,-0.7519339 0.61522,-1.3671562 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3881"
d="m 18.805407,0 v -7.2595995 h 1.107396 v 1.1005608 c 0.282544,-0.5149555 0.543442,-0.8544656 0.782697,-1.0185314 0.239249,-0.1640514 0.502427,-0.2460807 0.789533,-0.2460881 0.4147,7.4e-6 0.836239,0.1321657 1.264619,0.3964753 l -0.423818,1.1415754 c -0.300779,-0.1777242 -0.601553,-0.2665893 -0.902323,-0.2665954 -0.268877,6.1e-6 -0.510408,0.080896 -0.724593,0.2426702 -0.21419,0.1617859 -0.366856,0.3862271 -0.457997,0.6733244 -0.136718,0.4374948 -0.205076,0.915999 -0.205074,1.435514 V 0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#66ccff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3231"
d="M 459.8625,102.0046 H 510.35 c 5.875,0 10.6375,-4.75 10.6375,-10.625 0,0 0,0 0,0 v -5.9 c 0,-5.875 -4.7625,-10.6375 -10.6375,-10.6375 h -50.4875 c -5.875,0 -10.625,4.7625 -10.625,10.6375 v 0 5.9 c 0,5.875 4.75,10.625 10.625,10.625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3233"
d="M 459.8625,102.0046 H 510.35 c 5.875,0 10.6375,-4.75 10.6375,-10.625 0,0 0,0 0,0 v -5.9 c 0,-5.875 -4.7625,-10.6375 -10.6375,-10.6375 h -50.4875 c -5.875,0 -10.625,4.7625 -10.625,10.6375 v 0 5.9 c 0,5.875 4.75,10.625 10.625,10.625 z" />
<g
id="text3235"
transform="matrix(1.25,0,0,1.25,471.0125,93.6796)">
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3884"
d="M 0.92966622,-8.6062483 V -10.021255 H 2.1601068 v 1.4150067 z m 0,8.6062483 V -7.2595995 H 2.1601068 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3886"
d="m 4.0330864,0 v -7.2595995 h 1.1073965 v 1.032203 c 0.5331884,-0.7975008 1.3033523,-1.1962543 2.310494,-1.1962617 0.4374852,7.4e-6 0.8396566,0.078619 1.2065154,0.2358344 0.3668476,0.15723 0.6414179,0.3634426 0.8237116,0.6186382 0.1822809,0.2552088 0.309882,0.5582615 0.3828037,0.9091589 0.045565,0.2278648 0.068351,0.6266183 0.068358,1.1962617 V 0 H 8.701925 V -4.4159146 C 8.7019193,-4.9172002 8.6540688,-5.2920285 8.5583734,-5.5404005 8.4626672,-5.7887615 8.2929121,-5.9869989 8.0491078,-6.1351135 7.8052935,-6.2832158 7.5193303,-6.35727 7.1912172,-6.3572764 6.6671371,-6.35727 6.2148367,-6.1909328 5.8343147,-5.8582643 5.4537872,-5.5255841 5.2635248,-4.8944143 5.263527,-3.964753 V 0 Z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3888"
d="m 16.556362,-2.6591188 1.209934,0.1572229 c -0.132166,0.833967 -0.470536,1.4867834 -1.015114,1.95845131 -0.544589,0.47166896 -1.213356,0.70750317 -2.006302,0.70750333 -0.993469,-1.6e-7 -1.792116,-0.32469943 -2.395941,-0.97409879 -0.603828,-0.64939775 -0.905741,-1.58020235 -0.905741,-2.79241655 0,-0.7838318 0.129879,-1.4696879 0.38964,-2.0575701 0.259758,-0.5878709 0.655094,-1.0287784 1.186008,-1.3227236 0.530909,-0.2939313 1.108532,-0.4409005 1.73287,-0.4409079 0.788389,7.4e-6 1.43323,0.1993842 1.934526,0.5981308 0.501284,0.3987604 0.822566,0.9649903 0.963845,1.6986916 l -1.196261,0.1845661 c -0.113936,-0.4876136 -0.315591,-0.8544668 -0.604967,-1.1005607 -0.289386,-0.2460819 -0.63915,-0.3691258 -1.049292,-0.3691322 -0.619781,6.4e-6 -1.12335,0.2221691 -1.510708,0.6664886 -0.387363,0.4443311 -0.581043,1.1472766 -0.581041,2.1088385 -2e-6,0.9752407 0.186842,1.6838827 0.560534,2.1259279 0.373686,0.4420482 0.861305,0.6630716 1.462857,0.66307075 0.483057,8.5e-7 0.886368,-0.14810759 1.209933,-0.44432575 0.323555,-0.2962156 0.528628,-0.7519339 0.61522,-1.3671562 z" />
<path
inkscape:connector-curvature="0"
style="font-variant:normal;font-weight:normal;font-size:13.99967957px;font-family:Arial;-inkscape-font-specification:Arial;writing-mode:lr-tb;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none"
id="path3890"
d="m 18.805407,0 v -7.2595995 h 1.107396 v 1.1005608 c 0.282544,-0.5149555 0.543442,-0.8544656 0.782697,-1.0185314 0.239249,-0.1640514 0.502427,-0.2460807 0.789533,-0.2460881 0.4147,7.4e-6 0.836239,0.1321657 1.264619,0.3964753 l -0.423818,1.1415754 c -0.300779,-0.1777242 -0.601553,-0.2665893 -0.902323,-0.2665954 -0.268877,6.1e-6 -0.510408,0.080896 -0.724593,0.2426702 -0.21419,0.1617859 -0.366856,0.3862271 -0.457997,0.6733244 -0.136718,0.4374948 -0.205076,0.915999 -0.205074,1.435514 V 0 Z" />
</g>
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3239"
d="m 333.1875,240.7921 c 0,-7.825 6.35,-14.175 14.175,-14.175 7.825,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.35,14.175 -14.175,14.175 -7.825,0 -14.175,-6.35 -14.175,-14.175 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3241"
d="m 333.1875,240.7921 c 0,-7.825 6.35,-14.175 14.175,-14.175 7.825,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.35,14.175 -14.175,14.175 -7.825,0 -14.175,-6.35 -14.175,-14.175 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3243"
d="M 361.5375,240.7921 H 352.575 344.8625 338.4 333.1875" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3245"
d="m 347.3625,226.6171 v 8.9625 7.7125 6.4625 5.2125" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3247"
d="m 333.1875,368.3546 c 0,-7.8375 6.35,-14.175 14.175,-14.175 7.825,0 14.175,6.3375 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.35,14.1625 -14.175,14.1625 -7.825,0 -14.175,-6.3375 -14.175,-14.1625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3249"
d="m 333.1875,368.3546 c 0,-7.8375 6.35,-14.175 14.175,-14.175 7.825,0 14.175,6.3375 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.35,14.1625 -14.175,14.1625 -7.825,0 -14.175,-6.3375 -14.175,-14.1625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3251"
d="M 361.5375,368.3546 H 352.575 344.8625 338.4 333.1875" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3253"
d="m 347.3625,354.1796 v 8.9625 7.7125 6.4625 5.2" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3255"
d="m 602.4875,240.7921 c 0,-7.825 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.3375,14.175 -14.175,14.175 -7.825,0 -14.1625,-6.35 -14.1625,-14.175 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3257"
d="m 602.4875,240.7921 c 0,-7.825 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.3375,14.175 -14.175,14.175 -7.825,0 -14.1625,-6.35 -14.1625,-14.175 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3259"
d="m 630.825,240.7921 h -8.9625 -7.7125 -6.4625 -5.2" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3261"
d="m 616.65,226.6171 v 8.9625 7.7125 6.4625 5.2125" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3263"
d="m 602.4875,368.3546 c 0,-7.8375 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.3375 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.3375,14.1625 -14.175,14.1625 -7.825,0 -14.1625,-6.3375 -14.1625,-14.1625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3265"
d="m 602.4875,368.3546 c 0,-7.8375 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.3375 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.3375,14.1625 -14.175,14.1625 -7.825,0 -14.1625,-6.3375 -14.1625,-14.1625 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3267"
d="m 630.825,368.3546 h -8.9625 -7.7125 -6.4625 -5.2" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3269"
d="m 616.65,354.1796 v 8.9625 7.7125 6.4625 5.2" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3271"
d="m 602.4875,524.2546 c 0,-7.825 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.3375,14.175 -14.175,14.175 -7.825,0 -14.1625,-6.35 -14.1625,-14.175 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3273"
d="m 602.4875,524.2546 c 0,-7.825 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.825 -6.3375,14.175 -14.175,14.175 -7.825,0 -14.1625,-6.35 -14.1625,-14.175 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3275"
d="m 630.825,524.2546 h -8.9625 -7.7125 -6.4625 -5.2" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3277"
d="m 616.65,510.0796 v 8.9625 7.7125 6.4625 5.2125" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3279"
d="m 602.4875,676.6171 c 0,-7.825 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.8275 -6.3375,14.17375 -14.175,14.17375 -7.825,0 -14.1625,-6.34625 -14.1625,-14.17375 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3281"
d="m 602.4875,676.6171 c 0,-7.825 6.3375,-14.175 14.1625,-14.175 7.8375,0 14.175,6.35 14.175,14.175 0,0 0,0 0,0 0,7.8275 -6.3375,14.17375 -14.175,14.17375 -7.825,0 -14.1625,-6.34625 -14.1625,-14.17375 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3283"
d="m 630.825,676.6171 h -8.9625 -7.7125 -6.4625 -5.2" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3285"
d="m 616.65,662.4421 v 8.9625 7.7125 6.4625 5.21125" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3287"
d="m 78.95875,128.8796 v -8.45 -7.2 -5.9375 -4.6875" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3289"
d="m 83.6125,127.7171 -4.65375,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3291"
d="m 169.15,88.4296 h -8.2125 -6.9875 -5.775 -4.55" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3293"
d="m 167.9875,93.0796 9.3,-4.65 -9.3,-4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3295"
d="M 274.5625,88.4296 H 266.35 259.3625 253.6 249.0375" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3297"
d="m 273.4,93.0796 9.3,-4.65 -9.3,-4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3299"
d="m 441.1,88.4296 h -9.375 -7.975 -6.5625 -5.1625" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3301"
d="m 439.9375,93.0796 9.3,-4.65 -9.3,-4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3303"
d="m 543.85,88.4296 h -7.325 -6.2625 -5.175 -4.1" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3305"
d="m 542.6875,93.0796 9.3,-4.65 -9.3,-4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3307"
d="m 616.65,128.8796 v -8.45 -7.2 -5.9375 -4.6875" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3309"
d="m 621.3,127.7171 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3311"
d="m 616.65,218.4796 v -9.625 -8.175 -6.725 -5.3" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3313"
d="m 621.3,217.3171 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3315"
d="M 594.35,240.7921 H 584.975 577 570.4375 565.275" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3317"
d="m 593.1875,245.4421 9.3,-4.65 -9.3,-4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3319"
d="m 616.65,282.2546 v -8.7875 -7.475 -6.175 -4.85" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3321"
d="m 621.3,281.0921 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3323"
d="m 347.3625,282.2546 v -8.7875 -7.475 -6.175 -4.85" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3325"
d="m 352.0125,281.0921 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3327"
d="m 347.3625,218.4796 v -9.625 -8.175 -6.725 -5.3" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3329"
d="m 352.0125,217.3171 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3331"
d="m 325.05,240.7921 h -9.95 -8.4625 -6.9625 -5.4625" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3333"
d="m 323.8875,245.4421 9.3,-4.65 -9.3,-4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3335"
d="M 325.05,368.3546 H 181.7125 v 52.125" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3337"
d="m 323.8875,363.7046 9.3,4.65 -9.3,4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3339"
d="M 594.35,368.3546 H 492.6375 v 77.95 H 412.025" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3341"
d="m 593.1875,363.7046 9.3,4.65 -9.3,4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3343"
d="M 594.35,676.6171 H 78.95875 V 188.6546" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3345"
d="m 593.1875,671.9671 9.3,4.65 -9.3,4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3347"
d="m 347.3625,128.8796 v -8.45 -7.2 -5.9375 -4.6875" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3349"
d="m 352.0125,127.7171 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3351"
d="m 347.3625,346.0421 v -8.7875 -7.4875 -6.1625 -4.8625" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3353"
d="m 352.0125,344.8796 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3355"
d="m 616.65,346.0421 v -8.7875 -7.4875 -6.1625 -4.8625" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3357"
d="m 621.3,344.8796 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3359"
d="m 616.65,412.3421 v -9.625 -8.175 -6.725 -5.3" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3361"
d="m 621.3,411.1796 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3363"
d="m 347.3625,412.3421 v -9.625 -8.175 -6.725 -5.3" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3365"
d="m 352.0125,411.1796 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3367"
d="m 181.7125,480.2671 v 9.6125 8.175 6.7375 5.2875" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3369"
d="m 186.3625,481.4296 -4.65,-9.3 -4.65,9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3371"
d="m 616.65,501.9421 v -9.6125 -8.1875 -6.725 -5.2875" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3373"
d="m 621.3,500.7796 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3375"
d="M 594.35,524.2546 H 584.975 577 570.4375 565.275" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3377"
d="m 593.1875,528.9046 9.3,-4.65 -9.3,-4.65 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3379"
d="m 616.65,565.7296 v -8.8 -7.475 -6.1625 -4.8625" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3381"
d="m 621.3,564.5671 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3383"
d="m 616.65,654.3046 v -9.2875 -7.8875 -6.5125 -5.1125" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3385"
d="m 621.3,653.1421 -4.65,9.3 -4.65,-9.3 z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3387"
d="m 616.7875,718.08585 -0.0375,-8.7875 -0.0375,-7.47875 -0.0375,-6.17 -0.025,-4.85875" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3389"
d="m 621.4375,716.90085 -4.6,9.3225 -4.7,-9.27625 9.3,-0.0463 z" />
<path
inkscape:connector-curvature="0"
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path2995-7"
d="M 14.034651,39.09625 H 143.35965 V 10.75 H 14.034651 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path2997-5"
d="M 14.034651,39.09625 H 143.35965 V 10.75 H 14.034651 Z" />
<path
inkscape:connector-curvature="0"
style="fill:none;stroke:#000000;stroke-width:1.5;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:10;stroke-dasharray:none;stroke-opacity:1"
id="path3287-3"
d="m 78.984461,66.015963 v -8.45 -7.200001 -5.9375 -4.6875" />
<path
inkscape:connector-curvature="0"
style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none"
id="path3289-6"
d="m 83.638211,64.853463 -4.65375,9.3 -4.65,-9.3 z" />
<g
aria-label="iv"
style="font-style:normal;font-weight:normal;font-size:17.33333397px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none"
id="text4422"
transform="translate(-10,53.50835)">
<path
d="m 83.545802,-32.44836 h 1.557292 v 9.479167 h -1.557292 z m 0,-3.690104 h 1.557292 v 1.972005 h -1.557292 z"
id="path5024"
inkscape:connector-curvature="0" />
<path
d="m 87.235906,-32.44836 h 1.650391 l 2.96224,7.95573 2.962239,-7.95573 h 1.650391 l -3.554688,9.479167 h -2.115885 z"
id="path5026"
inkscape:connector-curvature="0" />
</g>
</svg>
|