@tekkare/auriga 0.1.175 → 0.1.176
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/module.json +1 -1
- package/dist/runtime/components/argAdvancedSearchBar.vue +1 -1
- package/dist/runtime/components/argChart.vue +1 -1
- package/dist/runtime/components/argExportXLSX.vue +6 -3
- package/dist/runtime/components/argMapsEurope.vue +216 -0
- package/dist/runtime/components/argMapsEurope.vue.d.ts +57 -0
- package/dist/runtime/components/argMapsFrDepartements.vue +1 -1
- package/dist/runtime/components/argMapsFrDepartements.vue.d.ts +1 -1
- package/dist/runtime/components/argMapsFrRegions.vue +1 -1
- package/dist/runtime/components/argMapsFrRegions.vue.d.ts +1 -1
- package/dist/runtime/components/argMapsFrRegionsToDepartements.vue +1130 -0
- package/dist/runtime/components/argMapsFrRegionsToDepartements.vue.d.ts +95 -0
- package/dist/runtime/components/argMapsUs.vue +216 -0
- package/dist/runtime/components/argMapsUs.vue.d.ts +57 -0
- package/dist/runtime/components/argNumberInput.vue +1 -1
- package/dist/runtime/components/argSearchInput.vue +165 -19
- package/dist/runtime/components/argSearchInput.vue.d.ts +70 -0
- package/dist/runtime/components/argSimpleInput.vue +1 -1
- package/dist/runtime/components/maps/countryEuropPath.json +177 -0
- package/dist/runtime/components/maps/departementsPath.json +406 -0
- package/dist/runtime/components/{mapsFr → maps}/interfaces.d.ts +112 -0
- package/dist/runtime/components/{mapsFr → maps}/interfaces.mjs +114 -0
- package/dist/runtime/components/maps/regionsPath.json +164 -0
- package/dist/runtime/components/maps/usStatesPath.json +152 -0
- package/dist/runtime/components/oneCountryEurope.vue +62 -0
- package/dist/runtime/components/oneCountryEurope.vue.d.ts +54 -0
- package/dist/runtime/components/oneDepartementFr.vue +1 -1
- package/dist/runtime/components/oneDepartementFr.vue.d.ts +1 -1
- package/dist/runtime/components/oneRegionFr.vue +1 -1
- package/dist/runtime/components/oneRegionFr.vue.d.ts +1 -1
- package/dist/runtime/components/oneRegionToDepartements.vue +178 -0
- package/dist/runtime/components/oneRegionToDepartements.vue.d.ts +111 -0
- package/dist/runtime/components/oneStateUs.vue +62 -0
- package/dist/runtime/components/oneStateUs.vue.d.ts +54 -0
- package/package.json +1 -1
- package/dist/runtime/components/mapsFr/departementsPath.json +0 -407
- package/dist/runtime/components/mapsFr/regionsPath.json +0 -164
|
@@ -0,0 +1,1130 @@
|
|
|
1
|
+
<template>
|
|
2
|
+
<div class="oip_table_card map_card-container" :id="`container_map-${title}`">
|
|
3
|
+
<div class="p-24">
|
|
4
|
+
<div class="oip_row v-center">
|
|
5
|
+
{{ title ? title : "Your map title" }}
|
|
6
|
+
<p class="blue">
|
|
7
|
+
{{ withDynamicTitle && clickedRegion ? ", " + clickedRegion : "" }}
|
|
8
|
+
</p>
|
|
9
|
+
</div>
|
|
10
|
+
<ArgSourceContainer @click="openSource">
|
|
11
|
+
{{ source ? source : "Your source" }}
|
|
12
|
+
</ArgSourceContainer>
|
|
13
|
+
</div>
|
|
14
|
+
<div
|
|
15
|
+
v-if="
|
|
16
|
+
(clickedRegion === null && hoveredRegion !== null) ||
|
|
17
|
+
(clickedRegion !== null && hoveredDepartement !== null) ||
|
|
18
|
+
hoveredRegion !== clickedRegion
|
|
19
|
+
"
|
|
20
|
+
:id="`tooltip_map-${title}`"
|
|
21
|
+
class="tooltip_container"
|
|
22
|
+
:style="{
|
|
23
|
+
top: tooltipPosition.y + 'px',
|
|
24
|
+
left: tooltipPosition.x + 'px',
|
|
25
|
+
width: tooltipPosition.width + 'px',
|
|
26
|
+
}"
|
|
27
|
+
>
|
|
28
|
+
<div class="tooltip">
|
|
29
|
+
<p class="card_title">
|
|
30
|
+
{{
|
|
31
|
+
clickedRegion &&
|
|
32
|
+
(clickedRegion === hoveredRegion || hoveredRegion === null)
|
|
33
|
+
? hoveredDepartement
|
|
34
|
+
: hoveredRegion
|
|
35
|
+
}}
|
|
36
|
+
</p>
|
|
37
|
+
<div class="card_text">
|
|
38
|
+
<slot
|
|
39
|
+
v-if="clickedRegion === null"
|
|
40
|
+
name="Tooltip"
|
|
41
|
+
v-bind:value="{
|
|
42
|
+
name: hoveredRegion,
|
|
43
|
+
value: RegionsData.find((x) => x.name == hoveredRegion)?.value,
|
|
44
|
+
}"
|
|
45
|
+
/>
|
|
46
|
+
|
|
47
|
+
<slot
|
|
48
|
+
v-else-if="
|
|
49
|
+
clickedRegion !== null && hoveredRegion !== clickedRegion
|
|
50
|
+
"
|
|
51
|
+
name="Tooltip"
|
|
52
|
+
v-bind:value="{
|
|
53
|
+
name: hoveredRegion,
|
|
54
|
+
value: RegionsData.find((x) => x.name == hoveredRegion)?.value,
|
|
55
|
+
}"
|
|
56
|
+
/>
|
|
57
|
+
<slot
|
|
58
|
+
v-else-if="clickedRegion !== null && hoveredDepartement !== null"
|
|
59
|
+
name="Tooltip"
|
|
60
|
+
v-bind:value="{
|
|
61
|
+
name: hoveredDepartement,
|
|
62
|
+
value: data.find((x) => x.name == hoveredDepartement)?.value,
|
|
63
|
+
}"
|
|
64
|
+
/>
|
|
65
|
+
</div>
|
|
66
|
+
</div>
|
|
67
|
+
</div>
|
|
68
|
+
<div class="map_container">
|
|
69
|
+
<div
|
|
70
|
+
class="back_button oip_row gap-8 v-center"
|
|
71
|
+
v-if="clickedRegion"
|
|
72
|
+
@click="handleBackClick"
|
|
73
|
+
>
|
|
74
|
+
<ArgIcon name="CaretLeft" size="16" />
|
|
75
|
+
<p>Retour aux régions</p>
|
|
76
|
+
</div>
|
|
77
|
+
|
|
78
|
+
<svg
|
|
79
|
+
:class="
|
|
80
|
+
clickedRegion !== null
|
|
81
|
+
? clickedRegion === Regions.NouvelleAquitaine
|
|
82
|
+
? 'map small_scale'
|
|
83
|
+
: clickedRegion === Regions.IleDeFrance
|
|
84
|
+
? 'map large_scale'
|
|
85
|
+
: 'map scaled'
|
|
86
|
+
: 'map'
|
|
87
|
+
"
|
|
88
|
+
:componentKey="componentKey"
|
|
89
|
+
width="auto"
|
|
90
|
+
height="500"
|
|
91
|
+
:style="{ top: mapPosition.y + 'px', left: mapPosition.x + 'px' }"
|
|
92
|
+
viewBox="0 0 1856 1502"
|
|
93
|
+
fill="none"
|
|
94
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
95
|
+
@click="handleSVGClick"
|
|
96
|
+
>
|
|
97
|
+
<oneRegionToDepartements
|
|
98
|
+
v-for="region in Regions"
|
|
99
|
+
:key="region"
|
|
100
|
+
:data="{
|
|
101
|
+
color:
|
|
102
|
+
getColor(RegionsData.find((x) => x.name == region)?.value) ??
|
|
103
|
+
'var(--light)',
|
|
104
|
+
value: RegionsData.find((x) => x.name == region)?.value ?? null,
|
|
105
|
+
}"
|
|
106
|
+
:dptData="
|
|
107
|
+
data.filter((x) =>
|
|
108
|
+
regionsPath[region].departments.includes(x.name)
|
|
109
|
+
) ?? ''
|
|
110
|
+
"
|
|
111
|
+
:scale="dptScale"
|
|
112
|
+
:current-region="region"
|
|
113
|
+
:current-departement="hoveredDepartement"
|
|
114
|
+
:title="title"
|
|
115
|
+
:hoveredRegion="hoveredRegion"
|
|
116
|
+
:clickedRegion="clickedRegion"
|
|
117
|
+
:setTooltipPosition="setTooltipPosition"
|
|
118
|
+
@click="handleClick(region)"
|
|
119
|
+
@hover="handleHover(region)"
|
|
120
|
+
@departementHover="handleDepartementHover"
|
|
121
|
+
@mouseleave="handleMouseLeave"
|
|
122
|
+
@mouseLeaveDepartement="handleDepartementMouseLeave"
|
|
123
|
+
/>
|
|
124
|
+
</svg>
|
|
125
|
+
<svg
|
|
126
|
+
:class="
|
|
127
|
+
clickedRegion !== null
|
|
128
|
+
? clickedRegion === Regions.NouvelleAquitaine
|
|
129
|
+
? 'map small_scale map_placeholder'
|
|
130
|
+
: clickedRegion === Regions.IleDeFrance
|
|
131
|
+
? 'map large_scale map_placeholder'
|
|
132
|
+
: 'map scaled map_placeholder'
|
|
133
|
+
: 'map map_placeholder'
|
|
134
|
+
"
|
|
135
|
+
:componentKey="componentKey"
|
|
136
|
+
width="auto"
|
|
137
|
+
:height="clickedRegion !== null ? 500 : 476"
|
|
138
|
+
:style="{ top: mapPosition.y + 'px', left: mapPosition.x + 'px' }"
|
|
139
|
+
viewBox="0 0 1856 1502"
|
|
140
|
+
fill="none"
|
|
141
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
142
|
+
>
|
|
143
|
+
<path
|
|
144
|
+
d="M1345.07 792.539L1362.25 739.809L1374.61 745.128L1386.45 739.732L1393.66 749.163L1402.04 750.961L1400.39 756.075L1408.69 760.829L1411.54 771.879L1413.72 766.123L1419.17 771.108L1418.99 778.997L1425.95 778.354L1437.05 766.637L1444.6 772.084L1445.83 779.536L1461.22 778.945L1482.02 755.638L1493.24 763.219L1486.03 775.836L1488.42 781.078L1473 786.372L1470.49 799.271L1463.71 801.353L1463.04 806.467L1455.92 803.666L1456.8 828.951L1451.15 861.612L1443.31 863.719L1441.75 874.229L1435.12 878.52L1406.1 837.405L1392.38 854.879L1379.43 848.044L1359.86 849.663L1355.91 835.478L1347.71 835.453L1348.15 831.855L1339.75 828.489L1341.5 805.953L1347.48 796.368L1345.07 792.539Z"
|
|
145
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
146
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
147
|
+
stroke-width="1.34132"
|
|
148
|
+
/>
|
|
149
|
+
<path
|
|
150
|
+
d="M1173.67 181.366L1194.04 177.178L1207.6 180.261L1213.25 174.197L1225.58 178.36L1231.46 171.756L1248.26 177.075L1249.88 181.777L1260 176.021L1259.82 184.398L1277.13 186.66L1286.64 190.052L1288.9 205.007L1283.86 219.577L1288.54 223.355L1275.36 236.357L1274.15 243.758L1264.39 245.583L1270.2 253.934L1267.01 280.967L1265.78 288.496L1253.73 280.89L1246.46 285.233L1246 291.015L1238.17 289.139L1224.02 296.128L1224.94 312.548L1235.01 321.337L1221.55 322.699L1219.26 327.71L1223.24 334.596L1217.59 341.123L1224.58 340.121L1227.46 344.824L1206.91 371.034L1204.34 373.399L1196.02 367.848L1194.38 358.726L1190.27 362.015L1187.7 355.436L1183.41 357.03L1173.06 345.132L1172.77 331.102L1162.94 328.198L1170.95 321.131L1166.02 315.041L1164.68 321.311L1164.22 315.889L1156.05 312.086L1157.65 319.461L1150.89 310.364L1159.6 309.388L1159.39 300.522L1153.82 300.24L1151.99 293.893L1160.03 293.636L1165.3 276.496L1172.88 275.391L1166.71 271.1L1165.3 263.416L1170 253.317L1165.2 245.505L1168.07 231.783L1161.11 211.02L1176.96 185.915L1171.75 184.707L1173.67 181.366Z"
|
|
151
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
152
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
153
|
+
stroke-width="1.34132"
|
|
154
|
+
/>
|
|
155
|
+
<path
|
|
156
|
+
d="M1078.51 755.047L1087.06 740.117L1105.81 739.732L1114.14 734.438L1109.38 718.069L1115.55 718.121L1115.16 713.213L1124.92 704.681L1129.75 709.076L1138.84 707.714L1146.78 697.281L1158.57 696.972L1176.78 715.448L1183.92 709.05L1192.22 714.164L1200.08 709.512L1206.65 719.38L1215.03 713.393L1213.61 708.151L1218.88 707.919L1218.83 701.521L1222.32 704.065L1234.39 736.7L1244.74 737.83L1247.7 744.383L1256.92 743.843L1261.88 748.572L1262.39 769.283L1251.14 777.224L1237.14 782.877L1243.87 819.7L1230.8 823.632L1229.2 830.262L1218.29 815.974L1204.75 818.364L1204.49 810.398L1199.92 808.162L1190.65 812.634L1169.05 808.805L1165.02 801.944L1156.8 803.82L1146.06 792.256L1149.53 782.568L1146.7 781.052L1137.35 781.643L1134.97 789.455L1126.75 785.421L1116.76 801.353L1109.13 797.601L1100.06 776.555L1080.85 766.842L1084.32 762.808L1079.26 760.957L1078.51 755.047Z"
|
|
157
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
158
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
159
|
+
stroke-width="1.34132"
|
|
160
|
+
/>
|
|
161
|
+
<path
|
|
162
|
+
d="M1440.59 1092.01L1453.41 1088.72L1465.48 1092.16L1456.49 1078.57L1460.91 1076.44L1466.79 1083.56L1464.76 1070.35L1470 1061.56L1483.23 1055.29L1484.08 1049.43L1492.01 1051.82L1499.36 1063.67L1503.08 1059.17L1500 1051.64L1509.99 1051.46L1513.77 1042.75L1525.12 1053.39L1542.56 1053.98L1547.62 1039.97L1576.44 1022.99L1578.21 1028.46L1566.24 1041.75L1576.13 1056.57L1570.22 1057.81L1569.73 1066.83L1561.62 1071.2L1548.34 1095.3L1554.79 1114.29L1575.69 1135.26L1569.53 1136.85L1563.75 1132.53L1555.07 1139.37L1546.9 1136.9L1549.98 1141.5L1546.26 1145.41L1551.04 1147.87L1542.87 1151.52L1519.39 1151.09L1516 1159.57L1498.07 1149.93L1477.5 1169.05L1467.25 1156.05L1459.14 1161.85L1456.98 1157.49L1449.58 1159.72L1438.33 1146.08L1426.67 1147.41L1433.42 1132.87L1422.71 1127.55L1426.54 1110.41L1422.3 1110.92L1421.66 1103.16L1430.21 1097.82L1430.14 1092.47L1440.85 1098.67L1437.1 1095.35L1440.59 1092.01Z"
|
|
163
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
164
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
165
|
+
stroke-width="1.34132"
|
|
166
|
+
/>
|
|
167
|
+
<path
|
|
168
|
+
d="M1502.9 952.219L1510.66 952.707L1514.02 960.699L1523.22 963.423L1529.54 954.789L1542.38 954.84L1546.87 968.46L1554.43 969.308L1555.15 985.676L1567.14 993.925L1574.85 992.178L1584.09 997.985L1581.68 1003.12L1589.87 1018.77L1580.34 1017.82L1576.44 1022.99L1547.62 1039.97L1542.56 1053.98L1525.12 1053.39L1513.77 1042.75L1509.99 1051.46L1500 1051.64L1503.08 1059.17L1499.36 1063.67L1492.01 1051.82L1484.08 1049.43L1483.23 1055.29L1470 1061.56L1464.76 1070.35L1466.79 1083.56L1460.91 1076.44L1456.49 1078.57L1465.48 1092.16L1453.41 1088.72L1440.59 1092.01L1441.72 1080.78L1433.35 1074.92L1435.61 1070.89L1420.89 1070.17L1413.13 1057.34L1421.51 1055.75L1417.32 1046.24L1432.68 1051.31L1439.2 1045.88L1432.14 1039.59L1436.89 1023.76L1452.66 1023.27L1457.03 1017.72L1453.66 1015.33L1456.67 1007.39L1469.9 1007.24L1473 1004.08L1469.74 1000.58L1477.5 995.724L1481.15 998.91L1489.42 991.664L1513.05 993.077L1509.66 971.466L1496.92 968.845L1502.9 952.219Z"
|
|
169
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
170
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
171
|
+
stroke-width="1.34132"
|
|
172
|
+
/>
|
|
173
|
+
<path
|
|
174
|
+
d="M1571.56 1067.29L1584.86 1087.15L1601.58 1090.49L1619.72 1103.24L1654.57 1094.4L1652.72 1100.88L1657.89 1108.04L1651.18 1124.13L1634.69 1138.93L1638.42 1151.73L1633.69 1157.38L1617.92 1162.73L1617.3 1168.07L1615.4 1163.6L1598.5 1171.44L1596.45 1187.19L1592.23 1183.49L1585.86 1188.73L1578.7 1187.22L1574.18 1197.26L1568.78 1189.55L1572.38 1179.38L1560.39 1175.09L1555.53 1158.49L1545.39 1157.43L1542.87 1151.45L1551.04 1147.8L1546.26 1145.33L1549.98 1141.45L1546.9 1136.85L1555.07 1139.29L1563.75 1132.46L1569.53 1136.77L1575.69 1135.21L1554.81 1114.24L1548.36 1095.25L1561.64 1071.17L1569.76 1066.78L1571.56 1067.29Z"
|
|
175
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
176
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
177
|
+
stroke-width="1.34132"
|
|
178
|
+
/>
|
|
179
|
+
<path
|
|
180
|
+
d="M1342.58 916.038L1347.41 926.522L1350.57 947.568L1347.53 952.528L1356.4 980.588L1343.09 1005.26L1345.15 1022.11L1335.87 1037.1L1331.25 1071.38L1331.12 1080.22L1315.76 1069.32L1310.21 1070.12L1308.6 1078.31L1304.08 1077.26L1303.69 1068.93L1296.7 1070.14L1289.33 1081.04L1275.74 1070.4L1267.45 1073.28L1269.25 1060.17L1261.75 1052.1L1258.13 1037.92L1251.58 1032.03L1247.13 1009.65L1253.76 1006L1256.51 997.266L1264.93 996.264L1265.6 990.456L1278.6 990.353L1285.89 976.811L1295.37 975.321L1293.52 968.357L1302.69 965.068L1298.81 961.033L1304.44 955.457L1301.76 949.598L1310.68 953.35L1313.37 935.67L1326.06 933.461L1327.55 924.21L1342.58 916.038Z"
|
|
181
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
182
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
183
|
+
stroke-width="1.34132"
|
|
184
|
+
/>
|
|
185
|
+
<path
|
|
186
|
+
d="M1350.95 157.725L1357.42 160.629L1349.28 172.526L1351.54 176.997L1346.04 188.458L1356.58 198.249L1352.18 205.315L1352.67 217.47L1368.01 216.314L1378.56 222.455L1386.24 233.89L1397.36 233.479L1403.89 240.366L1402.01 247.381L1410.74 246.507L1396.52 258.765L1380.54 250.49L1374.84 265.497L1380.39 272.487L1376.74 281.532L1379.31 285.515L1371.47 292.505L1373.91 302.501L1363.3 308.539L1360.38 303.811L1355.39 304.351L1354.24 310.081L1335.49 305.199L1329.5 309.413L1325.65 299.674L1309.52 302.732L1302.41 294.303L1294.73 294.046L1288.25 284.744L1267.01 280.967L1270.2 253.934L1264.39 245.582L1274.15 243.758L1275.36 236.357L1288.54 223.355L1283.86 219.577L1288.9 205.007L1286.64 190.051L1294.93 188.33L1309.47 193.572L1335.13 183.499L1336.72 167.49L1350.95 157.725Z"
|
|
187
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
188
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
189
|
+
stroke-width="1.34132"
|
|
190
|
+
/>
|
|
191
|
+
<path
|
|
192
|
+
d="M926.815 1292.5L923.425 1279.29L944.487 1265.39L940.608 1263.07L942.098 1250.25L946.105 1252.36L947.697 1245.65L955.172 1244.37L965.882 1254.39L974.178 1249.15L964.803 1243.24L982.269 1235.35L981.961 1231.23L973.382 1228.13L977.492 1220.8L991.773 1236.58L996.165 1234.7L994.983 1224.3L1009.83 1232.47L1015.48 1227.1L1017.84 1239.71L1025.63 1244.8L1032.82 1243.6L1036.93 1250.04L1043.14 1249.27L1042.42 1259.42L1047.1 1262.05L1049.33 1272.4L1041.55 1275.66L1046.51 1277.08L1047.17 1285.64L1035.31 1288.28L1033.69 1293.14L1043.07 1305.04L1057.68 1302.93L1066.8 1310.9L1066.08 1315.7L1048.38 1315.96L1045.79 1322.36L1025.83 1328.57L1019.33 1326.26L1020.39 1322.41L1000.63 1316.78L993.134 1317.37L988.588 1324.41L979.983 1307.61L960.052 1309.15L950.446 1297.61L934.11 1297.48L926.815 1292.5Z"
|
|
193
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
194
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
195
|
+
stroke-width="1.34132"
|
|
196
|
+
/>
|
|
197
|
+
<path
|
|
198
|
+
d="M1214.82 408.937L1223.45 421.631L1243.25 425.357L1247.49 421.708L1246.08 414.847L1251.24 415.772L1270.48 395.343L1275.98 397.759L1293.88 393.262L1297.47 399.095L1295.7 409.271L1304.77 417.957L1319.95 423.713L1325.01 419.241L1333.25 422.762L1328.89 433.966L1337.16 445.272L1351.44 453.084L1348.61 456.116L1353.75 465.187L1350.9 490.833L1339.85 488.906L1332.02 494.996L1338.98 500.366L1337.08 504.247L1324.29 502.705L1319.08 506.559L1321.05 512.675L1295.45 513.754L1293.13 519.536L1288 518.714L1286.04 512.058L1283.48 516.915L1279.73 514.037L1273.64 519.382L1268.3 516.247L1266.65 519.51L1250.68 518.868L1252.65 510.851L1250.65 507.382L1246.08 510.337L1248.24 505.249L1239.63 488.88L1234.14 486.541L1235.06 481.222L1226.4 485.334L1222.47 477.368L1216.98 478.216L1221.24 464.776L1208.94 449.127L1200.87 450.386L1199.38 445.324L1196.02 430.908L1201.82 429.186L1198.48 423.173L1206.42 420.963L1204.7 416.338L1214.82 408.937Z"
|
|
199
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
200
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
201
|
+
stroke-width="1.34132"
|
|
202
|
+
/>
|
|
203
|
+
<path
|
|
204
|
+
d="M1051.77 1203.38L1056.32 1209.19L1066.75 1206.13L1071.45 1210.91L1076.1 1199.78L1090.84 1206.15L1109.59 1205.59L1111.85 1208L1106.12 1216.46L1114.5 1225.45L1122.02 1219.8L1123.97 1226.92L1131.01 1229.31L1134.66 1220.21L1141.31 1218.72L1141.16 1211.17L1143.6 1219.11L1155.77 1220.26L1156.46 1226.97L1175.88 1230.54L1180.84 1235.99L1162.24 1264.02L1159.96 1290.26L1140.8 1278.77L1132.76 1281.96L1127.34 1290.77L1084.65 1290L1086.4 1306.45L1069.32 1317.5L1066.08 1315.7L1066.8 1310.89L1057.68 1302.93L1043.07 1305.04L1033.69 1293.14L1035.31 1288.28L1047.17 1285.63L1046.51 1277.08L1041.55 1275.66L1049.33 1272.4L1047.1 1262.05L1042.42 1259.42L1043.14 1249.27L1036.93 1250.04L1032.82 1243.59L1025.63 1244.8L1017.84 1239.71L1015.48 1227.1L1019.05 1217.08L1028.73 1217.18L1027.45 1209.67L1032.87 1202.35L1038.29 1209.52L1039.83 1205.54L1047.38 1207.31L1051.77 1203.38Z"
|
|
205
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
206
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
207
|
+
stroke-width="1.34132"
|
|
208
|
+
/>
|
|
209
|
+
<path
|
|
210
|
+
d="M1070.75 1028.67L1071.58 1023.84L1080.08 1020.98L1086.19 1025.15L1100.21 1023.63L1108.36 1013.25L1113.11 994.413L1127.21 980.074L1131.04 992.896L1140.28 990.121L1153.31 1024.55L1164.38 1037.27L1162.35 1045.68L1170.67 1055.29L1168.15 1081.42L1171.49 1079.52L1172.41 1084.04L1179.81 1086.15L1176.99 1092.14L1193.78 1090.6L1194.91 1095.09L1183.18 1106.6L1203.16 1116.86L1193.53 1133.05L1183.46 1135.87L1177.4 1148.05L1162.11 1144.58L1161.78 1165.53L1148.35 1165.35L1145.98 1158.56L1136.46 1155.45L1127.8 1160.26L1118.78 1156.15L1108.41 1143.22L1107.51 1131.33L1101.99 1128.37L1105.3 1123.64L1084.03 1102.01L1068.29 1099.95L1073.81 1096.38L1063.72 1090.57L1047.53 1098.23L1037.08 1089.72L1045.56 1079.98L1034.87 1077.1L1036.13 1070.14L1039.37 1067.47L1031.69 1049.07L1036.82 1045.45L1039.93 1048.17L1054.93 1033.78L1069.62 1033.45L1070.75 1028.67Z"
|
|
211
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
212
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
213
|
+
stroke-width="1.34132"
|
|
214
|
+
/>
|
|
215
|
+
<path
|
|
216
|
+
d="M1340.83 1131.71L1363.74 1138.5L1373.89 1151.88L1387.4 1159.34L1401.52 1158.98L1424.85 1170.51L1432.94 1170.59L1449.02 1161.08L1455.31 1166.09L1453.48 1170.46L1443.11 1172.85L1438.48 1183.13L1445.83 1186.5L1443.11 1196.49L1452.66 1205.59L1441.34 1208.78L1443.72 1215.1L1440.18 1220.55L1449.94 1225.86L1441.39 1232.7L1440.15 1240.79L1434.94 1239.79L1433.04 1243.67L1425.74 1235.73L1406.46 1236.63L1408.54 1229.82L1403.27 1215.12L1373.84 1219.62L1365.31 1204.95L1356.63 1206.67L1353.72 1200.63L1355.5 1207.11L1349.87 1205.05L1355.57 1215.1L1351.1 1219.26L1323.98 1214.51L1324.88 1205.49L1318.77 1201.09L1286.46 1199.91L1287.59 1194.13L1296.32 1189.89L1295.27 1185.91L1297.4 1188.76L1311.06 1180.84L1312.17 1177.45L1307.29 1175.76L1313.63 1164.99L1328.81 1166.71L1333.02 1143.27L1330.27 1140.06L1340.83 1131.71Z"
|
|
217
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
218
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
219
|
+
stroke-width="1.34132"
|
|
220
|
+
/>
|
|
221
|
+
<path
|
|
222
|
+
d="M867.072 276.624L868.434 301.036L876.345 300.702L869.615 306.792L877.5 312.934L876.499 322.133L881.636 324.215L880.197 334.853L874.624 338.528L883.074 343.924L879.581 355.231L864.94 352.507L851.841 359.393L848.759 355.025L828.083 373.013L819.53 373.707L821.918 376.867L802.783 370.16L798.391 375.865L791.764 368.028L774.273 374.632L761.43 371.908L759.196 379.437L745.737 387.197L747.663 384.037L741.191 386.555L733.896 381.236L719.898 383.06L711.756 375.094L726.627 362.271L726.319 358.905L720.514 359.625L722.595 353.894L734.513 352.687L743.554 342.228L741.55 328.095L736.85 330.407L740.677 325.988L733.023 320.668L740.677 314.347L736.567 309.362L731.456 316.017L720.334 309.002L714.17 303.066L716.225 291.143L720.694 283.691L733.896 282.56L747.689 289.061L793.28 292.967L811.696 301.242L835.197 294.303L848.887 281.815L865.737 276.675L867.072 276.624Z"
|
|
223
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
224
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
225
|
+
stroke-width="1.34132"
|
|
226
|
+
/>
|
|
227
|
+
<path
|
|
228
|
+
d="M1102.86 898.975L1122.02 905.168L1124.82 913.648L1142.9 913.391L1155.26 927.524L1167.2 918.197L1164.02 927.679L1178.99 929.529L1186.05 953.093L1193.68 955.637L1185.41 955.688L1193.76 975.603L1185.69 982.233L1181.02 980.922L1175.7 991.895L1170.41 985.882L1166.28 988.349L1153.31 1024.56L1140.28 990.122L1131.04 992.897L1127.21 980.074L1113.11 994.413L1108.36 1013.25L1100.21 1023.63L1086.19 1025.15L1080.08 1020.98L1071.58 1023.84L1070.75 1028.67L1062.43 1016.74L1066.9 1003L1058.32 990.276L1055.16 974.935L1063.84 971.106L1059.12 962.292L1067.06 958.952L1067.75 950.677L1073.48 945.949L1069.29 937.906L1086.96 920.484L1086.4 908.637L1099.85 915.447L1104.48 913.648L1100.6 907.995L1102.86 898.975Z"
|
|
229
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
230
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
231
|
+
stroke-width="1.34132"
|
|
232
|
+
/>
|
|
233
|
+
<path
|
|
234
|
+
d="M855.899 804.976L880.814 812.197L886.593 809.55L882.612 804.025L887.774 798.655L898.844 808.548L908.605 804.899L911.353 798.192L923.245 799.94L922.141 811.76L934.11 818.159L935.677 826.15L927.021 832.266L921.91 829.979L918.776 851.436L911.225 849.509L911.558 855.907L902.543 863.847L895.634 875.488L889.829 875.565L889.136 887.9L881.379 897.844L870.591 904.5L867.586 901.879L861.73 915.524L863.759 926.445L849.761 940.218L841.207 937.058L835.839 942.403L835.711 936.878L823.023 933.82L823.562 927.498L811.875 922.668L805.017 924.672L809.23 916.783L802.218 913.16L810.309 909.254L804.786 902.367L809.564 895.377L800.985 890.444L802.346 884.045L789.375 876.799L794.564 872.225L790.3 867.574L792.612 859.967L786.19 858.682L804.709 849.046L818.81 853.235L823.408 839.23L819.35 830.853L824.949 830.544L824.384 824.249L831.293 820.728L831.447 811.323L837.329 811.606L845.831 803.434L855.899 804.976Z"
|
|
235
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
236
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
237
|
+
stroke-width="1.34132"
|
|
238
|
+
/>
|
|
239
|
+
<path
|
|
240
|
+
d="M685.3 812.249L703.382 822.09L708.725 836.943L704.127 850.28L700.069 837.868L687.509 826.716L685.3 812.249ZM674.281 780.076L678.185 783.674L673.947 783.622L675.257 788.273L684.658 784.265L681.833 787.58L701.944 794.672L695.78 797.73L671.841 788.633L668.836 782.235L674.281 780.076ZM716.328 770.98L736.182 762.577L732.817 770.132L735.822 771.879L749.898 766.971L755.42 772.83L755.06 781.875L761.841 786.141L761.584 791.897L770.805 795.366L769.29 798.629L776.405 797.242L781.439 803.435L790.506 802.227L796.542 808.163L804.375 806.338L807.766 811.735L818.374 813.945L824.358 824.275L824.923 830.57L819.324 830.904L823.382 839.282L818.785 853.286L804.684 849.098L786.191 858.708L792.612 859.993L790.3 867.6L794.564 872.251L789.401 876.825L802.346 884.097L800.985 890.495L809.538 895.429L804.761 902.419L810.283 909.305L802.192 913.237L809.204 916.86L804.992 924.749L811.875 922.745L823.536 927.576L822.997 933.897L835.685 936.955L835.814 942.506L831.139 956.048L825.206 953.093L815.009 957.153L797.98 945.846L794.461 949.778L790.249 929.657L775.018 926.702L772.629 919.122L771.756 923.028L758.99 921.948L747.869 897.074L732.766 887.258L726.139 877.287L703.485 866.674L703.331 852.438L714.376 849.869L710.035 841.646L717.766 839.564L720.694 831.033L717.227 820.549L723.057 819.367L711.704 795.931L704.102 796.162L707.184 787.297L717.201 778.946L716.328 770.98Z"
|
|
241
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
242
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
243
|
+
stroke-width="1.34132"
|
|
244
|
+
/>
|
|
245
|
+
<path
|
|
246
|
+
d="M1074.07 567.769L1079.49 566.382L1088.27 573.243L1095.28 569.44L1100.99 575.966L1108.64 575.375L1119.84 589.175L1125.85 587.581L1126.62 580.643L1134.66 587.479L1141.85 583.419L1147.86 596.447L1141.13 612.096L1153.28 624.122L1157.13 655.01L1163.53 661.331L1158.57 696.973L1146.78 697.281L1138.84 707.714L1129.75 709.076L1124.92 704.682L1115.16 713.213L1115.55 718.121L1109.38 718.07L1114.14 734.439L1105.81 739.732L1087.06 740.118L1078.51 755.048L1066.54 754.328L1064.85 749.112L1070.45 745.154L1065.49 733.976L1068.78 720.511L1057.89 709.718L1055.81 703.782L1061.1 699.26L1053.21 690.009L1056.73 690.831L1065.15 678.857L1056.24 675.439L1060.09 665.597L1051.64 657.605L1053.83 648.303L1049.05 650.333L1048.07 645.296L1035.46 649.1L1024.7 644.834L1031.92 637.151L1031.66 630.675L1038.13 631.729L1037.44 625.176L1042.42 619.908L1051.26 624.225L1065.49 618.443L1058.94 607.805L1060.89 599.145L1068.75 596.473L1073.19 601.278L1075.02 588.018L1069.65 588.763L1069.8 579.59L1062.33 578.716L1061.4 573.705L1074.07 567.769Z"
|
|
247
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
248
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
249
|
+
stroke-width="1.34132"
|
|
250
|
+
/>
|
|
251
|
+
<path
|
|
252
|
+
d="M1037.72 865.595L1054.01 855.368L1057.68 860.841L1066.03 859.659L1069.29 865.441L1077.33 866.571L1077.15 870.734L1101.06 859.479L1105.15 871.608L1097.83 881.142L1103.84 887.489L1102.86 898.975L1100.6 907.995L1104.48 913.648L1099.86 915.447L1086.4 908.637L1086.96 920.483L1069.29 937.906L1073.48 945.949L1067.75 950.677L1067.06 958.952L1059.12 962.292L1063.84 971.106L1055.16 974.935L1043.09 978.481L1038.85 974.678L1027.55 982.927L1010.96 967.02L999.401 964.219L989.795 968.279L982.321 955.405L985.942 952.425L975.001 951.242L969.042 946.566L972.869 942.814L966.319 940.45L971.713 934.874L966.268 930.171L967.218 922.796L976.696 913.751L969.633 911.207L973.305 905.862L969.016 904.243L972.484 897.202L979.316 900.697L992.954 885.844L1004.15 887.232L1025.83 868.216L1035.18 870.683L1037.72 865.595Z"
|
|
253
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
254
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
255
|
+
stroke-width="1.34132"
|
|
256
|
+
/>
|
|
257
|
+
<path
|
|
258
|
+
d="M1749.48 1356.4L1770.56 1364.45L1780.27 1363.68L1785.03 1374.65L1799.92 1381.3L1812.28 1407.46L1818.75 1407.08L1819.85 1432.54L1828.87 1435.01L1837.96 1431.16L1836.52 1459.96L1832.88 1465.67L1827.92 1464L1825.63 1471.5L1829.02 1467.36L1834.47 1468.88L1824.3 1477.95L1824.81 1487.36L1818.18 1495.14L1823.45 1492.96L1817.98 1501L1805.19 1497.48L1807.4 1490.82L1802.26 1487.2L1778.3 1479.8L1778.55 1475.71L1772.36 1474.38L1772.18 1465.49L1786.08 1455.65L1771.75 1453.92L1771.03 1448.04L1758.65 1448.14L1766.3 1443L1764.32 1439.33L1770.69 1437.99L1774.03 1426.02L1768.18 1420.59L1753.2 1426.25L1751.58 1416.05L1759.29 1414.25L1758.8 1409.26L1768.1 1403.94L1763.04 1394.98L1758.7 1396.67L1747.83 1390.22L1751.66 1386.98L1745.96 1377.04L1762.27 1372.59L1752.82 1367.25L1753.2 1360.88L1747.29 1363.19L1749.48 1356.4Z"
|
|
259
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
260
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
261
|
+
stroke-width="1.34132"
|
|
262
|
+
/>
|
|
263
|
+
<path
|
|
264
|
+
d="M1840.14 1265.31L1844.46 1268.93L1847.59 1295.19L1842.56 1314.24L1851.81 1332.38L1854.58 1383.13L1853.63 1396.18L1838.94 1417.77L1837.94 1431.18L1828.84 1435.04L1819.83 1432.57L1818.72 1407.1L1812.25 1407.49L1799.9 1381.33L1785 1374.67L1780.25 1363.7L1770.54 1364.47L1749.45 1356.43L1758.34 1351.24L1759.42 1337L1765.14 1335.62L1763.99 1328.19L1772.26 1330.86L1773.88 1324.46L1796.61 1318.86L1808.3 1305.81L1818.65 1305.27L1826.84 1313.75L1831.75 1305.16L1827.97 1291.11L1833.18 1277.69L1831.23 1267.75L1840.14 1265.31Z"
|
|
265
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
266
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
267
|
+
stroke-width="1.34132"
|
|
268
|
+
/>
|
|
269
|
+
<path
|
|
270
|
+
d="M1274.46 645.63L1274.28 642.264L1282.01 641.519L1280.86 647.352L1274.46 645.63ZM1293.13 519.536L1295.45 513.754L1321.08 512.701L1319.08 506.559L1324.29 502.73L1337.08 504.272L1346.51 506.662L1345.61 513.575L1354.21 517.069L1350.62 522.08L1358.24 520.127L1367.9 536.239L1359.61 544.565L1364.2 545.361L1365.26 557.388L1371.68 553.533L1381.16 563.658L1387.65 558.313L1387.14 562.758L1396.26 567.486L1395.44 574.656L1401.27 569.491L1408.25 570.159L1414.16 566.022L1419.58 569.979L1420.53 582.442L1407.66 592.335L1415.32 594.545L1414.62 603.642L1421.74 604.156L1418.5 615.565L1423.82 617.595L1415.32 642.804L1409.59 652.26L1398.8 657.425L1402.47 663.079L1395.85 668.218L1378.97 673.743L1373.84 667.987L1357.35 670.274L1335.28 680.681L1320.31 666.316L1321.05 661.897L1307.52 659.173L1304.87 652.157L1299.76 655.164L1298.89 649.228L1291.16 648.2L1284.35 640.697L1286.28 632.345L1281.01 625.176L1276.23 627.694L1277.23 609.424L1273.33 611.813L1268.94 601.124L1275.05 594.699L1274.2 584.189L1288.59 561.345L1286.22 558.39L1292.23 557.85L1287.41 551.22L1297.5 546.055L1297.19 531.794L1290.82 533.078L1288.23 527.554L1295.21 522.62L1293.13 519.536Z"
|
|
271
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
272
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
273
|
+
stroke-width="1.34132"
|
|
274
|
+
/>
|
|
275
|
+
<path
|
|
276
|
+
d="M491.508 368.49L492.407 373.681L506.045 368.773L506.353 376.251L514.213 375.762L510.566 381.904L522.612 386.298L521.302 392.26L534.966 403.875L534.453 412.483L545.985 418.83L548.99 428.055L549.35 422.556L554.769 423.559L563.014 411.738L571.644 408.063L570.052 404.44L577.552 406.47L588.186 397.425L591.576 401.485L586.208 408.449L596.174 404.543L598.87 417.211L601.182 409.939L602.98 415.515L606.037 408.783L608.708 411.712L617.312 420.989L621.268 416.98L623.836 427.876L627.304 421.606L630.951 421.965L631.696 430.625L627.227 436.869L629.744 452.133L625.48 452.879L626.61 460.999L616.336 460.125L610.737 467.5L602.518 467.808L596.995 484.614L591.525 486.156L584.05 489.856L576.936 479.886L565.095 482.481L563.708 495.433L552.175 502.473L551.739 486.773L541.696 489.034L539.641 493.737L536.379 484.511L515.523 482.044L511.516 475.081L503.22 474.592L500.549 481.531L486.473 485.385L479.641 480.426L470.96 484.409L468.006 477.702L455.215 477.907L460.121 477.239L456.037 471.843L460.223 457.016L456.653 457.247L456.268 447.2L450.951 445.555L456.756 436.253L450.823 431.242L458.04 421.657L447.124 412.457L445.223 402.256L454.907 398.401L453.699 378.409L456.345 380.773L461.713 373.064L473.04 379.386L491.508 368.49Z"
|
|
277
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
278
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
279
|
+
stroke-width="1.34132"
|
|
280
|
+
/>
|
|
281
|
+
<path
|
|
282
|
+
d="M986.276 766.405L998.065 753.968L1000.09 759.236L1006.98 754.79L1009.01 759.93L1015.09 755.253L1019.72 759.595L1025.47 749.368L1031.46 754.122L1066.54 754.328L1078.51 755.047L1079.26 760.957L1084.32 762.808L1080.85 766.842L1100.06 776.555L1109.13 797.601L1107.3 806.338L1113.6 824.557L1101.16 840.335L1090.04 845.937L1101.06 859.479L1077.15 870.734L1077.33 866.571L1069.29 865.441L1066.03 859.659L1057.68 860.841L1054.01 855.368L1037.72 865.595L1036.05 850.742L1024.39 845.166L1024.24 839.924L1012.45 844.806L1005.1 837.714L1010.63 836.146L1010.19 830.904L996.37 829.902L1003.43 822.835L998.733 818.107L999.555 807.392L993.647 803.46L994.906 797.781L981.832 786.551L988.639 777.866L986.276 766.405Z"
|
|
283
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
284
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
285
|
+
stroke-width="1.34132"
|
|
286
|
+
/>
|
|
287
|
+
<path
|
|
288
|
+
d="M902.543 863.848L917.98 870.349L915.488 877.904L921.961 884.405L927.997 877.133L931.028 880.422L943.922 878.957L951.113 891.061L959.743 891.857L954.889 899.438L969.016 904.243L973.305 905.862L969.632 911.207L976.696 913.751L967.218 922.796L966.267 930.171L971.713 934.874L966.319 940.45L972.869 942.814L969.041 946.566L975 951.243L985.942 952.425L982.321 955.405L989.795 968.28L985.737 970.361L988.947 989.89L973.999 1002.07L975.848 1010.42L957.997 1020.91L950.369 1035.25L940.12 1024.66L924.452 1031.21L926.456 1020.96L920.523 1016.15L908.579 1019.88L902.389 1015.3L894.401 1021.32L873.545 1022.94L867.278 1006.77L863.579 997.343L868.793 994.387L864.889 991.175L860.754 990.43L855.668 998.345L831.756 993.488L838.999 984.186L835.583 979.201L843.16 960.699L840.155 953.889L831.165 955.945L835.84 942.403L841.208 937.058L849.761 940.219L863.759 926.445L861.73 915.524L867.586 901.879L870.591 904.5L881.379 897.845L889.136 887.9L889.829 875.565L895.634 875.488L902.543 863.848Z"
|
|
289
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
290
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
291
|
+
stroke-width="1.34132"
|
|
292
|
+
/>
|
|
293
|
+
<path
|
|
294
|
+
d="M1443.24 623.557L1464.35 616.413L1467.53 610.965L1472.98 614.126L1487.23 608.576L1487.7 602.974L1493.22 604.079L1497.12 597.5L1500.85 600.353L1510.89 585.654L1519.06 583.11L1525.43 588.763L1528.46 584.934L1534.49 588.198L1537.09 579.615L1544.31 580.951L1545.51 574.013L1557.02 580.746L1561.13 576.866L1571.22 578.87L1575.8 584.6L1571.81 590.948L1575.39 597.295L1568.86 609.886L1583.5 606.725L1587.69 612.867L1575.69 620.19L1577 627.18L1550.09 652.312L1551.83 657.168L1521.16 676.312L1524.61 682.403L1523.35 700.108L1488.6 728.862L1489.85 733.77L1480.35 726.061L1486.36 719.2L1482.61 713.393L1497.12 701.752L1491.24 692.81L1478.55 688.467L1466.87 662.539L1458.83 664.723L1454.79 657.811L1447.76 661.742L1446.93 656.449L1452.15 656.397L1450.53 650.281L1456.72 643.086L1443.24 623.557Z"
|
|
295
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
296
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
297
|
+
stroke-width="1.34132"
|
|
298
|
+
/>
|
|
299
|
+
<path
|
|
300
|
+
d="M1347.41 926.522L1367.36 919.456L1376.61 928.809L1383.21 926.496L1381.39 934L1390.04 938.497L1386.27 940.989L1388.35 953.195L1383.01 960.211L1390.99 958.695L1409.59 966.095L1420.02 958.669L1417.32 1001.38L1427.62 1006.18L1426.98 1002.07L1437.46 1012.63L1453.64 1015.36L1457 1017.75L1452.64 1023.27L1436.87 1023.78L1432.11 1039.59L1439.2 1045.91L1432.65 1051.33L1417.29 1046.27L1421.48 1055.8L1413.13 1057.37L1420.89 1070.19L1435.61 1070.91L1433.35 1074.97L1441.72 1080.81L1440.59 1092.06L1437.1 1095.4L1440.87 1098.72L1430.14 1092.52L1430.21 1097.87L1421.66 1103.24L1409.36 1097.41L1406.38 1088.64L1385.09 1086.28L1386.4 1073.69L1380.08 1079.24L1374.89 1074.77L1349.2 1086.66L1345.97 1073.92L1331.25 1071.43L1335.87 1037.17L1345.15 1022.19L1343.09 1005.33L1356.4 980.665L1347.53 952.604L1350.54 947.671L1347.41 926.522ZM1367.26 1057.47L1358.91 1061.38L1356.73 1075.13L1367.13 1076.87L1376.1 1064.41L1368.75 1059.12L1367.26 1057.47Z"
|
|
301
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
302
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
303
|
+
stroke-width="1.34132"
|
|
304
|
+
/>
|
|
305
|
+
<path
|
|
306
|
+
d="M867.072 276.624L888.673 268.067L897.843 276.855L903.802 274.774L905.934 281.635L920.831 277.472L929.076 286.517L933.211 284.41L933.391 291.991L927.072 290.629L925.428 294.355L931.593 298.646L935.574 294.638L937.269 303.015L942.714 306.304L948.725 305.07L947.158 298.543L956.482 296.745L958.999 291.503L971.225 290.783L975.103 277.241L983.297 271.69L1003.38 275.596L1011.91 282.149L1018.15 280.813L1027.73 302.552L1026.14 307.203L1022.83 302.912L1017.64 304.171L1017.02 309.542L1006.88 334.596L996.37 333.26L994.11 338.913L989.821 338.451L992.184 351.042L997.372 350.605L995.471 356.798L989.795 359.496L991.105 367.848L980.625 373.912L981.73 382.521L977.132 385.964L954.992 381.184L954.273 388.148L948.776 386.195L943.588 391.489L928.845 393.108L922.346 400.431L912.946 394.495L917.851 389.536L916.156 384.731L900.437 374.272L901.079 366.897L880.48 365.458L876.37 361.321L879.581 355.231L883.074 343.924L874.624 338.528L880.197 334.853L881.636 324.215L876.499 322.133L877.5 312.934L869.615 306.792L876.345 300.702L868.434 301.036L867.072 276.624Z"
|
|
307
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
308
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
309
|
+
stroke-width="1.34132"
|
|
310
|
+
/>
|
|
311
|
+
<path
|
|
312
|
+
d="M995.471 356.798L1005.82 373.141L1006.44 401.793L1025.91 419.241L1027.45 433.195L1034.72 437.409L1040.29 434.582L1040.91 442.908L1046.2 443.628L1044.09 458.198L1047.95 461.949L1045.61 480.014L1038.31 482.147L1036.1 492.04L1021.39 497.514L1008.6 496.486L1005.41 502.782L996.601 503.347L997.577 510.491L990 506.559L981.473 514.911L962.98 512.752L954.067 494.636L941.276 493.197L946.362 486.567L936.653 491.963L925.043 491.141L926.096 486.439L933.005 485.565L920.42 476.725L923.887 473.641L917.466 456.245L932.826 448.176L939.427 437.332L935.163 431.524L938.425 423.97L922.706 409.759L922.346 400.431L928.844 393.108L943.588 391.489L948.776 386.195L954.273 388.148L954.992 381.184L977.132 385.964L981.73 382.521L980.625 373.912L991.105 367.848L989.795 359.496L995.471 356.798Z"
|
|
313
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
314
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
315
|
+
stroke-width="1.34132"
|
|
316
|
+
/>
|
|
317
|
+
<path
|
|
318
|
+
d="M410.677 391.592L414.992 401.254L416.765 395.755L425.215 401.922L427.706 392.44L446.79 396.217L445.224 402.205L447.124 412.406L458.04 421.606L450.823 431.191L456.756 436.201L450.951 445.555L456.242 447.174L456.628 457.221L460.198 456.99L456.011 471.817L460.095 477.214L455.189 477.882L439.239 485L437.107 489.908L447.278 510.08L458.785 509.437L465.592 516.298L470.985 511.801L473.657 514.345L472.912 529.43L467.621 529.327L463.152 535.648L459.145 532.179L458.503 545.207L437.903 538.578L424.342 540.839L413.605 524.367L411.576 530.74L393.263 530.38L388.486 539.939L369.71 539.965L371.79 531.177L364.008 513.6L353.888 506.662L330.361 501.42L332.749 497.36L364.522 490.602L378.083 491.578L379.804 483.047L375.284 475.132L356.842 470.018L349.367 480.503L351.011 467.937L341.945 463.055L348.186 462.643L348.006 454.883L352.193 453.238L351.859 462.361L355.686 457.992L355.352 462.875L364.29 460.742L366.474 463.851L376.182 460.151L381.14 462.978L385.301 457.607L372.998 457.401L376.722 454.652L373.897 450.977L360.078 455.525L366.268 446.455L363.751 444.45L344.153 453.65L336.294 450.926L326.482 455.089L324.094 441.649L328.717 420.783L343.768 415.49L351.063 405.751L357.972 407.884L372.073 399.249L377.313 401.28L377.338 406.265L387.715 403.232L389.025 397.682L402.587 399.378L403.229 394.598L410.677 391.592Z"
|
|
319
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
320
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
321
|
+
stroke-width="1.34132"
|
|
322
|
+
/>
|
|
323
|
+
<path
|
|
324
|
+
d="M1261.75 1052.1L1269.27 1060.2L1267.45 1073.3L1275.74 1070.42L1289.33 1081.06L1296.7 1070.17L1303.72 1068.96L1304.1 1077.29L1308.62 1078.36L1310.24 1070.17L1315.79 1069.37L1331.15 1080.24L1338.83 1092.58L1338.72 1108.25L1351.88 1119.25L1340.88 1131.74L1330.33 1140.01L1333.07 1143.22L1328.86 1166.66L1313.68 1164.94L1307.34 1175.7L1312.22 1177.4L1311.11 1180.79L1297.45 1188.71L1295.32 1185.85L1296.37 1189.84L1287.64 1194.08L1286.51 1199.86L1276.77 1196.52L1272.53 1186.01L1270.56 1180.74L1278.06 1181.43L1282.63 1173.16L1277.26 1159.21L1262.7 1147.51L1258.18 1149.39L1259.77 1143.58L1253.04 1136.88L1241.04 1138.21L1243.56 1129.78L1239.27 1125.29L1228.3 1127.34L1217.08 1143.48L1211.69 1141.84L1210.04 1135.64L1201.41 1140.6L1200.59 1133.41L1193.58 1133.07L1203.21 1116.88L1183.23 1106.66L1194.99 1095.14L1213.18 1103.47L1222.76 1102.39L1226.92 1092.7L1240.3 1101.47L1248.65 1101.65L1253.81 1093.27L1259.2 1096.22L1255.25 1091.39L1259.31 1082.12L1253.78 1075.1L1256.89 1071.14L1249.8 1062.87L1256.58 1061.02L1261.75 1052.1Z"
|
|
325
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
326
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
327
|
+
stroke-width="1.34132"
|
|
328
|
+
/>
|
|
329
|
+
<path
|
|
330
|
+
d="M937.038 1151.68L957.997 1146.56L964.778 1154.63L980.214 1147.34L973.434 1143.15L980.24 1142.27L980.908 1136.67L989.898 1139.47L992.851 1133.87L994.418 1137.03L1001.15 1132.28L1004.77 1147.36L1010.68 1149.8L1011.32 1157.2L1017.3 1162.14L1012.78 1165.5L1018.92 1166.25L1015.53 1175.4L1031.51 1182.51L1039.6 1193.74L1047.56 1197.19L1052.88 1192.18L1051.77 1203.38L1047.38 1207.31L1039.83 1205.54L1038.29 1209.52L1032.87 1202.35L1027.45 1209.68L1028.73 1217.18L1019.05 1217.08L1015.48 1227.1L1009.83 1232.47L994.983 1224.3L996.165 1234.7L991.773 1236.58L977.492 1220.8L973.382 1228.13L981.961 1231.24L982.269 1235.35L964.803 1243.24L974.178 1249.15L965.882 1254.39L955.172 1244.37L947.697 1245.65L946.105 1252.36L942.098 1250.25L940.608 1263.07L944.487 1265.39L923.425 1279.29L926.815 1292.5L907.577 1287.92L904.059 1298.33L907.321 1311.64L886.002 1310.38L883.125 1305.53L886.182 1284.61L895.249 1287.08L904.238 1272.58L900.155 1261.92L891.678 1266.21L895.685 1255.98L882.303 1247.86L890.497 1235.89L896.456 1234.78L894.093 1232.44L903.083 1223.78L900.155 1221.68L917.004 1206.08L933.108 1207.57L940.66 1213.66L946.747 1199.99L943.767 1197.93L949.726 1193.23L947.363 1187.99L963.314 1183.72L937.038 1151.68Z"
|
|
331
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
332
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
333
|
+
stroke-width="1.34132"
|
|
334
|
+
/>
|
|
335
|
+
<path
|
|
336
|
+
d="M843.442 1122.82L849.247 1120.07L852.073 1124.31L858.237 1116.94L867.432 1121.66L898.639 1108.35L906.191 1116.63L914.538 1110.51L917.004 1115.78L926.507 1113.18L916.311 1129.78L931.721 1135.36L930.771 1151.11L937.038 1151.68L963.314 1183.72L947.364 1187.99L949.727 1193.23L943.768 1197.93L946.747 1199.99L940.66 1213.66L933.108 1207.57L917.004 1206.08L900.155 1221.68L870.72 1216.87L866.996 1210.29L854.795 1212.96L847.86 1191.74L841.002 1191.28L833.862 1178.45L825.103 1181.87L809.513 1181.46L805.326 1172.98L814.65 1159.05L811.259 1148.62L814.778 1148.36L815.574 1140.27L809.872 1135.46L816.268 1129.3L825.181 1130.89L831.525 1122.67L836.122 1127.14L833.143 1130.81L841.67 1135.67L843.442 1122.82Z"
|
|
337
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
338
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
339
|
+
stroke-width="1.34132"
|
|
340
|
+
/>
|
|
341
|
+
<path
|
|
342
|
+
d="M722.132 886.487L721.567 893.964L749.538 919.044L761.841 958.052L771.858 969.821L764.025 951.654L759.042 921.82L771.807 922.899L772.68 918.993L775.069 926.574L790.3 929.529L794.513 949.649L798.031 945.718L815.06 957.024L825.257 952.964L831.191 955.919L840.18 953.864L843.185 960.648L835.608 979.149L839.025 984.134L831.781 993.437L855.694 998.293L860.805 990.379L864.915 991.124L868.819 994.31L863.605 997.291L867.304 1006.72L859.804 1006.36L858.853 1012.5L855.591 1008.34L846.293 1015.92L855.309 1021.88L843.057 1038.53L835.84 1038.35L834.119 1058.06L838.28 1064.39L827.338 1067.55L832.141 1079.83L820.634 1086.54L815.189 1079.7L811.439 1080.96L811.542 1089.9L793.742 1089.49L794.333 1077.65L766.901 1060.74L766.773 1053.36L725.651 1057.6L730.12 1044.93L719.795 1041.28L701.636 1050.95L708.288 1022.14L728.297 1025.81L721.311 1016.87L725.112 1016.82L710.883 1004.95L702.406 1028.98L700.788 1026.3L711.936 899.386L722.132 886.487Z"
|
|
343
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
344
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
345
|
+
stroke-width="1.34132"
|
|
346
|
+
/>
|
|
347
|
+
<path
|
|
348
|
+
d="M1193.53 1133.05L1200.54 1133.38L1201.36 1140.58L1209.99 1135.62L1211.64 1141.81L1217.03 1143.45L1228.25 1127.32L1239.22 1125.26L1243.51 1129.76L1240.99 1138.19L1252.99 1136.85L1259.72 1143.56L1258.13 1149.36L1262.65 1147.49L1277.21 1159.18L1282.58 1173.13L1278.01 1181.41L1270.51 1180.71L1272.48 1185.98L1251.76 1191.71L1223.91 1211.09L1210.38 1226.69L1192.35 1226.25L1180.87 1235.99L1175.91 1230.54L1156.49 1226.97L1155.8 1220.26L1143.62 1219.08L1141.18 1211.17L1141.34 1218.69L1134.68 1220.18L1131.04 1229.28L1124 1226.89L1122.05 1219.77L1114.52 1225.43L1106.15 1216.43L1111.88 1208L1109.62 1205.56L1119.84 1198.27L1120.51 1191.53L1114.24 1184.11L1117.45 1170.36L1129.11 1177.09L1145.47 1171L1148.37 1165.32L1161.81 1165.5L1162.17 1144.56L1177.45 1148L1183.48 1135.85L1193.53 1133.05Z"
|
|
349
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
350
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
351
|
+
stroke-width="1.34132"
|
|
352
|
+
/>
|
|
353
|
+
<path
|
|
354
|
+
d="M610.146 404.723L617.055 405.468L621.293 417.006L617.338 421.015L608.734 411.738L605.882 406.342L610.146 404.723ZM638.734 394.65L635.728 404.286L639.555 409.528L667.706 406.136L676.593 429.495L683.759 434.017L690.951 432.732L701.636 420.681L721.233 426.411L723.879 455.166L717.843 465.676L726.961 507.099L712.192 513.189L703.357 537.781L702.432 543.049L677.698 533.747L678.314 538.86L662.415 545.105L658.588 553.559L637.038 553.79L626.918 559.675L624.966 556.128L611.636 566.022L608.323 551.503L615.951 549.01L608.554 543.974L618.391 534.029L616.413 528.402L610.429 531.639L613.793 520.358L606.73 510.157L591.345 509.026L594.042 501.291L604.162 495.535L594.864 497.54L591.499 486.182L596.97 484.64L602.492 467.834L610.711 467.526L616.311 460.151L626.585 461.025L625.454 452.904L629.718 452.159L627.201 436.895L631.67 430.651L630.925 421.991L627.278 421.631L618.802 403.541L629.025 395.266L638.734 394.65Z"
|
|
355
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
356
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
357
|
+
stroke-width="1.34132"
|
|
358
|
+
/>
|
|
359
|
+
<path
|
|
360
|
+
d="M976.875 636.122L989.898 627.719L998.708 630.803L997.963 625.201L1007.21 621.552L1013.14 624.739L1018.36 621.758L1031.66 630.675L1031.92 637.15L1024.7 644.834L1035.46 649.099L1048.07 645.296L1049.05 650.333L1053.83 648.303L1051.64 657.605L1060.09 665.597L1056.24 675.438L1065.15 678.856L1056.73 690.831L1053.21 690.009L1061.1 699.259L1055.81 703.782L1057.89 709.718L1068.78 720.511L1065.49 733.976L1070.45 745.154L1064.85 749.111L1066.54 754.328L1031.46 754.122L1025.47 749.368L1019.72 759.596L1015.09 755.253L1009.01 759.93L1006.98 754.79L1000.09 759.236L998.065 753.968L986.276 766.405L979.726 758.131L974.358 762.499L960.976 760.418L964.572 752.889L958.048 750.602L957.586 741.788L932.441 727.038L934.213 712.108L927.894 704.27L943.177 702.651L940.351 695.559L947.852 665.725L959.923 658.787L969.042 661.588L980.779 646.735L976.875 636.122Z"
|
|
361
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
362
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
363
|
+
stroke-width="1.34132"
|
|
364
|
+
/>
|
|
365
|
+
<path
|
|
366
|
+
d="M901.105 555.923L927.843 556.694L927.304 571.135L933.442 565.893L941.071 567.82L941.687 573.474L945.54 569.671L950.24 575.273L946.773 581.671L951.242 592.592L956.251 594.725L950.985 597.706L955.069 603.796L953.143 617.235L959.358 622.323L967.963 620.165L976.875 636.123L980.78 646.735L969.042 661.588L959.923 658.787L947.852 665.725L940.352 695.559L943.177 702.652L927.894 704.271L920.292 688.493L910.506 680.167L909.144 669.169L895.942 664.132L899.204 671.764L869.924 675.901L867.74 657.066L854.461 655.832L854.821 647.044L843.982 646.427L841.182 639.412L843.622 621.013L854.821 605.312L851.687 602.537L859.007 586.682L856.079 580.54L859.752 569.542L875.78 575.941L876.293 564.094L883.331 567.949L901.105 555.923Z"
|
|
367
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
368
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
369
|
+
stroke-width="1.34132"
|
|
370
|
+
/>
|
|
371
|
+
<path
|
|
372
|
+
d="M1379.43 848.045L1392.38 854.88L1406.1 837.406L1435.12 878.521L1447.29 904.835L1465.35 912.441L1465.97 899.284L1471.49 896.972L1480.35 905.323L1489.08 905.683L1495.89 917.992L1489.01 928.142L1490.42 948.005L1501.75 948.494L1502.9 952.22L1496.92 968.846L1509.66 971.467L1513.05 993.078L1489.42 991.664L1481.15 998.911L1477.5 995.724L1469.74 1000.58L1473.01 1004.08L1469.9 1007.24L1456.67 1007.39L1453.66 1015.33L1437.51 1012.61L1427.03 1002.05L1427.65 1006.18L1417.35 1001.38L1420.02 958.67L1409.59 966.07L1390.99 958.67L1383.01 960.186L1388.37 953.17L1386.27 940.99L1390.04 938.472L1381.41 933.975L1383.21 926.471L1376.61 928.784L1367.36 919.431L1347.41 926.523L1342.58 916.039L1342.71 902.496L1354.98 891.241L1344.68 882.53L1372.55 878.393L1374.89 870.607L1385.11 865.005L1375.61 854.931L1379.43 848.045Z"
|
|
373
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
374
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
375
|
+
stroke-width="1.34132"
|
|
376
|
+
/>
|
|
377
|
+
<path
|
|
378
|
+
d="M1423.82 617.595L1430.09 625.458L1443.24 623.557L1456.72 643.086L1450.53 650.282L1452.15 656.397L1446.93 656.449L1447.76 661.742L1454.79 657.811L1458.83 664.723L1466.87 662.539L1478.55 688.467L1491.24 692.81L1497.12 701.752L1482.61 713.393L1486.36 719.2L1480.35 726.061L1489.85 733.771L1482.02 755.639L1461.22 778.946L1445.83 779.537L1444.6 772.085L1437.05 766.637L1425.95 778.355L1418.99 778.997L1419.17 771.108L1413.72 766.123L1411.54 771.879L1408.69 760.829L1400.39 756.075L1402.04 750.962L1412.98 746.234L1413.39 742.302L1406.81 739.629L1407.1 730.61L1411.59 730.044L1415.55 721.385L1406.92 707.123L1410.18 700.827L1403.37 693.838L1417.89 691.936L1417.68 687.825L1411.05 681.863L1403.6 682.634L1395.39 673.82L1395.82 668.218L1402.45 663.079L1398.78 657.425L1409.56 652.26L1415.29 642.804L1423.82 617.595Z"
|
|
379
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
380
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
381
|
+
stroke-width="1.34132"
|
|
382
|
+
/>
|
|
383
|
+
<path
|
|
384
|
+
d="M701.61 1051L719.769 1041.34L730.12 1044.98L725.651 1057.65L766.773 1053.41L766.901 1060.79L794.333 1077.72L793.742 1089.54L811.541 1089.95L811.439 1081.01L815.189 1079.75L820.634 1086.59L821.944 1097.59L850.146 1101.8L841.978 1116.52L843.442 1122.82L841.67 1135.67L833.142 1130.81L836.122 1127.14L831.524 1122.67L825.18 1130.89L816.267 1129.3L809.872 1135.46L815.574 1140.27L814.778 1148.36L811.259 1148.62L814.649 1159.05L805.326 1172.98L809.512 1181.46L787.475 1186.6L787.5 1179.76L771.781 1188.37L765.206 1185.7L766.875 1182.98L758.759 1187.99L753.288 1182.31L713.322 1195.8L710.394 1193.13L714.658 1191.17L709.11 1187.04L697.526 1194.21L672.843 1189.58L681.114 1172.13L701.61 1051Z"
|
|
385
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
386
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
387
|
+
stroke-width="1.34132"
|
|
388
|
+
/>
|
|
389
|
+
<path
|
|
390
|
+
d="M925.043 491.141L936.653 491.963L946.362 486.567L941.276 493.197L954.067 494.636L962.98 512.752L981.473 514.911L990.001 506.559L997.578 510.491L1002.25 509.283L997.757 518.483L1005.05 526.885L998.091 536.136L1006.05 548.574L1003.66 551.118L1009.24 545.952L1018.1 549.91L1020.95 561.422L1026.65 565.199L1033.56 556.437L1044.81 561.987L1070.27 558.621L1074.07 567.769L1061.4 573.705L1062.33 578.716L1069.8 579.59L1069.65 588.763L1075.02 588.018L1073.19 601.278L1068.75 596.472L1060.89 599.145L1058.94 607.805L1065.49 618.443L1051.26 624.225L1042.42 619.908L1037.44 625.176L1038.13 631.728L1031.66 630.675L1018.36 621.758L1013.14 624.739L1007.21 621.553L997.963 625.201L998.708 630.803L989.898 627.72L976.876 636.123L967.963 620.165L959.358 622.323L953.143 617.235L955.069 603.796L950.985 597.706L956.251 594.725L951.242 592.592L946.773 581.671L950.24 575.273L945.54 569.671L941.687 573.474L941.071 567.82L933.442 565.893L927.304 571.135L927.843 556.694L901.105 555.923L897.406 553.07L910.223 544.616L918.057 532.821L916.49 523.468L921.884 525.421L925.891 517.223L925.172 502.987L920.009 500.032L925.043 491.141Z"
|
|
391
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
392
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
393
|
+
stroke-width="1.34132"
|
|
394
|
+
/>
|
|
395
|
+
<path
|
|
396
|
+
d="M1251.14 777.224L1250.21 786.68L1259 788.479L1261.21 793.156L1284.04 789.738L1291.26 795.597L1301.46 791.254L1303.25 785.781L1308.39 794.929L1296.29 799.632L1294.29 808.857L1288.54 812.043L1295.29 818.75L1287.97 820.42L1304.18 841.08L1299.09 854.725L1304.82 858.606L1300.89 869.81L1312.04 882.709L1327.53 884.277L1330.38 889.133L1334.43 886.461L1331.58 897.613L1339.01 896.56L1342.71 902.496L1342.58 916.038L1327.55 924.21L1326.06 933.46L1313.37 935.67L1308.39 929.812H1299.17L1298.86 916.526L1290.98 917.194L1286.82 912.492H1278.9L1263.9 921.768L1259.44 914.548L1252.17 920.972L1251.04 917.323L1250.42 910.924L1258.07 905.425L1260.36 896.354L1228.79 851.462L1235.78 836.995L1229.2 830.262L1230.8 823.632L1243.87 819.701L1237.14 782.877L1251.14 777.224Z"
|
|
397
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
398
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
399
|
+
stroke-width="1.34132"
|
|
400
|
+
/>
|
|
401
|
+
<path
|
|
402
|
+
d="M1167.2 918.196L1174.42 918.273L1187.26 907.738L1200.08 911.104L1208.68 906.53L1221.16 920.226L1226.74 913.34L1237.96 918.685L1240.84 912.158L1251.04 917.323L1252.17 920.972L1259.44 914.547L1263.9 921.768L1278.9 912.492H1286.82L1290.98 917.194L1298.86 916.526L1299.17 929.811H1308.39L1313.37 935.67L1310.68 953.35L1301.76 949.598L1304.44 955.457L1298.81 961.033L1302.69 965.067L1293.52 968.357L1295.37 975.32L1285.89 976.811L1278.6 990.353L1265.6 990.456L1264.93 996.263L1256.51 997.265L1253.76 1006L1247.13 1009.65L1234.52 995.569L1226.33 996.983L1222.42 989.094L1218.54 989.916L1218.01 997.368L1206.22 999.861L1198.36 977.71L1193.76 975.603L1185.41 955.688L1193.68 955.637L1186.05 953.093L1178.99 929.529L1164.02 927.678L1167.2 918.196Z"
|
|
403
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
404
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
405
|
+
stroke-width="1.34132"
|
|
406
|
+
/>
|
|
407
|
+
<path
|
|
408
|
+
d="M611.636 566.047L624.967 556.154L626.919 559.7L637.038 553.815L658.588 553.584L662.415 545.13L678.314 538.886L677.698 533.772L702.432 543.074L701.61 550.269L707.877 551.734L713.99 567.872L728.066 572.677L724.162 576.84L710.292 575.324L711.987 585.191L732.175 587.967L736.978 602.537L731.276 607.008L697.732 611.89L691.028 617.466L697.244 617.21L702.972 627L708.057 625.664L711.294 636.816L702.278 649.562L716.328 655.267L713.066 660.611L699.941 651.797L696.756 659.712L688.46 660.072L689.898 671.661L679.444 676.415L678.494 660.2L675.155 658.993L669.504 662.898L675.386 683.687L670.429 686.822L651.859 683.148L649.341 676.235L632.877 671.096L624.453 660.483L616.568 650.256L595.84 644.243L604.47 638.666L603.931 623.685L590.549 628.362L582.175 621.475L576.191 624.61L564.119 619.625L568.306 612.096L562.578 606.443L573.366 594.853L577.038 590.305L588.34 592.798L590.343 584.112L604.727 588.275L605.395 583.264L611.713 581.491L611.636 566.047Z"
|
|
409
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
410
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
411
|
+
stroke-width="1.34132"
|
|
412
|
+
/>
|
|
413
|
+
<path
|
|
414
|
+
d="M1047.95 461.949L1066.03 460.022L1070.24 452.724L1074.73 460.022L1083.7 454.549L1091.71 457.272L1093.79 466.215L1102.55 469.658L1104.38 475.723L1095.92 487.852L1123.84 487.929L1129.03 484.434L1127.13 481.016L1133.81 480.708L1135.99 486.901L1148.53 481.607L1158.39 486.361L1160.55 495.92L1168.54 502.833L1168.9 511.904L1156.23 522.491L1157.95 541.404L1139.44 546.081L1139.02 552.479L1147.37 558.03L1152.74 575.786L1139.97 578.459L1141.85 583.418L1134.66 587.478L1126.62 580.643L1125.85 587.581L1119.84 589.174L1108.64 575.375L1100.98 575.966L1095.28 569.439L1088.27 573.242L1079.49 566.381L1074.07 567.769L1070.27 558.621L1044.81 561.987L1033.56 556.436L1026.65 565.199L1020.95 561.422L1018.1 549.909L1009.24 545.952L1003.66 551.117L1006.05 548.573L998.091 536.136L1005.05 526.885L997.757 518.482L1002.25 509.283L997.577 510.491L996.601 503.347L1005.41 502.782L1008.6 496.486L1021.39 497.514L1036.1 492.04L1038.31 482.147L1045.61 480.014L1047.95 461.949Z"
|
|
415
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
416
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
417
|
+
stroke-width="1.34132"
|
|
418
|
+
/>
|
|
419
|
+
<path
|
|
420
|
+
d="M989.795 968.279L999.401 964.219L1010.96 967.02L1027.55 982.927L1038.85 974.678L1043.09 978.481L1055.16 974.935L1058.32 990.276L1066.9 1003L1062.43 1016.74L1070.75 1028.67L1069.62 1033.45L1054.93 1033.78L1039.93 1048.17L1036.82 1045.45L1031.69 1049.07L1039.37 1067.47L1036.13 1070.14L1016.61 1074.02L1012.35 1078.6L1009.78 1076.05L1010.5 1080.39L1003.05 1075.64L1004.54 1083.76L999.683 1086.56L992.338 1076.39L980.471 1090.26L972.252 1085.48L974.384 1076.69L964.88 1080.68L950.779 1068.14L956.61 1062.12L948.981 1064.26L940.274 1039.69L950.368 1035.25L957.997 1020.91L975.848 1010.42L973.999 1002.07L988.947 989.89L985.737 970.361L989.795 968.279Z"
|
|
421
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
422
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
423
|
+
stroke-width="1.34132"
|
|
424
|
+
/>
|
|
425
|
+
<path
|
|
426
|
+
d="M820.634 1086.59L832.115 1079.88L827.312 1067.6L838.254 1064.44L834.093 1058.12L835.814 1038.41L843.031 1038.59L855.283 1021.93L846.242 1015.97L855.566 1008.39L858.828 1012.55L859.778 1006.41L867.278 1006.77L873.545 1022.94L894.401 1021.32L902.389 1015.3L908.579 1019.88L920.523 1016.15L926.456 1020.96L924.453 1031.21L940.12 1024.66L950.369 1035.24L940.274 1039.69L948.982 1064.26L935.934 1069.16L931.131 1063.82L928.254 1074.38L936.91 1079.65L932.209 1092.03L926.533 1093.01L930.874 1099.85L919.701 1099L914.538 1110.51L906.191 1116.63L898.639 1108.35L867.432 1121.66L858.237 1116.94L852.072 1124.31L849.247 1120.07L843.442 1122.82L841.978 1116.52L850.146 1101.8L821.944 1097.59L820.634 1086.59Z"
|
|
427
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
428
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
429
|
+
stroke-width="1.34132"
|
|
430
|
+
/>
|
|
431
|
+
<path
|
|
432
|
+
d="M1193.76 975.603L1198.36 977.71L1206.22 999.861L1218.01 997.368L1218.54 989.916L1222.42 989.094L1226.33 996.983L1234.52 995.57L1247.13 1009.65L1251.58 1032.03L1258.13 1037.92L1261.75 1052.1L1256.51 1060.97L1249.73 1062.84L1256.82 1071.09L1253.71 1075.05L1259.23 1082.07L1255.17 1091.37L1259.13 1096.2L1253.73 1093.24L1248.57 1101.59L1240.22 1101.41L1226.84 1092.68L1222.68 1102.34L1213.1 1103.42L1194.91 1095.09L1193.78 1090.6L1176.99 1092.14L1179.81 1086.15L1172.41 1084.04L1171.49 1079.52L1168.15 1081.42L1170.67 1055.29L1162.35 1045.68L1164.38 1037.28L1153.3 1024.56L1166.28 988.349L1170.41 985.882L1175.7 991.895L1181.02 980.922L1185.69 982.233L1193.76 975.603Z"
|
|
433
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
434
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
435
|
+
stroke-width="1.34132"
|
|
436
|
+
/>
|
|
437
|
+
<path
|
|
438
|
+
d="M703.331 537.832L730.814 545.49L736.002 540.351L756.807 549.216L778.485 547.263L780.155 541.327L794.615 545.67L796.644 552.891L816.73 552.557L812.158 557.979L820.685 565.713L825.437 561.062L850.788 573.911L855.103 568.411L859.752 569.542L856.079 580.54L859.007 586.682L851.687 602.537L854.821 605.312L843.622 621.013L841.182 639.412L834.555 640.028L831.447 651.566L826.105 649.331L824.41 655.035L816.653 654.599L820.172 649.151L815.677 648.149L793.023 650.821L784.007 656.706L786.319 652.312L782.595 652.003L776.019 655.035L777.381 659.969L771.473 665.52L751.413 664.209L740.266 668.835L731.302 662.231L722.903 664.415L713.04 660.612L716.302 655.267L702.252 649.588L711.268 636.816L708.032 625.664L702.972 627L697.218 617.21L691.028 617.467L697.732 611.89L731.276 607.008L736.978 602.537L732.175 587.967L711.987 585.166L710.292 575.324L724.162 576.84L728.066 572.677L713.99 567.872L707.877 551.734L701.61 550.295L702.432 543.1L703.331 537.832Z"
|
|
439
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
440
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
441
|
+
stroke-width="1.34132"
|
|
442
|
+
/>
|
|
443
|
+
<path
|
|
444
|
+
d="M630.54 228.34L664.367 241.676L675.643 238.361L678.16 233.248L700.352 233.376L704.204 248.049L696.859 252.109L695.96 259.176L710.857 280.812L709.264 290.346L716.225 291.117L714.17 303.015L720.335 308.95L731.43 315.966L736.567 309.31L740.677 314.295L733.023 320.617L740.677 325.962L736.85 330.382L741.55 328.069L743.554 342.202L734.513 352.635L722.595 353.869L720.514 359.573L726.319 358.854L726.627 362.194L711.73 375.017L719.898 382.983L733.896 381.159L741.191 386.478L747.689 383.934L745.763 387.095L744.684 390.589L756.884 397.784L752.903 402.384L756.55 408.192L743.631 427.387L721.285 426.334L701.687 420.603L691.002 432.655L683.811 433.94L676.645 429.417L667.758 406.059L691.002 406.419L684.812 402.101L687.509 399.455L680.985 402.744L668.014 387.943L667.552 375.865L663.288 373.706L670.84 358.186L669.324 342.716L674.975 343.693L668.965 341.174L667.115 347.007L664.804 340.815L663.211 311.597L667.398 310.775L663.186 308.976L661.876 313.011L652.835 294.046L642.355 286.363L634.033 259.947L639.067 253.908L638.22 244.015L627.689 236.82L630.54 228.34Z"
|
|
445
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
446
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
447
|
+
stroke-width="1.34132"
|
|
448
|
+
/>
|
|
449
|
+
<path
|
|
450
|
+
d="M1206.91 371.034L1227.46 344.823L1224.58 340.121L1217.59 341.123L1223.25 334.596L1219.26 327.709L1221.55 322.698L1235.01 321.336L1224.94 312.548L1224.02 296.128L1238.17 289.138L1246 291.014L1246.46 285.232L1253.73 280.89L1265.78 288.496L1267.01 280.967L1288.25 284.744L1294.73 294.046L1302.41 294.303L1309.52 302.732L1325.65 299.674L1329.5 309.413L1335.49 305.199L1354.24 310.081L1355.39 304.351L1360.38 303.811L1363.3 308.539L1367.65 312.934L1362.05 317.045L1369.08 337.474L1364.82 343.59L1372.4 343.256L1367.93 349.706L1372.73 351.325L1359.25 363.479L1361.87 372.576L1356.88 379.668L1369.62 388.816L1367.34 398.041L1345.17 400.38L1344.22 403.284L1352.93 406.11V409.708L1343.27 412.56L1347.05 423.096L1333.25 422.762L1325.01 419.241L1319.95 423.713L1304.77 417.956L1295.7 409.271L1297.47 399.095L1293.88 393.262L1275.98 397.759L1270.48 395.343L1251.24 415.772L1246.08 414.847L1247.49 421.708L1243.25 425.357L1223.45 421.631L1214.82 408.937L1212.12 404.157L1203.26 405.956L1205.09 389.407L1197.23 386.144L1202.44 381.004L1198.18 378.049L1207.11 377.201L1206.91 371.034Z"
|
|
451
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
452
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
453
|
+
stroke-width="1.34132"
|
|
454
|
+
/>
|
|
455
|
+
<path
|
|
456
|
+
d="M1333.25 422.762L1347.05 423.096L1343.27 412.56L1352.93 409.708V406.11L1344.22 403.284L1345.17 400.38L1367.34 398.042L1368.7 409.451L1374.68 406.47L1376.17 412.329L1381.28 412.406L1391.17 423.199L1403.55 426.205L1418.53 440.441L1410.46 445.17L1415.62 447.071L1414.01 454.755L1424.43 452.108L1446.5 476.648L1441.08 479.089L1440.03 490.422L1435.48 494.071L1451.35 502.319L1452.51 515.168L1458.85 511.493L1462.88 519.382L1456.82 531.048L1449.66 529.892L1447.63 536.136L1442.23 536.008L1442.21 557.542L1432.19 559.52L1429.06 553.944L1424.59 559.392L1412.31 559.161L1408.25 570.185L1401.27 569.491L1395.41 574.656L1396.23 567.486L1387.09 562.758L1387.63 558.313L1381.13 563.658L1371.63 553.533L1365.21 557.388L1364.18 545.361L1359.55 544.539L1367.88 536.213L1358.22 520.101L1350.59 522.054L1354.19 517.044L1345.58 513.549L1346.48 506.636L1337.08 504.247L1338.98 500.366L1332.02 494.996L1339.85 488.906L1350.9 490.833L1353.75 465.187L1348.61 456.116L1351.44 453.084L1337.16 445.272L1328.89 433.966L1333.25 422.762Z"
|
|
457
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
458
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
459
|
+
stroke-width="1.34132"
|
|
460
|
+
/>
|
|
461
|
+
<path
|
|
462
|
+
d="M743.605 427.49L753.75 437.897L764.076 429.931L765.848 436.715L780.951 426.308L793.023 426.154L797.672 430.291L801.088 424.15L806.404 426.565L808.767 417.391L813.237 417.52L819.838 423.224L816.833 426.025L819.709 434.634L829.958 435.559L829.367 446.788L818.528 453.367L819.863 474.978L808.331 482.507L810.694 498.259L798.956 500.906L805.865 514.345L791.379 521.001L795.771 530.123L787.886 534.337L794.178 538.937L794.615 545.67L780.154 541.327L778.485 547.263L756.807 549.216L736.002 540.351L730.814 545.49L703.331 537.832L712.167 513.24L726.935 507.15L717.843 465.727L723.879 455.191L721.259 426.437L743.605 427.49Z"
|
|
463
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
464
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
465
|
+
stroke-width="1.34132"
|
|
466
|
+
/>
|
|
467
|
+
<path
|
|
468
|
+
d="M1451.84 255.99L1463.3 265.986L1469.08 271.074L1465.61 280.761L1472.75 290.989L1469.46 294.124L1475.62 296.539L1479.53 308.051L1472.67 315.529L1478.58 320.129L1473.21 323.598L1475.55 328.891L1467.1 332.206L1479.89 345.029L1479.63 350.811L1487.52 352.275L1489.24 357.646L1508.27 359.856L1505.52 371.959L1511.38 373.989L1507.27 375.557L1513.05 377.51L1513.3 382.778L1521.29 381.159L1535.14 386.478L1539.02 393.108L1545.77 394.624L1546.31 400.765L1548.31 397.964L1566.14 408.192L1574.28 405.956L1582.86 409.913L1581.06 412.74L1589.9 422.068L1594.34 425.537L1558.56 445.658L1543.92 439.259L1541.4 432.09L1535.65 437.203L1536.93 441.186L1532.08 438.694L1516.64 445.144L1506.68 438.206L1500.05 444.013L1491.24 442.317L1487.59 451.183L1484.51 446.352L1482.79 450.18L1471.1 451.774L1469.85 444.373L1464.99 443.705L1467.87 438.36L1459.83 442.189L1465.07 428.595L1450.09 428.261L1451.35 421.297L1444.85 413.511L1454.13 407.678L1449.4 408.217L1450.2 395.446L1444.88 388.302L1451.64 380.234L1452.77 365.458L1448.19 360.473L1459.11 354.794L1453.92 349.295L1459.57 340.249L1454.41 336.729L1456.1 329.662L1448.17 326.81L1450.09 315.015L1445.78 315.246L1445.55 303.991L1450.74 297.181L1446.73 296.59L1444.37 287.879L1446.93 282.252L1436.02 275.673L1420.12 284.641L1416.5 281.763L1422.53 278.474L1414.39 267.656L1418.99 265.934L1427.88 260.692L1433.73 264.418L1437.02 257.403L1448.07 259.253L1451.84 255.99Z"
|
|
469
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
470
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
471
|
+
stroke-width="1.34132"
|
|
472
|
+
/>
|
|
473
|
+
<path
|
|
474
|
+
d="M1413.72 249.283L1418.99 265.934L1414.39 267.656L1422.53 278.474L1416.5 281.763L1420.12 284.641L1436.02 275.673L1446.93 282.252L1444.37 287.879L1446.73 296.59L1450.74 297.181L1445.55 303.991L1445.78 315.246L1450.09 315.015L1448.17 326.81L1456.1 329.662L1454.41 336.729L1459.57 340.249L1453.92 349.295L1459.11 354.794L1448.19 360.473L1452.77 365.458L1451.63 380.234L1444.88 388.302L1450.2 395.446L1449.4 408.217L1454.13 407.678L1444.85 413.511L1451.35 421.297L1450.09 428.261L1445.11 434.248L1436.97 432.218L1434.76 439.645L1418.53 440.441L1403.55 426.205L1391.17 423.199L1381.28 412.406L1376.17 412.329L1374.68 406.47L1368.7 409.451L1367.34 398.041L1369.62 388.816L1356.88 379.668L1361.87 372.576L1359.25 363.479L1372.73 351.325L1367.93 349.706L1372.4 343.256L1364.82 343.59L1369.08 337.474L1362.05 317.045L1367.65 312.934L1363.3 308.539L1373.91 302.501L1371.47 292.505L1379.31 285.515L1376.74 281.532L1380.39 272.487L1374.84 265.497L1380.54 250.49L1396.52 258.765L1410.74 246.507L1413.72 249.283Z"
|
|
475
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
476
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
477
|
+
stroke-width="1.34132"
|
|
478
|
+
/>
|
|
479
|
+
<path
|
|
480
|
+
d="M489.042 604.438L508.897 615.951L507.458 620.319L490.044 617.749L489.042 604.438ZM455.215 477.882L468.006 477.676L470.96 484.383L479.642 480.4L486.474 485.359L500.549 481.505L503.195 474.669L511.491 475.158L515.498 482.121L536.354 484.588L539.616 493.814L541.671 489.111L551.713 486.85L552.15 502.55L563.683 495.51L565.07 482.558L576.91 479.963L584.025 489.933L591.499 486.233L594.864 497.591L604.162 495.587L594.042 501.343L591.345 509.077L606.731 510.208L613.794 520.41L610.429 531.691L616.414 528.453L618.391 534.08L608.554 544.025L615.951 549.062L608.323 551.554L611.636 566.073V581.568L605.318 583.341L604.65 588.352L590.266 584.189L588.263 592.875L576.962 590.382L573.289 594.931L569.282 594.622L568.614 587.992L575.087 587.016L567.767 582.93L535.147 588.917L512.827 572.24L512.929 575.324L502.321 575.838L505.84 591.025H501.499L498.597 569.979L476.482 553.533L466.311 555.435L458.503 545.233L459.145 532.205L463.152 535.674L467.621 529.352L472.912 529.455L473.657 514.371L470.986 511.827L465.592 516.324L458.785 509.463L447.279 510.105L437.107 489.933L439.239 485.025L455.215 477.882Z"
|
|
481
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
482
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
483
|
+
stroke-width="1.34132"
|
|
484
|
+
/>
|
|
485
|
+
<path
|
|
486
|
+
d="M1501.41 264.084L1532.98 276.727L1539.22 287.596L1535.62 290.629L1546.59 301.575L1553.96 320.411L1564.29 322.21L1564.57 312.522L1575.26 310.878L1585.4 316.12L1587.25 328.608L1592.34 321.85L1598.5 327.606L1613.09 328.506L1620.67 319.332L1629.17 317.353L1628.22 320.437L1634.43 319.743L1638.9 332L1649.69 338.399L1639.03 358.031L1629.99 352.198L1616.53 356.258L1613.14 351.324L1595.21 346.134L1594.21 335.829L1588.92 336.497L1585.17 354.203L1575.74 357.903L1576.9 364.353L1591.87 369.364L1587.17 372.344L1590.08 381.955L1601.46 371.522L1615.33 384.73L1607.62 396.859L1614.25 402.024L1610.03 413.202L1599.37 423.327L1589.9 422.068L1581.06 412.74L1582.86 409.913L1574.28 405.956L1566.14 408.192L1548.31 397.964L1546.31 400.765L1545.77 394.624L1539.02 393.107L1535.14 386.478L1521.29 381.159L1513.3 382.777L1513.05 377.51L1507.27 375.557L1511.38 373.989L1505.52 371.959L1508.27 359.856L1489.24 357.646L1487.52 352.275L1479.63 350.811L1479.89 345.029L1467.1 332.206L1475.55 328.891L1473.21 323.598L1478.58 320.129L1472.67 315.529L1479.53 308.051L1475.62 296.539L1469.46 294.123L1472.75 290.988L1465.61 280.761L1469.08 271.073L1463.3 265.985L1471.57 266.705L1473.01 273.566L1479.61 274.234L1493.73 264.058L1501.41 264.084Z"
|
|
487
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
488
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
489
|
+
stroke-width="1.34132"
|
|
490
|
+
/>
|
|
491
|
+
<path
|
|
492
|
+
d="M1152.74 575.786L1157.52 577.765L1166.12 572.883L1172.77 583.752L1192.24 591.564L1197.1 585.783L1207.32 587.658L1208.48 577.097L1217.88 593.594L1227.2 594.519L1232.72 602.665L1239.22 601.612L1242.46 605.723L1247.7 596.935L1248.34 607.779L1256.48 603.282L1262.18 616.49L1273.28 611.89L1277.18 609.501L1276.18 627.771L1280.98 625.253L1286.25 632.397L1284.32 640.748L1282.01 641.519L1274.28 642.238L1274.46 645.63L1267.29 647.455L1268.01 662.924L1261.26 667.344H1266.01L1265.91 679.139L1272.56 685.692L1266.55 690.446L1267.73 699.594L1240.25 711.466L1233.9 703.551L1222.32 704.065L1218.83 701.521L1218.88 707.919L1213.61 708.151L1215.03 713.393L1206.65 719.38L1200.08 709.513L1192.22 714.164L1183.92 709.05L1176.78 715.449L1158.57 696.973L1163.53 661.331L1157.13 655.01L1153.28 624.122L1141.13 612.096L1147.86 596.447L1141.85 583.418L1139.97 578.459L1152.74 575.786Z"
|
|
493
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
494
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
495
|
+
stroke-width="1.34132"
|
|
496
|
+
/>
|
|
497
|
+
<path
|
|
498
|
+
d="M1161.96 154.59L1163.66 154.95L1163.09 161.502L1156.44 164.637L1155.59 158.342L1161.5 155.515L1161.96 154.59ZM1108.51 6.75609L1116.06 24.9751L1111.62 29.6519L1112.62 41.4725L1116.42 47.7425L1125.77 48.1023L1132.83 62.2098L1145.29 68.0173L1150.2 57.9698L1171.36 51.5713L1175.63 62.4668L1183.02 66.4241L1180.74 73.7477L1186.31 96.1296L1195.33 101.68L1205.86 94.6649L1210.56 96.2838L1208.6 102.348L1220.11 100.884L1225.66 107.462L1225.74 122.52L1230.8 132.696L1235.01 125.013L1251.5 129.047L1264.57 123.702L1276.64 140.534L1279.29 135.343L1284.22 138.195L1275.69 161.22L1283.35 161.322L1286.56 171.884L1279.08 175.379L1277.13 186.711L1259.79 184.45L1259.97 176.047L1249.88 181.803L1248.24 177.126L1231.44 171.781L1225.56 178.385L1213.25 174.222L1207.6 180.287L1194.04 177.203L1173.67 181.392L1164.86 174.376L1165.02 163.224L1169.08 160.474L1165.99 156.466L1175.32 145.339L1171.08 139.788L1156.46 138.581L1164.38 131.745L1153.61 116.456L1162.63 112.524L1162.76 107.359L1157 109.672L1158.34 102.836L1151.92 98.3138L1144.7 100.113L1143.21 93.9454L1134.27 94.5364L1132.91 85.7995L1141.41 78.1418L1135.02 71.7947L1130.45 72.7712L1132.94 77.6793L1128.11 82.7159L1124.56 78.0904L1100.5 77.962L1091.46 69.6876L1088.37 71.2808L1084.7 59.8714L1092.43 55.4516L1079.44 53.5757L1071.4 47.2286L1057.94 14.7992L1066.77 12.4608L1068.06 15.493L1069.26 11.3301L1106.66 1L1108.51 6.75609Z"
|
|
499
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
500
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
501
|
+
stroke-width="1.34132"
|
|
502
|
+
/>
|
|
503
|
+
<path
|
|
504
|
+
d="M1018.15 280.813L1026.29 265.035L1018.43 264.829L1021.82 259.381L1015.58 252.52L1018.92 251.056L1016.35 241.959L1022.13 233.633H1015.45L1021.9 222.352L1025.73 223.329L1031.56 226.258L1032.46 232.554L1045.56 229.573L1055.63 235.638L1068.08 232.091L1082.34 234.455L1099.6 245.813L1102.6 242.781L1109.54 249.745L1115.37 247.509L1118.01 253.857L1122.15 245.017L1132.5 247.227L1133.63 239.209L1143.78 237.256L1142.83 230.447L1150.38 238.439L1152.89 231.809L1158.19 236.1L1160.8 230.498L1164.12 234.301L1168.07 231.783L1165.2 245.505L1170 253.317L1165.3 263.416L1166.71 271.099L1172.88 275.391L1165.3 276.495L1160.03 293.635L1152 293.892L1153.82 300.239L1159.39 300.522L1159.6 309.387L1150.89 310.364L1157.65 319.461L1156.05 312.086L1164.22 315.889L1164.68 321.311L1166.02 315.041L1170.95 321.131L1162.94 328.197L1162.35 333.285L1153.92 335.572L1151.92 332.258L1139.44 335.701L1134.79 331.41L1128.8 337.191L1122.87 336.677L1116.09 329.534L1111.54 334.159L1107.69 326.99L1100.88 329.893L1082.06 316.917L1072.83 322.57L1071.91 318.073L1066.8 320.643L1057.24 313.036L1048.82 318.638L1031.04 320.54L1021.05 317.79L1020.87 310.775L1017.02 309.542L1017.64 304.171L1022.83 302.912L1026.14 307.203L1027.73 302.552L1018.15 280.813Z"
|
|
505
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
506
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
507
|
+
stroke-width="1.34132"
|
|
508
|
+
/>
|
|
509
|
+
<path
|
|
510
|
+
d="M745.737 387.197L759.196 379.437L761.43 371.908L774.273 374.632L791.764 368.028L798.391 375.865L802.783 370.16L821.918 376.867L819.53 373.707L828.083 373.013L848.759 355.025L851.841 359.393L864.941 352.507L879.581 355.231L876.37 361.321L880.48 365.458L901.079 366.897L900.437 374.272L916.156 384.731L917.852 389.536L912.946 394.495L922.346 400.431L922.706 409.759L938.425 423.97L935.163 431.524L939.427 437.332L932.826 448.176L917.466 456.245L923.887 473.642L920.42 476.725L914.05 477.676L905.06 465.598L903.468 470.507L892.449 468.014L887.569 458.198L877.167 456.322L876.139 439.799L867.458 430.831L850.788 434.557L841.542 447.328L829.367 446.788L829.958 435.559L819.709 434.634L816.833 426.025L819.838 423.224L813.237 417.52L808.768 417.391L806.405 426.565L801.088 424.149L797.672 430.291L793.023 426.154L780.951 426.308L765.848 436.715L764.076 429.931L753.751 437.897L743.605 427.49L756.525 408.295L752.877 402.487L756.859 397.887L744.658 390.667L745.737 387.197Z"
|
|
511
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
512
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
513
|
+
stroke-width="1.34132"
|
|
514
|
+
/>
|
|
515
|
+
<path
|
|
516
|
+
d="M1057.32 14.4395L1057.94 14.7992L1071.4 47.2286L1079.43 53.5757L1092.43 55.4516L1084.7 59.8714L1088.37 71.2808L1091.46 69.6876L1100.5 77.962L1124.56 78.0905L1128.11 82.7159L1132.94 77.6793L1130.45 72.7712L1135.02 71.7947L1141.41 78.1419L1132.89 85.7995L1134.25 94.5364L1143.18 93.9454L1144.67 100.113L1151.89 98.3139L1158.31 102.837L1156.98 109.672L1162.73 107.359L1162.6 112.524L1153.59 116.456L1164.35 131.745L1156.44 138.581L1171.05 139.789L1175.29 145.339L1165.97 156.466L1169.05 160.474L1164.99 163.224L1164.84 174.376L1149.53 174.479L1140.74 179.901L1139.08 170.316L1128.98 176.869L1131.52 164.175L1124.18 161.991L1123.61 169.88L1109.97 164.56L1108 159.626L1105.45 164.432L1103.48 159.935L1097.57 161.554L1093.28 168.826L1088.73 165.151L1089.99 157.853L1101.4 151.069L1096.75 145.108L1086.86 149.091L1084.06 143.694L1083.49 148.012L1077.41 145.39L1064.54 151.789L1057.68 150.067L1056.73 141.51L1042.83 135.574L1042.94 128.379L1038.8 131.643L1027.76 123.445L1012.86 128.585L1010.37 124.884L1001.02 116.816L1004.46 93.7912L1009.62 97.9798L1003.36 88.6005L1003.87 37.875L1025.57 23.5361L1057.32 14.4395ZM1161.5 155.515L1155.59 158.342L1156.44 164.637L1163.09 161.502L1163.66 154.95L1161.5 155.515Z"
|
|
517
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
518
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
519
|
+
stroke-width="1.34132"
|
|
520
|
+
/>
|
|
521
|
+
<path
|
|
522
|
+
d="M1109.13 797.601L1116.76 801.353L1126.75 785.421L1134.97 789.455L1137.35 781.644L1146.7 781.052L1149.53 782.569L1146.06 792.256L1156.8 803.82L1165.02 801.944L1169.05 808.805L1190.65 812.634L1199.92 808.163L1204.49 810.398L1204.75 818.364L1218.29 815.974L1229.2 830.262L1235.78 836.994L1228.79 851.462L1260.36 896.354L1258.07 905.425L1250.42 910.924L1251.04 917.323L1240.84 912.158L1237.96 918.685L1226.74 913.34L1221.16 920.226L1208.68 906.53L1200.08 911.104L1187.26 907.738L1174.42 918.273L1167.2 918.196L1155.26 927.524L1142.9 913.391L1124.82 913.648L1122.02 905.168L1102.86 898.975L1103.84 887.489L1097.83 881.142L1105.15 871.608L1101.06 859.479L1090.04 845.937L1101.16 840.335L1113.6 824.557L1107.3 806.338L1109.13 797.601Z"
|
|
523
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
524
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
525
|
+
stroke-width="1.34132"
|
|
526
|
+
/>
|
|
527
|
+
<path
|
|
528
|
+
d="M672.843 1189.58L697.527 1194.21L709.11 1187.01L714.633 1191.15L710.395 1193.1L713.297 1195.77L753.263 1182.28L758.734 1187.96L766.85 1182.95L765.155 1185.67L771.73 1188.32L787.449 1179.71L787.424 1186.55L809.487 1181.41L825.052 1181.82L833.374 1197.93L828.314 1199.24L828.16 1206.87L835.249 1201.84L838.485 1216.33L830.395 1222.88L833.477 1227.41L827.518 1234.37L828.083 1241.08L822.792 1240.64L814.727 1250.22L816.114 1259.3L804.581 1266.05L801.859 1288.69L793.177 1296.02L781.285 1291.91L776.174 1298.79L758.734 1283.25L754.855 1271.48L734.667 1273.61L716.431 1263.33L713.451 1265.67L695.677 1256.88L699.761 1249.61L693.16 1251.3L690.9 1262.71L681.73 1260.14L678.211 1254.03L687.946 1239.36L687.253 1229.33L671.636 1224.09L663.828 1230.21L662.133 1222.16L650.934 1223.71L644.795 1215.74L661.568 1206.59L672.843 1189.58ZM825.155 1212.3L825.54 1221.7L827.723 1214.25L825.155 1212.3ZM822.407 1231.8L826.85 1228.61L822.329 1222.88L822.407 1231.8Z"
|
|
529
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
530
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
531
|
+
stroke-width="1.34132"
|
|
532
|
+
/>
|
|
533
|
+
<path
|
|
534
|
+
d="M823.562 1221.73L826.824 1228.61L822.381 1231.8L823.562 1221.73ZM827.441 1214.07L827.723 1214.25L825.54 1221.7L823.896 1213.2L825.155 1212.3L827.441 1214.07ZM825.103 1181.87L833.862 1178.43L841.028 1191.28L847.886 1191.74L854.821 1212.99L867.021 1210.32L870.72 1216.87L900.155 1221.68L903.108 1223.78L894.119 1232.44L896.482 1234.78L890.523 1235.89L882.329 1247.86L895.711 1255.98L891.73 1266.21L900.206 1261.92L904.29 1272.58L895.3 1287.07L886.208 1284.61L883.151 1305.52L886.028 1310.38L873.699 1306.89L866.687 1314.21L854.076 1305.04L829.239 1311.51L818.22 1296.22L801.961 1288.77L804.684 1266.13L816.216 1259.37L814.829 1250.3L822.894 1240.72L828.185 1241.15L827.62 1234.45L833.579 1227.48L830.497 1222.96L838.588 1216.41L835.352 1201.91L828.263 1206.95L828.417 1199.32L833.477 1198.01L825.103 1181.87Z"
|
|
535
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
536
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
537
|
+
stroke-width="1.34132"
|
|
538
|
+
/>
|
|
539
|
+
<path
|
|
540
|
+
d="M1066.08 1315.7L1069.32 1317.5L1086.4 1306.45L1084.65 1290L1127.34 1290.75L1132.76 1281.94L1140.8 1278.75L1159.96 1290.21L1160.8 1332.94L1170.36 1336.93L1173.88 1348.62L1164.45 1349.95L1159.6 1343.09L1149.63 1341.81L1131.63 1351.91L1120.58 1352.94L1120.3 1362.16L1110.15 1359.62L1105.2 1363.29L1094.82 1354.58L1076.04 1348.16L1050 1360.54L1041.65 1346L1019.72 1339.91L1020.72 1331.14L1025.86 1328.47L1045.81 1322.25L1048.41 1315.86L1066.08 1315.7Z"
|
|
541
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
542
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
543
|
+
stroke-width="1.34132"
|
|
544
|
+
/>
|
|
545
|
+
<path
|
|
546
|
+
d="M1589.9 422.068L1599.37 423.327L1610.03 413.203L1614.25 402.025L1607.62 396.86L1615.32 384.731L1601.46 371.522L1590.08 381.955L1587.17 372.345L1591.87 369.364L1576.9 364.353L1575.74 357.903L1585.17 354.203L1588.92 336.498L1594.21 335.83L1595.21 346.134L1613.14 351.325L1616.53 356.259L1629.99 352.198L1639.03 358.032L1649.69 338.399L1666.44 336.395L1674.14 341.637L1681.34 337.68L1713.18 352.584L1697.95 379.052L1685.42 386.35L1671.27 405.057L1659.91 444.681L1661.22 455.448L1655.73 459.508L1643.32 488.417L1631.87 482.122L1632.61 475.209L1615.4 467.526L1617.17 464.442L1613.01 464.622L1611.22 458.994L1603 458.146L1600.94 453.444L1589.85 451.414L1594.34 425.537L1589.9 422.068Z"
|
|
547
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
548
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
549
|
+
stroke-width="1.34132"
|
|
550
|
+
/>
|
|
551
|
+
<path
|
|
552
|
+
d="M1603 458.146L1611.22 458.994L1613.01 464.622L1617.17 464.442L1615.4 467.526L1632.61 475.209L1631.87 482.122L1643.32 488.417L1642.55 502.217L1648.18 512.11L1641.16 526.86L1640.24 549.884L1636.36 555.64L1644.17 573.679L1635 580.54L1638.36 582.365L1633.87 589.509L1627.78 587.479L1630.35 591.282L1622.98 597.398L1607.72 599.094L1599.91 595.547L1603.3 587.658L1595.91 586.245L1590.95 572.086L1582.35 570.621L1585.66 551.58L1567.47 542.149L1564.26 535.905L1573.15 531.511L1570.68 525.01L1575.74 507.716L1589.95 490.216L1588.1 484.511L1603 458.146Z"
|
|
553
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
554
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
555
|
+
stroke-width="1.34132"
|
|
556
|
+
/>
|
|
557
|
+
<path
|
|
558
|
+
d="M1303.25 785.78L1307.47 773.111L1315.63 778.508L1321.77 774.319L1327.83 778.816L1334.41 772.572L1337.67 776.812L1334.36 779.844L1340.39 783.776L1339.29 791.973L1345.07 792.538L1347.48 796.367L1341.5 805.952L1339.75 828.488L1348.15 831.854L1347.71 835.452L1355.91 835.478L1359.86 849.662L1379.43 848.043L1375.61 854.93L1385.11 865.003L1374.89 870.605L1372.55 878.391L1344.68 882.528L1354.98 891.24L1342.71 902.495L1339.01 896.559L1331.58 897.612L1334.43 886.46L1330.38 889.132L1327.53 884.276L1312.04 882.708L1300.89 869.809L1304.82 858.605L1299.09 854.725L1304.18 841.079L1287.97 820.419L1295.29 818.749L1288.54 812.042L1294.29 808.856L1296.29 799.631L1308.39 794.928L1303.25 785.78Z"
|
|
559
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
560
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
561
|
+
stroke-width="1.34132"
|
|
562
|
+
/>
|
|
563
|
+
<path
|
|
564
|
+
d="M1462.89 519.382L1468.05 511.21L1469.82 517.815L1479.45 507.073L1489.21 503.835L1496.97 518.431L1516.7 513.883L1526.17 525.806L1539.5 516.221L1562.93 537.036L1555.97 547.674L1561.13 576.866L1557.02 580.746L1545.51 574.013L1544.31 580.952L1537.09 579.615L1534.49 588.198L1528.46 584.935L1525.43 588.763L1519.06 583.11L1510.89 585.654L1500.85 600.353L1497.12 597.5L1493.22 604.079L1487.7 602.974L1487.23 608.576L1472.98 614.126L1467.53 610.965L1464.35 616.413L1443.24 623.557L1430.09 625.458L1423.82 617.595L1418.5 615.565L1421.74 604.156L1414.62 603.642L1415.32 594.545L1407.66 592.335L1420.53 582.442L1419.58 569.979L1414.16 566.022L1408.25 570.185L1412.31 559.161L1424.59 559.392L1429.06 553.944L1432.19 559.52L1442.21 557.542L1442.23 536.008L1447.63 536.136L1449.66 529.892L1456.82 531.048L1462.89 519.382Z"
|
|
565
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
566
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
567
|
+
stroke-width="1.34132"
|
|
568
|
+
/>
|
|
569
|
+
<path
|
|
570
|
+
d="M1284.32 640.748L1291.1 648.252L1298.86 649.254L1299.73 655.19L1304.82 652.183L1307.47 659.198L1321 661.897L1320.28 666.316L1335.23 680.681L1357.32 670.274L1373.81 667.987L1378.95 673.743L1395.82 668.218L1395.39 673.82L1403.6 682.634L1411.05 681.863L1417.68 687.825L1417.89 691.936L1403.37 693.838L1410.18 700.827L1406.92 707.123L1415.55 721.385L1411.59 730.044L1407.1 730.61L1406.81 739.629L1413.39 742.302L1412.98 746.233L1402.04 750.962L1393.66 749.163L1386.45 739.732L1374.61 745.128L1362.25 739.809L1345.07 792.539L1339.29 791.974L1340.39 783.777L1334.36 779.845L1337.67 776.813L1334.41 772.573L1327.83 778.817L1321.77 774.32L1315.63 778.509L1307.47 773.112L1303.25 785.781L1301.46 791.254L1291.26 795.597L1284.04 789.738L1261.21 793.156L1259 788.479L1250.21 786.68L1251.14 777.224L1262.39 769.284L1261.87 748.572L1256.92 743.844L1247.7 744.383L1244.74 737.831L1234.39 736.7L1222.32 704.065L1233.9 703.551L1240.25 711.466L1267.73 699.594L1266.55 690.446L1272.56 685.692L1265.91 679.139L1266.01 667.344H1261.26L1268.01 662.924L1267.29 647.455L1274.46 645.63L1280.86 647.352L1282.01 641.519L1284.32 640.748Z"
|
|
571
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
572
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
573
|
+
stroke-width="1.34132"
|
|
574
|
+
/>
|
|
575
|
+
<path
|
|
576
|
+
d="M829.367 446.788L841.542 447.328L850.788 434.557L867.458 430.831L876.139 439.799L877.166 456.322L887.569 458.198L892.449 468.014L903.468 470.506L905.06 465.598L914.05 477.676L920.42 476.725L933.005 485.565L926.096 486.438L925.043 491.141L920.009 500.032L925.172 502.987L925.891 517.223L921.884 525.421L916.49 523.468L918.057 532.821L910.223 544.616L897.406 553.07L901.105 555.923L883.331 567.949L876.293 564.094L875.779 575.94L859.752 569.542L855.103 568.411L850.788 573.91L825.437 561.062L820.685 565.713L812.158 557.978L816.73 552.556L796.644 552.89L794.615 545.67L794.179 538.937L787.886 534.337L795.771 530.123L791.379 521.001L805.865 514.345L798.956 500.906L810.694 498.259L808.331 482.507L819.863 474.978L818.528 453.367L829.367 446.788Z"
|
|
577
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
578
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
579
|
+
stroke-width="1.34132"
|
|
580
|
+
/>
|
|
581
|
+
<path
|
|
582
|
+
d="M1456.8 828.951L1460.57 830.519L1461.58 844.858L1465.89 849.483L1471.16 848.147L1474.49 858.117L1492.81 856.884L1499.43 868.087L1510.22 866.417L1529.49 833.525L1536.11 837.817L1532.16 840.695L1534.88 847.17L1548.8 854.648L1548.67 861.201L1560.49 853.26L1563.42 865.004L1581.81 874.666L1581.88 895.249L1601.74 910.153L1593.52 921.974L1596.16 932.766L1590.49 938.702L1581.91 938.188L1575.95 945.795L1570.35 946.026L1570.33 950.805L1556.94 947.362L1542.38 954.84L1529.54 954.788L1523.22 963.423L1514.02 960.699L1510.66 952.707L1502.9 952.219L1501.75 948.493L1490.42 948.004L1489.01 928.141L1495.89 917.991L1489.08 905.682L1480.35 905.322L1471.49 896.971L1465.97 899.283L1465.35 912.44L1447.29 904.834L1435.12 878.52L1441.75 874.229L1443.31 863.719L1451.15 861.612L1456.8 828.951Z"
|
|
583
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
584
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
585
|
+
stroke-width="1.34132"
|
|
586
|
+
/>
|
|
587
|
+
<path
|
|
588
|
+
d="M1559.69 763.167L1558.84 768.23L1567.37 776.53L1560.18 798.449L1570.97 800.428L1568.27 811.606L1575.05 809.833L1586.51 831.135L1575.46 842.982L1562.7 844.446L1560.49 853.26L1548.67 861.201L1548.8 854.648L1534.88 847.17L1532.16 840.695L1536.11 837.817L1529.49 833.525L1510.22 866.417L1499.43 868.087L1492.81 856.884L1474.49 858.117L1471.16 848.147L1465.89 849.483L1461.58 844.858L1460.57 830.519L1456.8 828.951L1455.92 803.665L1463.04 806.466L1463.71 801.353L1470.49 799.271L1488.83 798.192L1506.63 785.087L1508.14 780.333L1502.95 781.052L1498.66 771.75L1502.08 764.324L1530.51 749.368L1562.65 753.994L1559.69 763.167Z"
|
|
589
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
590
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
591
|
+
stroke-width="1.34132"
|
|
592
|
+
/>
|
|
593
|
+
<path
|
|
594
|
+
d="M1082.98 363.402L1090.48 363.505L1092.48 370.238L1097.44 376.122L1083.93 376.456L1072.6 370.7L1082.98 363.402Z"
|
|
595
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
596
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
597
|
+
stroke-width="1.34132"
|
|
598
|
+
/>
|
|
599
|
+
<path
|
|
600
|
+
d="M982.295 172.68L989.898 171.729L990.283 176.792L1014.32 196.989L1025.75 223.354L1021.93 222.378L1015.51 233.659H1022.16L1016.38 241.985L1018.92 251.107L1015.61 252.572L1021.85 259.433L1018.46 264.88L1026.32 265.086L1018.18 280.864L1011.94 282.226L1003.41 275.673L983.322 271.767L975.129 277.318L971.225 290.86L958.999 291.579L956.482 296.822L947.158 298.62L948.75 305.147L942.74 306.381L937.269 303.066L935.574 294.689L931.593 298.697L925.429 294.432L927.072 290.706L933.391 292.068L933.211 284.461L929.076 286.569L920.831 277.549L905.934 281.712L903.802 274.851L897.843 276.932L888.673 268.144L867.072 276.701L865.737 276.752L847.475 270.637L842.389 264.11L855.977 231.834L897.869 207.063L953.245 193.777L982.295 172.68Z"
|
|
601
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
602
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
603
|
+
stroke-width="1.34132"
|
|
604
|
+
/>
|
|
605
|
+
<path
|
|
606
|
+
d="M1162.94 328.198L1172.77 331.102L1173.06 345.132L1183.41 357.03L1187.7 355.436L1190.27 362.015L1194.38 358.726L1196.02 367.848L1204.34 373.399L1206.91 371.034L1207.11 377.202L1198.18 378.05L1202.44 381.005L1197.23 386.144L1205.09 389.408L1203.26 405.956L1212.12 404.158L1214.82 408.937L1204.7 416.338L1206.42 420.963L1198.48 423.173L1201.82 429.186L1196.02 430.908L1199.38 445.324L1160.27 450.258L1156.85 458.943L1160.27 467.783L1148.53 481.608L1135.99 486.901L1133.81 480.708L1127.13 481.017L1129.03 484.435L1123.84 487.929L1095.93 487.852L1104.38 475.723L1102.55 469.659L1093.79 466.215L1091.71 457.273L1099.19 445.375L1106.92 443.525L1102.29 439.028L1101.78 420.398L1109.59 396.937L1114.06 385.502L1112.06 378.487L1108.2 365.458L1112.9 357.749L1107.33 345.235L1111.54 334.16L1116.09 329.534L1122.87 336.678L1128.8 337.192L1134.79 331.41L1139.44 335.701L1151.92 332.258L1153.92 335.573L1162.35 333.286L1162.94 328.198Z"
|
|
607
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
608
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
609
|
+
stroke-width="1.34132"
|
|
610
|
+
/>
|
|
611
|
+
<path
|
|
612
|
+
d="M995.471 356.798L997.372 350.605L992.184 351.042L989.821 338.451L994.11 338.913L996.37 333.26L1006.88 334.596L1019.1 339.915L1030.53 334.776L1035.39 344.361L1038.78 339.401L1051.08 347.496L1061.46 344.335L1070.45 355.051L1070.03 362.015L1063.9 372.602L1069.21 385.039L1059.5 389.587L1058.86 396.191L1049.77 402.204L1055.21 409.22L1050.46 418.65L1041.73 418.162L1046.3 423.687L1040.29 434.582L1034.72 437.409L1027.45 433.195L1025.91 419.241L1006.44 401.793L1005.82 373.141L995.471 356.798Z"
|
|
613
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
614
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
615
|
+
stroke-width="1.34132"
|
|
616
|
+
/>
|
|
617
|
+
<path
|
|
618
|
+
d="M740.266 668.835L751.413 664.209L771.473 665.52L777.381 659.969L776.019 655.035L782.595 652.003L786.319 652.311L784.007 656.706L793.023 650.821L815.677 648.149L820.172 649.151L816.653 654.598L824.41 655.035L826.105 667.241L831.756 667.807L831.55 684.587L838.922 687.799L830.214 692.99L836.173 693.94L832.963 701.161L839.384 706.686L827.98 722.824L835.274 720.562L833.887 724.931L839.769 728.425L834.504 731.997L830.446 745.283L834.298 747.672L832.86 758.131L838.922 762.294L836.995 769.438L843.596 772.675L848.631 765.994L854.23 768.898L846.91 790.972L858.673 795.263L855.899 804.976L845.831 803.434L837.329 811.606L831.447 811.323L831.293 820.728L824.384 824.249L818.399 813.919L807.792 811.683L804.375 806.287L796.542 808.111L790.506 802.201L781.439 803.409L776.405 797.19L769.29 798.603L770.831 795.34L761.61 791.871L761.867 786.14L755.086 781.875L755.42 772.829L766.31 770.877L777.843 760.367L770.728 755.895L766.927 758.388L770.42 749.523L766.259 739.424L771.011 735.081L769.804 723.774L765.078 720.922L767.543 717.324L762.997 713.778L765.489 711.62L757.912 701.11L760.968 694.66L746.816 683.045L749.256 677.392L740.266 668.835Z"
|
|
619
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
620
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
621
|
+
stroke-width="1.34132"
|
|
622
|
+
/>
|
|
623
|
+
<path
|
|
624
|
+
d="M1008.9 123.651L1010.42 124.859L1012.91 128.559L1027.81 123.42L1038.85 131.617L1042.99 128.353L1042.89 135.548L1056.78 141.484L1057.73 150.041L1064.59 151.763L1077.46 145.365L1083.54 147.986L1084.11 143.669L1086.91 149.065L1096.8 145.082L1101.45 151.044L1090.04 157.828L1088.78 165.125L1093.33 168.8L1097.62 161.528L1103.53 159.909L1105.51 164.406L1108.05 159.601L1110.03 164.534L1123.66 169.854L1124.23 161.965L1131.58 164.149L1129.03 176.843L1139.13 170.29L1140.8 179.875L1149.58 174.453L1164.89 174.351L1173.7 181.366L1171.77 184.706L1176.99 185.914L1161.14 210.994L1168.07 231.757L1164.12 234.276L1160.83 230.472L1158.21 236.074L1152.89 231.809L1150.4 238.413L1142.85 230.447L1143.8 237.256L1133.66 239.209L1132.53 247.201L1122.18 244.991L1118.04 253.831L1115.39 247.484L1109.56 249.745L1102.6 242.781L1099.6 245.813L1082.31 234.43L1068.06 232.066L1055.6 235.612L1045.53 229.547L1032.43 232.528L1031.53 226.232L1025.7 223.303L1014.27 196.938L990.232 176.74L989.846 171.678L982.244 172.629L997.68 148.936L1015.35 152.046L999.427 137.758L1001.17 123.24L1008.9 123.651Z"
|
|
625
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
626
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
627
|
+
stroke-width="1.34132"
|
|
628
|
+
/>
|
|
629
|
+
<path
|
|
630
|
+
d="M1047.53 1098.23L1063.72 1090.57L1073.81 1096.38L1068.29 1099.95L1084.03 1102.01L1105.3 1123.64L1101.99 1128.37L1107.51 1131.33L1108.41 1143.22L1118.78 1156.15L1127.8 1160.26L1136.46 1155.45L1145.99 1158.56L1148.35 1165.35L1145.45 1171.03L1129.08 1177.12L1117.42 1170.38L1114.21 1184.13L1120.48 1191.56L1119.81 1198.29L1109.59 1205.59L1090.84 1206.15L1076.1 1199.78L1071.45 1210.91L1066.75 1206.13L1056.32 1209.19L1051.77 1203.38L1052.88 1192.18L1047.56 1197.19L1039.6 1193.74L1031.51 1182.51L1015.53 1175.4L1018.92 1166.25L1012.78 1165.5L1017.3 1162.14L1011.32 1157.2L1010.68 1149.8L1004.77 1147.36L1001.15 1132.28L1003.56 1129.5L999.042 1126.21L1008.24 1126.16L1017.07 1113.67L1012.45 1103.08L1024.98 1106.17L1027.83 1101.72L1031.1 1104.68L1031.61 1098.95L1039.03 1100.98L1038.85 1096.3L1047.53 1098.23Z"
|
|
631
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
632
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
633
|
+
stroke-width="1.34132"
|
|
634
|
+
/>
|
|
635
|
+
<path
|
|
636
|
+
d="M948.981 1064.26L956.61 1062.12L950.779 1068.14L964.88 1080.68L974.384 1076.69L972.252 1085.48L980.471 1090.26L992.338 1076.39L999.683 1086.56L1004.54 1083.76L1003.05 1075.64L1010.5 1080.39L1009.78 1076.05L1012.35 1078.6L1016.61 1074.02L1036.13 1070.14L1034.87 1077.11L1045.56 1079.98L1037.08 1089.72L1047.53 1098.23L1038.85 1096.3L1039.03 1100.98L1031.61 1098.95L1031.1 1104.68L1027.83 1101.72L1024.98 1106.17L1012.45 1103.08L1017.07 1113.67L1008.24 1126.16L999.041 1126.21L1003.56 1129.5L1001.15 1132.28L994.418 1137.03L992.851 1133.87L989.897 1139.47L980.908 1136.67L980.24 1142.27L973.433 1143.15L980.214 1147.33L964.778 1154.63L957.997 1146.56L937.038 1151.68L930.771 1151.11L931.721 1135.36L916.31 1129.78L926.507 1113.18L917.004 1115.78L914.538 1110.51L919.701 1099L930.874 1099.85L926.533 1093.01L932.209 1092.04L936.91 1079.65L928.254 1074.38L931.13 1063.82L935.933 1069.17L948.981 1064.26Z"
|
|
637
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
638
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
639
|
+
stroke-width="1.34132"
|
|
640
|
+
/>
|
|
641
|
+
<path
|
|
642
|
+
d="M1449.58 1159.72L1457 1157.49L1459.16 1161.83L1467.28 1156.02L1477.53 1169.02L1498.1 1149.9L1516.03 1159.54L1519.42 1151.06L1542.89 1151.5L1545.41 1157.49L1555.56 1158.54L1560.41 1175.14L1572.41 1179.43L1568.81 1189.61L1574.2 1197.32L1566.29 1206.75L1554.37 1206.15L1551.58 1216.13L1537.58 1226.07L1549.52 1228.02L1543.3 1241.77L1535.03 1239.33L1516.21 1245.86L1514.49 1253.93L1496.99 1249.94L1492.27 1254L1491.76 1262.97L1485.36 1262.66L1488.47 1255.34L1477.47 1255.49L1466.97 1248.73L1462.71 1251.97L1469.79 1256.98L1457.05 1259.63L1454.9 1250.12L1442.83 1245.98L1440.18 1240.74L1441.41 1232.65L1449.97 1225.81L1440.21 1220.49L1443.75 1215.05L1441.36 1208.72L1452.69 1205.54L1443.13 1196.44L1445.86 1186.45L1438.51 1183.08L1443.13 1172.8L1453.51 1170.41L1455.33 1166.04L1449.04 1161.03L1449.58 1159.72Z"
|
|
643
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
644
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
645
|
+
stroke-width="1.34132"
|
|
646
|
+
/>
|
|
647
|
+
<path
|
|
648
|
+
d="M1331.25 1071.38L1345.97 1073.87L1349.2 1086.61L1374.89 1074.72L1380.08 1079.19L1386.4 1073.64L1385.09 1086.23L1406.38 1088.59L1409.36 1097.35L1421.66 1103.19L1422.3 1110.95L1426.54 1110.41L1422.71 1127.57L1433.4 1132.87L1426.67 1147.41L1438.3 1146.08L1449.55 1159.72L1448.99 1161.06L1432.91 1170.56L1424.82 1170.49L1401.5 1158.95L1387.37 1159.31L1373.86 1151.86L1363.72 1138.47L1340.8 1131.69L1351.8 1119.2L1338.65 1108.2L1338.75 1092.52L1331.07 1080.19L1331.25 1071.38ZM1367.52 1057.81L1368.78 1059.09L1376.12 1064.39L1367.16 1076.85L1356.75 1075.1L1355.09 1068.39L1362.48 1058.86L1367.31 1057.47L1367.52 1057.81Z"
|
|
649
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
650
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
651
|
+
stroke-width="1.34132"
|
|
652
|
+
/>
|
|
653
|
+
<path
|
|
654
|
+
d="M595.377 660.714L597.586 669.04L605.42 672.895L606.191 681.4L599.949 671.507L590.112 666.316L589.393 661.1L595.377 660.714ZM624.376 660.509L632.8 671.122L649.264 676.261L651.781 683.173L670.352 686.848L675.309 683.713L669.427 662.924L675.078 659.018L678.417 660.226L679.367 676.441L689.821 671.687L688.382 660.098L696.679 659.738L699.864 651.823L712.989 660.637L722.852 664.44L731.225 662.23L740.215 668.86L749.204 677.417L746.764 683.071L760.917 694.686L757.86 701.135L765.411 711.645L762.92 713.804L767.466 717.35L765.026 720.948L769.727 723.8L770.934 735.107L766.156 739.424L770.343 749.548L766.85 758.414L770.651 755.921L777.74 760.392L766.208 770.902L755.343 772.829L749.821 766.971L735.745 771.879L732.74 770.131L736.105 762.576L716.251 770.979L707.107 771.236L706.67 778.174L694.983 768.307L697.141 774.911L692.03 767.048L678.776 767.022L673.793 757.54L659.461 755.047L641.918 743.509L637.269 725.65L606.859 692.784L605.805 682.3L624.376 660.509Z"
|
|
655
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
656
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
657
|
+
stroke-width="1.34132"
|
|
658
|
+
/>
|
|
659
|
+
<path
|
|
660
|
+
d="M824.41 655.035L826.105 649.331L831.447 651.566L834.555 640.028L841.182 639.412L843.982 646.427L854.821 647.044L854.461 655.832L867.74 657.065L869.923 675.901L899.204 671.764L895.942 664.132L909.144 669.168L910.505 680.167L920.291 688.493L927.894 704.27L934.213 712.108L932.44 727.038L957.586 741.788L958.048 750.602L964.572 752.889L960.976 760.418L955.839 766.148L947.158 763.836L942.458 776.633L931.593 775.245L925.916 784.213L921.704 784.11L923.245 799.94L911.353 798.192L908.605 804.899L898.845 808.548L887.774 798.655L882.612 804.025L886.593 809.55L880.814 812.197L855.899 804.976L858.673 795.263L846.91 790.971L854.23 768.898L848.631 765.994L843.596 772.675L836.995 769.438L838.922 762.294L832.86 758.131L834.298 747.672L830.446 745.283L834.504 731.997L839.769 728.425L833.887 724.931L835.274 720.562L827.98 722.823L839.384 706.686L832.963 701.161L836.173 693.94L830.214 692.989L838.922 687.799L831.55 684.587L831.756 667.807L826.105 667.241L824.41 655.035Z"
|
|
661
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
662
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
663
|
+
stroke-width="1.34132"
|
|
664
|
+
/>
|
|
665
|
+
<path
|
|
666
|
+
d="M960.976 760.418L974.358 762.5L979.726 758.131L986.276 766.405L988.639 777.866L981.832 786.552L994.906 797.781L993.648 803.46L999.555 807.392L998.733 818.107L1003.43 822.836L996.37 829.902L1010.19 830.904L1010.63 836.147L1005.1 837.714L1012.45 844.806L1024.24 839.924L1024.39 845.166L1036.05 850.742L1037.72 865.595L1035.18 870.683L1025.83 868.216L1004.15 887.232L992.954 885.844L979.315 900.697L972.483 897.202L969.016 904.243L954.889 899.438L959.743 891.857L951.113 891.061L943.922 878.958L931.028 880.422L927.997 877.133L921.961 884.405L915.488 877.904L917.98 870.349L902.543 863.848L911.559 855.907L911.225 849.509L918.776 851.436L921.91 829.979L927.021 832.266L935.677 826.151L934.11 818.159L922.141 811.76L923.245 799.94L921.704 784.111L925.916 784.213L931.593 775.245L942.458 776.633L947.158 763.836L955.839 766.148L960.976 760.418Z"
|
|
667
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
668
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
669
|
+
stroke-width="1.34132"
|
|
670
|
+
/>
|
|
671
|
+
<path
|
|
672
|
+
d="M1594.34 425.537L1589.85 451.414L1600.94 453.444L1603 458.146L1588.1 484.511L1589.95 490.216L1575.74 507.716L1570.68 525.009L1573.15 531.511L1564.26 535.905L1562.93 537.036L1539.5 516.221L1526.17 525.806L1516.69 513.883L1496.97 518.431L1489.21 503.835L1479.45 507.073L1469.82 517.814L1468.05 511.21L1462.89 519.382L1458.85 511.493L1452.51 515.168L1451.35 502.319L1435.48 494.071L1440.03 490.422L1441.08 479.089L1446.5 476.648L1424.43 452.108L1414.01 454.754L1415.62 447.071L1410.46 445.169L1418.53 440.441L1434.76 439.645L1436.97 432.218L1445.11 434.248L1450.09 428.261L1465.07 428.595L1459.83 442.189L1467.87 438.36L1464.99 443.705L1469.85 444.373L1471.1 451.774L1482.79 450.18L1484.51 446.352L1487.59 451.183L1491.24 442.317L1500.05 444.013L1506.68 438.206L1516.64 445.144L1532.08 438.694L1536.93 441.186L1535.65 437.203L1541.4 432.09L1543.92 439.259L1558.56 445.658L1594.34 425.537Z"
|
|
673
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
674
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
675
|
+
stroke-width="1.34132"
|
|
676
|
+
/>
|
|
677
|
+
<path
|
|
678
|
+
d="M1148.53 481.608L1160.27 467.783L1156.85 458.943L1160.27 450.258L1199.38 445.324L1200.87 450.386L1208.94 449.127L1221.24 464.776L1216.98 478.216L1222.47 477.368L1226.4 485.334L1235.06 481.222L1234.14 486.542L1239.63 488.88L1248.24 505.249L1246.08 510.337L1250.65 507.382L1252.65 510.851L1250.68 518.868L1266.65 519.511L1268.3 516.247L1273.64 519.382L1279.73 514.037L1283.48 516.915L1286.04 512.058L1288 518.714L1293.13 519.536L1295.14 522.697L1288.15 527.631L1290.75 533.156L1297.11 531.871L1297.45 546.158L1287.33 551.323L1292.18 557.953L1286.15 558.493L1288.51 561.448L1274.13 584.292L1274.97 594.802L1268.86 601.226L1273.28 611.891L1262.18 616.49L1256.48 603.282L1248.34 607.779L1247.7 596.935L1242.46 605.723L1239.22 601.612L1232.72 602.665L1227.2 594.52L1217.88 593.594L1208.48 577.097L1207.32 587.659L1197.1 585.783L1192.24 591.564L1172.77 583.753L1166.12 572.883L1157.52 577.765L1152.74 575.787L1147.37 558.03L1139.02 552.48L1139.44 546.081L1157.95 541.404L1156.23 522.491L1168.9 511.904L1168.54 502.833L1160.55 495.921L1158.39 486.362L1148.53 481.608Z"
|
|
679
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
680
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
681
|
+
stroke-width="1.34132"
|
|
682
|
+
/>
|
|
683
|
+
<path
|
|
684
|
+
d="M1564.26 535.905L1567.47 542.149L1585.66 551.58L1582.35 570.621L1590.95 572.086L1595.91 586.245L1579.96 587.658L1581.96 594.031L1575.39 597.294L1571.81 590.947L1575.8 584.6L1571.22 578.87L1561.13 576.866L1555.97 547.674L1562.93 537.035L1564.26 535.905Z"
|
|
685
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
686
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
687
|
+
stroke-width="1.34132"
|
|
688
|
+
/>
|
|
689
|
+
<path
|
|
690
|
+
d="M1069.21 385.039L1081.18 388.893L1092.79 392.799L1103.5 389.33L1109.59 396.937L1101.78 420.398L1102.29 439.028L1106.92 443.525L1099.19 445.375L1091.71 457.273L1083.7 454.549L1074.73 460.022L1070.24 452.724L1066.03 460.022L1047.95 461.95L1044.09 458.198L1046.2 443.628L1040.91 442.908L1040.29 434.582L1046.3 423.687L1041.73 418.162L1050.46 418.65L1055.21 409.22L1049.77 402.204L1058.86 396.191L1059.5 389.587L1069.21 385.039Z"
|
|
691
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
692
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
693
|
+
stroke-width="1.34132"
|
|
694
|
+
/>
|
|
695
|
+
<path
|
|
696
|
+
d="M1078.66 355.308L1084.39 356.85L1082.98 363.402L1072.6 370.7L1083.93 376.456L1081.18 388.893L1069.21 385.039L1063.9 372.602L1070.03 362.015L1078.66 355.308Z"
|
|
697
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
698
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
699
|
+
stroke-width="1.34132"
|
|
700
|
+
/>
|
|
701
|
+
<path
|
|
702
|
+
d="M1107.33 345.235L1112.9 357.749L1108.2 365.458L1112.06 378.486L1105.43 370.803L1092.48 370.238L1090.48 363.505L1082.98 363.402L1084.39 356.85L1078.66 355.308L1087.65 351.505L1095.46 354.614L1107.33 345.235Z"
|
|
703
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
704
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
705
|
+
stroke-width="1.34132"
|
|
706
|
+
/>
|
|
707
|
+
<path
|
|
708
|
+
d="M1092.48 370.237L1105.43 370.803L1112.06 378.486L1114.06 385.501L1109.59 396.936L1103.5 389.33L1092.79 392.799L1081.18 388.893L1083.93 376.456L1097.44 376.122L1092.48 370.237Z"
|
|
709
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
710
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
711
|
+
stroke-width="1.34132"
|
|
712
|
+
/>
|
|
713
|
+
<path
|
|
714
|
+
d="M1017.02 309.542L1020.87 310.775L1021.05 317.79L1031.04 320.54L1048.82 318.638L1057.24 313.037L1066.8 320.643L1071.91 318.073L1072.83 322.57L1082.06 316.917L1100.88 329.894L1107.69 326.99L1111.54 334.159L1107.33 345.235L1095.46 354.614L1087.65 351.505L1078.66 355.308L1070.03 362.015L1070.45 355.051L1061.46 344.335L1051.08 347.496L1038.78 339.401L1035.39 344.361L1030.53 334.776L1019.1 339.915L1006.88 334.596L1017.02 309.542Z"
|
|
715
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
716
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
717
|
+
stroke-width="1.34132"
|
|
718
|
+
/>
|
|
719
|
+
<path
|
|
720
|
+
d="M67.004 1L63.7554 2.50273L58.7653 1.78422L53.1837 3.41839L51.2341 4.07117L39.129 13.0481L37.1487 16.0974L33.175 17.9002L31.1663 18.2135L30.5989 17.4687L30.8246 18.3427L31.4883 18.4435L31.3788 20.2704L28.1674 19.6154L29.9002 18.9955L29.83 17.7162L26.7238 18.4391L21.5081 16.6056L19.955 17.2759L19.4095 20.4281L20.5683 20.3887L20.4763 19.346L21.4993 19.5366L20.6078 21.8148L19.9484 21.2036L19.4468 23.2496L19.7403 21.1116L20.1236 21.0612L19.1379 20.7852L18.932 24.5464L17.9813 26.0469L19.5081 32.4784L18.0185 39.5343L11.8521 44.8004L9.37673 45.8584L6.12155 45.2034L1.01972 50.7938L1 52.5134L2.93208 56.0577L2.19824 63.6962L4.99997 67.5845L11.46 72.9952L11.1511 74.2372L16.2288 79.6654L16.4501 85.1616L19.2255 86.3642L20.6954 88.4912L20.8553 95.2075L18.886 101.286L20.2967 102.559L22.4391 109.466L27.4577 112.498L30.0535 114.984L30.2046 116.281L33.0633 118.204L34.1739 121.424L33.5584 122.587L35.5671 124.903L42.7434 125.882L49.5758 128.097L52.1103 129.672L58.3534 137.251L61.0675 138.609L66.5418 139.262L68.0423 140.077L68.8397 142.629L71.7925 144.022L74.8812 144.629L73.5801 144.057L74.7827 144.099L75.1704 143.201L74.855 145.251L75.6655 145.139L76.4585 146.386L81.4486 146.086L87.5624 149.19L91.7355 150.031L95.3302 153.203L96.4123 152.197L101.201 153.805L105.341 152.346L106.23 153.772L108.982 154.725L111.948 157.089L119.529 155.724L122.283 157.871L125.961 155.729L129.295 156.105L131.875 153.33L139.904 153.858L145.347 151.691L151.746 151.196L153.389 149.726L158.677 150.511L164.883 145.934L167.746 141.772L168.298 139.976L166.747 133.479L168.009 126.92L166.64 124.073L166.101 118.471L168.096 108.577L169.704 104.511L172.653 101.28L172.94 96.1407L176 95.3039L174.874 89.9852L175.542 88.3489L173.472 85.8626L172.944 83.2317L168.401 81.4069L164.598 77.7662L160.565 77.2514L157.595 72.1474L155.021 70.062L153.238 66.6973L148.029 60.9164L146.197 57.5517L146.572 54.7762L142.379 49.3699L139.615 48.1038L138.167 45.0567L137.56 33.3503L136.491 29.0743L132.706 23.0042L127.746 17.3635L123.792 14.7918L120.474 13.4402L114.914 12.7502L106.96 8.32745L104.189 8.8269L97.5339 6.99339L95.2513 8.20916L92.5964 7.92657L82.3379 4.23985L77.9174 5.29789L73.2339 5.11608L67.004 1Z"
|
|
721
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
722
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
723
|
+
stroke-width="0.5"
|
|
724
|
+
/>
|
|
725
|
+
<path
|
|
726
|
+
d="M150.83 495.807L156.751 495.261L161.448 493.205L165.789 487.406L170.878 474.823L176 472.539V469.62L173.396 464.367L172.069 457.563L169.787 451.622L164.308 448.95L165.686 446.964L166.384 445.593L167.422 444.415L169.993 443.06L166.555 438.402L165.125 433.231L165.364 427.746L166.912 422.155L161.448 425.337L161.823 421.768L161.551 417.828L160.121 414.594L157.161 413.293L153.145 412.167L151.596 409.616L150.983 406.662L149.757 404.428L141.3 399.591L138.1 396.232L135.479 389.671L137.826 388.738L139.241 387.825L140.89 387.05L144.057 386.734L130.05 380.541L126.459 385.449L122.852 384.201L122.103 380.489L127.19 377.85L124.076 374.666L135.479 368.453L133.232 365.974L130.611 364.389L127.582 364.179L124.076 365.797L123.192 356.155L124.383 347.919L127.582 345.648L132.619 353.974L141.47 344.858L140.465 342.077L141.692 340.369L144.26 338.698L147.188 336.252L137.198 336.339L127.412 338.908L118.919 343.132L112.895 348.077L105.493 333.03L100.625 331.657L98.5142 328.436L97.4762 324.617L95.7594 321.483L88.9161 317.029L72.5119 309.689L54.0645 297.787L39.8699 293.155L25.2001 293.385L8.62507 302.874L4.91546 306.308L2.10588 311.062L1 316.924L2.10588 323.066L5.06875 328.383L17.0144 340.986L20.1809 345.28L22.6314 350.243L23.6015 355.452L22.8175 358.371L21.4051 361.17L20.7415 364.039L22.3073 367.135L24.1117 369.141L25.5067 371.217L26.4089 373.538L26.7155 376.267L29.9652 383.971L37.4874 391.254L52.4287 401.474L53.9616 403.303L56.5829 408.473L58.3851 410.337L60.7677 410.899L69.5512 410.337L74.0097 410.689L78.4858 410.549L83.5728 409.528L89.8183 407.382L90.7205 414.699L93.7841 420.747L96.966 425.285L98.3784 428.028L95.3148 434.287L89.2905 436.538L82.7911 434.569L78.3829 428.028L74.8266 431.458L63.8663 436.854L52.4287 448.95L56.2237 451.129L58.0632 452.535L58.591 454.294L58.3851 457.51L67.611 470.501L71.1147 472.539L77.3098 471.589L87.6744 467.336L94.209 466.371L118.615 469.62L130.153 467.617L132.926 468.162L132.619 472.539L139.324 473.012L145.962 468.847L151.697 466.493L155.731 472.539L155.323 479.129L151.29 481.395L146.575 482.908L144.057 487.301L145.861 493.573L150.83 495.807Z"
|
|
727
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
728
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
729
|
+
stroke-width="0.218503"
|
|
730
|
+
/>
|
|
731
|
+
<path
|
|
732
|
+
d="M77.0993 642.263L80.4448 643.881L85.0972 645.583L85.8092 646.592L86.3897 646.724L86.9044 647.336L88.3456 648.145L89.7038 648.691L91.8055 648.577L92.8807 649.189L94.0731 649.469L95.2827 649.998L97.8819 651.682L99.1887 652.294L99.1716 652.426L100.067 653.037L100.481 652.955L101.079 653.664L100.996 653.349L101.328 653.035L102.14 653.695L102.288 653.944L102.174 654.207L102.523 654.173L103.466 655.082L103.418 655.479L103.252 655.628L102.955 655.562L103.055 655.677L103.501 655.86L103.832 655.777L104.016 655.991L104.562 656.091L105.457 656.752L105.491 657.115L105.591 656.62L106.006 656.738L106.369 657.298L106.337 657.495L106.603 657.53L106.952 658.024L107.152 658.719L107.318 658.885L107.518 658.785L107.933 659.182L108.133 660.355L108.413 660.652L108.942 660.784L109.523 661.693L112.585 663.792L113.017 663.758L113.397 664.698L114.49 665.888L115.202 666.285L115.17 666.417L114.839 666.368L114.624 666.814L116.957 668.236L118.033 669.591L119.408 670.829L121.047 671.441L121.759 672.316L122.273 672.482L123.549 673.423L123.68 673.274L124.143 673.752L124.06 673.917L124.558 674.1V674.298L125.004 674.512L125.219 674.958L126.062 675.685L126.311 675.785L126.394 675.67L126.643 675.885L126.66 676.133L127.206 676.099L127.14 676.479L127.489 676.677L127.786 676.594L128.001 677.006L127.918 677.269L128.678 677.815L129.739 679.631L130.717 680.471L131.329 680.752L132.241 680.769L132.59 680.125L132.341 679.465L132.49 679.185H132.971L133.071 679.004L133.485 679.119L134.083 678.69L134.598 678.707L134.681 679.039L135.029 679.319L135.558 679.27L135.69 679.897L137.18 681.02V681.235L136.865 681.283L136.882 681.795L137.86 682.487L138.009 683.048L139.35 684.32L140.211 684.452L140.725 684.798L141.254 685.524L141.303 686.019L141.683 686.299L141.915 686.399L141.981 686.15L142.212 686.496L142.71 686.382L143.322 686.845L143.671 687.935L144.417 688.412L144.451 688.215L144.154 687.752L145.263 688.461L145.163 688.841L145.346 689.038L145.561 688.807L145.924 689.07L146.204 689.399H146.09L146.19 689.662L146.422 689.63L146.605 689.827L146.705 689.727L148.592 691.066L149.038 691.131L150.396 692.055L150.759 692.006L150.877 692.189L150.762 692.255L151.111 692.701L150.831 692.684L150.98 692.916L151.574 693.099L151.872 693.479L152.02 693.396L152.418 694.617L152.567 694.88L152.815 694.897L152.592 695.075L153.267 695.555L154.408 696.293L156.415 696.416L157.837 695.524L158.134 695.06L158.78 695.012L160.304 695.541L160.436 695.772L160.882 695.872L160.965 696.087L162.057 696.599L162.918 697.505L163.35 697.737L163.235 697.951L164.047 698.363L164.016 698.546L164.694 699.438L164.628 699.058L164.777 699.207L165.157 700.113L164.925 699.981L164.974 700.23L165.554 700.974L165.406 701.651L166.183 704.588L166.1 706.155L166.315 706.535L166.232 706.798L166.83 707.854L167.31 708.431L167.725 708.646L167.61 709.158L167.33 709.306L167.347 710.296L167.627 710.247L167.579 710.413L167.779 710.461L168.242 711.122L169.186 711.8L169.518 711.865L169.749 712.163L170.264 712.063L170.447 711.7L170.976 711.865L170.91 712.526L170.613 712.443L170.115 712.758L169.652 713.615L169.735 713.747L169.503 713.764L169.289 714.373L169.586 715.957L170.381 717.773L171.259 718.994L171.722 719.257L171.656 719.72L171.857 720.101L172.586 720.53L173 721.322L176 721.156L175.497 723.775L175.562 724.847L175.299 725.72L174.018 728.35L173.71 730.26L172.909 732.182L172.457 732.754L169.655 733.806L167.233 735.339L165.717 737.749L165.188 740.778L164.705 741.753L163.444 742.879L162.895 743.669L162.02 744.389L159.964 746.634L158.869 747.149L157.293 748.195L157.21 748.621L157.574 750.248L157.502 750.94L157.379 751.146L156.49 751.538L155.466 751.655L154.351 752.559L153.533 754.703L152.913 757.583L150.905 759.659L149.167 763.508L148.578 763.962L148.257 764.526L147.628 766.413L146.327 767.74L145.592 768.772L143.162 772.818L142.736 773.853L141.615 775.146L141.377 775.718L141.417 776.307L141.06 776.984L138.921 779.664L138.281 779.852L137.6 779.441L137.368 779.481L135.85 780.499L134.806 782.503L134.869 783.813L134.146 783.81L133.108 784.339L132.696 785.303L132.233 785.874L132.619 786.2L131.858 786.495L131.784 786.961L132.324 787.095L132.459 787.379L132.144 788.045L132.178 788.388L133.028 789.26L133.005 790.069L132.83 790.741L131.221 793.269L131.12 793.892L130.617 794.742L130.042 797.032L129.087 797.787L128.979 798.585L129.09 799.222L129.654 799.234L129.814 799.64L128.944 800.561L128.087 800.624L127.017 801.37L123.84 807.466L124.058 808.018L123.614 808.779L123.774 809.148L122.576 810.978L122.145 812.127L121.464 813.24L120.901 814.87L120.692 815.078L119.98 815.03L119.44 815.447L119.405 816.085L120.043 816.551L120.054 816.834L119.748 817.349L120.769 818.292L120.906 818.844L120.157 820.534L119.605 820.34L119.248 820.897L119.182 821.718L119.268 821.918L119.502 821.938L119.603 822.318L119.451 822.782L117.933 824.134L116.697 825.707L116.048 825.635L115.451 826.042L115.413 826.167L115.868 826.399L115.768 827.157L114.813 827.54L114.373 827.454L113.881 828.26L113.972 828.561L113.397 829.384L113.069 830.954L112.457 831.557L110.815 831.929L109.958 832.398L109.591 833.099L108.771 833.591L108.588 833.531L106.652 834.38L105.977 834.774L105.391 835.426L104.533 835.832L102.62 836.29L102.5 836.819L101.691 836.822L101.568 836.97L101.739 837.571L101.548 838.014L100.661 838.443L100.364 839.301L99.7978 839.75L99.5976 840.728L99.0715 841.451L98.8027 842.335L98.5939 842.484L96.7553 842.169L96.5837 842.438L96.7324 842.769L96.3178 843.075L93.7071 843.656L92.8721 843.156L90.0756 842.498L89.4608 842.02L88.5372 840.579L87.9796 840.425L86.8215 840.205L85.6234 840.405L85.2287 840.307L84.2193 840.619L83.6617 840.496L83.3901 840.673L81.7287 840.505L81.1311 840.205L79.4612 837.611L78.7949 837.242L77.6912 836.993L76.656 836.404L74.7345 836.413L72.9616 836.962L74.3427 833.756L74.9747 833.307L75.518 832.564L75.4007 831.689L75.5208 831.223L76.7046 830.262L77.2908 829.553L77.6225 828.066L78.346 827.786L79.1524 827.777L78.6205 827.314L77.3309 827.234L76.5302 826.922L75.4837 825.375L74.7945 824.826L73.8251 824.546L73.6936 823.048L72.993 822.564L73.2275 821.861L74.2855 821.243L74.4885 820.451L74.3399 819.107L73.279 818.887L72.5126 817.597L72.6699 817.26L73.1989 816.863L74.6887 816.519L75.0433 815.942L74.9861 815.75L74.2684 815.436L74.1197 814.984L74.2684 814.498L74.114 814.092L74.7144 813.54L74.8117 813.222L74.826 812.828L74.4256 812.084L74.5229 810.889L74.6687 810.755L76.1985 810.766L76.433 810.123L76.3501 809.774L75.7696 809.228L75.9698 808.707L77.6912 806.603L78.1773 805.631L79.444 805.079L80.0617 804.504L80.0216 804.001L79.547 802.937L79.5984 801.876L80.5478 800.809L80.9081 799.966L81.9203 799.057L82.1863 797.524L82.4693 797.052L85.3288 795.711L85.7778 794.544L86.2038 794.098L87.1903 793.732L87.7651 793.97L87.8995 792.754L87.4591 791.662L87.5707 789.323L88.1168 787.747L89.4007 785.646L89.7238 784.31L89.5637 783.441L88.4657 782.123L87.9024 781.863L87.7508 782.243L87.4534 782.46L86.9158 782.34L86.6671 780.53L86.1724 779.689L86.1152 778.837L85.5004 778.812L84.2479 778.314L82.5094 775.901L83.2957 774.657L83.6189 773.656L83.1671 771.54L83.2471 770.656L83.5159 770.227L85.4718 768.886L85.2087 768.023L85.3059 767.371L84.4424 766.582L84.3051 766.013L84.9714 764.897L85.1515 763.811L86.3611 762.924L86.7471 762.407L86.953 761.389L86.6185 759.816L87.5335 758.915L87.5907 758.521L87.1875 758.186L86.4583 758.069L85.5347 758.724L84.6654 758.506L84.614 758.077L85.1573 756.971L84.6969 753.331L83.6818 751.961L82.6123 750.955L82.0175 749.336L80.8452 749.21L79.0008 746.977L79.0351 746.611L79.301 746.379L80.5706 746.408L80.9367 746.274L81.3542 745.37L82.9812 743.743L84.4395 743.285L84.817 742.619L84.877 741.801L84.5825 741.475L83.6675 741.109L82.9211 740.274L81.9375 737.378L80.9653 735.599L80.9796 734.693L80.4077 733.923L80.3419 733.234L79.3468 732.743L78.8664 732.208L78.6119 731.624L78.4175 730.844L78.4232 729.631L79.058 728.745L80.0903 728.107L80.4105 726.643L79.5212 725.78L79.0694 723.91L78.7263 723.678L77.9685 723.649L77.7369 722.723L77.8256 721.825L77.6626 721.488L76.2071 721.107L75.701 720.184L73.9567 720.304L73.9824 720.072L74.5229 719.695L74.6029 719.452L74.0396 719.023L73.8394 718.199L74.6172 717.67L74.7144 716.99L74.2741 716.524L74.0968 715.906L73.8938 715.757L72.73 715.903L72.3125 715.629L72.1666 714.445L71.752 713.839L72.2725 712.489L72.1238 711.505L72.3211 709.281L72.5613 708.966L73.279 708.906L74.114 707.253L73.9824 706.704L74.2455 704.991L74.031 704.222L74.6172 703.702L74.9089 702.541L74.4142 702.06L74.3341 701.643L73.8966 701.014L73.5363 700.891L72.4011 700.954L70.9228 699.387L69.9162 698.792L69.7361 698.312L69.0212 697.908L68.4808 697.248L68.3235 696.59L68.6952 694.32L67.6229 693.902L67.4399 693.462L67.5343 692.953L68.375 691.689L68.2463 691.317L67.8631 691.008L67.8431 689.37L69.1814 688.506L68.0576 687.105L68.5637 686.428L69.6818 685.996L69.9849 684.883L70.7884 684.472L71.8464 683.58L71.4461 682.527L72.0208 681.844V681.578L71.7892 681.203L71.1086 680.703L69.7104 680.228L68.3206 679.342L66.1589 680.039L66.1246 679.479L66.7908 678.667L66.8566 677.815L67.2112 677.194L66.8595 676.634L67.1397 676.019L67.0368 675.716L65.078 675.298L64.02 673.932L63.9943 672.874L63.7798 672.719L62.9591 672.368L62.0126 672.805L61.4236 672.814L61.0948 672.562L61.6552 672.193L61.6867 671.375L61.9812 670.446L61.9326 669.891L63.145 668.853L63.2537 668.556L63.0049 667.458L62.4616 667.323L62.047 667.506L61.8068 667.249L61.3064 667.355L61.1119 667.18L61.0175 666.517L61.4779 665.602L61.9526 665.064L60.9861 664.544L60.9518 663.663L61.1405 663.209L62.0984 662.848L62.1327 662.153L62.4015 661.416L62.3958 661.027L61.9297 660.203L61.009 659.74L61.2949 658.851L61.3693 657.295L61.5952 656.981L61.6981 656.28L61.6438 655.917L61.3635 655.665L61.5809 654.736L61.3407 654.513L61.1748 653.675L61.2063 653.506L61.4951 653.403L61.7553 651.162L62.7018 650.355L62.6417 648.974L63.1164 648.568L64.8893 648.408L66.5935 648.963L66.951 648.877L67.3541 648.511L67.4028 645.937L66.9967 645.403L66.7279 644.51L65.9902 644.119L65.7471 643.641L65.1638 643.384L65.2696 642.492L67.114 642.575L69.1013 642.409L74.9632 644.027L76.2042 643.647L76.2528 643.332L75.8068 643.084L75.9383 642.786L77.0993 642.263Z"
|
|
733
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
734
|
+
/>
|
|
735
|
+
<path
|
|
736
|
+
d="M36.9636 631.371L38.1732 631.637L39.5629 632.215L42.1136 632.298L42.8913 632.115L45.1761 632.626L52.2475 636.71L54.9784 637.651L57.3117 638.792L58.7843 639.238L61.8468 641.153L65.2181 642.409L65.1123 643.304L65.6957 643.561L65.9387 644.039L66.6765 644.43L66.9453 645.325L67.3513 645.86L67.3027 648.434L66.8995 648.8L66.5421 648.885L64.8378 648.334L63.065 648.494L62.5903 648.9L62.6503 650.281L61.7038 651.087L61.4436 653.329L61.1548 653.432L61.1234 653.601L61.2892 654.439L61.5294 654.662L61.3121 655.594L61.5952 655.845L61.6495 656.209L61.5466 656.909L61.3207 657.227L61.2463 658.782L60.9604 659.671L61.8811 660.135L62.3501 660.958L62.3558 661.347L62.087 662.085L62.0527 662.78L61.0948 663.14L60.906 663.595L60.9432 664.475L61.9097 664.996L61.4351 665.533L60.9747 666.451L61.069 667.115L61.2635 667.289L61.7639 667.183L62.0041 667.441L62.4187 667.258L62.962 667.392L63.2108 668.49L63.1021 668.787L61.8897 669.825L61.9383 670.38L61.6438 671.309L61.6123 672.127L61.0519 672.496L61.3807 672.748L61.9698 672.739L62.9163 672.302L63.7369 672.653L63.9514 672.808L63.9771 673.866L65.0351 675.233L66.9939 675.65L67.0968 675.953L66.8166 676.568L67.1683 677.129L66.8137 677.749L66.748 678.601L66.0817 679.413L66.1189 679.974L68.2806 679.276L69.6703 680.165L71.0686 680.64L71.7492 681.14L71.9808 681.515V681.781L71.406 682.464L71.8064 683.517L70.7484 684.409L69.9477 684.821L69.6446 685.933L68.5294 686.365L68.0233 687.042L69.1471 688.446L67.8088 689.31L67.8288 690.948L68.212 691.257L68.3407 691.629L67.5 692.893L67.4085 693.402L67.5915 693.842L68.6638 694.263L68.2949 696.533L68.4522 697.191L68.9926 697.851L69.7075 698.254L69.8877 698.735L70.8942 699.329L72.3726 700.896L73.5078 700.834L73.8681 700.957L74.3055 701.586L74.3856 702.003L74.8803 702.484L74.5886 703.644L74.0024 704.165L74.2198 704.934L73.9567 706.647L74.0882 707.196L73.2533 708.849L72.5355 708.909L72.2953 709.223L72.098 711.448L72.2467 712.434L71.7292 713.784L72.1438 714.39L72.2896 715.574L72.7071 715.849L73.8738 715.703L74.0768 715.852L74.2541 716.469L74.6944 716.935L74.5972 717.616L73.8194 718.145L74.0196 718.968L74.5858 719.397L74.5057 719.64L73.9653 720.018L73.9395 720.249L75.6867 720.129L76.1928 721.053L77.6483 721.433L77.8113 721.771L77.7226 722.669L77.9542 723.595L78.712 723.624L79.0551 723.855L79.5069 725.725L80.3991 726.589L80.0817 728.056L79.0494 728.693L78.4146 729.58L78.4089 730.792L78.6034 731.573L78.8578 732.159L79.3382 732.694L80.3333 733.186L80.402 733.875L80.9739 734.644L80.9624 735.55L81.9346 737.329L82.9183 740.226L83.6675 741.061L84.5825 741.427L84.877 741.753L84.817 742.571L84.4395 743.237L82.9812 743.697L81.3542 745.324L80.9395 746.228L80.5735 746.362L79.3039 746.334L79.038 746.565L79.0037 746.931L80.848 749.164L82.0204 749.293L82.6152 750.912L83.6875 751.918L84.7026 753.288L85.163 756.928L84.6197 758.035L84.6712 758.466L85.5404 758.684L86.4641 758.029L87.1932 758.146L87.5964 758.481L87.5392 758.875L86.6242 759.776L86.9587 761.352L86.7529 762.37L86.3668 762.887L85.1573 763.774L84.9771 764.86L84.3109 765.975L84.4481 766.544L85.3117 767.334L85.2145 767.986L85.4775 768.849L83.5217 770.19L83.2529 770.619L83.1728 771.503L83.6246 773.619L83.3043 774.62L82.518 775.863L84.2565 778.277L85.5118 778.774L86.1266 778.8L86.1838 779.652L86.6785 780.493L86.9273 782.303L87.4649 782.423L87.7623 782.206L87.9138 781.825L88.4771 782.086L89.5752 783.404L89.7353 784.273L89.4122 785.609L88.1283 787.713L87.5821 789.289L87.4706 791.628L87.9109 792.72L87.7766 793.935L87.2018 793.698L86.2153 794.064L85.7892 794.51L85.3403 795.68L82.4808 797.021L82.1977 797.492L81.9318 799.025L80.9195 799.937L80.5592 800.781L79.6099 801.847L79.5584 802.908L80.0359 803.972L80.076 804.478L79.4583 805.056L78.1916 805.608L77.7055 806.58L75.9841 808.684L75.7839 809.205L76.3644 809.751L76.4473 810.1L76.2128 810.743L74.683 810.732L74.5372 810.866L74.4399 812.062L74.8403 812.805L74.826 813.2L74.7316 813.517L74.1311 814.069L74.2855 814.475L74.1368 814.961L74.2855 815.413L75.0033 815.727L75.0605 815.919L74.7059 816.497L73.2161 816.84L72.6871 817.237L72.5298 817.575L73.2962 818.864L74.357 819.084L74.5057 820.428L74.3027 821.22L73.2447 821.838L73.0102 822.542L73.7108 823.028L73.8423 824.529L74.8117 824.809L75.5008 825.358L76.5474 826.905L77.348 827.217L78.6377 827.297L79.1695 827.76L78.3632 827.769L77.6426 828.052L77.3109 829.539L76.7247 830.248L75.5408 831.209L75.4208 831.675L75.538 832.55L74.9947 833.293L74.3627 833.742L72.9816 836.948L71.4146 837.494L69.29 837.571L67.7945 836.845L66.4077 834.866L65.4955 834.154L64.855 834.031L63.1908 834.448L61.8811 835.249L60.5715 835.655L59.1532 835.844L57.04 836.521L54.7925 836.516L52.4906 836.85L51.5927 836.713L50.0143 835.947L48.4216 834.731L47.3893 832.673L46.7087 832.195L45.9052 832.167L45.4277 832.424L44.6899 833.253L44.4641 834.634L44.1495 834.96L43.469 835.135L41.7247 835.103L40.6895 835.401L38.6993 836.922L38.442 836.813L37.9673 836.09L37.0952 836.264L36.6176 837.013L36.6577 838.349L36.5061 838.866L35.7141 839.738L32.9918 840.808L32.2512 841.557L31.4534 841.943L30.8615 841.883L30.221 841.5H29.7034L28.6826 842.026L28.2451 842.452L27.2614 845.477L26.741 846.144L26.5065 846.158L25.8546 845.64L24.1389 845.475L23.4326 844.697L22.9579 843.524L22.509 843.17L22.0458 843.087L21.268 843.181L17.0703 844.482L16.1038 844.522L13.5016 844.082L13.1213 843.753L12.7267 842.895L11.9375 842.472L11.8031 841.571L11.1083 840.957L8.91503 841.077L6.09559 840.582L5.30637 840.296L3.91667 838.563L3.3991 838.223L1.529 837.797L1.06577 837.402L1 837.088L1.26021 836.624L2.4469 836.559L2.42116 836.135L1.96364 835.804L2.13807 835.592L4.07394 835.458L5.39788 834.56L6.47304 834.44L7.49673 833.625L7.60539 833.31L7.4567 832.847L6.80474 831.975L6.8076 828.732L6.97059 828.023L7.18791 827.806L7.95139 827.969L8.46895 827.711L9.55842 826.11L10.1989 825.75L10.2475 825.295L11.6773 824.197L12.8096 821.544L12.7696 820.477L13.3815 820.094L13.6246 819.736L14.0364 818.312L14.6111 817.369L14.4338 816.519L16.6099 814.057L17.6908 811.232L18.2655 810.592L18.7431 810.394L19.6581 809.213L20.1471 808.979L20.1585 808.476L20.5388 808.487L20.9649 807.761L20.9877 807.183L21.4882 806.36L21.2908 805.685L21.4109 804.507L22.3288 804.172L22.7549 803.054L22.5319 802.588L21.8799 802.371L21.7913 801.93L22.3145 800.223L22.163 799.377L22.8607 798.822L23.1752 797.593L23.038 797.238L23.3068 796.906L23.7986 796.903L23.8844 796.72L23.6499 796.389L23.2925 796.317L22.6663 795.803L22.3946 795.128L22.529 794.722L23.0323 794.45L23.2038 794.107L22.6319 792.168L22.0515 791.25L22.1373 790.844L23.0065 790.178L22.7835 789.294L23.1123 788.754L22.8521 787.747L22.5547 787.158L22.1373 786.83L21.7569 786.881L21.2051 787.313L20.8848 787.118L20.7733 786.887L21.4453 786.321L20.8562 786.029L20.7561 785.82L21.2451 785.388L21.5711 784.05L21.9971 783.215L21.7998 782.798L21.8971 782.649L23.1352 782.412L24.6336 779.629L25.5772 778.8L26.2749 777.819L27.2986 777.207L28.1993 777.087L28.7455 776.816L29.3203 776.215L30.1981 773.201L30.281 772.097L31.9395 770.176L32.4714 769.324L32.6058 768.735L32.5486 767.682L33.0891 765.715L33.3121 761.969L33.5837 760.591L34.3787 759.61L34.6475 758.89L33.8096 756.648L33.2206 756.053L32.6773 755.924L31.748 756.937L31.1475 756.882L30.6699 756.528L30.3583 755.544L29.4575 754.915L28.6826 753.711L28.7941 752.141L27.3501 749.327L25.9747 747.154L25.703 746.908L25.1311 746.854L22.4833 746.848L21.8141 746.534L21.6654 746.096L22.1573 744.801L22.1172 744.255L21.5568 743.857L19.741 743.308L18.8946 742.651L17.8194 740.64L17.1103 740.106L16.0208 738.725L15.5862 737.727L15.3546 736.102L14.4138 734.504L13.8133 733.929L12.435 733.366L11.6973 732.477L11.6859 731.807L12.8211 729.992L13.1099 728.462L13.9563 727.412L14.1622 726.729L14.0249 726.389L13.4244 725.923L12.6066 725.648L11.6801 724.95L10.4391 724.416L10.1132 723.95L10.1417 723.035L10.5792 721.725L10.6479 720.919L10.5535 719.62L10.0645 718.199L10.0188 715.448L9.26675 713.841L8.66626 713.558L8.34886 713.075L8.32026 712.203L7.70547 710.807L7.54248 710.03L7.46242 708.731L7.63971 708.24V707.448L6.69894 704.236L7.08497 703.647L8.17443 702.772L8.78922 700.931L8.68056 698.966L7.471 697.405L7.70547 696.284L8.00572 695.684L7.7741 693.605L7.99428 693.03L7.12214 692.058L5.87827 691.932L5.5094 691.332L5.90686 688.681L5.56659 687.162L5.50082 683.8L4.99755 681.995L5.03758 681.558L5.90114 680.122L6.59886 679.493L6.85907 678.904L7.02492 676.062L8.54616 671.893L9.28676 670.692L10.3133 670.037L10.9967 669.108L11.3256 668.041L12.2292 667.289L15.3803 661.59L16.9959 660.02L21.1708 657.304L22.5547 655.734L24.1961 655.108L24.9224 654.59L25.1969 654.098L25.4056 652.431L25.7631 651.734L28.7369 647.893L31.1189 645.546L31.8738 644.591L32.4485 643.498L32.703 641.828L32.6201 638.883L33.0862 638.669L33.3407 637.216L33.9898 635.7L34.5674 634.986L34.8991 634.954L35.0935 633.284L35.7426 632.581L36.2316 631.508L36.9636 631.371ZM40.0605 631.091L41.4016 631.669L39.6458 631.751L39.0654 631.554L39.1969 631.157L40.0605 631.091Z"
|
|
737
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
738
|
+
/>
|
|
739
|
+
<path
|
|
740
|
+
d="M73.5731 981.442L72.9663 982.184L66.274 985.859L64.195 987.399L63.3144 988.892L59.9146 993.019L58.0394 995.986L58.1358 998.232L59.1479 1000.27L60.3549 1008.41L62.0811 1008.8L63.8774 1009.53L65.3846 1010.49L66.274 1011.51L66.493 1013.04L66.4317 1015.16L66.0965 1017.07L65.5335 1017.88L61.5356 1018.85L59.4743 1021.38L55.9167 1033.29V1033.31L55.8992 1033.33L55.0799 1036.59L55.001 1039.56L55.9167 1042.37L58.1358 1045.17L61.0427 1047.54L64.723 1049.75L68.9859 1051.43L73.652 1052.24L77.4834 1051.62L84.7847 1048.34L122.932 1039.5L126.306 1040.43L127.953 1041.22L134.028 1042.72L135.842 1042.76L138.273 1040.7L137.057 1039.41L132.902 1038.24L121.171 1029.92L118.917 1028.77L117.64 1027.9L112.945 1023.84L110.868 1022.55L108.384 1022.13L106.183 1022.22L104.086 1022.05L101.867 1020.85L100.371 1022.55L97.245 1020.83L94.5242 1018.88L92.1627 1016.43L90.0312 1013.22L88.3686 1009.65L88.0422 1007.39L88.5701 1001.41L87.6194 995.402L85.0651 990.7L81.2972 986.888L74.2697 981.739L73.5731 981.442ZM54.2781 1033.29L52.9133 1031.89L50.1926 1032.34L48.0962 1034.07L47.0491 1036.53L44.7774 1034.18L44.0895 1033.29L43.1651 1034.05L43.1388 1034.28L42.8124 1034.03L41.0161 1033.29L44.0895 1031.89L40.3918 1027.3L32.9677 1023.32L24.9895 1020.5L19.5743 1019.44L17.4078 1018.41L15.9882 1016.42L13.9816 1015.13L9.96621 1016.18L6.84896 1018.88L3.2191 1025.38L1.10734 1027.22L1.8631 1030.22L1 1037.31L1.10734 1041.2L2.28589 1043.65L3.99458 1046.1L4.98036 1048.85L3.93324 1052.24L7.14688 1060.4L7.32433 1078.34L9.96621 1086.4L11.8326 1087.65L12.7308 1089.79L13.5063 1092.4L15.0813 1095.09L17.6181 1097.4L19.8372 1098.87L21.7386 1100.57L23.272 1103.63L21.6598 1105.18L22.9281 1108.5L23.272 1109.83L34.4201 1105.01L44.3634 1099.02L51.1784 1090.65L52.9659 1078.64L51.4873 1066.21L48.7315 1058.25L48.2649 1047.69L49.7348 1045.35L53.645 1044.46L55.0799 1044.02L53.4676 1039.51L54.817 1034.42L54.2781 1033.29ZM46.7577 1018.59L48.8717 1018.01L47.9384 1017.34L47.2418 1016.94L46.2648 1017.3L45.2265 1018.71L45.7544 1019.66L46.7577 1018.59ZM176 1019.44L170.451 1017.7L165.202 1019.87L156.679 1027.22L153.842 1028.77L158.828 1029.49L165.036 1026.83L176 1019.44ZM150.777 1057.06L150.768 1057.65L151.174 1057.2L150.777 1057.06ZM148.409 1059.53L149.949 1059.27L150.672 1058.18L149.491 1058.01L147.362 1058.11L146.12 1058.01L147.802 1059.51L148.409 1059.53ZM131.686 1113.72L130.954 1110.77L129.327 1108.95L127.706 1107.61L125.195 1101.11L120.891 1097.37L115.607 1096.17L110.868 1098.84L106.958 1103.35L105.434 1105.79L104.809 1109.07L102.73 1112.08L101.815 1113.75L102.529 1114.5L103.313 1115.13L104.051 1116.67L104.59 1118.49L104.809 1119.99L107.644 1125.9L114.178 1126.97L121.576 1125.14L126.983 1122.39L129.467 1120.38L130.875 1118.6L131.537 1116.56L131.686 1113.72ZM51.0732 1125.93L50.7468 1125.32L49.4697 1124.79L48.1575 1125.37L47.0403 1127.68L45.8771 1128.38L44.7511 1129.45L45.4105 1130.47L47.6734 1129.69L50.1926 1127.91L51.3909 1126.82L51.1696 1126.29L51.0732 1125.93ZM45.842 1125.45L44.681 1125.27L45.0841 1126.02L46.2385 1126.2L45.842 1125.45ZM38.4793 1127.55L36.3325 1128.7L35.522 1131.64L37.855 1133.06L39.7477 1131.85L40.3392 1130.09L39.2548 1128.34L38.4793 1127.55ZM46.8629 1135.44L46.7577 1134.55L45.7632 1133.71L45.8596 1134.61L46.8629 1135.44ZM42.153 1134.46L42.5232 1134.87L43.0599 1134.88L42.7335 1134.43L42.153 1134.46Z"
|
|
741
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
742
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
743
|
+
stroke-width="0.110632"
|
|
744
|
+
/>
|
|
745
|
+
<path
|
|
746
|
+
d="M150.905 1364.43L147.641 1362.01L151.348 1366.44L158.037 1369.68L162.946 1382.05L168.409 1385.01L166.843 1376.19L173.758 1372.11L172.63 1366.16L176 1364.82L172.411 1354.07L166.291 1348.05L153.925 1362.89L159.97 1359.22L155.735 1367.18L152.429 1364.7L153.795 1363.05L150.905 1364.43ZM81.5393 1501L87.957 1493.26L86.5359 1488.4L93.0587 1485.31L96.492 1487.3L98.6859 1497.48L101.024 1497.4L101.8 1491.68L110.142 1493L116.608 1485.11L111.241 1485.46L100.385 1479.19L94.6746 1467.37L97.1664 1464.02L101.088 1465.08L99.1698 1457.93L105.848 1448.26L119.36 1451.02L113.071 1447.1L112.822 1435.26L125.079 1428.73L123.886 1425.98L127.641 1420.12L122.445 1420.31L121.523 1413.97L111.793 1408.19L108.957 1399.41L113.227 1393.6L110.324 1391.49L124.221 1375.41L124.6 1371.02L133.496 1364.53L137.606 1364.69L134.864 1359.03L130.879 1357.86L133.154 1350.98L135.121 1354.76L132.874 1357.32L138.869 1350.84L136.743 1344.31L130.028 1338.29L121.885 1335.84L123.187 1331.1L121.23 1333.23L115.051 1329.27L97.2474 1328.04L92.8704 1321.86L93.2295 1326.2L91.1275 1325.4L85.5813 1332.84L81.8831 1328.53L72.3453 1328.71L66.5867 1317.06L70.8301 1311.07L60.9923 1308.17L59.2625 1302.05L52.904 1299.97L54.8878 1295.95L44.75 1292.56L55.6716 1286.44L53.0748 1284.86L54.7958 1279.44L50.721 1284.21L47.1629 1283.72L47.3052 1287.79L40.9073 1292.53L40.3073 1298.73L30.8659 1298.9L35.0852 1301.86L34.794 1305.57L28.1596 1311.97L21.6718 1310.87L20.7566 1317.76L14.5316 1325.56L23.7278 1325.64L25.5649 1328.66L16.0161 1338.81L16.9577 1342.09L21.6061 1346.42L27.0888 1343.39L35.5253 1352.11L40.2548 1351.5L46.7228 1356.04L51.0626 1352.04L53.1164 1353.22L52.5208 1362.08L47.8877 1364.26L50.0948 1369.18L56.7883 1369.66L51.6362 1375.15L55.433 1385.77L52.1245 1395.67L62.028 1400.84L53.2127 1401.7L47.1235 1407.61L54.3798 1414.21L58.4502 1414.47L66.2801 1425.94L74.9815 1431.47L82.8049 1449.5L79.3541 1458.89L72.689 1460.2L55.3257 1452.12L51.68 1436.74L33.8328 1436.94L44.7018 1453.52L43.6815 1456.46L50.6575 1453.59L54.3031 1458.39L48.3497 1471.38L38.4966 1477.08L46.9921 1479.97L54.4367 1474.62L57.3861 1476.27L55.0301 1493.08L57.2503 1497.13L58.6889 1491.7L63.9439 1488.54L67.3508 1489.91L68.0012 1498.19L73.9568 1495.11L77.955 1500.71L81.5393 1501ZM6.30973 1270.73L1 1275.59L8.43362 1279.86L6.34695 1284.41L15.6527 1278.04L12.7778 1275.28L6.30973 1270.73Z"
|
|
747
|
+
fill="rgba(0, 0, 0, 0.2)"
|
|
748
|
+
stroke="rgba(0, 0, 0, 0.2)"
|
|
749
|
+
stroke-width="0.0913449"
|
|
750
|
+
/>
|
|
751
|
+
</svg>
|
|
752
|
+
</div>
|
|
753
|
+
<div class="legend">
|
|
754
|
+
<p class="oip_filter_label oip_row v-center centered">
|
|
755
|
+
{{
|
|
756
|
+
clickedRegion
|
|
757
|
+
? lang === "fr"
|
|
758
|
+
? "Échelle départementale"
|
|
759
|
+
: "Departemental scale"
|
|
760
|
+
: lang === "fr"
|
|
761
|
+
? "Échelle Regionale"
|
|
762
|
+
: "Regional scale"
|
|
763
|
+
}}
|
|
764
|
+
</p>
|
|
765
|
+
<div class="scale" />
|
|
766
|
+
<div class="legend-text" v-if="clickedRegion">
|
|
767
|
+
<p v-for="value in dptScale" :key="value">
|
|
768
|
+
{{ Math.ceil(value) }}
|
|
769
|
+
</p>
|
|
770
|
+
</div>
|
|
771
|
+
<div v-else class="legend-text">
|
|
772
|
+
<p v-for="val in scale" :key="val">
|
|
773
|
+
{{ Math.ceil(val) }}
|
|
774
|
+
</p>
|
|
775
|
+
</div>
|
|
776
|
+
</div>
|
|
777
|
+
<slot name="Subcontent" />
|
|
778
|
+
</div>
|
|
779
|
+
</template>
|
|
780
|
+
|
|
781
|
+
<script>
|
|
782
|
+
import {
|
|
783
|
+
onMounted,
|
|
784
|
+
ref,
|
|
785
|
+
watch,
|
|
786
|
+
nextTick,
|
|
787
|
+
defineComponent,
|
|
788
|
+
computed
|
|
789
|
+
} from "vue";
|
|
790
|
+
import { Regions } from "./maps/interfaces";
|
|
791
|
+
import regionsPath from "./maps/regionsPath.json";
|
|
792
|
+
import ArgSourceContainer from "./argSourceContainer.vue";
|
|
793
|
+
import oneRegionToDepartements from "./oneRegionToDepartements.vue";
|
|
794
|
+
import ArgIcon from "./argIcon.vue";
|
|
795
|
+
export default defineComponent({
|
|
796
|
+
name: "argMapsFrRegionsToDepartements",
|
|
797
|
+
components: { oneRegionToDepartements, ArgSourceContainer, ArgIcon },
|
|
798
|
+
props: {
|
|
799
|
+
data: {
|
|
800
|
+
type: Array,
|
|
801
|
+
default: null,
|
|
802
|
+
required: true
|
|
803
|
+
},
|
|
804
|
+
title: {
|
|
805
|
+
type: String,
|
|
806
|
+
default: null,
|
|
807
|
+
required: false
|
|
808
|
+
},
|
|
809
|
+
source: {
|
|
810
|
+
type: String,
|
|
811
|
+
default: null,
|
|
812
|
+
required: false
|
|
813
|
+
},
|
|
814
|
+
withDynamicTitle: {
|
|
815
|
+
type: Boolean,
|
|
816
|
+
default: false
|
|
817
|
+
},
|
|
818
|
+
lang: {
|
|
819
|
+
type: String,
|
|
820
|
+
default: "en",
|
|
821
|
+
required: false
|
|
822
|
+
}
|
|
823
|
+
},
|
|
824
|
+
emits: ["openSource"],
|
|
825
|
+
setup(props, { emit }) {
|
|
826
|
+
const minimalValue = ref(null);
|
|
827
|
+
const maximalValue = ref(null);
|
|
828
|
+
const hoveredRegion = ref(null);
|
|
829
|
+
const hoveredDepartement = ref(null);
|
|
830
|
+
const clickedRegion = ref(null);
|
|
831
|
+
const tooltipPosition = ref({ x: 0, y: 0, width: 0 });
|
|
832
|
+
const scale = ref([]);
|
|
833
|
+
const dptScale = ref([]);
|
|
834
|
+
const componentKey = ref(0);
|
|
835
|
+
const mapPosition = ref({ x: 0, y: 0 });
|
|
836
|
+
const RegionsData = computed(() => {
|
|
837
|
+
const base = [];
|
|
838
|
+
for (const region in Regions) {
|
|
839
|
+
let sum = 0;
|
|
840
|
+
const name = Regions[region];
|
|
841
|
+
if (regionsPath[name]) {
|
|
842
|
+
regionsPath[name].departments.forEach((department) => {
|
|
843
|
+
sum += props.data.find((x) => x.name == department)?.value || 0;
|
|
844
|
+
});
|
|
845
|
+
base.push({ name, value: sum });
|
|
846
|
+
}
|
|
847
|
+
}
|
|
848
|
+
return base;
|
|
849
|
+
});
|
|
850
|
+
function getMapPosition() {
|
|
851
|
+
switch (clickedRegion.value) {
|
|
852
|
+
case Regions.AuvergneRhoneAlpes:
|
|
853
|
+
mapPosition.value = { x: -400, y: -200 };
|
|
854
|
+
break;
|
|
855
|
+
case Regions.BourgogneFrancheComte:
|
|
856
|
+
mapPosition.value = { x: -400, y: 100 };
|
|
857
|
+
break;
|
|
858
|
+
case Regions.Bretagne:
|
|
859
|
+
mapPosition.value = { x: 400, y: 200 };
|
|
860
|
+
break;
|
|
861
|
+
case Regions.HautDeFrance:
|
|
862
|
+
mapPosition.value = { x: -50, y: 500 };
|
|
863
|
+
break;
|
|
864
|
+
case Regions.IleDeFrance:
|
|
865
|
+
mapPosition.value = { x: -250, y: 550 };
|
|
866
|
+
break;
|
|
867
|
+
case Regions.Normandie:
|
|
868
|
+
mapPosition.value = { x: 200, y: 400 };
|
|
869
|
+
break;
|
|
870
|
+
case Regions.NouvelleAquitaine:
|
|
871
|
+
mapPosition.value = { x: 80, y: -180 };
|
|
872
|
+
break;
|
|
873
|
+
case Regions.Occitanie:
|
|
874
|
+
mapPosition.value = { x: -50, y: -450 };
|
|
875
|
+
break;
|
|
876
|
+
case Regions.PaysDeLaLoire:
|
|
877
|
+
mapPosition.value = { x: 200, y: 100 };
|
|
878
|
+
break;
|
|
879
|
+
case Regions.ProvenceAlpesCoteDazur:
|
|
880
|
+
mapPosition.value = { x: -500, y: -400 };
|
|
881
|
+
break;
|
|
882
|
+
case Regions.Guyane:
|
|
883
|
+
mapPosition.value = { x: 800, y: 0 };
|
|
884
|
+
break;
|
|
885
|
+
case Regions.Martinique:
|
|
886
|
+
mapPosition.value = { x: 800, y: 300 };
|
|
887
|
+
break;
|
|
888
|
+
case Regions.Guadeloupe:
|
|
889
|
+
mapPosition.value = { x: 800, y: -300 };
|
|
890
|
+
break;
|
|
891
|
+
case Regions.Mayotte:
|
|
892
|
+
mapPosition.value = { x: 800, y: -700 };
|
|
893
|
+
break;
|
|
894
|
+
case Regions.Reunion:
|
|
895
|
+
mapPosition.value = { x: 800, y: 700 };
|
|
896
|
+
break;
|
|
897
|
+
case Regions.CentreValDeLoire:
|
|
898
|
+
mapPosition.value = { x: 0, y: 150 };
|
|
899
|
+
break;
|
|
900
|
+
case Regions.Corse:
|
|
901
|
+
mapPosition.value = { x: -800, y: -650 };
|
|
902
|
+
break;
|
|
903
|
+
case Regions.GrandEst:
|
|
904
|
+
mapPosition.value = { x: -500, y: 350 };
|
|
905
|
+
break;
|
|
906
|
+
default:
|
|
907
|
+
mapPosition.value = { x: 0, y: 0 };
|
|
908
|
+
break;
|
|
909
|
+
}
|
|
910
|
+
}
|
|
911
|
+
function getColor(value) {
|
|
912
|
+
if (!value)
|
|
913
|
+
return "var(--lightest)";
|
|
914
|
+
if (value >= scale.value[9]) {
|
|
915
|
+
return "#3F1151";
|
|
916
|
+
} else if (value >= scale.value[8]) {
|
|
917
|
+
return "#432974";
|
|
918
|
+
} else if (value >= scale.value[7]) {
|
|
919
|
+
return "#404A85";
|
|
920
|
+
} else if (value >= scale.value[6]) {
|
|
921
|
+
return "#3F668A";
|
|
922
|
+
} else if (value >= scale.value[5]) {
|
|
923
|
+
return "#43808C";
|
|
924
|
+
} else if (value >= scale.value[4]) {
|
|
925
|
+
return "#4C9C8A";
|
|
926
|
+
} else if (value >= scale.value[3]) {
|
|
927
|
+
return "#5FB57E";
|
|
928
|
+
} else if (value >= scale.value[2]) {
|
|
929
|
+
return "#85CB68";
|
|
930
|
+
} else if (value >= scale.value[1]) {
|
|
931
|
+
return "#BDDD51";
|
|
932
|
+
} else if (value >= scale.value[0]) {
|
|
933
|
+
return "#F9E855";
|
|
934
|
+
}
|
|
935
|
+
}
|
|
936
|
+
function handleSVGClick() {
|
|
937
|
+
clickedRegion.value = null;
|
|
938
|
+
hoveredRegion.value = null;
|
|
939
|
+
componentKey.value += 1;
|
|
940
|
+
}
|
|
941
|
+
function handleHover(region) {
|
|
942
|
+
hoveredRegion.value = region;
|
|
943
|
+
}
|
|
944
|
+
function handleDepartementHover(departement) {
|
|
945
|
+
hoveredDepartement.value = departement;
|
|
946
|
+
}
|
|
947
|
+
function handleMouseLeave() {
|
|
948
|
+
if (clickedRegion.value) {
|
|
949
|
+
hoveredRegion.value = clickedRegion.value;
|
|
950
|
+
} else {
|
|
951
|
+
hoveredRegion.value = null;
|
|
952
|
+
}
|
|
953
|
+
}
|
|
954
|
+
function handleDepartementMouseLeave(departement) {
|
|
955
|
+
hoveredDepartement.value = null;
|
|
956
|
+
}
|
|
957
|
+
function handleClick(region) {
|
|
958
|
+
if (clickedRegion.value === region) {
|
|
959
|
+
clickedRegion.value = null;
|
|
960
|
+
return;
|
|
961
|
+
}
|
|
962
|
+
clickedRegion.value = region;
|
|
963
|
+
componentKey.value += 1;
|
|
964
|
+
}
|
|
965
|
+
function setupScale() {
|
|
966
|
+
minimalValue.value = Math.floor(
|
|
967
|
+
Math.min(...RegionsData.value.map((x) => x.value))
|
|
968
|
+
);
|
|
969
|
+
maximalValue.value = Math.ceil(
|
|
970
|
+
Math.max(...RegionsData.value.map((x) => x.value))
|
|
971
|
+
);
|
|
972
|
+
const step = (maximalValue.value - minimalValue.value) / 10;
|
|
973
|
+
if (minimalValue.value !== null) {
|
|
974
|
+
scale.value = Array.from(
|
|
975
|
+
{ length: 10 },
|
|
976
|
+
(_, i) => (minimalValue.value !== null ? minimalValue.value : 0) + i * step
|
|
977
|
+
);
|
|
978
|
+
}
|
|
979
|
+
}
|
|
980
|
+
function setUpDepartementScale() {
|
|
981
|
+
minimalValue.value = Math.floor(
|
|
982
|
+
Math.min(...props.data.map((x) => x.value))
|
|
983
|
+
);
|
|
984
|
+
maximalValue.value = Math.ceil(
|
|
985
|
+
Math.max(...props.data.map((x) => x.value))
|
|
986
|
+
);
|
|
987
|
+
const step = (maximalValue.value - minimalValue.value) / 10;
|
|
988
|
+
if (minimalValue.value !== null) {
|
|
989
|
+
dptScale.value = Array.from(
|
|
990
|
+
{ length: 10 },
|
|
991
|
+
(_, i) => (minimalValue.value !== null ? minimalValue.value : 0) + i * step
|
|
992
|
+
);
|
|
993
|
+
}
|
|
994
|
+
}
|
|
995
|
+
function handleBackClick() {
|
|
996
|
+
clickedRegion.value = null;
|
|
997
|
+
}
|
|
998
|
+
async function setTooltipPosition(x, y, width) {
|
|
999
|
+
await nextTick();
|
|
1000
|
+
tooltipPosition.value = {
|
|
1001
|
+
x,
|
|
1002
|
+
y,
|
|
1003
|
+
width: 300
|
|
1004
|
+
};
|
|
1005
|
+
}
|
|
1006
|
+
onMounted(() => {
|
|
1007
|
+
setupScale();
|
|
1008
|
+
setUpDepartementScale();
|
|
1009
|
+
});
|
|
1010
|
+
watch(
|
|
1011
|
+
() => props.data,
|
|
1012
|
+
() => {
|
|
1013
|
+
setupScale();
|
|
1014
|
+
}
|
|
1015
|
+
);
|
|
1016
|
+
watch(
|
|
1017
|
+
() => clickedRegion.value,
|
|
1018
|
+
() => {
|
|
1019
|
+
getMapPosition();
|
|
1020
|
+
}
|
|
1021
|
+
);
|
|
1022
|
+
watch(
|
|
1023
|
+
() => hoveredRegion.value,
|
|
1024
|
+
async () => {
|
|
1025
|
+
if (hoveredRegion.value) {
|
|
1026
|
+
await nextTick();
|
|
1027
|
+
const selectedRegion = document.getElementById(
|
|
1028
|
+
`interactiveMap-${props.title}-${hoveredRegion.value}`
|
|
1029
|
+
)?.getBoundingClientRect();
|
|
1030
|
+
const containerPosition = document.getElementById(`container_map-${props.title}`)?.getBoundingClientRect();
|
|
1031
|
+
const tooltipElement = document.getElementById(
|
|
1032
|
+
`tooltip_map-${props.title}`
|
|
1033
|
+
);
|
|
1034
|
+
const tooltipHeight = tooltipElement ? tooltipElement.getBoundingClientRect().height : 60;
|
|
1035
|
+
if (!selectedRegion || !containerPosition)
|
|
1036
|
+
return;
|
|
1037
|
+
tooltipPosition.value = {
|
|
1038
|
+
x: selectedRegion?.x - containerPosition?.x,
|
|
1039
|
+
y: selectedRegion?.top - containerPosition?.top - tooltipHeight,
|
|
1040
|
+
width: selectedRegion?.width
|
|
1041
|
+
};
|
|
1042
|
+
}
|
|
1043
|
+
}
|
|
1044
|
+
);
|
|
1045
|
+
watch(
|
|
1046
|
+
() => hoveredDepartement.value,
|
|
1047
|
+
async () => {
|
|
1048
|
+
if (hoveredDepartement.value) {
|
|
1049
|
+
await nextTick();
|
|
1050
|
+
const dpt = document.getElementById(
|
|
1051
|
+
`interactiveMap-${props.title}-${hoveredDepartement.value}`
|
|
1052
|
+
)?.getBoundingClientRect();
|
|
1053
|
+
const containerPosition = document.getElementById(`container_map-${props.title}`)?.getBoundingClientRect();
|
|
1054
|
+
const tooltipElement = document.getElementById(
|
|
1055
|
+
`tooltip_map-${props.title}`
|
|
1056
|
+
);
|
|
1057
|
+
const tooltipHeight = tooltipElement ? tooltipElement.getBoundingClientRect().height : 60;
|
|
1058
|
+
if (!dpt || !containerPosition)
|
|
1059
|
+
return;
|
|
1060
|
+
tooltipPosition.value = {
|
|
1061
|
+
x: dpt?.x - containerPosition?.x,
|
|
1062
|
+
y: dpt?.top - containerPosition?.top - tooltipHeight,
|
|
1063
|
+
width: dpt?.width
|
|
1064
|
+
};
|
|
1065
|
+
}
|
|
1066
|
+
}
|
|
1067
|
+
);
|
|
1068
|
+
function openSource() {
|
|
1069
|
+
emit("openSource");
|
|
1070
|
+
}
|
|
1071
|
+
watch(
|
|
1072
|
+
() => props.data,
|
|
1073
|
+
() => {
|
|
1074
|
+
setupScale();
|
|
1075
|
+
}
|
|
1076
|
+
);
|
|
1077
|
+
watch(
|
|
1078
|
+
() => hoveredDepartement.value,
|
|
1079
|
+
async () => {
|
|
1080
|
+
if (hoveredDepartement.value) {
|
|
1081
|
+
await nextTick();
|
|
1082
|
+
const selectedRegion = document.getElementById(
|
|
1083
|
+
`interactiveMap-${props.title}-${hoveredDepartement.value}`
|
|
1084
|
+
)?.getBoundingClientRect();
|
|
1085
|
+
const containerPosition = document.getElementById(`container_map-${props.title}`)?.getBoundingClientRect();
|
|
1086
|
+
const tooltipElement = document.getElementById(
|
|
1087
|
+
`tooltip_map-${props.title}`
|
|
1088
|
+
);
|
|
1089
|
+
const tooltipHeight = tooltipElement ? tooltipElement.getBoundingClientRect().height : 60;
|
|
1090
|
+
if (!selectedRegion || !containerPosition)
|
|
1091
|
+
return;
|
|
1092
|
+
tooltipPosition.value = {
|
|
1093
|
+
x: selectedRegion?.x - containerPosition?.x,
|
|
1094
|
+
y: selectedRegion?.top - containerPosition?.top - tooltipHeight,
|
|
1095
|
+
width: selectedRegion?.width
|
|
1096
|
+
};
|
|
1097
|
+
}
|
|
1098
|
+
}
|
|
1099
|
+
);
|
|
1100
|
+
return {
|
|
1101
|
+
dptScale,
|
|
1102
|
+
scale,
|
|
1103
|
+
tooltipPosition,
|
|
1104
|
+
handleBackClick,
|
|
1105
|
+
openSource,
|
|
1106
|
+
setTooltipPosition,
|
|
1107
|
+
RegionsData,
|
|
1108
|
+
hoveredRegion,
|
|
1109
|
+
hoveredDepartement,
|
|
1110
|
+
clickedRegion,
|
|
1111
|
+
handleClick,
|
|
1112
|
+
handleHover,
|
|
1113
|
+
handleDepartementHover,
|
|
1114
|
+
handleMouseLeave,
|
|
1115
|
+
handleDepartementMouseLeave,
|
|
1116
|
+
handleSVGClick,
|
|
1117
|
+
mapPosition,
|
|
1118
|
+
componentKey,
|
|
1119
|
+
Regions,
|
|
1120
|
+
getColor,
|
|
1121
|
+
regionsPath
|
|
1122
|
+
};
|
|
1123
|
+
}
|
|
1124
|
+
});
|
|
1125
|
+
</script>
|
|
1126
|
+
|
|
1127
|
+
<style scoped>
|
|
1128
|
+
.p-24{padding:0 24px}.map_container{display:flex;flex-direction:column;gap:24px;height:500px;max-height:500px;min-height:500px;min-width:500px;overflow:hidden;position:relative;width:100%}.map{margin-top:24px;z-index:2}.map_placeholder path{fill:var(--medium)!important;stroke:var(--medium)!important;stroke-width:2px}.scaled{transform:scale(3)}.large_scale,.scaled{position:absolute;transition:all .2s}.large_scale{transform:scale(5)}.small_scale{position:absolute;transform:scale(2.2);transition:all .2s}.normal{transform:scale(1)}.map path{stroke-width:2px;stroke:rgba(0,0,0,.2);max-height:400px;position:relative}.map path:hover{transition:all .2s}.map_card-container{display:flex;flex-direction:column;gap:8px;min-width:400px;position:relative;width:100%}.test{margin-bottom:200px}.tooltip_container{align-items:center;display:flex;flex-direction:column;justify-content:center;left:0;min-width:-moz-fit-content;min-width:fit-content;position:absolute;top:0;z-index:96}.tooltip{background:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--darkest);font-size:12px}.card_title{background-color:var(--light);border-radius:4px 4px 0 0;font-size:14px;font-weight:600;padding:2px 8px;width:calc(100% - 15px)}.card_text{color:var(--dark);font-size:12px;font-weight:400;line-height:160%;padding:8px;width:100%}.legend{display:flex;flex-direction:column;gap:8px;margin:auto auto 24px;min-width:400px;width:50%}.scale{background:linear-gradient(45deg,#3f1151,#432974,#404a85,#3f668a,#43808c,#4c9c8a,#5fb57e,#85cb68,#bddd51,#f9e855);height:10px;transform:rotate(180deg)}.legend-text{align-items:center;color:var(--dark);display:flex;font-size:12px;font-weight:400;justify-content:space-between;line-height:160%}.map_placeholder{position:absolute;z-index:1}.back_button{background-color:#fff;border:1px solid var(--light);border-radius:4px;box-shadow:var(--medium-shadow);color:var(--dark);cursor:pointer;font-size:14px;font-weight:400;left:24px;line-height:160%;padding:8px 12px;position:absolute;top:24px;z-index:97}.blue{color:var(--primary)}
|
|
1129
|
+
</style>
|
|
1130
|
+
./maps/interfaces./maps/regionsPath.json
|