@eyeon/map 2.0.0 → 2.0.2
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/README.md +18 -1
- package/dist/assets/MapViewer.css +1 -1
- package/dist/assets/index.css +1 -1
- package/dist/chunks/MapViewer.js +1745 -356
- package/dist/chunks/MapViewer.js.map +1 -1
- package/dist/chunks/stacking.js +1321 -0
- package/dist/chunks/stacking.js.map +1 -0
- package/dist/core/geometry/index.d.ts +41 -4
- package/dist/core/geometry/index.d.ts.map +1 -1
- package/dist/core/hostChrome.d.ts +20 -0
- package/dist/core/hostChrome.d.ts.map +1 -0
- package/dist/core/import/index.d.ts +48 -3
- package/dist/core/import/index.d.ts.map +1 -1
- package/dist/core/import/svgStyle.d.ts +21 -0
- package/dist/core/import/svgStyle.d.ts.map +1 -0
- package/dist/core/import/svgTransform.d.ts +49 -0
- package/dist/core/import/svgTransform.d.ts.map +1 -0
- package/dist/core/index.d.ts +3 -0
- package/dist/core/index.d.ts.map +1 -1
- package/dist/core/index.js +207 -266
- package/dist/core/index.js.map +1 -1
- package/dist/core/layerStyles.d.ts +28 -0
- package/dist/core/layerStyles.d.ts.map +1 -0
- package/dist/core/publish/index.d.ts +8 -2
- package/dist/core/publish/index.d.ts.map +1 -1
- package/dist/core/routing/graph-tools.d.ts +5 -1
- package/dist/core/routing/graph-tools.d.ts.map +1 -1
- package/dist/core/stacking.d.ts +61 -0
- package/dist/core/stacking.d.ts.map +1 -0
- package/dist/core/types.d.ts +27 -0
- package/dist/core/types.d.ts.map +1 -1
- package/dist/editor/MapEditor.d.ts +28 -16
- package/dist/editor/MapEditor.d.ts.map +1 -1
- package/dist/editor/canvas/EditorCanvas.d.ts +15 -3
- package/dist/editor/canvas/EditorCanvas.d.ts.map +1 -1
- package/dist/editor/canvas/coords.d.ts +21 -0
- package/dist/editor/canvas/coords.d.ts.map +1 -0
- package/dist/editor/draftOps.d.ts +19 -0
- package/dist/editor/draftOps.d.ts.map +1 -0
- package/dist/editor/geometryEdit.d.ts +34 -0
- package/dist/editor/geometryEdit.d.ts.map +1 -0
- package/dist/editor/index.css +1281 -145
- package/dist/editor/index.d.ts +8 -2
- package/dist/editor/index.d.ts.map +1 -1
- package/dist/editor/index.js +2293 -585
- package/dist/editor/index.js.map +1 -1
- package/dist/editor/labels.d.ts +5 -0
- package/dist/editor/labels.d.ts.map +1 -0
- package/dist/editor/panels/FloorsPanel.d.ts +60 -0
- package/dist/editor/panels/FloorsPanel.d.ts.map +1 -0
- package/dist/editor/panels/ImportReviewPanel.d.ts +22 -0
- package/dist/editor/panels/ImportReviewPanel.d.ts.map +1 -0
- package/dist/editor/panels/Inspector.d.ts +4 -2
- package/dist/editor/panels/Inspector.d.ts.map +1 -1
- package/dist/editor/panels/LeftRail.d.ts +19 -6
- package/dist/editor/panels/LeftRail.d.ts.map +1 -1
- package/dist/editor/panels/PreviewOverlay.d.ts +11 -2
- package/dist/editor/panels/PreviewOverlay.d.ts.map +1 -1
- package/dist/editor/portalSurface.d.ts +11 -0
- package/dist/editor/portalSurface.d.ts.map +1 -0
- package/dist/editor/previewDocument.d.ts +9 -0
- package/dist/editor/previewDocument.d.ts.map +1 -0
- package/dist/editor/tools.d.ts +20 -0
- package/dist/editor/tools.d.ts.map +1 -0
- package/dist/test-maps/shops-at-south-town/BASE - Shops At South Town.ai +26780 -26
- package/dist/test-maps/shops-at-south-town/LF - Shops At South Town.ai +4487 -2
- package/dist/test-maps/shops-at-south-town/SVG/BASE - Shops At South Town.svg +567 -0
- package/dist/test-maps/shops-at-south-town/SVG/LF - Shops At South Town.svg +238 -0
- package/dist/test-maps/shops-at-south-town/SVG/UF - Shops At South Town.svg +276 -0
- package/dist/test-maps/shops-at-south-town/UF - Shops At South Town.ai +4228 -1
- package/dist/viewer/MapViewer.d.ts +14 -3
- package/dist/viewer/MapViewer.d.ts.map +1 -1
- package/dist/viewer/camera.d.ts +34 -0
- package/dist/viewer/camera.d.ts.map +1 -0
- package/dist/viewer/components/CameraRig.d.ts +18 -0
- package/dist/viewer/components/CameraRig.d.ts.map +1 -0
- package/dist/viewer/components/LevelMeshes.d.ts +6 -1
- package/dist/viewer/components/LevelMeshes.d.ts.map +1 -1
- package/dist/viewer/components/MapScene.d.ts +6 -1
- package/dist/viewer/components/MapScene.d.ts.map +1 -1
- package/dist/viewer/components/SvgVectorLayer.d.ts +18 -0
- package/dist/viewer/components/SvgVectorLayer.d.ts.map +1 -0
- package/dist/viewer/index.css +124 -35
- package/dist/viewer/index.d.ts +4 -0
- package/dist/viewer/index.d.ts.map +1 -1
- package/dist/viewer/index.js +9 -4
- package/dist/viewer/index.js.map +1 -1
- package/dist/viewer/ui/MapControls.d.ts +14 -0
- package/dist/viewer/ui/MapControls.d.ts.map +1 -0
- package/dist/viewer/ui/RuntimeChrome.d.ts +3 -3
- package/dist/viewer/ui/RuntimeChrome.d.ts.map +1 -1
- package/package.json +17 -7
- package/dist/chunks/graph-tools.js +0 -153
- package/dist/chunks/graph-tools.js.map +0 -1
- package/dist/chunks/pathfinding.js +0 -343
- package/dist/chunks/pathfinding.js.map +0 -1
|
@@ -0,0 +1,276 @@
|
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 5245.56 3412.81">
|
|
3
|
+
<defs>
|
|
4
|
+
<style>
|
|
5
|
+
.cls-1 {
|
|
6
|
+
fill: #00c905;
|
|
7
|
+
}
|
|
8
|
+
|
|
9
|
+
.cls-2 {
|
|
10
|
+
fill: #ffc13f;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
.cls-3 {
|
|
14
|
+
fill: none;
|
|
15
|
+
stroke: red;
|
|
16
|
+
stroke-miterlimit: 10;
|
|
17
|
+
stroke-width: 2px;
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
.cls-4 {
|
|
21
|
+
fill: #6adbff;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
.cls-5 {
|
|
25
|
+
fill: #b2b2b2;
|
|
26
|
+
}
|
|
27
|
+
</style>
|
|
28
|
+
</defs>
|
|
29
|
+
<g id="INTERACTIVE">
|
|
30
|
+
<path id="store-2405-1-uf" class="cls-5" d="M2849.43,2396.34v-329.87c0-1.82,1.48-3.3,3.3-3.3h170.75c1.49,0,2.79.99,3.18,2.43l50.22,183.29c.43,1.57-.36,3.2-1.84,3.88-56.63,25.94-67.97,74.47-40.1,142.54.89,2.17-.71,4.55-3.05,4.54l-179.16-.21c-1.82,0-3.29-1.48-3.29-3.3Z"/>
|
|
31
|
+
<path id="store-2110" class="cls-5" d="M3478.46,1256.26v-42.15c0-1.82,1.48-3.3,3.3-3.3h38.25c1.82,0,3.3,1.48,3.3,3.3v42.2c0,1.82-1.48,3.3-3.3,3.3l-38.25-.05c-1.82,0-3.29-1.48-3.29-3.3Z"/>
|
|
32
|
+
<rect id="store-spensers" class="cls-5" x="3664.68" y="1210.82" width="26.13" height="122" rx="3.3" ry="3.3"/>
|
|
33
|
+
<path id="store-dummy-58" class="cls-5" d="M3108.57,2091.53v-8.13c0-1.82,1.48-3.3,3.3-3.3l137.18.11c1.82,0,3.29,1.48,3.29,3.3v86.7c0,1.82-1.48,3.3-3.3,3.3h-115.06c-1.48,0-2.77-.98-3.17-2.4l-22.11-78.68c-.08-.29-.12-.59-.12-.89Z"/>
|
|
34
|
+
<path id="store-2404" class="cls-5" d="M3115.58,2017.95h87.5c1.82,0,3.3,1.48,3.3,3.3v34.67c0,1.82-1.47,3.29-3.29,3.3l-87.5.12c-1.82,0-3.3-1.47-3.3-3.3v-34.8c0-1.82,1.48-3.3,3.3-3.3Z"/>
|
|
35
|
+
<rect id="store-2402" class="cls-5" x="3112.29" y="1984.37" width="94.09" height="29.19" rx="3.3" ry="3.3"/>
|
|
36
|
+
<rect id="store-2400" class="cls-5" x="3112.29" y="1926.36" width="94.09" height="53.61" rx="3.3" ry="3.3"/>
|
|
37
|
+
<path id="store-2228" class="cls-5" d="M3414.45,1494.31l22.99-22.99c1.29-1.29,3.37-1.29,4.66,0l37.93,37.93c.72.72,1.07,1.73.94,2.74l-5.11,40.87c-.34,2.72-3.66,3.86-5.6,1.92l-55.81-55.81c-1.29-1.29-1.29-3.37,0-4.66Z"/>
|
|
38
|
+
<path id="store-2224" class="cls-5" d="M3479.16,1561.88l6.44-51.48c.13-1.01-.22-2.02-.94-2.74l-39.45-39.45c-1.29-1.29-1.29-3.37,0-4.66l42.94-42.94c.62-.62,1.46-.97,2.33-.97h75.22c1.82,0,3.3,1.48,3.3,3.3l-.02,115.05c0,1.82-1.48,3.3-3.3,3.3h-32.07c-.87,0-1.71.35-2.33.97l-34.45,34.45c-1.29,1.29-3.37,1.29-4.66,0l-12.07-12.07c-.72-.72-1.07-1.73-.94-2.74Z"/>
|
|
39
|
+
<rect id="store-2213" class="cls-5" x="3642.08" y="1419.64" width="18.5" height="56.66" rx="3.3" ry="3.3"/>
|
|
40
|
+
<path id="store-2214" class="cls-5" d="M3642.19,1537.99l-.1-53.99c0-1.82,1.47-3.3,3.3-3.3h16.3c1.82,0,3.3-1.48,3.3-3.3v-54.46c0-1.82,1.48-3.3,3.3-3.3h34.81c1.82,0,3.29,1.47,3.3,3.29l.12,115.07c0,1.82-1.48,3.3-3.3,3.3l-57.72-.02c-1.82,0-3.29-1.47-3.3-3.29Z"/>
|
|
41
|
+
<path id="store-2210" class="cls-5" d="M3756.43,1537.98l.12-115.05c0-1.82,1.48-3.29,3.3-3.29h19.54c1.82,0,3.3,1.48,3.3,3.3l-.12,115.05c0,1.82-1.48,3.29-3.3,3.29h-19.54c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
42
|
+
<path id="store-2208" class="cls-5" d="M3786.96,1537.98l.12-115.05c0-1.82,1.48-3.29,3.3-3.29h20.76c1.82,0,3.3,1.48,3.3,3.3l-.12,115.05c0,1.82-1.48,3.29-3.3,3.29h-20.76c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
43
|
+
<path id="store-2206" class="cls-5" d="M3818.71,1537.98l.12-115.04c0-1.82,1.48-3.29,3.3-3.29l21.94.02c1.82,0,3.3,1.48,3.29,3.31l-.37,115.02c0,1.82-1.48,3.29-3.3,3.29h-21.69c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
44
|
+
<path id="store-2204" class="cls-5" d="M3938.56,1521.35v-98.41c0-1.82-1.48-3.3-3.3-3.3l-80.21.03c-1.82,0-3.29,1.47-3.3,3.29l-.23,98.42c0,1.82,1.47,3.3,3.3,3.3l80.44-.04c1.82,0,3.29-1.48,3.29-3.3Z"/>
|
|
45
|
+
<rect id="store-shoe-dept" class="cls-5" x="3695.21" y="1210.82" width="227.91" height="122" rx="3.3" ry="3.3"/>
|
|
46
|
+
<rect id="store-2122" class="cls-5" x="3637.5" y="1210.82" width="22.79" height="122" rx="3.3" ry="3.3"/>
|
|
47
|
+
<rect id="store-2116" class="cls-5" x="3527.7" y="1276.16" width="22.69" height="56.66" rx="3.3" ry="3.3"/>
|
|
48
|
+
<path id="store-2104" class="cls-5" d="M3390.22,1329.53v-27.51c0-1.82-1.48-3.3-3.3-3.3h-38.59c-1.82,0-3.3-1.48-3.3-3.3v-5.29c0-1.82,1.48-3.3,3.3-3.3h83.04c1.82,0,3.3,1.48,3.3,3.3v39.39c0,1.82-1.48,3.3-3.3,3.3h-37.86c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
49
|
+
<path id="store-2102" class="cls-5" d="M3359.23,1303.12h23.29c1.82,0,3.3,1.48,3.3,3.3v17.58c0,2.72-3.11,4.27-5.28,2.63l-23.29-17.58c-2.52-1.91-1.18-5.93,1.99-5.93Z"/>
|
|
50
|
+
<path id="store-2030" class="cls-5" d="M3220.97,1490.92l24.62-24.48c1.29-1.28,3.38-1.28,4.66.01l23.95,24.09c1.28,1.29,1.28,3.37,0,4.66l-24.6,24.6c-1.29,1.29-3.39,1.29-4.67-.01l-23.97-24.21c-1.28-1.29-1.27-3.38.02-4.66Z"/>
|
|
51
|
+
<rect id="store-hotdog" class="cls-5" x="2961.93" y="1525.5" width="31.48" height="29.19" rx="3.3" ry="3.3" transform="translate(-216.8749 2556.6146) rotate(-45)"/>
|
|
52
|
+
<path id="store-special-courses" class="cls-5" d="M2982.3,1562.32l17.6-17.6c1.29-1.29,3.37-1.29,4.66,0l24.58,24.58c1.29,1.29,1.29,3.39-.02,4.68l-17.72,17.47c-1.29,1.27-3.36,1.26-4.64-.02l-24.46-24.46c-1.29-1.29-1.29-3.37,0-4.66Z"/>
|
|
53
|
+
<path id="store-osaka-japan" class="cls-5" d="M3014.54,1594.53l17.72-17.47c1.29-1.27,3.36-1.26,4.64.02l24.64,24.64c1.29,1.29,1.29,3.37,0,4.66l-17.59,17.6c-1.29,1.29-3.37,1.29-4.66,0l-24.77-24.77c-1.29-1.29-1.29-3.39.02-4.68Z"/>
|
|
54
|
+
<path id="store-dairy-queen" class="cls-5" d="M3061.68,1657.51l.13-.13c1.29-1.29,3.37-1.29,4.66,0l5.17,5.17c1.29,1.29,3.37,1.29,4.66,0l20.73-20.69c1.29-1.29,3.37-1.28,4.66,0l8.51,8.52c1.27,1.27,1.29,3.31.05,4.61l-24.9,26.09c-1.28,1.34-3.41,1.36-4.72.06l-18.97-18.97c-1.29-1.29-1.29-3.37,0-4.66Z"/>
|
|
55
|
+
<path id="store-2250" class="cls-5" d="M3195.29,1700.13l14.25-14.26c1.29-1.29,3.39-1.29,4.68.01l84.04,85c1.28,1.29,1.27,3.38-.03,4.66l-13.96,13.79c-1.29,1.27-3.37,1.27-4.65-.02l-84.34-84.53c-1.28-1.29-1.28-3.37,0-4.66Z"/>
|
|
56
|
+
<path id="store-2302" class="cls-5" d="M3112.29,1870.26v-86.8c0-.88.35-1.73.98-2.35l28.43-28.08c1.29-1.27,3.37-1.27,4.65.01l84.73,84.73c1.29,1.29,1.29,3.37,0,4.66l-23.39,23.39c-.62.62-.97,1.46-.97,2.33v2.1c0,1.82-1.47,3.3-3.29,3.3h-87.84c-1.82,0-3.3-1.49-3.3-3.31Z"/>
|
|
57
|
+
<rect id="store-2306" class="cls-5" x="3112.29" y="1877.94" width="94.44" height="32.57" rx="3.3" ry="3.3"/>
|
|
58
|
+
<path id="store-2254" class="cls-5" d="M3149.52,1745.32l37.99-37.47c1.29-1.27,3.37-1.26,4.65.02l84.33,84.53c1.29,1.29,1.28,3.38,0,4.66l-37.77,37.62c-1.29,1.28-3.37,1.28-4.66,0l-84.55-84.67c-1.29-1.29-1.28-3.39.02-4.68Z"/>
|
|
59
|
+
<rect id="store-2316" class="cls-5" x="2855.61" y="1807.3" width="50.79" height="68.87" rx="3.27" ry="3.27"/>
|
|
60
|
+
<path id="store-2314" class="cls-5" d="M2910.79,1908.77v-98.2c0-1.81,1.47-3.27,3.27-3.27h60.13c1.42,0,2.69.92,3.12,2.28l.25.8c.02.07.05.14.08.21l1.77,4.46c.03.07.06.14.09.2l2.07,4.33c.03.07.07.13.1.2l2.36,4.18c.04.06.08.13.12.19l2.63,4.01c.04.06.08.12.13.18l1.3,1.72c.05.06.09.12.14.17l3.01,3.45h0c1.22,1.29,1.2,3.31-.05,4.57l-37.63,37.73c-.61.62-1.45.96-2.32.96h-19.55c-1.81,0-3.27,1.47-3.27,3.27v28.56c0,1.81-1.47,3.27-3.27,3.27h-11.19c-1.81,0-3.27-1.47-3.27-3.27Z"/>
|
|
61
|
+
<path id="store-2312" class="cls-5" d="M2932.93,1908.77v-24.17c0-1.81,1.47-3.27,3.27-3.27h16.98c.87,0,1.7-.35,2.32-.96l38.98-39.08c1.24-1.24,3.23-1.29,4.53-.1l3.49,3.19c.07.07.15.13.23.19l1.7,1.29c.06.04.12.09.18.13l4.01,2.64c.06.04.13.08.19.12l4.18,2.36c.06.04.13.07.2.1l4.33,2.07c.07.03.14.06.2.09l4.46,1.77c.07.03.14.05.21.07l.8.26c1.36.43,2.28,1.69,2.28,3.12v50.21c0,1.81-1.47,3.27-3.27,3.27h-85.99c-1.81,0-3.27-1.47-3.27-3.27Z"/>
|
|
62
|
+
<rect id="store-2315" class="cls-5" x="2855.61" y="1880.57" width="50.79" height="31.48" rx="3.27" ry="3.27"/>
|
|
63
|
+
<rect id="store-2240" class="cls-5" x="3316.37" y="1584.43" width="41.4" height="125.94" rx="3.3" ry="3.3" transform="translate(-187.4951 2842.1438) rotate(-44.9995)"/>
|
|
64
|
+
<path id="store-2242" class="cls-5" d="M3258.25,1666.71v-28.19c0-.87.35-1.71.97-2.33l13.22-13.22c1.29-1.29,3.37-1.29,4.66,0l84.45,84.33c1.29,1.29,1.29,3.38,0,4.66l-27.31,27.31c-1.29,1.29-3.37,1.29-4.66,0l-70.36-70.24c-.62-.62-.97-1.46-.97-2.33Z"/>
|
|
65
|
+
<rect id="store-22238" class="cls-5" x="3348.69" y="1552.11" width="41.4" height="125.94" rx="3.3" ry="3.3" transform="translate(-155.156 2855.5946) rotate(-45.0005)"/>
|
|
66
|
+
<path id="store-white-barn" class="cls-5" d="M3377.39,1518.08l15.87-15.65c1.29-1.27,3.37-1.26,4.65.02l84.21,84.31c1.29,1.29,1.29,3.37,0,4.66l-15.77,15.77c-1.29,1.29-3.38,1.29-4.66,0l-84.31-84.43c-1.29-1.29-1.28-3.39.02-4.68Z"/>
|
|
67
|
+
<path id="store-subway" class="cls-5" d="M3016.3,1480.83l20.74-20.74c1.29-1.29,3.37-1.29,4.66,0l22.29,22.29c.94.94,1.22,2.36.71,3.59l-12.15,29.33c-.9,2.17-3.72,2.73-5.38,1.07l-30.88-30.88c-1.29-1.29-1.29-3.37,0-4.66Z"/>
|
|
68
|
+
<path id="store-dummy-45" class="cls-5" d="M3056.11,1518.2l11.41-27.56c.66-1.59,2.72-2,3.94-.78h0c.45.45,1.07.71,1.71.71h21.58c1.33,0,2.42,1.08,2.42,2.42v26.14c0,1.33-1.08,2.42-2.42,2.42h-36.41c-1.72,0-2.89-1.75-2.23-3.34Z"/>
|
|
69
|
+
<rect id="store-panda-express" class="cls-5" x="3101.56" y="1490.57" width="37.04" height="30.98" rx="3.3" ry="3.3"/>
|
|
70
|
+
<rect id="store-meltway" class="cls-5" x="3143" y="1490.57" width="36.44" height="30.98" rx="3.3" ry="3.3"/>
|
|
71
|
+
<rect id="store-2117" class="cls-5" x="3554.78" y="1276.16" width="36.81" height="56.66" rx="3.3" ry="3.3"/>
|
|
72
|
+
<path id="store-2112" class="cls-5" d="M3478.46,1329.53v-62.28c0-1.82,1.48-3.3,3.3-3.3l38.25.05c1.82,0,3.29,1.48,3.29,3.3v62.23c0,1.82-1.48,3.3-3.3,3.3h-38.25c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
73
|
+
<path id="store-2103" class="cls-5" d="M3345.03,1279.15v-18.31c0-.88.35-1.72.97-2.34l57.01-56.6c1.29-1.28,3.37-1.28,4.66.01l7.91,7.93c.62.62,1.46.97,2.33.97h13.45c1.82,0,3.3,1.48,3.3,3.3v65.03c0,1.82-1.48,3.3-3.3,3.3h-83.04c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
74
|
+
<path id="store-2036" class="cls-5" d="M3220.74,1383.37l51.27-51.07c1.28-1.27,3.35-1.28,4.63-.02l37.22,36.52c2.11,2.07.64,5.65-2.31,5.65h-29.95c-.87,0-1.71.35-2.33.96l-26.23,26.13-7.08,7.08c-1.29,1.29-3.37,1.29-4.66,0l-20.58-20.58c-1.29-1.29-1.29-3.38,0-4.67Z"/>
|
|
75
|
+
<path id="store-sbarro" class="cls-5" d="M3217.77,1542.48l-1.05-.1c-.07,0-.15-.02-.22-.03l-1.05-.18c-.07-.01-.14-.03-.21-.04l-1.03-.24c-.07-.02-.15-.04-.22-.06l-1.01-.31c-.07-.02-.14-.05-.21-.07l-.99-.38c-.07-.03-.14-.06-.2-.09l-.96-.45c-.07-.03-.13-.07-.2-.1l-.93-.51c-.06-.04-.13-.07-.19-.11l-.89-.57c-.06-.04-.13-.08-.19-.13l-.85-.63c-.06-.04-.12-.09-.17-.14l-.81-.69c-.06-.05-.11-.1-.16-.15l-.76-.74c-.05-.05-.1-.11-.15-.16l-.71-.79c-.05-.06-.1-.11-.14-.17l-.65-.84c-.05-.06-.09-.12-.13-.18l-.59-.88c-.04-.06-.08-.12-.12-.19l-.53-.92c-.04-.06-.07-.13-.1-.19l-.47-.95c-.03-.07-.06-.14-.09-.21l-.4-.98c-.03-.07-.05-.14-.08-.2l-.34-1.01c-.02-.07-.05-.14-.06-.22l-.27-1.02c-.02-.07-.03-.14-.05-.22l-.2-1.05c-.01-.07-.02-.14-.03-.21l-.11-.92c-.02-.13-.02-.26-.02-.39l-.14-29.69c0-.91.37-1.79,1.04-2.42l3.36-3.16c1.3-1.22,3.34-1.19,4.6.08l31.86,32.13c1.28,1.29,1.27,3.37,0,4.65l-13.65,13.65-.26.24-.28.22-.29.2-.31.18-.32.15-.33.13-1.11.35c-.07.02-.14.04-.22.06l-1.03.25c-.07.02-.14.03-.21.04l-1.04.18c-.08.01-.15.02-.23.03l-1.05.11c-.07,0-.15.01-.22.02l-1.07.04c-.07,0-.15,0-.22,0l-1.06-.03c-.07,0-.15,0-.22-.01Z"/>
|
|
76
|
+
<path id="store-dummy-41" class="cls-5" d="M3132.53,1692.72l7.66-7.66c.86-.86,2.25-.86,3.11,0l6.75,6.73c.86.86.86,2.25,0,3.11l-7.67,7.67c-.86.86-2.25.86-3.11,0l-6.74-6.74c-.86-.86-.86-2.25,0-3.11Z"/>
|
|
77
|
+
<rect id="store-dummy-40" class="cls-5" x="3184.25" y="1628.55" width="26.64" height="14.43" rx="2.2" ry="2.2" transform="translate(-220.1461 2740.032) rotate(-44.9984)"/>
|
|
78
|
+
<rect id="store-dummy-39" class="cls-5" x="3343.32" y="1476.89" width="6.97" height="18.5" rx="2.2" ry="2.2" transform="translate(-70.6744 2801.6413) rotate(-44.9969)"/>
|
|
79
|
+
<rect id="store-dummy-38" class="cls-5" x="3266.09" y="1552.17" width="10.87" height="18.5" rx="2.2" ry="2.2" transform="translate(-145.9646 2770.4081) rotate(-44.996)"/>
|
|
80
|
+
<path id="store-dummy-37" class="cls-5" d="M3108.69,1716.57l10.55-10.56c.86-.86,2.25-.86,3.11,0l6.75,6.74c.86.86.86,2.25,0,3.11l-10.56,10.56c-.86.86-2.25.86-3.11,0l-6.74-6.74c-.86-.86-.86-2.25,0-3.11Z"/>
|
|
81
|
+
<rect id="store-2408" class="cls-5" x="2849.43" y="1926.36" width="176.04" height="132.42" rx="3.3" ry="3.3"/>
|
|
82
|
+
<rect id="store-2232" class="cls-5" x="3381.07" y="1519.73" width="41.4" height="125.95" rx="3.3" ry="3.3" transform="translate(-122.7981 2868.9425) rotate(-44.9995)"/>
|
|
83
|
+
<rect id="store-2220" class="cls-5" x="3573.45" y="1419.64" width="64.29" height="121.64" rx="3.3" ry="3.3"/>
|
|
84
|
+
<path id="store-2212" class="cls-5" d="M3710.64,1537.98l.12-115.05c0-1.82,1.48-3.29,3.3-3.29h34.8c1.82,0,3.3,1.48,3.3,3.3l-.12,115.05c0,1.82-1.48,3.29-3.3,3.29h-34.8c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
85
|
+
<rect id="store-2120" class="cls-5" x="3527.7" y="1210.82" width="105.4" height="60.94" rx="3.3" ry="3.3"/>
|
|
86
|
+
<rect id="store-2118" class="cls-5" x="3595.99" y="1276.16" width="37.11" height="56.66" rx="3.3" ry="3.3"/>
|
|
87
|
+
<path id="store-dummy-33" class="cls-5" d="M3327.1,1277.35l7.92-7.89c2.08-2.07,5.62-.6,5.62,2.33v15.83c0,2.94-3.56,4.41-5.63,2.33l-7.92-7.94c-1.29-1.29-1.28-3.38,0-4.66Z"/>
|
|
88
|
+
<path id="store-2034" class="cls-5" d="M3260.06,1400.77l21.04-20.96c.62-.62,1.45-.96,2.33-.96h34.15c1.82,0,3.3,1.48,3.3,3.3v65.01c0,.87-.35,1.71-.97,2.33l-5.57,5.57c-1.29,1.29-3.37,1.29-4.66,0l-49.62-49.62c-1.29-1.29-1.29-3.38,0-4.67Z"/>
|
|
89
|
+
<path id="store-2032" class="cls-5" d="M3227.82,1433l24.46-24.46c1.29-1.29,3.37-1.29,4.66,0l49.63,49.63c1.29,1.29,1.29,3.37,0,4.66l-24.6,24.6c-1.29,1.29-3.38,1.29-4.67,0l-49.48-49.77c-1.28-1.29-1.28-3.37,0-4.65Z"/>
|
|
90
|
+
<path id="store-dummy-32" class="cls-5" d="M3076.69,1476.37l-14.78-14.78c-.62-.62-.97-1.46-.97-2.33v-13.5c0-1.82,1.48-3.3,3.3-3.3h75.74c1.82,0,3.29,1.47,3.3,3.29l.02,28.28c0,1.82-1.47,3.3-3.3,3.3h-60.98c-.87,0-1.71-.35-2.33-.97Z"/>
|
|
91
|
+
<path id="store-charleys" class="cls-5" d="M3047.06,1627.08l17.59-17.6c1.29-1.29,3.37-1.29,4.66,0l24.61,24.61c1.29,1.29,1.29,3.38,0,4.66l-17.61,17.58c-1.29,1.29-3.37,1.28-4.66,0l-24.59-24.59c-1.29-1.29-1.29-3.37,0-4.66Z"/>
|
|
92
|
+
<path id="store-2328" class="cls-5" d="M2956.59,1717.18v-111.76c0-1.82,1.48-3.3,3.3-3.3h8.06c.87,0,1.71-.35,2.33-.97l9.76-9.76c1.29-1.29,3.37-1.29,4.66,0l93.03,93.03c1.27,1.27,1.29,3.31.05,4.61l-29.03,30.42c-.62.65-1.48,1.02-2.38,1.02h-86.48c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
93
|
+
<rect id="store-2326" class="cls-5" x="2909.03" y="1651.6" width="43.17" height="68.88" rx="3.3" ry="3.3"/>
|
|
94
|
+
<rect id="store-2324" class="cls-5" x="2864.36" y="1651.6" width="39.5" height="68.88" rx="3.3" ry="3.3"/>
|
|
95
|
+
<path id="store-2405-7" class="cls-5" d="M3167.88,2303.65l-34.01-121.56c-.59-2.1.99-4.18,3.17-4.18h111.99c1.82,0,3.3,1.48,3.3,3.3v121.56c0,1.82-1.48,3.3-3.3,3.3h-77.98c-1.48,0-2.78-.98-3.17-2.41Z"/>
|
|
96
|
+
<path id="store-73-lf" class="cls-5" d="M3954.03,1290.22v318.2c0,1.82,1.48,3.3,3.3,3.3h478.34c1.82,0,3.3-1.47,3.3-3.29l.27-152.37c0-.86.34-1.69.95-2.31l156.4-158.89c.62-.63,1.47-.98,2.35-.98l176.3-.12c1.82,0,3.3-1.48,3.3-3.3v-364.63c0-1.82-1.48-3.3-3.3-3.3h-396.68c-1.82,0-3.3,1.48-3.3,3.3v136.41c0,1.81-1.45,3.28-3.26,3.3l-62.71.68c-1.81.02-3.26,1.49-3.26,3.3v214.11c0,1.82-1.48,3.3-3.3,3.3h-345.39c-1.82,0-3.3,1.48-3.3,3.3Z"/>
|
|
97
|
+
<path id="store-72" class="cls-5" d="M4299.75,1277.28l-1.62-209.98c-.01-1.82-1.51-3.29-3.33-3.27l-98.98,1.08c-1.83.02-3.33-1.46-3.33-3.3v-245.28c0-1.82-1.48-3.3-3.3-3.3l-266.52.32c-1.82,0-3.29,1.48-3.29,3.3v293.62c0,1.82,1.48,3.3,3.3,3.3h46.27c1.82,0,3.3,1.48,3.3,3.3v161.69c0,1.83,1.48,3.3,3.31,3.3l320.92-1.46c1.82,0,3.29-1.5,3.28-3.32Z"/>
|
|
98
|
+
<path id="store-72-2" data-name="store-72" class="cls-5" d="M3912.9,1108.81l.48-292.47c0-1.83-1.48-3.31-3.3-3.31l-194.16.23c-1.82,0-3.3,1.48-3.3,3.3v73.15c0,1.82-1.48,3.3-3.3,3.3h-58.31c-1.83,0-3.31,1.48-3.3,3.31l.53,213.5c0,1.82,1.49,3.3,3.31,3.29l258.07-1.02c1.82,0,3.28-1.48,3.29-3.3Z"/>
|
|
99
|
+
<path id="store-2300-uf" class="cls-5" d="M2545.92,1903.72l-2.22-299.11c-.01-1.83,1.47-3.32,3.3-3.32l299.94.44c1.82,0,3.29,1.48,3.29,3.3v300.08c0,1.83-1.49,3.3-3.31,3.3l-297.71-1.41c-1.8,0-3.27-1.47-3.28-3.27Z"/>
|
|
100
|
+
<path id="store-uf" class="cls-5" d="M2852.72,2404.04l266.06.2c.58,0,1.13.15,1.63.44,7.35,4.23,17.37,7.89,30.65,10.87.24.05.49.08.74.08h97.23c1.82,0,3.3,1.48,3.3,3.3v245.2c0,1.81-1.46,3.29-3.28,3.3l-396.32,2.43c-1.83.01-3.32-1.47-3.32-3.3v-259.22c0-1.82,1.48-3.3,3.3-3.3Z"/>
|
|
101
|
+
<path id="store-2100-uf" class="cls-5" d="M2915.81,1123.68l205.13-204.48c1.29-1.28,3.38-1.28,4.66,0l274.31,274.94c1.29,1.29,1.28,3.38,0,4.66l-205.05,204.12c-1.29,1.28-3.37,1.28-4.66,0l-274.39-274.58c-1.29-1.29-1.29-3.38,0-4.66Z"/>
|
|
102
|
+
</g>
|
|
103
|
+
<g id="KIOSK">
|
|
104
|
+
<rect id="kiosk-5-uf" class="cls-4" x="3062.01" y="2031.06" width="13.73" height="13.73"/>
|
|
105
|
+
<rect id="kiosk-6-uf" class="cls-4" x="3008.55" y="1515.18" width="9.71" height="9.71" transform="translate(-192.2186 2576.0092) rotate(-45)"/>
|
|
106
|
+
<rect id="kiosk-7-uf" class="cls-4" x="3445.82" y="1323.13" width="13.73" height="13.73"/>
|
|
107
|
+
</g>
|
|
108
|
+
<g id="ESCALATORS">
|
|
109
|
+
<polygon id="escalator-8-down-start" class="cls-2" points="3135.08 2266.16 3128.52 2268.19 3126.83 2261.98 3133.38 2259.94 3135.08 2266.16"/>
|
|
110
|
+
<polygon id="escalator-7-up-end" class="cls-2" points="3120.8 2270.55 3114.24 2272.59 3112.54 2266.37 3119.1 2264.34 3120.8 2270.55"/>
|
|
111
|
+
<rect id="escalator-6-down-start" class="cls-2" x="3217.8" y="1596.43" width="5.91" height="5.91" transform="translate(-187.5985 2745.865) rotate(-45)"/>
|
|
112
|
+
<rect id="escalator-5-up-end" class="cls-2" x="3226.59" y="1605.22" width="5.91" height="5.91" transform="translate(-191.2395 2754.6551) rotate(-45)"/>
|
|
113
|
+
<rect id="escalator-4-down-start" class="cls-2" x="3379.59" y="1382.42" width="5.29" height="5.29" transform="translate(11.2456 2797.2749) rotate(-45)"/>
|
|
114
|
+
<rect id="escalator-3-up-end" class="cls-2" x="3371.9" y="1390.11" width="5.29" height="5.29" transform="translate(3.5543 2794.089) rotate(-45)"/>
|
|
115
|
+
<rect id="escalator-2-down-start" class="cls-2" x="3847.07" y="1365.97" width="6.74" height="6.74"/>
|
|
116
|
+
<rect id="escalator-1-up-end" class="cls-2" x="3847.07" y="1378.05" width="6.74" height="6.74"/>
|
|
117
|
+
</g>
|
|
118
|
+
<g id="AMENITIES">
|
|
119
|
+
<rect id="amenity-18" class="cls-1" x="3121" y="2305.47" width="13.73" height="13.73"/>
|
|
120
|
+
<rect id="amenity-17" class="cls-1" x="3227.25" y="1592.03" width="9.71" height="9.71" transform="translate(-182.5041 2753.1625) rotate(-45)"/>
|
|
121
|
+
<rect id="amenity-16" class="cls-1" x="3380.79" y="1391.59" width="9.71" height="9.71" transform="translate(4.1966 2803.0255) rotate(-45)"/>
|
|
122
|
+
<rect id="amenity-15" class="cls-1" x="3447.84" y="1370.96" width="9.71" height="9.71" transform="translate(38.4217 2844.3882) rotate(-45)"/>
|
|
123
|
+
<rect id="amenity-14" class="cls-1" x="3237.75" y="1554.93" width="9.71" height="9.71" transform="translate(-153.1968 2749.7211) rotate(-45)"/>
|
|
124
|
+
<rect id="amenity-13" class="cls-1" x="3857.75" y="1368.94" width="12.95" height="12.95"/>
|
|
125
|
+
<rect id="amenity-12" class="cls-1" x="3062.01" y="1900.51" width="13.73" height="13.73"/>
|
|
126
|
+
<rect id="amenity-11" class="cls-1" x="2855.61" y="1576.84" width="96.56" height="61.62"/>
|
|
127
|
+
<path id="amenity-10" class="cls-1" d="M3203.23,1473.13l12.28-12.28c1.29-1.29,1.29-3.37,0-4.66l-3.1-3.1c-1.29-1.29-1.29-3.37,0-4.66l7.64-7.66c1.29-1.29,3.38-1.29,4.67,0l17.79,17.89c1.28,1.29,1.28,3.38-.01,4.66l-24.62,24.48c-1.29,1.28-3.37,1.28-4.66,0l-9.99-10.01c-1.28-1.29-1.28-3.37,0-4.66Z"/>
|
|
128
|
+
<path id="amenity-9" class="cls-1" d="M3155.85,1473.58v-24.87c0-.88.35-1.72.97-2.34l19.11-18.97c1.29-1.28,3.37-1.28,4.66.01l28.7,28.77c1.28,1.29,1.28,3.37,0,4.66l-15.07,15.07c-.62.62-1.46.97-2.33.97h-32.75c-1.82,0-3.3-1.48-3.3-3.3Z"/>
|
|
129
|
+
</g>
|
|
130
|
+
<g id="ROUTES">
|
|
131
|
+
<line id="route-path" class="cls-3" x1="3127.87" y1="2380.37" x2="3127.87" y2="2408.76"/>
|
|
132
|
+
<line id="route-path-2" data-name="route-path" class="cls-3" x1="3127.87" y1="2312.12" x2="3127.87" y2="2380.37"/>
|
|
133
|
+
<line id="route-path-3" data-name="route-path" class="cls-3" x1="3127.87" y1="2297.58" x2="3127.87" y2="2312.12"/>
|
|
134
|
+
<line id="route-path-4" data-name="route-path" class="cls-3" x1="3106.87" y1="2206.85" x2="3141.27" y2="2206.85"/>
|
|
135
|
+
<line id="route-path-5" data-name="route-path" class="cls-3" x1="3085.33" y1="2133.81" x2="3106.87" y2="2206.85"/>
|
|
136
|
+
<line id="route-path-6" data-name="route-path" class="cls-3" x1="3085.33" y1="2133.81" x2="3120.68" y2="2133.81"/>
|
|
137
|
+
<line id="route-path-7" data-name="route-path" class="cls-3" x1="3068.87" y1="2077.99" x2="3085.33" y2="2133.81"/>
|
|
138
|
+
<line id="route-path-8" data-name="route-path" class="cls-3" x1="3068.87" y1="1793.99" x2="3068.87" y2="1759.61"/>
|
|
139
|
+
<line id="route-path-9" data-name="route-path" class="cls-3" x1="3068.87" y1="1793.99" x2="3020.09" y2="1854.67"/>
|
|
140
|
+
<line id="route-path-10" data-name="route-path" class="cls-3" x1="3068.87" y1="1887.88" x2="3068.87" y2="1793.99"/>
|
|
141
|
+
<line id="route-path-11" data-name="route-path" class="cls-3" x1="3096.88" y1="1731.82" x2="3068.87" y2="1759.61"/>
|
|
142
|
+
<line id="route-path-12" data-name="route-path" class="cls-3" x1="3414.46" y1="1414.06" x2="3452.69" y2="1375.8"/>
|
|
143
|
+
<line id="route-path-13" data-name="route-path" class="cls-3" x1="3409.01" y1="1419.51" x2="3414.46" y2="1414.06"/>
|
|
144
|
+
<line id="route-path-14" data-name="route-path" class="cls-3" x1="3385.82" y1="1396.02" x2="3378.5" y2="1388.6"/>
|
|
145
|
+
<line id="route-path-15" data-name="route-path" class="cls-3" x1="3375.35" y1="1391.82" x2="3378.5" y2="1388.6"/>
|
|
146
|
+
<line id="route-path-16" data-name="route-path" class="cls-3" x1="3381.22" y1="1385.81" x2="3378.5" y2="1388.6"/>
|
|
147
|
+
<line id="route-path-17" data-name="route-path" class="cls-3" x1="3409.01" y1="1419.51" x2="3385.82" y2="1396.02"/>
|
|
148
|
+
<line id="route-path-18" data-name="route-path" class="cls-3" x1="3409.01" y1="1419.51" x2="3320.61" y2="1419.81"/>
|
|
149
|
+
<line id="route-path-19" data-name="route-path" class="cls-3" x1="3329.76" y1="1340.08" x2="3378.5" y2="1388.6"/>
|
|
150
|
+
<line id="route-path-20" data-name="route-path" class="cls-3" x1="3329.76" y1="1340.08" x2="3359.64" y2="1310.42"/>
|
|
151
|
+
<line id="route-path-21" data-name="route-path" class="cls-3" x1="3329.76" y1="1340.08" x2="3307.25" y2="1362.76"/>
|
|
152
|
+
<line id="route-path-22" data-name="route-path" class="cls-3" x1="3303.31" y1="1313.74" x2="3329.76" y2="1340.08"/>
|
|
153
|
+
<line id="route-path-23" data-name="route-path" class="cls-3" x1="3303.31" y1="1313.74" x2="3331.5" y2="1285.95"/>
|
|
154
|
+
<line id="route-path-24" data-name="route-path" class="cls-3" x1="3293.88" y1="1304.12" x2="3303.31" y2="1313.74"/>
|
|
155
|
+
<line id="route-path-25" data-name="route-path" class="cls-3" x1="3384.19" y1="1444.34" x2="3409.01" y2="1419.51"/>
|
|
156
|
+
<line id="route-path-26" data-name="route-path" class="cls-3" x1="3384.19" y1="1444.34" x2="3425.1" y2="1483.99"/>
|
|
157
|
+
<line id="route-path-27" data-name="route-path" class="cls-3" x1="3355.1" y1="1473.45" x2="3384.19" y2="1444.34"/>
|
|
158
|
+
<line id="route-path-28" data-name="route-path" class="cls-3" x1="3355.1" y1="1473.45" x2="3388.32" y2="1507.44"/>
|
|
159
|
+
<line id="route-path-29" data-name="route-path" class="cls-3" x1="3324.98" y1="1503.59" x2="3355.1" y2="1473.45"/>
|
|
160
|
+
<line id="route-path-30" data-name="route-path" class="cls-3" x1="3292.82" y1="1535.76" x2="3324.98" y2="1503.59"/>
|
|
161
|
+
<line id="route-path-31" data-name="route-path" class="cls-3" x1="3295.03" y1="1474.1" x2="3324.98" y2="1503.59"/>
|
|
162
|
+
<line id="route-path-32" data-name="route-path" class="cls-3" x1="3358.77" y1="1536.9" x2="3324.98" y2="1503.59"/>
|
|
163
|
+
<line id="route-path-33" data-name="route-path" class="cls-3" x1="3269.9" y1="1558.7" x2="3292.82" y2="1535.76"/>
|
|
164
|
+
<line id="route-path-34" data-name="route-path" class="cls-3" x1="3256.05" y1="1572.55" x2="3269.9" y2="1558.7"/>
|
|
165
|
+
<line id="route-path-35" data-name="route-path" class="cls-3" x1="3238.56" y1="1528.49" x2="3269.9" y2="1558.7"/>
|
|
166
|
+
<line id="route-path-36" data-name="route-path" class="cls-3" x1="3262.32" y1="1506.7" x2="3292.82" y2="1535.76"/>
|
|
167
|
+
<line id="route-path-37" data-name="route-path" class="cls-3" x1="3327.02" y1="1568.58" x2="3292.82" y2="1535.76"/>
|
|
168
|
+
<line id="route-path-38" data-name="route-path" class="cls-3" x1="3237.21" y1="1591.41" x2="3256.05" y2="1572.55"/>
|
|
169
|
+
<line id="route-path-39" data-name="route-path" class="cls-3" x1="3237.21" y1="1591.41" x2="3188.46" y2="1545.08"/>
|
|
170
|
+
<line id="route-path-40" data-name="route-path" class="cls-3" x1="3188.46" y1="1485.75" x2="3188.46" y2="1545.08"/>
|
|
171
|
+
<line id="route-path-41" data-name="route-path" class="cls-3" x1="3188.46" y1="1485.75" x2="3224.58" y2="1466.77"/>
|
|
172
|
+
<line id="route-path-42" data-name="route-path" class="cls-3" x1="3179.74" y1="1456.21" x2="3188.46" y2="1485.75"/>
|
|
173
|
+
<line id="route-path-43" data-name="route-path" class="cls-3" x1="3165.23" y1="1520.76" x2="3188.46" y2="1545.08"/>
|
|
174
|
+
<line id="route-path-44" data-name="route-path" class="cls-3" x1="3231.9" y1="1596.72" x2="3237.21" y2="1591.41"/>
|
|
175
|
+
<line id="route-path-45" data-name="route-path" class="cls-3" x1="3225.09" y1="1603.54" x2="3231.9" y2="1596.72"/>
|
|
176
|
+
<line id="route-path-46" data-name="route-path" class="cls-3" x1="3225.09" y1="1603.54" x2="3221.31" y2="1599.86"/>
|
|
177
|
+
<line id="route-path-47" data-name="route-path" class="cls-3" x1="3225.09" y1="1603.54" x2="3228.49" y2="1606.85"/>
|
|
178
|
+
<line id="route-path-48" data-name="route-path" class="cls-3" x1="3194.92" y1="1633.72" x2="3225.09" y2="1603.54"/>
|
|
179
|
+
<line id="route-path-49" data-name="route-path" class="cls-3" x1="3290.09" y1="1605.51" x2="3256.05" y2="1572.55"/>
|
|
180
|
+
<line id="route-path-50" data-name="route-path" class="cls-3" x1="3246.07" y1="1562.81" x2="3256.05" y2="1572.55"/>
|
|
181
|
+
<line id="route-path-51" data-name="route-path" class="cls-3" x1="3161.28" y1="1667.38" x2="3194.92" y2="1633.72"/>
|
|
182
|
+
<line id="route-path-52" data-name="route-path" class="cls-3" x1="3273.26" y1="1711.24" x2="3194.92" y2="1633.72"/>
|
|
183
|
+
<line id="route-path-53" data-name="route-path" class="cls-3" x1="3273.26" y1="1711.24" x2="3287.56" y2="1696.96"/>
|
|
184
|
+
<line id="route-path-54" data-name="route-path" class="cls-3" x1="3273.26" y1="1711.24" x2="3256.09" y2="1728.56"/>
|
|
185
|
+
<line id="route-path-55" data-name="route-path" class="cls-3" x1="3139.2" y1="1689.47" x2="3161.28" y2="1667.38"/>
|
|
186
|
+
<line id="route-path-56" data-name="route-path" class="cls-3" x1="3132.06" y1="1696.62" x2="3139.2" y2="1689.47"/>
|
|
187
|
+
<line id="route-path-57" data-name="route-path" class="cls-3" x1="3097.39" y1="1603.54" x2="3161.28" y2="1667.38"/>
|
|
188
|
+
<line id="route-path-58" data-name="route-path" class="cls-3" x1="3065.5" y1="1571.67" x2="3097.39" y2="1603.54"/>
|
|
189
|
+
<line id="route-path-59" data-name="route-path" class="cls-3" x1="3080.29" y1="1620.78" x2="3097.39" y2="1603.54"/>
|
|
190
|
+
<line id="route-path-60" data-name="route-path" class="cls-3" x1="3114.53" y1="1520.99" x2="3097.39" y2="1603.54"/>
|
|
191
|
+
<line id="route-path-61" data-name="route-path" class="cls-3" x1="3031.42" y1="1537.62" x2="3065.5" y2="1571.67"/>
|
|
192
|
+
<line id="route-path-62" data-name="route-path" class="cls-3" x1="3048.1" y1="1588.73" x2="3065.5" y2="1571.67"/>
|
|
193
|
+
<line id="route-path-63" data-name="route-path" class="cls-3" x1="3074.65" y1="1521.21" x2="3065.5" y2="1571.67"/>
|
|
194
|
+
<line id="route-path-64" data-name="route-path" class="cls-3" x1="3012.76" y1="1518.97" x2="3031.42" y2="1537.62"/>
|
|
195
|
+
<line id="route-path-65" data-name="route-path" class="cls-3" x1="3004.2" y1="1510.42" x2="3012.76" y2="1518.97"/>
|
|
196
|
+
<line id="route-path-66" data-name="route-path" class="cls-3" x1="3004.2" y1="1510.42" x2="2987.08" y2="1527.57"/>
|
|
197
|
+
<line id="route-path-67" data-name="route-path" class="cls-3" x1="3014.46" y1="1555.01" x2="3031.42" y2="1537.62"/>
|
|
198
|
+
<line id="route-path-68" data-name="route-path" class="cls-3" x1="3031.85" y1="1500.56" x2="3031.42" y2="1537.62"/>
|
|
199
|
+
<line id="route-path-69" data-name="route-path" class="cls-3" x1="3116.6" y1="1712.09" x2="3132.06" y2="1696.62"/>
|
|
200
|
+
<line id="route-path-70" data-name="route-path" class="cls-3" x1="3096.88" y1="1731.82" x2="3116.6" y2="1712.09"/>
|
|
201
|
+
<line id="route-path-71" data-name="route-path" class="cls-3" x1="3100.32" y1="1664.99" x2="3132.06" y2="1696.62"/>
|
|
202
|
+
<line id="route-path-72" data-name="route-path" class="cls-3" x1="3165.47" y1="1729.91" x2="3132.06" y2="1696.62"/>
|
|
203
|
+
<line id="route-path-73" data-name="route-path" class="cls-3" x1="3027.66" y1="1759.61" x2="3068.87" y2="1759.61"/>
|
|
204
|
+
<line id="route-path-74" data-name="route-path" class="cls-3" x1="2929.15" y1="1759.61" x2="3027.66" y2="1759.61"/>
|
|
205
|
+
<line id="route-path-75" data-name="route-path" class="cls-3" x1="2976.75" y1="1810.12" x2="3027.66" y2="1759.61"/>
|
|
206
|
+
<line id="route-path-76" data-name="route-path" class="cls-3" x1="2929.09" y1="1720.15" x2="2929.15" y2="1759.61"/>
|
|
207
|
+
<line id="route-path-77" data-name="route-path" class="cls-3" x1="2884.11" y1="1759.61" x2="2929.15" y2="1759.61"/>
|
|
208
|
+
<line id="route-path-78" data-name="route-path" class="cls-3" x1="2884.11" y1="1759.61" x2="2857.58" y2="1759.61"/>
|
|
209
|
+
<line id="route-path-79" data-name="route-path" class="cls-3" x1="2857.58" y1="1645.44" x2="2857.58" y2="1759.61"/>
|
|
210
|
+
<line id="route-path-80" data-name="route-path" class="cls-3" x1="2857.58" y1="1645.44" x2="2903.9" y2="1645.44"/>
|
|
211
|
+
<line id="route-path-81" data-name="route-path" class="cls-3" x1="2903.86" y1="1620.88" x2="2903.9" y2="1645.44"/>
|
|
212
|
+
<line id="route-path-82" data-name="route-path" class="cls-3" x1="2849.05" y1="1759.61" x2="2857.58" y2="1759.61"/>
|
|
213
|
+
<line id="route-path-83" data-name="route-path" class="cls-3" x1="2884.11" y1="1759.61" x2="2881.89" y2="1808.18"/>
|
|
214
|
+
<line id="route-path-84" data-name="route-path" class="cls-3" x1="2884.11" y1="1759.61" x2="2884.11" y2="1720.15"/>
|
|
215
|
+
<line id="route-path-85" data-name="route-path" class="cls-3" x1="3096.88" y1="1731.82" x2="3065.66" y2="1701.02"/>
|
|
216
|
+
<line id="route-path-86" data-name="route-path" class="cls-3" x1="3096.88" y1="1731.82" x2="3130.09" y2="1764.82"/>
|
|
217
|
+
<line id="route-path-87" data-name="route-path" class="cls-3" x1="3068.87" y1="1887.88" x2="3112.45" y2="1887.88"/>
|
|
218
|
+
<line id="route-path-88" data-name="route-path" class="cls-3" x1="3068.87" y1="1887.88" x2="3025.32" y2="1887.88"/>
|
|
219
|
+
<line id="route-path-89" data-name="route-path" class="cls-3" x1="3068.87" y1="1982.17" x2="3068.87" y2="1949.77"/>
|
|
220
|
+
<line id="route-path-90" data-name="route-path" class="cls-3" x1="3068.87" y1="1982.17" x2="3025.18" y2="1982.17"/>
|
|
221
|
+
<line id="route-path-91" data-name="route-path" class="cls-3" x1="3068.87" y1="1998.96" x2="3068.87" y2="1982.17"/>
|
|
222
|
+
<line id="route-path-92" data-name="route-path" class="cls-3" x1="3112.45" y1="1949.77" x2="3068.87" y2="1949.77"/>
|
|
223
|
+
<line id="route-path-93" data-name="route-path" class="cls-3" x1="3068.87" y1="1907.38" x2="3068.87" y2="1949.77"/>
|
|
224
|
+
<line id="route-path-94" data-name="route-path" class="cls-3" x1="3068.87" y1="1887.88" x2="3068.87" y2="1907.38"/>
|
|
225
|
+
<line id="route-path-95" data-name="route-path" class="cls-3" x1="3068.87" y1="2037.54" x2="3068.87" y2="1998.96"/>
|
|
226
|
+
<line id="route-path-96" data-name="route-path" class="cls-3" x1="3068.87" y1="2037.54" x2="3112.45" y2="2037.41"/>
|
|
227
|
+
<line id="route-path-97" data-name="route-path" class="cls-3" x1="3112.51" y1="1998.96" x2="3068.87" y2="1998.96"/>
|
|
228
|
+
<line id="route-path-98" data-name="route-path" class="cls-3" x1="3068.87" y1="2077.99" x2="3068.87" y2="2037.54"/>
|
|
229
|
+
<line id="route-path-99" data-name="route-path" class="cls-3" x1="3127.87" y1="2278.07" x2="3127.87" y2="2297.58"/>
|
|
230
|
+
<line id="route-path-100" data-name="route-path" class="cls-3" x1="3124.27" y1="2265.89" x2="3106.87" y2="2206.85"/>
|
|
231
|
+
<line id="route-path-101" data-name="route-path" class="cls-3" x1="3127.87" y1="2278.07" x2="3124.27" y2="2265.89"/>
|
|
232
|
+
<line id="route-path-102" data-name="route-path" class="cls-3" x1="3118.58" y1="2267.71" x2="3124.27" y2="2265.89"/>
|
|
233
|
+
<line id="route-path-103" data-name="route-path" class="cls-3" x1="3129.15" y1="2264.34" x2="3124.27" y2="2265.89"/>
|
|
234
|
+
<line id="route-path-104" data-name="route-path" class="cls-3" x1="3127.87" y1="2278.07" x2="3037.46" y2="2278.07"/>
|
|
235
|
+
<line id="route-path-105" data-name="route-path" class="cls-3" x1="3930.51" y1="1375.87" x2="3954.86" y2="1375.87"/>
|
|
236
|
+
<line id="route-path-106" data-name="route-path" class="cls-3" x1="3914.47" y1="1375.86" x2="3930.51" y2="1375.87"/>
|
|
237
|
+
<line id="route-path-107" data-name="route-path" class="cls-3" x1="3914.47" y1="1375.86" x2="3914.47" y2="1419.76"/>
|
|
238
|
+
<line id="route-path-108" data-name="route-path" class="cls-3" x1="3868.66" y1="1375.86" x2="3914.47" y2="1375.86"/>
|
|
239
|
+
<line id="route-path-109" data-name="route-path" class="cls-3" x1="3868.66" y1="1375.86" x2="3868.58" y2="1419.81"/>
|
|
240
|
+
<line id="route-path-110" data-name="route-path" class="cls-3" x1="3850.25" y1="1375.86" x2="3868.66" y2="1375.86"/>
|
|
241
|
+
<line id="route-path-111" data-name="route-path" class="cls-3" x1="3850.25" y1="1375.86" x2="3850.25" y2="1370.78"/>
|
|
242
|
+
<line id="route-path-112" data-name="route-path" class="cls-3" x1="3850.25" y1="1375.86" x2="3850.25" y2="1379.79"/>
|
|
243
|
+
<line id="route-path-113" data-name="route-path" class="cls-3" x1="3831.11" y1="1375.85" x2="3850.25" y2="1375.86"/>
|
|
244
|
+
<line id="route-path-114" data-name="route-path" class="cls-3" x1="3831.11" y1="1375.85" x2="3831.17" y2="1419.81"/>
|
|
245
|
+
<line id="route-path-115" data-name="route-path" class="cls-3" x1="3800.09" y1="1375.85" x2="3831.11" y2="1375.85"/>
|
|
246
|
+
<line id="route-path-116" data-name="route-path" class="cls-3" x1="3800.09" y1="1375.85" x2="3800.02" y2="1419.77"/>
|
|
247
|
+
<line id="route-path-117" data-name="route-path" class="cls-3" x1="3800.09" y1="1375.85" x2="3800.09" y2="1332.54"/>
|
|
248
|
+
<line id="route-path-118" data-name="route-path" class="cls-3" x1="3769.62" y1="1375.85" x2="3800.09" y2="1375.85"/>
|
|
249
|
+
<line id="route-path-119" data-name="route-path" class="cls-3" x1="3769.62" y1="1375.85" x2="3769.62" y2="1419.86"/>
|
|
250
|
+
<line id="route-path-120" data-name="route-path" class="cls-3" x1="3731.46" y1="1375.84" x2="3769.62" y2="1375.85"/>
|
|
251
|
+
<line id="route-path-121" data-name="route-path" class="cls-3" x1="3731.46" y1="1375.84" x2="3731.46" y2="1419.77"/>
|
|
252
|
+
<line id="route-path-122" data-name="route-path" class="cls-3" x1="3685.51" y1="1375.83" x2="3731.46" y2="1375.84"/>
|
|
253
|
+
<line id="route-path-123" data-name="route-path" class="cls-3" x1="3685.51" y1="1375.83" x2="3685.51" y2="1419.77"/>
|
|
254
|
+
<line id="route-path-124" data-name="route-path" class="cls-3" x1="3677.75" y1="1375.83" x2="3685.51" y2="1375.83"/>
|
|
255
|
+
<line id="route-path-125" data-name="route-path" class="cls-3" x1="3648.89" y1="1375.83" x2="3677.75" y2="1375.83"/>
|
|
256
|
+
<line id="route-path-126" data-name="route-path" class="cls-3" x1="3677.75" y1="1332.65" x2="3677.75" y2="1375.83"/>
|
|
257
|
+
<line id="route-path-127" data-name="route-path" class="cls-3" x1="3648.89" y1="1375.83" x2="3648.89" y2="1332.59"/>
|
|
258
|
+
<line id="route-path-128" data-name="route-path" class="cls-3" x1="3648.89" y1="1375.83" x2="3648.89" y2="1419.81"/>
|
|
259
|
+
<line id="route-path-129" data-name="route-path" class="cls-3" x1="3610.77" y1="1375.82" x2="3648.89" y2="1375.83"/>
|
|
260
|
+
<line id="route-path-130" data-name="route-path" class="cls-3" x1="3610.77" y1="1375.82" x2="3610.77" y2="1419.81"/>
|
|
261
|
+
<line id="route-path-131" data-name="route-path" class="cls-3" x1="3610.77" y1="1375.82" x2="3610.69" y2="1332.59"/>
|
|
262
|
+
<line id="route-path-132" data-name="route-path" class="cls-3" x1="3573.19" y1="1375.82" x2="3610.77" y2="1375.82"/>
|
|
263
|
+
<line id="route-path-133" data-name="route-path" class="cls-3" x1="3573.19" y1="1375.82" x2="3573.19" y2="1332.59"/>
|
|
264
|
+
<line id="route-path-134" data-name="route-path" class="cls-3" x1="3539.04" y1="1375.81" x2="3573.19" y2="1375.82"/>
|
|
265
|
+
<line id="route-path-135" data-name="route-path" class="cls-3" x1="3539.04" y1="1375.81" x2="3539.04" y2="1332.59"/>
|
|
266
|
+
<line id="route-path-136" data-name="route-path" class="cls-3" x1="3539.04" y1="1375.81" x2="3539.04" y2="1419.81"/>
|
|
267
|
+
<line id="route-path-137" data-name="route-path" class="cls-3" x1="3452.69" y1="1375.8" x2="3539.04" y2="1375.81"/>
|
|
268
|
+
<line id="route-path-138" data-name="route-path" class="cls-3" x1="3452.69" y1="1309.83" x2="3452.69" y2="1247.25"/>
|
|
269
|
+
<line id="route-path-139" data-name="route-path" class="cls-3" x1="3434.48" y1="1247.18" x2="3452.69" y2="1247.25"/>
|
|
270
|
+
<line id="route-path-140" data-name="route-path" class="cls-3" x1="3478.68" y1="1247.25" x2="3452.69" y2="1247.25"/>
|
|
271
|
+
<line id="route-path-141" data-name="route-path" class="cls-3" x1="3452.69" y1="1330" x2="3452.69" y2="1309.83"/>
|
|
272
|
+
<line id="route-path-142" data-name="route-path" class="cls-3" x1="3452.69" y1="1375.8" x2="3452.69" y2="1330"/>
|
|
273
|
+
<line id="route-path-143" data-name="route-path" class="cls-3" x1="3434.44" y1="1309.83" x2="3452.69" y2="1309.83"/>
|
|
274
|
+
<line id="route-path-144" data-name="route-path" class="cls-3" x1="3478.6" y1="1309.83" x2="3452.69" y2="1309.83"/>
|
|
275
|
+
</g>
|
|
276
|
+
</svg>
|