Newer
Older
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
transform="translate(296.6337,134.765)"
d="m 1.71875,-3.984375 h 1.4375 v -0.3125 H 1.71875 V -6.125 h -0.25 c 0,0.8125 -0.296875,1.875 -1.28125,1.921875 v 0.21875 h 0.84375 v 2.75 c 0,1.21875 0.9375,1.34375 1.296875,1.34375 0.703125,0 0.984375,-0.703125 0.984375,-1.34375 v -0.5625 h -0.25 V -1.25 c 0,0.734375 -0.296875,1.109375 -0.671875,1.109375 -0.671875,0 -0.671875,-0.90625 -0.671875,-1.078125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path16208"
transform="translate(300.50815,134.765)"
d="m 2.078125,-1.9375 c 0.21875,0.046875 1.03125,0.203125 1.03125,0.921875 0,0.5 -0.34375,0.90625 -1.125,0.90625 -0.84375,0 -1.203125,-0.5625 -1.390625,-1.421875 C 0.5625,-1.65625 0.5625,-1.6875 0.453125,-1.6875 c -0.125,0 -0.125,0.0625 -0.125,0.234375 V -0.125 c 0,0.171875 0,0.234375 0.109375,0.234375 0.046875,0 0.0625,-0.015625 0.25,-0.203125 0.015625,-0.015625 0.015625,-0.03125 0.203125,-0.21875 0.4375,0.40625 0.890625,0.421875 1.09375,0.421875 1.140625,0 1.609375,-0.671875 1.609375,-1.390625 0,-0.515625 -0.296875,-0.828125 -0.421875,-0.9375 C 2.84375,-2.546875 2.453125,-2.625 2.03125,-2.703125 1.46875,-2.8125 0.8125,-2.9375 0.8125,-3.515625 c 0,-0.359375 0.25,-0.765625 1.109375,-0.765625 1.09375,0 1.15625,0.90625 1.171875,1.203125 0,0.09375 0.09375,0.09375 0.109375,0.09375 0.140625,0 0.140625,-0.046875 0.140625,-0.234375 v -1.015625 c 0,-0.15625 0,-0.234375 -0.109375,-0.234375 -0.046875,0 -0.078125,0 -0.203125,0.125 -0.03125,0.03125 -0.125,0.125 -0.171875,0.15625 -0.375,-0.28125 -0.78125,-0.28125 -0.9375,-0.28125 -1.21875,0 -1.59375,0.671875 -1.59375,1.234375 0,0.34375 0.15625,0.625 0.421875,0.84375 0.328125,0.25 0.609375,0.3125 1.328125,0.453125 z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
<path
id="path16210"
transform="translate(304.4374,134.765)"
d="m 1.90625,-0.53125 c 0,-0.28125 -0.234375,-0.53125 -0.515625,-0.53125 -0.296875,0 -0.53125,0.25 -0.53125,0.53125 C 0.859375,-0.234375 1.09375,0 1.390625,0 1.671875,0 1.90625,-0.234375 1.90625,-0.53125 Z m 0,0"
style="stroke:none;stroke-width:0"
inkscape:connector-curvature="0" />
</g>
</g>
</g>
<g
transform="matrix(0.752941,0,0,0.752941,-110.27831,132.98563)"
ns1:version="0.9.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="pdf2svg"
ns1:text="0000000000000000000000000000000000000000000000000000001111101000"
ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
ns1:scale="2.13432154022"
ns1:alignment="middle center"
inkscapeversion="0.92.3"
ns1:jacobian_sqrt="0.752941"
id="g8402">
<g
id="g8400">
<g
style="fill:#000000;fill-opacity:1"
id="g8398">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(148.712,134.765)"
id="path8270" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(153.6933,134.765)"
id="path8272" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(158.6746,134.765)"
id="path8274" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(163.6559,134.765)"
id="path8276" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(168.6372,134.765)"
id="path8278" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(173.6185,134.765)"
id="path8280" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(178.5998,134.765)"
id="path8282" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(183.5811,134.765)"
id="path8284" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(188.5624,134.765)"
id="path8286" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(193.5437,134.765)"
id="path8288" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(198.525,134.765)"
id="path8290" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(203.5063,134.765)"
id="path8292" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(208.4876,134.765)"
id="path8294" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(213.4689,134.765)"
id="path8296" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(218.4502,134.765)"
id="path8298" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(223.4315,134.765)"
id="path8300" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(228.4128,134.765)"
id="path8302" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(233.3941,134.765)"
id="path8304" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(238.3754,134.765)"
id="path8306" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(243.3567,134.765)"
id="path8308" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(248.338,134.765)"
id="path8310" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(253.3193,134.765)"
id="path8312" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(258.3006,134.765)"
id="path8314" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(263.2819,134.765)"
id="path8316" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(268.2632,134.765)"
id="path8318" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(273.2445,134.765)"
id="path8320" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(278.2258,134.765)"
id="path8322" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(283.2071,134.765)"
id="path8324" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(288.1884,134.765)"
id="path8326" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(293.1697,134.765)"
id="path8328" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(298.151,134.765)"
id="path8330" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(303.1323,134.765)"
id="path8332" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(308.1136,134.765)"
id="path8334" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(313.0949,134.765)"
id="path8336" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(318.0762,134.765)"
id="path8338" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(323.0575,134.765)"
id="path8340" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(328.0388,134.765)"
id="path8342" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(333.0201,134.765)"
id="path8344" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(338.0014,134.765)"
id="path8346" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(342.9827,134.765)"
id="path8348" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(347.964,134.765)"
id="path8350" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(352.9453,134.765)"
id="path8352" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(357.9266,134.765)"
id="path8354" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(362.9079,134.765)"
id="path8356" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(367.8892,134.765)"
id="path8358" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(372.8705,134.765)"
id="path8360" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(377.8518,134.765)"
id="path8362" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(382.8331,134.765)"
id="path8364" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(387.8144,134.765)"
id="path8366" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(392.7957,134.765)"
id="path8368" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(397.777,134.765)"
id="path8370" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(402.7583,134.765)"
id="path8372" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(407.7396,134.765)"
id="path8374" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(412.7209,134.765)"
id="path8376" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
transform="translate(417.7022,134.765)"
id="path8378" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
transform="translate(422.6835,134.765)"
id="path8380" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
transform="translate(427.6648,134.765)"
id="path8382" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
transform="translate(432.6461,134.765)"
id="path8384" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
transform="translate(437.6274,134.765)"
id="path8386" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(442.6087,134.765)"
id="path8388" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.9375,-6.375 c 0,-0.25 0,-0.265625 -0.234375,-0.265625 C 2.078125,-6 1.203125,-6 0.890625,-6 v 0.3125 c 0.203125,0 0.78125,0 1.296875,-0.265625 v 5.171875 c 0,0.359375 -0.03125,0.46875 -0.921875,0.46875 h -0.3125 V 0 c 0.34375,-0.03125 1.203125,-0.03125 1.609375,-0.03125 0.390625,0 1.265625,0 1.609375,0.03125 v -0.3125 h -0.3125 c -0.90625,0 -0.921875,-0.109375 -0.921875,-0.46875 z m 0,0"
transform="translate(447.59,134.765)"
id="path8390" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(452.5713,134.765)"
id="path8392" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(457.5526,134.765)"
id="path8394" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(462.5339,134.765)"
id="path8396" />
</g>
</g>
</g>
<g
id="g10154"
ns1:jacobian_sqrt="0.752941"
inkscapeversion="0.92.3"
ns1:alignment="middle center"
ns1:scale="2.13432151187"
ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
ns1:text="2000"
ns1:pdfconverter="pdf2svg"
ns1:texconverter="pdflatex"
ns1:version="0.9.0"
transform="matrix(0.752941,0,0,0.752941,-102.31115,44.471564)">
<g
id="g10152">
<g
id="g10150"
style="fill:#000000;fill-opacity:1">
<path
inkscape:connector-curvature="0"
id="path10142"
transform="translate(148.712,134.765)"
d="m 1.265625,-0.765625 1.0625,-1.03125 c 1.546875,-1.375 2.140625,-1.90625 2.140625,-2.90625 0,-1.140625 -0.890625,-1.9375 -2.109375,-1.9375 -1.125,0 -1.859375,0.921875 -1.859375,1.8125 0,0.546875 0.5,0.546875 0.53125,0.546875 0.171875,0 0.515625,-0.109375 0.515625,-0.53125 0,-0.25 -0.1875,-0.515625 -0.53125,-0.515625 -0.078125,0 -0.09375,0 -0.125,0.015625 0.21875,-0.65625 0.765625,-1.015625 1.34375,-1.015625 0.90625,0 1.328125,0.8125 1.328125,1.625 C 3.5625,-3.90625 3.078125,-3.125 2.515625,-2.5 l -1.90625,2.125 C 0.5,-0.265625 0.5,-0.234375 0.5,0 H 4.203125 L 4.46875,-1.734375 H 4.234375 C 4.171875,-1.4375 4.109375,-1 4,-0.84375 3.9375,-0.765625 3.28125,-0.765625 3.0625,-0.765625 Z m 0,0"
style="stroke:none;stroke-width:0" />
<path
inkscape:connector-curvature="0"
id="path10144"
transform="translate(153.6933,134.765)"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none;stroke-width:0" />
<path
inkscape:connector-curvature="0"
id="path10146"
transform="translate(158.6746,134.765)"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none;stroke-width:0" />
<path
inkscape:connector-curvature="0"
id="path10148"
transform="translate(163.6559,134.765)"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
style="stroke:none;stroke-width:0" />
</g>
</g>
</g>
<g
transform="matrix(0.752941,0,0,0.752941,1.693969,46.328366)"
ns1:version="0.9.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="pdf2svg"
ns1:text="\\begin{verbatim}\nchar c = \'a\';\nchar *ptr_c = &c; // addr 2000\n\\end{verbatim}\n"
ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
ns1:scale="2.13432156857"
ns1:alignment="middle center"
inkscapeversion="0.92.3"
ns1:jacobian_sqrt="0.752941"
id="g10776">
<g
id="g10774">
<g
style="fill:#000000;fill-opacity:1"
id="g10692">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
transform="translate(133.768,134.765)"
id="path10684" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0"
transform="translate(138.99836,134.765)"
id="path10686" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0"
transform="translate(144.22873,134.765)"
id="path10688" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0"
transform="translate(149.45909,134.765)"
id="path10690" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10696">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
transform="translate(159.91982,134.765)"
id="path10694" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10700">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0"
transform="translate(170.38055,134.765)"
id="path10698" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10710">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.40625,-4.953125 c 0,-0.765625 -0.375,-1.140625 -0.78125,-1.140625 -0.328125,0 -0.515625,0.265625 -0.515625,0.5 0,0.265625 0.203125,0.5 0.5,0.5 0.078125,0 0.125,-0.015625 0.140625,-0.015625 0.046875,0 0.046875,0.09375 0.046875,0.15625 0,0.1875 -0.03125,0.90625 -0.828125,1.359375 -0.078125,0.0625 -0.171875,0.109375 -0.171875,0.265625 0,0.171875 0.171875,0.3125 0.3125,0.3125 0.234375,0 1.296875,-0.6875 1.296875,-1.9375 z m 0,0"
transform="translate(180.84128,134.765)"
id="path10702" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0"
transform="translate(186.07165,134.765)"
id="path10704" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.40625,-4.953125 c 0,-0.765625 -0.375,-1.140625 -0.78125,-1.140625 -0.328125,0 -0.515625,0.265625 -0.515625,0.5 0,0.265625 0.203125,0.5 0.5,0.5 0.078125,0 0.125,-0.015625 0.140625,-0.015625 0.046875,0 0.046875,0.09375 0.046875,0.15625 0,0.1875 -0.03125,0.90625 -0.828125,1.359375 -0.078125,0.0625 -0.171875,0.109375 -0.171875,0.265625 0,0.171875 0.171875,0.3125 0.3125,0.3125 0.234375,0 1.296875,-0.6875 1.296875,-1.9375 z m 0,0"
transform="translate(191.30201,134.765)"
id="path10706" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z M 2.65625,0 C 2.515625,0.53125 2.140625,0.734375 2,0.8125 1.9375,0.84375 1.796875,0.90625 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.21875,0 1.1875,-0.546875 1.1875,-1.65625 0,-0.65625 -0.3125,-0.984375 -0.6875,-0.984375 C 2.25,-1.25 2,-0.96875 2,-0.625 2,-0.34375 2.15625,0 2.65625,0 Z m 0,0"
transform="translate(196.53238,134.765)"
id="path10708" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10720">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
transform="translate(133.768,146.72)"
id="path10712" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.25,-2.921875 c 0,-1 -0.5,-1.4375 -1.296875,-1.4375 -0.65625,0 -1.109375,0.34375 -1.296875,0.53125 V -5.6875 c 0,-0.296875 -0.0625,-0.40625 -0.40625,-0.40625 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 4.875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.3125 C 0.125,0 0.375,0 0.515625,0 h 1.59375 C 2.25,0 2.5,0 2.5,-0.296875 c 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 1.65625 V -2.375 c 0,-1 0.734375,-1.375 1.25,-1.375 0.515625,0 0.65625,0.28125 0.65625,0.875 v 2.265625 h -0.375 c -0.171875,0 -0.421875,0 -0.421875,0.3125 C 2.765625,0 3.046875,0 3.1875,0 h 1.515625 c 0.140625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.421875,-0.3125 H 4.25 Z m 0,0"
transform="translate(138.99836,146.72)"
id="path10714" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0"
transform="translate(144.22873,146.72)"
id="path10716" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0"
transform="translate(149.45909,146.72)"
id="path10718" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10734">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0"
transform="translate(159.91982,146.72)"
id="path10722" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0"
transform="translate(165.15019,146.72)"
id="path10724" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0"
transform="translate(170.38055,146.72)"
id="path10726" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0"
transform="translate(175.61092,146.72)"
id="path10728" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.203125,0.953125 c 0.109375,0 0.46875,0 0.46875,-0.359375 C 4.671875,0.25 4.3125,0.25 4.203125,0.25 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.34375 0,0.359375 0.34375,0.359375 0.46875,0.359375 z m 0,0"
transform="translate(180.84128,146.72)"
id="path10730" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
transform="translate(186.07165,146.72)"
id="path10732" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10738">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0"
transform="translate(196.53238,146.72)"
id="path10736" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10746">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.171875,-3.6875 h 0.3125 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 H 3.5625 c -0.140625,0 -0.390625,0 -0.390625,0.296875 0,0.3125 0.234375,0.3125 0.40625,0.3125 -0.265625,0.703125 -0.59375,1.5625 -0.859375,2.09375 -0.140625,-0.203125 -0.546875,-0.84375 -0.75,-1.375 1.015625,-1.046875 1.015625,-1.640625 1.015625,-1.859375 0,-0.609375 -0.21875,-1.375 -0.921875,-1.375 -0.5,0 -1.03125,0.453125 -1.03125,1.453125 0,0.421875 0.0625,0.984375 0.28125,1.609375 -0.09375,0.078125 -0.671875,0.71875 -0.6875,0.734375 -0.1875,0.234375 -0.34375,0.578125 -0.34375,1.046875 0,0.75 0.46875,1.46875 1.21875,1.46875 0.53125,0 0.9375,-0.3125 1.234375,-0.703125 0.171875,0.1875 0.59375,0.703125 1.171875,0.703125 0.65625,0 0.953125,-0.671875 0.953125,-1.15625 C 4.859375,-1.375 4.59375,-1.375 4.578125,-1.375 4.3125,-1.375 4.296875,-1.109375 4.296875,-1.0625 4.25,-0.625 4.0625,-0.5 3.90625,-0.5 c -0.375,0 -0.75,-0.453125 -0.828125,-0.578125 0.203125,-0.34375 0.40625,-0.8125 0.5,-1.0625 z M 1.75,-3.625 C 1.59375,-4.140625 1.578125,-4.671875 1.578125,-4.75 c 0,-0.578125 0.265625,-0.84375 0.484375,-0.84375 0.34375,0 0.359375,0.671875 0.359375,0.765625 C 2.421875,-4.546875 2.25,-4.1875 1.75,-3.625 Z m -0.203125,1.109375 c 0.0625,0.15625 0.25,0.484375 0.390625,0.71875 C 2.15625,-1.40625 2.21875,-1.3125 2.375,-1.078125 2.015625,-0.546875 1.65625,-0.5 1.515625,-0.5 1.0625,-0.5 0.96875,-1.125 0.96875,-1.390625 0.96875,-1.875 1.078125,-2 1.546875,-2.515625 Z m 0,0"
transform="translate(206.99311,146.72)"
id="path10740" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
transform="translate(212.22347,146.72)"
id="path10742" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.234375,-3.671875 c 0,-0.359375 -0.296875,-0.625 -0.609375,-0.625 -0.375,0 -0.625,0.3125 -0.625,0.625 0,0.359375 0.296875,0.625 0.609375,0.625 0.375,0 0.625,-0.3125 0.625,-0.625 z M 2.65625,0 C 2.515625,0.53125 2.140625,0.734375 2,0.8125 1.9375,0.84375 1.796875,0.90625 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.21875,0 1.1875,-0.546875 1.1875,-1.65625 0,-0.65625 -0.3125,-0.984375 -0.6875,-0.984375 C 2.25,-1.25 2,-0.96875 2,-0.625 2,-0.34375 2.15625,0 2.65625,0 Z m 0,0"
transform="translate(217.45384,146.72)"
id="path10744" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10752">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.5625,-6.328125 c 0.078125,-0.15625 0.078125,-0.15625 0.078125,-0.234375 0,-0.1875 -0.140625,-0.359375 -0.34375,-0.359375 -0.21875,0 -0.296875,0.15625 -0.34375,0.28125 l -3.296875,6.875 c -0.0625,0.171875 -0.078125,0.171875 -0.078125,0.25 0,0.171875 0.15625,0.34375 0.34375,0.34375 0.21875,0 0.296875,-0.15625 0.359375,-0.28125 z m 0,0"
transform="translate(227.91457,146.72)"
id="path10748" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.5625,-6.328125 c 0.078125,-0.15625 0.078125,-0.15625 0.078125,-0.234375 0,-0.1875 -0.140625,-0.359375 -0.34375,-0.359375 -0.21875,0 -0.296875,0.15625 -0.34375,0.28125 l -3.296875,6.875 c -0.0625,0.171875 -0.078125,0.171875 -0.078125,0.25 0,0.171875 0.15625,0.34375 0.34375,0.34375 0.21875,0 0.296875,-0.15625 0.359375,-0.28125 z m 0,0"
transform="translate(233.14493,146.72)"
id="path10750" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10762">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0"
transform="translate(243.60566,146.72)"
id="path10754" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0"
transform="translate(248.83603,146.72)"
id="path10756" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.5625,-0.5 c 0,0.359375 0,0.5 0.40625,0.5 H 4.6875 c 0.171875,0 0.421875,0 0.421875,-0.3125 0,-0.296875 -0.265625,-0.296875 -0.40625,-0.296875 H 4.25 V -5.6875 c 0,-0.296875 -0.046875,-0.40625 -0.390625,-0.40625 H 3.125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.265625,0.296875 0.40625,0.296875 H 3.5625 V -3.90625 C 3.234375,-4.203125 2.828125,-4.359375 2.40625,-4.359375 c -1.09375,0 -2.046875,0.953125 -2.046875,2.21875 0,1.234375 0.890625,2.203125 1.953125,2.203125 0.5625,0 0.984375,-0.265625 1.25,-0.5625 z m 0,-2.140625 V -1.9375 c 0,0.5625 -0.4375,1.390625 -1.203125,1.390625 -0.71875,0 -1.3125,-0.703125 -1.3125,-1.59375 C 1.046875,-3.09375 1.75,-3.75 2.4375,-3.75 c 0.640625,0 1.125,0.5625 1.125,1.109375 z m 0,0"
transform="translate(254.06639,146.72)"
id="path10758" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0"
transform="translate(259.29676,146.72)"
id="path10760" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g10772">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0"
transform="translate(269.75749,146.72)"
id="path10764" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0"
transform="translate(274.98786,146.72)"
id="path10766" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0"
transform="translate(280.21822,146.72)"
id="path10768" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0"
transform="translate(285.44858,146.72)"
id="path10770" />
</g>
</g>
</g>
<g
transform="matrix(0.752941,0,0,0.752941,-104.90013,119.54718)"
ns1:version="0.9.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="pdf2svg"
ns1:text="\\begin{verbatim}\nptr_c = 2000, *ptr_c = \'a\'\n\\end{verbatim}\n"
ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
ns1:scale="2.13432162527"
ns1:alignment="middle center"
inkscapeversion="0.92.3"
ns1:jacobian_sqrt="0.752941"
id="g12037">
<g
id="g12035">
<g
style="fill:#000000;fill-opacity:1"
id="g11991">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0"
transform="translate(133.768,134.765)"
id="path11981" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0"
transform="translate(138.99836,134.765)"
id="path11983" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0"
transform="translate(144.22873,134.765)"
id="path11985" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.203125,0.953125 c 0.109375,0 0.46875,0 0.46875,-0.359375 C 4.671875,0.25 4.3125,0.25 4.203125,0.25 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.34375 0,0.359375 0.34375,0.359375 0.46875,0.359375 z m 0,0"
transform="translate(149.45909,134.765)"
id="path11987" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
transform="translate(154.68946,134.765)"
id="path11989" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g11995">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0"
transform="translate(165.15019,134.765)"
id="path11993" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g12007">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 0.671875,-0.578125 C 0.578125,-0.5 0.515625,-0.453125 0.515625,-0.3125 0.515625,0 0.765625,0 0.921875,0 H 4.3125 c 0.328125,0 0.390625,-0.09375 0.390625,-0.40625 v -0.265625 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.1875 -0.34375,0.46875 h -2.375 c 0.59375,-0.5 1.546875,-1.25 1.984375,-1.65625 0.625,-0.5625 1.078125,-1.1875 1.078125,-1.984375 0,-1.203125 -1,-1.953125 -2.21875,-1.953125 -1.171875,0 -1.96875,0.8125 -1.96875,1.671875 0,0.359375 0.28125,0.46875 0.453125,0.46875 0.203125,0 0.4375,-0.171875 0.4375,-0.4375 0,-0.125 -0.046875,-0.25 -0.140625,-0.328125 0.15625,-0.453125 0.625,-0.765625 1.171875,-0.765625 0.8125,0 1.578125,0.453125 1.578125,1.34375 0,0.6875 -0.484375,1.265625 -1.140625,1.8125 z m 0,0"
transform="translate(175.61092,134.765)"
id="path11997" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0"
transform="translate(180.84128,134.765)"
id="path11999" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0"
transform="translate(186.07165,134.765)"
id="path12001" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.71875,-3.046875 c 0,-1.84375 -1.015625,-3.15625 -2.109375,-3.15625 C 1.5,-6.203125 0.5,-4.859375 0.5,-3.046875 c 0,1.84375 1.015625,3.15625 2.109375,3.15625 1.125,0 2.109375,-1.328125 2.109375,-3.15625 z M 2.609375,-0.5 C 1.828125,-0.5 1.1875,-1.671875 1.1875,-3.15625 c 0,-1.453125 0.6875,-2.4375 1.421875,-2.4375 0.734375,0 1.421875,0.984375 1.421875,2.4375 0,1.484375 -0.640625,2.65625 -1.421875,2.65625 z m 0,0"
transform="translate(191.30201,134.765)"
id="path12003" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 2.8125,-0.03125 C 2.65625,0.59375 2.1875,0.75 2.078125,0.78125 1.96875,0.8125 1.796875,0.875 1.796875,1.0625 c 0,0.15625 0.140625,0.328125 0.3125,0.328125 0.328125,0 1.34375,-0.546875 1.34375,-1.640625 0,-0.609375 -0.390625,-1 -0.828125,-1 C 2.21875,-1.25 2,-0.953125 2,-0.625 2,-0.25 2.28125,0 2.609375,0 c 0.0625,0 0.125,-0.015625 0.203125,-0.03125 z m 0,0"
transform="translate(196.53238,134.765)"
id="path12005" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g12021">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.90625,-2.515625 c 0.609375,0.328125 0.25,0.140625 0.9375,0.546875 0.265625,0.171875 0.296875,0.171875 0.375,0.171875 0.203125,0 0.328125,-0.1875 0.328125,-0.34375 0,-0.15625 -0.125,-0.25 -0.140625,-0.265625 -0.25,-0.171875 -0.921875,-0.5 -1.1875,-0.640625 L 4.296875,-3.625 c 0.125,-0.078125 0.25,-0.140625 0.25,-0.328125 0,-0.046875 0,-0.328125 -0.40625,-0.328125 L 2.90625,-3.5625 C 2.9375,-3.828125 2.9375,-4.484375 2.9375,-4.78125 c 0,-0.078125 0,-0.40625 -0.328125,-0.40625 -0.328125,0 -0.328125,0.328125 -0.328125,0.40625 0,0.296875 0.015625,0.953125 0.03125,1.21875 L 1.234375,-4.203125 C 1.09375,-4.28125 1.078125,-4.28125 1,-4.28125 c -0.1875,0 -0.328125,0.171875 -0.328125,0.328125 0,0.1875 0.109375,0.25 0.25,0.3125 L 2,-3.046875 0.921875,-2.46875 c -0.109375,0.078125 -0.25,0.140625 -0.25,0.328125 0,0.046875 0,0.34375 0.40625,0.34375 L 2.3125,-2.515625 c -0.015625,0.25 -0.03125,0.90625 -0.03125,1.203125 0,0.09375 0,0.421875 0.328125,0.421875 0.328125,0 0.328125,-0.328125 0.328125,-0.421875 0,-0.296875 0,-0.953125 -0.03125,-1.203125 z m 0,0"
transform="translate(206.99311,134.765)"
id="path12009" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 1.65625,-2.625 c 0,-0.59375 0.578125,-1.125 1.203125,-1.125 0.734375,0 1.3125,0.734375 1.3125,1.59375 0,0.953125 -0.6875,1.609375 -1.390625,1.609375 -0.78125,0 -1.125,-0.875 -1.125,-1.359375 z m 0,2.171875 C 2.0625,-0.03125 2.5,0.0625 2.8125,0.0625 c 1.078125,0 2.046875,-0.953125 2.046875,-2.21875 0,-1.21875 -0.875,-2.203125 -1.9375,-2.203125 C 2.4375,-4.359375 2,-4.171875 1.65625,-3.875 1.65625,-4.15625 1.640625,-4.296875 1.25,-4.296875 H 0.53125 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 0.96875 v 5.296875 h -0.4375 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.390625,0.3125 h 1.59375 C 2.25,2.21875 2.5,2.21875 2.5,1.90625 2.5,1.609375 2.25,1.609375 2.09375,1.609375 h -0.4375 z m 0,0"
transform="translate(212.22347,134.765)"
id="path12011" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 2.21875,-3.6875 h 1.625 c 0.15625,0 0.40625,0 0.40625,-0.296875 0,-0.3125 -0.25,-0.3125 -0.40625,-0.3125 h -1.625 v -0.8125 c 0,-0.1875 0,-0.40625 -0.34375,-0.40625 -0.34375,0 -0.34375,0.203125 -0.34375,0.40625 v 0.8125 h -0.875 c -0.15625,0 -0.40625,0 -0.40625,0.3125 0,0.296875 0.25,0.296875 0.390625,0.296875 H 1.53125 V -1.25 c 0,0.953125 0.671875,1.3125 1.40625,1.3125 0.734375,0 1.53125,-0.4375 1.53125,-1.3125 0,-0.1875 0,-0.390625 -0.34375,-0.390625 -0.328125,0 -0.34375,0.203125 -0.34375,0.375 0,0.625 -0.578125,0.71875 -0.796875,0.71875 -0.765625,0 -0.765625,-0.515625 -0.765625,-0.765625 z m 0,0"
transform="translate(217.45384,134.765)"
id="path12013" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 2.21875,-1.859375 C 2.21875,-2.796875 2.796875,-3.75 4,-3.75 c 0.015625,0.234375 0.1875,0.4375 0.4375,0.4375 0.21875,0 0.421875,-0.15625 0.421875,-0.421875 0,-0.203125 -0.125,-0.625 -0.953125,-0.625 -0.5,0 -1.140625,0.1875 -1.6875,0.8125 v -0.34375 c 0,-0.3125 -0.0625,-0.40625 -0.40625,-0.40625 H 0.71875 c -0.15625,0 -0.40625,0 -0.40625,0.296875 0,0.3125 0.25,0.3125 0.40625,0.3125 h 0.8125 v 3.078125 h -0.8125 c -0.15625,0 -0.40625,0 -0.40625,0.296875 C 0.3125,0 0.5625,0 0.71875,0 H 3.3125 c 0.15625,0 0.421875,0 0.421875,-0.296875 0,-0.3125 -0.265625,-0.3125 -0.421875,-0.3125 H 2.21875 Z m 0,0"
transform="translate(222.6842,134.765)"
id="path12015" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.203125,0.953125 c 0.109375,0 0.46875,0 0.46875,-0.359375 C 4.671875,0.25 4.3125,0.25 4.203125,0.25 H 1.03125 c -0.125,0 -0.46875,0 -0.46875,0.34375 0,0.359375 0.34375,0.359375 0.46875,0.359375 z m 0,0"
transform="translate(227.91457,134.765)"
id="path12017" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.640625,-1.09375 c 0,-0.265625 -0.28125,-0.265625 -0.34375,-0.265625 -0.15625,0 -0.265625,0.015625 -0.328125,0.21875 -0.0625,0.125 -0.25,0.59375 -0.984375,0.59375 -0.84375,0 -1.5625,-0.703125 -1.5625,-1.609375 0,-0.46875 0.265625,-1.625 1.625,-1.625 0.203125,0 0.59375,0 0.59375,0.09375 0.015625,0.34375 0.203125,0.484375 0.4375,0.484375 0.234375,0 0.453125,-0.171875 0.453125,-0.453125 0,-0.734375 -1.046875,-0.734375 -1.484375,-0.734375 -1.71875,0 -2.3125,1.359375 -2.3125,2.234375 0,1.203125 0.9375,2.21875 2.1875,2.21875 1.390625,0 1.71875,-0.984375 1.71875,-1.15625 z m 0,0"
transform="translate(233.14493,134.765)"
id="path12019" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g12025">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.390625,-3.453125 c 0.125,0 0.453125,0 0.453125,-0.359375 0,-0.34375 -0.375,-0.34375 -0.5,-0.34375 H 0.890625 c -0.140625,0 -0.515625,0 -0.515625,0.34375 0,0.359375 0.328125,0.359375 0.453125,0.359375 z M 4.34375,-1.9375 c 0.125,0 0.5,0 0.5,-0.359375 0,-0.34375 -0.328125,-0.34375 -0.453125,-0.34375 h -3.5625 c -0.125,0 -0.453125,0 -0.453125,0.34375 0,0.359375 0.375,0.359375 0.515625,0.359375 z m 0,0"
transform="translate(243.60566,134.765)"
id="path12023" />
</g>
<g
style="fill:#000000;fill-opacity:1"
id="g12033">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.40625,-4.953125 c 0,-0.765625 -0.375,-1.140625 -0.78125,-1.140625 -0.328125,0 -0.515625,0.265625 -0.515625,0.5 0,0.265625 0.203125,0.5 0.5,0.5 0.078125,0 0.125,-0.015625 0.140625,-0.015625 0.046875,0 0.046875,0.09375 0.046875,0.15625 0,0.1875 -0.03125,0.90625 -0.828125,1.359375 -0.078125,0.0625 -0.171875,0.109375 -0.171875,0.265625 0,0.171875 0.171875,0.3125 0.3125,0.3125 0.234375,0 1.296875,-0.6875 1.296875,-1.9375 z m 0,0"
transform="translate(254.06639,134.765)"
id="path12027" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="M 3.65625,-0.3125 C 3.875,-0.015625 4.34375,0 4.71875,0 c 0.28125,0 0.5,0 0.5,-0.3125 0,-0.296875 -0.25,-0.296875 -0.390625,-0.296875 -0.421875,0 -0.515625,-0.046875 -0.59375,-0.078125 v -2.15625 c 0,-0.703125 -0.546875,-1.546875 -1.984375,-1.546875 -0.421875,0 -1.4375,0 -1.4375,0.734375 0,0.296875 0.203125,0.453125 0.4375,0.453125 0.15625,0 0.4375,-0.09375 0.4375,-0.453125 0,-0.078125 0.015625,-0.09375 0.21875,-0.109375 0.140625,-0.015625 0.265625,-0.015625 0.359375,-0.015625 0.75,0 1.265625,0.3125 1.265625,1.015625 -1.75,0.03125 -2.984375,0.53125 -2.984375,1.484375 0,0.6875 0.625,1.34375 1.640625,1.34375 0.375,0 1,-0.078125 1.46875,-0.375 z m -0.125,-1.859375 v 0.84375 c 0,0.21875 0,0.4375 -0.375,0.609375 -0.359375,0.171875 -0.8125,0.171875 -0.890625,0.171875 -0.625,0 -1.03125,-0.34375 -1.03125,-0.734375 0,-0.484375 0.859375,-0.859375 2.296875,-0.890625 z m 0,0"
transform="translate(259.29676,134.765)"
id="path12029" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 3.40625,-4.953125 c 0,-0.765625 -0.375,-1.140625 -0.78125,-1.140625 -0.328125,0 -0.515625,0.265625 -0.515625,0.5 0,0.265625 0.203125,0.5 0.5,0.5 0.078125,0 0.125,-0.015625 0.140625,-0.015625 0.046875,0 0.046875,0.09375 0.046875,0.15625 0,0.1875 -0.03125,0.90625 -0.828125,1.359375 -0.078125,0.0625 -0.171875,0.109375 -0.171875,0.265625 0,0.171875 0.171875,0.3125 0.3125,0.3125 0.234375,0 1.296875,-0.6875 1.296875,-1.9375 z m 0,0"
transform="translate(264.52712,134.765)"
id="path12031" />
</g>
</g>
</g>
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26863563;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-3-5-2-0"
width="30.002502"
height="9.260417"
x="62.330856"
y="180.07838" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26852617;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-6-3-8-6"
width="29.978052"
height="9.260417"
x="92.333359"
y="180.07838" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.27586746;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-3-6-7-1"
width="31.657867"
height="9.2550793"
x="0.60575145"
y="180.08105" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26885429;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-6-2-3-5"
width="30.06381"
height="9.2565832"
x="32.276848"
y="180.08031" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26858214;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-3-5-29-5"
width="29.990551"
height="9.260417"
x="182.27921"
y="180.07838" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.27634823;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-6-3-3-4"
width="31.749994"
height="9.260417"
x="212.26976"
y="180.07838" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26834354;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-3-6-9-7"
width="29.93729"
height="9.260417"
x="122.31141"
y="180.07838" />
<rect
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.26876098;stroke-miterlimit:4;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="rect821-6-2-4-6"
width="30.030514"
height="9.260417"
x="152.24872"
y="180.07838" />
<g
transform="matrix(0.75294101,0,0,0.75294101,-109.67521,85.65615)"
ns1:version="0.9.0"
ns1:texconverter="pdflatex"
ns1:pdfconverter="pdf2svg"
ns1:text="0000000000000000000000000000000000000000000000000000001111101000"
ns1:preamble="/home/malaspor/.config/inkscape/extensions/textext/default_packages.tex"
ns1:scale="2.13432154022"
ns1:alignment="middle center"
inkscapeversion="0.92.3"
ns1:jacobian_sqrt="0.752941"
id="g8402-9">
<g
id="g8400-1">
<g
style="fill:#000000;fill-opacity:1"
id="g8398-7">
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(148.712,134.765)"
id="path8270-7" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(153.6933,134.765)"
id="path8272-1" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(158.6746,134.765)"
id="path8274-1" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(163.6559,134.765)"
id="path8276-5" />
<path
inkscape:connector-curvature="0"
style="stroke:none;stroke-width:0"
d="m 4.578125,-3.1875 c 0,-0.796875 -0.046875,-1.59375 -0.390625,-2.328125 -0.453125,-0.96875 -1.28125,-1.125 -1.6875,-1.125 -0.609375,0 -1.328125,0.265625 -1.75,1.1875 -0.3125,0.6875 -0.359375,1.46875 -0.359375,2.265625 0,0.75 0.03125,1.640625 0.453125,2.40625 0.421875,0.796875 1.15625,1 1.640625,1 0.53125,0 1.296875,-0.203125 1.734375,-1.15625 0.3125,-0.6875 0.359375,-1.46875 0.359375,-2.25 z M 2.484375,0 C 2.09375,0 1.5,-0.25 1.328125,-1.203125 1.21875,-1.796875 1.21875,-2.71875 1.21875,-3.3125 c 0,-0.640625 0,-1.296875 0.078125,-1.828125 0.1875,-1.1875 0.9375,-1.28125 1.1875,-1.28125 0.328125,0 0.984375,0.1875 1.171875,1.171875 0.109375,0.5625 0.109375,1.3125 0.109375,1.9375 0,0.75 0,1.421875 -0.109375,2.0625 C 3.5,-0.296875 2.9375,0 2.484375,0 Z m 0,0"
transform="translate(168.6372,134.765)"
id="path8278-9" />