aboutsummaryrefslogtreecommitdiff
path: root/tests/figs/plotting/mixed-model-fit-for-saem-object-with-mkin-transformations.svg
blob: a75094a5658479a9929078cfed62e4c56e41a3c8 (plain) (blame)
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
<?xml version='1.0' encoding='UTF-8' ?>
<svg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' viewBox='0 0 720.00 576.00'>
<defs>
  <style type='text/css'><![CDATA[
    line, polyline, polygon, path, rect, circle {
      fill: none;
      stroke: #000000;
      stroke-linecap: round;
      stroke-linejoin: round;
      stroke-miterlimit: 10.00;
    }
  ]]></style>
</defs>
<rect width='100%' height='100%' style='stroke: none; fill: #FFFFFF;'/>
<defs>
  <clipPath id='cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA='>
    <rect x='19.96' y='5.70' width='680.08' height='75.63' />
  </clipPath>
</defs>
<line x1='238.69' y1='29.26' x2='252.94' y2='29.26' style='stroke-width: 1.50;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='38.77' x2='252.94' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='48.27' x2='252.94' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='238.69' y1='57.77' x2='252.94' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='29.26' x2='313.78' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='38.77' x2='313.78' y2='38.77' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='48.27' x2='313.78' y2='48.27' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='299.52' y1='57.77' x2='313.78' y2='57.77' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='29.26' x2='374.61' y2='29.26' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='38.77' x2='374.61' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='48.27' x2='374.61' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='360.36' y1='57.77' x2='374.61' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='29.26' x2='435.45' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='38.77' x2='435.45' y2='38.77' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='48.27' x2='435.45' y2='48.27' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='421.19' y1='57.77' x2='435.45' y2='57.77' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='245.81' cy='38.77' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='245.81,45.50 248.21,49.66 243.41,49.66 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='243.29' y1='57.77' x2='248.33' y2='57.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='245.81' y1='60.29' x2='245.81' y2='55.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='31.04' x2='308.43' y2='27.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='27.48' x2='308.43' y2='31.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='304.13,38.77 306.65,36.25 309.17,38.77 306.65,41.29 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='306.65,51.04 309.05,46.89 304.25,46.89 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='304.87' y='55.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='59.56' x2='308.43' y2='55.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='304.87' y1='55.99' x2='308.43' y2='59.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='31.04' x2='369.27' y2='27.48' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='27.48' x2='369.27' y2='31.04' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='364.96' y1='29.26' x2='370.00' y2='29.26' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='31.78' x2='367.48' y2='26.74' style='stroke-width: 0.75;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='364.96' y1='38.77' x2='370.00' y2='38.77' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='41.29' x2='367.48' y2='36.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='364.96,38.77 367.48,36.25 370.00,38.77 367.48,41.29 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='367.48' cy='48.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='365.70' y1='48.27' x2='369.27' y2='48.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='367.48' y1='50.05' x2='367.48' y2='46.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='367.48,60.55 369.88,55.70 365.08,55.70 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='367.48,55.00 369.88,59.85 365.08,59.85 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='29.26' x2='430.10' y2='29.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='428.32' y1='31.04' x2='428.32' y2='27.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='426.54' y='27.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<circle cx='428.32' cy='38.77' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='40.55' x2='430.10' y2='36.98' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<line x1='426.54' y1='36.98' x2='430.10' y2='40.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='428.32,46.49 430.10,50.05 426.54,50.05 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<rect x='426.54' y='46.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<polygon points='426.54,59.56 430.10,59.56 430.10,55.99 426.54,55.99 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)' />
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='37.31px' lengthAdjust='spacingAndGlyphs'>Population</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>1</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='260.07' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>3</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>5</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>6</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='320.91' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>7</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>8</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>9</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='381.74' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.19px' lengthAdjust='spacingAndGlyphs'>11</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='31.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>12</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='41.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>13</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='50.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>14</text></g>
<g clip-path='url(#cpMTkuOTZ8NzAwLjA0fDgxLjM0fDUuNzA=)'><text x='442.58' y='60.49' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>15</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ='>
    <rect x='38.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<polyline points='50.12,124.70 52.44,128.56 55.81,133.99 57.09,136.01 61.50,142.74 66.38,149.83 67.19,150.96 72.87,158.69 78.56,165.97 82.64,170.92 84.25,172.81 89.94,179.25 95.63,185.30 101.32,191.00 107.01,196.36 112.70,201.40 115.16,203.49 118.39,206.14 124.08,210.60 129.77,214.80 135.46,218.75 141.15,222.46 146.83,225.96 152.52,229.25 158.21,232.34 163.90,235.25 169.59,237.99 175.28,240.57 180.97,243.00 186.66,245.28 189.50,246.37 192.35,247.43 198.04,249.45 203.73,251.35 209.42,253.14 215.11,254.83 220.79,256.41 226.48,257.91 232.17,259.31 237.86,260.63 243.55,261.88 249.24,263.05 254.93,264.15 259.20,264.94 260.62,265.19 266.31,266.17 272.00,267.09 277.69,267.96 283.38,268.77 289.07,269.54 294.76,270.26 300.44,270.94 306.13,271.58 311.82,272.19 317.51,272.75 323.20,273.29 328.89,273.79 ' style='stroke-width: 1.50;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='50.12' y1='288.88' x2='328.89' y2='288.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='50.12' y1='288.88' x2='50.12' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='96.58' y1='288.88' x2='96.58' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='143.04' y1='288.88' x2='143.04' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='189.50' y1='288.88' x2='189.50' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='235.97' y1='288.88' x2='235.97' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='282.43' y1='288.88' x2='282.43' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='328.89' y1='288.88' x2='328.89' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='47.92' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='92.19' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='138.65' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='185.11' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='231.58' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='275.84' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='322.30' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='38.97' y1='281.96' x2='38.97' y2='125.15' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='281.96' x2='34.21' y2='281.96' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='250.60' x2='34.21' y2='250.60' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='219.24' x2='34.21' y2='219.24' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='187.88' x2='34.21' y2='187.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='156.51' x2='34.21' y2='156.51' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='125.15' x2='34.21' y2='125.15' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,284.16) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,254.99) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,223.63) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,192.27) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,160.90) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,131.74) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<polygon points='38.97,288.88 340.04,288.88 340.04,102.24 38.97,102.24 ' style='stroke-width: 0.75; fill: none;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5'>
    <rect x='0.00' y='82.29' width='360.00' height='235.10' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5)'><text x='180.87' y='324.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='17.27px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8MzE3LjM5fDgyLjI5)'><text transform='translate(8.55,206.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='22.41px' lengthAdjust='spacingAndGlyphs'>parent</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ='>
    <rect x='38.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<circle cx='50.12' cy='117.47' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='130.95' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='129.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='142.40' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='156.51' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='131.42' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='160.59' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='166.24' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='174.55' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='183.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='203.87' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='200.58' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='231.16' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='231.00' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='246.99' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='247.46' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='253.27' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='254.68' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,126.60 52.44,132.10 55.81,139.49 57.09,142.13 61.50,150.58 66.38,158.89 67.19,160.16 72.87,168.47 78.56,175.70 82.64,180.31 84.25,182.02 89.94,187.58 95.63,192.49 101.32,196.85 107.01,200.74 112.70,204.24 115.16,205.64 118.39,207.39 124.08,210.26 129.77,212.88 135.46,215.29 141.15,217.52 146.83,219.59 152.52,221.52 158.21,223.33 163.90,225.03 169.59,226.65 175.28,228.18 180.97,229.64 186.66,231.03 189.50,231.70 192.35,232.36 198.04,233.65 203.73,234.88 209.42,236.07 215.11,237.22 220.79,238.33 226.48,239.40 232.17,240.44 237.86,241.46 243.55,242.44 249.24,243.39 254.93,244.32 259.20,245.00 260.62,245.23 266.31,246.10 272.00,246.96 277.69,247.80 283.38,248.61 289.07,249.40 294.76,250.18 300.44,250.93 306.13,251.67 311.82,252.38 317.51,253.08 323.20,253.77 328.89,254.43 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,120.34 52.52,124.50 47.72,124.50 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,123.01 52.52,127.16 47.72,127.16 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,130.38 54.84,134.53 50.04,134.53 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,128.65 54.84,132.81 50.04,132.81 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,137.43 59.49,141.59 54.69,141.59 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,141.51 59.49,145.67 54.69,145.67 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,141.67 68.78,145.82 63.98,145.82 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,151.23 68.78,155.39 63.98,155.39 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,169.27 85.04,173.42 80.24,173.42 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,161.43 85.04,165.58 80.24,165.58 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,202.51 117.56,206.67 112.76,206.67 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,205.49 117.56,209.65 112.76,209.65 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,232.46 191.90,236.62 187.10,236.62 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,228.23 191.90,232.39 187.10,232.39 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,238.42 261.60,242.58 256.80,242.58 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,240.46 261.60,244.62 256.80,244.62 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,248.46 331.29,252.61 326.49,252.61 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,251.44 331.29,255.59 326.49,255.59 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.46 52.44,129.87 55.81,135.94 57.09,138.15 61.50,145.40 66.38,152.79 67.19,153.95 72.87,161.68 78.56,168.69 82.64,173.31 84.25,175.05 89.94,180.83 95.63,186.09 101.32,190.89 107.01,195.27 112.70,199.28 115.16,200.91 118.39,202.95 124.08,206.33 129.77,209.44 135.46,212.30 141.15,214.95 146.83,217.41 152.52,219.69 158.21,221.81 163.90,223.80 169.59,225.65 175.28,227.39 180.97,229.02 186.66,230.55 189.50,231.29 192.35,232.00 198.04,233.38 203.73,234.68 209.42,235.91 215.11,237.09 220.79,238.21 226.48,239.28 232.17,240.31 237.86,241.29 243.55,242.24 249.24,243.15 254.93,244.02 259.20,244.66 260.62,244.87 266.31,245.69 272.00,246.47 277.69,247.24 283.38,247.98 289.07,248.70 294.76,249.39 300.44,250.07 306.13,250.73 311.82,251.37 317.51,252.00 323.20,252.61 328.89,253.20 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='141.15' x2='52.64' y2='141.15' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='143.67' x2='50.12' y2='138.63' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='127.97' x2='52.64' y2='127.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='130.49' x2='50.12' y2='125.45' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='126.25' x2='54.96' y2='126.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='128.77' x2='52.44' y2='123.73' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.19' x2='54.96' y2='127.19' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.71' x2='52.44' y2='124.67' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='129.86' x2='59.61' y2='129.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='132.38' x2='57.09' y2='127.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='140.68' x2='59.61' y2='140.68' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='143.20' x2='57.09' y2='138.16' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='150.55' x2='68.90' y2='150.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='153.07' x2='66.38' y2='148.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='152.12' x2='68.90' y2='152.12' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='154.64' x2='66.38' y2='149.60' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='164.04' x2='85.16' y2='164.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='166.56' x2='82.64' y2='161.52' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='175.49' x2='85.16' y2='175.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='178.01' x2='82.64' y2='172.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='193.84' x2='117.68' y2='193.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='196.36' x2='115.16' y2='191.31' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='196.81' x2='117.68' y2='196.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='199.33' x2='115.16' y2='194.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='234.29' x2='192.02' y2='234.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='236.81' x2='189.50' y2='231.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='237.43' x2='192.02' y2='237.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='239.95' x2='189.50' y2='234.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='252.95' x2='261.72' y2='252.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.47' x2='259.20' y2='250.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='252.95' x2='261.72' y2='252.95' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.47' x2='259.20' y2='250.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='267.54' x2='331.41' y2='267.54' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='270.06' x2='328.89' y2='265.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='263.77' x2='331.41' y2='263.77' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='266.29' x2='328.89' y2='261.25' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,126.43 52.44,130.05 55.81,135.11 57.09,136.98 61.50,143.20 66.38,149.71 67.19,150.75 72.87,157.81 78.56,164.40 82.64,168.87 84.25,170.57 89.94,176.34 95.63,181.75 101.32,186.82 107.01,191.57 112.70,196.02 115.16,197.87 118.39,200.21 124.08,204.14 129.77,207.83 135.46,211.31 141.15,214.59 146.83,217.67 152.52,220.58 158.21,223.32 163.90,225.91 169.59,228.36 175.28,230.68 180.97,232.87 186.66,234.94 189.50,235.94 192.35,236.91 198.04,238.77 203.73,240.54 209.42,242.21 215.11,243.81 220.79,245.32 226.48,246.76 232.17,248.14 237.86,249.44 243.55,250.69 249.24,251.88 254.93,253.01 259.20,253.83 260.62,254.09 266.31,255.13 272.00,256.11 277.69,257.06 283.38,257.96 289.07,258.83 294.76,259.65 300.44,260.45 306.13,261.21 311.82,261.94 317.51,262.64 323.20,263.31 328.89,263.96 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='124.58' x2='51.90' y2='121.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='121.02' x2='51.90' y2='124.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.17' x2='51.90' y2='119.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='119.61' x2='51.90' y2='123.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='121.92' x2='54.22' y2='118.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='118.35' x2='54.22' y2='121.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='142.14' x2='54.22' y2='138.58' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='138.58' x2='54.22' y2='142.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='143.71' x2='58.87' y2='140.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.15' x2='58.87' y2='143.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='143.87' x2='58.87' y2='140.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.30' x2='58.87' y2='143.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='148.57' x2='68.16' y2='145.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='145.01' x2='68.16' y2='148.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='164.10' x2='68.16' y2='160.53' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='160.53' x2='68.16' y2='164.10' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='176.49' x2='84.42' y2='172.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='172.92' x2='84.42' y2='176.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='167.55' x2='84.42' y2='163.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='163.98' x2='84.42' y2='167.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.83' x2='116.95' y2='199.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='199.27' x2='116.95' y2='202.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='205.18' x2='116.95' y2='201.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='201.62' x2='116.95' y2='205.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='240.31' x2='191.29' y2='236.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.74' x2='191.29' y2='240.31' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='240.15' x2='191.29' y2='236.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.59' x2='191.29' y2='240.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='258.50' x2='260.98' y2='254.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='254.93' x2='260.98' y2='258.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='258.97' x2='260.98' y2='255.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.41' x2='260.98' y2='258.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='269.32' x2='330.67' y2='265.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='265.75' x2='330.67' y2='269.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='270.57' x2='330.67' y2='267.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='267.01' x2='330.67' y2='270.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.45 52.44,129.51 55.81,135.16 57.09,137.25 61.50,144.15 66.38,151.32 67.19,152.46 72.87,160.17 78.56,167.31 82.64,172.11 84.25,173.93 89.94,180.09 95.63,185.81 101.32,191.13 107.01,196.08 112.70,200.70 115.16,202.60 118.39,205.00 124.08,209.02 129.77,212.78 135.46,216.29 141.15,219.58 146.83,222.66 152.52,225.55 158.21,228.26 163.90,230.81 169.59,233.21 175.28,235.46 180.97,237.59 186.66,239.59 189.50,240.55 192.35,241.48 198.04,243.27 203.73,244.96 209.42,246.56 215.11,248.07 220.79,249.51 226.48,250.87 232.17,252.16 237.86,253.38 243.55,254.55 249.24,255.66 254.93,256.72 259.20,257.47 260.62,257.72 266.31,258.68 272.00,259.59 277.69,260.47 283.38,261.30 289.07,262.09 294.76,262.85 300.44,263.58 306.13,264.28 311.82,264.94 317.51,265.58 323.20,266.19 328.89,266.78 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='47.60,113.86 50.12,111.34 52.64,113.86 50.12,116.38 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='47.60,113.39 50.12,110.87 52.64,113.39 50.12,115.91 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='49.92,133.31 52.44,130.79 54.96,133.31 52.44,135.83 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='49.92,145.85 52.44,143.33 54.96,145.85 52.44,148.37 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='54.57,144.91 57.09,142.39 59.61,144.91 57.09,147.43 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='54.57,144.44 57.09,141.92 59.61,144.44 57.09,146.96 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='63.86,164.67 66.38,162.15 68.90,164.67 66.38,167.19 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='63.86,168.75 66.38,166.22 68.90,168.75 66.38,171.27 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.12,193.21 82.64,190.69 85.16,193.21 82.64,195.73 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.12,190.86 82.64,188.34 85.16,190.86 82.64,193.38 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='112.64,207.95 115.16,205.43 117.68,207.95 115.16,210.47 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='112.64,206.69 115.16,204.17 117.68,206.69 115.16,209.21 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='186.98,239.00 189.50,236.48 192.02,239.00 189.50,241.52 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='186.98,234.29 189.50,231.77 192.02,234.29 189.50,236.81 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='256.68,251.70 259.20,249.18 261.72,251.70 259.20,254.22 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='256.68,250.60 259.20,248.08 261.72,250.60 259.20,253.12 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='326.37,260.48 328.89,257.96 331.41,260.48 328.89,263.00 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='326.37,261.26 328.89,258.74 331.41,261.26 328.89,263.78 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.27 52.44,131.52 55.81,142.08 57.09,145.71 61.50,156.80 66.38,166.95 67.19,168.44 72.87,177.75 78.56,185.29 82.64,189.85 84.25,191.49 89.94,196.67 95.63,201.06 101.32,204.84 107.01,208.16 112.70,211.12 115.16,212.31 118.39,213.79 124.08,216.23 129.77,218.49 135.46,220.59 141.15,222.57 146.83,224.45 152.52,226.23 158.21,227.94 163.90,229.58 169.59,231.15 175.28,232.66 180.97,234.13 186.66,235.54 189.50,236.23 192.35,236.91 198.04,238.23 203.73,239.51 209.42,240.76 215.11,241.96 220.79,243.13 226.48,244.27 232.17,245.37 237.86,246.44 243.55,247.47 249.24,248.48 254.93,249.45 259.20,250.17 260.62,250.40 266.31,251.32 272.00,252.22 277.69,253.08 283.38,253.93 289.07,254.74 294.76,255.54 300.44,256.31 306.13,257.05 311.82,257.78 317.51,258.49 323.20,259.17 328.89,259.83 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,123.69 52.52,119.53 47.72,119.53 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,123.06 52.52,118.90 47.72,118.90 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,138.12 54.84,133.96 50.04,133.96 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,143.45 54.84,139.29 50.04,139.29 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,137.80 59.49,133.64 54.69,133.64 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,144.39 59.49,140.23 54.69,140.23 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,151.29 68.78,147.13 63.98,147.13 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,150.66 68.78,146.50 63.98,146.50 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,172.14 85.04,167.99 80.24,167.99 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,186.88 85.04,182.73 80.24,182.73 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,191.27 117.56,187.12 112.76,187.12 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,204.29 117.56,200.13 112.76,200.13 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,228.75 191.90,224.60 187.10,224.60 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,230.79 191.90,226.63 187.10,226.63 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,240.36 261.60,236.20 256.80,236.20 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,241.30 261.60,237.14 256.80,237.14 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,250.08 331.29,245.92 326.49,245.92 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,253.37 331.29,249.22 326.49,249.22 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.48 52.44,129.93 55.81,136.02 57.09,138.22 61.50,145.41 66.38,152.68 67.19,153.81 72.87,161.33 78.56,168.07 82.64,172.48 84.25,174.14 89.94,179.60 95.63,184.53 101.32,188.99 107.01,193.04 112.70,196.72 115.16,198.22 118.39,200.09 124.08,203.16 129.77,205.99 135.46,208.59 141.15,210.99 146.83,213.21 152.52,215.28 158.21,217.21 163.90,219.02 169.59,220.71 175.28,222.30 180.97,223.80 186.66,225.23 189.50,225.91 192.35,226.58 198.04,227.86 203.73,229.09 209.42,230.26 215.11,231.38 220.79,232.46 226.48,233.50 232.17,234.50 237.86,235.46 243.55,236.40 249.24,237.30 254.93,238.18 259.20,238.82 260.62,239.03 266.31,239.86 272.00,240.67 277.69,241.45 283.38,242.22 289.07,242.96 294.76,243.69 300.44,244.40 306.13,245.10 311.82,245.78 317.51,246.44 323.20,247.09 328.89,247.73 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='130.27' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='133.83' x2='51.90' y2='130.27' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='130.27' x2='51.90' y2='133.83' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='115.22' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='118.78' x2='51.90' y2='115.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='115.22' x2='51.90' y2='118.78' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='127.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='130.70' x2='54.22' y2='127.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='127.13' x2='54.22' y2='130.70' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='137.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='140.89' x2='54.22' y2='137.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='137.33' x2='54.22' y2='140.89' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='159.59' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='163.16' x2='58.87' y2='159.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='159.59' x2='58.87' y2='163.16' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='142.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='146.53' x2='58.87' y2='142.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='142.97' x2='58.87' y2='146.53' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='173.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='177.43' x2='68.16' y2='173.86' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='173.86' x2='68.16' y2='177.43' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='154.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='157.98' x2='68.16' y2='154.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='154.42' x2='68.16' y2='157.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='186.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='190.44' x2='84.42' y2='186.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='186.88' x2='84.42' y2='190.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='191.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='195.15' x2='84.42' y2='191.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='191.58' x2='84.42' y2='195.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='225.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='229.49' x2='116.95' y2='225.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='225.92' x2='116.95' y2='229.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='224.20' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='227.76' x2='116.95' y2='224.20' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='224.20' x2='116.95' y2='227.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='255.41' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='258.97' x2='191.29' y2='255.41' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='255.41' x2='191.29' y2='258.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='255.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='259.44' x2='191.29' y2='255.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='255.88' x2='191.29' y2='259.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='264.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='267.59' x2='260.98' y2='264.03' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='264.03' x2='260.98' y2='267.59' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='265.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='268.85' x2='260.98' y2='265.28' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='265.28' x2='260.98' y2='268.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='270.62' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='274.18' x2='330.67' y2='270.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='270.62' x2='330.67' y2='274.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='267.95' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='271.51' x2='330.67' y2='267.95' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='267.95' x2='330.67' y2='271.51' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.83 52.44,133.03 55.81,142.67 57.09,146.10 61.50,157.07 66.38,167.79 67.19,169.43 72.87,180.09 78.56,189.30 82.64,195.14 84.25,197.30 89.94,204.27 95.63,210.38 101.32,215.76 107.01,220.51 112.70,224.73 115.16,226.42 118.39,228.50 124.08,231.89 129.77,234.94 135.46,237.70 141.15,240.22 146.83,242.52 152.52,244.63 158.21,246.58 163.90,248.38 169.59,250.05 175.28,251.61 180.97,253.07 186.66,254.43 189.50,255.09 192.35,255.72 198.04,256.92 203.73,258.06 209.42,259.14 215.11,260.16 220.79,261.13 226.48,262.05 232.17,262.92 237.86,263.75 243.55,264.54 249.24,265.29 254.93,266.01 259.20,266.52 260.62,266.69 266.31,267.35 272.00,267.97 277.69,268.57 283.38,269.14 289.07,269.68 294.76,270.20 300.44,270.70 306.13,271.18 311.82,271.63 317.51,272.07 323.20,272.49 328.89,272.89 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='131.48' x2='51.90' y2='127.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='127.92' x2='51.90' y2='131.48' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='129.70' x2='52.64' y2='129.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='132.22' x2='50.12' y2='127.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='115.17' x2='51.90' y2='111.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='111.61' x2='51.90' y2='115.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='113.39' x2='52.64' y2='113.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='115.91' x2='50.12' y2='110.87' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='129.76' x2='54.22' y2='126.19' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='126.19' x2='54.22' y2='129.76' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.97' x2='54.96' y2='127.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='130.49' x2='52.44' y2='125.45' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='145.59' x2='54.22' y2='142.03' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='142.03' x2='54.22' y2='145.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='143.81' x2='54.96' y2='143.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='146.33' x2='52.44' y2='141.29' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='149.36' x2='58.87' y2='145.79' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='145.79' x2='58.87' y2='149.36' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='147.58' x2='59.61' y2='147.58' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='150.10' x2='57.09' y2='145.06' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='165.51' x2='58.87' y2='161.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='161.95' x2='58.87' y2='165.51' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='163.73' x2='59.61' y2='163.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='166.25' x2='57.09' y2='161.21' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='173.98' x2='68.16' y2='170.41' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='170.41' x2='68.16' y2='173.98' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='172.19' x2='68.90' y2='172.19' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='174.72' x2='66.38' y2='169.67' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='179.15' x2='68.16' y2='175.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='175.59' x2='68.16' y2='179.15' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='177.37' x2='68.90' y2='177.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='179.89' x2='66.38' y2='174.85' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='209.73' x2='84.42' y2='206.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='206.17' x2='84.42' y2='209.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='207.95' x2='85.16' y2='207.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='210.47' x2='82.64' y2='205.43' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='204.24' x2='84.42' y2='200.68' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='200.68' x2='84.42' y2='204.24' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='202.46' x2='85.16' y2='202.46' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='204.98' x2='82.64' y2='199.94' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='228.39' x2='116.95' y2='224.83' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='224.83' x2='116.95' y2='228.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='226.61' x2='117.68' y2='226.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='229.13' x2='115.16' y2='224.09' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='225.72' x2='116.95' y2='222.16' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='222.16' x2='116.95' y2='225.72' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='223.94' x2='117.68' y2='223.94' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='226.46' x2='115.16' y2='221.42' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='247.05' x2='191.29' y2='243.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='243.49' x2='191.29' y2='247.05' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='245.27' x2='192.02' y2='245.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='247.79' x2='189.50' y2='242.75' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='246.11' x2='191.29' y2='242.55' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='242.55' x2='191.29' y2='246.11' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='244.33' x2='192.02' y2='244.33' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='246.85' x2='189.50' y2='241.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.52' x2='260.98' y2='251.96' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='251.96' x2='260.98' y2='255.52' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='253.74' x2='261.72' y2='253.74' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.26' x2='259.20' y2='251.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='255.83' x2='260.98' y2='252.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='252.27' x2='260.98' y2='255.83' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='254.05' x2='261.72' y2='254.05' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.57' x2='259.20' y2='251.53' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='263.67' x2='330.67' y2='260.11' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.11' x2='330.67' y2='263.67' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='261.89' x2='331.41' y2='261.89' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='264.41' x2='328.89' y2='259.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='262.73' x2='330.67' y2='259.17' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.17' x2='330.67' y2='262.73' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='260.95' x2='331.41' y2='260.95' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.47' x2='328.89' y2='258.43' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,124.59 52.44,134.65 55.81,147.47 57.09,151.86 61.50,165.21 66.38,177.29 67.19,179.05 72.87,189.90 78.56,198.49 82.64,203.55 84.25,205.35 89.94,210.89 95.63,215.42 101.32,219.17 107.01,222.33 112.70,225.03 115.16,226.09 118.39,227.38 124.08,229.44 129.77,231.29 135.46,232.96 141.15,234.50 146.83,235.93 152.52,237.26 158.21,238.52 163.90,239.72 169.59,240.86 175.28,241.96 180.97,243.01 186.66,244.03 189.50,244.52 192.35,245.01 198.04,245.96 203.73,246.89 209.42,247.78 215.11,248.65 220.79,249.50 226.48,250.33 232.17,251.13 237.86,251.91 243.55,252.67 249.24,253.41 254.93,254.13 259.20,254.66 260.62,254.84 266.31,255.52 272.00,256.19 277.69,256.84 283.38,257.48 289.07,258.10 294.76,258.70 300.44,259.29 306.13,259.86 311.82,260.42 317.51,260.96 323.20,261.49 328.89,262.01 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='109.16' x2='52.64' y2='109.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='111.68' x2='50.12' y2='106.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='47.60,109.16 50.12,106.64 52.64,109.16 50.12,111.68 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='47.60' y1='139.11' x2='52.64' y2='139.11' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='141.63' x2='50.12' y2='136.59' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='47.60,139.11 50.12,136.59 52.64,139.11 50.12,141.63 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='127.19' x2='54.96' y2='127.19' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.71' x2='52.44' y2='124.67' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='49.92,127.19 52.44,124.67 54.96,127.19 52.44,129.71 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='49.92' y1='118.25' x2='54.96' y2='118.25' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='120.77' x2='52.44' y2='115.73' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='49.92,118.25 52.44,115.73 54.96,118.25 52.44,120.77 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='149.61' x2='59.61' y2='149.61' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='152.13' x2='57.09' y2='147.09' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='54.57,149.61 57.09,147.09 59.61,149.61 57.09,152.13 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='54.57' y1='140.52' x2='59.61' y2='140.52' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='143.04' x2='57.09' y2='138.00' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='54.57,140.52 57.09,138.00 59.61,140.52 57.09,143.04 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='158.55' x2='68.90' y2='158.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='161.07' x2='66.38' y2='156.03' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='63.86,158.55 66.38,156.03 68.90,158.55 66.38,161.07 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='63.86' y1='164.98' x2='68.90' y2='164.98' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='167.50' x2='66.38' y2='162.46' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='63.86,164.98 66.38,162.46 68.90,164.98 66.38,167.50 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='192.27' x2='85.16' y2='192.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='194.79' x2='82.64' y2='189.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.12,192.27 82.64,189.75 85.16,192.27 82.64,194.79 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.12' y1='183.80' x2='85.16' y2='183.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='186.32' x2='82.64' y2='181.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.12,183.80 82.64,181.28 85.16,183.80 82.64,186.32 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='215.32' x2='117.68' y2='215.32' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='217.84' x2='115.16' y2='212.80' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='112.64,215.32 115.16,212.80 117.68,215.32 115.16,217.84 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='112.64' y1='211.08' x2='117.68' y2='211.08' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='213.60' x2='115.16' y2='208.56' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='112.64,211.08 115.16,208.56 117.68,211.08 115.16,213.60 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='244.17' x2='192.02' y2='244.17' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='246.69' x2='189.50' y2='241.65' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='186.98,244.17 189.50,241.65 192.02,244.17 189.50,246.69 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='186.98' y1='242.76' x2='192.02' y2='242.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='245.28' x2='189.50' y2='240.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='186.98,242.76 189.50,240.24 192.02,242.76 189.50,245.28 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='253.74' x2='261.72' y2='253.74' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='256.26' x2='259.20' y2='251.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='256.68,253.74 259.20,251.22 261.72,253.74 259.20,256.26 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='256.68' y1='258.28' x2='261.72' y2='258.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='260.80' x2='259.20' y2='255.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='256.68,258.28 259.20,255.76 261.72,258.28 259.20,260.80 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='268.16' x2='331.41' y2='268.16' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='270.68' x2='328.89' y2='265.64' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='326.37,268.16 328.89,265.64 331.41,268.16 328.89,270.68 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='326.37' y1='262.36' x2='331.41' y2='262.36' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='264.88' x2='328.89' y2='259.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='326.37,262.36 328.89,259.84 331.41,262.36 328.89,264.88 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.38 52.44,129.69 55.81,138.21 57.09,141.26 61.50,151.05 66.38,160.72 67.19,162.21 72.87,171.93 78.56,180.41 82.64,185.85 84.25,187.86 89.94,194.41 95.63,200.19 101.32,205.33 107.01,209.90 112.70,213.99 115.16,215.63 118.39,217.67 124.08,220.98 129.77,224.00 135.46,226.74 141.15,229.25 146.83,231.56 152.52,233.69 158.21,235.67 163.90,237.51 169.59,239.23 175.28,240.84 180.97,242.36 186.66,243.79 189.50,244.47 192.35,245.14 198.04,246.43 203.73,247.65 209.42,248.81 215.11,249.92 220.79,250.99 226.48,252.00 232.17,252.98 237.86,253.92 243.55,254.82 249.24,255.69 254.93,256.52 259.20,257.13 260.62,257.33 266.31,258.11 272.00,258.86 277.69,259.58 283.38,260.28 289.07,260.96 294.76,261.61 300.44,262.25 306.13,262.86 311.82,263.45 317.51,264.02 323.20,264.58 328.89,265.12 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='122.80' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='122.80' x2='51.90' y2='122.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.58' x2='50.12' y2='121.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='123.11' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.11' x2='51.90' y2='123.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.89' x2='50.12' y2='121.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='126.09' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='126.09' x2='54.22' y2='126.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='127.87' x2='52.44' y2='124.31' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='122.80' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='122.80' x2='54.22' y2='122.80' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='124.58' x2='52.44' y2='121.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='136.28' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='136.28' x2='58.87' y2='136.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='138.07' x2='57.09' y2='134.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='139.11' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='139.11' x2='58.87' y2='139.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='140.89' x2='57.09' y2='137.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='159.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='159.81' x2='68.16' y2='159.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='161.59' x2='66.38' y2='158.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='147.58' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='147.58' x2='68.16' y2='147.58' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='149.36' x2='66.38' y2='145.79' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='165.14' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='165.14' x2='84.42' y2='165.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='166.92' x2='82.64' y2='163.36' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='165.61' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='165.61' x2='84.42' y2='165.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='167.39' x2='82.64' y2='163.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='202.62' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.62' x2='116.95' y2='202.62' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='204.40' x2='115.16' y2='200.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='191.17' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='191.17' x2='116.95' y2='191.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='192.95' x2='115.16' y2='189.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='235.39' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='235.39' x2='191.29' y2='235.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.17' x2='189.50' y2='233.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='235.23' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='235.23' x2='191.29' y2='235.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.02' x2='189.50' y2='233.45' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='245.27' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='245.27' x2='260.98' y2='245.27' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='247.05' x2='259.20' y2='243.49' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='249.66' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='249.66' x2='260.98' y2='249.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='251.44' x2='259.20' y2='247.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='261.73' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='261.73' x2='330.67' y2='261.73' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.52' x2='328.89' y2='259.95' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='259.38' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.38' x2='330.67' y2='259.38' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='261.16' x2='328.89' y2='257.60' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.80 52.44,127.80 55.81,133.35 57.09,135.39 61.50,142.13 66.38,149.10 67.19,150.21 72.87,157.65 78.56,164.52 82.64,169.12 84.25,170.86 89.94,176.73 95.63,182.15 101.32,187.18 107.01,191.85 112.70,196.19 115.16,197.97 118.39,200.22 124.08,203.98 129.77,207.49 135.46,210.77 141.15,213.83 146.83,216.70 152.52,219.39 158.21,221.92 163.90,224.30 169.59,226.54 175.28,228.66 180.97,230.65 186.66,232.54 189.50,233.45 192.35,234.33 198.04,236.02 203.73,237.63 209.42,239.16 215.11,240.62 220.79,242.01 226.48,243.33 232.17,244.59 237.86,245.80 243.55,246.95 249.24,248.06 254.93,249.12 259.20,249.89 260.62,250.14 266.31,251.11 272.00,252.05 277.69,252.95 283.38,253.82 289.07,254.66 294.76,255.46 300.44,256.24 306.13,256.99 311.82,257.72 317.51,258.42 323.20,259.09 328.89,259.74 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,131.06 52.52,126.21 47.72,126.21 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,125.52 52.52,130.37 47.72,130.37 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,129.65 52.52,124.80 47.72,124.80 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,124.10 52.52,128.95 47.72,128.95 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,135.45 54.84,130.60 50.04,130.60 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,129.91 54.84,134.76 50.04,134.76 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,117.57 54.84,112.72 50.04,112.72 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,112.03 54.84,116.88 50.04,116.88 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,140.47 59.49,135.62 54.69,135.62 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,134.92 59.49,139.77 54.69,139.77 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,144.54 59.49,139.69 54.69,139.69 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,139.00 59.49,143.85 54.69,143.85 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,142.66 68.78,137.81 63.98,137.81 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,137.12 68.78,141.97 63.98,141.97 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,157.87 68.78,153.02 63.98,153.02 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,152.33 68.78,157.18 63.98,157.18 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,168.54 85.04,163.69 80.24,163.69 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,162.99 85.04,167.84 80.24,167.84 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,172.77 85.04,167.92 80.24,167.92 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,167.23 85.04,172.08 80.24,172.08 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,188.30 117.56,183.45 112.76,183.45 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,182.75 117.56,187.60 112.76,187.60 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,183.59 117.56,178.74 112.76,178.74 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,178.05 117.56,182.90 112.76,182.90 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,224.21 191.90,219.36 187.10,219.36 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,218.66 191.90,223.51 187.10,223.51 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,225.77 191.90,220.92 187.10,220.92 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,220.23 191.90,225.08 187.10,225.08 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,244.12 261.60,239.27 256.80,239.27 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,238.58 261.60,243.43 256.80,243.43 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,237.69 261.60,232.84 256.80,232.84 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,232.15 261.60,237.00 256.80,237.00 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,252.12 331.29,247.27 326.49,247.27 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,246.58 331.29,251.42 326.49,251.42 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,251.96 331.29,247.11 326.49,247.11 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,246.42 331.29,251.27 326.49,251.27 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.73 52.44,128.98 55.81,133.52 57.09,135.19 61.50,140.74 66.38,146.54 67.19,147.46 72.87,153.72 78.56,159.54 82.64,163.46 84.25,164.96 89.94,170.02 95.63,174.74 101.32,179.16 107.01,183.28 112.70,187.15 115.16,188.75 118.39,190.77 124.08,194.18 129.77,197.37 135.46,200.37 141.15,203.20 146.83,205.87 152.52,208.38 158.21,210.76 163.90,213.01 169.59,215.14 175.28,217.16 180.97,219.07 186.66,220.89 189.50,221.77 192.35,222.63 198.04,224.28 203.73,225.85 209.42,227.35 215.11,228.79 220.79,230.16 226.48,231.48 232.17,232.74 237.86,233.96 243.55,235.12 249.24,236.24 254.93,237.32 259.20,238.10 260.62,238.36 266.31,239.36 272.00,240.33 277.69,241.27 283.38,242.17 289.07,243.05 294.76,243.90 300.44,244.72 306.13,245.52 311.82,246.29 317.51,247.04 323.20,247.77 328.89,248.48 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='137.70' x2='51.90' y2='137.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='139.48' x2='50.12' y2='135.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='135.91' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.11' x2='51.90' y2='123.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.12' y1='124.89' x2='50.12' y2='121.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='121.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='127.50' x2='54.22' y2='127.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='129.29' x2='52.44' y2='125.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='125.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='132.99' x2='54.22' y2='132.99' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='52.44' y1='134.77' x2='52.44' y2='131.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='131.21' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='120.76' x2='58.87' y2='120.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='122.54' x2='57.09' y2='118.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='118.98' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='139.89' x2='58.87' y2='139.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='57.09' y1='141.67' x2='57.09' y2='138.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='138.11' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='160.28' x2='68.16' y2='160.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='162.06' x2='66.38' y2='158.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='158.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='145.54' x2='68.16' y2='145.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='66.38' y1='147.32' x2='66.38' y2='143.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='143.75' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='174.23' x2='84.42' y2='174.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='176.02' x2='82.64' y2='172.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='172.45' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='171.57' x2='84.42' y2='171.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='82.64' y1='173.35' x2='82.64' y2='169.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='169.79' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='201.52' x2='116.95' y2='201.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='203.30' x2='115.16' y2='199.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='199.74' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='199.64' x2='116.95' y2='199.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='115.16' y1='201.42' x2='115.16' y2='197.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='197.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.17' x2='191.29' y2='236.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='237.96' x2='189.50' y2='234.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='234.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='236.49' x2='191.29' y2='236.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='189.50' y1='238.27' x2='189.50' y2='234.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='234.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='253.74' x2='260.98' y2='253.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='255.52' x2='259.20' y2='251.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='251.96' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='249.19' x2='260.98' y2='249.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='259.20' y1='250.97' x2='259.20' y2='247.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='247.41' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.32' x2='330.67' y2='260.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='262.11' x2='328.89' y2='258.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='258.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='261.26' x2='330.67' y2='261.26' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='328.89' y1='263.05' x2='328.89' y2='259.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='259.48' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,125.76 52.44,129.74 55.81,135.27 57.09,137.30 61.50,144.03 66.38,151.00 67.19,152.10 72.87,159.55 78.56,166.42 82.64,171.02 84.25,172.78 89.94,178.66 95.63,184.10 101.32,189.15 107.01,193.84 112.70,198.20 115.16,199.99 118.39,202.26 124.08,206.04 129.77,209.56 135.46,212.85 141.15,215.93 146.83,218.81 152.52,221.51 158.21,224.05 163.90,226.43 169.59,228.68 175.28,230.79 180.97,232.78 186.66,234.67 189.50,235.57 192.35,236.45 198.04,238.13 203.73,239.73 209.42,241.25 215.11,242.69 220.79,244.06 226.48,245.37 232.17,246.61 237.86,247.80 243.55,248.93 249.24,250.02 254.93,251.06 259.20,251.81 260.62,252.05 266.31,253.00 272.00,253.92 277.69,254.79 283.38,255.64 289.07,256.45 294.76,257.23 300.44,257.98 306.13,258.70 311.82,259.40 317.51,260.07 323.20,260.72 328.89,261.34 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='125.31' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='127.09' x2='51.90' y2='123.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='123.53' x2='51.90' y2='127.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='50.12' cy='128.60' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='130.38' x2='51.90' y2='126.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='48.34' y1='126.82' x2='51.90' y2='130.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='126.88' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='128.66' x2='54.22' y2='125.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='125.09' x2='54.22' y2='128.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='52.44' cy='115.74' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='117.52' x2='54.22' y2='113.96' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='50.66' y1='113.96' x2='54.22' y2='117.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='138.64' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='140.42' x2='58.87' y2='136.86' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='136.86' x2='58.87' y2='140.42' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='57.09' cy='126.41' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='128.19' x2='58.87' y2='124.62' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='55.30' y1='124.62' x2='58.87' y2='128.19' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='152.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='154.69' x2='68.16' y2='151.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='151.13' x2='68.16' y2='154.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='66.38' cy='150.08' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='151.87' x2='68.16' y2='148.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='64.60' y1='148.30' x2='68.16' y2='151.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='173.61' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='175.39' x2='84.42' y2='171.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='171.82' x2='84.42' y2='175.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='82.64' cy='180.19' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='181.97' x2='84.42' y2='178.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='80.86' y1='178.41' x2='84.42' y2='181.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='205.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='207.53' x2='116.95' y2='203.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='203.97' x2='116.95' y2='207.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='115.16' cy='204.03' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='205.81' x2='116.95' y2='202.25' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='113.38' y1='202.25' x2='116.95' y2='205.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='243.86' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='245.64' x2='191.29' y2='242.08' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='242.08' x2='191.29' y2='245.64' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='189.50' cy='239.94' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='241.72' x2='191.29' y2='238.16' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='187.72' y1='238.16' x2='191.29' y2='241.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='258.44' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='260.22' x2='260.98' y2='256.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='256.66' x2='260.98' y2='260.22' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='259.20' cy='252.17' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='253.95' x2='260.98' y2='250.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='257.42' y1='250.39' x2='260.98' y2='253.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='262.52' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='264.30' x2='330.67' y2='260.74' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='260.74' x2='330.67' y2='264.30' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<circle cx='328.89' cy='261.11' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='262.89' x2='330.67' y2='259.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<line x1='327.11' y1='259.33' x2='330.67' y2='262.89' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,123.10 52.44,127.71 55.81,134.08 57.09,136.40 61.50,144.06 66.38,151.92 67.19,153.16 72.87,161.45 78.56,169.03 82.64,174.06 84.25,175.96 89.94,182.31 95.63,188.13 101.32,193.48 107.01,198.40 112.70,202.93 115.16,204.78 118.39,207.11 124.08,210.97 129.77,214.55 135.46,217.87 141.15,220.95 146.83,223.81 152.52,226.48 158.21,228.98 163.90,231.31 169.59,233.49 175.28,235.53 180.97,237.46 186.66,239.27 189.50,240.13 192.35,240.97 198.04,242.58 203.73,244.10 209.42,245.54 215.11,246.91 220.79,248.20 226.48,249.43 232.17,250.60 237.86,251.72 243.55,252.78 249.24,253.80 254.93,254.77 259.20,255.47 260.62,255.70 266.31,256.59 272.00,257.44 277.69,258.25 283.38,259.04 289.07,259.79 294.76,260.52 300.44,261.21 306.13,261.88 311.82,262.53 317.51,263.15 323.20,263.75 328.89,264.32 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,116.00 51.90,119.56 48.34,119.56 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='116.00' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.12,122.43 51.90,125.99 48.34,125.99 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='48.34' y='122.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,126.35 54.22,129.91 50.66,129.91 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='126.35' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='52.44,116.31 54.22,119.88 50.66,119.88 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='50.66' y='116.31' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,141.56 58.87,145.12 55.30,145.12 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='141.56' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='57.09,145.64 58.87,149.20 55.30,149.20 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='55.30' y='145.64' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,156.61 68.16,160.18 64.60,160.18 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='156.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='66.38,155.67 68.16,159.24 64.60,159.24 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='64.60' y='155.67' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,186.72 84.42,190.29 80.86,190.29 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='186.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='82.64,177.94 84.42,181.50 80.86,181.50 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='80.86' y='177.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,207.11 116.95,210.67 113.38,210.67 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='207.11' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='115.16,204.28 116.95,207.85 113.38,207.85 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='113.38' y='204.28' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,238.94 191.29,242.50 187.72,242.50 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='238.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='189.50,239.72 191.29,243.29 187.72,243.29 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='187.72' y='239.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,253.05 260.98,256.62 257.42,256.62 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='253.05' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='259.20,249.76 260.98,253.32 257.42,253.32 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='257.42' y='249.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,262.15 330.67,265.71 327.11,265.71 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='262.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='328.89,261.83 330.67,265.40 327.11,265.40 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<rect x='327.11' y='261.83' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,122.84 52.44,128.81 55.81,136.88 57.09,139.77 61.50,149.08 66.38,158.29 67.19,159.71 72.87,169.01 78.56,177.16 82.64,182.39 84.25,184.34 89.94,190.67 95.63,196.29 101.32,201.28 107.01,205.75 112.70,209.76 115.16,211.37 118.39,213.37 124.08,216.65 129.77,219.63 135.46,222.35 141.15,224.84 146.83,227.15 152.52,229.28 158.21,231.26 163.90,233.11 169.59,234.85 175.28,236.48 180.97,238.02 186.66,239.47 189.50,240.17 192.35,240.85 198.04,242.16 203.73,243.41 209.42,244.61 215.11,245.75 220.79,246.85 226.48,247.91 232.17,248.92 237.86,249.89 243.55,250.84 249.24,251.74 254.93,252.62 259.20,253.26 260.62,253.47 266.31,254.29 272.00,255.08 277.69,255.85 283.38,256.59 289.07,257.32 294.76,258.01 300.44,258.69 306.13,259.35 311.82,259.99 317.51,260.61 323.20,261.21 328.89,261.80 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='48.34,118.94 51.90,118.94 51.90,115.37 48.34,115.37 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='48.34,117.21 51.90,117.21 51.90,113.65 48.34,113.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.66,128.19 54.22,128.19 54.22,124.62 50.66,124.62 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='50.66,130.85 54.22,130.85 54.22,127.29 50.66,127.29 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='55.30,146.38 58.87,146.38 58.87,142.81 55.30,142.81 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='55.30,140.42 58.87,140.42 58.87,136.86 55.30,136.86 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='64.60,162.53 68.16,162.53 68.16,158.97 64.60,158.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='64.60,164.57 68.16,164.57 68.16,161.00 64.60,161.00 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.86,186.37 84.42,186.37 84.42,182.80 80.86,182.80 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='80.86,193.11 84.42,193.11 84.42,189.54 80.86,189.54 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='113.38,213.81 116.95,213.81 116.95,210.24 113.38,210.24 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='113.38,210.36 116.95,210.36 116.95,206.79 113.38,206.79 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='187.72,237.96 191.29,237.96 191.29,234.39 187.72,234.39 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='187.72,238.27 191.29,238.27 191.29,234.71 187.72,234.71 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='257.42,250.81 260.98,250.81 260.98,247.25 257.42,247.25 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='257.42,249.40 260.98,249.40 260.98,245.84 257.42,245.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='327.11,259.91 330.67,259.91 330.67,256.35 327.11,256.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polygon points='327.11,255.05 330.67,255.05 330.67,251.48 327.11,251.48 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<polyline points='50.12,122.25 52.44,128.96 55.81,137.89 57.09,141.05 61.50,151.08 66.38,160.77 67.19,162.24 72.87,171.73 78.56,179.84 82.64,184.92 84.25,186.79 89.94,192.79 95.63,197.99 101.32,202.54 107.01,206.53 112.70,210.07 115.16,211.48 118.39,213.22 124.08,216.05 129.77,218.60 135.46,220.93 141.15,223.06 146.83,225.03 152.52,226.86 158.21,228.56 163.90,230.16 169.59,231.67 175.28,233.10 180.97,234.46 186.66,235.76 189.50,236.38 192.35,237.00 198.04,238.19 203.73,239.33 209.42,240.44 215.11,241.50 220.79,242.53 226.48,243.53 232.17,244.50 237.86,245.44 243.55,246.35 249.24,247.23 254.93,248.09 259.20,248.73 260.62,248.93 266.31,249.75 272.00,250.54 277.69,251.32 283.38,252.07 289.07,252.80 294.76,253.52 300.44,254.22 306.13,254.89 311.82,255.56 317.51,256.20 323.20,256.83 328.89,257.45 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDI4OC44OHwxMDIuMjQ=)' />
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0'>
    <rect x='398.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='410.12' y1='288.88' x2='683.82' y2='288.88' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='410.12' y1='288.88' x2='410.12' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='464.86' y1='288.88' x2='464.86' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='519.60' y1='288.88' x2='519.60' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='574.34' y1='288.88' x2='574.34' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='629.08' y1='288.88' x2='629.08' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='683.82' y1='288.88' x2='683.82' y2='293.63' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='407.92' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='460.47' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='515.21' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='569.95' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='624.69' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='677.24' y='305.98' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<line x1='398.97' y1='270.66' x2='398.97' y2='120.46' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='270.66' x2='394.21' y2='270.66' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='233.11' x2='394.21' y2='233.11' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='195.56' x2='394.21' y2='195.56' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='158.01' x2='394.21' y2='158.01' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='120.46' x2='394.21' y2='120.46' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,274.17) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-4</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,236.62) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,197.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,160.21) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,122.66) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<polygon points='398.97,288.88 700.04,288.88 700.04,102.24 398.97,102.24 ' style='stroke-width: 0.75; fill: none;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk='>
    <rect x='360.00' y='82.29' width='360.00' height='235.10' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk=)'><text x='532.82' y='324.99' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='33.38px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHwzMTcuMzl8ODIuMjk=)'><text transform='translate(368.55,233.76) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='76.41px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0'>
    <rect x='398.97' y='102.24' width='301.08' height='186.63' />
  </clipPath>
