1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
version="1.1"
baseProfile="full"
id="body"
width="8in"
height="8in"
viewBox="0 0 1 1"
preserveAspectRatio="none"
sodipodi:version="0.32"
inkscape:version="0.46"
sodipodi:docname="ExtruderClampBracket_1.svg"
inkscape:output_extension="org.inkscape.output.svg.inkscape">
<metadata
id="metadata7428">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
</cc:Work>
</rdf:RDF>
</metadata>
<defs
id="defs7426"><inkscape:perspective
sodipodi:type="inkscape:persp3d"
inkscape:vp_x="0 : 360 : 1"
inkscape:vp_y="0 : 1000 : 0"
inkscape:vp_z="720 : 360 : 1"
inkscape:persp3d-origin="360 : 240 : 1"
id="perspective7430" />
</defs>
<sodipodi:namedview
inkscape:window-height="949"
inkscape:window-width="1272"
inkscape:pageshadow="2"
inkscape:pageopacity="0.0"
guidetolerance="10.0"
gridtolerance="10.0"
objecttolerance="10.0"
borderopacity="1.0"
bordercolor="#666666"
pagecolor="#ffffff"
id="base"
showgrid="true"
inkscape:document-units="mm"
inkscape:zoom="1.296403"
inkscape:cx="299.01485"
inkscape:cy="531.76203"
inkscape:window-x="0"
inkscape:window-y="0"
inkscape:current-layer="body">
<inkscape:grid
type="xygrid"
id="grid7432"
visible="true"
enabled="true"
units="mm"
spacingx="1mm"
spacingy="1mm"
empcolor="#ff0009"
empopacity="0.25098039" />
</sodipodi:namedview>
<title
id="title6179">SVG drawing</title>
<desc
id="desc6181">This was produced by version 4.2 of GNU libplot, a free library for exporting 2-D vector graphics.</desc>
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6191"
y2="0.26922524"
x2="0.78229034"
y1="0.32446811"
x1="0.78229034" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6193"
y2="0.32446811"
x2="0.81641507"
y1="0.26922524"
x1="0.81641507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6195"
y2="0.32446811"
x2="0.68479085"
y1="0.26922524"
x1="0.68479085" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6197"
y2="0.34234297"
x2="0.73029059"
y1="0.27572513"
x1="0.73029059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6199"
y2="0.27572513"
x2="0.7205407"
y1="0.34234297"
x1="0.7205407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6201"
y2="0.21072564"
x2="0.83428991"
y1="0.34234297"
x1="0.83428991" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6203"
d="M 0.86381047,0.29068872 L 0.86245632,0.29072932 L 0.86103445,0.29083091 L 0.8596803,0.29100692 L 0.85832614,0.29125067 L 0.85697198,0.29156213 L 0.85568553,0.29192775 L 0.85439907,0.29236108 L 0.85311266,0.29285537 L 0.85189391,0.29341057 L 0.85074286,0.29401994 L 0.84959182,0.29468349 L 0.84844081,0.29540117 L 0.84735747,0.29616627 L 0.84634187,0.29698554 L 0.84532623,0.2978522 L 0.84437833,0.29876624 L 0.8434981,0.29972093 L 0.84261791,0.30072303 L 0.84180543,0.30175895 L 0.84099294,0.30284229 L 0.84031586,0.30395945 L 0.83963878,0.30511049 L 0.83902941,0.30629539 L 0.83848774,0.30751414 L 0.83801377,0.3087667 L 0.83753984,0.31004641 L 0.83720128,0.31135314 L 0.83686276,0.31268024 L 0.83665961,0.31403439 L 0.8364565,0.31541562 L 0.83632109,0.31681041 L 0.83632109,0.31822553 C 0.83632109,0.33340562 0.84864392,0.34572845 0.86381047,0.34572845" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6205"
y2="0.29198858"
x2="0.93503922"
y1="0.34723818"
x1="0.93503922" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6207"
points="152,93.199 152,101.12 152,93.199 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6209"
y2="0.26922524"
x2="0.65066606"
y1="0.32446811"
x1="0.65066606" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6211"
y2="0.34234297"
x2="0.63116604"
y1="0.27247512"
x1="0.63116604" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6213"
d="M 0.56203639,0.30372927 L 0.56203639,0.30308604 L 0.56203639,0.30244956 L 0.56190094,0.30181991 L 0.56183324,0.30120374 L 0.56169783,0.30059437 L 0.56149472,0.29999853 L 0.56129161,0.29941626 L 0.56108846,0.29884073 L 0.56081764,0.29828553 L 0.56054679,0.29774386 L 0.56027597,0.29722251 L 0.55993745,0.29670794 L 0.55959889,0.29622044 L 0.55919263,0.29573973 L 0.5587864,0.29528608 L 0.55838014,0.29485275 L 0.55797392,0.29443295 L 0.55749995,0.29404026 L 0.55702598,0.29366785 L 0.55655206,0.29331576 L 0.55601038,0.29299077 L 0.55546871,0.29268611 L 0.55492704,0.2924085 L 0.55438537,0.29215797 L 0.55384374,0.29192775 L 0.55323436,0.29173142 L 0.55262499,0.29156213 L 0.55201561,0.29141997 L 0.55140624,0.29131163 L 0.55079686,0.29123039 L 0.55011979,0.29118297 L 0.54951041,0.29116943 C 0.54260421,0.29116943 0.53691676,0.29680275 0.53691676,0.30372927 C 0.53691676,0.31066253 0.54260421,0.31629585 0.54951041,0.31629585 C 0.55641661,0.31629585 0.56203639,0.31066253 0.56203639,0.30372927 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6215"
points="114.8,100.4 114.8,92.48 114.8,100.4 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6217"
points="116.48,118.16 116.48,93.199 116.48,118.16 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6219"
points="79.281,92.48 79.281,117.44 79.281,92.48 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6221"
d="M 0.3100953,0.30836048 L 0.3100953,0.30771047 L 0.31002756,0.30707402 L 0.30995985,0.30644433 L 0.30989215,0.30582821 L 0.30975674,0.30521883 L 0.30955363,0.30462299 L 0.30935052,0.30404072 L 0.30914736,0.30347195 L 0.30887655,0.30291674 L 0.30860569,0.30237511 L 0.30833488,0.30184697 L 0.30799636,0.30133915 L 0.3076578,0.30084491 L 0.30725154,0.30037094 L 0.30684531,0.29991729 L 0.30643905,0.29947718 L 0.30603283,0.29906417 L 0.30555886,0.29866469 L 0.30508489,0.29829232 L 0.30461096,0.29794022 L 0.30406929,0.29761524 L 0.30352762,0.29731053 L 0.30298595,0.29703293 L 0.30244428,0.29678243 L 0.30190261,0.296559 L 0.30129327,0.29636264 L 0.3006839,0.29619338 L 0.30007452,0.29605118 L 0.29946515,0.29594284 L 0.29885577,0.2958616 L 0.2982464,0.29581418 L 0.29756932,0.2957939 C 0.29066312,0.2957939 0.28504337,0.30142718 0.28504337,0.30836048 C 0.28504337,0.315287 0.29066312,0.32092027 0.29756932,0.32092027 C 0.30447552,0.32092027 0.3100953,0.315287 0.3100953,0.30836048 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6223"
points="116.48,93.199 152,93.199 116.48,93.199 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6225"
points="116.48,63.441 152.72,63.441 116.48,63.441 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6227"
points="152,88.398 116.48,88.398 152,88.398 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6229"
points="116.48,88.398 116.48,63.441 116.48,88.398 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6231"
y2="0.33097485"
x2="0.30291826"
y1="0.33097485"
x1="0.3630428" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6233"
d="M 0.34354299,0.35906013 C 0.32756391,0.35906013 0.314564,0.3720465 0.314564,0.3880188" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6235"
points="114.8,92.48 79.281,92.48 114.8,92.48 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6237"
y2="0.38947442"
x2="0.31429309"
y1="0.52111208"
x1="0.31429309" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6239"
d="M 0.24529884,0.41457386 L 0.24529884,0.41252909 L 0.24509573,0.4105046 L 0.24489257,0.408514 L 0.24448635,0.40655047 L 0.24408009,0.40462757 L 0.24353842,0.40273853 L 0.24292904,0.40089008 L 0.24218426,0.39908228 L 0.24137177,0.39731511 L 0.24049158,0.39559533 L 0.23955043,0.39392972 L 0.23851451,0.39231149 L 0.23740411,0.39075422 L 0.23621921,0.38924433 L 0.23496661,0.38780215 L 0.2336463,0.38642089 L 0.23226508,0.38510062 L 0.23081611,0.38384802 L 0.22931301,0.38266312 L 0.22774895,0.38155271 L 0.22613751,0.3805168 L 0.22446512,0.37955533 L 0.22275212,0.37867514 L 0.22098491,0.37787618 L 0.21917714,0.37716525 L 0.2173287,0.37653556 L 0.21543966,0.37600067 L 0.21350998,0.37555377 L 0.21155323,0.37520172 L 0.20956259,0.37495118 L 0.20753814,0.37479546 L 0.20549337,0.37474129 C 0.18351539,0.37474129 0.1656608,0.39259588 0.1656608,0.41457386 C 0.1656608,0.43655184 0.18351539,0.45440639 0.20549337,0.45440639 C 0.22747135,0.45440639 0.24529884,0.43655184 0.24529884,0.41457386 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6241"
y2="0.45123076"
x2="0.09980128"
y1="0.33097485"
x1="0.09980128" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6243"
y2="0.52111208"
x2="0.31429309"
y1="0.52111208"
x1="0.21030739" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6245"
y2="0.52111208"
x2="0.21030739"
y1="0.45448762"
x1="0.21030739" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6247"
y2="0.45448762"
x2="0.20054393"
y1="0.52111208"
x1="0.20054393" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6249"
y2="0.52111208"
x2="0.11117622"
y1="0.45123076"
x1="0.11117622" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6251"
y2="0.50323045"
x2="0.16478734"
y1="0.44798088"
x1="0.16478734" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6253"
y2="0.44798088"
x2="0.13066934"
y1="0.50323045"
x1="0.13066934" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6255"
y2="0.50323045"
x2="0.13066934"
y1="0.50323045"
x1="0.16478734" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6257"
y2="0.52111208"
x2="0.20054393"
y1="0.52111208"
x1="0.11117622" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6259"
y2="0.44798088"
x2="0.16478734"
y1="0.44798088"
x1="0.13066934" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6261"
y2="0.45123076"
x2="0.11117622"
y1="0.45123076"
x1="0.09980128" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6263"
y2="0.50323045"
x2="0.29641828"
y1="0.44798088"
x1="0.29641828" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6265"
y2="0.44798088"
x2="0.26229352"
y1="0.50323045"
x1="0.26229352" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6267"
y2="0.50323045"
x2="0.26229352"
y1="0.50323045"
x1="0.29641828" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6269"
y2="0.44798088"
x2="0.29641828"
y1="0.44798088"
x1="0.26229352" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6271"
y2="0.33583623"
x2="0.10466953"
y1="0.33583623"
x1="0.30291826" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6273"
y2="0.36998132"
x2="0.11117622"
y1="0.35371783"
x1="0.11117622" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6275"
y2="0.35371783"
x2="0.13878754"
y1="0.36998132"
x1="0.13878754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6277"
y2="0.39273116"
x2="0.11117622"
y1="0.39273116"
x1="0.13878754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6279"
y2="0.36998132"
x2="0.13878754"
y1="0.36998132"
x1="0.11117622" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6281"
y2="0.35371783"
x2="0.11117622"
y1="0.35371783"
x1="0.13878754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6283"
y2="0.40896755"
x2="0.13878754"
y1="0.40896755"
x1="0.11117622" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6285"
y2="0.40896755"
x2="0.11117622"
y1="0.39273116"
x1="0.11117622" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6287"
y2="0.39273116"
x2="0.13878754"
y1="0.40896755"
x1="0.13878754" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6289"
y2="0.37646097"
x2="0.21030739"
y1="0.35535645"
x1="0.21030739" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6291"
points="94.16,85.762 94.16,88.879 95.602,88.879 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6293"
y2="0.33097485"
x2="0.09980128"
y1="0.33097485"
x1="0.10466953" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6295"
y2="0.33097485"
x2="0.10466953"
y1="0.33583623"
x1="0.10466953" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6297"
y2="0.36998132"
x2="0.27041852"
y1="0.36998132"
x1="0.29804322" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6299"
y2="0.39273116"
x2="0.29804322"
y1="0.39273116"
x1="0.27041852" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6301"
y2="0.40896755"
x2="0.27041852"
y1="0.40896755"
x1="0.29804322" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6303"
y2="0.35371783"
x2="0.29804322"
y1="0.35371783"
x1="0.27041852" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6305"
y2="0.35371783"
x2="0.27041852"
y1="0.36998132"
x1="0.27041852" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6307"
y2="0.39273116"
x2="0.27041852"
y1="0.40896755"
x1="0.27041852" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6309"
y2="0.36998132"
x2="0.29804322"
y1="0.35371783"
x1="0.29804322" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6311"
y2="0.40896755"
x2="0.29804322"
y1="0.39273116"
x1="0.29804322" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6313"
y2="0.33583623"
x2="0.30291826"
y1="0.33097485"
x1="0.30291826" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6465"
d="M 0.39303746,0.4394091 L 0.39303746,0.43876587 L 0.39296975,0.43812943 L 0.39290205,0.43749974 L 0.39276664,0.43688361 L 0.39263119,0.43627424 L 0.39249579,0.4356784 L 0.39229267,0.43509613 L 0.39202186,0.4345206 L 0.39181871,0.4339654 L 0.39154789,0.43342373 L 0.39120933,0.43290238 L 0.39087081,0.43238781 L 0.39053225,0.43190031 L 0.39019373,0.4314196 L 0.38978747,0.43096595 L 0.38938125,0.43053262 L 0.38890728,0.43011282 L 0.38843331,0.42972009 L 0.38795938,0.42934772 L 0.38748542,0.42899563 L 0.38701145,0.42867064 L 0.38646978,0.42836594 L 0.38592815,0.42808833 L 0.38538648,0.42783784 L 0.3847771,0.42760762 L 0.38423543,0.42741125 L 0.38362606,0.42724199 L 0.38301668,0.4270998 L 0.38240731,0.4269915 L 0.38179797,0.42691022 L 0.38112089,0.42686284 L 0.38051151,0.4268493 C 0.37353757,0.4268493 0.36791783,0.43248258 0.36791783,0.4394091 C 0.36791783,0.44631533 0.37353757,0.45194861 0.38051151,0.45194861 C 0.38741771,0.45194861 0.39303746,0.44631533 0.39303746,0.4394091 z" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6541"
d="M 0.56203639,0.49976394 L 0.56203639,0.49912071 L 0.56203639,0.49848427 L 0.56190094,0.49785458 L 0.56183324,0.49723841 L 0.56169783,0.49662904 L 0.56149472,0.49603324 L 0.56129161,0.49545093 L 0.56108846,0.49488219 L 0.56081764,0.4943202 L 0.56054679,0.49377857 L 0.56027597,0.49325722 L 0.55993745,0.49274261 L 0.55959889,0.49225511 L 0.55919263,0.49178118 L 0.5587864,0.49132075 L 0.55838014,0.49088742 L 0.55797392,0.49046762 L 0.55749995,0.49007493 L 0.55702598,0.48970252 L 0.55655206,0.48935047 L 0.55601038,0.48902544 L 0.55546871,0.48872078 L 0.55492704,0.48844317 L 0.55438537,0.48819264 L 0.55384374,0.48796921 L 0.55323436,0.48776609 L 0.55262499,0.48759683 L 0.55201561,0.48746143 L 0.55140624,0.4873463 L 0.55079686,0.48726506 L 0.55011979,0.48721768 L 0.54951041,0.4872041 C 0.54260421,0.4872041 0.53691676,0.49283742 0.53691676,0.49976394 C 0.53691676,0.50667014 0.54260421,0.51230345 0.54951041,0.51230345 C 0.55641661,0.51230345 0.56203639,0.50667014 0.56203639,0.49976394 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6585"
y2="0.36022457"
x2="0.3630428"
y1="0.33097485"
x1="0.3630428" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6591"
y2="0.36022457"
x2="0.3630428"
y1="0.36022457"
x1="0.34354296" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6595"
y2="0.37323806"
x2="0.38741767"
y1="0.37971771"
x1="0.38091767" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6653"
d="M 0.56203639,0.3790543 L 0.56203639,0.37841107 L 0.56203639,0.37777463 L 0.56190094,0.37714493 L 0.56183324,0.37652877 L 0.56169783,0.3759194 L 0.56149472,0.37532359 L 0.56129161,0.37474129 L 0.56108846,0.37416576 L 0.56081764,0.37361056 L 0.56054679,0.37306893 L 0.56027597,0.37254758 L 0.55993745,0.37203297 L 0.55959889,0.37154547 L 0.55919263,0.37106476 L 0.5587864,0.37061111 L 0.55838014,0.37017778 L 0.55797392,0.36975798 L 0.55749995,0.36936529 L 0.55702598,0.36899288 L 0.55655206,0.36864083 L 0.55601038,0.3683158 L 0.55546871,0.36801113 L 0.55492704,0.36773353 L 0.55438537,0.367483 L 0.55384374,0.36725282 L 0.55323436,0.36705645 L 0.55262499,0.36688719 L 0.55201561,0.366745 L 0.55140624,0.36663666 L 0.55079686,0.36655542 L 0.55011979,0.366508 L 0.54951041,0.36649446 C 0.54260421,0.36649446 0.53691676,0.37212778 0.53691676,0.3790543 C 0.53691676,0.38596049 0.54260421,0.39159381 0.54951041,0.39159381 C 0.55641661,0.39159381 0.56203639,0.38596049 0.56203639,0.3790543 z" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6663"
points="199.76,67.039 199.76,62.719 186.08,62.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6665"
points="186.08,63.441 157.04,63.441 157.04,62.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6667"
points="152.72,63.441 152.72,62.719 153.68,62.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6669"
y2="0.52759171"
x2="0.59704131"
y1="0.53248024"
x1="0.59704131" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6671"
y2="0.53248024"
x2="0.59704131"
y1="0.53248024"
x1="0.62629104" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6673"
y2="0.52759171"
x2="0.82291502"
y1="0.53248024"
x1="0.82291502" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6675"
y2="0.34234297"
x2="0.83428991"
y1="0.34234297"
x1="0.73029059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6677"
y2="0.34234297"
x2="0.83428991"
y1="0.34234297"
x1="0.73029059" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6679"
d="M 0.83483152,0.47320888 C 0.83483152,0.48918796 0.84783143,0.50217433 0.86381047,0.50217433" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6681"
y2="0.36022457"
x2="0.81641507"
y1="0.41386276"
x1="0.81641507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6683"
y2="0.41386276"
x2="0.78229034"
y1="0.36022457"
x1="0.78229034" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6685"
y2="0.36022457"
x2="0.68479085"
y1="0.41386276"
x1="0.68479085" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6687"
d="M 0.76563402,0.44665385 L 0.76556632,0.44460908 L 0.76543091,0.44258459 L 0.76516009,0.440594 L 0.76482153,0.43863725 L 0.76434757,0.43670757 L 0.76380593,0.43481852 L 0.76319656,0.43297008 L 0.76245177,0.43116227 L 0.76170699,0.42939511 L 0.76082676,0.42768211 L 0.75981116,0.42600971 L 0.75879553,0.42439827 L 0.75771222,0.42283421 L 0.75649347,0.42133112 L 0.75527472,0.41988215 L 0.75392056,0.41850092 L 0.75256641,0.41718062 L 0.75107684,0.41592802 L 0.74958727,0.41474312 L 0.74802997,0.41363271 L 0.74640499,0.41259679 L 0.74478002,0.41163533 L 0.7430196,0.41075513 L 0.74125917,0.40995618 L 0.73949879,0.40924525 L 0.73760296,0.40861556 L 0.73570714,0.40808067 L 0.73381131,0.40763381 L 0.73184777,0.4072885 L 0.72981658,0.40703118 L 0.72785304,0.40687545 L 0.72575406,0.40682807 C 0.70374901,0.40682807 0.68594185,0.42467587 0.68594185,0.44665385 C 0.68594185,0.46863862 0.70374901,0.48648643 0.72575406,0.48648643 C 0.74775915,0.48648643 0.76563402,0.46863862 0.76563402,0.44665385 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6689"
y2="0.41386276"
x2="0.65066606"
y1="0.36022457"
x1="0.65066606" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6691"
points="152,80.719 152,88.398 152,80.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6693"
y2="0.34234297"
x2="0.63116604"
y1="0.41060603"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6695"
y2="0.45448762"
x2="0.63116604"
y1="0.4707239"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6697"
y2="0.4707239"
x2="0.66041589"
y1="0.45448762"
x1="0.66041589" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6699"
y2="0.4918555"
x2="0.66041589"
y1="0.4918555"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6701"
y2="0.4707239"
x2="0.63116604"
y1="0.4707239"
x1="0.66041589" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6703"
points="162.08,66.32 157.76,66.32 157.76,68.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6705"
y2="0.5080986"
x2="0.66041589"
y1="0.4918555"
x1="0.66041589" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6707"
y2="0.45448762"
x2="0.66041589"
y1="0.45448762"
x1="0.63116604" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6709"
points="153.68,80.719 152,80.719 157.76,80.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6711"
y2="0.41386276"
x2="0.68479085"
y1="0.41386276"
x1="0.65066606" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6713"
y2="0.45448762"
x2="0.81966507"
y1="0.4707239"
x1="0.81966507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6715"
y2="0.4707239"
x2="0.79041517"
y1="0.45448762"
x1="0.79041517" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6717"
y2="0.48696703"
x2="0.73029059"
y1="0.5080986"
x1="0.73029059" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6719"
points="170.96,69.441 170.96,66.32 172.4,66.32 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6721"
y2="0.4918555"
x2="0.81966507"
y1="0.5080986"
x1="0.81966507" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6723"
points="181.28,68.719 181.28,66.32 185.6,66.32 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6725"
y2="0.4918555"
x2="0.79041517"
y1="0.4918555"
x1="0.81966507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6727"
y2="0.4707239"
x2="0.81966507"
y1="0.4707239"
x1="0.79041517" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6729"
y2="0.41386276"
x2="0.81641507"
y1="0.41386276"
x1="0.78229034" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6731"
y2="0.45448762"
x2="0.79041517"
y1="0.45448762"
x1="0.81966507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6733"
y2="0.34234297"
x2="0.7205407"
y1="0.34234297"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6735"
y2="0.34234297"
x2="0.7205407"
y1="0.34234297"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6749"
y2="0.36022457"
x2="0.65066606"
y1="0.36022457"
x1="0.68479085" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6763"
y2="0.32446811"
x2="0.65066606"
y1="0.32446811"
x1="0.68479085" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6777"
y2="0.40735617"
x2="0.7205407"
y1="0.34234297"
x1="0.7205407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6779"
y2="0.34234297"
x2="0.73029059"
y1="0.40735617"
x1="0.73029059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6781"
y2="0.36022457"
x2="0.78229034"
y1="0.36022457"
x1="0.81641507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6795"
y2="0.32446811"
x2="0.78229034"
y1="0.32446811"
x1="0.81641507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6797"
y2="0.47398064"
x2="0.83428991"
y1="0.34234297"
x1="0.83428991" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6799"
y2="0.50323045"
x2="0.91553938"
y1="0.50323045"
x1="0.86353976" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6801"
y2="0.34723818"
x2="0.93503922"
y1="0.40084931"
x1="0.93503922" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6809"
d="M 0.86381047,0.34572845 L 0.86245632,0.34576908 L 0.86103445,0.34587064 L 0.8596803,0.34604669 L 0.85832614,0.34629044 L 0.85697198,0.3465951 L 0.85568553,0.34696751 L 0.85439907,0.34740084 L 0.85311266,0.34789513 L 0.85189391,0.34845033 L 0.85074286,0.34905971 L 0.84959182,0.34972322 L 0.84844081,0.35044093 L 0.84735747,0.35120603 L 0.84634187,0.35202531 L 0.84532623,0.35289197 L 0.84437833,0.35380601 L 0.8434981,0.35476069 L 0.84261791,0.35575601 L 0.84180543,0.35679871 L 0.84099294,0.35788202 L 0.84031586,0.35899921 L 0.83963878,0.36015026 L 0.83902941,0.36133511 L 0.83848774,0.36255386 L 0.83801377,0.36380647 L 0.83753984,0.36508613 L 0.83720128,0.36639291 L 0.83686276,0.36772 L 0.83665961,0.36907416 L 0.8364565,0.3704486 L 0.83632109,0.37185018 L 0.83632109,0.37326525 C 0.83632109,0.38844538 0.84864392,0.40076821 0.86381047,0.40076821" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6831"
y2="0.40084931"
x2="0.93503922"
y1="0.40084931"
x1="0.86353976" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6833"
d="M 0.87396666,0.37326525 L 0.87396666,0.37273715 L 0.87389895,0.37222255 L 0.87383125,0.37171477 L 0.87376355,0.3712137 L 0.87362814,0.37072624 L 0.87349273,0.37024548 L 0.87335728,0.36977152 L 0.87315417,0.36931112 L 0.87295106,0.36885747 L 0.87274795,0.36842414 L 0.87247709,0.3679976 L 0.87220628,0.36758455 L 0.87193542,0.36718508 L 0.87166461,0.36680592 L 0.87132605,0.36643355 L 0.87098753,0.36608145 L 0.87064897,0.36574293 L 0.87031045,0.36542469 L 0.86990419,0.36512677 L 0.86949796,0.36484238 L 0.8690917,0.36457835 L 0.86868547,0.3643346 L 0.86821151,0.36411117 L 0.86780524,0.36390802 L 0.86733132,0.36372523 L 0.86685735,0.36356272 L 0.86638338,0.36342731 L 0.86590941,0.36331222 L 0.86536778,0.3632242 L 0.86489382,0.36315649 L 0.86435214,0.3631226 L 0.86381047,0.36310907 C 0.85825843,0.36310907 0.85365429,0.36765904 0.85365429,0.37326525 C 0.85365429,0.3788444 0.85825843,0.38339437 0.86381047,0.38339437 C 0.86943026,0.38339437 0.87396666,0.3788444 0.87396666,0.37326525 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6867"
points="192.08,90.078 202.64,90.078 192.08,90.078 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6869"
d="M 0.87396666,0.31822553 L 0.87396666,0.31770418 L 0.87389895,0.31718282 L 0.87383125,0.31667501 L 0.87376355,0.31617397 L 0.87362814,0.31568647 L 0.87349273,0.31520576 L 0.87335728,0.31473179 L 0.87315417,0.31427136 L 0.87295106,0.3138245 L 0.87274795,0.31338438 L 0.87247709,0.31295784 L 0.87220628,0.31254483 L 0.87193542,0.31214535 L 0.87166461,0.31176619 L 0.87132605,0.31139378 L 0.87098753,0.31104169 L 0.87064897,0.31070317 L 0.87031045,0.31038493 L 0.86990419,0.31008701 L 0.86949796,0.30980266 L 0.8690917,0.30953859 L 0.86868547,0.30929484 L 0.86821151,0.30907141 L 0.86780524,0.3088683 L 0.86733132,0.30868547 L 0.86685735,0.30852295 L 0.86638338,0.30838754 L 0.86590941,0.30827246 L 0.86536778,0.30818443 L 0.86489382,0.30811673 L 0.86435214,0.30808288 L 0.86381047,0.30806934 C 0.85825843,0.30806934 0.85365429,0.31261928 0.85365429,0.31822553 C 0.85365429,0.32380463 0.85825843,0.32835461 0.86381047,0.32835461 C 0.86943026,0.32835461 0.87396666,0.32380463 0.87396666,0.31822553 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6887"
points="152.72,118.16 116.48,118.16 152.72,118.16 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6889"
points="79.281,117.44 115.52,117.44 79.281,117.44 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6891"
d="M 0.3100953,0.18763727 L 0.3100953,0.18702793 L 0.31002756,0.18635085 L 0.30995985,0.18574148 L 0.30989215,0.1851321 L 0.30975674,0.18452273 L 0.30955363,0.18391335 L 0.30935052,0.18337168 L 0.30914736,0.1827623 L 0.30887655,0.18222067 L 0.30860569,0.181679 L 0.30833488,0.18113733 L 0.30799636,0.18066336 L 0.3076578,0.18018944 L 0.30725154,0.17971547 L 0.30684531,0.1792415 L 0.30643905,0.17876753 L 0.30603283,0.17836131 L 0.30555886,0.17795505 L 0.30508489,0.17761653 L 0.30461096,0.17727797 L 0.30406929,0.17693945 L 0.30352762,0.17660089 L 0.30298595,0.17633007 L 0.30244428,0.17612696 L 0.30190261,0.17585611 L 0.30129327,0.17565299 L 0.3006839,0.17551759 L 0.30007452,0.17538214 L 0.29946515,0.17524673 L 0.29885577,0.17517903 L 0.2982464,0.17511132 L 0.29756932,0.17511132 C 0.29066312,0.17511132 0.28504337,0.18073107 0.28504337,0.18763727 C 0.28504337,0.19461121 0.29066312,0.20023095 0.29756932,0.20023095 C 0.30447552,0.20023095 0.3100953,0.19461121 0.3100953,0.18763727 z" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6893"
d="M 0.14111669,0.24803274 L 0.14109638,0.24735566 L 0.14104899,0.24674629 L 0.14096771,0.24606921 L 0.14085941,0.24545984 L 0.14071722,0.24485046 L 0.14054796,0.24430879 L 0.14035159,0.24369941 L 0.14012816,0.24315778 L 0.13987763,0.24254841 L 0.13960002,0.24200674 L 0.13929536,0.24153277 L 0.13897033,0.2409911 L 0.13861828,0.24051717 L 0.13824587,0.2400432 L 0.13784639,0.23956924 L 0.13743338,0.23916301 L 0.13699326,0.23875675 L 0.13653962,0.23835049 L 0.13606569,0.23794426 L 0.1355714,0.2376057 L 0.13506358,0.23726718 L 0.13453548,0.23699633 L 0.13399381,0.23672551 L 0.13343861,0.2364547 L 0.13286987,0.23625155 L 0.13228756,0.23604843 L 0.13169176,0.23584532 L 0.13108238,0.23570987 L 0.13046622,0.23564217 L 0.12983657,0.23550676 L 0.12920009,0.23550676 L 0.12855011,0.23543906 C 0.1216236,0.23543906 0.11599028,0.24112655 0.11599028,0.24803274 C 0.11599028,0.25493894 0.1216236,0.26055869 0.12855011,0.26055869 C 0.13548338,0.26055869 0.14111669,0.25493894 0.14111669,0.24803274 z" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6895"
d="M 0.56203639,0.18303316 L 0.56203639,0.18235608 L 0.56203639,0.18174671 L 0.56190094,0.18113733 L 0.56183324,0.18052796 L 0.56169783,0.17991858 L 0.56149472,0.17930921 L 0.56129161,0.17869983 L 0.56108846,0.1781582 L 0.56081764,0.17761653 L 0.56054679,0.17707486 L 0.56027597,0.17653319 L 0.55993745,0.17599151 L 0.55959889,0.17551759 L 0.55919263,0.17504362 L 0.5587864,0.17456965 L 0.55838014,0.17416343 L 0.55797392,0.17375717 L 0.55749995,0.1733509 L 0.55702598,0.17294468 L 0.55655206,0.17260612 L 0.55601038,0.1722676 L 0.55546871,0.17199674 L 0.55492704,0.17172593 L 0.55438537,0.17145511 L 0.55384374,0.17125196 L 0.55323436,0.17104885 L 0.55262499,0.17084574 L 0.55201561,0.17071029 L 0.55140624,0.17064259 L 0.55079686,0.17057488 L 0.55011979,0.17050718 L 0.54951041,0.17050718 C 0.54260421,0.17050718 0.53691676,0.17612696 0.53691676,0.18303316 C 0.53691676,0.18993936 0.54260421,0.1955591 0.54951041,0.1955591 C 0.55641661,0.1955591 0.56203639,0.18993936 0.56203639,0.18303316 z" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6897"
y2="0.27735013"
x2="0.35166794"
y1="0.15710093"
x1="0.35166794" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path6911"
d="M 0.39303746,0.24336089 L 0.39303746,0.24275152 L 0.39296975,0.24207444 L 0.39290205,0.24146507 L 0.39276664,0.24085569 L 0.39263119,0.24024632 L 0.39249579,0.23963694 L 0.39229267,0.23909531 L 0.39202186,0.23848593 L 0.39181871,0.23794426 L 0.39154789,0.23740259 L 0.39120933,0.23686092 L 0.39087081,0.23638695 L 0.39053225,0.23591303 L 0.39019373,0.23543906 L 0.38978747,0.23496509 L 0.38938125,0.23449116 L 0.38890728,0.2340849 L 0.38843331,0.23367868 L 0.38795938,0.23334012 L 0.38748542,0.2330016 L 0.38701145,0.23266304 L 0.38646978,0.23232452 L 0.38592815,0.23205366 L 0.38538648,0.23185055 L 0.3847771,0.2315797 L 0.38423543,0.23137658 L 0.38362606,0.23124118 L 0.38301668,0.23110577 L 0.38240731,0.23097036 L 0.38179797,0.23090262 L 0.38112089,0.23083491 L 0.38051151,0.23083491 C 0.37353757,0.23083491 0.36791783,0.2364547 0.36791783,0.24336089 C 0.36791783,0.2503348 0.37353757,0.25595454 0.38051151,0.25595454 C 0.38741771,0.25595454 0.39303746,0.2503348 0.39303746,0.24336089 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6915"
points="116.48,100.4 114.8,100.4 116.48,100.4 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6919"
y2="0.2822251"
x2="0.3776677"
y1="0.28873184"
x1="0.37116781" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7253"
points="115.52,118.16 116.48,118.16 115.52,118.16 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7255"
points="115.52,117.44 115.52,118.16 115.52,117.44 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7257"
y2="0.15222593"
x2="0.82291502"
y1="0.15222593"
x1="0.91553938" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7259"
d="M 0.86381047,0.18059566 C 0.84783143,0.18059566 0.83483152,0.19359557 0.83483152,0.20957465" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7261"
y2="0.15222593"
x2="0.82291502"
y1="0.15222593"
x1="0.91553938" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7263"
y2="0.19285065"
x2="0.81966507"
y1="0.17497578"
x1="0.81966507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7265"
y2="0.17497578"
x2="0.79041517"
y1="0.19285065"
x1="0.79041517" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7267"
y2="0.19772565"
x2="0.73029059"
y1="0.17660078"
x1="0.73029059" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7269"
y2="0.17660078"
x2="0.7205407"
y1="0.19772565"
x1="0.7205407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7271"
y2="0.19285065"
x2="0.63116604"
y1="0.17497578"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7273"
y2="0.17497578"
x2="0.66041589"
y1="0.19285065"
x1="0.66041589" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7275"
d="M 0.76563402,0.23611614 L 0.76556632,0.2340849 L 0.76543091,0.23205366 L 0.76516009,0.23009013 L 0.76482153,0.2281266 L 0.76434757,0.22616306 L 0.76380593,0.22426727 L 0.76319656,0.22243915 L 0.76245177,0.22061102 L 0.76170699,0.21885064 L 0.76082676,0.21715793 L 0.75981116,0.21546525 L 0.75879553,0.21384023 L 0.75771222,0.21228296 L 0.75649347,0.2107934 L 0.75527472,0.20937154 L 0.75392056,0.20794964 L 0.75256641,0.20666322 L 0.75107684,0.20537677 L 0.74958727,0.20422572 L 0.74802997,0.20307467 L 0.74640499,0.20205908 L 0.74478002,0.20111114 L 0.7430196,0.20023095 L 0.74125917,0.19941846 L 0.73949879,0.19874138 L 0.73760296,0.19806431 L 0.73570714,0.19752263 L 0.73381131,0.19711641 L 0.73184777,0.19677785 L 0.72981658,0.19650704 L 0.72785304,0.19637159 L 0.72575406,0.19630388 C 0.70374901,0.19630388 0.68594185,0.21417879 0.68594185,0.23611614 C 0.68594185,0.25812122 0.70374901,0.27592839 0.72575406,0.27592839 C 0.74775915,0.27592839 0.76563402,0.25812122 0.76563402,0.23611614 z" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7279"
points="153.68,101.12 152,101.12 157.76,101.12 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7281"
y2="0.26922524"
x2="0.68479085"
y1="0.26922524"
x1="0.65066606" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7283"
y2="0.21397552"
x2="0.63116604"
y1="0.21397552"
x1="0.66041589" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7285"
y2="0.19285065"
x2="0.66041589"
y1="0.19285065"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7287"
y2="0.23022538"
x2="0.66041589"
y1="0.23022538"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7289"
y2="0.23022538"
x2="0.63116604"
y1="0.21397552"
x1="0.63116604" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7291"
y2="0.21397552"
x2="0.66041589"
y1="0.23022538"
x1="0.66041589" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7293"
y2="0.26922524"
x2="0.81641507"
y1="0.26922524"
x1="0.78229034" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7295"
y2="0.21397552"
x2="0.81966507"
y1="0.21397552"
x1="0.79041517" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7297"
y2="0.19285065"
x2="0.79041517"
y1="0.19285065"
x1="0.81966507" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7299"
points="185.6,107.36 181.28,107.36 181.28,109.76 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7301"
y2="0.23022538"
x2="0.81966507"
y1="0.21397552"
x1="0.81966507" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7303"
y2="0.15710093"
x2="0.62629104"
y1="0.15710093"
x1="0.82291502" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7305"
y2="0.17497578"
x2="0.63116604"
y1="0.17497578"
x1="0.66041589" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7307"
y2="0.15222593"
x2="0.6035412"
y1="0.15222593"
x1="0.59704131" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7309"
y2="0.15222593"
x2="0.59704131"
y1="0.15222593"
x1="0.62629104" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7311"
y2="0.15222593"
x2="0.62629104"
y1="0.15710093"
x1="0.62629104" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7313"
y2="0.15710093"
x2="0.59704131"
y1="0.15222593"
x1="0.59704131" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7315"
y2="0.15222593"
x2="0.6035412"
y1="0.15222593"
x1="0.59704131" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7317"
y2="0.15222593"
x2="0.59704131"
y1="0.15710093"
x1="0.59704131" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7319"
y2="0.15222593"
x2="0.59704131"
y1="0.15222593"
x1="0.62629104" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7321"
y2="0.17660078"
x2="0.73029059"
y1="0.17660078"
x1="0.7205407" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7323"
y2="0.15710093"
x2="0.82291502"
y1="0.15222593"
x1="0.82291502" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7325"
y2="0.17497578"
x2="0.81966507"
y1="0.17497578"
x1="0.79041517" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7327"
y2="0.18147579"
x2="0.93503922"
y1="0.23672538"
x1="0.93503922" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7329"
d="M 0.86381047,0.18059566 L 0.86245632,0.18066336 L 0.86103445,0.18073107 L 0.8596803,0.18093422 L 0.85832614,0.18113733 L 0.85697198,0.18147585 L 0.85568553,0.18188211 L 0.85439907,0.18228838 L 0.85311266,0.1827623 L 0.85189391,0.18330398 L 0.85074286,0.18391335 L 0.84959182,0.18459043 L 0.84844081,0.18533521 L 0.84735747,0.18608 L 0.84634187,0.18689248 L 0.84532623,0.18777271 L 0.84437833,0.1886529 L 0.8434981,0.18966854 L 0.84261791,0.19061644 L 0.84180543,0.19169978 L 0.84099294,0.19278308 L 0.84031586,0.19386642 L 0.83963878,0.19501743 L 0.83902941,0.19623618 L 0.83848774,0.19745493 L 0.83801377,0.19867368 L 0.83753984,0.19996013 L 0.83720128,0.20124659 L 0.83686276,0.20260075 L 0.83665961,0.2039549 L 0.8364565,0.20530906 L 0.83632109,0.20673092 L 0.83632109,0.20815279 C 0.83632109,0.22331934 0.84864392,0.23564217 0.86381047,0.23564217" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7331"
y2="0.23672538"
x2="0.93503922"
y1="0.29198858"
x1="0.93503922" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7333"
d="M 0.86381047,0.23564217 L 0.86245632,0.23570987 L 0.86103445,0.23577762 L 0.8596803,0.23598073 L 0.85832614,0.23618384 L 0.85697198,0.2365224 L 0.85568553,0.23686092 L 0.85439907,0.23733489 L 0.85311266,0.23780885 L 0.85189391,0.23835049 L 0.85074286,0.23895986 L 0.84959182,0.23963694 L 0.84844081,0.24038172 L 0.84735747,0.24112655 L 0.84634187,0.24193903 L 0.84532623,0.24281922 L 0.84437833,0.24369941 L 0.8434981,0.24471505 L 0.84261791,0.24566295 L 0.84180543,0.24674629 L 0.84099294,0.24782959 L 0.84031586,0.24891293 L 0.83963878,0.25006398 L 0.83902941,0.25128273 L 0.83848774,0.25250144 L 0.83801377,0.25372019 L 0.83753984,0.25500665 L 0.83720128,0.2562931 L 0.83686276,0.25764726 L 0.83665961,0.25900142 L 0.8364565,0.26035557 L 0.83632109,0.26177744 L 0.83632109,0.2631993 C 0.83632109,0.27836589 0.84864392,0.29068872 0.86381047,0.29068872" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7355"
points="192.08,98.238 202.64,98.238 192.08,98.238 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7357"
d="M 0.87396666,0.2631993 L 0.87396666,0.26265763 L 0.87389895,0.26211599 L 0.87383125,0.26164203 L 0.87376355,0.26116806 L 0.87362814,0.26062639 L 0.87349273,0.26015246 L 0.87335728,0.25967849 L 0.87315417,0.25920453 L 0.87295106,0.2587983 L 0.87274795,0.25832434 L 0.87247709,0.25791807 L 0.87220628,0.25751185 L 0.87193542,0.25710559 L 0.87166461,0.25669932 L 0.87132605,0.2563608 L 0.87098753,0.25602224 L 0.87064897,0.25568372 L 0.87031045,0.2553452 L 0.86990419,0.25507435 L 0.86949796,0.25473583 L 0.8690917,0.25453268 L 0.86868547,0.25426186 L 0.86821151,0.25405875 L 0.86780524,0.2538556 L 0.86733132,0.25365249 L 0.86685735,0.25351708 L 0.86638338,0.25338167 L 0.86590941,0.25324622 L 0.86536778,0.25317852 L 0.86489382,0.25311082 L 0.86435214,0.25304311 L 0.86381047,0.25304311 C 0.85825843,0.25304311 0.85365429,0.25757955 0.85365429,0.2631993 C 0.85365429,0.26875134 0.85825843,0.27328778 0.86381047,0.27328778 C 0.86943026,0.27328778 0.87396666,0.26875134 0.87396666,0.2631993 z" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00218051;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7397"
points="192.08,106.4 202.64,106.4 192.08,106.4 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<path
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="path7399"
d="M 0.87396666,0.20815279 L 0.87396666,0.20761112 L 0.87389895,0.20713715 L 0.87383125,0.20659552 L 0.87376355,0.20612155 L 0.87362814,0.20557988 L 0.87349273,0.20510591 L 0.87335728,0.20463198 L 0.87315417,0.20422572 L 0.87295106,0.20375175 L 0.87274795,0.20327783 L 0.87247709,0.20287156 L 0.87220628,0.2024653 L 0.87193542,0.20205908 L 0.87166461,0.20172052 L 0.87132605,0.20131429 L 0.87098753,0.20097573 L 0.87064897,0.20063721 L 0.87031045,0.20029865 L 0.86990419,0.20002784 L 0.86949796,0.19975698 L 0.8690917,0.19948617 L 0.86868547,0.19921535 L 0.86821151,0.1990122 L 0.86780524,0.19880909 L 0.86733132,0.19860598 L 0.86685735,0.19847057 L 0.86638338,0.19833512 L 0.86590941,0.19819971 L 0.86536778,0.19813201 L 0.86489382,0.19806431 L 0.86435214,0.1979966 L 0.86381047,0.1979966 C 0.85825843,0.1979966 0.85365429,0.20253304 0.85365429,0.20815279 C 0.85365429,0.21370483 0.85825843,0.21830897 0.86381047,0.21830897 C 0.86943026,0.21830897 0.87396666,0.21370483 0.87396666,0.20815279 z" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6185"
points="200.72,97.039 201.68,97.039 200.96,96.078 200.96,97.52 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6187"
y2="0.30335674"
x2="0.91228938"
y1="0.29685012"
x1="0.91878939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6189"
y2="0.29685012"
x2="0.91228938"
y1="0.30335674"
x1="0.91878939" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6593"
points="119.36,86.48 119.6,86.719 120.08,86.719 120.32,86.48 120.32,86.238 120.08,86 119.6,86 119.36,85.762 119.36,85.281 120.32,85.281 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6597"
y2="0.37971771"
x2="0.38741767"
y1="0.37323806"
x1="0.38091767" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6737"
points="160.64,88.641 160.64,90.078 161.6,90.078 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6739"
y2="0.35210645"
x2="0.65391594"
y1="0.35210645"
x1="0.65066606" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6741"
y2="0.35696784"
x2="0.657166"
y1="0.35696784"
x1="0.65066606" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6743"
points="163.04,88.879 162.8,88.641 162.32,88.641 162.08,88.879 162.08,89.84 162.32,90.078 162.8,90.078 163.04,89.84 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6745"
points="163.52,89.84 163.76,90.078 163.76,88.641 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6747"
y2="0.35696784"
x2="0.6734159"
y1="0.35696784"
x1="0.6701659" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6751"
points="160.64,91.52 160.64,92.961 161.6,92.961 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6753"
y2="0.33261332"
x2="0.65391594"
y1="0.33261332"
x1="0.65066606" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6755"
y2="0.33747482"
x2="0.657166"
y1="0.33747482"
x1="0.65066606" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6757"
points="163.04,91.762 162.8,91.52 162.32,91.52 162.08,91.762 162.08,92.719 162.32,92.961 162.8,92.961 163.04,92.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6759"
points="163.52,92.719 163.76,92.961 163.76,91.52 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6761"
y2="0.33747482"
x2="0.6734159"
y1="0.33747482"
x1="0.6701659" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6765"
points="180.08,88.641 180.08,90.078 181.04,90.078 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6767"
y2="0.35210645"
x2="0.78554022"
y1="0.35210645"
x1="0.78229034" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6769"
y2="0.35696784"
x2="0.78879017"
y1="0.35696784"
x1="0.78229034" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6771"
points="182.48,88.879 182.24,88.641 181.76,88.641 181.52,88.879 181.52,89.84 181.76,90.078 182.24,90.078 182.48,89.84 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6773"
points="182.72,89.84 182.96,90.078 182.96,88.641 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6775"
y2="0.35696784"
x2="0.80341506"
y1="0.35696784"
x1="0.80016518" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6783"
points="179.84,91.52 179.84,92.961 180.8,92.961 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6785"
y2="0.33261332"
x2="0.78391534"
y1="0.33261332"
x1="0.78066522" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6787"
y2="0.33747482"
x2="0.78716522"
y1="0.33747482"
x1="0.78066522" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6789"
points="182.24,91.762 182,91.52 181.52,91.52 181.28,91.762 181.28,92.719 181.52,92.961 182,92.961 182.24,92.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6791"
points="182.72,92.719 182.96,92.961 182.96,91.52 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6793"
y2="0.33747482"
x2="0.80341506"
y1="0.33747482"
x1="0.80016518" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6803"
points="200.72,88.879 201.68,88.879 200.96,87.922 200.96,89.359 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6805"
y2="0.35861319"
x2="0.91228938"
y1="0.35210645"
x1="0.91878939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6807"
y2="0.35210645"
x2="0.91228938"
y1="0.35861319"
x1="0.91878939" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6811"
points="202.16,85.762 201.92,85.52 201.44,85.52 201.2,85.762 201.2,86 201.44,86.238 201.92,86.238 202.16,86.48 202.16,86.961 201.2,86.961 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6813"
y2="0.37484956"
x2="0.91553938"
y1="0.36834282"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6815"
y2="0.36834282"
x2="0.91553938"
y1="0.37484956"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6817"
y2="0.36673132"
x2="0.90578949"
y1="0.36673132"
x1="0.91228938" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6819"
points="197.84,85.52 197.84,86.719 197.6,86.961 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6821"
points="196.64,86.961 196.88,86.961 197.12,86.719 197.12,86.238 196.88,86 196.64,86 196.4,86.238 196.4,86.719 196.64,86.961 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6823"
y2="0.36834282"
x2="0.89116466"
y1="0.36998132"
x1="0.89278954" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6825"
y2="0.37484956"
x2="0.88791454"
y1="0.36834282"
x1="0.88791454" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6827"
points="195.68,86.238 195.44,86 195.2,86.238 195.2,86.48 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6829"
points="195.2,86.238 194.96,86 194.72,86.238 194.72,86.961 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6835"
points="201.92,84.32 201.92,82.879 200.96,82.879 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6837"
y2="0.39108595"
x2="0.92691439"
y1="0.39108595"
x1="0.93016422" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6839"
y2="0.38622445"
x2="0.92366439"
y1="0.38622445"
x1="0.93016422" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6841"
points="199.52,84.078 199.76,84.32 200.24,84.32 200.48,84.078 200.48,83.121 200.24,82.879 199.76,82.879 199.52,83.121 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6843"
points="199.04,83.121 198.8,82.879 198.8,84.32 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6845"
y2="0.38622445"
x2="0.90741438"
y1="0.38622445"
x1="0.91066438" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6847"
points="202.16,93.922 201.92,93.68 201.44,93.68 201.2,93.922 201.2,94.16 201.44,94.398 201.92,94.398 202.16,94.641 202.16,95.121 201.2,95.121 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6849"
y2="0.31959984"
x2="0.91553938"
y1="0.31309313"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6851"
y2="0.31309313"
x2="0.91553938"
y1="0.31959984"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6853"
y2="0.31148171"
x2="0.90578949"
y1="0.31148171"
x1="0.91228938" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6855"
points="197.84,93.68 197.84,94.879 197.6,95.121 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon6857"
points="196.64,95.121 196.88,95.121 197.12,94.879 197.12,94.398 196.88,94.16 196.64,94.16 196.4,94.398 196.4,94.879 196.64,95.121 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6859"
y2="0.31309313"
x2="0.89116466"
y1="0.31473172"
x1="0.89278954" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6861"
y2="0.31959984"
x2="0.88791454"
y1="0.31309313"
x1="0.88791454" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6863"
points="195.68,94.398 195.44,94.16 195.2,94.398 195.2,94.641 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6865"
points="195.2,94.398 194.96,94.16 194.72,94.398 194.72,95.121 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6871"
points="201.92,92.48 201.92,91.039 200.96,91.039 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6873"
y2="0.33583623"
x2="0.92691439"
y1="0.33583623"
x1="0.93016422" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6875"
y2="0.33097485"
x2="0.92366439"
y1="0.33097485"
x1="0.93016422" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6877"
points="199.52,92.238 199.76,92.48 200.24,92.48 200.48,92.238 200.48,91.281 200.24,91.039 199.76,91.039 199.52,91.281 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6879"
points="199.04,91.281 198.8,91.039 198.8,92.48 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6881"
y2="0.33097485"
x2="0.90741438"
y1="0.33097485"
x1="0.91066438" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6883"
y2="0.23835038"
x2="0.58566636"
y1="0.23510039"
x1="0.58566636" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6885"
y2="0.24647537"
x2="0.58566636"
y1="0.24322538"
x1="0.58566636" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6899"
y2="0.22535051"
x2="0.46704224"
y1="0.22535051"
x1="0.45404226" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6901"
y2="0.24160038"
x2="0.46216723"
y1="0.25135037"
x1="0.47029212" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6903"
y2="0.2286005"
x2="0.46379212"
y1="0.2286005"
x1="0.45891726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6905"
y2="0.23672538"
x2="0.46379212"
y1="0.23672538"
x1="0.46216723" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6907"
y2="0.24322538"
x2="0.44916725"
y1="0.23997538"
x1="0.44916725" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6909"
y2="0.23672538"
x2="0.42641741"
y1="0.23997538"
x1="0.42641741" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6913"
y2="0.25135037"
x2="0.45404226"
y1="0.22535051"
x1="0.45404226" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6917"
points="117.92,99.922 118.16,100.16 118.64,100.16 118.88,99.922 118.88,99.68 118.64,99.441 118.16,99.441 117.92,99.199 117.92,98.719 118.88,98.719 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6921"
y2="0.28873184"
x2="0.3776677"
y1="0.2822251"
x1="0.37116781" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6923"
points="129.68,104 128.96,104 128.48,104.24 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6925"
y2="0.24647537"
x2="0.44916725"
y1="0.24322538"
x1="0.44916725" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6927"
y2="0.25297526"
x2="0.44104227"
y1="0.25135037"
x1="0.44429237" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6929"
y2="0.25135037"
x2="0.44429237"
y1="0.24972525"
x1="0.44591725" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6931"
y2="0.24972525"
x2="0.44591725"
y1="0.24647537"
x1="0.44916725" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6933"
y2="0.24160038"
x2="0.45891726"
y1="0.24160038"
x1="0.46216723" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6935"
y2="0.25135037"
x2="0.45404226"
y1="0.25135037"
x1="0.45891726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6937"
y2="0.25135037"
x2="0.45891726"
y1="0.24160038"
x1="0.45891726" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline6939"
points="128,104.48 127.76,104.96 127.52,105.44 127.52,105.92 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6941"
y2="0.24972525"
x2="0.42966741"
y1="0.25135037"
x1="0.43291739" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6943"
y2="0.23997538"
x2="0.44916725"
y1="0.23672538"
x1="0.44916725" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6945"
y2="0.23672538"
x2="0.44916725"
y1="0.23347551"
x1="0.44754225" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6947"
y2="0.23672538"
x2="0.46216723"
y1="0.23672538"
x1="0.45891726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6949"
y2="0.2286005"
x2="0.45891726"
y1="0.23672538"
x1="0.45891726" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6951"
y2="0.23347551"
x2="0.42966741"
y1="0.23672538"
x1="0.42641741" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6953"
y2="0.23347551"
x2="0.42966741"
y1="0.22535051"
x1="0.43779227" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6955"
y2="0.23347551"
x2="0.44754225"
y1="0.22535051"
x1="0.43779227" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6957"
y2="0.23672538"
x2="0.58079147"
y1="0.24160038"
x1="0.58079147" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6959"
y2="0.25135037"
x2="0.53854173"
y1="0.23997538"
x1="0.53204173" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6961"
y2="0.25622526"
x2="0.56779146"
y1="0.23022538"
x1="0.56779146" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6963"
y2="0.25135037"
x2="0.54504162"
y1="0.23835038"
x1="0.53691673" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6965"
y2="0.24647537"
x2="0.54179174"
y1="0.23835038"
x1="0.53691673" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6967"
y2="0.23997538"
x2="0.54991663"
y1="0.24160038"
x1="0.54666662" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6969"
y2="0.23510039"
x2="0.56129158"
y1="0.24647537"
x1="0.56291646" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6971"
y2="0.23835038"
x2="0.57266647"
y1="0.24647537"
x1="0.57266647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6973"
y2="0.25785026"
x2="0.49954197"
y1="0.23185039"
x1="0.49954197" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6975"
y2="0.23997538"
x2="0.49466699"
y1="0.23672538"
x1="0.49466699" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6977"
y2="0.24160038"
x2="0.51254189"
y1="0.23835038"
x1="0.51091689" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6979"
y2="0.23835038"
x2="0.50441688"
y1="0.24810037"
x1="0.50441688" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6981"
y2="0.24322538"
x2="0.51741683"
y1="0.23835038"
x1="0.51741683" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6983"
y2="0.23997538"
x2="0.52716672"
y1="0.23997538"
x1="0.53204173" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6985"
y2="0.25135037"
x2="0.52229172"
y1="0.22535051"
x1="0.52229172" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6987"
y2="0.23997538"
x2="0.46866712"
y1="0.24647537"
x1="0.47354212" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6989"
y2="0.23997538"
x2="0.47841713"
y1="0.24322538"
x1="0.47841713" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6991"
y2="0.25135037"
x2="0.52716672"
y1="0.25135037"
x1="0.52229172" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6993"
y2="0.24322538"
x2="0.48329198"
y1="0.24322538"
x1="0.49466699" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6995"
y2="0.25135037"
x2="0.48979199"
y1="0.24972525"
x1="0.49466699" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6997"
y2="0.24810037"
x2="0.49141699"
y1="0.24810037"
x1="0.48816699" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line6999"
y2="0.24810037"
x2="0.4800421"
y1="0.24972525"
x1="0.48329198" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7001"
points="135.92,105.44 136.16,105.2 136.4,104.96 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7003"
y2="0.24972525"
x2="0.48329198"
y1="0.25135037"
x1="0.48654199" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7005"
y2="0.25135037"
x2="0.48654199"
y1="0.25135037"
x1="0.48979199" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7007"
y2="0.24810037"
x2="0.48816699"
y1="0.24647537"
x1="0.48654199" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7009"
y2="0.25135037"
x2="0.50441688"
y1="0.25785026"
x1="0.50441688" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7011"
y2="0.25785026"
x2="0.49954197"
y1="0.25785026"
x1="0.50441688" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7013"
y2="0.25135037"
x2="0.51091689"
y1="0.24972525"
x1="0.51254189" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7015"
y2="0.24322538"
x2="0.49466699"
y1="0.23997538"
x1="0.49466699" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7017"
points="137.12,104.72 137.6,104.96 137.6,104.48 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7019"
points="140.24,105.68 140,105.2 140,104.96 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7021"
y2="0.25135037"
x2="0.50441688"
y1="0.25135037"
x1="0.51091689" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7023"
y2="0.24810037"
x2="0.50929189"
y1="0.24810037"
x1="0.50604188" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7025"
y2="0.24810037"
x2="0.50441688"
y1="0.24810037"
x1="0.50604188" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7027"
y2="0.24647537"
x2="0.51091689"
y1="0.24810037"
x1="0.50929189" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7029"
y2="0.24647537"
x2="0.51741683"
y1="0.24322538"
x1="0.51741683" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7031"
y2="0.24972525"
x2="0.51254189"
y1="0.24810037"
x1="0.51579183" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7033"
y2="0.24810037"
x2="0.51579183"
y1="0.24647537"
x1="0.51741683" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7035"
y2="0.25135037"
x2="0.47029212"
y1="0.25135037"
x1="0.47679213" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7037"
y2="0.24322538"
x2="0.47841713"
y1="0.24647537"
x1="0.47841713" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7039"
y2="0.24647537"
x2="0.47354212"
y1="0.25135037"
x1="0.47679213" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7041"
y2="0.24647537"
x2="0.47841713"
y1="0.24810037"
x1="0.4800421" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7043"
y2="0.24810037"
x2="0.58404148"
y1="0.24647537"
x1="0.58566636" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7045"
y2="0.24160038"
x2="0.58079147"
y1="0.24485037"
x1="0.58079147" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7047"
y2="0.24485037"
x2="0.58079147"
y1="0.24647537"
x1="0.57916647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7049"
y2="0.24972525"
x2="0.57916647"
y1="0.24972525"
x1="0.58241647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7051"
y2="0.24972525"
x2="0.58241647"
y1="0.24810037"
x1="0.58404148" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7053"
y2="0.24647537"
x2="0.57916647"
y1="0.24647537"
x1="0.57754147" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7055"
y2="0.24972525"
x2="0.57429147"
y1="0.25622526"
x1="0.57266647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7057"
y2="0.25622526"
x2="0.57266647"
y1="0.25622526"
x1="0.56779146" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7059"
y2="0.24160038"
x2="0.55479157"
y1="0.24322538"
x1="0.55316669" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7061"
y2="0.25135037"
x2="0.55316669"
y1="0.24972525"
x1="0.55479157" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7063"
y2="0.24647537"
x2="0.55479157"
y1="0.24647537"
x1="0.55316669" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7065"
points="144.08,104.24 145.04,104.24 144.56,104.96 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7067"
points="145.28,105.68 145.28,105.2 145.28,105.2 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7069"
y2="0.24322538"
x2="0.55316669"
y1="0.24322538"
x1="0.55154157" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7071"
y2="0.24322538"
x2="0.55154157"
y1="0.24485037"
x1="0.55154157" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7073"
y2="0.24972525"
x2="0.54829174"
y1="0.24972525"
x1="0.54991663" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7075"
y2="0.24972525"
x2="0.54991663"
y1="0.25135037"
x1="0.55316669" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7077"
points="145.52,104.48 145.28,104.72 145.28,105.2 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7079"
y2="0.24485037"
x2="0.55154157"
y1="0.24647537"
x1="0.55316669" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7081"
y2="0.25135037"
x2="0.56129158"
y1="0.24972525"
x1="0.56454158" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7083"
y2="0.24647537"
x2="0.56454158"
y1="0.24647537"
x1="0.56291646" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7085"
y2="0.24160038"
x2="0.55641657"
y1="0.24485037"
x1="0.55641657" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7087"
y2="0.24160038"
x2="0.55641657"
y1="0.24160038"
x1="0.55479157" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7089"
y2="0.24972525"
x2="0.55804157"
y1="0.25135037"
x1="0.56129158" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7091"
points="146.48,104.48 146.72,104.72 146.96,104.48 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7093"
y2="0.24485037"
x2="0.55641657"
y1="0.24647537"
x1="0.55479157" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7095"
y2="0.24647537"
x2="0.56291646"
y1="0.24647537"
x1="0.56291646" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7097"
y2="0.24647537"
x2="0.57266647"
y1="0.24647537"
x1="0.57429147" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7099"
y2="0.24972525"
x2="0.56454158"
y1="0.24647537"
x1="0.56454158" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7101"
y2="0.25135037"
x2="0.52716672"
y1="0.23997538"
x1="0.52716672" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7103"
y2="0.24972525"
x2="0.57429147"
y1="0.24972525"
x1="0.57916647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7105"
y2="0.24647537"
x2="0.57754147"
y1="0.24647537"
x1="0.57429147" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7107"
y2="0.22535051"
x2="0.52229172"
y1="0.22535051"
x1="0.53529173" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7109"
y2="0.23347551"
x2="0.49141699"
y1="0.23185039"
x1="0.48979199" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7111"
y2="0.23672538"
x2="0.4849171"
y1="0.23835038"
x1="0.48329198" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7113"
y2="0.23672538"
x2="0.48979199"
y1="0.23997538"
x1="0.48979199" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7115"
points="135.92,106.16 135.92,105.92 136.88,105.92 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7117"
points="135.44,106.88 135.92,107.12 136.16,107.12 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7119"
y2="0.23510039"
x2="0.48654199"
y1="0.23672538"
x1="0.4849171" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7121"
y2="0.23672538"
x2="0.48979199"
y1="0.23510039"
x1="0.48816699" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7123"
y2="0.23510039"
x2="0.48816699"
y1="0.23510039"
x1="0.48654199" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7125"
y2="0.23185039"
x2="0.48979199"
y1="0.23185039"
x1="0.4849171" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7127"
y2="0.23185039"
x2="0.51254189"
y1="0.23185039"
x1="0.50929189" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7129"
y2="0.23672538"
x2="0.50766701"
y1="0.23835038"
x1="0.50441688" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7131"
y2="0.23835038"
x2="0.51091689"
y1="0.23672538"
x1="0.51091689" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7133"
y2="0.23185039"
x2="0.50441688"
y1="0.23185039"
x1="0.49954197" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7135"
y2="0.23672538"
x2="0.49466699"
y1="0.23510039"
x1="0.49304199" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7137"
y2="0.23510039"
x2="0.49304199"
y1="0.23347551"
x1="0.49141699" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7139"
y2="0.23185039"
x2="0.50766701"
y1="0.23510039"
x1="0.50441688" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7141"
y2="0.23510039"
x2="0.50441688"
y1="0.23185039"
x1="0.50441688" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7143"
y2="0.23672538"
x2="0.51091689"
y1="0.23510039"
x1="0.50929189" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7145"
y2="0.23510039"
x2="0.50929189"
y1="0.23672538"
x1="0.50766701" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7147"
y2="0.23185039"
x2="0.50929189"
y1="0.23185039"
x1="0.50766701" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7149"
y2="0.23835038"
x2="0.51741683"
y1="0.23510039"
x1="0.51741683" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7151"
points="140.24,107.12 140.48,106.88 140.96,106.64 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7153"
y2="0.2286005"
x2="0.47191712"
y1="0.2269755"
x1="0.47029212" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7155"
y2="0.2269755"
x2="0.47029212"
y1="0.22535051"
x1="0.46704224" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7157"
y2="0.23510039"
x2="0.47191712"
y1="0.23835038"
x1="0.47029212" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7159"
y2="0.23997538"
x2="0.46866712"
y1="0.23835038"
x1="0.47029212" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7161"
y2="0.23347551"
x2="0.46704224"
y1="0.23510039"
x1="0.46541712" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7163"
y2="0.23510039"
x2="0.46541712"
y1="0.23672538"
x1="0.46379212" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7165"
y2="0.23022538"
x2="0.46704224"
y1="0.2286005"
x1="0.46379212" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7167"
y2="0.23347551"
x2="0.46704224"
y1="0.23185039"
x1="0.46704224" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7169"
y2="0.23185039"
x2="0.46704224"
y1="0.23022538"
x1="0.46704224" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7171"
y2="0.23672538"
x2="0.47841713"
y1="0.23997538"
x1="0.47841713" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7173"
y2="0.23347551"
x2="0.47354212"
y1="0.23510039"
x1="0.47191712" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7175"
y2="0.23347551"
x2="0.47354212"
y1="0.23022538"
x1="0.47191712" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7177"
y2="0.23022538"
x2="0.47191712"
y1="0.2286005"
x1="0.47191712" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7179"
y2="0.23347551"
x2="0.4800421"
y1="0.23672538"
x1="0.47841713" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7181"
y2="0.2286005"
x2="0.54179174"
y1="0.2269755"
x1="0.54016674" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7183"
y2="0.2269755"
x2="0.54016674"
y1="0.22535051"
x1="0.53854173" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7185"
y2="0.22535051"
x2="0.53854173"
y1="0.22535051"
x1="0.53529173" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7187"
y2="0.2286005"
x2="0.53366673"
y1="0.2286005"
x1="0.52716672" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7189"
y2="0.23510039"
x2="0.57916647"
y1="0.23672538"
x1="0.58079147" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7191"
y2="0.23185039"
x2="0.58404148"
y1="0.23510039"
x1="0.58566636" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7193"
y2="0.23022538"
x2="0.58079147"
y1="0.23022538"
x1="0.57754147" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7195"
y2="0.23022538"
x2="0.58079147"
y1="0.23185039"
x1="0.58404148" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7197"
y2="0.23022538"
x2="0.57754147"
y1="0.23185039"
x1="0.57591659" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7199"
y2="0.23510039"
x2="0.57754147"
y1="0.23510039"
x1="0.57916647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7201"
y2="0.23510039"
x2="0.57591659"
y1="0.23835038"
x1="0.57266647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7203"
y2="0.23510039"
x2="0.53529173"
y1="0.23672538"
x1="0.53366673" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7205"
y2="0.23672538"
x2="0.53366673"
y1="0.23672538"
x1="0.53041685" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7207"
y2="0.23510039"
x2="0.55479157"
y1="0.23510039"
x1="0.55316669" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7209"
y2="0.23185039"
x2="0.55154157"
y1="0.23185039"
x1="0.55641657" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7211"
y2="0.23835038"
x2="0.55641657"
y1="0.23997538"
x1="0.55154157" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7213"
points="144.32,106.64 144.08,106.16 143.84,106.16 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7215"
y2="0.23997538"
x2="0.55154157"
y1="0.23997538"
x1="0.54991663" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7217"
points="143.6,107.6 143.6,107.36 143.6,106.88 143.6,106.64 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7219"
y2="0.23510039"
x2="0.54016674"
y1="0.23185039"
x1="0.54179174" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7221"
y2="0.23510039"
x2="0.55316669"
y1="0.23510039"
x1="0.54991663" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7223"
y2="0.23510039"
x2="0.54991663"
y1="0.23672538"
x1="0.54829174" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7225"
points="146,107.12 145.52,107.12 145.52,106.4 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7227"
points="146.72,106.4 146.72,106.16 146.72,106.16 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7229"
y2="0.23347551"
x2="0.56129158"
y1="0.23185039"
x1="0.55966657" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7231"
y2="0.23185039"
x2="0.55641657"
y1="0.23185039"
x1="0.55966657" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7233"
y2="0.23672538"
x2="0.55641657"
y1="0.23510039"
x1="0.55479157" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7235"
y2="0.23510039"
x2="0.56129158"
y1="0.23347551"
x1="0.56129158" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7237"
y2="0.23022538"
x2="0.57266647"
y1="0.23022538"
x1="0.56779146" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7239"
y2="0.23022538"
x2="0.57266647"
y1="0.23347551"
x1="0.57266647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7241"
y2="0.23672538"
x2="0.53041685"
y1="0.23672538"
x1="0.52716672" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7243"
y2="0.23185039"
x2="0.57591659"
y1="0.23347551"
x1="0.57266647" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7245"
y2="0.23510039"
x2="0.57754147"
y1="0.23510039"
x1="0.57591659" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7247"
y2="0.2286005"
x2="0.52716672"
y1="0.23672538"
x1="0.52716672" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7249"
y2="0.2286005"
x2="0.53529173"
y1="0.2286005"
x1="0.53366673" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7251"
y2="0.23185039"
x2="0.54179174"
y1="0.2286005"
x1="0.54179174" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7277"
y2="0.24322538"
x2="0.58566636"
y1="0.23835038"
x1="0.58566636" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7335"
points="202.16,102.08 201.92,101.84 201.44,101.84 201.2,102.08 201.2,102.32 201.44,102.56 201.92,102.56 202.16,102.8 202.16,103.28 201.2,103.28 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7337"
y2="0.26435024"
x2="0.91553938"
y1="0.25785026"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7339"
y2="0.25785026"
x2="0.91553938"
y1="0.26435024"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7341"
y2="0.25622526"
x2="0.90578949"
y1="0.25622526"
x1="0.91228938" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7343"
points="197.84,101.84 197.84,103.04 197.6,103.28 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7345"
points="196.64,103.28 196.88,103.28 197.12,103.04 197.12,102.56 196.88,102.32 196.64,102.32 196.4,102.56 196.4,103.04 196.64,103.28 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7347"
y2="0.25785026"
x2="0.89116466"
y1="0.25947526"
x1="0.89278954" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7349"
y2="0.26435024"
x2="0.88791454"
y1="0.25785026"
x1="0.88791454" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7351"
points="195.68,102.56 195.44,102.32 195.2,102.56 195.2,102.8 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7353"
points="195.2,102.56 194.96,102.32 194.72,102.56 194.72,103.28 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7359"
points="200.72,105.2 201.68,105.2 200.96,104.24 200.96,105.68 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7361"
y2="0.24810037"
x2="0.91228938"
y1="0.24160038"
x1="0.91878939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7363"
y2="0.24160038"
x2="0.91228938"
y1="0.24810037"
x1="0.91878939" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7365"
points="201.92,100.64 201.92,99.199 200.96,99.199 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7367"
y2="0.28058663"
x2="0.92691439"
y1="0.28058663"
x1="0.93016422" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7369"
y2="0.27572513"
x2="0.92366439"
y1="0.27572513"
x1="0.93016422" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7371"
points="199.52,100.4 199.76,100.64 200.24,100.64 200.48,100.4 200.48,99.441 200.24,99.199 199.76,99.199 199.52,99.441 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7373"
points="199.04,99.441 198.8,99.199 198.8,100.64 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7375"
y2="0.27572513"
x2="0.90741438"
y1="0.27572513"
x1="0.91066438" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7377"
points="202.16,110.24 201.92,110 201.44,110 201.2,110.24 201.2,110.48 201.44,110.72 201.92,110.72 202.16,110.96 202.16,111.44 201.2,111.44 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7379"
y2="0.20910053"
x2="0.91553938"
y1="0.20260064"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7381"
y2="0.20260064"
x2="0.91553938"
y1="0.20910053"
x1="0.92203939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7383"
y2="0.20097564"
x2="0.90578949"
y1="0.20097564"
x1="0.91228938" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7385"
points="197.84,110 197.84,111.2 197.6,111.44 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polygon
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polygon7387"
points="196.64,111.44 196.88,111.44 197.12,111.2 197.12,110.72 196.88,110.48 196.64,110.48 196.4,110.72 196.4,111.2 196.64,111.44 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7389"
y2="0.20260064"
x2="0.89116466"
y1="0.20422564"
x1="0.89278954" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7391"
y2="0.20910053"
x2="0.88791454"
y1="0.20260064"
x1="0.88791454" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7393"
points="195.68,110.72 195.44,110.48 195.2,110.72 195.2,110.96 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7395"
points="195.2,110.72 194.96,110.48 194.72,110.72 194.72,111.44 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7401"
points="200.72,113.36 201.68,113.36 200.96,112.4 200.96,113.84 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7403"
y2="0.19285065"
x2="0.91228938"
y1="0.18635078"
x1="0.91878939" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7405"
y2="0.18635078"
x2="0.91228938"
y1="0.19285065"
x1="0.91878939" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7407"
points="201.92,108.8 201.92,107.36 200.96,107.36 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7409"
y2="0.22535051"
x2="0.92691439"
y1="0.22535051"
x1="0.93016422" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7411"
y2="0.22047551"
x2="0.92366439"
y1="0.22047551"
x1="0.93016422" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7413"
points="199.52,108.56 199.76,108.8 200.24,108.8 200.48,108.56 200.48,107.6 200.24,107.36 199.76,107.36 199.52,107.6 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<polyline
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.02180511;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="polyline7415"
points="199.04,107.6 198.8,107.36 198.8,108.8 "
transform="matrix(6.77079e-3,0,0,-6.77079e-3,-0.4369935,0.9571375)" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#00ff00;stroke-width:0.00014765;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7417"
y2="0.22047551"
x2="0.90741438"
y1="0.22047551"
x1="0.91066438" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7419"
y2="0.18147579"
x2="0.91553938"
y1="0.18147579"
x1="0.86353976" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7421"
y2="0.18147579"
x2="0.86353976"
y1="0.18147579"
x1="0.93503922" />
<line
style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;letter-spacing:normal;word-spacing:normal;text-anchor:start;fill:none;fill-opacity:1;stroke:#0000ff;stroke-width:0.00001474;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:10.39644814;stroke-dasharray:none;stroke-dashoffset:0;stroke-opacity:1"
id="line7423"
y2="0.15222593"
x2="0.91553938"
y1="0.18147579"
x1="0.91553938" />
</svg>
|