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
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="494.23297pt"
height="272.71344pt"
viewBox="0 0 494.23296 272.71344"
version="1.2"
id="svg697"
sodipodi:docname="PLRsearch.svg"
inkscape:version="0.92.1 r15371">
<metadata
id="metadata701">
<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>
<sodipodi:namedview
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1"
objecttolerance="10"
gridtolerance="10"
guidetolerance="10"
inkscape:pageopacity="0"
inkscape:pageshadow="2"
inkscape:window-width="1098"
inkscape:window-height="1460"
id="namedview699"
showgrid="false"
fit-margin-top="0"
fit-margin-left="0"
fit-margin-right="0"
fit-margin-bottom="0"
inkscape:zoom="0.21026372"
inkscape:cx="-334.07629"
inkscape:cy="209.03962"
inkscape:window-x="0"
inkscape:window-y="31"
inkscape:window-maximized="0"
inkscape:current-layer="svg697" />
<defs
id="defs100">
<g
id="g95">
<symbol
overflow="visible"
id="glyph0-0"
style="overflow:visible">
<path
style="stroke:none"
d="M 2.390625,-3.15625 V 0 h -2.28125 v -3.15625 z m -0.21875,2.953125 V -2.96875 H 0.3125 v 2.765625 z M 1.875,-2.09375 c 0,0.105469 -0.015625,0.195312 -0.046875,0.265625 -0.03125,0.074219 -0.074219,0.136719 -0.125,0.1875 -0.042969,0.054687 -0.101563,0.09375 -0.171875,0.125 -0.074219,0.023437 -0.152344,0.039063 -0.234375,0.046875 l -0.015625,0.375 c 0,0.011719 -0.011719,0.023438 -0.03125,0.03125 -0.023438,0 -0.054688,0 -0.09375,0 -0.03125,0 -0.058594,0 -0.078125,0 -0.011719,0 -0.023437,0 -0.03125,0 -0.011719,0 -0.023437,0 -0.03125,0 0,-0.00781 0,-0.019531 0,-0.03125 L 1,-1.546875 C 1,-1.597656 1.007812,-1.632812 1.03125,-1.65625 1.050781,-1.675781 1.082031,-1.6875 1.125,-1.6875 h 0.046875 c 0.070313,0 0.128906,-0.00391 0.171875,-0.015625 C 1.394531,-1.722656 1.4375,-1.75 1.46875,-1.78125 1.5,-1.820312 1.519531,-1.863281 1.53125,-1.90625 1.550781,-1.957031 1.5625,-2.007812 1.5625,-2.0625 c 0,-0.125 -0.039062,-0.21875 -0.109375,-0.28125 -0.0625,-0.070312 -0.167969,-0.109375 -0.3125,-0.109375 -0.0625,0 -0.121094,0.00781 -0.171875,0.015625 -0.054688,0.011719 -0.101562,0.027344 -0.140625,0.046875 -0.03125,0.011719 -0.058594,0.027344 -0.078125,0.046875 -0.023438,0.011719 -0.039062,0.015625 -0.046875,0.015625 -0.011719,0 -0.023437,0 -0.03125,0 0,-0.00781 -0.007813,-0.019531 -0.015625,-0.03125 0,-0.00781 0,-0.019531 0,-0.03125 0,-0.019531 0,-0.039063 0,-0.0625 0,-0.03125 0,-0.050781 0,-0.0625 0,-0.019531 0.007812,-0.039063 0.03125,-0.0625 0.007812,-0.00781 0.03125,-0.019531 0.0625,-0.03125 0.03125,-0.00781 0.066406,-0.019531 0.109375,-0.03125 0.050781,-0.019531 0.101563,-0.035156 0.15625,-0.046875 0.050781,-0.00781 0.101563,-0.015625 0.15625,-0.015625 0.125,0 0.226563,0.015625 0.3125,0.046875 0.09375,0.03125 0.164063,0.078125 0.21875,0.140625 0.0625,0.054687 0.101563,0.117187 0.125,0.1875 C 1.859375,-2.253906 1.875,-2.175781 1.875,-2.09375 Z m -0.53125,1.421875 c 0,0.042969 -0.00781,0.074219 -0.015625,0.09375 0,0.023437 -0.011719,0.042969 -0.03125,0.0625 -0.011719,0.011719 -0.027344,0.023437 -0.046875,0.03125 -0.023438,0 -0.054688,0 -0.09375,0 -0.03125,0 -0.0625,0 -0.09375,0 C 1.039062,-0.492188 1.019531,-0.503906 1,-0.515625 0.988281,-0.535156 0.976562,-0.554688 0.96875,-0.578125 c 0,-0.019531 0,-0.050781 0,-0.09375 0,-0.03125 0,-0.054687 0,-0.078125 C 0.976562,-0.769531 0.988281,-0.785156 1,-0.796875 1.019531,-0.816406 1.039062,-0.832031 1.0625,-0.84375 1.09375,-0.851562 1.125,-0.859375 1.15625,-0.859375 c 0.039062,0 0.070312,0.007813 0.09375,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.019531,0.011719 0.03125,0.027344 0.03125,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 z M 0,0.96875 Z m 0,0"
id="path2"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-1"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.34375,-1.015625 c 0,0.136719 -0.027344,0.273437 -0.078125,0.40625 -0.042969,0.125 -0.105469,0.242187 -0.1875,0.34375 C 1.992188,-0.171875 1.882812,-0.09375 1.75,-0.03125 1.613281,0.0195312 1.453125,0.046875 1.265625,0.046875 1.128906,0.046875 1.007812,0.03125 0.90625,0 0.8125,-0.03125 0.726562,-0.078125 0.65625,-0.140625 0.582031,-0.203125 0.519531,-0.273438 0.46875,-0.359375 0.414062,-0.453125 0.375,-0.550781 0.34375,-0.65625 0.3125,-0.769531 0.289062,-0.894531 0.28125,-1.03125 0.269531,-1.164062 0.265625,-1.3125 0.265625,-1.46875 c 0,-0.132812 0.003906,-0.269531 0.015625,-0.40625 0.019531,-0.132812 0.046875,-0.265625 0.078125,-0.390625 0.039063,-0.132813 0.09375,-0.257813 0.15625,-0.375 C 0.578125,-2.753906 0.65625,-2.851562 0.75,-2.9375 0.851562,-3.019531 0.972656,-3.082031 1.109375,-3.125 c 0.132813,-0.050781 0.289063,-0.078125 0.46875,-0.078125 0.0625,0 0.117187,0.00781 0.171875,0.015625 0.0625,0 0.117188,0.011719 0.171875,0.03125 0.050781,0.011719 0.09375,0.027344 0.125,0.046875 0.039063,0.011719 0.066406,0.023437 0.078125,0.03125 0.019531,0 0.03125,0.00781 0.03125,0.015625 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.011719 0,0.027344 0,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.023438 -0.00781,0.039062 -0.015625,0.046875 0,0.011719 -0.00781,0.023437 -0.015625,0.03125 0,0 -0.011719,0 -0.03125,0 -0.023437,0 -0.046875,-0.00391 -0.078125,-0.015625 C 2.007812,-2.789062 1.972656,-2.800781 1.921875,-2.8125 1.878906,-2.820312 1.828125,-2.832031 1.765625,-2.84375 1.703125,-2.863281 1.628906,-2.875 1.546875,-2.875 c -0.148437,0 -0.277344,0.03125 -0.390625,0.09375 -0.105469,0.0625 -0.195312,0.148438 -0.265625,0.25 -0.074219,0.105469 -0.125,0.230469 -0.15625,0.375 -0.03125,0.136719 -0.054687,0.277344 -0.0625,0.421875 0.050781,-0.019531 0.101563,-0.039063 0.15625,-0.0625 C 0.878906,-1.828125 0.9375,-1.851562 1,-1.875 1.0625,-1.894531 1.125,-1.910156 1.1875,-1.921875 1.257812,-1.929688 1.335938,-1.9375 1.421875,-1.9375 c 0.164063,0 0.304687,0.027344 0.421875,0.078125 0.125,0.042969 0.222656,0.105469 0.296875,0.1875 0.070313,0.085937 0.125,0.183594 0.15625,0.296875 0.03125,0.105469 0.046875,0.226562 0.046875,0.359375 z m -0.4375,0.03125 c 0,-0.09375 -0.011719,-0.175781 -0.03125,-0.25 C 1.863281,-1.316406 1.832031,-1.382812 1.78125,-1.4375 1.738281,-1.488281 1.679688,-1.53125 1.609375,-1.5625 1.535156,-1.59375 1.445312,-1.609375 1.34375,-1.609375 c -0.0625,0 -0.125,0.00781 -0.1875,0.015625 C 1.101562,-1.582031 1.046875,-1.566406 0.984375,-1.546875 0.929688,-1.523438 0.878906,-1.5 0.828125,-1.46875 0.773438,-1.445312 0.726562,-1.425781 0.6875,-1.40625 c 0,0.21875 0.007812,0.402344 0.03125,0.546875 0.03125,0.136719 0.070312,0.246094 0.125,0.328125 0.050781,0.085938 0.113281,0.148438 0.1875,0.1875 0.082031,0.03125 0.171875,0.046875 0.265625,0.046875 0.101563,0 0.191406,-0.015625 0.265625,-0.046875 C 1.644531,-0.382812 1.710938,-0.4375 1.765625,-0.5 1.816406,-0.570312 1.851562,-0.648438 1.875,-0.734375 c 0.019531,-0.082031 0.03125,-0.164063 0.03125,-0.25 z m 0,0"
id="path5"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.390625,-0.90625 c 0,0.0625 -0.011719,0.109375 -0.03125,0.140625 -0.011719,0.03125 -0.03125,0.046875 -0.0625,0.046875 H 1.9375 v 0.65625 c 0,0.0117188 -0.00781,0.0234375 -0.015625,0.03125 0,0.0117188 -0.011719,0.0234375 -0.03125,0.03125 C 1.878906,0 1.859375,0 1.828125,0 1.804688,0.0078125 1.773438,0.015625 1.734375,0.015625 1.691406,0.015625 1.65625,0.0078125 1.625,0 1.601562,0 1.582031,0 1.5625,0 1.550781,-0.0078125 1.539062,-0.0195312 1.53125,-0.03125 c 0,-0.0078125 0,-0.0195312 0,-0.03125 V -0.71875 H 0.234375 c -0.023437,0 -0.042969,0 -0.0625,0 C 0.160156,-0.726562 0.148438,-0.738281 0.140625,-0.75 0.128906,-0.769531 0.125,-0.789062 0.125,-0.8125 c 0,-0.03125 0,-0.0625 0,-0.09375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.03125 0,-0.054687 0,-0.078125 0.007812,-0.019531 0.015625,-0.035156 0.015625,-0.046875 0.007813,-0.019531 0.019531,-0.039063 0.03125,-0.0625 L 1.3125,-3.09375 C 1.320312,-3.113281 1.332031,-3.125 1.34375,-3.125 1.363281,-3.132812 1.382812,-3.144531 1.40625,-3.15625 1.4375,-3.164062 1.46875,-3.171875 1.5,-3.171875 c 0.039062,0 0.082031,0 0.125,0 0.050781,0 0.097656,0.00781 0.140625,0.015625 0.039063,0 0.070313,0.00781 0.09375,0.015625 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.00781,0.011719 0.015625,0.023438 0.015625,0.03125 v 2.015625 h 0.359375 c 0.03125,0 0.050781,0.015625 0.0625,0.046875 0.019531,0.03125 0.03125,0.074219 0.03125,0.125 z M 1.53125,-2.8125 0.5,-1.078125 h 1.03125 z m 0,0"
id="path8"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-3"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.359375,-1.59375 c 0,0.25 -0.023437,0.476562 -0.0625,0.671875 -0.03125,0.199219 -0.09375,0.371094 -0.1875,0.515625 -0.085937,0.148438 -0.199219,0.261719 -0.34375,0.34375 -0.148437,0.0703125 -0.324219,0.109375 -0.53125,0.109375 -0.199219,0 -0.367187,-0.0390625 -0.5,-0.109375 C 0.597656,-0.132812 0.488281,-0.238281 0.40625,-0.375 0.320312,-0.507812 0.257812,-0.675781 0.21875,-0.875 0.1875,-1.082031 0.171875,-1.316406 0.171875,-1.578125 c 0,-0.238281 0.019531,-0.457031 0.0625,-0.65625 0.039063,-0.195313 0.101563,-0.367187 0.1875,-0.515625 0.09375,-0.144531 0.207031,-0.253906 0.34375,-0.328125 0.144531,-0.082031 0.320313,-0.125 0.53125,-0.125 0.195313,0 0.363281,0.039063 0.5,0.109375 0.132813,0.0625 0.242187,0.167969 0.328125,0.3125 0.082031,0.136719 0.140625,0.304688 0.171875,0.5 0.039063,0.199219 0.0625,0.429688 0.0625,0.6875 z M 1.9375,-1.5625 c 0,-0.15625 -0.011719,-0.296875 -0.03125,-0.421875 -0.011719,-0.125 -0.027344,-0.234375 -0.046875,-0.328125 -0.023437,-0.09375 -0.054687,-0.175781 -0.09375,-0.25 -0.03125,-0.070312 -0.074219,-0.128906 -0.125,-0.171875 -0.042969,-0.039063 -0.09375,-0.070313 -0.15625,-0.09375 -0.0625,-0.019531 -0.132813,-0.03125 -0.203125,-0.03125 -0.148438,0 -0.261719,0.03125 -0.34375,0.09375 C 0.851562,-2.703125 0.785156,-2.613281 0.734375,-2.5 0.679688,-2.382812 0.644531,-2.25 0.625,-2.09375 0.613281,-1.9375 0.609375,-1.773438 0.609375,-1.609375 c 0,0.242187 0.007813,0.445313 0.03125,0.609375 0.019531,0.167969 0.054687,0.304688 0.109375,0.40625 0.0625,0.105469 0.128906,0.183594 0.203125,0.234375 0.082031,0.042969 0.1875,0.0625 0.3125,0.0625 0.082031,0 0.160156,-0.015625 0.234375,-0.046875 0.070312,-0.03125 0.128906,-0.070312 0.171875,-0.125 0.050781,-0.050781 0.09375,-0.113281 0.125,-0.1875 C 1.828125,-0.738281 1.851562,-0.828125 1.875,-0.921875 1.894531,-1.015625 1.910156,-1.113281 1.921875,-1.21875 1.929688,-1.320312 1.9375,-1.4375 1.9375,-1.5625 Z m 0,0"
id="path11"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-4"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.234375,-1.015625 c 0,0.167969 -0.027344,0.320313 -0.078125,0.453125 -0.054688,0.136719 -0.132812,0.25 -0.234375,0.34375 -0.105469,0.085938 -0.230469,0.1523438 -0.375,0.203125 -0.148437,0.0390625 -0.308594,0.0625 -0.484375,0.0625 -0.09375,0 -0.1875,-0.0117188 -0.28125,-0.03125 C 0.695312,0.00390625 0.617188,-0.0078125 0.546875,-0.03125 0.484375,-0.0507812 0.425781,-0.0664062 0.375,-0.078125 0.332031,-0.0976562 0.304688,-0.113281 0.296875,-0.125 0.285156,-0.144531 0.273438,-0.15625 0.265625,-0.15625 c 0,-0.007812 -0.007813,-0.019531 -0.015625,-0.03125 0,-0.019531 0,-0.039062 0,-0.0625 0,-0.019531 0,-0.046875 0,-0.078125 0,-0.03125 0,-0.054687 0,-0.078125 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 C 0.273438,-0.460938 0.28125,-0.472656 0.28125,-0.484375 0.289062,-0.492188 0.300781,-0.5 0.3125,-0.5 c 0.019531,0 0.046875,0.011719 0.078125,0.03125 0.03125,0.023438 0.078125,0.046875 0.140625,0.078125 0.0625,0.023437 0.132812,0.042969 0.21875,0.0625 0.082031,0.023437 0.179688,0.03125 0.296875,0.03125 0.113281,0 0.210937,-0.007813 0.296875,-0.03125 0.09375,-0.03125 0.171875,-0.070313 0.234375,-0.125 0.070313,-0.0625 0.125,-0.132813 0.15625,-0.21875 0.039063,-0.082031 0.0625,-0.1875 0.0625,-0.3125 0,-0.09375 -0.015625,-0.175781 -0.046875,-0.25 C 1.71875,-1.316406 1.664062,-1.382812 1.59375,-1.4375 1.53125,-1.488281 1.445312,-1.523438 1.34375,-1.546875 1.25,-1.578125 1.128906,-1.59375 0.984375,-1.59375 c -0.09375,0 -0.179687,0.00781 -0.25,0.015625 C 0.660156,-1.566406 0.59375,-1.5625 0.53125,-1.5625 c -0.042969,0 -0.074219,-0.00781 -0.09375,-0.03125 -0.023438,-0.019531 -0.03125,-0.0625 -0.03125,-0.125 V -3 c 0,-0.050781 0.007812,-0.085938 0.03125,-0.109375 0.03125,-0.03125 0.066406,-0.046875 0.109375,-0.046875 h 1.40625 c 0.00781,0 0.019531,0.00781 0.03125,0.015625 0.019531,0 0.03125,0.011719 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0,0.0625 -0.011719,0.109375 -0.03125,0.140625 -0.011719,0.03125 -0.03125,0.046875 -0.0625,0.046875 H 0.78125 v 0.890625 c 0.050781,-0.00781 0.101562,-0.015625 0.15625,-0.015625 0.0625,0 0.132812,0 0.21875,0 0.175781,0 0.332031,0.023437 0.46875,0.0625 0.132812,0.042969 0.25,0.105469 0.34375,0.1875 0.09375,0.074219 0.160156,0.167969 0.203125,0.28125 0.039063,0.117187 0.0625,0.242187 0.0625,0.375 z m 0,0"
id="path14"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-5"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.296875,-2.984375 c 0,0.03125 0,0.0625 0,0.09375 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 l -1.140625,2.625 C 1.097656,-0.0546875 1.085938,-0.0390625 1.078125,-0.03125 1.066406,-0.0195312 1.050781,-0.0078125 1.03125,0 1.007812,0 0.984375,0 0.953125,0 0.929688,0.0078125 0.898438,0.015625 0.859375,0.015625 0.796875,0.015625 0.75,0.0078125 0.71875,0 0.6875,0 0.664062,-0.00390625 0.65625,-0.015625 0.644531,-0.0234375 0.640625,-0.0351562 0.640625,-0.046875 c 0,-0.0195312 0.003906,-0.0390625 0.015625,-0.0625 l 1.1875,-2.6875 H 0.328125 C 0.296875,-2.796875 0.269531,-2.8125 0.25,-2.84375 0.238281,-2.875 0.234375,-2.914062 0.234375,-2.96875 c 0,-0.03125 0,-0.054688 0,-0.078125 0.007813,-0.03125 0.019531,-0.050781 0.03125,-0.0625 0.007813,-0.019531 0.019531,-0.03125 0.03125,-0.03125 0.007813,-0.00781 0.019531,-0.015625 0.03125,-0.015625 h 1.84375 c 0.019531,0 0.039063,0.00781 0.0625,0.015625 0.019531,0 0.03125,0.011719 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 z m 0,0"
id="path17"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-6"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.109375,-0.890625 c 0,0.148437 -0.027344,0.28125 -0.078125,0.40625 -0.054688,0.117187 -0.132812,0.214844 -0.234375,0.296875 -0.09375,0.074219 -0.210937,0.1328125 -0.34375,0.171875 -0.125,0.0390625 -0.261719,0.0625 -0.40625,0.0625 C 0.941406,0.046875 0.84375,0.0351562 0.75,0.015625 0.65625,0.00390625 0.570312,-0.0078125 0.5,-0.03125 0.4375,-0.0625 0.378906,-0.09375 0.328125,-0.125 0.273438,-0.15625 0.238281,-0.179688 0.21875,-0.203125 0.207031,-0.222656 0.195312,-0.242188 0.1875,-0.265625 c -0.011719,-0.03125 -0.015625,-0.070313 -0.015625,-0.125 0,-0.039063 0,-0.070313 0,-0.09375 C 0.179688,-0.503906 0.1875,-0.519531 0.1875,-0.53125 0.195312,-0.550781 0.207031,-0.5625 0.21875,-0.5625 0.226562,-0.570312 0.238281,-0.578125 0.25,-0.578125 c 0.019531,0 0.050781,0.015625 0.09375,0.046875 0.039062,0.023438 0.09375,0.054688 0.15625,0.09375 0.070312,0.03125 0.148438,0.0625 0.234375,0.09375 0.09375,0.023438 0.203125,0.03125 0.328125,0.03125 0.09375,0 0.175781,-0.007812 0.25,-0.03125 C 1.382812,-0.375 1.445312,-0.410156 1.5,-0.453125 1.5625,-0.492188 1.601562,-0.546875 1.625,-0.609375 1.65625,-0.679688 1.671875,-0.757812 1.671875,-0.84375 1.671875,-0.925781 1.648438,-1 1.609375,-1.0625 1.578125,-1.132812 1.523438,-1.191406 1.453125,-1.234375 1.390625,-1.285156 1.3125,-1.328125 1.21875,-1.359375 1.132812,-1.398438 1.046875,-1.441406 0.953125,-1.484375 0.867188,-1.523438 0.785156,-1.570312 0.703125,-1.625 0.617188,-1.675781 0.539062,-1.734375 0.46875,-1.796875 0.40625,-1.867188 0.351562,-1.953125 0.3125,-2.046875 0.269531,-2.140625 0.25,-2.25 0.25,-2.375 c 0,-0.132812 0.019531,-0.253906 0.0625,-0.359375 0.050781,-0.101563 0.117188,-0.1875 0.203125,-0.25 0.09375,-0.070313 0.195313,-0.125 0.3125,-0.15625 0.113281,-0.039063 0.242187,-0.0625 0.390625,-0.0625 0.0625,0 0.128906,0.00781 0.203125,0.015625 C 1.492188,-3.175781 1.5625,-3.160156 1.625,-3.140625 1.6875,-3.117188 1.738281,-3.09375 1.78125,-3.0625 1.832031,-3.039062 1.863281,-3.019531 1.875,-3 c 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 0.00781,0.011719 0.015625,0.023438 0.015625,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023437 0,0.046875 0,0.078125 0,0.03125 0,0.058594 0,0.078125 0,0.023437 -0.00781,0.042969 -0.015625,0.0625 0,0.011719 -0.00781,0.023437 -0.015625,0.03125 C 1.894531,-2.628906 1.882812,-2.625 1.875,-2.625 1.851562,-2.625 1.820312,-2.632812 1.78125,-2.65625 1.75,-2.6875 1.703125,-2.710938 1.640625,-2.734375 1.585938,-2.765625 1.523438,-2.789062 1.453125,-2.8125 c -0.074219,-0.03125 -0.15625,-0.046875 -0.25,-0.046875 -0.09375,0 -0.171875,0.015625 -0.234375,0.046875 -0.0625,0.023438 -0.117188,0.054688 -0.15625,0.09375 -0.042969,0.03125 -0.078125,0.078125 -0.109375,0.140625 -0.023437,0.054687 -0.03125,0.105469 -0.03125,0.15625 0,0.09375 0.019531,0.171875 0.0625,0.234375 0.039063,0.0625 0.09375,0.121094 0.15625,0.171875 0.070313,0.042969 0.148437,0.085937 0.234375,0.125 0.09375,0.042969 0.179688,0.085937 0.265625,0.125 0.09375,0.042969 0.179687,0.089844 0.265625,0.140625 0.09375,0.054688 0.171875,0.117188 0.234375,0.1875 0.070313,0.0625 0.125,0.140625 0.15625,0.234375 0.039063,0.085937 0.0625,0.1875 0.0625,0.3125 z m 0,0"
id="path20"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-7"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.25,-1.25 c 0,0.0625 -0.015625,0.109375 -0.046875,0.140625 -0.03125,0.023437 -0.070313,0.03125 -0.109375,0.03125 h -1.4375 c 0,0.125 0.007812,0.234375 0.03125,0.328125 0.019531,0.09375 0.054688,0.179688 0.109375,0.25 0.0625,0.074219 0.140625,0.132812 0.234375,0.171875 0.09375,0.03125 0.207031,0.046875 0.34375,0.046875 0.101562,0 0.191406,-0.003906 0.265625,-0.015625 0.082031,-0.019531 0.15625,-0.039063 0.21875,-0.0625 0.0625,-0.019531 0.109375,-0.039063 0.140625,-0.0625 0.039062,-0.019531 0.070312,-0.03125 0.09375,-0.03125 0.00781,0 0.019531,0.007813 0.03125,0.015625 0.00781,0 0.015625,0.011719 0.015625,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023437 0,0.042969 0,0.0625 0,0.023437 0,0.042969 0,0.0625 0,0.011719 -0.00781,0.027344 -0.015625,0.046875 0,0.011719 -0.00781,0.023438 -0.015625,0.03125 0,0.011719 -0.00781,0.023438 -0.015625,0.03125 -0.011719,0 -0.039063,0.011719 -0.078125,0.03125 -0.042969,0.0234375 -0.101562,0.0429688 -0.171875,0.0625 C 1.796875,-0.0078125 1.71875,0.00390625 1.625,0.015625 1.53125,0.0351562 1.429688,0.046875 1.328125,0.046875 1.148438,0.046875 0.988281,0.0195312 0.84375,-0.03125 0.707031,-0.0820312 0.59375,-0.15625 0.5,-0.25 0.414062,-0.351562 0.347656,-0.476562 0.296875,-0.625 c -0.042969,-0.15625 -0.0625,-0.332031 -0.0625,-0.53125 0,-0.1875 0.019531,-0.351562 0.0625,-0.5 0.050781,-0.15625 0.125,-0.285156 0.21875,-0.390625 C 0.609375,-2.148438 0.71875,-2.226562 0.84375,-2.28125 0.976562,-2.34375 1.125,-2.375 1.28125,-2.375 c 0.175781,0 0.320312,0.03125 0.4375,0.09375 0.125,0.054688 0.222656,0.125 0.296875,0.21875 0.082031,0.09375 0.140625,0.203125 0.171875,0.328125 0.039062,0.125 0.0625,0.261719 0.0625,0.40625 z M 1.84375,-1.375 c 0,-0.207031 -0.046875,-0.367188 -0.140625,-0.484375 -0.09375,-0.125 -0.242187,-0.1875 -0.4375,-0.1875 -0.105469,0 -0.195313,0.023437 -0.265625,0.0625 -0.074219,0.03125 -0.136719,0.078125 -0.1875,0.140625 -0.054688,0.0625 -0.09375,0.136719 -0.125,0.21875 -0.023438,0.074219 -0.03125,0.15625 -0.03125,0.25 z m 0,0"
id="path23"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-8"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.65625,-2.109375 c 0,0.03125 0,0.0625 0,0.09375 0,0.023437 -0.00781,0.039063 -0.015625,0.046875 0,0.011719 -0.00781,0.023438 -0.015625,0.03125 -0.011719,0.011719 -0.023438,0.015625 -0.03125,0.015625 -0.011719,0 -0.027344,-0.00391 -0.046875,-0.015625 C 1.523438,-1.945312 1.503906,-1.953125 1.484375,-1.953125 1.460938,-1.960938 1.4375,-1.96875 1.40625,-1.96875 1.375,-1.976562 1.34375,-1.984375 1.3125,-1.984375 c -0.042969,0 -0.085938,0.011719 -0.125,0.03125 C 1.15625,-1.941406 1.113281,-1.914062 1.0625,-1.875 1.019531,-1.84375 0.972656,-1.796875 0.921875,-1.734375 0.878906,-1.671875 0.832031,-1.59375 0.78125,-1.5 v 1.4375 c 0,0.0117188 -0.007812,0.0234375 -0.015625,0.03125 C 0.753906,-0.0195312 0.742188,-0.0078125 0.734375,0 0.722656,0 0.703125,0 0.671875,0 0.648438,0.0078125 0.617188,0.015625 0.578125,0.015625 0.535156,0.015625 0.5,0.0078125 0.46875,0 0.445312,0 0.425781,0 0.40625,0 0.394531,-0.0078125 0.382812,-0.0195312 0.375,-0.03125 c 0,-0.0078125 0,-0.0195312 0,-0.03125 v -2.203125 c 0,-0.00781 0,-0.019531 0,-0.03125 0.007812,-0.00781 0.019531,-0.015625 0.03125,-0.015625 0.019531,-0.00781 0.039062,-0.015625 0.0625,-0.015625 0.019531,0 0.050781,0 0.09375,0 0.03125,0 0.054688,0 0.078125,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.007813,0 0.015625,0.00781 0.015625,0.015625 0.007812,0.011719 0.015625,0.023437 0.015625,0.03125 V -1.9375 C 0.796875,-2.03125 0.851562,-2.101562 0.90625,-2.15625 0.957031,-2.207031 1.003906,-2.25 1.046875,-2.28125 1.097656,-2.3125 1.144531,-2.332031 1.1875,-2.34375 1.238281,-2.363281 1.289062,-2.375 1.34375,-2.375 c 0.019531,0 0.039062,0.00781 0.0625,0.015625 0.03125,0 0.054688,0.00781 0.078125,0.015625 0.03125,0 0.054687,0.00781 0.078125,0.015625 0.03125,0.011719 0.050781,0.023437 0.0625,0.03125 0.00781,0 0.015625,0.00781 0.015625,0.015625 0,0.011719 0,0.023438 0,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023437 0,0.054687 0,0.09375 z m 0,0"
id="path26"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-9"
style="overflow:visible">
<path
style="stroke:none"
d="m 0.78125,-0.0625 c 0,0.0117188 -0.007812,0.0234375 -0.015625,0.03125 C 0.753906,-0.0195312 0.742188,-0.0078125 0.734375,0 0.722656,0 0.703125,0 0.671875,0 0.648438,0.0078125 0.617188,0.015625 0.578125,0.015625 0.535156,0.015625 0.5,0.0078125 0.46875,0 0.445312,0 0.425781,0 0.40625,0 0.394531,-0.0078125 0.382812,-0.0195312 0.375,-0.03125 c 0,-0.0078125 0,-0.0195312 0,-0.03125 v -2.203125 c 0,-0.00781 0,-0.019531 0,-0.03125 0.007812,-0.00781 0.019531,-0.015625 0.03125,-0.015625 0.019531,-0.00781 0.039062,-0.015625 0.0625,-0.015625 0.03125,0 0.066406,0 0.109375,0 0.039063,0 0.070313,0 0.09375,0 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.007813,0 0.019531,0.00781 0.03125,0.015625 0.007813,0.011719 0.015625,0.023437 0.015625,0.03125 z M 0.828125,-3 c 0,0.09375 -0.023437,0.164062 -0.0625,0.203125 C 0.734375,-2.765625 0.671875,-2.75 0.578125,-2.75 0.484375,-2.75 0.414062,-2.765625 0.375,-2.796875 0.34375,-2.835938 0.328125,-2.90625 0.328125,-3 c 0,-0.09375 0.015625,-0.15625 0.046875,-0.1875 0.039062,-0.03125 0.109375,-0.046875 0.203125,-0.046875 0.09375,0 0.15625,0.015625 0.1875,0.046875 0.039063,0.03125 0.0625,0.09375 0.0625,0.1875 z m 0,0"
id="path29"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-10"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.75,-0.65625 c 0,0.117188 -0.023438,0.214844 -0.0625,0.296875 -0.042969,0.085937 -0.101562,0.15625 -0.171875,0.21875 C 1.441406,-0.078125 1.347656,-0.03125 1.234375,0 1.128906,0.03125 1.015625,0.046875 0.890625,0.046875 0.816406,0.046875 0.742188,0.0390625 0.671875,0.03125 0.597656,0.0195312 0.53125,0.00390625 0.46875,-0.015625 0.414062,-0.0351562 0.367188,-0.0546875 0.328125,-0.078125 0.296875,-0.0976562 0.269531,-0.113281 0.25,-0.125 0.226562,-0.144531 0.210938,-0.171875 0.203125,-0.203125 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.03125 0,-0.050781 0,-0.0625 0.007813,-0.007813 0.019531,-0.015625 0.03125,-0.015625 0.007813,-0.007812 0.019531,-0.015625 0.03125,-0.015625 0.019531,0 0.046875,0.011719 0.078125,0.03125 0.03125,0.023437 0.070312,0.046875 0.125,0.078125 0.050781,0.023438 0.113281,0.042969 0.1875,0.0625 0.070312,0.023438 0.15625,0.03125 0.25,0.03125 0.0625,0 0.117188,-0.003906 0.171875,-0.015625 0.0625,-0.007813 0.113281,-0.03125 0.15625,-0.0625 0.039063,-0.03125 0.070313,-0.066406 0.09375,-0.109375 0.019531,-0.039062 0.03125,-0.09375 0.03125,-0.15625 0,-0.0625 -0.015625,-0.113281 -0.046875,-0.15625 C 1.28125,-0.820312 1.238281,-0.859375 1.1875,-0.890625 1.132812,-0.921875 1.070312,-0.945312 1,-0.96875 0.9375,-1 0.867188,-1.03125 0.796875,-1.0625 0.734375,-1.09375 0.664062,-1.125 0.59375,-1.15625 0.53125,-1.1875 0.472656,-1.226562 0.421875,-1.28125 0.367188,-1.332031 0.328125,-1.390625 0.296875,-1.453125 0.265625,-1.523438 0.25,-1.613281 0.25,-1.71875 c 0,-0.082031 0.015625,-0.160156 0.046875,-0.234375 0.039063,-0.082031 0.09375,-0.15625 0.15625,-0.21875 0.0625,-0.0625 0.144531,-0.109375 0.25,-0.140625 0.101563,-0.039062 0.21875,-0.0625 0.34375,-0.0625 0.0625,0 0.117187,0.00781 0.171875,0.015625 0.0625,0.011719 0.113281,0.027344 0.15625,0.046875 0.050781,0.011719 0.09375,0.027344 0.125,0.046875 0.039062,0.011719 0.066406,0.027344 0.078125,0.046875 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 0.00781,0.011719 0.015625,0.023438 0.015625,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.023437 0,0.042969 0,0.0625 0,0.03125 0,0.058594 0,0.078125 0,0.023438 -0.00781,0.039062 -0.015625,0.046875 -0.011719,0.011719 -0.023438,0.023437 -0.03125,0.03125 0,0 -0.00781,0 -0.015625,0 -0.011719,0 -0.03125,-0.00391 -0.0625,-0.015625 C 1.484375,-1.925781 1.445312,-1.945312 1.40625,-1.96875 1.363281,-1.988281 1.3125,-2.007812 1.25,-2.03125 1.1875,-2.050781 1.117188,-2.0625 1.046875,-2.0625 c -0.074219,0 -0.136719,0.011719 -0.1875,0.03125 -0.054687,0.011719 -0.09375,0.03125 -0.125,0.0625 -0.03125,0.03125 -0.058594,0.070312 -0.078125,0.109375 -0.011719,0.03125 -0.015625,0.074219 -0.015625,0.125 0,0.0625 0.015625,0.117187 0.046875,0.15625 0.03125,0.042969 0.070312,0.078125 0.125,0.109375 0.050781,0.03125 0.109375,0.0625 0.171875,0.09375 0.070313,0.023438 0.140625,0.046875 0.203125,0.078125 0.070312,0.03125 0.140625,0.0625 0.203125,0.09375 0.070313,0.03125 0.132813,0.074219 0.1875,0.125 0.050781,0.054687 0.09375,0.117187 0.125,0.1875 C 1.734375,-0.828125 1.75,-0.75 1.75,-0.65625 Z m 0,0"
id="path32"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-11"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.265625,-0.171875 c 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 2.222656,-0.0195312 2.210938,-0.0078125 2.203125,0 2.191406,0 2.179688,0 2.171875,0 H 0.53125 C 0.519531,0 0.507812,0 0.5,0 0.488281,-0.0078125 0.476562,-0.0195312 0.46875,-0.03125 0.457031,-0.0507812 0.445312,-0.0703125 0.4375,-0.09375 c 0,-0.019531 0,-0.046875 0,-0.078125 0,-0.019531 0,-0.039063 0,-0.0625 0.007812,-0.03125 0.015625,-0.050781 0.015625,-0.0625 0.007813,-0.007813 0.019531,-0.019531 0.03125,-0.03125 C 0.492188,-0.335938 0.507812,-0.34375 0.53125,-0.34375 H 1.1875 V -2.734375 L 0.578125,-2.375 C 0.546875,-2.351562 0.519531,-2.34375 0.5,-2.34375 c -0.023438,0 -0.039062,-0.00391 -0.046875,-0.015625 -0.011719,-0.00781 -0.023437,-0.023437 -0.03125,-0.046875 0,-0.03125 0,-0.0625 0,-0.09375 0,-0.03125 0,-0.054688 0,-0.078125 C 0.429688,-2.597656 0.4375,-2.613281 0.4375,-2.625 0.445312,-2.632812 0.453125,-2.644531 0.453125,-2.65625 0.460938,-2.664062 0.476562,-2.675781 0.5,-2.6875 l 0.71875,-0.46875 c 0.00781,0 0.019531,0 0.03125,0 0.00781,-0.00781 0.019531,-0.015625 0.03125,-0.015625 0.019531,0 0.035156,0 0.046875,0 C 1.347656,-3.179688 1.375,-3.1875 1.40625,-3.1875 c 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.03125,0.00781 0.03125,0.015625 0.00781,0.011719 0.015625,0.023437 0.015625,0.03125 v 2.765625 h 0.5625 c 0.00781,0 0.019531,0.007812 0.03125,0.015625 0.019531,0.011719 0.03125,0.023437 0.03125,0.03125 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0.00781,0.023437 0.015625,0.042969 0.015625,0.0625 z m 0,0"
id="path35"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph0-12"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.25,-0.1875 c 0,0.03125 0,0.0625 0,0.09375 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 2.222656,-0.0195312 2.210938,-0.0078125 2.203125,0 2.191406,0 2.175781,0 2.15625,0 H 0.421875 C 0.398438,0 0.378906,0 0.359375,0 0.335938,-0.0078125 0.320312,-0.0195312 0.3125,-0.03125 0.300781,-0.0507812 0.289062,-0.0703125 0.28125,-0.09375 c 0,-0.019531 0,-0.050781 0,-0.09375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.03125 0.003906,-0.050781 0.015625,-0.0625 0.007813,-0.019531 0.019531,-0.039063 0.03125,-0.0625 0.007813,-0.019531 0.023437,-0.039063 0.046875,-0.0625 L 0.984375,-1.09375 C 1.128906,-1.25 1.242188,-1.382812 1.328125,-1.5 c 0.082031,-0.125 0.144531,-0.234375 0.1875,-0.328125 0.050781,-0.09375 0.082031,-0.179687 0.09375,-0.265625 0.019531,-0.082031 0.03125,-0.15625 0.03125,-0.21875 0,-0.070312 -0.011719,-0.140625 -0.03125,-0.203125 C 1.585938,-2.578125 1.550781,-2.628906 1.5,-2.671875 1.457031,-2.722656 1.40625,-2.757812 1.34375,-2.78125 1.28125,-2.8125 1.207031,-2.828125 1.125,-2.828125 c -0.105469,0 -0.199219,0.015625 -0.28125,0.046875 -0.074219,0.023438 -0.140625,0.046875 -0.203125,0.078125 -0.054687,0.03125 -0.101563,0.0625 -0.140625,0.09375 -0.042969,0.023437 -0.074219,0.03125 -0.09375,0.03125 -0.011719,0 -0.023438,0 -0.03125,0 -0.011719,-0.00781 -0.023438,-0.019531 -0.03125,-0.03125 0,-0.019531 0,-0.039063 0,-0.0625 0,-0.019531 0,-0.050781 0,-0.09375 0,-0.019531 0,-0.035156 0,-0.046875 0,-0.019531 0,-0.035156 0,-0.046875 C 0.351562,-2.878906 0.359375,-2.894531 0.359375,-2.90625 0.367188,-2.914062 0.382812,-2.925781 0.40625,-2.9375 0.425781,-2.957031 0.457031,-2.984375 0.5,-3.015625 0.550781,-3.046875 0.613281,-3.070312 0.6875,-3.09375 0.757812,-3.125 0.835938,-3.148438 0.921875,-3.171875 c 0.09375,-0.019531 0.1875,-0.03125 0.28125,-0.03125 0.144531,0 0.273437,0.023437 0.390625,0.0625 0.113281,0.042969 0.207031,0.101563 0.28125,0.171875 0.082031,0.074219 0.140625,0.164062 0.171875,0.265625 0.039063,0.105469 0.0625,0.210937 0.0625,0.3125 0,0.105469 -0.011719,0.210937 -0.03125,0.3125 C 2.066406,-1.984375 2.03125,-1.875 1.96875,-1.75 c -0.054688,0.117188 -0.136719,0.246094 -0.25,0.390625 -0.105469,0.136719 -0.25,0.296875 -0.4375,0.484375 l -0.5,0.515625 h 1.375 c 0.019531,0 0.035156,0.007813 0.046875,0.015625 0.00781,0.011719 0.019531,0.023438 0.03125,0.03125 C 2.242188,-0.300781 2.25,-0.28125 2.25,-0.25 c 0,0.023438 0,0.042969 0,0.0625 z m 0,0"
id="path38"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-0"
style="overflow:visible">
<path
style="stroke:none"
d="M 2.390625,-3.15625 V 0 h -2.28125 v -3.15625 z m -0.21875,2.953125 V -2.96875 H 0.3125 v 2.765625 z M 1.875,-2.09375 c 0,0.105469 -0.015625,0.195312 -0.046875,0.265625 -0.03125,0.074219 -0.074219,0.136719 -0.125,0.1875 -0.042969,0.054687 -0.101563,0.09375 -0.171875,0.125 -0.074219,0.023437 -0.152344,0.039063 -0.234375,0.046875 l -0.015625,0.375 c 0,0.011719 -0.011719,0.023438 -0.03125,0.03125 -0.023438,0 -0.054688,0 -0.09375,0 -0.03125,0 -0.058594,0 -0.078125,0 -0.011719,0 -0.023437,0 -0.03125,0 -0.011719,0 -0.023437,0 -0.03125,0 0,-0.00781 0,-0.019531 0,-0.03125 L 1,-1.546875 C 1,-1.597656 1.007812,-1.632812 1.03125,-1.65625 1.050781,-1.675781 1.082031,-1.6875 1.125,-1.6875 h 0.046875 c 0.070313,0 0.128906,-0.00391 0.171875,-0.015625 C 1.394531,-1.722656 1.4375,-1.75 1.46875,-1.78125 1.5,-1.820312 1.519531,-1.863281 1.53125,-1.90625 1.550781,-1.957031 1.5625,-2.007812 1.5625,-2.0625 c 0,-0.125 -0.039062,-0.21875 -0.109375,-0.28125 -0.0625,-0.070312 -0.167969,-0.109375 -0.3125,-0.109375 -0.0625,0 -0.121094,0.00781 -0.171875,0.015625 -0.054688,0.011719 -0.101562,0.027344 -0.140625,0.046875 -0.03125,0.011719 -0.058594,0.027344 -0.078125,0.046875 -0.023438,0.011719 -0.039062,0.015625 -0.046875,0.015625 -0.011719,0 -0.023437,0 -0.03125,0 0,-0.00781 -0.007813,-0.019531 -0.015625,-0.03125 0,-0.00781 0,-0.019531 0,-0.03125 0,-0.019531 0,-0.039063 0,-0.0625 0,-0.03125 0,-0.050781 0,-0.0625 0,-0.019531 0.007812,-0.039063 0.03125,-0.0625 0.007812,-0.00781 0.03125,-0.019531 0.0625,-0.03125 0.03125,-0.00781 0.066406,-0.019531 0.109375,-0.03125 0.050781,-0.019531 0.101563,-0.035156 0.15625,-0.046875 0.050781,-0.00781 0.101563,-0.015625 0.15625,-0.015625 0.125,0 0.226563,0.015625 0.3125,0.046875 0.09375,0.03125 0.164063,0.078125 0.21875,0.140625 0.0625,0.054687 0.101563,0.117187 0.125,0.1875 C 1.859375,-2.253906 1.875,-2.175781 1.875,-2.09375 Z m -0.53125,1.421875 c 0,0.042969 -0.00781,0.074219 -0.015625,0.09375 0,0.023437 -0.011719,0.042969 -0.03125,0.0625 -0.011719,0.011719 -0.027344,0.023437 -0.046875,0.03125 -0.023438,0 -0.054688,0 -0.09375,0 -0.03125,0 -0.0625,0 -0.09375,0 C 1.039062,-0.492188 1.019531,-0.503906 1,-0.515625 0.988281,-0.535156 0.976562,-0.554688 0.96875,-0.578125 c 0,-0.019531 0,-0.050781 0,-0.09375 0,-0.03125 0,-0.054687 0,-0.078125 C 0.976562,-0.769531 0.988281,-0.785156 1,-0.796875 1.019531,-0.816406 1.039062,-0.832031 1.0625,-0.84375 1.09375,-0.851562 1.125,-0.859375 1.15625,-0.859375 c 0.039062,0 0.070312,0.007813 0.09375,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.019531,0.011719 0.03125,0.027344 0.03125,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 z M 0,0.96875 Z m 0,0"
id="path41"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-1"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.34375,-1.015625 c 0,0.136719 -0.027344,0.273437 -0.078125,0.40625 -0.042969,0.125 -0.105469,0.242187 -0.1875,0.34375 C 1.992188,-0.171875 1.882812,-0.09375 1.75,-0.03125 1.613281,0.0195312 1.453125,0.046875 1.265625,0.046875 1.128906,0.046875 1.007812,0.03125 0.90625,0 0.8125,-0.03125 0.726562,-0.078125 0.65625,-0.140625 0.582031,-0.203125 0.519531,-0.273438 0.46875,-0.359375 0.414062,-0.453125 0.375,-0.550781 0.34375,-0.65625 0.3125,-0.769531 0.289062,-0.894531 0.28125,-1.03125 0.269531,-1.164062 0.265625,-1.3125 0.265625,-1.46875 c 0,-0.132812 0.003906,-0.269531 0.015625,-0.40625 0.019531,-0.132812 0.046875,-0.265625 0.078125,-0.390625 0.039063,-0.132813 0.09375,-0.257813 0.15625,-0.375 C 0.578125,-2.753906 0.65625,-2.851562 0.75,-2.9375 0.851562,-3.019531 0.972656,-3.082031 1.109375,-3.125 c 0.132813,-0.050781 0.289063,-0.078125 0.46875,-0.078125 0.0625,0 0.117187,0.00781 0.171875,0.015625 0.0625,0 0.117188,0.011719 0.171875,0.03125 0.050781,0.011719 0.09375,0.027344 0.125,0.046875 0.039063,0.011719 0.066406,0.023437 0.078125,0.03125 0.019531,0 0.03125,0.00781 0.03125,0.015625 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.011719 0,0.027344 0,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.023438 -0.00781,0.039062 -0.015625,0.046875 0,0.011719 -0.00781,0.023437 -0.015625,0.03125 0,0 -0.011719,0 -0.03125,0 -0.023437,0 -0.046875,-0.00391 -0.078125,-0.015625 C 2.007812,-2.789062 1.972656,-2.800781 1.921875,-2.8125 1.878906,-2.820312 1.828125,-2.832031 1.765625,-2.84375 1.703125,-2.863281 1.628906,-2.875 1.546875,-2.875 c -0.148437,0 -0.277344,0.03125 -0.390625,0.09375 -0.105469,0.0625 -0.195312,0.148438 -0.265625,0.25 -0.074219,0.105469 -0.125,0.230469 -0.15625,0.375 -0.03125,0.136719 -0.054687,0.277344 -0.0625,0.421875 0.050781,-0.019531 0.101563,-0.039063 0.15625,-0.0625 C 0.878906,-1.828125 0.9375,-1.851562 1,-1.875 1.0625,-1.894531 1.125,-1.910156 1.1875,-1.921875 1.257812,-1.929688 1.335938,-1.9375 1.421875,-1.9375 c 0.164063,0 0.304687,0.027344 0.421875,0.078125 0.125,0.042969 0.222656,0.105469 0.296875,0.1875 0.070313,0.085937 0.125,0.183594 0.15625,0.296875 0.03125,0.105469 0.046875,0.226562 0.046875,0.359375 z m -0.4375,0.03125 c 0,-0.09375 -0.011719,-0.175781 -0.03125,-0.25 C 1.863281,-1.316406 1.832031,-1.382812 1.78125,-1.4375 1.738281,-1.488281 1.679688,-1.53125 1.609375,-1.5625 1.535156,-1.59375 1.445312,-1.609375 1.34375,-1.609375 c -0.0625,0 -0.125,0.00781 -0.1875,0.015625 C 1.101562,-1.582031 1.046875,-1.566406 0.984375,-1.546875 0.929688,-1.523438 0.878906,-1.5 0.828125,-1.46875 0.773438,-1.445312 0.726562,-1.425781 0.6875,-1.40625 c 0,0.21875 0.007812,0.402344 0.03125,0.546875 0.03125,0.136719 0.070312,0.246094 0.125,0.328125 0.050781,0.085938 0.113281,0.148438 0.1875,0.1875 0.082031,0.03125 0.171875,0.046875 0.265625,0.046875 0.101563,0 0.191406,-0.015625 0.265625,-0.046875 C 1.644531,-0.382812 1.710938,-0.4375 1.765625,-0.5 1.816406,-0.570312 1.851562,-0.648438 1.875,-0.734375 c 0.019531,-0.082031 0.03125,-0.164063 0.03125,-0.25 z m 0,0"
id="path44"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.234375,-1.015625 c 0,0.167969 -0.027344,0.320313 -0.078125,0.453125 -0.054688,0.136719 -0.132812,0.25 -0.234375,0.34375 -0.105469,0.085938 -0.230469,0.1523438 -0.375,0.203125 -0.148437,0.0390625 -0.308594,0.0625 -0.484375,0.0625 -0.09375,0 -0.1875,-0.0117188 -0.28125,-0.03125 C 0.695312,0.00390625 0.617188,-0.0078125 0.546875,-0.03125 0.484375,-0.0507812 0.425781,-0.0664062 0.375,-0.078125 0.332031,-0.0976562 0.304688,-0.113281 0.296875,-0.125 0.285156,-0.144531 0.273438,-0.15625 0.265625,-0.15625 c 0,-0.007812 -0.007813,-0.019531 -0.015625,-0.03125 0,-0.019531 0,-0.039062 0,-0.0625 0,-0.019531 0,-0.046875 0,-0.078125 0,-0.03125 0,-0.054687 0,-0.078125 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 C 0.273438,-0.460938 0.28125,-0.472656 0.28125,-0.484375 0.289062,-0.492188 0.300781,-0.5 0.3125,-0.5 c 0.019531,0 0.046875,0.011719 0.078125,0.03125 0.03125,0.023438 0.078125,0.046875 0.140625,0.078125 0.0625,0.023437 0.132812,0.042969 0.21875,0.0625 0.082031,0.023437 0.179688,0.03125 0.296875,0.03125 0.113281,0 0.210937,-0.007813 0.296875,-0.03125 0.09375,-0.03125 0.171875,-0.070313 0.234375,-0.125 0.070313,-0.0625 0.125,-0.132813 0.15625,-0.21875 0.039063,-0.082031 0.0625,-0.1875 0.0625,-0.3125 0,-0.09375 -0.015625,-0.175781 -0.046875,-0.25 C 1.71875,-1.316406 1.664062,-1.382812 1.59375,-1.4375 1.53125,-1.488281 1.445312,-1.523438 1.34375,-1.546875 1.25,-1.578125 1.128906,-1.59375 0.984375,-1.59375 c -0.09375,0 -0.179687,0.00781 -0.25,0.015625 C 0.660156,-1.566406 0.59375,-1.5625 0.53125,-1.5625 c -0.042969,0 -0.074219,-0.00781 -0.09375,-0.03125 -0.023438,-0.019531 -0.03125,-0.0625 -0.03125,-0.125 V -3 c 0,-0.050781 0.007812,-0.085938 0.03125,-0.109375 0.03125,-0.03125 0.066406,-0.046875 0.109375,-0.046875 h 1.40625 c 0.00781,0 0.019531,0.00781 0.03125,0.015625 0.019531,0 0.03125,0.011719 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.023438 0.015625,0.046875 0.015625,0.078125 0,0.0625 -0.011719,0.109375 -0.03125,0.140625 -0.011719,0.03125 -0.03125,0.046875 -0.0625,0.046875 H 0.78125 v 0.890625 c 0.050781,-0.00781 0.101562,-0.015625 0.15625,-0.015625 0.0625,0 0.132812,0 0.21875,0 0.175781,0 0.332031,0.023437 0.46875,0.0625 0.132812,0.042969 0.25,0.105469 0.34375,0.1875 0.09375,0.074219 0.160156,0.167969 0.203125,0.28125 0.039063,0.117187 0.0625,0.242187 0.0625,0.375 z m 0,0"
id="path47"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-3"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.359375,-1.59375 c 0,0.25 -0.023437,0.476562 -0.0625,0.671875 -0.03125,0.199219 -0.09375,0.371094 -0.1875,0.515625 -0.085937,0.148438 -0.199219,0.261719 -0.34375,0.34375 -0.148437,0.0703125 -0.324219,0.109375 -0.53125,0.109375 -0.199219,0 -0.367187,-0.0390625 -0.5,-0.109375 C 0.597656,-0.132812 0.488281,-0.238281 0.40625,-0.375 0.320312,-0.507812 0.257812,-0.675781 0.21875,-0.875 0.1875,-1.082031 0.171875,-1.316406 0.171875,-1.578125 c 0,-0.238281 0.019531,-0.457031 0.0625,-0.65625 0.039063,-0.195313 0.101563,-0.367187 0.1875,-0.515625 0.09375,-0.144531 0.207031,-0.253906 0.34375,-0.328125 0.144531,-0.082031 0.320313,-0.125 0.53125,-0.125 0.195313,0 0.363281,0.039063 0.5,0.109375 0.132813,0.0625 0.242187,0.167969 0.328125,0.3125 0.082031,0.136719 0.140625,0.304688 0.171875,0.5 0.039063,0.199219 0.0625,0.429688 0.0625,0.6875 z M 1.9375,-1.5625 c 0,-0.15625 -0.011719,-0.296875 -0.03125,-0.421875 -0.011719,-0.125 -0.027344,-0.234375 -0.046875,-0.328125 -0.023437,-0.09375 -0.054687,-0.175781 -0.09375,-0.25 -0.03125,-0.070312 -0.074219,-0.128906 -0.125,-0.171875 -0.042969,-0.039063 -0.09375,-0.070313 -0.15625,-0.09375 -0.0625,-0.019531 -0.132813,-0.03125 -0.203125,-0.03125 -0.148438,0 -0.261719,0.03125 -0.34375,0.09375 C 0.851562,-2.703125 0.785156,-2.613281 0.734375,-2.5 0.679688,-2.382812 0.644531,-2.25 0.625,-2.09375 0.613281,-1.9375 0.609375,-1.773438 0.609375,-1.609375 c 0,0.242187 0.007813,0.445313 0.03125,0.609375 0.019531,0.167969 0.054687,0.304688 0.109375,0.40625 0.0625,0.105469 0.128906,0.183594 0.203125,0.234375 0.082031,0.042969 0.1875,0.0625 0.3125,0.0625 0.082031,0 0.160156,-0.015625 0.234375,-0.046875 0.070312,-0.03125 0.128906,-0.070312 0.171875,-0.125 0.050781,-0.050781 0.09375,-0.113281 0.125,-0.1875 C 1.828125,-0.738281 1.851562,-0.828125 1.875,-0.921875 1.894531,-1.015625 1.910156,-1.113281 1.921875,-1.21875 1.929688,-1.320312 1.9375,-1.4375 1.9375,-1.5625 Z m 0,0"
id="path50"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-4"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.265625,-0.171875 c 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 2.222656,-0.0195312 2.210938,-0.0078125 2.203125,0 2.191406,0 2.179688,0 2.171875,0 H 0.53125 C 0.519531,0 0.507812,0 0.5,0 0.488281,-0.0078125 0.476562,-0.0195312 0.46875,-0.03125 0.457031,-0.0507812 0.445312,-0.0703125 0.4375,-0.09375 c 0,-0.019531 0,-0.046875 0,-0.078125 0,-0.019531 0,-0.039063 0,-0.0625 0.007812,-0.03125 0.015625,-0.050781 0.015625,-0.0625 0.007813,-0.007813 0.019531,-0.019531 0.03125,-0.03125 C 0.492188,-0.335938 0.507812,-0.34375 0.53125,-0.34375 H 1.1875 V -2.734375 L 0.578125,-2.375 C 0.546875,-2.351562 0.519531,-2.34375 0.5,-2.34375 c -0.023438,0 -0.039062,-0.00391 -0.046875,-0.015625 -0.011719,-0.00781 -0.023437,-0.023437 -0.03125,-0.046875 0,-0.03125 0,-0.0625 0,-0.09375 0,-0.03125 0,-0.054688 0,-0.078125 C 0.429688,-2.597656 0.4375,-2.613281 0.4375,-2.625 0.445312,-2.632812 0.453125,-2.644531 0.453125,-2.65625 0.460938,-2.664062 0.476562,-2.675781 0.5,-2.6875 l 0.71875,-0.46875 c 0.00781,0 0.019531,0 0.03125,0 0.00781,-0.00781 0.019531,-0.015625 0.03125,-0.015625 0.019531,0 0.035156,0 0.046875,0 C 1.347656,-3.179688 1.375,-3.1875 1.40625,-3.1875 c 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.03125,0 0.050781,0.00781 0.0625,0.015625 0.019531,0 0.03125,0.00781 0.03125,0.015625 0.00781,0.011719 0.015625,0.023437 0.015625,0.03125 v 2.765625 h 0.5625 c 0.00781,0 0.019531,0.007812 0.03125,0.015625 0.019531,0.011719 0.03125,0.023437 0.03125,0.03125 0.00781,0.011719 0.015625,0.03125 0.015625,0.0625 0.00781,0.023437 0.015625,0.042969 0.015625,0.0625 z m 0,0"
id="path53"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-5"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.25,-0.1875 c 0,0.03125 0,0.0625 0,0.09375 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 C 2.222656,-0.0195312 2.210938,-0.0078125 2.203125,0 2.191406,0 2.175781,0 2.15625,0 H 0.421875 C 0.398438,0 0.378906,0 0.359375,0 0.335938,-0.0078125 0.320312,-0.0195312 0.3125,-0.03125 0.300781,-0.0507812 0.289062,-0.0703125 0.28125,-0.09375 c 0,-0.019531 0,-0.050781 0,-0.09375 0,-0.03125 0,-0.054688 0,-0.078125 0,-0.03125 0.003906,-0.050781 0.015625,-0.0625 0.007813,-0.019531 0.019531,-0.039063 0.03125,-0.0625 0.007813,-0.019531 0.023437,-0.039063 0.046875,-0.0625 L 0.984375,-1.09375 C 1.128906,-1.25 1.242188,-1.382812 1.328125,-1.5 c 0.082031,-0.125 0.144531,-0.234375 0.1875,-0.328125 0.050781,-0.09375 0.082031,-0.179687 0.09375,-0.265625 0.019531,-0.082031 0.03125,-0.15625 0.03125,-0.21875 0,-0.070312 -0.011719,-0.140625 -0.03125,-0.203125 C 1.585938,-2.578125 1.550781,-2.628906 1.5,-2.671875 1.457031,-2.722656 1.40625,-2.757812 1.34375,-2.78125 1.28125,-2.8125 1.207031,-2.828125 1.125,-2.828125 c -0.105469,0 -0.199219,0.015625 -0.28125,0.046875 -0.074219,0.023438 -0.140625,0.046875 -0.203125,0.078125 -0.054687,0.03125 -0.101563,0.0625 -0.140625,0.09375 -0.042969,0.023437 -0.074219,0.03125 -0.09375,0.03125 -0.011719,0 -0.023438,0 -0.03125,0 -0.011719,-0.00781 -0.023438,-0.019531 -0.03125,-0.03125 0,-0.019531 0,-0.039063 0,-0.0625 0,-0.019531 0,-0.050781 0,-0.09375 0,-0.019531 0,-0.035156 0,-0.046875 0,-0.019531 0,-0.035156 0,-0.046875 C 0.351562,-2.878906 0.359375,-2.894531 0.359375,-2.90625 0.367188,-2.914062 0.382812,-2.925781 0.40625,-2.9375 0.425781,-2.957031 0.457031,-2.984375 0.5,-3.015625 0.550781,-3.046875 0.613281,-3.070312 0.6875,-3.09375 0.757812,-3.125 0.835938,-3.148438 0.921875,-3.171875 c 0.09375,-0.019531 0.1875,-0.03125 0.28125,-0.03125 0.144531,0 0.273437,0.023437 0.390625,0.0625 0.113281,0.042969 0.207031,0.101563 0.28125,0.171875 0.082031,0.074219 0.140625,0.164062 0.171875,0.265625 0.039063,0.105469 0.0625,0.210937 0.0625,0.3125 0,0.105469 -0.011719,0.210937 -0.03125,0.3125 C 2.066406,-1.984375 2.03125,-1.875 1.96875,-1.75 c -0.054688,0.117188 -0.136719,0.246094 -0.25,0.390625 -0.105469,0.136719 -0.25,0.296875 -0.4375,0.484375 l -0.5,0.515625 h 1.375 c 0.019531,0 0.035156,0.007813 0.046875,0.015625 0.00781,0.011719 0.019531,0.023438 0.03125,0.03125 C 2.242188,-0.300781 2.25,-0.28125 2.25,-0.25 c 0,0.023438 0,0.042969 0,0.0625 z m 0,0"
id="path56"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph1-6"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.328125,-0.8125 c 0,0.136719 -0.027344,0.261719 -0.078125,0.375 C 2.207031,-0.332031 2.140625,-0.242188 2.046875,-0.171875 1.953125,-0.0976562 1.835938,-0.0390625 1.703125,0 1.566406,0.03125 1.410156,0.046875 1.234375,0.046875 1.078125,0.046875 0.929688,0.03125 0.796875,0 0.671875,-0.0390625 0.5625,-0.09375 0.46875,-0.15625 0.382812,-0.21875 0.316406,-0.296875 0.265625,-0.390625 c -0.042969,-0.101563 -0.0625,-0.21875 -0.0625,-0.34375 0,-0.101563 0.015625,-0.195313 0.046875,-0.28125 0.03125,-0.082031 0.078125,-0.15625 0.140625,-0.21875 C 0.453125,-1.304688 0.523438,-1.375 0.609375,-1.4375 0.703125,-1.5 0.804688,-1.554688 0.921875,-1.609375 0.816406,-1.660156 0.726562,-1.710938 0.65625,-1.765625 c -0.074219,-0.0625 -0.136719,-0.125 -0.1875,-0.1875 -0.054688,-0.0625 -0.09375,-0.128906 -0.125,-0.203125 -0.023438,-0.082031 -0.03125,-0.164062 -0.03125,-0.25 0,-0.113281 0.019531,-0.21875 0.0625,-0.3125 0.039062,-0.09375 0.097656,-0.175781 0.171875,-0.25 0.082031,-0.070312 0.1875,-0.128906 0.3125,-0.171875 0.125,-0.039063 0.269531,-0.0625 0.4375,-0.0625 0.15625,0 0.289063,0.023437 0.40625,0.0625 0.113281,0.03125 0.207031,0.085937 0.28125,0.15625 0.082031,0.0625 0.140625,0.140625 0.171875,0.234375 0.039062,0.085938 0.0625,0.179688 0.0625,0.28125 0,0.085938 -0.015625,0.167969 -0.046875,0.25 C 2.148438,-2.144531 2.113281,-2.070312 2.0625,-2 c -0.054688,0.0625 -0.121094,0.125 -0.203125,0.1875 -0.074219,0.054688 -0.15625,0.105469 -0.25,0.15625 0.113281,0.0625 0.210937,0.125 0.296875,0.1875 0.09375,0.054688 0.171875,0.117188 0.234375,0.1875 0.0625,0.0625 0.109375,0.136719 0.140625,0.21875 0.03125,0.074219 0.046875,0.15625 0.046875,0.25 z m -0.53125,-1.625 c 0,-0.0625 -0.011719,-0.117188 -0.03125,-0.171875 C 1.742188,-2.671875 1.707031,-2.71875 1.65625,-2.75 1.613281,-2.789062 1.554688,-2.820312 1.484375,-2.84375 1.421875,-2.863281 1.347656,-2.875 1.265625,-2.875 c -0.179687,0 -0.3125,0.042969 -0.40625,0.125 -0.085937,0.074219 -0.125,0.179688 -0.125,0.3125 0,0.0625 0.007813,0.125 0.03125,0.1875 0.019531,0.054688 0.050781,0.105469 0.09375,0.15625 0.050781,0.042969 0.109375,0.089844 0.171875,0.140625 0.070312,0.042969 0.160156,0.089844 0.265625,0.140625 C 1.453125,-1.894531 1.570312,-1.988281 1.65625,-2.09375 1.75,-2.195312 1.796875,-2.3125 1.796875,-2.4375 Z m 0.109375,1.671875 c 0,-0.070313 -0.015625,-0.140625 -0.046875,-0.203125 -0.023437,-0.0625 -0.0625,-0.117188 -0.125,-0.171875 C 1.679688,-1.191406 1.613281,-1.242188 1.53125,-1.296875 1.445312,-1.347656 1.347656,-1.398438 1.234375,-1.453125 c -0.105469,0.054687 -0.199219,0.105469 -0.28125,0.15625 -0.074219,0.054687 -0.136719,0.105469 -0.1875,0.15625 C 0.722656,-1.085938 0.6875,-1.03125 0.65625,-0.96875 0.632812,-0.914062 0.625,-0.851562 0.625,-0.78125 c 0,0.15625 0.050781,0.28125 0.15625,0.375 0.113281,0.085938 0.273438,0.125 0.484375,0.125 0.207031,0 0.363281,-0.039062 0.46875,-0.125 C 1.847656,-0.5 1.90625,-0.617188 1.90625,-0.765625 Z m 0,0"
id="path59"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-0"
style="overflow:visible">
<path
style="stroke:none"
d="M 3.828125,-5.0625 V 0 h -3.65625 v -5.0625 z m -0.34375,4.75 V -4.734375 H 0.5 V -0.3125 Z M 3,-3.34375 C 3,-3.1875 2.972656,-3.046875 2.921875,-2.921875 2.878906,-2.804688 2.816406,-2.707031 2.734375,-2.625 2.648438,-2.539062 2.550781,-2.472656 2.4375,-2.421875 c -0.105469,0.042969 -0.226562,0.0625 -0.359375,0.0625 L 2.0625,-1.765625 c 0,0.03125 -0.023438,0.054687 -0.0625,0.0625 -0.042969,0.011719 -0.09375,0.015625 -0.15625,0.015625 -0.042969,0 -0.078125,0 -0.109375,0 C 1.710938,-1.695312 1.691406,-1.703125 1.671875,-1.703125 1.660156,-1.710938 1.648438,-1.71875 1.640625,-1.71875 1.628906,-1.726562 1.625,-1.742188 1.625,-1.765625 l -0.015625,-0.71875 c 0,-0.070313 0.015625,-0.125 0.046875,-0.15625 C 1.695312,-2.671875 1.75,-2.6875 1.8125,-2.6875 H 1.875 c 0.113281,0 0.207031,-0.015625 0.28125,-0.046875 0.082031,-0.03125 0.148438,-0.070313 0.203125,-0.125 C 2.410156,-2.921875 2.445312,-2.988281 2.46875,-3.0625 2.488281,-3.144531 2.5,-3.226562 2.5,-3.3125 2.5,-3.5 2.441406,-3.648438 2.328125,-3.765625 2.222656,-3.878906 2.050781,-3.9375 1.8125,-3.9375 c -0.09375,0 -0.183594,0.011719 -0.265625,0.03125 -0.074219,0.023438 -0.140625,0.046875 -0.203125,0.078125 -0.0625,0.023437 -0.117188,0.042969 -0.15625,0.0625 -0.03125,0.023437 -0.058594,0.03125 -0.078125,0.03125 0,0 -0.00781,0 -0.015625,0 -0.011719,-0.00781 -0.023438,-0.019531 -0.03125,-0.03125 -0.011719,-0.019531 -0.015625,-0.039063 -0.015625,-0.0625 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.039062 0,-0.070312 0,-0.09375 0.00781,-0.03125 0.023437,-0.054688 0.046875,-0.078125 0.019531,-0.019531 0.054688,-0.039063 0.109375,-0.0625 C 1.253906,-4.203125 1.3125,-4.226562 1.375,-4.25 c 0.070312,-0.019531 0.148438,-0.035156 0.234375,-0.046875 0.09375,-0.019531 0.179687,-0.03125 0.265625,-0.03125 0.195312,0 0.363281,0.027344 0.5,0.078125 0.144531,0.054688 0.257812,0.125 0.34375,0.21875 0.09375,0.085938 0.160156,0.1875 0.203125,0.3125 C 2.972656,-3.601562 3,-3.476562 3,-3.34375 Z M 2.140625,-1.0625 c 0,0.054688 -0.00781,0.101562 -0.015625,0.140625 0,0.03125 -0.015625,0.058594 -0.046875,0.078125 -0.023437,0.023438 -0.054687,0.039062 -0.09375,0.046875 -0.03125,0.011719 -0.074219,0.015625 -0.125,0.015625 -0.0625,0 -0.117187,-0.003906 -0.15625,-0.015625 C 1.671875,-0.804688 1.644531,-0.820312 1.625,-0.84375 1.601562,-0.863281 1.585938,-0.890625 1.578125,-0.921875 1.566406,-0.960938 1.5625,-1.007812 1.5625,-1.0625 c 0,-0.0625 0.00391,-0.109375 0.015625,-0.140625 0.00781,-0.039063 0.023437,-0.070313 0.046875,-0.09375 0.019531,-0.019531 0.046875,-0.035156 0.078125,-0.046875 0.039063,-0.00781 0.09375,-0.015625 0.15625,-0.015625 0.050781,0 0.09375,0.00781 0.125,0.015625 0.039063,0.011719 0.070313,0.027344 0.09375,0.046875 0.03125,0.023437 0.046875,0.054687 0.046875,0.09375 0.00781,0.03125 0.015625,0.078125 0.015625,0.140625 z M 0,1.546875 Z m 0,0"
id="path62"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-1"
style="overflow:visible">
<path
style="stroke:none"
d="m 4.046875,-0.71875 c 0,0.042969 0,0.078125 0,0.109375 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 C 4.019531,-0.492188 4.007812,-0.472656 4,-0.453125 3.988281,-0.441406 3.96875,-0.421875 3.9375,-0.390625 3.914062,-0.367188 3.863281,-0.332031 3.78125,-0.28125 3.695312,-0.226562 3.59375,-0.175781 3.46875,-0.125 3.351562,-0.0703125 3.210938,-0.03125 3.046875,0 2.890625,0.0390625 2.71875,0.0625 2.53125,0.0625 2.195312,0.0625 1.894531,0.0078125 1.625,-0.09375 1.363281,-0.207031 1.140625,-0.367188 0.953125,-0.578125 0.773438,-0.796875 0.632812,-1.0625 0.53125,-1.375 0.425781,-1.6875 0.375,-2.050781 0.375,-2.46875 0.375,-2.882812 0.425781,-3.253906 0.53125,-3.578125 0.644531,-3.910156 0.800781,-4.191406 1,-4.421875 1.195312,-4.648438 1.429688,-4.820312 1.703125,-4.9375 c 0.269531,-0.125 0.570313,-0.1875 0.90625,-0.1875 0.144531,0 0.285156,0.015625 0.421875,0.046875 0.132812,0.03125 0.257812,0.070313 0.375,0.109375 0.125,0.042969 0.226562,0.089844 0.3125,0.140625 0.09375,0.054687 0.15625,0.101563 0.1875,0.140625 0.039062,0.03125 0.066406,0.058594 0.078125,0.078125 C 3.992188,-4.597656 4,-4.578125 4,-4.546875 c 0.00781,0.023437 0.015625,0.054687 0.015625,0.09375 0.00781,0.03125 0.015625,0.070313 0.015625,0.109375 0,0.054688 -0.00781,0.101562 -0.015625,0.140625 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 C 3.988281,-4.085938 3.972656,-4.070312 3.953125,-4.0625 3.941406,-4.050781 3.925781,-4.046875 3.90625,-4.046875 3.875,-4.046875 3.820312,-4.070312 3.75,-4.125 3.6875,-4.175781 3.601562,-4.226562 3.5,-4.28125 3.394531,-4.34375 3.269531,-4.398438 3.125,-4.453125 2.976562,-4.503906 2.800781,-4.53125 2.59375,-4.53125 2.375,-4.53125 2.171875,-4.484375 1.984375,-4.390625 1.804688,-4.304688 1.648438,-4.175781 1.515625,-4 c -0.125,0.179688 -0.226563,0.390625 -0.296875,0.640625 -0.074219,0.25 -0.109375,0.539063 -0.109375,0.859375 0,0.324219 0.03125,0.609375 0.09375,0.859375 C 1.273438,-1.398438 1.375,-1.195312 1.5,-1.03125 c 0.132812,0.167969 0.296875,0.292969 0.484375,0.375 0.1875,0.085938 0.398437,0.125 0.640625,0.125 0.195312,0 0.367188,-0.023438 0.515625,-0.078125 0.15625,-0.050781 0.285156,-0.101563 0.390625,-0.15625 0.101562,-0.0625 0.1875,-0.117187 0.25,-0.171875 0.070312,-0.050781 0.128906,-0.078125 0.171875,-0.078125 0.00781,0 0.019531,0.00781 0.03125,0.015625 0.019531,0.011719 0.03125,0.027344 0.03125,0.046875 0.00781,0.023437 0.015625,0.054687 0.015625,0.09375 0.00781,0.03125 0.015625,0.078125 0.015625,0.140625 z m 0,0"
id="path65"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-2"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.625,-0.09375 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 3.597656,-0.0351562 3.582031,-0.0195312 3.5625,0 3.539062,0.0078125 3.507812,0.015625 3.46875,0.015625 3.425781,0.0234375 3.375,0.03125 3.3125,0.03125 3.238281,0.03125 3.179688,0.0234375 3.140625,0.015625 3.097656,0.015625 3.066406,0.0078125 3.046875,0 3.023438,-0.0195312 3.007812,-0.0351562 3,-0.046875 2.988281,-0.0546875 2.984375,-0.0703125 2.984375,-0.09375 v -2.0625 c 0,-0.195312 -0.015625,-0.359375 -0.046875,-0.484375 -0.03125,-0.125 -0.078125,-0.226563 -0.140625,-0.3125 C 2.734375,-3.046875 2.65625,-3.113281 2.5625,-3.15625 2.46875,-3.207031 2.359375,-3.234375 2.234375,-3.234375 c -0.15625,0 -0.320313,0.058594 -0.484375,0.171875 -0.15625,0.117188 -0.324219,0.28125 -0.5,0.5 v 2.46875 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 1.222656,-0.0351562 1.203125,-0.0195312 1.171875,0 1.148438,0.0078125 1.117188,0.015625 1.078125,0.015625 1.035156,0.0234375 0.984375,0.03125 0.921875,0.03125 0.859375,0.03125 0.804688,0.0234375 0.765625,0.015625 0.722656,0.015625 0.6875,0.0078125 0.65625,0 0.632812,-0.0195312 0.617188,-0.0351562 0.609375,-0.046875 0.597656,-0.0546875 0.59375,-0.0703125 0.59375,-0.09375 V -5.3125 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007813,-0.019531 0.023437,-0.035156 0.046875,-0.046875 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.039063,-0.00781 0.09375,-0.015625 0.15625,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039063,0 0.070313,0.00781 0.09375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 C 1.242188,-5.347656 1.25,-5.332031 1.25,-5.3125 v 2.09375 c 0.175781,-0.1875 0.359375,-0.328125 0.546875,-0.421875 0.1875,-0.101563 0.378906,-0.15625 0.578125,-0.15625 0.226562,0 0.421875,0.042969 0.578125,0.125 0.164063,0.085937 0.296875,0.195313 0.390625,0.328125 0.101562,0.125 0.175781,0.277344 0.21875,0.453125 0.039062,0.179687 0.0625,0.398437 0.0625,0.65625 z m 0,0"
id="path68"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-3"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.25,-0.09375 c 0,0.03125 -0.011719,0.0585938 -0.03125,0.078125 C 3.195312,-0.00390625 3.164062,0.00390625 3.125,0.015625 3.09375,0.0234375 3.039062,0.03125 2.96875,0.03125 2.90625,0.03125 2.851562,0.0234375 2.8125,0.015625 2.769531,0.00390625 2.738281,-0.00390625 2.71875,-0.015625 2.695312,-0.0351562 2.6875,-0.0625 2.6875,-0.09375 V -0.453125 C 2.539062,-0.285156 2.367188,-0.15625 2.171875,-0.0625 1.984375,0.03125 1.785156,0.078125 1.578125,0.078125 1.390625,0.078125 1.222656,0.0507812 1.078125,0 0.929688,-0.0507812 0.800781,-0.117188 0.6875,-0.203125 0.582031,-0.296875 0.5,-0.410156 0.4375,-0.546875 0.382812,-0.679688 0.359375,-0.832031 0.359375,-1 c 0,-0.195312 0.039063,-0.367188 0.125,-0.515625 0.082031,-0.144531 0.195313,-0.265625 0.34375,-0.359375 0.15625,-0.09375 0.34375,-0.164062 0.5625,-0.21875 C 1.609375,-2.144531 1.851562,-2.171875 2.125,-2.171875 H 2.609375 V -2.4375 c 0,-0.132812 -0.015625,-0.253906 -0.046875,-0.359375 -0.03125,-0.101563 -0.078125,-0.1875 -0.140625,-0.25 -0.0625,-0.070313 -0.148437,-0.125 -0.25,-0.15625 -0.09375,-0.039063 -0.21875,-0.0625 -0.375,-0.0625 -0.15625,0 -0.296875,0.023437 -0.421875,0.0625 -0.125,0.03125 -0.234375,0.074219 -0.328125,0.125 -0.09375,0.042969 -0.179687,0.085937 -0.25,0.125 -0.0625,0.03125 -0.109375,0.046875 -0.140625,0.046875 -0.023438,0 -0.042969,-0.00391 -0.0625,-0.015625 C 0.582031,-2.929688 0.570312,-2.945312 0.5625,-2.96875 0.550781,-2.988281 0.539062,-3.015625 0.53125,-3.046875 c 0,-0.03125 0,-0.066406 0,-0.109375 0,-0.0625 0.003906,-0.109375 0.015625,-0.140625 0.007813,-0.039063 0.03125,-0.078125 0.0625,-0.109375 0.039063,-0.039062 0.101563,-0.082031 0.1875,-0.125 0.082031,-0.050781 0.179687,-0.09375 0.296875,-0.125 0.113281,-0.039062 0.234375,-0.070312 0.359375,-0.09375 0.132813,-0.03125 0.269531,-0.046875 0.40625,-0.046875 0.25,0 0.460937,0.03125 0.640625,0.09375 0.175781,0.054687 0.316406,0.136719 0.421875,0.25 0.113281,0.117187 0.195313,0.257813 0.25,0.421875 C 3.222656,-2.875 3.25,-2.6875 3.25,-2.46875 Z M 2.609375,-1.703125 H 2.0625 c -0.179688,0 -0.335938,0.015625 -0.46875,0.046875 -0.125,0.03125 -0.234375,0.078125 -0.328125,0.140625 -0.085937,0.054687 -0.148437,0.121094 -0.1875,0.203125 -0.042969,0.085938 -0.0625,0.179688 -0.0625,0.28125 0,0.1875 0.054687,0.335938 0.171875,0.4375 0.125,0.105469 0.289062,0.15625 0.5,0.15625 0.164062,0 0.320312,-0.039062 0.46875,-0.125 0.144531,-0.082031 0.296875,-0.210938 0.453125,-0.390625 z m 0,0"
id="path71"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-4"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.65625,-3.390625 c 0,0.0625 -0.00781,0.117187 -0.015625,0.15625 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 0,0.023437 -0.00781,0.039063 -0.015625,0.046875 -0.011719,0.011719 -0.027344,0.015625 -0.046875,0.015625 -0.023438,0 -0.046875,-0.00391 -0.078125,-0.015625 C 2.453125,-3.101562 2.414062,-3.113281 2.375,-3.125 2.34375,-3.144531 2.300781,-3.160156 2.25,-3.171875 2.207031,-3.179688 2.15625,-3.1875 2.09375,-3.1875 c -0.0625,0 -0.125,0.015625 -0.1875,0.046875 -0.0625,0.023437 -0.132812,0.0625 -0.203125,0.125 -0.0625,0.0625 -0.136719,0.148437 -0.21875,0.25 C 1.410156,-2.671875 1.332031,-2.550781 1.25,-2.40625 v 2.3125 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 1.222656,-0.0351562 1.203125,-0.0195312 1.171875,0 1.148438,0.0078125 1.117188,0.015625 1.078125,0.015625 1.035156,0.0234375 0.984375,0.03125 0.921875,0.03125 0.859375,0.03125 0.804688,0.0234375 0.765625,0.015625 0.722656,0.015625 0.6875,0.0078125 0.65625,0 0.632812,-0.0195312 0.617188,-0.0351562 0.609375,-0.046875 0.597656,-0.0546875 0.59375,-0.0703125 0.59375,-0.09375 v -3.515625 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007813,-0.019531 0.023437,-0.035156 0.046875,-0.046875 0.019531,-0.00781 0.046875,-0.015625 0.078125,-0.015625 0.039063,-0.00781 0.09375,-0.015625 0.15625,-0.015625 0.0625,0 0.109375,0.00781 0.140625,0.015625 0.039062,0 0.070312,0.00781 0.09375,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 v 0.5 C 1.28125,-3.242188 1.367188,-3.351562 1.453125,-3.4375 1.535156,-3.53125 1.613281,-3.601562 1.6875,-3.65625 c 0.082031,-0.050781 0.160156,-0.085938 0.234375,-0.109375 0.070313,-0.019531 0.144531,-0.03125 0.21875,-0.03125 0.03125,0 0.066406,0.00781 0.109375,0.015625 0.050781,0 0.097656,0.00781 0.140625,0.015625 0.050781,0.011719 0.09375,0.027344 0.125,0.046875 0.039063,0.011719 0.066406,0.023438 0.078125,0.03125 0.019531,0.011719 0.03125,0.023438 0.03125,0.03125 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 0.00781,0.023437 0.015625,0.054687 0.015625,0.09375 0,0.03125 0,0.074219 0,0.125 z m 0,0"
id="path74"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-5"
style="overflow:visible">
<path
style="stroke:none"
d="m 2.421875,-0.359375 c 0,0.074219 -0.00781,0.136719 -0.015625,0.1875 -0.011719,0.042969 -0.027344,0.0742188 -0.046875,0.09375 -0.023437,0.0234375 -0.054687,0.0429688 -0.09375,0.0625 C 2.222656,0.00390625 2.175781,0.0195312 2.125,0.03125 2.070312,0.0390625 2.015625,0.046875 1.953125,0.046875 1.898438,0.0546875 1.84375,0.0625 1.78125,0.0625 1.59375,0.0625 1.429688,0.0390625 1.296875,0 1.171875,-0.0507812 1.066406,-0.125 0.984375,-0.21875 0.898438,-0.320312 0.835938,-0.445312 0.796875,-0.59375 0.765625,-0.75 0.75,-0.925781 0.75,-1.125 V -3.1875 H 0.265625 C 0.222656,-3.1875 0.1875,-3.207031 0.15625,-3.25 0.132812,-3.289062 0.125,-3.359375 0.125,-3.453125 c 0,-0.039063 0.003906,-0.078125 0.015625,-0.109375 0.007813,-0.039062 0.019531,-0.070312 0.03125,-0.09375 0.007813,-0.019531 0.019531,-0.035156 0.03125,-0.046875 0.019531,-0.00781 0.039063,-0.015625 0.0625,-0.015625 H 0.75 v -0.828125 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007813,-0.019531 0.023437,-0.035156 0.046875,-0.046875 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.039063,-0.00781 0.09375,-0.015625 0.15625,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039063,0 0.070313,0.00781 0.09375,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.011719 0.015625,0.027344 0.015625,0.046875 v 0.828125 h 0.90625 c 0.019531,0 0.035156,0.00781 0.046875,0.015625 0.019531,0.011719 0.035156,0.027344 0.046875,0.046875 0.00781,0.023438 0.015625,0.054688 0.015625,0.09375 0.00781,0.03125 0.015625,0.070312 0.015625,0.109375 0,0.09375 -0.011719,0.164063 -0.03125,0.203125 -0.023437,0.042969 -0.054687,0.0625 -0.09375,0.0625 h -0.90625 v 1.96875 c 0,0.242188 0.035156,0.421875 0.109375,0.546875 0.070312,0.125 0.203125,0.1875 0.390625,0.1875 0.0625,0 0.113281,-0.003906 0.15625,-0.015625 0.050781,-0.007812 0.09375,-0.019531 0.125,-0.03125 0.039063,-0.019531 0.070313,-0.035156 0.09375,-0.046875 0.03125,-0.007813 0.054687,-0.015625 0.078125,-0.015625 0.00781,0 0.019531,0.007812 0.03125,0.015625 0.00781,0 0.015625,0.011719 0.015625,0.03125 0.00781,0.023437 0.015625,0.046875 0.015625,0.078125 0.00781,0.03125 0.015625,0.070312 0.015625,0.109375 z m 0,0"
id="path77"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-6"
style="overflow:visible">
<path
style="stroke:none"
d=""
id="path80"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-7"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.84375,-4.765625 c 0,0.054687 -0.00781,0.101563 -0.015625,0.140625 0,0.03125 -0.00781,0.058594 -0.015625,0.078125 C 3.800781,-4.523438 3.785156,-4.507812 3.765625,-4.5 3.742188,-4.488281 3.722656,-4.484375 3.703125,-4.484375 H 2.28125 v 4.375 c 0,0.0234375 -0.00781,0.0429688 -0.015625,0.0625 -0.011719,0.0117188 -0.03125,0.0234375 -0.0625,0.03125 C 2.179688,-0.00390625 2.148438,0.00390625 2.109375,0.015625 2.066406,0.0234375 2.015625,0.03125 1.953125,0.03125 1.890625,0.03125 1.832031,0.0234375 1.78125,0.015625 1.738281,0.00390625 1.703125,-0.00390625 1.671875,-0.015625 1.648438,-0.0234375 1.632812,-0.0351562 1.625,-0.046875 1.613281,-0.0664062 1.609375,-0.0859375 1.609375,-0.109375 v -4.375 H 0.1875 C 0.164062,-4.484375 0.144531,-4.488281 0.125,-4.5 0.113281,-4.507812 0.101562,-4.523438 0.09375,-4.546875 0.0820312,-4.566406 0.0703125,-4.59375 0.0625,-4.625 c 0,-0.039062 0,-0.085938 0,-0.140625 0,-0.050781 0,-0.09375 0,-0.125 0.0078125,-0.039063 0.0195312,-0.070313 0.03125,-0.09375 0.007812,-0.03125 0.019531,-0.050781 0.03125,-0.0625 C 0.144531,-5.054688 0.164062,-5.0625 0.1875,-5.0625 h 3.515625 c 0.019531,0 0.039063,0.00781 0.0625,0.015625 0.019531,0.011719 0.035156,0.03125 0.046875,0.0625 0.00781,0.023437 0.015625,0.054687 0.015625,0.09375 0.00781,0.03125 0.015625,0.074219 0.015625,0.125 z m 0,0"
id="path83"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-8"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.25,-0.09375 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 1.222656,-0.0351562 1.203125,-0.0195312 1.171875,0 1.148438,0.0078125 1.117188,0.015625 1.078125,0.015625 1.035156,0.0234375 0.984375,0.03125 0.921875,0.03125 0.859375,0.03125 0.804688,0.0234375 0.765625,0.015625 0.722656,0.015625 0.6875,0.0078125 0.65625,0 0.632812,-0.0195312 0.617188,-0.0351562 0.609375,-0.046875 0.597656,-0.0546875 0.59375,-0.0703125 0.59375,-0.09375 v -3.515625 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007813,-0.019531 0.023437,-0.035156 0.046875,-0.046875 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.039063,-0.00781 0.09375,-0.015625 0.15625,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039063,0 0.070313,0.00781 0.09375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 C 1.242188,-3.644531 1.25,-3.628906 1.25,-3.609375 Z m 0.0625,-4.703125 c 0,0.148437 -0.03125,0.25 -0.09375,0.3125 -0.054688,0.054687 -0.152344,0.078125 -0.296875,0.078125 -0.15625,0 -0.265625,-0.023438 -0.328125,-0.078125 -0.054688,-0.0625 -0.078125,-0.164063 -0.078125,-0.3125 0,-0.144531 0.023437,-0.242187 0.078125,-0.296875 0.0625,-0.0625 0.171875,-0.09375 0.328125,-0.09375 0.15625,0 0.257813,0.027344 0.3125,0.078125 0.050781,0.054687 0.078125,0.15625 0.078125,0.3125 z m 0,0"
id="path86"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-9"
style="overflow:visible">
<path
style="stroke:none"
d="m 1.25,-0.09375 c 0,0.0234375 -0.00781,0.0390625 -0.015625,0.046875 C 1.222656,-0.0351562 1.203125,-0.0195312 1.171875,0 1.148438,0.0078125 1.117188,0.015625 1.078125,0.015625 1.035156,0.0234375 0.984375,0.03125 0.921875,0.03125 0.859375,0.03125 0.804688,0.0234375 0.765625,0.015625 0.722656,0.015625 0.6875,0.0078125 0.65625,0 0.632812,-0.0195312 0.617188,-0.0351562 0.609375,-0.046875 0.597656,-0.0546875 0.59375,-0.0703125 0.59375,-0.09375 V -5.3125 c 0,-0.019531 0.003906,-0.035156 0.015625,-0.046875 0.007813,-0.019531 0.023437,-0.035156 0.046875,-0.046875 0.03125,-0.00781 0.066406,-0.015625 0.109375,-0.015625 0.039063,-0.00781 0.09375,-0.015625 0.15625,-0.015625 0.0625,0 0.113281,0.00781 0.15625,0.015625 0.039063,0 0.070313,0.00781 0.09375,0.015625 0.03125,0.011719 0.050781,0.027344 0.0625,0.046875 C 1.242188,-5.347656 1.25,-5.332031 1.25,-5.3125 Z m 0,0"
id="path89"
inkscape:connector-curvature="0" />
</symbol>
<symbol
overflow="visible"
id="glyph2-10"
style="overflow:visible">
<path
style="stroke:none"
d="m 3.59375,-2.015625 c 0,0.105469 -0.027344,0.179687 -0.078125,0.21875 -0.042969,0.042969 -0.101563,0.0625 -0.171875,0.0625 H 1.046875 c 0,0.199219 0.015625,0.375 0.046875,0.53125 0.039062,0.15625 0.109375,0.292969 0.203125,0.40625 0.09375,0.117187 0.210937,0.203125 0.359375,0.265625 0.144531,0.054688 0.320312,0.078125 0.53125,0.078125 0.164062,0 0.3125,-0.007813 0.4375,-0.03125 0.132812,-0.03125 0.25,-0.0625 0.34375,-0.09375 0.09375,-0.039063 0.171875,-0.070313 0.234375,-0.09375 0.0625,-0.03125 0.109375,-0.046875 0.140625,-0.046875 0.019531,0 0.035156,0.007812 0.046875,0.015625 0.019531,0.011719 0.03125,0.027344 0.03125,0.046875 0.00781,0.011719 0.015625,0.039062 0.015625,0.078125 0.00781,0.03125 0.015625,0.070313 0.015625,0.109375 0,0.03125 -0.00781,0.0625 -0.015625,0.09375 0,0.023438 0,0.042969 0,0.0625 0,0.023438 -0.00781,0.042969 -0.015625,0.0625 -0.011719,0.011719 -0.027344,0.027344 -0.046875,0.046875 -0.011719,0.011719 -0.054688,0.03125 -0.125,0.0625 -0.0625,0.03125 -0.152344,0.0625 -0.265625,0.09375 C 2.867188,-0.015625 2.738281,0.0078125 2.59375,0.03125 2.445312,0.0625 2.289062,0.078125 2.125,0.078125 c -0.292969,0 -0.546875,-0.0429688 -0.765625,-0.125 C 1.140625,-0.128906 0.957031,-0.25 0.8125,-0.40625 0.664062,-0.5625 0.550781,-0.757812 0.46875,-1 0.394531,-1.238281 0.359375,-1.519531 0.359375,-1.84375 c 0,-0.300781 0.035156,-0.570312 0.109375,-0.8125 0.082031,-0.238281 0.195312,-0.441406 0.34375,-0.609375 0.15625,-0.164063 0.335938,-0.296875 0.546875,-0.390625 0.207031,-0.09375 0.4375,-0.140625 0.6875,-0.140625 0.28125,0 0.515625,0.046875 0.703125,0.140625 0.195312,0.085938 0.359375,0.203125 0.484375,0.359375 0.125,0.148437 0.210937,0.324219 0.265625,0.53125 0.0625,0.199219 0.09375,0.414063 0.09375,0.640625 z m -0.640625,-0.1875 C 2.960938,-2.535156 2.882812,-2.796875 2.71875,-2.984375 2.5625,-3.179688 2.332031,-3.28125 2.03125,-3.28125 c -0.167969,0 -0.3125,0.03125 -0.4375,0.09375 -0.117188,0.054688 -0.214844,0.132812 -0.296875,0.234375 -0.074219,0.09375 -0.136719,0.210937 -0.1875,0.34375 -0.042969,0.125 -0.0625,0.261719 -0.0625,0.40625 z m 0,0"
id="path92"
inkscape:connector-curvature="0" />
</symbol>
</g>
<clipPath
id="clip1">
<path
d="M 50.398438,304.80078 H 544.80078 V 577.67969 H 50.398438 Z m 0,0"
id="path97"
inkscape:connector-curvature="0" />
</clipPath>
</defs>
<g
id="surface316"
transform="translate(-50.567825,-304.96626)">
<path
style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none"
d="M 50.78125,577.53125 H 544.64062 V 305.17969 H 50.78125 Z m 0,0"
id="path102"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#d9d9d9;stroke-width:0.40978;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 77.417969,327.97969 H 533.16016 M 77.417969,365.47187 H 533.16016 m -455.742191,37.5 H 533.16016 M 77.417969,440.53047 H 533.16016 m -455.742191,37.5 H 533.16016 M 77.417969,515.51875 H 533.16016"
transform="matrix(1,0,0,-1,0,841.8)"
id="path104"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#d9d9d9;stroke-width:0.40978;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 229.30859,515.51875 V 290.47969 M 381.26953,515.51875 V 290.47969 M 533.16016,515.51875 V 290.47969"
transform="matrix(1,0,0,-1,0,841.8)"
id="path106"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#bdbdbd;stroke-width:0.42684999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 77.398438,290.49141 V 515.51094"
transform="matrix(1,0,0,-1,0,841.8)"
id="path108"
inkscape:connector-curvature="0" />
<path
style="fill:none;stroke:#bdbdbd;stroke-width:0.42684999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 77.398438,290.49141 H 533.19141"
transform="matrix(1,0,0,-1,0,841.8)"
id="path110"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 91.347656,527.48828 0.820313,0.82031 -0.820313,0.82032 -0.816406,-0.82032 z m 0,0"
id="path112"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 94.285156,526.05078 0.820313,0.82031 -0.820313,0.82032 -0.820312,-0.82032 z m 0,0"
id="path114"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 97.222656,524.48047 0.820313,0.82031 -0.820313,0.82031 -0.820312,-0.82031 z m 0,0"
id="path116"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 100.30078,496.67969 0.82031,0.82031 -0.82031,0.82031 L 99.476562,497.5 Z m 0,0"
id="path118"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 103.37109,495.46094 0.82032,0.82031 -0.82032,0.80859 -0.82031,-0.80859 z m 0,0"
id="path120"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 106.51172,480.28906 0.81641,0.82031 -0.81641,0.82032 -0.82031,-0.82032 z m 0,0"
id="path122"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 109.71875,479.19922 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path124"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 112.92969,469.78125 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path126"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 116.21094,468.89062 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path128"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 119.55859,462.12891 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path130"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 122.96875,461.30859 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path132"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 126.44922,457.69141 0.82031,0.82031 -0.82031,0.8164 -0.82031,-0.8164 z m 0,0"
id="path134"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 129.94141,456.94141 0.82031,0.82031 -0.82031,0.8164 -0.82032,-0.8164 z m 0,0"
id="path136"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 133.48828,452.62891 0.82031,0.82031 -0.82031,0.82031 -0.81641,-0.82031 z m 0,0"
id="path138"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 137.03906,451.94922 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path140"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 140.73047,448.39844 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path142"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 144.42187,447.71875 0.81641,0.82031 -0.81641,0.82031 -0.82031,-0.82031 z m 0,0"
id="path144"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 148.17187,446.21094 0.81641,0.82031 -0.81641,0.82031 -0.82031,-0.82031 z m 0,0"
id="path146"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 151.92969,445.60156 0.82031,0.82031 -0.82031,0.81641 -0.82032,-0.81641 z m 0,0"
id="path148"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 155.82031,443.75 0.82031,0.82031 -0.82031,0.82031 L 155,444.57031 Z m 0,0"
id="path150"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 159.71094,443.14062 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path152"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 163.67969,440.82031 0.80859,0.82031 -0.80859,0.82032 -0.82032,-0.82032 z m 0,0"
id="path154"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 167.64062,440.26953 0.82032,0.82031 -0.82032,0.82032 -0.82031,-0.82032 z m 0,0"
id="path156"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 171.67187,438.96875 0.81641,0.82031 -0.81641,0.82031 -0.82031,-0.82031 z m 0,0"
id="path158"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 175.82812,438.35937 0.82032,0.82032 -0.82032,0.82031 -0.8164,-0.82031 z m 0,0"
id="path160"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 179.92969,437.39844 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path162"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 184.16016,436.85937 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path164"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 188.39844,435.14844 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path166"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 192.69922,434.67187 0.82031,0.81641 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path168"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 197.07031,433.92187 0.82031,0.81641 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path170"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 201.44141,433.44141 0.82031,0.82031 -0.82031,0.8164 -0.82032,-0.8164 z m 0,0"
id="path172"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 205.94922,433.10156 0.82031,0.82031 -0.82031,0.81641 -0.82031,-0.81641 z m 0,0"
id="path174"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 210.46094,432.62109 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path176"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 214.96875,432.07812 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path178"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 219.60937,431.60156 0.82032,0.82031 -0.82032,0.81641 -0.82031,-0.81641 z m 0,0"
id="path180"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 224.25,430.64062 0.82031,0.82032 -0.82031,0.82031 -0.80859,-0.82031 z m 0,0"
id="path182"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 228.96875,430.16016 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path184"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 233.75,429.41016 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path186"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 238.53125,429 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path188"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 243.37891,428.32031 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path190"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 248.30078,427.83984 0.80859,0.82032 -0.80859,0.82031 -0.82031,-0.82031 z m 0,0"
id="path192"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 253.28125,426.94922 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path194"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 258.26953,426.53906 0.82031,0.82031 -0.82031,0.82032 -0.82031,-0.82032 z m 0,0"
id="path196"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 263.39062,426.12891 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path198"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 268.51172,425.66016 0.8164,0.82031 -0.8164,0.82031 -0.82031,-0.82031 z m 0,0"
id="path200"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 273.62891,424.76953 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path202"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 278.89062,424.35937 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path204"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 284.14844,423.87891 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path206"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 289.48047,423.46875 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path208"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 294.80859,422.71875 0.8125,0.82031 -0.8125,0.82031 -0.82031,-0.82031 z m 0,0"
id="path210"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 300.19922,422.37891 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path212"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 305.73047,421.62891 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path214"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 311.19922,421.21875 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path216"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 316.80078,420.39844 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path218"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 322.39844,420.05859 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path220"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 328.07031,419.30078 0.82031,0.82031 -0.82031,0.82032 -0.82031,-0.82032 z m 0,0"
id="path222"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 333.80078,418.89062 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path224"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 339.60937,418.14062 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path226"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 345.41016,417.73047 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path228"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 351.28906,417.53125 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path230"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 357.23047,417.12109 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path232"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 363.17187,416.44141 0.81641,0.82031 -0.81641,0.8164 -0.82031,-0.8164 z m 0,0"
id="path234"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 369.17969,416.08984 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path236"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 375.26172,415.75 0.8164,0.82031 -0.8164,0.82031 -0.82031,-0.82031 z m 0,0"
id="path238"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 381.41016,415.41016 0.80859,0.82031 -0.80859,0.82031 -0.82032,-0.82031 z m 0,0"
id="path240"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 387.62109,415.55078 0.82032,0.82031 -0.82032,0.82032 -0.82031,-0.82032 z m 0,0"
id="path242"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 393.83984,415.21094 0.8086,0.82031 -0.8086,0.82031 -0.82031,-0.82031 z m 0,0"
id="path244"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 400.12109,414.66016 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path246"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 406.39844,414.32031 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path248"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 412.82031,414.80078 0.82031,0.82031 -0.82031,0.82032 L 412,415.62109 Z m 0,0"
id="path250"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 419.23828,414.46094 0.82031,0.82031 -0.82031,0.80859 -0.81641,-0.80859 z m 0,0"
id="path252"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 425.73047,413.91016 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path254"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 432.28906,413.57031 0.82031,0.82031 -0.82031,0.82032 -0.82031,-0.82032 z m 0,0"
id="path256"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 438.83984,413.28906 0.82032,0.82031 -0.82032,0.82032 -0.82031,-0.82032 z m 0,0"
id="path258"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 445.46875,412.94922 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path260"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 452.16016,412.75 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path262"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 458.92187,412.41016 0.81641,0.82031 -0.81641,0.82031 -0.82031,-0.82031 z m 0,0"
id="path264"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 465.67969,412.41016 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path266"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 472.51172,412.07031 0.8164,0.8086 -0.8164,0.82031 -0.82031,-0.82031 z m 0,0"
id="path268"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 479.41016,411.85937 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path270"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 486.37891,411.58984 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path272"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 493.33984,411.37891 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path274"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 500.37891,411.03906 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path276"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 507.48047,410.89844 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path278"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 514.57812,410.55859 0.82032,0.82032 -0.82032,0.82031 -0.8164,-0.82031 z m 0,0"
id="path280"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 521.82031,410.28906 0.82031,0.82031 -0.82031,0.82032 L 521,411.10937 Z m 0,0"
id="path282"
inkscape:connector-curvature="0" />
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 529.05859,409.94922 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path284"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 91.347656,333.39062 0.820313,0.82032 -0.820313,0.82031 -0.816406,-0.82031 z m 0,0"
id="path286"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 94.285156,332.98047 0.820313,0.82031 -0.820313,0.82031 -0.820312,-0.82031 z m 0,0"
id="path288"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 97.222656,332.64062 0.820313,0.82032 -0.820313,0.82031 -0.820312,-0.82031 z m 0,0"
id="path290"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 100.30078,336.39062 0.82031,0.82032 -0.82031,0.82031 -0.824218,-0.82031 z m 0,0"
id="path292"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 103.37109,335.98047 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path294"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 106.51172,337.35156 0.81641,0.82031 -0.81641,0.81641 -0.82031,-0.81641 z m 0,0"
id="path296"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 109.71875,337.01172 0.82031,0.8164 -0.82031,0.82032 -0.82031,-0.82032 z m 0,0"
id="path298"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 112.92969,339.67187 0.82031,0.81641 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path300"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 116.21094,339.39844 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path302"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 119.55859,341.44922 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path304"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 122.96875,341.17187 0.82031,0.81641 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path306"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 126.44922,345.60937 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path308"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 129.94141,345.33984 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path310"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 133.48828,345.82031 0.82031,0.82031 -0.82031,0.82032 -0.81641,-0.82032 z m 0,0"
id="path312"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 137.03906,345.60937 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path314"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 140.73047,346.5 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path316"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 144.42187,346.30078 0.81641,0.82031 -0.81641,0.8086 -0.82031,-0.8086 z m 0,0"
id="path318"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 148.17187,349.78125 0.81641,0.82031 -0.81641,0.82031 -0.82031,-0.82031 z m 0,0"
id="path320"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 151.92969,349.57031 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path322"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 155.82031,351.28125 0.82031,0.82031 -0.82031,0.82031 L 155,352.10156 Z m 0,0"
id="path324"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 159.71094,351.07812 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path326"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 163.67969,351.35156 0.80859,0.82031 -0.80859,0.81641 -0.82032,-0.81641 z m 0,0"
id="path328"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 167.64062,351.14062 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path330"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 171.67187,352.78125 0.81641,0.82031 -0.81641,0.82031 -0.82031,-0.82031 z m 0,0"
id="path332"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 175.82812,352.57812 0.82032,0.82032 -0.82032,0.82031 -0.8164,-0.82031 z m 0,0"
id="path334"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 179.92969,354.28906 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path336"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 184.16016,354.14844 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path338"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 188.39844,354.28906 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path340"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 192.69922,354.14844 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path342"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 197.07031,355.71875 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path344"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 201.44141,355.57812 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path346"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 205.94922,357.5 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path348"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 210.46094,357.35937 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path350"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 214.96875,358.58984 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path352"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 219.60937,358.44922 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path354"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 224.25,358.85937 0.82031,0.82032 -0.82031,0.82031 -0.80859,-0.82031 z m 0,0"
id="path356"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 228.96875,358.73047 0.82031,0.82031 -0.82031,0.80859 -0.82031,-0.80859 z m 0,0"
id="path358"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 233.75,359.33984 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path360"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 238.53125,359.19922 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path362"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 243.37891,359.89062 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path364"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 248.30078,359.67969 0.80859,0.82031 -0.80859,0.82031 -0.82031,-0.82031 z m 0,0"
id="path366"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 253.28125,359.89062 0.82031,0.82032 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path368"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 258.26953,359.75 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path370"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 263.39062,360.64062 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path372"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 268.51172,360.5 0.8164,0.82031 -0.8164,0.82031 -0.82031,-0.82031 z m 0,0"
id="path374"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 273.62891,360.5 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path376"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 278.89062,360.35937 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path378"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 284.14844,361.05078 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path380"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 289.48047,360.91016 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path382"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 294.80859,361.05078 0.8125,0.82031 -0.8125,0.82032 -0.82031,-0.82032 z m 0,0"
id="path384"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 300.19922,360.91016 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path386"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 305.73047,361.05078 0.82031,0.82031 -0.82031,0.82032 -0.82031,-0.82032 z m 0,0"
id="path388"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 311.19922,360.91016 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path390"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 316.80078,360.91016 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path392"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 322.39844,360.76953 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path394"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 328.07031,360.76953 0.82031,0.82031 -0.82031,0.82032 -0.82031,-0.82032 z m 0,0"
id="path396"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 333.80078,360.71094 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path398"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 339.60937,360.64062 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path400"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 345.41016,360.57031 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path402"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 351.28906,361.32031 0.82031,0.82031 -0.82031,0.82032 -0.82031,-0.82032 z m 0,0"
id="path404"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 357.23047,361.17969 358.05078,362 357.23047,362.82031 356.41016,362 Z m 0,0"
id="path406"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="M 363.17187,361.17969 363.98828,362 363.17187,362.82031 362.35156,362 Z m 0,0"
id="path408"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 369.17969,361.05078 0.82031,0.82031 -0.82031,0.82032 -0.82032,-0.82032 z m 0,0"
id="path410"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 375.26172,361.53125 0.8164,0.82031 -0.8164,0.8086 -0.82031,-0.8086 z m 0,0"
id="path412"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 381.41016,361.46094 0.80859,0.82031 -0.80859,0.82031 -0.82032,-0.82031 z m 0,0"
id="path414"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 387.62109,362.62109 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path416"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 393.83984,362.55078 0.8086,0.82031 -0.8086,0.82032 -0.82031,-0.82032 z m 0,0"
id="path418"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 400.12109,362.62109 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path420"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 406.39844,362.48047 0.82031,0.82031 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path422"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 412.82031,363.98047 0.82031,0.82031 -0.82031,0.82031 L 412,364.80078 Z m 0,0"
id="path424"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 419.23828,363.85156 0.82031,0.82031 -0.82031,0.81641 -0.81641,-0.81641 z m 0,0"
id="path426"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 425.73047,363.85156 0.82031,0.82031 -0.82031,0.81641 -0.82031,-0.81641 z m 0,0"
id="path428"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 432.28906,363.71094 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path430"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 438.83984,364.05078 0.82032,0.82031 -0.82032,0.82032 -0.82031,-0.82032 z m 0,0"
id="path432"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 445.46875,363.98047 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path434"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 452.16016,364.39062 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path436"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 458.92187,364.32812 0.81641,0.82032 -0.81641,0.82031 -0.82031,-0.82031 z m 0,0"
id="path438"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 465.67969,364.87109 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path440"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 472.51172,364.80078 0.8164,0.82031 -0.8164,0.82032 -0.82031,-0.82032 z m 0,0"
id="path442"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 479.41016,365.14844 0.82031,0.8125 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path444"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 486.37891,365.07812 0.82031,0.82032 -0.82031,0.82031 -0.82032,-0.82031 z m 0,0"
id="path446"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 493.33984,365.42187 0.82032,0.81641 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path448"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 500.37891,365.35156 0.82031,0.82031 -0.82031,0.81641 -0.82032,-0.81641 z m 0,0"
id="path450"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 507.48047,365.69141 0.82031,0.82031 -0.82031,0.8164 -0.82031,-0.8164 z m 0,0"
id="path452"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 514.57812,365.55859 0.82032,0.8125 -0.82032,0.82032 -0.8164,-0.82032 z m 0,0"
id="path454"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 521.82031,365.69141 0.82031,0.82031 -0.82031,0.8164 L 521,366.51172 Z m 0,0"
id="path456"
inkscape:connector-curvature="0" />
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 529.05859,365.62109 0.82032,0.82032 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path458"
inkscape:connector-curvature="0" />
<g
style="fill:#575757;fill-opacity:1"
id="g474">
<use
xlink:href="#glyph0-1"
x="54.48"
y="552.84003"
id="use460"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-2"
x="57.095985"
y="552.84003"
id="use462"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="59.711967"
y="552.84003"
id="use464"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="62.327953"
y="552.84003"
id="use466"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="64.943939"
y="552.84003"
id="use468"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="67.559921"
y="552.84003"
id="use470"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="70.175903"
y="552.84003"
id="use472"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g490">
<use
xlink:href="#glyph0-1"
x="54.48"
y="515.33002"
id="use476"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-2"
x="57.095985"
y="515.33002"
id="use478"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-4"
x="59.711967"
y="515.33002"
id="use480"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="62.327953"
y="515.33002"
id="use482"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="64.943939"
y="515.33002"
id="use484"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="67.559921"
y="515.33002"
id="use486"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="70.175903"
y="515.33002"
id="use488"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g506">
<use
xlink:href="#glyph0-1"
x="54.48"
y="477.82001"
id="use492"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-4"
x="57.095985"
y="477.82001"
id="use494"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="59.711967"
y="477.82001"
id="use496"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="62.327953"
y="477.82001"
id="use498"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="64.943939"
y="477.82001"
id="use500"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="67.559921"
y="477.82001"
id="use502"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="70.175903"
y="477.82001"
id="use504"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g522">
<use
xlink:href="#glyph1-1"
x="54.48"
y="440.29999"
id="use508"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-2"
x="57.095951"
y="440.29999"
id="use510"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-2"
x="59.711903"
y="440.29999"
id="use512"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="62.327854"
y="440.29999"
id="use514"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="64.94381"
y="440.29999"
id="use516"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="67.559761"
y="440.29999"
id="use518"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="70.175713"
y="440.29999"
id="use520"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g538">
<use
xlink:href="#glyph1-1"
x="54.48"
y="402.79001"
id="use524"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-1"
x="57.095951"
y="402.79001"
id="use526"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="59.711903"
y="402.79001"
id="use528"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="62.327854"
y="402.79001"
id="use530"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="64.94381"
y="402.79001"
id="use532"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="67.559761"
y="402.79001"
id="use534"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="70.175713"
y="402.79001"
id="use536"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g554">
<use
xlink:href="#glyph1-1"
x="54.48"
y="365.28"
id="use540"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-1"
x="57.095951"
y="365.28"
id="use542"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-2"
x="59.711903"
y="365.28"
id="use544"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="62.327854"
y="365.28"
id="use546"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="64.94381"
y="365.28"
id="use548"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="67.559761"
y="365.28"
id="use550"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="70.175713"
y="365.28"
id="use552"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g570">
<use
xlink:href="#glyph0-1"
x="54.48"
y="327.79001"
id="use556"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-5"
x="57.095985"
y="327.79001"
id="use558"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="59.711967"
y="327.79001"
id="use560"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="62.327953"
y="327.79001"
id="use562"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="64.943939"
y="327.79001"
id="use564"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="67.559921"
y="327.79001"
id="use566"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-3"
x="70.175903"
y="327.79001"
id="use568"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g574">
<use
xlink:href="#glyph1-3"
x="76.127998"
y="559.48999"
id="use572"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g582">
<use
xlink:href="#glyph1-1"
x="225.48"
y="559.48999"
id="use576"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="228.07195"
y="559.48999"
id="use578"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="230.66391"
y="559.48999"
id="use580"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g592">
<use
xlink:href="#glyph1-4"
x="376.14999"
y="559.48999"
id="use584"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-5"
x="378.74194"
y="559.48999"
id="use586"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="381.33389"
y="559.48999"
id="use588"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="383.92584"
y="559.48999"
id="use590"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g602">
<use
xlink:href="#glyph1-4"
x="528.09998"
y="559.48999"
id="use594"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-6"
x="530.71594"
y="559.48999"
id="use596"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="533.33191"
y="559.48999"
id="use598"
width="100%"
height="100%" />
<use
xlink:href="#glyph1-3"
x="535.94788"
y="559.48999"
id="use600"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g606">
<use
xlink:href="#glyph2-1"
x="280.94"
y="317.09"
id="use604"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g610">
<use
xlink:href="#glyph2-2"
x="285.16776"
y="317.09"
id="use608"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g618">
<use
xlink:href="#glyph2-3"
x="289.32361"
y="317.09"
id="use612"
width="100%"
height="100%" />
<use
xlink:href="#glyph2-4"
x="293.15176"
y="317.09"
id="use614"
width="100%"
height="100%" />
<use
xlink:href="#glyph2-5"
x="295.94098"
y="317.09"
id="use616"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g622">
<use
xlink:href="#glyph2-6"
x="298.58633"
y="317.09"
id="use620"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g634">
<use
xlink:href="#glyph2-7"
x="300.36057"
y="317.09"
id="use624"
width="100%"
height="100%" />
<use
xlink:href="#glyph2-8"
x="304.25266"
y="317.09"
id="use626"
width="100%"
height="100%" />
<use
xlink:href="#glyph2-5"
x="306.09082"
y="317.09"
id="use628"
width="100%"
height="100%" />
<use
xlink:href="#glyph2-9"
x="308.76816"
y="317.09"
id="use630"
width="100%"
height="100%" />
<use
xlink:href="#glyph2-10"
x="310.60629"
y="317.09"
id="use632"
width="100%"
height="100%" />
</g>
<path
style="fill:#2323ff;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 278.89062,568.46094 0.82032,0.82031 -0.82032,0.82031 -0.82031,-0.82031 z m 0,0"
id="path636"
inkscape:connector-curvature="0" />
<g
style="fill:#575757;fill-opacity:1"
id="g640">
<use
xlink:href="#glyph0-6"
x="281.59"
y="570.84003"
id="use638"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g644">
<use
xlink:href="#glyph0-7"
x="283.91595"
y="570.84003"
id="use642"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g650">
<use
xlink:href="#glyph0-8"
x="286.50262"
y="570.84003"
id="use646"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-9"
x="288.28671"
y="570.84003"
id="use648"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g654">
<use
xlink:href="#glyph0-7"
x="289.43179"
y="570.84003"
id="use652"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g658">
<use
xlink:href="#glyph0-10"
x="292.01849"
y="570.84003"
id="use656"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g662">
<use
xlink:href="#glyph0-11"
x="293.9866"
y="570.84003"
id="use660"
width="100%"
height="100%" />
</g>
<path
style="fill:#d90000;fill-opacity:1;fill-rule:nonzero;stroke:none"
d="m 302.32031,568.46094 0.82031,0.82031 -0.82031,0.82031 -0.82031,-0.82031 z m 0,0"
id="path664"
inkscape:connector-curvature="0" />
<g
style="fill:#575757;fill-opacity:1"
id="g668">
<use
xlink:href="#glyph0-6"
x="304.98999"
y="570.84003"
id="use666"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g672">
<use
xlink:href="#glyph0-7"
x="307.31595"
y="570.84003"
id="use670"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g678">
<use
xlink:href="#glyph0-8"
x="309.90262"
y="570.84003"
id="use674"
width="100%"
height="100%" />
<use
xlink:href="#glyph0-9"
x="311.68671"
y="570.84003"
id="use676"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g682">
<use
xlink:href="#glyph0-7"
x="312.83182"
y="570.84003"
id="use680"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g686">
<use
xlink:href="#glyph0-10"
x="315.41849"
y="570.84003"
id="use684"
width="100%"
height="100%" />
</g>
<g
style="fill:#575757;fill-opacity:1"
id="g690">
<use
xlink:href="#glyph0-12"
x="317.3866"
y="570.84003"
id="use688"
width="100%"
height="100%" />
</g>
<g
clip-path="url(#clip1)"
id="g694"
style="clip-rule:nonzero">
<path
style="fill:none;stroke:#d9d9d9;stroke-width:0.42684999;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:10;stroke-opacity:1"
d="M 50.78125,264.26875 H 544.64062 V 536.62031 H 50.78125 Z m 0,0"
transform="matrix(1,0,0,-1,0,841.8)"
id="path692"
inkscape:connector-curvature="0" />
</g>
</g>
</svg>
|