</defs>
<line x1='398.97' y1='195.56' x2='700.04' y2='195.56' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='681.29' cy='235.31' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='681.29' cy='176.62' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='671.69' cy='205.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='671.69' cy='150.73' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='654.19' cy='132.96' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='654.19' cy='242.15' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='624.94' cy='188.14' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='624.94' cy='163.57' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='587.54' cy='220.66' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='587.54' cy='182.44' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='543.33' cy='203.27' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='543.33' cy='217.60' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='497.84' cy='197.95' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='497.84' cy='198.63' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='474.63' cy='186.89' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='474.63' cy='184.84' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='458.17' cy='200.64' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='458.17' cy='194.49' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='683.28,203.02 685.68,207.18 680.88,207.18 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='683.28,191.42 685.68,195.58 680.88,195.58 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.58,178.53 677.98,182.69 673.18,182.69 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.58,186.04 677.98,190.20 673.18,190.20 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='661.13,183.86 663.53,188.02 658.73,188.02 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='661.13,166.12 663.53,170.28 658.73,170.28 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='635.58,229.13 637.98,233.28 633.18,233.28 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='635.58,187.50 637.98,191.65 633.18,191.65 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='599.76,198.33 602.16,202.48 597.36,202.48 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='599.76,232.45 602.16,236.61 597.36,236.61 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='551.59,173.75 553.99,177.91 549.19,177.91 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='551.59,160.78 553.99,164.94 549.19,164.94 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='498.56,175.63 500.96,179.78 496.16,179.78 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='498.56,194.05 500.96,198.21 496.16,198.21 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='475.23,207.88 477.63,212.04 472.83,212.04 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='475.23,199.01 477.63,203.17 472.83,203.17 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='460.32,201.37 462.72,205.53 457.92,205.53 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='460.32,188.41 462.72,192.56 457.92,192.56 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='679.06' y1='131.53' x2='684.10' y2='131.53' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.58' y1='134.06' x2='681.58' y2='129.01' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='679.06' y1='188.86' x2='684.10' y2='188.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.58' y1='191.38' x2='681.58' y2='186.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.75' y1='212.10' x2='677.79' y2='212.10' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.27' y1='214.62' x2='675.27' y2='209.58' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='672.75' y1='208.00' x2='677.79' y2='208.00' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.27' y1='210.52' x2='675.27' y2='205.48' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.66' y1='226.55' x2='665.70' y2='226.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='663.18' y1='229.07' x2='663.18' y2='224.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.66' y1='179.46' x2='665.70' y2='179.46' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='663.18' y1='181.98' x2='663.18' y2='176.94' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='638.43' y1='191.90' x2='643.47' y2='191.90' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='640.95' y1='194.42' x2='640.95' y2='189.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='638.43' y1='185.08' x2='643.47' y2='185.08' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='640.95' y1='187.60' x2='640.95' y2='182.56' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.00' y1='216.56' x2='610.04' y2='216.56' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.52' y1='219.08' x2='607.52' y2='214.04' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.00' y1='166.74' x2='610.04' y2='166.74' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.52' y1='169.26' x2='607.52' y2='164.22' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='554.38' y1='213.11' x2='559.42' y2='213.11' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.90' y1='215.63' x2='556.90' y2='210.59' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='554.38' y1='200.14' x2='559.42' y2='200.14' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.90' y1='202.66' x2='556.90' y2='197.62' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='487.93' y1='202.72' x2='492.97' y2='202.72' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='490.45' y1='205.24' x2='490.45' y2='200.20' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='487.93' y1='189.07' x2='492.97' y2='189.07' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='490.45' y1='191.59' x2='490.45' y2='186.55' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='456.71' y1='199.36' x2='461.75' y2='199.36' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='459.23' y1='201.88' x2='459.23' y2='196.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='456.71' y1='199.36' x2='461.75' y2='199.36' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='459.23' y1='201.88' x2='459.23' y2='196.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.03' y1='179.98' x2='444.07' y2='179.98' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='441.55' y1='182.50' x2='441.55' y2='177.46' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.03' y1='196.36' x2='444.07' y2='196.36' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='441.55' y1='198.88' x2='441.55' y2='193.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.51' y1='208.89' x2='685.08' y2='205.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.51' y1='205.33' x2='685.08' y2='208.89' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.51' y1='215.03' x2='685.08' y2='211.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='681.51' y1='211.47' x2='685.08' y2='215.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.43' y1='238.15' x2='677.99' y2='234.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.43' y1='234.59' x2='677.99' y2='238.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.43' y1='150.12' x2='677.99' y2='146.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.43' y1='146.55' x2='677.99' y2='150.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.93' y1='176.96' x2='664.49' y2='173.40' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.93' y1='173.40' x2='664.49' y2='176.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.93' y1='176.28' x2='664.49' y2='172.72' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.93' y1='172.72' x2='664.49' y2='176.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='636.36' y1='217.07' x2='639.92' y2='213.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='636.36' y1='213.50' x2='639.92' y2='217.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='636.36' y1='149.50' x2='639.92' y2='145.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='636.36' y1='145.94' x2='639.92' y2='149.50' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='600.08' y1='186.03' x2='603.65' y2='182.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='600.08' y1='182.47' x2='603.65' y2='186.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='600.08' y1='224.93' x2='603.65' y2='221.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='600.08' y1='221.37' x2='603.65' y2='224.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='546.86' y1='204.08' x2='550.43' y2='200.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='546.86' y1='200.52' x2='550.43' y2='204.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='546.86' y1='193.85' x2='550.43' y2='190.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='546.86' y1='190.28' x2='550.43' y2='193.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.62' y1='206.15' x2='484.18' y2='202.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.62' y1='202.59' x2='484.18' y2='206.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.62' y1='206.84' x2='484.18' y2='203.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='480.62' y1='203.27' x2='484.18' y2='206.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='451.08' y1='200.64' x2='454.64' y2='197.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='451.08' y1='197.07' x2='454.64' y2='200.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='451.08' y1='198.59' x2='454.64' y2='195.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='451.08' y1='195.03' x2='454.64' y2='198.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.84' y1='194.03' x2='438.41' y2='190.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.84' y1='190.47' x2='438.41' y2='194.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.84' y1='188.57' x2='438.41' y2='185.01' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='434.84' y1='185.01' x2='438.41' y2='188.57' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='684.59,236.49 687.11,233.97 689.63,236.49 687.11,239.01 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='684.59,238.54 687.11,236.02 689.63,238.54 687.11,241.06 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='670.19,187.78 672.71,185.26 675.23,187.78 672.71,190.30 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='670.19,133.18 672.71,130.66 675.23,133.18 672.71,135.70 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='645.42,199.03 647.95,196.51 650.47,199.03 647.95,201.55 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='645.42,201.07 647.95,198.55 650.47,201.07 647.95,203.59 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='608.34,205.50 610.86,202.97 613.38,205.50 610.86,208.02 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='608.34,187.75 610.86,185.23 613.38,187.75 610.86,190.27 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='568.37,180.95 570.89,178.43 573.41,180.95 570.89,183.47 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='568.37,191.19 570.89,188.67 573.41,191.19 570.89,193.71 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='529.17,214.54 531.69,212.02 534.21,214.54 531.69,217.06 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='529.17,220.00 531.69,217.48 534.21,220.00 531.69,222.52 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='487.42,183.51 489.94,180.99 492.46,183.51 489.94,186.03 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='487.42,203.99 489.94,201.47 492.46,203.99 489.94,206.51 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='463.09,188.90 465.61,186.38 468.13,188.90 465.61,191.42 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='463.09,193.68 465.61,191.16 468.13,193.68 465.61,196.20 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='446.22,192.75 448.74,190.23 451.26,192.75 448.74,195.27 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='446.22,189.33 448.74,186.81 451.26,189.33 448.74,191.85 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='683.24,218.20 685.64,214.04 680.84,214.04 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='683.24,220.93 685.64,216.77 680.84,216.77 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.48,174.77 677.88,170.61 673.08,170.61 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.48,151.56 677.88,147.41 673.08,147.41 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='661.01,212.23 663.41,208.07 658.61,208.07 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='661.01,183.56 663.41,179.41 658.61,179.41 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='635.78,216.44 638.18,212.28 633.38,212.28 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='635.78,219.17 638.18,215.01 633.38,215.01 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='601.21,211.87 603.61,207.71 598.81,207.71 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='601.21,147.72 603.61,143.56 598.81,143.56 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='556.29,240.61 558.69,236.45 553.89,236.45 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='556.29,183.97 558.69,179.81 553.89,179.81 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='507.96,198.01 510.36,193.86 505.56,193.86 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='507.96,189.14 510.36,184.99 505.56,184.99 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='485.42,203.71 487.82,199.55 483.02,199.55 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='485.42,199.62 487.82,195.46 483.02,195.46 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='469.87,200.18 472.27,196.02 467.47,196.02 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='469.87,185.85 472.27,181.69 467.47,181.69 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='680.85' y='166.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.85' y1='170.28' x2='684.41' y2='166.72' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.85' y1='166.72' x2='684.41' y2='170.28' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='680.85' y='232.23' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.85' y1='235.80' x2='684.41' y2='232.23' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.85' y1='232.23' x2='684.41' y2='235.80' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='668.29' y='211.68' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='668.29' y1='215.24' x2='671.86' y2='211.68' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='668.29' y1='211.68' x2='671.86' y2='215.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='668.29' y='167.32' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='668.29' y1='170.88' x2='671.86' y2='167.32' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='668.29' y1='167.32' x2='671.86' y2='170.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='645.47' y='127.31' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='645.47' y1='130.88' x2='649.03' y2='127.31' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='645.47' y1='127.31' x2='649.03' y2='130.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='645.47' y='199.65' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='645.47' y1='203.22' x2='649.03' y2='199.65' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='645.47' y1='199.65' x2='649.03' y2='203.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='607.61' y='159.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.61' y1='163.17' x2='611.17' y2='159.61' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.61' y1='159.61' x2='611.17' y2='163.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='607.61' y='244.23' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.61' y1='247.80' x2='611.17' y2='244.23' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.61' y1='244.23' x2='611.17' y2='247.80' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='559.87' y='221.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='559.87' y1='225.56' x2='563.44' y2='221.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='559.87' y1='221.99' x2='563.44' y2='225.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='559.87' y='201.52' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='559.87' y1='205.08' x2='563.44' y2='201.52' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='559.87' y1='201.52' x2='563.44' y2='205.08' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='505.29' y='188.17' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.29' y1='191.74' x2='508.85' y2='188.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.29' y1='188.17' x2='508.85' y2='191.74' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='505.29' y='195.68' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.29' y1='199.24' x2='508.85' y2='195.68' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.29' y1='195.68' x2='508.85' y2='199.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='455.25' y='184.63' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.25' y1='188.20' x2='458.81' y2='184.63' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.25' y1='184.63' x2='458.81' y2='188.20' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='455.25' y='182.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.25' y1='186.15' x2='458.81' y2='182.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.25' y1='182.58' x2='458.81' y2='186.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='435.28' y='196.88' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.28' y1='200.44' x2='438.85' y2='196.88' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.28' y1='196.88' x2='438.85' y2='200.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='435.28' y='191.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.28' y1='194.98' x2='438.85' y2='191.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='435.28' y1='191.42' x2='438.85' y2='194.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='424.18' y='195.90' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.18' y1='199.47' x2='427.74' y2='195.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.18' y1='195.90' x2='427.74' y2='199.47' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='424.18' y='207.51' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.18' y1='211.07' x2='427.74' y2='207.51' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='424.18' y1='207.51' x2='427.74' y2='211.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.01' y1='175.12' x2='686.58' y2='171.56' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.01' y1='171.56' x2='686.58' y2='175.12' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.28' y1='173.34' x2='687.32' y2='173.34' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.80' y1='175.86' x2='684.80' y2='170.82' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.01' y1='246.10' x2='686.58' y2='242.53' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='683.01' y1='242.53' x2='686.58' y2='246.10' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.28' y1='244.32' x2='687.32' y2='244.32' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.80' y1='246.84' x2='684.80' y2='241.80' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.46' y1='226.40' x2='669.02' y2='222.84' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.46' y1='222.84' x2='669.02' y2='226.40' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.72' y1='224.62' x2='669.76' y2='224.62' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.24' y1='227.14' x2='667.24' y2='222.10' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.46' y1='157.47' x2='669.02' y2='153.91' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.46' y1='153.91' x2='669.02' y2='157.47' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.72' y1='155.69' x2='669.76' y2='155.69' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='667.24' y1='158.21' x2='667.24' y2='153.17' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.41' y1='216.01' x2='638.98' y2='212.45' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.41' y1='212.45' x2='638.98' y2='216.01' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='634.68' y1='214.23' x2='639.72' y2='214.23' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.20' y1='216.75' x2='637.20' y2='211.71' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.41' y1='145.72' x2='638.98' y2='142.15' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.41' y1='142.15' x2='638.98' y2='145.72' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='634.68' y1='143.93' x2='639.72' y2='143.93' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='637.20' y1='146.45' x2='637.20' y2='141.41' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.04' y1='219.50' x2='594.61' y2='215.93' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.04' y1='215.93' x2='594.61' y2='219.50' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='590.30' y1='217.72' x2='595.35' y2='217.72' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='592.83' y1='220.24' x2='592.83' y2='215.20' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.04' y1='196.98' x2='594.61' y2='193.41' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='591.04' y1='193.41' x2='594.61' y2='196.98' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='590.30' y1='195.19' x2='595.35' y2='195.19' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='592.83' y1='197.71' x2='592.83' y2='192.67' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.19' y1='178.22' x2='548.76' y2='174.65' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.19' y1='174.65' x2='548.76' y2='178.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='544.46' y1='176.44' x2='549.50' y2='176.44' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='546.98' y1='178.96' x2='546.98' y2='173.92' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.19' y1='202.10' x2='548.76' y2='198.54' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='545.19' y1='198.54' x2='548.76' y2='202.10' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='544.46' y1='200.32' x2='549.50' y2='200.32' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='546.98' y1='202.84' x2='546.98' y2='197.80' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.86' y1='195.07' x2='509.43' y2='191.50' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.86' y1='191.50' x2='509.43' y2='195.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.13' y1='193.29' x2='510.17' y2='193.29' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='507.65' y1='195.81' x2='507.65' y2='190.77' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.86' y1='206.67' x2='509.43' y2='203.11' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.86' y1='203.11' x2='509.43' y2='206.67' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='505.13' y1='204.89' x2='510.17' y2='204.89' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='507.65' y1='207.41' x2='507.65' y2='202.37' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.69' y1='194.09' x2='477.25' y2='190.53' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.69' y1='190.53' x2='477.25' y2='194.09' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='472.95' y1='192.31' x2='477.99' y2='192.31' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='475.47' y1='194.83' x2='475.47' y2='189.79' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.69' y1='198.19' x2='477.25' y2='194.62' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.69' y1='194.62' x2='477.25' y2='198.19' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='472.95' y1='196.40' x2='477.99' y2='196.40' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='475.47' y1='198.92' x2='475.47' y2='193.88' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.99' y1='201.37' x2='459.55' y2='197.81' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.99' y1='197.81' x2='459.55' y2='201.37' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.25' y1='199.59' x2='460.29' y2='199.59' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.77' y1='202.11' x2='457.77' y2='197.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.99' y1='200.01' x2='459.55' y2='196.44' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.99' y1='196.44' x2='459.55' y2='200.01' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='455.25' y1='198.22' x2='460.29' y2='198.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='457.77' y1='200.74' x2='457.77' y2='195.70' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.17' y1='197.85' x2='446.73' y2='194.29' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.17' y1='194.29' x2='446.73' y2='197.85' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.43' y1='196.07' x2='447.47' y2='196.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.95' y1='198.59' x2='444.95' y2='193.55' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.17' y1='201.95' x2='446.73' y2='198.38' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='443.17' y1='198.38' x2='446.73' y2='201.95' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='442.43' y1='200.16' x2='447.47' y2='200.16' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.95' y1='202.68' x2='444.95' y2='197.64' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.40' y1='257.45' x2='689.44' y2='257.45' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='686.92' y1='259.97' x2='686.92' y2='254.93' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='684.40,257.45 686.92,254.93 689.44,257.45 686.92,259.97 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.40' y1='127.10' x2='689.44' y2='127.10' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='686.92' y1='129.62' x2='686.92' y2='124.58' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='684.40,127.10 686.92,124.58 689.44,127.10 686.92,129.62 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='673.37' y1='206.46' x2='678.41' y2='206.46' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.89' y1='208.98' x2='675.89' y2='203.94' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='673.37,206.46 675.89,203.94 678.41,206.46 675.89,208.98 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='673.37' y1='245.36' x2='678.41' y2='245.36' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.89' y1='247.88' x2='675.89' y2='242.84' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='673.37,245.36 675.89,242.84 678.41,245.36 675.89,247.88 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='653.18' y1='159.21' x2='658.22' y2='159.21' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='655.70' y1='161.73' x2='655.70' y2='156.69' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='653.18,159.21 655.70,156.69 658.22,159.21 655.70,161.73 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='653.18' y1='198.79' x2='658.22' y2='198.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='655.70' y1='201.31' x2='655.70' y2='196.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='653.18,198.79 655.70,196.27 658.22,198.79 655.70,201.31 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='619.22' y1='205.00' x2='624.26' y2='205.00' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='621.74' y1='207.52' x2='621.74' y2='202.48' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='619.22,205.00 621.74,202.48 624.26,205.00 621.74,207.52 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='619.22' y1='177.02' x2='624.26' y2='177.02' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='621.74' y1='179.54' x2='621.74' y2='174.50' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='619.22,177.02 621.74,174.50 624.26,177.02 621.74,179.54 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='575.36' y1='167.62' x2='580.40' y2='167.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='577.88' y1='170.14' x2='577.88' y2='165.10' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='575.36,167.62 577.88,165.10 580.40,167.62 577.88,170.14 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='575.36' y1='204.47' x2='580.40' y2='204.47' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='577.88' y1='206.99' x2='577.88' y2='201.95' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='575.36,204.47 577.88,201.95 580.40,204.47 577.88,206.99 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='523.38' y1='196.91' x2='528.42' y2='196.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='525.90' y1='199.43' x2='525.90' y2='194.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='523.38,196.91 525.90,194.39 528.42,196.91 525.90,199.43 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='523.38' y1='215.34' x2='528.42' y2='215.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='525.90' y1='217.86' x2='525.90' y2='212.82' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='523.38,215.34 525.90,212.82 528.42,215.34 525.90,217.86 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.03' y1='196.87' x2='478.07' y2='196.87' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='475.55' y1='199.39' x2='475.55' y2='194.35' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='473.03,196.87 475.55,194.35 478.07,196.87 475.55,199.39 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='473.03' y1='203.01' x2='478.07' y2='203.01' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='475.55' y1='205.53' x2='475.55' y2='200.49' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='473.03,203.01 475.55,200.49 478.07,203.01 475.55,205.53 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='450.94' y1='210.33' x2='455.98' y2='210.33' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.46' y1='212.85' x2='453.46' y2='207.81' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='450.94,210.33 453.46,207.81 455.98,210.33 453.46,212.85 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='450.94' y1='190.54' x2='455.98' y2='190.54' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='453.46' y1='193.06' x2='453.46' y2='188.02' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='450.94,190.54 453.46,188.02 455.98,190.54 453.46,193.06 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='437.00' y1='182.30' x2='442.04' y2='182.30' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.52' y1='184.82' x2='439.52' y2='179.78' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='437.00,182.30 439.52,179.78 442.04,182.30 439.52,184.82 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='437.00' y1='207.55' x2='442.04' y2='207.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.52' y1='210.07' x2='439.52' y2='205.03' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='437.00,207.55 439.52,205.03 442.04,207.55 439.52,210.07 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='686.18' cy='199.92' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.40' y1='199.92' x2='687.96' y2='199.92' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='686.18' y1='201.70' x2='686.18' y2='198.14' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='686.18' cy='198.55' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='684.40' y1='198.55' x2='687.96' y2='198.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='686.18' y1='200.34' x2='686.18' y2='196.77' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.20' cy='202.98' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.42' y1='202.98' x2='680.99' y2='202.98' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='679.20' y1='204.76' x2='679.20' y2='201.20' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.20' cy='217.31' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.42' y1='217.31' x2='680.99' y2='217.31' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='679.20' y1='219.09' x2='679.20' y2='215.53' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='665.95' cy='191.66' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.17' y1='191.66' x2='667.74' y2='191.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.95' y1='193.44' x2='665.95' y2='189.88' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='665.95' cy='179.37' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='664.17' y1='179.37' x2='667.74' y2='179.37' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='665.95' y1='181.16' x2='665.95' y2='177.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='642.02' cy='148.98' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='640.23' y1='148.98' x2='643.80' y2='148.98' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='642.02' y1='150.76' x2='642.02' y2='147.20' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='642.02' cy='202.21' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='640.23' y1='202.21' x2='643.80' y2='202.21' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='642.02' y1='203.99' x2='642.02' y2='200.43' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='607.08' cy='212.87' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.30' y1='212.87' x2='608.87' y2='212.87' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.08' y1='214.66' x2='607.08' y2='211.09' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='607.08' cy='210.83' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='605.30' y1='210.83' x2='608.87' y2='210.83' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='607.08' y1='212.61' x2='607.08' y2='209.04' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='556.72' cy='175.35' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='554.94' y1='175.35' x2='558.50' y2='175.35' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.72' y1='177.13' x2='556.72' y2='173.57' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='556.72' cy='225.17' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='554.94' y1='225.17' x2='558.50' y2='225.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='556.72' y1='226.95' x2='556.72' y2='223.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='494.80' cy='187.10' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='493.02' y1='187.10' x2='496.58' y2='187.10' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='494.80' y1='188.89' x2='494.80' y2='185.32' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='494.80' cy='187.79' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='493.02' y1='187.79' x2='496.58' y2='187.79' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='494.80' y1='189.57' x2='494.80' y2='186.01' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='466.11' cy='215.65' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='464.32' y1='215.65' x2='467.89' y2='215.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='466.11' y1='217.43' x2='466.11' y2='213.87' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='466.11' cy='196.54' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='464.32' y1='196.54' x2='467.89' y2='196.54' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='466.11' y1='198.32' x2='466.11' y2='194.76' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='448.90' cy='186.90' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='447.12' y1='186.90' x2='450.68' y2='186.90' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.90' y1='188.68' x2='448.90' y2='185.11' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='448.90' cy='197.13' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='447.12' y1='197.13' x2='450.68' y2='197.13' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='448.90' y1='198.92' x2='448.90' y2='195.35' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='682.81,187.22 685.21,182.37 680.41,182.37 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='682.81,181.67 685.21,186.52 680.41,186.52 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='682.81,193.36 685.21,188.51 680.41,188.51 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='682.81,187.82 685.21,192.67 680.41,192.67 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='677.14,182.24 679.54,177.39 674.74,177.39 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='677.14,176.70 679.54,181.55 674.74,181.55 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='677.14,260.04 679.54,255.19 674.74,255.19 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='677.14,254.50 679.54,259.35 674.74,259.35 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='666.30,187.42 668.70,182.57 663.90,182.57 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='666.30,181.88 668.70,186.73 663.90,186.73 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='666.30,169.68 668.70,164.83 663.90,164.83 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='666.30,164.13 668.70,168.98 663.90,168.98 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='646.49,227.27 648.89,222.42 644.09,222.42 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='646.49,221.73 648.89,226.58 644.09,226.58 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='646.49,161.07 648.89,156.22 644.09,156.22 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='646.49,155.53 648.89,160.38 644.09,160.38 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='616.96,188.30 619.36,183.45 614.56,183.45 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='616.96,182.76 619.36,187.61 614.56,187.61 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='616.96,169.87 619.36,165.02 614.56,165.02 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='616.96,164.33 619.36,169.18 614.56,169.18 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='572.82,212.37 575.22,207.52 570.42,207.52 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='572.82,206.83 575.22,211.68 570.42,211.68 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='572.82,232.84 575.22,227.99 570.42,227.99 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='572.82,227.30 575.22,232.15 570.42,232.15 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='515.18,199.79 517.58,194.95 512.78,194.95 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='515.18,194.25 517.58,199.10 512.78,199.10 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='515.18,192.97 517.58,188.12 512.78,188.12 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='515.18,187.43 517.58,192.28 512.78,192.28 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='486.67,184.21 489.07,179.36 484.27,179.36 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='486.67,178.67 489.07,183.52 484.27,183.52 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='486.67,212.19 489.07,207.34 484.27,207.34 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='486.67,206.65 489.07,211.50 484.27,211.50 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='468.55,194.57 470.95,189.72 466.15,189.72 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='468.55,189.03 470.95,193.88 466.15,193.88 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='468.55,195.26 470.95,190.41 466.15,190.41 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='468.55,189.71 470.95,194.56 466.15,194.56 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.98' y1='143.61' x2='684.54' y2='143.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.76' y1='145.40' x2='682.76' y2='141.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='680.98' y='141.83' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='680.98' y1='207.08' x2='684.54' y2='207.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='682.76' y1='208.87' x2='682.76' y2='205.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='680.98' y='205.30' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.03' y1='205.29' x2='677.60' y2='205.29' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.81' y1='207.07' x2='675.81' y2='203.51' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='674.03' y='203.51' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='674.03' y1='181.41' x2='677.60' y2='181.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='675.81' y1='183.19' x2='675.81' y2='179.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='674.03' y='179.62' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.83' y1='267.56' x2='664.39' y2='267.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.61' y1='269.34' x2='662.61' y2='265.78' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='660.83' y='265.78' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='660.83' y1='184.30' x2='664.39' y2='184.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.61' y1='186.08' x2='662.61' y2='182.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='660.83' y='182.52' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='636.93' y1='155.17' x2='640.49' y2='155.17' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='638.71' y1='156.95' x2='638.71' y2='153.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='636.93' y='153.38' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='636.93' y1='219.32' x2='640.49' y2='219.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='638.71' y1='221.10' x2='638.71' y2='217.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='636.93' y='217.54' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.97' y1='181.60' x2='605.53' y2='181.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='603.75' y1='183.38' x2='603.75' y2='179.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='601.97' y='179.81' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='601.97' y1='193.20' x2='605.53' y2='193.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='603.75' y1='194.98' x2='603.75' y2='191.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='601.97' y='191.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='551.41' y1='188.92' x2='554.97' y2='188.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.19' y1='190.71' x2='553.19' y2='187.14' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='551.41' y='187.14' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='551.41' y1='197.11' x2='554.97' y2='197.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='553.19' y1='198.90' x2='553.19' y2='195.33' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='551.41' y='195.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='489.31' y1='192.93' x2='492.88' y2='192.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='491.09' y1='194.71' x2='491.09' y2='191.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='489.31' y='191.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='489.31' y1='191.56' x2='492.88' y2='191.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='491.09' y1='193.35' x2='491.09' y2='189.78' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='489.31' y='189.78' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='460.97' y1='187.15' x2='464.54' y2='187.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='462.76' y1='188.94' x2='462.76' y2='185.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='460.97' y='185.37' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='460.97' y1='206.94' x2='464.54' y2='206.94' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='462.76' y1='208.73' x2='462.76' y2='205.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='460.97' y='205.16' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.32' y1='200.00' x2='447.89' y2='200.00' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.11' y1='201.78' x2='446.11' y2='198.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='444.32' y='198.22' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='444.32' y1='195.91' x2='447.89' y2='195.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='446.11' y1='197.69' x2='446.11' y2='194.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='444.32' y='194.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='687.39' cy='185.97' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.61' y1='187.75' x2='689.18' y2='184.19' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.61' y1='184.19' x2='689.18' y2='187.75' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='687.39' cy='171.64' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.61' y1='173.42' x2='689.18' y2='169.86' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='685.61' y1='169.86' x2='689.18' y2='173.42' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.35' cy='199.19' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.57' y1='200.97' x2='681.14' y2='197.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.57' y1='197.41' x2='681.14' y2='200.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='679.35' cy='247.65' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.57' y1='249.43' x2='681.14' y2='245.86' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='677.57' y1='245.86' x2='681.14' y2='249.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='664.18' cy='185.84' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.40' y1='187.62' x2='665.96' y2='184.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.40' y1='184.06' x2='665.96' y2='187.62' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='664.18' cy='239.07' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.40' y1='240.86' x2='665.96' y2='237.29' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='662.40' y1='237.29' x2='665.96' y2='240.86' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='637.10' cy='191.25' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.32' y1='193.03' x2='638.89' y2='189.47' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.32' y1='189.47' x2='638.89' y2='193.03' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='637.10' cy='203.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.32' y1='205.32' x2='638.89' y2='201.75' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='635.32' y1='201.75' x2='638.89' y2='205.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='598.45' cy='197.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.67' y1='199.32' x2='600.24' y2='195.75' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.67' y1='195.75' x2='600.24' y2='199.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='598.45' cy='168.87' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.67' y1='170.66' x2='600.24' y2='167.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='596.67' y1='167.09' x2='600.24' y2='170.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='544.83' cy='191.33' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.05' y1='193.12' x2='546.61' y2='189.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.05' y1='189.55' x2='546.61' y2='193.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='544.83' cy='198.84' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.05' y1='200.62' x2='546.61' y2='197.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='543.05' y1='197.06' x2='546.61' y2='200.62' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='483.13' cy='179.34' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.35' y1='181.12' x2='484.91' y2='177.56' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.35' y1='177.56' x2='484.91' y2='181.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='483.13' cy='196.40' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.35' y1='198.18' x2='484.91' y2='194.62' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='481.35' y1='194.62' x2='484.91' y2='198.18' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='456.36' cy='182.62' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.58' y1='184.41' x2='458.14' y2='180.84' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.58' y1='180.84' x2='458.14' y2='184.41' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='456.36' cy='209.92' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.58' y1='211.70' x2='458.14' y2='208.14' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='454.58' y1='208.14' x2='458.14' y2='211.70' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='440.91' cy='203.41' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.12' y1='205.20' x2='442.69' y2='201.63' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.12' y1='201.63' x2='442.69' y2='205.20' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<circle cx='440.91' cy='209.56' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.12' y1='211.34' x2='442.69' y2='207.78' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<line x1='439.12' y1='207.78' x2='442.69' y2='211.34' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.85,215.80 689.64,219.37 686.07,219.37 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='686.07' y='215.80' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.85,187.82 689.64,191.39 686.07,191.39 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='686.07' y='187.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='677.43,196.75 679.21,200.31 675.65,200.31 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='675.65' y='196.75' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='677.43,240.43 679.21,243.99 675.65,243.99 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='675.65' y='240.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='658.30,178.24 660.08,181.81 656.52,181.81 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='656.52' y='178.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='658.30,160.50 660.08,164.06 656.52,164.06 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='656.52' y='160.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='625.98,193.33 627.76,196.90 624.19,196.90 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='624.19' y='193.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='625.98,197.43 627.76,200.99 624.19,200.99 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='624.19' y='197.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='583.91,167.19 585.69,170.76 582.13,170.76 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='582.13' y='167.19' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='583.91,205.41 585.69,208.97 582.13,208.97 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='582.13' y='205.41' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='533.33,204.58 535.11,208.14 531.55,208.14 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='531.55' y='204.58' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='533.33,216.86 535.11,220.43 531.55,220.43 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='531.55' y='216.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='483.07,191.37 484.85,194.94 481.28,194.94 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='481.28' y='191.37' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='483.07,187.96 484.85,191.52 481.28,191.52 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='481.28' y='187.96' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='460.22,186.92 462.00,190.48 458.44,190.48 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='458.44' y='186.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='460.22,201.25 462.00,204.81 458.44,204.81 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='458.44' y='201.25' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='445.32,184.49 447.10,188.05 443.54,188.05 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='443.54' y='184.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='445.32,185.85 447.10,189.42 443.54,189.42 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<rect x='443.54' y='185.85' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.11,219.51 690.67,219.51 690.67,215.95 687.11,215.95 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='687.11,227.02 690.67,227.02 690.67,223.45 687.11,223.45 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.39,208.46 678.96,208.46 678.96,204.89 675.39,204.89 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='675.39,196.85 678.96,196.85 678.96,193.29 675.39,193.29 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='654.29,181.91 657.85,181.91 657.85,178.35 654.29,178.35 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='654.29,207.85 657.85,207.85 657.85,204.28 654.29,204.28 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='619.87,197.44 623.43,197.44 623.43,193.88 619.87,193.88 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='619.87,188.57 623.43,188.57 623.43,185.01 619.87,185.01 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='577.71,198.82 581.28,198.82 581.28,195.26 577.71,195.26 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='577.71,169.48 581.28,169.48 581.28,165.91 577.71,165.91 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='531.37,194.95 534.93,194.95 534.93,191.38 531.37,191.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='531.37,209.96 534.93,209.96 534.93,206.40 531.37,206.40 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='487.89,198.25 491.46,198.25 491.46,194.69 487.89,194.69 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='487.89,196.89 491.46,196.89 491.46,193.32 487.89,193.32 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='466.35,196.00 469.91,196.00 469.91,192.44 466.35,192.44 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='466.35,202.15 469.91,202.15 469.91,198.58 466.35,198.58 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='451.12,194.38 454.69,194.38 454.69,190.82 451.12,190.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<polygon points='451.12,215.54 454.69,215.54 454.69,211.98 451.12,211.98 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHwyODguODh8MTAyLjI0)' />
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU='>
    <rect x='38.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<polyline points='50.12,520.49 52.44,516.12 55.81,510.01 57.09,507.74 61.50,500.20 66.38,492.29 67.19,491.03 72.87,482.45 78.56,474.43 82.64,469.00 84.25,466.93 89.94,459.93 95.63,453.39 101.32,447.29 107.01,441.60 112.70,436.29 115.16,434.10 118.39,431.34 124.08,426.74 129.77,422.45 135.46,418.47 141.15,414.76 146.83,411.32 152.52,408.14 158.21,405.18 163.90,402.45 169.59,399.92 175.28,397.58 180.97,395.43 186.66,393.45 189.50,392.53 192.35,391.64 198.04,389.97 203.73,388.44 209.42,387.05 215.11,385.79 220.79,384.64 226.48,383.60 232.17,382.67 237.86,381.83 243.55,381.09 249.24,380.43 254.93,379.85 259.20,379.47 260.62,379.35 266.31,378.92 272.00,378.55 277.69,378.25 283.38,378.01 289.07,377.82 294.76,377.68 300.44,377.59 306.13,377.55 311.82,377.55 317.51,377.59 323.20,377.66 328.89,377.78 ' style='stroke-width: 1.50;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='50.12' y1='527.53' x2='328.89' y2='527.53' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='50.12' y1='527.53' x2='50.12' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='96.58' y1='527.53' x2='96.58' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='143.04' y1='527.53' x2='143.04' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='189.50' y1='527.53' x2='189.50' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='235.97' y1='527.53' x2='235.97' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='282.43' y1='527.53' x2='282.43' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='328.89' y1='527.53' x2='328.89' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='47.92' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='92.19' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='138.65' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='185.11' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>60</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='231.58' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>80</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='275.84' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>100</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='322.30' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='13.17px' lengthAdjust='spacingAndGlyphs'>120</text></g>
<line x1='38.97' y1='520.49' x2='38.97' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='520.49' x2='34.21' y2='520.49' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='483.65' x2='34.21' y2='483.65' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='446.81' x2='34.21' y2='446.81' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='409.97' x2='34.21' y2='409.97' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='38.97' y1='373.13' x2='34.21' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,522.68) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,488.04) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,451.20) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,414.36) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>30</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(27.56,377.52) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<polygon points='38.97,527.53 340.04,527.53 340.04,337.35 38.97,337.35 ' style='stroke-width: 0.75; fill: none;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ=='>
    <rect x='0.00' y='317.39' width='360.00' height='258.61' />
  </clipPath>
</defs>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ==)'><text x='180.87' y='563.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='17.27px' lengthAdjust='spacingAndGlyphs'>Time</text></g>
<g clip-path='url(#cpMC4wMHwzNjAuMDB8NTc2LjAwfDMxNy4zOQ==)'><text transform='translate(8.55,437.93) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='10.98px' lengthAdjust='spacingAndGlyphs'>m1</text></g>
<defs>
  <clipPath id='cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU='>
    <rect x='38.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<circle cx='52.44' cy='511.64' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='513.49' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='498.75' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='504.28' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='486.59' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='490.65' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='459.33' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='470.01' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='433.91' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='432.07' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='404.81' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='419.91' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='401.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='408.86' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='388.60' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='403.70' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,514.35 55.81,506.14 57.09,503.21 61.50,493.85 66.38,484.71 67.19,483.31 72.87,474.23 78.56,466.40 82.64,461.43 84.25,459.60 89.94,453.70 95.63,448.54 101.32,444.02 107.01,440.04 112.70,436.51 115.16,435.11 118.39,433.38 124.08,430.59 129.77,428.09 135.46,425.83 141.15,423.79 146.83,421.93 152.52,420.23 158.21,418.68 163.90,417.25 169.59,415.93 175.28,414.70 180.97,413.57 186.66,412.51 189.50,412.00 192.35,411.52 198.04,410.59 203.73,409.73 209.42,408.91 215.11,408.15 220.79,407.43 226.48,406.75 232.17,406.11 237.86,405.51 243.55,404.95 249.24,404.42 254.93,403.92 259.20,403.56 260.62,403.45 266.31,403.01 272.00,402.60 277.69,402.21 283.38,401.85 289.07,401.51 294.76,401.20 300.44,400.91 306.13,400.64 311.82,400.39 317.51,400.16 323.20,399.96 328.89,399.77 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,517.35 54.84,521.50 50.04,521.50 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,510.71 54.84,514.87 50.04,514.87 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,503.72 59.49,507.87 54.69,507.87 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,511.45 59.49,515.61 54.69,515.61 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,488.24 68.78,492.40 63.98,492.40 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,492.66 68.78,496.82 63.98,496.82 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,464.30 85.04,468.45 80.24,468.45 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,471.66 85.04,475.82 80.24,475.82 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,451.03 117.56,455.19 112.76,455.19 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,437.03 117.56,441.19 112.76,441.19 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,421.19 191.90,425.35 187.10,425.35 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,424.14 191.90,428.30 187.10,428.30 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,407.56 261.60,411.72 256.80,411.72 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,407.19 261.60,411.35 256.80,411.35 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,417.51 331.29,421.67 326.49,421.67 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,407.19 331.29,411.35 326.49,411.35 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.03 55.81,509.92 57.09,507.69 61.50,500.43 66.38,493.05 67.19,491.90 72.87,484.23 78.56,477.34 82.64,472.83 84.25,471.13 89.94,465.54 95.63,460.50 101.32,455.96 107.01,451.85 112.70,448.14 115.16,446.64 118.39,444.78 124.08,441.74 129.77,438.99 135.46,436.49 141.15,434.23 146.83,432.17 152.52,430.29 158.21,428.59 163.90,427.04 169.59,425.62 175.28,424.33 180.97,423.15 186.66,422.07 189.50,421.57 192.35,421.08 198.04,420.18 203.73,419.36 209.42,418.60 215.11,417.91 220.79,417.28 226.48,416.69 232.17,416.16 237.86,415.68 243.55,415.23 249.24,414.83 254.93,414.45 259.20,414.20 260.62,414.12 266.31,413.81 272.00,413.53 277.69,413.28 283.38,413.05 289.07,412.85 294.76,412.67 300.44,412.51 306.13,412.37 311.82,412.24 317.51,412.14 323.20,412.05 328.89,411.98 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='513.49' x2='54.96' y2='513.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='516.01' x2='52.44' y2='510.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='508.33' x2='59.61' y2='508.33' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='510.85' x2='57.09' y2='505.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='512.75' x2='59.61' y2='512.75' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='515.27' x2='57.09' y2='510.23' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='483.65' x2='68.90' y2='483.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='486.17' x2='66.38' y2='481.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='486.96' x2='68.90' y2='486.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='489.48' x2='66.38' y2='484.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='469.28' x2='85.16' y2='469.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='471.80' x2='82.64' y2='466.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='462.65' x2='85.16' y2='462.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='465.17' x2='82.64' y2='460.13' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='437.96' x2='117.68' y2='437.96' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='440.48' x2='115.16' y2='435.44' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='435.39' x2='117.68' y2='435.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='437.91' x2='115.16' y2='432.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='404.81' x2='192.02' y2='404.81' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='407.33' x2='189.50' y2='402.29' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='387.86' x2='192.02' y2='387.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='390.38' x2='189.50' y2='385.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='386.02' x2='261.72' y2='386.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='388.54' x2='259.20' y2='383.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='394.86' x2='261.72' y2='394.86' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='397.38' x2='259.20' y2='392.34' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='387.49' x2='331.41' y2='387.49' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='390.01' x2='328.89' y2='384.97' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='378.28' x2='331.41' y2='378.28' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='380.80' x2='328.89' y2='375.76' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.17 55.81,510.16 57.09,507.94 61.50,500.57 66.38,492.90 67.19,491.68 72.87,483.42 78.56,475.75 82.64,470.59 84.25,468.63 89.94,462.01 95.63,455.86 101.32,450.15 107.01,444.85 112.70,439.92 115.16,437.89 118.39,435.34 124.08,431.08 129.77,427.12 135.46,423.45 141.15,420.03 146.83,416.86 152.52,413.91 158.21,411.17 163.90,408.63 169.59,406.27 175.28,404.09 180.97,402.06 186.66,400.18 189.50,399.29 192.35,398.44 198.04,396.83 203.73,395.34 209.42,393.97 215.11,392.70 220.79,391.53 226.48,390.46 232.17,389.47 237.86,388.57 243.55,387.74 249.24,386.99 254.93,386.30 259.20,385.83 260.62,385.68 266.31,385.12 272.00,384.62 277.69,384.17 283.38,383.78 289.07,383.43 294.76,383.12 300.44,382.86 306.13,382.64 311.82,382.46 317.51,382.31 323.20,382.20 328.89,382.12 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='513.79' x2='54.22' y2='510.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='510.23' x2='54.22' y2='513.79' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.37' x2='54.22' y2='505.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='505.81' x2='54.22' y2='509.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='502.37' x2='58.87' y2='498.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='498.81' x2='58.87' y2='502.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='510.11' x2='58.87' y2='506.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='506.55' x2='58.87' y2='510.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='484.32' x2='68.16' y2='480.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='480.76' x2='68.16' y2='484.32' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='485.43' x2='68.16' y2='481.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='481.86' x2='68.16' y2='485.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='452.64' x2='84.42' y2='449.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='449.08' x2='84.42' y2='452.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='468.11' x2='84.42' y2='464.55' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='464.55' x2='84.42' y2='468.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='417.27' x2='116.95' y2='413.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='413.71' x2='116.95' y2='417.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='420.22' x2='116.95' y2='416.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='416.66' x2='116.95' y2='420.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='374.91' x2='191.29' y2='371.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='371.34' x2='191.29' y2='374.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='368.64' x2='191.29' y2='365.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='365.08' x2='191.29' y2='368.64' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='360.91' x2='260.98' y2='357.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='357.34' x2='260.98' y2='360.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='354.65' x2='260.98' y2='351.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='351.08' x2='260.98' y2='354.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='357.22' x2='330.67' y2='353.66' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='353.66' x2='330.67' y2='357.22' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='347.65' x2='330.67' y2='344.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='344.08' x2='330.67' y2='347.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,514.87 55.81,507.07 57.09,504.20 61.50,494.72 66.38,484.90 67.19,483.35 72.87,472.87 78.56,463.22 82.64,456.77 84.25,454.32 89.94,446.11 95.63,438.54 101.32,431.55 107.01,425.11 112.70,419.15 115.16,416.72 118.39,413.66 124.08,408.58 129.77,403.89 135.46,399.55 141.15,395.55 146.83,391.85 152.52,388.43 158.21,385.27 163.90,382.35 169.59,379.65 175.28,377.16 180.97,374.86 186.66,372.74 189.50,371.74 192.35,370.78 198.04,368.98 203.73,367.32 209.42,365.79 215.11,364.38 220.79,363.10 226.48,361.92 232.17,360.84 237.86,359.85 243.55,358.96 249.24,358.14 254.93,357.40 259.20,356.90 260.62,356.74 266.31,356.14 272.00,355.61 277.69,355.14 283.38,354.72 289.07,354.36 294.76,354.05 300.44,353.79 306.13,353.57 311.82,353.39 317.51,353.25 323.20,353.15 328.89,353.08 ' style='stroke-width: 0.75; stroke: #28E2E5; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='49.92,515.33 52.44,512.81 54.96,515.33 52.44,517.85 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='49.92,512.38 52.44,509.86 54.96,512.38 52.44,514.90 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='54.57,502.07 57.09,499.55 59.61,502.07 57.09,504.59 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='54.57,500.22 57.09,497.70 59.61,500.22 57.09,502.74 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='63.86,485.12 66.38,482.60 68.90,485.12 66.38,487.64 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='63.86,482.54 66.38,480.02 68.90,482.54 66.38,485.06 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.12,457.86 82.64,455.34 85.16,457.86 82.64,460.38 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.12,465.23 82.64,462.71 85.16,465.23 82.64,467.75 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='112.64,442.75 115.16,440.23 117.68,442.75 115.16,445.27 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='112.64,440.91 115.16,438.39 117.68,440.91 115.16,443.43 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='186.98,422.86 189.50,420.34 192.02,422.86 189.50,425.38 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='186.98,421.75 189.50,419.23 192.02,421.75 189.50,424.27 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='256.68,421.02 259.20,418.50 261.72,421.02 259.20,423.54 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='256.68,416.60 259.20,414.08 261.72,416.60 259.20,419.12 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='326.37,412.54 328.89,410.02 331.41,412.54 328.89,415.06 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='326.37,430.96 328.89,428.44 331.41,430.96 328.89,433.48 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.92 55.81,503.28 57.09,499.97 61.50,489.89 66.38,480.73 67.19,479.39 72.87,471.08 78.56,464.43 82.64,460.46 84.25,459.04 89.94,454.62 95.63,450.93 101.32,447.81 107.01,445.14 112.70,442.81 115.16,441.89 118.39,440.76 124.08,438.93 129.77,437.27 135.46,435.77 141.15,434.38 146.83,433.10 152.52,431.90 158.21,430.79 163.90,429.74 169.59,428.76 175.28,427.83 180.97,426.96 186.66,426.14 189.50,425.74 192.35,425.36 198.04,424.63 203.73,423.94 209.42,423.28 215.11,422.67 220.79,422.09 226.48,421.55 232.17,421.04 237.86,420.56 243.55,420.12 249.24,419.70 254.93,419.31 259.20,419.04 260.62,418.95 266.31,418.62 272.00,418.32 277.69,418.04 283.38,417.78 289.07,417.55 294.76,417.34 300.44,417.16 306.13,416.99 311.82,416.85 317.51,416.72 323.20,416.62 328.89,416.53 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,512.94 54.84,508.78 50.04,508.78 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,512.20 54.84,508.05 50.04,508.05 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,511.47 59.49,507.31 54.69,507.31 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,519.20 59.49,515.05 54.69,515.05 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,495.63 68.78,491.47 63.98,491.47 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,498.94 68.78,494.79 63.98,494.79 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,473.15 85.04,469.00 80.24,469.00 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,479.79 85.04,475.63 80.24,475.63 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,455.10 117.56,450.95 112.76,450.95 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,456.94 117.56,452.79 112.76,452.79 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,444.05 191.90,439.89 187.10,439.89 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,440.37 191.90,436.21 187.10,436.21 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,430.79 261.60,426.63 256.80,426.63 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,427.84 261.60,423.68 256.80,423.68 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,434.47 331.29,430.32 326.49,430.32 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,435.95 331.29,431.79 326.49,431.79 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.38 55.81,510.77 57.09,508.74 61.50,502.15 66.38,495.52 67.19,494.49 72.87,487.69 78.56,481.63 82.64,477.71 84.25,476.24 89.94,471.43 95.63,467.13 101.32,463.29 107.01,459.85 112.70,456.76 115.16,455.52 118.39,453.99 124.08,451.49 129.77,449.24 135.46,447.21 141.15,445.37 146.83,443.71 152.52,442.19 158.21,440.82 163.90,439.57 169.59,438.42 175.28,437.38 180.97,436.42 186.66,435.54 189.50,435.13 192.35,434.73 198.04,433.99 203.73,433.30 209.42,432.67 215.11,432.09 220.79,431.55 226.48,431.05 232.17,430.59 237.86,430.16 243.55,429.76 249.24,429.40 254.93,429.06 259.20,428.82 260.62,428.74 266.31,428.45 272.00,428.18 277.69,427.93 283.38,427.70 289.07,427.49 294.76,427.30 300.44,427.12 306.13,426.96 311.82,426.82 317.51,426.69 323.20,426.57 328.89,426.47 ' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='512.44' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='516.00' x2='54.22' y2='512.44' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='512.44' x2='54.22' y2='516.00' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='505.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='508.64' x2='54.22' y2='505.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='505.07' x2='54.22' y2='508.64' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='492.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='495.74' x2='58.87' y2='492.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='492.18' x2='58.87' y2='495.74' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='499.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.48' x2='58.87' y2='499.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='499.92' x2='58.87' y2='503.48' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='468.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='472.17' x2='68.16' y2='468.60' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='468.60' x2='68.16' y2='472.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='467.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='470.69' x2='68.16' y2='467.13' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='467.13' x2='68.16' y2='470.69' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='431.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='434.96' x2='84.42' y2='431.39' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='431.39' x2='84.42' y2='434.96' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='450.55' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='454.11' x2='84.42' y2='450.55' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='450.55' x2='84.42' y2='454.11' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='400.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='404.38' x2='116.95' y2='400.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='400.82' x2='116.95' y2='404.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='405.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='409.54' x2='116.95' y2='405.97' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='405.97' x2='116.95' y2='409.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='389.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='393.33' x2='191.29' y2='389.76' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='389.76' x2='191.29' y2='393.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='387.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='390.75' x2='191.29' y2='387.18' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='387.18' x2='191.29' y2='390.75' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='395.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='399.22' x2='260.98' y2='395.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='395.66' x2='260.98' y2='399.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='377.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='380.80' x2='260.98' y2='377.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='377.24' x2='260.98' y2='380.80' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='395.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='399.22' x2='330.67' y2='395.66' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='395.66' x2='330.67' y2='399.22' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='373.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='377.49' x2='330.67' y2='373.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='373.92' x2='330.67' y2='377.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.42 55.81,501.65 57.09,497.82 61.50,485.63 66.38,473.78 67.19,471.98 72.87,460.31 78.56,450.31 82.64,444.03 84.25,441.73 89.94,434.34 95.63,427.95 101.32,422.42 107.01,417.61 112.70,413.42 115.16,411.77 118.39,409.76 124.08,406.55 129.77,403.73 135.46,401.25 141.15,399.05 146.83,397.11 152.52,395.39 158.21,393.86 163.90,392.51 169.59,391.30 175.28,390.23 180.97,389.28 186.66,388.43 189.50,388.05 192.35,387.69 198.04,387.03 203.73,386.45 209.42,385.94 215.11,385.50 220.79,385.12 226.48,384.80 232.17,384.53 237.86,384.31 243.55,384.14 249.24,384.01 254.93,383.91 259.20,383.87 260.62,383.86 266.31,383.84 272.00,383.85 277.69,383.90 283.38,383.97 289.07,384.07 294.76,384.20 300.44,384.35 306.13,384.53 311.82,384.73 317.51,384.95 323.20,385.19 328.89,385.44 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='513.06' x2='54.22' y2='509.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.49' x2='54.22' y2='513.06' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='511.28' x2='54.96' y2='511.28' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='513.80' x2='52.44' y2='508.76' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='509.74' x2='54.22' y2='506.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='506.18' x2='54.22' y2='509.74' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='507.96' x2='54.96' y2='507.96' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='510.48' x2='52.44' y2='505.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='493.90' x2='58.87' y2='490.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='490.34' x2='58.87' y2='493.90' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='492.12' x2='59.61' y2='492.12' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='494.64' x2='57.09' y2='489.60' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='488.37' x2='58.87' y2='484.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='484.81' x2='58.87' y2='488.37' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='486.59' x2='59.61' y2='486.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='489.11' x2='57.09' y2='484.07' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='459.64' x2='68.16' y2='456.08' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='456.08' x2='68.16' y2='459.64' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='457.86' x2='68.90' y2='457.86' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='460.38' x2='66.38' y2='455.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='460.38' x2='68.16' y2='456.81' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='456.81' x2='68.16' y2='460.38' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='458.59' x2='68.90' y2='458.59' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='461.11' x2='66.38' y2='456.07' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='430.54' x2='84.42' y2='426.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='426.97' x2='84.42' y2='430.54' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='428.75' x2='85.16' y2='428.75' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='431.27' x2='82.64' y2='426.23' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='441.22' x2='84.42' y2='437.66' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='437.66' x2='84.42' y2='441.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='439.44' x2='85.16' y2='439.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='441.96' x2='82.64' y2='436.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='397.01' x2='116.95' y2='393.45' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='393.45' x2='116.95' y2='397.01' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='395.23' x2='117.68' y2='395.23' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='397.75' x2='115.16' y2='392.71' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='391.49' x2='116.95' y2='387.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='387.92' x2='116.95' y2='391.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='389.70' x2='117.68' y2='389.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='392.22' x2='115.16' y2='387.18' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='377.12' x2='191.29' y2='373.55' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='373.55' x2='191.29' y2='377.12' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='375.34' x2='192.02' y2='375.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='377.86' x2='189.50' y2='372.82' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='399.22' x2='191.29' y2='395.66' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='395.66' x2='191.29' y2='399.22' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='397.44' x2='192.02' y2='397.44' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='399.96' x2='189.50' y2='394.92' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='382.64' x2='260.98' y2='379.08' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='379.08' x2='260.98' y2='382.64' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='380.86' x2='261.72' y2='380.86' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='383.38' x2='259.20' y2='378.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='396.27' x2='260.98' y2='392.71' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='392.71' x2='260.98' y2='396.27' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='394.49' x2='261.72' y2='394.49' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='397.01' x2='259.20' y2='391.97' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='374.91' x2='330.67' y2='371.34' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='371.34' x2='330.67' y2='374.91' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='373.13' x2='331.41' y2='373.13' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='375.65' x2='328.89' y2='370.61' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='393.70' x2='330.67' y2='390.13' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='390.13' x2='330.67' y2='393.70' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='391.91' x2='331.41' y2='391.91' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='394.43' x2='328.89' y2='389.39' style='stroke-width: 0.75;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,508.40 55.81,493.03 57.09,487.78 61.50,471.87 66.38,457.58 67.19,455.50 72.87,442.78 78.56,432.84 82.64,427.06 84.25,425.03 89.94,418.83 95.63,413.87 101.32,409.87 107.01,406.60 112.70,403.90 115.16,402.87 118.39,401.63 124.08,399.71 129.77,398.07 135.46,396.63 141.15,395.37 146.83,394.25 152.52,393.24 158.21,392.33 163.90,391.50 169.59,390.74 175.28,390.04 180.97,389.39 186.66,388.78 189.50,388.50 192.35,388.23 198.04,387.71 203.73,387.22 209.42,386.78 215.11,386.36 220.79,385.98 226.48,385.62 232.17,385.29 237.86,384.99 243.55,384.72 249.24,384.47 254.93,384.25 259.20,384.09 260.62,384.04 266.31,383.86 272.00,383.71 277.69,383.57 283.38,383.45 289.07,383.36 294.76,383.28 300.44,383.22 306.13,383.18 311.82,383.16 317.51,383.15 323.20,383.17 328.89,383.19 ' style='stroke-width: 0.75; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='505.38' x2='54.96' y2='505.38' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='507.90' x2='52.44' y2='502.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='49.92,505.38 52.44,502.86 54.96,505.38 52.44,507.90 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='49.92' y1='509.07' x2='54.96' y2='509.07' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='511.59' x2='52.44' y2='506.55' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='49.92,509.07 52.44,506.55 54.96,509.07 52.44,511.59 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='487.70' x2='59.61' y2='487.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='490.22' x2='57.09' y2='485.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='54.57,487.70 57.09,485.18 59.61,487.70 57.09,490.22 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='54.57' y1='493.22' x2='59.61' y2='493.22' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='495.74' x2='57.09' y2='490.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='54.57,493.22 57.09,490.70 59.61,493.22 57.09,495.74 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='461.17' x2='68.90' y2='461.17' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='463.69' x2='66.38' y2='458.65' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='63.86,461.17 66.38,458.65 68.90,461.17 66.38,463.69 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='63.86' y1='469.28' x2='68.90' y2='469.28' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='471.80' x2='66.38' y2='466.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='63.86,469.28 66.38,466.76 68.90,469.28 66.38,471.80 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='429.12' x2='85.16' y2='429.12' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='431.64' x2='82.64' y2='426.60' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.12,429.12 82.64,426.60 85.16,429.12 82.64,431.64 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.12' y1='429.86' x2='85.16' y2='429.86' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='432.38' x2='82.64' y2='427.34' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.12,429.86 82.64,427.34 85.16,429.86 82.64,432.38 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='391.91' x2='117.68' y2='391.91' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='394.43' x2='115.16' y2='389.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='112.64,391.91 115.16,389.39 117.68,391.91 115.16,394.43 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='112.64' y1='404.81' x2='117.68' y2='404.81' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='407.33' x2='115.16' y2='402.29' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='112.64,404.81 115.16,402.29 117.68,404.81 115.16,407.33 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='361.70' x2='192.02' y2='361.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='364.22' x2='189.50' y2='359.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='186.98,361.70 189.50,359.18 192.02,361.70 189.50,364.22 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='186.98' y1='355.44' x2='192.02' y2='355.44' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='357.96' x2='189.50' y2='352.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='186.98,355.44 189.50,352.92 192.02,355.44 189.50,357.96 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='361.70' x2='261.72' y2='361.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='364.22' x2='259.20' y2='359.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='256.68,361.70 259.20,359.18 261.72,361.70 259.20,364.22 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='256.68' y1='358.76' x2='261.72' y2='358.76' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='361.28' x2='259.20' y2='356.24' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='256.68,358.76 259.20,356.24 261.72,358.76 259.20,361.28 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='344.39' x2='331.41' y2='344.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='346.91' x2='328.89' y2='341.87' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='326.37,344.39 328.89,341.87 331.41,344.39 328.89,346.91 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='326.37' y1='353.23' x2='331.41' y2='353.23' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='355.75' x2='328.89' y2='350.71' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='326.37,353.23 328.89,350.71 331.41,353.23 328.89,355.75 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,511.65 55.81,499.76 57.09,495.51 61.50,481.89 66.38,468.51 67.19,466.46 72.87,453.10 78.56,441.51 82.64,434.14 84.25,431.43 89.94,422.63 95.63,414.94 101.32,408.19 107.01,402.25 112.70,397.01 115.16,394.93 118.39,392.36 124.08,388.24 129.77,384.56 135.46,381.27 141.15,378.32 146.83,375.66 152.52,373.26 158.21,371.09 163.90,369.12 169.59,367.32 175.28,365.68 180.97,364.18 186.66,362.81 189.50,362.17 192.35,361.55 198.04,360.39 203.73,359.32 209.42,358.34 215.11,357.44 220.79,356.61 226.48,355.84 232.17,355.13 237.86,354.48 243.55,353.89 249.24,353.34 254.93,352.84 259.20,352.50 260.62,352.39 266.31,351.97 272.00,351.60 277.69,351.26 283.38,350.96 289.07,350.70 294.76,350.46 300.44,350.26 306.13,350.08 311.82,349.94 317.51,349.82 323.20,349.73 328.89,349.66 ' style='stroke-width: 0.75; stroke: #DF536B; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='514.59' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='514.59' x2='54.22' y2='514.59' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='516.37' x2='52.44' y2='512.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='517.17' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='517.17' x2='54.22' y2='517.17' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='518.95' x2='52.44' y2='515.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='507.22' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='507.22' x2='58.87' y2='507.22' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='509.01' x2='57.09' y2='505.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='503.91' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.91' x2='58.87' y2='503.91' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='505.69' x2='57.09' y2='502.13' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='483.28' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='483.28' x2='68.16' y2='483.28' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='485.06' x2='66.38' y2='481.50' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='479.96' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='479.96' x2='68.16' y2='479.96' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='481.74' x2='66.38' y2='478.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='456.02' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='456.02' x2='84.42' y2='456.02' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='457.80' x2='82.64' y2='454.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='457.86' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='457.86' x2='84.42' y2='457.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='459.64' x2='82.64' y2='456.08' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='416.60' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='416.60' x2='116.95' y2='416.60' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='418.38' x2='115.16' y2='414.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='417.33' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='417.33' x2='116.95' y2='417.33' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='419.12' x2='115.16' y2='415.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='383.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='383.81' x2='191.29' y2='383.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='385.59' x2='189.50' y2='382.03' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='391.18' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='391.18' x2='191.29' y2='391.18' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='392.96' x2='189.50' y2='389.39' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='368.34' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='368.34' x2='260.98' y2='368.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='370.12' x2='259.20' y2='366.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='361.34' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='361.34' x2='260.98' y2='361.34' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='363.12' x2='259.20' y2='359.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='355.07' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='355.07' x2='330.67' y2='355.07' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='356.86' x2='328.89' y2='353.29' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='349.55' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='349.55' x2='330.67' y2='349.55' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='351.33' x2='328.89' y2='347.77' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,514.99 55.81,507.37 57.09,504.58 61.50,495.37 66.38,485.88 67.19,484.38 72.87,474.31 78.56,465.08 82.64,458.93 84.25,456.60 89.94,448.83 95.63,441.68 101.32,435.12 107.01,429.07 112.70,423.51 115.16,421.24 118.39,418.39 124.08,413.67 129.77,409.31 135.46,405.30 141.15,401.58 146.83,398.16 152.52,394.99 158.21,392.06 163.90,389.34 169.59,386.83 175.28,384.51 180.97,382.36 186.66,380.36 189.50,379.42 192.35,378.51 198.04,376.80 203.73,375.21 209.42,373.74 215.11,372.37 220.79,371.11 226.48,369.94 232.17,368.86 237.86,367.86 243.55,366.93 249.24,366.08 254.93,365.29 259.20,364.74 260.62,364.57 266.31,363.90 272.00,363.29 277.69,362.73 283.38,362.22 289.07,361.76 294.76,361.34 300.44,360.96 306.13,360.62 311.82,360.32 317.51,360.05 323.20,359.82 328.89,359.61 ' style='stroke-width: 0.75; stroke: #61D04F; stroke-dasharray: 7.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,518.10 54.84,513.25 50.04,513.25 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,512.56 54.84,517.41 50.04,517.41 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,517.36 54.84,512.51 50.04,512.51 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,511.82 54.84,516.67 50.04,516.67 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,516.99 59.49,512.14 54.69,512.14 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,511.45 59.49,516.30 54.69,516.30 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,509.99 59.49,505.14 54.69,505.14 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,504.45 59.49,509.30 54.69,509.30 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,501.52 68.78,496.67 63.98,496.67 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,495.98 68.78,500.83 63.98,500.83 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,503.36 68.78,498.51 63.98,498.51 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,497.82 68.78,502.67 63.98,502.67 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,480.89 85.04,476.04 80.24,476.04 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,475.35 85.04,480.20 80.24,480.20 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,487.52 85.04,482.67 80.24,482.67 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,481.98 85.04,486.83 80.24,486.83 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,461.73 117.56,456.88 112.76,456.88 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,456.19 117.56,461.04 112.76,461.04 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,449.21 117.56,444.36 112.76,444.36 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,443.67 117.56,448.52 112.76,448.52 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,421.95 191.90,417.10 187.10,417.10 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,416.40 191.90,421.25 187.10,421.25 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,429.68 191.90,424.83 187.10,424.83 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,424.14 191.90,428.99 187.10,428.99 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,425.63 261.60,420.78 256.80,420.78 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,420.09 261.60,424.94 256.80,424.94 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,426.37 261.60,421.52 256.80,421.52 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,420.83 261.60,425.67 256.80,425.67 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,409.42 331.29,404.57 326.49,404.57 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,403.88 331.29,408.73 326.49,408.73 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,413.47 331.29,408.62 326.49,408.62 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,407.93 331.29,412.78 326.49,412.78 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,517.06 55.81,512.29 57.09,510.53 61.50,504.72 66.38,498.68 67.19,497.72 72.87,491.24 78.56,485.26 82.64,481.24 84.25,479.72 89.94,474.59 95.63,469.84 101.32,465.43 107.01,461.35 112.70,457.57 115.16,456.02 118.39,454.06 124.08,450.80 129.77,447.78 135.46,444.97 141.15,442.35 146.83,439.93 152.52,437.67 158.21,435.57 163.90,433.61 169.59,431.79 175.28,430.10 180.97,428.52 186.66,427.05 189.50,426.35 192.35,425.68 198.04,424.40 203.73,423.21 209.42,422.11 215.11,421.07 220.79,420.11 226.48,419.21 232.17,418.37 237.86,417.59 243.55,416.86 249.24,416.19 254.93,415.56 259.20,415.12 260.62,414.98 266.31,414.43 272.00,413.93 277.69,413.46 283.38,413.03 289.07,412.63 294.76,412.26 300.44,411.92 306.13,411.61 311.82,411.32 317.51,411.06 323.20,410.83 328.89,410.61 ' style='stroke-width: 0.75; stroke: #2297E6; stroke-dasharray: 2.00,2.00,6.00,2.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='519.38' x2='54.22' y2='519.38' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='521.16' x2='52.44' y2='517.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='517.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='511.28' x2='54.22' y2='511.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='52.44' y1='513.06' x2='52.44' y2='509.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='509.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='506.85' x2='58.87' y2='506.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='508.64' x2='57.09' y2='505.07' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='505.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='505.75' x2='58.87' y2='505.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='57.09' y1='507.53' x2='57.09' y2='503.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='503.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.70' x2='68.16' y2='494.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='496.48' x2='66.38' y2='492.92' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='492.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='497.28' x2='68.16' y2='497.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='66.38' y1='499.06' x2='66.38' y2='495.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='495.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='475.91' x2='84.42' y2='475.91' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='477.69' x2='82.64' y2='474.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='474.13' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='478.49' x2='84.42' y2='478.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='82.64' y1='480.27' x2='82.64' y2='476.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='476.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.44' x2='116.95' y2='453.44' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='455.22' x2='115.16' y2='451.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='451.65' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.81' x2='116.95' y2='453.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='115.16' y1='455.59' x2='115.16' y2='452.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='452.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='415.49' x2='191.29' y2='415.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='417.27' x2='189.50' y2='413.71' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='413.71' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='421.75' x2='191.29' y2='421.75' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='189.50' y1='423.54' x2='189.50' y2='419.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='419.97' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='401.86' x2='260.98' y2='401.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='403.64' x2='259.20' y2='400.08' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='400.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='414.39' x2='260.98' y2='414.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='259.20' y1='416.17' x2='259.20' y2='412.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='412.60' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='394.12' x2='330.67' y2='394.12' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='395.91' x2='328.89' y2='392.34' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='392.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='409.23' x2='330.67' y2='409.23' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='328.89' y1='411.01' x2='328.89' y2='407.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='407.45' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.49 55.81,510.94 57.09,508.90 61.50,502.19 66.38,495.27 67.19,494.17 72.87,486.82 78.56,480.08 82.64,475.59 84.25,473.88 89.94,468.20 95.63,462.97 101.32,458.17 107.01,453.75 112.70,449.68 115.16,448.02 118.39,445.94 124.08,442.49 129.77,439.31 135.46,436.38 141.15,433.68 146.83,431.19 152.52,428.89 158.21,426.77 163.90,424.81 169.59,423.00 175.28,421.33 180.97,419.79 186.66,418.36 189.50,417.69 192.35,417.04 198.04,415.83 203.73,414.71 209.42,413.67 215.11,412.72 220.79,411.84 226.48,411.04 232.17,410.29 237.86,409.61 243.55,408.98 249.24,408.41 254.93,407.89 259.20,407.52 260.62,407.41 266.31,406.98 272.00,406.58 277.69,406.23 283.38,405.91 289.07,405.63 294.76,405.38 300.44,405.15 306.13,404.96 311.82,404.80 317.51,404.66 323.20,404.54 328.89,404.45 ' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='517.17' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='518.95' x2='54.22' y2='515.39' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='515.39' x2='54.22' y2='518.95' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='52.44' cy='520.12' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='521.90' x2='54.22' y2='518.34' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='50.66' y1='518.34' x2='54.22' y2='521.90' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='507.22' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='509.01' x2='58.87' y2='505.44' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='505.44' x2='58.87' y2='509.01' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='57.09' cy='502.07' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='503.85' x2='58.87' y2='500.28' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='55.30' y1='500.28' x2='58.87' y2='503.85' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='492.49' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.27' x2='68.16' y2='490.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='490.71' x2='68.16' y2='494.27' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='66.38' cy='496.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='498.32' x2='68.16' y2='494.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='64.60' y1='494.76' x2='68.16' y2='498.32' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='477.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='479.53' x2='84.42' y2='475.97' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='475.97' x2='84.42' y2='479.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='82.64' cy='472.59' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='474.38' x2='84.42' y2='470.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='80.86' y1='470.81' x2='84.42' y2='474.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='443.49' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='445.27' x2='116.95' y2='441.71' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='441.71' x2='116.95' y2='445.27' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='115.16' cy='451.59' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='453.38' x2='116.95' y2='449.81' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='113.38' y1='449.81' x2='116.95' y2='453.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='419.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='421.33' x2='191.29' y2='417.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='417.76' x2='191.29' y2='421.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='189.50' cy='406.65' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='408.43' x2='191.29' y2='404.87' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='187.72' y1='404.87' x2='191.29' y2='408.43' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='419.91' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='421.69' x2='260.98' y2='418.13' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='418.13' x2='260.98' y2='421.69' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='259.20' cy='400.02' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='401.80' x2='260.98' y2='398.24' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='257.42' y1='398.24' x2='260.98' y2='401.80' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='405.54' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='407.33' x2='330.67' y2='403.76' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='403.76' x2='330.67' y2='407.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<circle cx='328.89' cy='403.33' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='405.12' x2='330.67' y2='401.55' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<line x1='327.11' y1='401.55' x2='330.67' y2='405.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,516.04 55.81,509.92 57.09,507.68 61.50,500.35 66.38,492.86 67.19,491.69 72.87,483.83 78.56,476.71 82.64,472.01 84.25,470.24 89.94,464.37 95.63,459.03 101.32,454.17 107.01,449.75 112.70,445.72 115.16,444.09 118.39,442.06 124.08,438.71 129.77,435.65 135.46,432.87 141.15,430.32 146.83,427.99 152.52,425.86 158.21,423.91 163.90,422.13 169.59,420.50 175.28,419.01 180.97,417.64 186.66,416.39 189.50,415.80 192.35,415.24 198.04,414.20 203.73,413.24 209.42,412.37 215.11,411.57 220.79,410.84 226.48,410.18 232.17,409.58 237.86,409.04 243.55,408.55 249.24,408.10 254.93,407.71 259.20,407.44 260.62,407.35 266.31,407.04 272.00,406.76 277.69,406.52 283.38,406.31 289.07,406.13 294.76,405.98 300.44,405.86 306.13,405.76 311.82,405.69 317.51,405.64 323.20,405.61 328.89,405.61 ' style='stroke-width: 0.75; stroke: #CD0BBC; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,512.44 54.22,516.00 50.66,516.00 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='512.44' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='52.44,509.86 54.22,513.43 50.66,513.43 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='50.66' y='509.86' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,497.34 58.87,500.90 55.30,500.90 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='497.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='57.09,498.81 58.87,502.37 55.30,502.37 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='55.30' y='498.81' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,485.18 68.16,488.74 64.60,488.74 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='485.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='66.38,471.92 68.16,475.48 64.60,475.48 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='64.60' y='471.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,446.87 84.42,450.43 80.86,450.43 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='446.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='82.64,451.29 84.42,454.85 80.86,454.85 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='80.86' y='451.29' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,431.02 116.95,434.59 113.38,434.59 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='431.02' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='115.16,421.08 116.95,424.64 113.38,424.64 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='113.38' y='421.08' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,397.50 191.29,401.06 187.72,401.06 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='397.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='189.50,386.82 191.29,390.38 187.72,390.38 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='187.72' y='386.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,399.34 260.98,402.91 257.42,402.91 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='399.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='259.20,383.87 260.98,387.43 257.42,387.43 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='257.42' y='383.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,396.03 330.67,399.59 327.11,399.59 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='396.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='328.89,392.34 330.67,395.91 327.11,395.91 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<rect x='327.11' y='392.34' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,513.77 55.81,504.72 57.09,501.48 61.50,491.10 66.38,480.88 67.19,479.31 72.87,469.08 78.56,460.19 82.64,454.53 84.25,452.44 89.94,445.68 95.63,439.76 101.32,434.57 107.01,430.00 112.70,425.96 115.16,424.36 118.39,422.40 124.08,419.23 129.77,416.41 135.46,413.89 141.15,411.64 146.83,409.62 152.52,407.80 158.21,406.16 163.90,404.67 169.59,403.32 175.28,402.10 180.97,400.99 186.66,399.98 189.50,399.50 192.35,399.05 198.04,398.21 203.73,397.44 209.42,396.73 215.11,396.09 220.79,395.50 226.48,394.97 232.17,394.48 237.86,394.04 243.55,393.64 249.24,393.28 254.93,392.95 259.20,392.73 260.62,392.67 266.31,392.41 272.00,392.18 277.69,391.98 283.38,391.82 289.07,391.67 294.76,391.56 300.44,391.46 306.13,391.40 311.82,391.35 317.51,391.32 323.20,391.32 328.89,391.33 ' style='stroke-width: 0.75; stroke: #F5C710; stroke-dasharray: 1.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='50.66,513.06 54.22,513.06 54.22,509.49 50.66,509.49 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='50.66,514.90 54.22,514.90 54.22,511.34 50.66,511.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='55.30,501.64 58.87,501.64 58.87,498.07 55.30,498.07 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='55.30,499.43 58.87,499.43 58.87,495.86 55.30,495.86 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='64.60,486.90 68.16,486.90 68.16,483.34 64.60,483.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='64.60,472.90 68.16,472.90 68.16,469.34 64.60,469.34 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.86,462.22 84.42,462.22 84.42,458.65 80.86,458.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='80.86,455.22 84.42,455.22 84.42,451.65 80.86,451.65 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='113.38,427.59 116.95,427.59 116.95,424.02 113.38,424.02 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='113.38,428.33 116.95,428.33 116.95,424.76 113.38,424.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='187.72,400.33 191.29,400.33 191.29,396.76 187.72,396.76 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='187.72,399.96 191.29,399.96 191.29,396.39 187.72,396.39 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='257.42,390.38 260.98,390.38 260.98,386.82 257.42,386.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='257.42,396.27 260.98,396.27 260.98,392.71 257.42,392.71 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='327.11,383.38 330.67,383.38 330.67,379.82 327.11,379.82 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polygon points='327.11,402.54 330.67,402.54 330.67,398.97 327.11,398.97 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<polyline points='50.12,520.49 52.44,512.96 55.81,502.98 57.09,499.45 61.50,488.29 66.38,477.56 67.19,475.93 72.87,465.51 78.56,456.68 82.64,451.18 84.25,449.18 89.94,442.78 95.63,437.29 101.32,432.57 107.01,428.49 112.70,424.94 115.16,423.54 118.39,421.83 124.08,419.10 129.77,416.68 135.46,414.54 141.15,412.62 146.83,410.89 152.52,409.33 158.21,407.91 163.90,406.61 169.59,405.43 175.28,404.33 180.97,403.32 186.66,402.39 189.50,401.95 192.35,401.52 198.04,400.71 203.73,399.96 209.42,399.26 215.11,398.60 220.79,397.98 226.48,397.41 232.17,396.87 237.86,396.36 243.55,395.89 249.24,395.45 254.93,395.03 259.20,394.74 260.62,394.65 266.31,394.29 272.00,393.96 277.69,393.65 283.38,393.37 289.07,393.11 294.76,392.87 300.44,392.65 306.13,392.45 311.82,392.27 317.51,392.12 323.20,391.98 328.89,391.86 ' style='stroke-width: 0.75; stroke: #9E9E9E; stroke-dasharray: 1.00,3.00,4.00,3.00;' clip-path='url(#cpMzguOTd8MzQwLjA0fDUyNy41M3wzMzcuMzU=)' />
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1'>
    <rect x='398.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<defs>
  <clipPath id='cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA='>
    <rect x='0.00' y='0.00' width='720.00' height='576.00' />
  </clipPath>
</defs>
<line x1='410.12' y1='527.53' x2='650.60' y2='527.53' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='410.12' y1='527.53' x2='410.12' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='470.24' y1='527.53' x2='470.24' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='530.36' y1='527.53' x2='530.36' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='590.48' y1='527.53' x2='590.48' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='650.60' y1='527.53' x2='650.60' y2='532.28' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='407.92' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='465.85' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>10</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='525.97' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>20</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='586.09' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>30</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text x='646.21' y='544.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='8.78px' lengthAdjust='spacingAndGlyphs'>40</text></g>
<line x1='398.97' y1='508.97' x2='398.97' y2='355.91' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='508.97' x2='394.21' y2='508.97' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='470.70' x2='394.21' y2='470.70' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='432.44' x2='394.21' y2='432.44' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='394.17' x2='394.21' y2='394.17' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<line x1='398.97' y1='355.91' x2='394.21' y2='355.91' style='stroke-width: 0.75;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,512.48) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-4</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,474.22) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='7.03px' lengthAdjust='spacingAndGlyphs'>-2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,434.63) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>0</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,396.37) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>2</text></g>
<g clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)'><text transform='translate(387.56,358.11) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='4.39px' lengthAdjust='spacingAndGlyphs'>4</text></g>
<polygon points='398.97,527.53 700.04,527.53 700.04,337.35 398.97,337.35 ' style='stroke-width: 0.75; fill: none;' clip-path='url(#cpMC4wMHw3MjAuMDB8NTc2LjAwfDAuMDA=)' />
<defs>
  <clipPath id='cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5'>
    <rect x='360.00' y='317.39' width='360.00' height='258.61' />
  </clipPath>
</defs>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5)'><text x='532.82' y='563.64' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='33.38px' lengthAdjust='spacingAndGlyphs'>Predicted</text></g>
<g clip-path='url(#cpMzYwLjAwfDcyMC4wMHw1NzYuMDB8MzE3LjM5)'><text transform='translate(368.55,470.64) rotate(-90)' style='font-size: 7.92px; font-family: Liberation Sans;' textLength='76.41px' lengthAdjust='spacingAndGlyphs'>Standardized residual</text></g>
<defs>
  <clipPath id='cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1'>
    <rect x='398.97' y='337.35' width='301.08' height='190.18' />
  </clipPath>
</defs>
<line x1='398.97' y1='432.44' x2='700.04' y2='432.44' style='stroke-width: 0.75; stroke-dasharray: 4.00,4.00;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='420.12' cy='437.55' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='420.12' cy='434.08' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='438.32' cy='440.85' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='438.32' cy='430.42' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='468.50' cy='428.88' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='468.50' cy='421.23' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='506.49' cy='436.40' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='506.49' cy='416.24' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='549.44' cy='434.71' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='549.44' cy='438.18' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='587.15' cy='446.02' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='587.15' cy='417.51' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='600.93' cy='435.65' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='600.93' cy='422.44' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='607.12' cy='453.53' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='607.12' cy='425.01' r='1.78pt' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='417.39,421.95 419.79,426.11 414.99,426.11 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='417.39,434.47 419.79,438.63 414.99,438.63 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='431.00,431.94 433.40,436.10 428.60,436.10 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='431.00,417.34 433.40,421.49 428.60,421.49 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='454.89,433.52 457.29,437.67 452.49,437.67 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='454.89,425.17 457.29,429.33 452.49,429.33 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='487.89,440.54 490.29,444.70 485.49,444.70 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='487.89,426.63 490.29,430.79 485.49,430.79 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='530.62,416.14 533.02,420.30 528.22,420.30 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='530.62,442.57 533.02,446.73 528.22,446.73 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='571.55,425.14 573.95,429.30 569.15,429.30 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='571.55,419.58 573.95,423.73 569.15,423.73 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='583.57,436.96 585.97,441.12 581.17,441.12 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='583.57,437.66 585.97,441.81 581.17,441.81 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='587.20,413.99 589.60,418.15 584.80,418.15 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='587.20,433.46 589.60,437.62 584.80,437.62 ' style='stroke-width: 0.75; stroke: #61D04F; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='414.63' y1='437.51' x2='419.67' y2='437.51' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.15' y1='440.03' x2='417.15' y2='434.99' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.07' y1='431.70' x2='433.11' y2='431.70' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='430.59' y1='434.22' x2='430.59' y2='429.18' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.07' y1='423.36' x2='433.11' y2='423.36' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='430.59' y1='425.88' x2='430.59' y2='420.84' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='452.62' y1='449.90' x2='457.66' y2='449.90' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='455.14' y1='452.42' x2='455.14' y2='447.38' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='452.62' y1='443.64' x2='457.66' y2='443.64' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='455.14' y1='446.16' x2='455.14' y2='441.12' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='489.02' y1='434.92' x2='494.06' y2='434.92' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='491.54' y1='437.44' x2='491.54' y2='432.40' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='489.02' y1='447.43' x2='494.06' y2='447.43' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='491.54' y1='449.95' x2='491.54' y2='444.91' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='542.38' y1='432.30' x2='547.42' y2='432.30' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='544.90' y1='434.82' x2='544.90' y2='429.78' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='542.38' y1='437.17' x2='547.42' y2='437.17' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='544.90' y1='439.69' x2='544.90' y2='434.65' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='605.38' y1='422.03' x2='610.42' y2='422.03' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='607.90' y1='424.55' x2='607.90' y2='419.51' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='605.38' y1='454.02' x2='610.42' y2='454.02' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='607.90' y1='456.54' x2='607.90' y2='451.50' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.34' y1='432.09' x2='632.38' y2='432.09' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.86' y1='434.61' x2='629.86' y2='429.56' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='627.34' y1='415.39' x2='632.38' y2='415.39' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='629.86' y1='417.91' x2='629.86' y2='412.87' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='633.40' y1='422.30' x2='638.44' y2='422.30' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.92' y1='424.82' x2='635.92' y2='419.78' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='633.40' y1='439.69' x2='638.44' y2='439.69' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='635.92' y1='442.21' x2='635.92' y2='437.17' style='stroke-width: 0.75; stroke: #2297E6;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.50' y1='439.62' x2='421.06' y2='436.05' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.50' y1='436.05' x2='421.06' y2='439.62' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.50' y1='447.96' x2='421.06' y2='444.40' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.50' y1='444.40' x2='421.06' y2='447.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='434.91' y1='441.03' x2='438.48' y2='437.47' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='434.91' y1='437.47' x2='438.48' y2='441.03' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='434.91' y1='426.43' x2='438.48' y2='422.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='434.91' y1='422.86' x2='438.48' y2='426.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.41' y1='438.67' x2='469.97' y2='435.11' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.41' y1='435.11' x2='469.97' y2='438.67' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.41' y1='436.59' x2='469.97' y2='433.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.41' y1='433.02' x2='469.97' y2='436.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.32' y1='445.37' x2='515.89' y2='441.81' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.32' y1='441.81' x2='515.89' y2='445.37' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.32' y1='416.16' x2='515.89' y2='412.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.32' y1='412.60' x2='515.89' y2='416.16' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='577.68' y1='436.54' x2='581.24' y2='432.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='577.68' y1='432.97' x2='581.24' y2='436.54' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='577.68' y1='430.97' x2='581.24' y2='427.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='577.68' y1='427.41' x2='581.24' y2='430.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='651.08' y1='431.60' x2='654.65' y2='428.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='651.08' y1='428.04' x2='654.65' y2='431.60' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='651.08' y1='443.42' x2='654.65' y2='439.86' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='651.08' y1='439.86' x2='654.65' y2='443.42' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='675.30' y1='430.02' x2='678.86' y2='426.45' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='675.30' y1='426.45' x2='678.86' y2='430.02' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='675.30' y1='441.84' x2='678.86' y2='438.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='675.30' y1='438.28' x2='678.86' y2='441.84' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.52' y1='429.77' x2='685.09' y2='426.20' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.52' y1='426.20' x2='685.09' y2='429.77' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.52' y1='447.85' x2='685.09' y2='444.28' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.52' y1='444.28' x2='685.09' y2='447.85' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='419.94,427.90 422.46,425.38 424.98,427.90 422.46,430.42 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='419.94,433.46 422.46,430.94 424.98,433.46 422.46,435.98 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='441.08,428.48 443.60,425.96 446.12,428.48 443.60,431.00 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='441.08,431.95 443.60,429.43 446.12,431.95 443.60,434.47 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='472.47,424.16 474.99,421.64 477.51,424.16 474.99,426.68 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='472.47,429.02 474.99,426.50 477.51,429.02 474.99,431.55 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='505.56,437.35 508.08,434.83 510.60,437.35 508.08,439.87 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='505.56,423.44 508.08,420.92 510.60,423.44 508.08,425.96 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='535.85,430.82 538.37,428.30 540.89,430.82 538.37,433.34 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='535.85,434.30 538.37,431.78 540.89,434.30 538.37,436.82 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='562.21,437.88 564.73,435.36 567.25,437.88 564.73,440.41 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='562.21,439.97 564.73,437.45 567.25,439.97 564.73,442.49 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='573.15,428.71 575.67,426.19 578.19,428.71 575.67,431.23 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='573.15,437.05 575.67,434.53 578.19,437.05 575.67,439.57 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='577.24,439.97 579.76,437.45 582.28,439.97 579.76,442.49 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='577.24,405.19 579.76,402.67 582.28,405.19 579.76,407.71 ' style='stroke-width: 0.75; stroke: #CD0BBC; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='416.83,446.92 419.22,442.77 414.43,442.77 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='416.83,448.31 419.22,444.16 414.43,444.16 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='429.29,435.28 431.69,431.13 426.89,431.13 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='429.29,420.68 431.69,416.52 426.89,416.52 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='450.86,440.24 453.26,436.08 448.46,436.08 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='450.86,433.98 453.26,429.83 448.46,429.83 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='479.93,449.03 482.33,444.88 477.53,444.88 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='479.93,436.52 482.33,432.36 477.53,432.36 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='516.13,441.24 518.53,437.08 513.73,437.08 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='516.13,437.76 518.53,433.60 513.73,433.60 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='549.42,423.59 551.82,419.44 547.02,419.44 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='549.42,430.55 551.82,426.39 547.02,426.39 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='559.71,436.72 562.11,432.56 557.31,432.56 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='559.71,442.28 562.11,438.13 557.31,438.13 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='563.55,425.33 565.95,421.17 561.15,421.17 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='563.55,422.55 565.95,418.39 561.15,418.39 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.49' y='427.26' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.49' y1='430.82' x2='425.06' y2='427.26' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.49' y1='427.26' x2='425.06' y2='430.82' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='421.49' y='441.17' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.49' y1='444.73' x2='425.06' y2='441.17' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='421.49' y1='441.17' x2='425.06' y2='444.73' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='445.33' y='437.94' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.33' y1='441.50' x2='448.89' y2='437.94' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.33' y1='437.94' x2='448.89' y2='441.50' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='445.33' y='423.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.33' y1='426.90' x2='448.89' y2='423.33' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='445.33' y1='423.33' x2='448.89' y2='426.90' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='484.55' y='437.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.55' y1='440.64' x2='488.12' y2='437.07' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.55' y1='437.07' x2='488.12' y2='440.64' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='484.55' y='439.85' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.55' y1='443.42' x2='488.12' y2='439.85' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='484.55' y1='439.85' x2='488.12' y2='443.42' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='533.10' y='451.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.10' y1='454.72' x2='536.67' y2='451.15' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.10' y1='451.15' x2='536.67' y2='454.72' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='533.10' y='414.99' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.10' y1='418.55' x2='536.67' y2='414.99' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.10' y1='414.99' x2='536.67' y2='418.55' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='585.75' y='447.98' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='585.75' y1='451.54' x2='589.31' y2='447.98' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='585.75' y1='447.98' x2='589.31' y2='451.54' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='585.75' y='438.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='585.75' y1='441.81' x2='589.31' y2='438.24' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='585.75' y1='438.24' x2='589.31' y2='441.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='624.46' y='424.05' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='624.46' y1='427.62' x2='628.03' y2='424.05' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='624.46' y1='424.05' x2='628.03' y2='427.62' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='624.46' y='428.92' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='624.46' y1='432.49' x2='628.03' y2='428.92' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='624.46' y1='428.92' x2='628.03' y2='432.49' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='631.28' y='405.04' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.28' y1='408.60' x2='634.85' y2='405.04' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.28' y1='405.04' x2='634.85' y2='408.60' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='631.28' y='439.81' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.28' y1='443.38' x2='634.85' y2='439.81' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.28' y1='439.81' x2='634.85' y2='443.38' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='628.71' y='408.01' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.71' y1='411.58' x2='632.28' y2='408.01' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.71' y1='408.01' x2='632.28' y2='411.58' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='628.71' y='449.04' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.71' y1='452.61' x2='632.28' y2='449.04' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='628.71' y1='449.04' x2='632.28' y2='452.61' style='stroke-width: 0.75; stroke: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.06' y1='428.79' x2='431.63' y2='425.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.06' y1='425.22' x2='431.63' y2='428.79' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.32' y1='427.01' x2='432.36' y2='427.01' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.84' y1='429.53' x2='429.84' y2='424.49' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.06' y1='435.05' x2='431.63' y2='431.48' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='428.06' y1='431.48' x2='431.63' y2='435.05' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.32' y1='433.27' x2='432.36' y2='433.27' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.84' y1='435.79' x2='429.84' y2='430.75' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.71' y1='426.03' x2='465.27' y2='422.46' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.71' y1='422.46' x2='465.27' y2='426.03' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='460.97' y1='424.25' x2='466.01' y2='424.25' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.49' y1='426.77' x2='463.49' y2='421.73' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.71' y1='436.46' x2='465.27' y2='432.90' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='461.71' y1='432.90' x2='465.27' y2='436.46' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='460.97' y1='434.68' x2='466.01' y2='434.68' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='463.49' y1='437.20' x2='463.49' y2='432.16' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.00' y1='433.69' x2='514.56' y2='430.13' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.00' y1='430.13' x2='514.56' y2='433.69' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.26' y1='431.91' x2='515.30' y2='431.91' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.78' y1='434.43' x2='512.78' y2='429.39' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.00' y1='432.30' x2='514.56' y2='428.74' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='511.00' y1='428.74' x2='514.56' y2='432.30' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.26' y1='430.52' x2='515.30' y2='430.52' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='512.78' y1='433.04' x2='512.78' y2='428.00' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='560.80' y1='431.02' x2='564.37' y2='427.45' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='560.80' y1='427.45' x2='564.37' y2='431.02' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='560.07' y1='429.24' x2='565.11' y2='429.24' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='562.59' y1='431.76' x2='562.59' y2='426.72' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='560.80' y1='410.85' x2='564.37' y2='407.29' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='560.80' y1='407.29' x2='564.37' y2='410.85' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='560.07' y1='409.07' x2='565.11' y2='409.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='562.59' y1='411.59' x2='562.59' y2='406.55' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.28' y1='448.64' x2='603.84' y2='445.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.28' y1='445.07' x2='603.84' y2='448.64' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='599.54' y1='446.86' x2='604.58' y2='446.86' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='602.06' y1='449.38' x2='602.06' y2='444.34' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.28' y1='459.07' x2='603.84' y2='455.51' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='600.28' y1='455.51' x2='603.84' y2='459.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='599.54' y1='457.29' x2='604.58' y2='457.29' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='602.06' y1='459.81' x2='602.06' y2='454.77' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='623.73' y1='459.07' x2='627.29' y2='455.51' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='623.73' y1='455.51' x2='627.29' y2='459.07' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='622.99' y1='457.29' x2='628.03' y2='457.29' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='625.51' y1='459.81' x2='625.51' y2='454.77' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='623.73' y1='417.34' x2='627.29' y2='413.78' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='623.73' y1='413.78' x2='627.29' y2='417.34' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='622.99' y1='415.56' x2='628.03' y2='415.56' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='625.51' y1='418.08' x2='625.51' y2='413.04' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.92' y1='440.32' x2='634.48' y2='436.75' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.92' y1='436.75' x2='634.48' y2='440.32' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.18' y1='438.54' x2='635.22' y2='438.54' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.70' y1='441.06' x2='632.70' y2='436.02' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.92' y1='414.59' x2='634.48' y2='411.02' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.92' y1='411.02' x2='634.48' y2='414.59' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='630.18' y1='412.80' x2='635.22' y2='412.80' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.70' y1='415.32' x2='632.70' y2='410.28' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.39' y1='453.22' x2='635.95' y2='449.66' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.39' y1='449.66' x2='635.95' y2='453.22' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.65' y1='451.44' x2='636.69' y2='451.44' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='634.17' y1='453.96' x2='634.17' y2='448.92' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.39' y1='417.76' x2='635.95' y2='414.19' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='632.39' y1='414.19' x2='635.95' y2='417.76' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='631.65' y1='415.97' x2='636.69' y2='415.97' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='634.17' y1='418.49' x2='634.17' y2='413.45' style='stroke-width: 0.75;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='422.02' y1='444.27' x2='427.06' y2='444.27' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='424.54' y1='446.79' x2='424.54' y2='441.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='422.02,444.27 424.54,441.75 427.06,444.27 424.54,446.79 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='422.02' y1='437.31' x2='427.06' y2='437.31' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='424.54' y1='439.83' x2='424.54' y2='434.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='422.02,437.31 424.54,434.79 427.06,437.31 424.54,439.83 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='448.36' y1='447.18' x2='453.40' y2='447.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='450.88' y1='449.70' x2='450.88' y2='444.66' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='448.36,447.18 450.88,444.66 453.40,447.18 450.88,449.70 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='448.36' y1='436.75' x2='453.40' y2='436.75' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='450.88' y1='439.27' x2='450.88' y2='434.23' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='448.36,436.75 450.88,434.23 453.40,436.75 450.88,439.27 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='492.41' y1='446.30' x2='497.45' y2='446.30' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='494.93' y1='448.82' x2='494.93' y2='443.78' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='492.41,446.30 494.93,443.78 497.45,446.30 494.93,448.82 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='492.41' y1='431.00' x2='497.45' y2='431.00' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='494.93' y1='433.52' x2='494.93' y2='428.48' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='492.41,431.00 494.93,428.48 497.45,431.00 494.93,433.52 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='548.50' y1='441.92' x2='553.54' y2='441.92' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='551.02' y1='444.44' x2='551.02' y2='439.40' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='548.50,441.92 551.02,439.40 553.54,441.92 551.02,444.44 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='548.50' y1='440.53' x2='553.54' y2='440.53' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='551.02' y1='443.05' x2='551.02' y2='438.01' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='548.50,440.53 551.02,438.01 553.54,440.53 551.02,443.05 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='612.50' y1='438.12' x2='617.54' y2='438.12' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='615.02' y1='440.64' x2='615.02' y2='435.60' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='612.50,438.12 615.02,435.60 617.54,438.12 615.02,440.64 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='612.50' y1='413.78' x2='617.54' y2='413.78' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='615.02' y1='416.30' x2='615.02' y2='411.26' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='612.50,413.78 615.02,411.26 617.54,413.78 615.02,416.30 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='665.96' y1='433.31' x2='671.00' y2='433.31' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='668.48' y1='435.83' x2='668.48' y2='430.79' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='665.96,433.31 668.48,430.79 671.00,433.31 668.48,435.83 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='665.96' y1='445.13' x2='671.00' y2='445.13' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='668.48' y1='447.65' x2='668.48' y2='442.61' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='665.96,445.13 668.48,442.61 671.00,445.13 668.48,447.65 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.74' y1='415.06' x2='686.78' y2='415.06' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='684.26' y1='417.58' x2='684.26' y2='412.54' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='681.74,415.06 684.26,412.54 686.78,415.06 684.26,417.58 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='681.74' y1='420.62' x2='686.78' y2='420.62' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='684.26' y1='423.14' x2='684.26' y2='418.10' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='681.74,420.62 684.26,418.10 686.78,420.62 684.26,423.14 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='686.37' y1='442.39' x2='691.41' y2='442.39' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='688.89' y1='444.91' x2='688.89' y2='439.87' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='686.37,442.39 688.89,439.87 691.41,442.39 688.89,444.91 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='686.37' y1='425.70' x2='691.41' y2='425.70' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='688.89' y1='428.22' x2='688.89' y2='423.18' style='stroke-width: 0.75; stroke: #DF536B;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='686.37,425.70 688.89,423.18 691.41,425.70 688.89,428.22 ' style='stroke-width: 0.75; stroke: #DF536B; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='419.09' cy='433.19' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.31' y1='433.19' x2='420.87' y2='433.19' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='419.09' y1='434.97' x2='419.09' y2='431.41' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='419.09' cy='428.32' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='417.31' y1='428.32' x2='420.87' y2='428.32' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='419.09' y1='430.10' x2='419.09' y2='426.54' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='436.08' cy='427.44' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='434.30' y1='427.44' x2='437.86' y2='427.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='436.08' y1='429.23' x2='436.08' y2='425.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='436.08' cy='433.70' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='434.30' y1='433.70' x2='437.86' y2='433.70' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='436.08' y1='435.48' x2='436.08' y2='431.92' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='466.59' cy='437.35' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='464.81' y1='437.35' x2='468.38' y2='437.35' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.59' y1='439.13' x2='466.59' y2='435.57' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='466.59' cy='443.61' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='464.81' y1='443.61' x2='468.38' y2='443.61' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='466.59' y1='445.39' x2='466.59' y2='441.82' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='510.57' cy='437.94' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='508.79' y1='437.94' x2='512.35' y2='437.94' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.57' y1='439.72' x2='510.57' y2='436.16' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='510.57' cy='434.47' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='508.79' y1='434.47' x2='512.35' y2='434.47' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='510.57' y1='436.25' x2='510.57' y2='432.68' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='572.08' cy='441.20' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='570.30' y1='441.20' x2='573.86' y2='441.20' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='572.08' y1='442.99' x2='572.08' y2='439.42' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='572.08' cy='439.81' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='570.30' y1='439.81' x2='573.86' y2='439.81' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='572.08' y1='441.60' x2='572.08' y2='438.03' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='640.33' cy='424.15' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.55' y1='424.15' x2='642.11' y2='424.15' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='640.33' y1='425.93' x2='640.33' y2='422.37' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='640.33' cy='410.24' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='638.55' y1='410.24' x2='642.11' y2='410.24' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='640.33' y1='412.02' x2='640.33' y2='408.46' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='664.28' cy='425.65' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='662.50' y1='425.65' x2='666.06' y2='425.65' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='664.28' y1='427.43' x2='664.28' y2='423.87' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='664.28' cy='438.86' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='662.50' y1='438.86' x2='666.06' y2='438.86' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='664.28' y1='440.65' x2='664.28' y2='437.08' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='672.65' cy='441.01' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='670.87' y1='441.01' x2='674.43' y2='441.01' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='672.65' y1='442.79' x2='672.65' y2='439.23' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='672.65' cy='451.44' r='1.78pt' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='670.87' y1='451.44' x2='674.43' y2='451.44' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='672.65' y1='453.22' x2='672.65' y2='449.66' style='stroke-width: 0.75; stroke: #61D04F;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='415.71,438.48 418.11,433.63 413.31,433.63 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='415.71,432.94 418.11,437.79 413.31,437.79 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='415.71,439.87 418.11,435.02 413.31,435.02 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='415.71,434.33 418.11,439.18 413.31,439.18 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='426.36,428.24 428.76,423.39 423.96,423.39 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='426.36,422.70 428.76,427.55 423.96,427.55 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='426.36,441.46 428.76,436.61 423.96,436.61 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='426.36,435.91 428.76,440.76 423.96,440.76 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='445.71,435.07 448.11,430.22 443.31,430.22 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='445.71,429.53 448.11,434.38 443.31,434.38 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='445.71,431.59 448.11,426.74 443.31,426.74 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='445.71,426.05 448.11,430.90 443.31,430.90 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='474.16,441.11 476.56,436.26 471.76,436.26 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='474.16,435.56 476.56,440.41 471.76,440.41 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='474.16,428.59 476.56,423.74 471.76,423.74 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='474.16,423.04 476.56,427.89 471.76,427.89 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='515.33,429.65 517.73,424.80 512.93,424.80 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='515.33,424.10 517.73,428.95 512.93,428.95 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='515.33,453.29 517.73,448.44 512.93,448.44 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='515.33,447.75 517.73,452.60 512.93,452.60 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='563.73,448.76 566.13,443.91 561.33,443.91 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='563.73,443.22 566.13,448.07 561.33,448.07 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='563.73,434.16 566.13,429.31 561.33,429.31 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='563.73,428.62 566.13,433.46 561.33,433.46 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='582.07,420.59 584.47,415.74 579.67,415.74 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='582.07,415.05 584.47,419.90 579.67,419.90 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='582.07,419.20 584.47,414.35 579.67,414.35 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='582.07,413.66 584.47,418.51 579.67,418.51 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='589.42,442.69 591.82,437.84 587.02,437.84 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='589.42,437.15 591.82,442.00 587.02,442.00 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='589.42,435.04 591.82,430.19 587.02,430.19 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='589.42,429.50 591.82,434.35 587.02,434.35 ' style='stroke-width: 0.75; stroke: #2297E6; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='414.86' y1='426.97' x2='418.43' y2='426.97' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='416.65' y1='428.76' x2='416.65' y2='425.19' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='414.86' y='425.19' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='414.86' y1='442.27' x2='418.43' y2='442.27' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='416.65' y1='444.06' x2='416.65' y2='440.49' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='414.86' y='440.49' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.24' y1='436.30' x2='430.80' y2='436.30' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.02' y1='438.09' x2='429.02' y2='434.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='427.24' y='434.52' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='427.24' y1='438.39' x2='430.80' y2='438.39' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.02' y1='440.17' x2='429.02' y2='436.61' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='427.24' y='436.61' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='449.49' y1='433.52' x2='453.05' y2='433.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.27' y1='435.30' x2='451.27' y2='431.73' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='449.49' y='431.73' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='449.49' y1='428.65' x2='453.05' y2='428.65' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='451.27' y1='430.43' x2='451.27' y2='426.87' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='449.49' y='426.87' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='481.61' y1='431.83' x2='485.17' y2='431.83' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='483.39' y1='433.61' x2='483.39' y2='430.04' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='481.61' y='430.04' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='481.61' y1='426.96' x2='485.17' y2='426.96' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='483.39' y1='428.74' x2='483.39' y2='425.18' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='481.61' y='425.18' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='526.59' y1='422.21' x2='530.16' y2='422.21' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='528.38' y1='424.00' x2='528.38' y2='420.43' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='526.59' y='420.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='526.59' y1='421.52' x2='530.16' y2='421.52' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='528.38' y1='423.30' x2='528.38' y2='419.74' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='526.59' y='419.74' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='576.09' y1='436.59' x2='579.66' y2='436.59' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='577.87' y1='438.37' x2='577.87' y2='434.80' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='576.09' y='434.80' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='576.09' y1='424.76' x2='579.66' y2='424.76' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='577.87' y1='426.55' x2='577.87' y2='422.98' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='576.09' y='422.98' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.68' y1='443.13' x2='596.24' y2='443.13' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='594.46' y1='444.91' x2='594.46' y2='441.35' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='592.68' y='441.35' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.68' y1='419.48' x2='596.24' y2='419.48' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='594.46' y1='421.27' x2='594.46' y2='417.70' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='592.68' y='417.70' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.70' y1='451.93' x2='601.26' y2='451.93' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='599.48' y1='453.71' x2='599.48' y2='450.15' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='597.70' y='450.15' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='597.70' y1='423.41' x2='601.26' y2='423.41' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='599.48' y1='425.20' x2='599.48' y2='421.63' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='597.70' y='421.63' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #28E2E5;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='417.37' cy='430.31' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.59' y1='432.09' x2='419.15' y2='428.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.59' y1='428.53' x2='419.15' y2='432.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='417.37' cy='424.75' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.59' y1='426.53' x2='419.15' y2='422.96' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='415.59' y1='422.96' x2='419.15' y2='426.53' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='431.01' cy='433.30' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.23' y1='435.09' x2='432.79' y2='431.52' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.23' y1='431.52' x2='432.79' y2='435.09' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='431.01' cy='443.04' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.23' y1='444.82' x2='432.79' y2='441.26' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='429.23' y1='441.26' x2='432.79' y2='444.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='455.19' cy='433.15' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='453.41' y1='434.93' x2='456.98' y2='431.37' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='453.41' y1='431.37' x2='456.98' y2='434.93' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='455.19' cy='425.50' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='453.41' y1='427.28' x2='456.98' y2='423.72' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='453.41' y1='423.72' x2='456.98' y2='427.28' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='489.23' cy='421.60' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='487.44' y1='423.38' x2='491.01' y2='419.82' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='487.44' y1='419.82' x2='491.01' y2='423.38' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='489.23' cy='431.34' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='487.44' y1='433.12' x2='491.01' y2='429.56' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='487.44' y1='429.56' x2='491.01' y2='433.12' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='534.79' cy='433.58' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.00' y1='435.36' x2='536.57' y2='431.79' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.00' y1='431.79' x2='536.57' y2='435.36' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='534.79' cy='418.28' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.00' y1='420.06' x2='536.57' y2='416.49' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='533.00' y1='416.49' x2='536.57' y2='420.06' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='580.95' cy='425.38' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='579.17' y1='427.16' x2='582.73' y2='423.60' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='579.17' y1='423.60' x2='582.73' y2='427.16' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='580.95' cy='449.72' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='579.17' y1='451.50' x2='582.73' y2='447.94' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='579.17' y1='447.94' x2='582.73' y2='451.50' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='594.60' cy='408.89' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.82' y1='410.67' x2='596.39' y2='407.11' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.82' y1='407.11' x2='596.39' y2='410.67' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='594.60' cy='446.44' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.82' y1='448.23' x2='596.39' y2='444.66' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='592.82' y1='444.66' x2='596.39' y2='448.23' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='597.59' cy='432.55' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='595.81' y1='434.33' x2='599.38' y2='430.77' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='595.81' y1='430.77' x2='599.38' y2='434.33' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<circle cx='597.59' cy='436.72' r='1.78pt' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='595.81' y1='438.51' x2='599.38' y2='434.94' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<line x1='595.81' y1='434.94' x2='599.38' y2='438.51' style='stroke-width: 0.75; stroke: #CD0BBC;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='421.08,429.80 422.86,433.36 419.30,433.36 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='419.30' y='429.80' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='421.08,434.66 422.86,438.23 419.30,438.23 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='419.30' y='434.66' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='441.13,435.12 442.91,438.68 439.35,438.68 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='439.35' y='435.12' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='441.13,432.33 442.91,435.90 439.35,435.90 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='439.35' y='432.33' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='474.76,419.17 476.54,422.73 472.98,422.73 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='472.98' y='419.17' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='474.76,444.20 476.54,447.77 472.98,447.77 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='472.98' y='444.20' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='517.75,441.76 519.53,445.33 515.97,445.33 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='515.97' y='441.76' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='517.75,433.42 519.53,436.98 515.97,436.98 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='515.97' y='433.42' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='566.98,414.72 568.76,418.28 565.20,418.28 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='565.20' y='414.72' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='566.98,433.50 568.76,437.06 565.20,437.06 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='565.20' y='433.50' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='607.55,431.07 609.33,434.64 605.77,434.64 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='605.77' y='431.07' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='607.55,451.24 609.33,454.81 605.77,454.81 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='605.77' y='451.24' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='618.60,414.82 620.38,418.38 616.82,418.38 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='616.82' y='414.82' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='618.60,444.03 620.38,447.59 616.82,447.59 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='616.82' y='444.03' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='620.89,418.43 622.67,422.00 619.10,422.00 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='619.10' y='418.43' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='620.89,425.39 622.67,428.95 619.10,428.95 ' style='stroke-width: 0.75; stroke: #F5C710; fill: none;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<rect x='619.10' y='425.39' width='3.56' height='3.56' style='stroke-width: 0.75; stroke: #F5C710;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='420.61,437.40 424.18,437.40 424.18,433.84 420.61,433.84 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='420.61,433.93 424.18,433.93 424.18,430.36 420.61,430.36 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='442.67,433.45 446.23,433.45 446.23,429.89 442.67,429.89 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='442.67,437.62 446.23,437.62 446.23,434.06 442.67,434.06 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='478.39,419.95 481.95,419.95 481.95,416.38 478.39,416.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='478.39,446.37 481.95,446.37 481.95,442.81 478.39,442.81 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='521.44,416.75 525.00,416.75 525.00,413.18 521.44,413.18 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='521.44,429.96 525.00,429.96 525.00,426.40 521.44,426.40 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='566.54,429.94 570.11,429.94 570.11,426.38 566.54,426.38 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='566.54,428.55 570.11,428.55 570.11,424.99 566.54,424.99 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='601.78,440.64 605.34,440.64 605.34,437.08 601.78,437.08 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='601.78,441.34 605.34,441.34 605.34,437.78 601.78,437.78 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='613.54,445.82 617.10,445.82 617.10,442.25 613.54,442.25 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='613.54,434.69 617.10,434.69 617.10,431.13 613.54,431.13 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='618.25,453.58 621.81,453.58 621.81,450.02 618.25,450.02 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
<polygon points='618.25,417.42 621.81,417.42 621.81,413.86 618.25,413.86 ' style='stroke-width: 0.75; stroke: none; fill: #9E9E9E;' clip-path='url(#cpMzk4Ljk3fDcwMC4wNHw1MjcuNTN8MzM3LjM1)' />
</svg>

Contact - Imprint