@eyeon/map 2.0.2 → 2.0.3

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.
Files changed (110) hide show
  1. package/dist/assets/MapViewer.css +1 -1
  2. package/dist/assets/index.css +1 -1
  3. package/dist/chunks/MapViewer.js +1332 -1091
  4. package/dist/chunks/MapViewer.js.map +1 -1
  5. package/dist/chunks/graph-tools.js +246 -0
  6. package/dist/chunks/graph-tools.js.map +1 -0
  7. package/dist/chunks/stacking.js +885 -780
  8. package/dist/chunks/stacking.js.map +1 -1
  9. package/dist/core/filletPolygon.d.ts +10 -0
  10. package/dist/core/filletPolygon.d.ts.map +1 -0
  11. package/dist/core/import/index.d.ts +4 -0
  12. package/dist/core/import/index.d.ts.map +1 -1
  13. package/dist/core/index.d.ts +3 -0
  14. package/dist/core/index.d.ts.map +1 -1
  15. package/dist/core/index.js +89 -220
  16. package/dist/core/index.js.map +1 -1
  17. package/dist/core/layerStyles.d.ts +16 -0
  18. package/dist/core/layerStyles.d.ts.map +1 -1
  19. package/dist/core/mediaUrl.d.ts +3 -0
  20. package/dist/core/mediaUrl.d.ts.map +1 -0
  21. package/dist/core/outdoorDecoration.d.ts +16 -0
  22. package/dist/core/outdoorDecoration.d.ts.map +1 -0
  23. package/dist/core/routing/graph-tools.d.ts +23 -1
  24. package/dist/core/routing/graph-tools.d.ts.map +1 -1
  25. package/dist/core/routing/pathfinding.d.ts.map +1 -1
  26. package/dist/core/types.d.ts +5 -1
  27. package/dist/core/types.d.ts.map +1 -1
  28. package/dist/editor/MapEditor.d.ts +1 -1
  29. package/dist/editor/MapEditor.d.ts.map +1 -1
  30. package/dist/editor/canvas/EditorCanvas.d.ts +45 -7
  31. package/dist/editor/canvas/EditorCanvas.d.ts.map +1 -1
  32. package/dist/editor/canvas/OutdoorSvgUnderlay.d.ts +7 -0
  33. package/dist/editor/canvas/OutdoorSvgUnderlay.d.ts.map +1 -0
  34. package/dist/editor/canvas/coords.d.ts +30 -0
  35. package/dist/editor/canvas/coords.d.ts.map +1 -1
  36. package/dist/editor/canvas/editorFill.d.ts +10 -0
  37. package/dist/editor/canvas/editorFill.d.ts.map +1 -0
  38. package/dist/editor/canvas/editorHover.d.ts +14 -0
  39. package/dist/editor/canvas/editorHover.d.ts.map +1 -0
  40. package/dist/editor/canvas/underlayHint.d.ts +5 -0
  41. package/dist/editor/canvas/underlayHint.d.ts.map +1 -0
  42. package/dist/editor/connectorAssignments.d.ts +64 -0
  43. package/dist/editor/connectorAssignments.d.ts.map +1 -0
  44. package/dist/editor/draftOps.d.ts +4 -1
  45. package/dist/editor/draftOps.d.ts.map +1 -1
  46. package/dist/editor/editorSectionReturn.d.ts +12 -0
  47. package/dist/editor/editorSectionReturn.d.ts.map +1 -0
  48. package/dist/editor/floorsListReturn.d.ts +5 -0
  49. package/dist/editor/floorsListReturn.d.ts.map +1 -0
  50. package/dist/editor/geometryEdit.d.ts +23 -3
  51. package/dist/editor/geometryEdit.d.ts.map +1 -1
  52. package/dist/editor/hexColor.d.ts +4 -0
  53. package/dist/editor/hexColor.d.ts.map +1 -0
  54. package/dist/editor/history.d.ts +31 -0
  55. package/dist/editor/history.d.ts.map +1 -0
  56. package/dist/editor/index.css +270 -52
  57. package/dist/editor/index.d.ts +4 -4
  58. package/dist/editor/index.d.ts.map +1 -1
  59. package/dist/editor/index.js +5746 -1678
  60. package/dist/editor/index.js.map +1 -1
  61. package/dist/editor/labelText.d.ts +15 -0
  62. package/dist/editor/labelText.d.ts.map +1 -0
  63. package/dist/editor/panels/ConnectorAssign.d.ts +12 -0
  64. package/dist/editor/panels/ConnectorAssign.d.ts.map +1 -0
  65. package/dist/editor/panels/FloorsPanel.d.ts +4 -0
  66. package/dist/editor/panels/FloorsPanel.d.ts.map +1 -1
  67. package/dist/editor/panels/ImportReviewPanel.d.ts.map +1 -1
  68. package/dist/editor/panels/Inspector.d.ts +3 -2
  69. package/dist/editor/panels/Inspector.d.ts.map +1 -1
  70. package/dist/editor/panels/LeftRail.d.ts +9 -7
  71. package/dist/editor/panels/LeftRail.d.ts.map +1 -1
  72. package/dist/editor/pathRings.d.ts +79 -0
  73. package/dist/editor/pathRings.d.ts.map +1 -0
  74. package/dist/editor/portalSurface.d.ts +29 -3
  75. package/dist/editor/portalSurface.d.ts.map +1 -1
  76. package/dist/editor/railAssignments.d.ts +22 -0
  77. package/dist/editor/railAssignments.d.ts.map +1 -0
  78. package/dist/editor/routeStubs.d.ts +103 -0
  79. package/dist/editor/routeStubs.d.ts.map +1 -0
  80. package/dist/editor/snapPoint.d.ts +5 -0
  81. package/dist/editor/snapPoint.d.ts.map +1 -0
  82. package/dist/editor/splitJoin.d.ts +78 -0
  83. package/dist/editor/splitJoin.d.ts.map +1 -0
  84. package/dist/editor/tools.d.ts +35 -6
  85. package/dist/editor/tools.d.ts.map +1 -1
  86. package/dist/test-maps/shops-at-south-town/BASE - Shops At South Town.ai +6326 -6407
  87. package/dist/test-maps/shops-at-south-town/LF - Shops At South Town.ai +458 -484
  88. package/dist/test-maps/shops-at-south-town/SVG/BASE - Shops At South Town.svg +6 -6
  89. package/dist/test-maps/shops-at-south-town/SVG/LF - Shops At South Town.svg +52 -52
  90. package/dist/test-maps/shops-at-south-town/SVG/UF - Shops At South Town.svg +74 -74
  91. package/dist/test-maps/shops-at-south-town/UF - Shops At South Town.ai +341 -436
  92. package/dist/ui/ModernSelect.d.ts +14 -0
  93. package/dist/ui/ModernSelect.d.ts.map +1 -0
  94. package/dist/ui/selectSearch.d.ts +9 -0
  95. package/dist/ui/selectSearch.d.ts.map +1 -0
  96. package/dist/viewer/camera.d.ts +3 -0
  97. package/dist/viewer/camera.d.ts.map +1 -1
  98. package/dist/viewer/components/CameraRig.d.ts.map +1 -1
  99. package/dist/viewer/components/LevelMeshes.d.ts.map +1 -1
  100. package/dist/viewer/components/MapScene.d.ts.map +1 -1
  101. package/dist/viewer/components/SvgVectorLayer.d.ts +2 -2
  102. package/dist/viewer/components/SvgVectorLayer.d.ts.map +1 -1
  103. package/dist/viewer/index.css +115 -5
  104. package/dist/viewer/index.d.ts +1 -1
  105. package/dist/viewer/index.d.ts.map +1 -1
  106. package/dist/viewer/index.js +3 -3
  107. package/dist/viewer/ui/MapControls.d.ts +11 -3
  108. package/dist/viewer/ui/MapControls.d.ts.map +1 -1
  109. package/dist/viewer/ui/RuntimeChrome.d.ts.map +1 -1
  110. package/package.json +1 -1
@@ -499,18 +499,18 @@
499
499
  <g id="INTERACTIVE">
500
500
  <polygon id="store-67" class="cls-11" points="2010.68 3271.09 2010.68 3088.13 2326.29 3088.13 2326.62 3271.09 2010.68 3271.09"/>
501
501
  <rect id="store-66" class="cls-11" x="2010.68" y="2961.75" width="315.55" height="121.93"/>
502
- <path id="store-65" class="cls-11" d="M202.1,1460.23v-501.96c0-1.84,1.47-3.33,3.28-3.34l825.7-2.14c1.82,0,3.29,1.49,3.29,3.34v504.1c0,1.84-1.47,3.34-3.28,3.34H205.38c-1.81,0-3.28-1.49-3.28-3.34Z"/>
503
- <path id="store-64" class="cls-11" d="M1129.71,1198.22c0-1.84,1.49-3.34,3.34-3.34h359.47c1.84,0,3.34,1.49,3.34,3.34v223.44c0,1.84-1.49,3.34-3.34,3.34h-359.47c-1.84,0-3.34-1.49-3.34-3.34"/>
504
- <path id="store-63" class="cls-11" d="M1129.71,1685.28v-252.5c0-1.84,1.49-3.34,3.34-3.34h359.48c1.84,0,3.33,1.49,3.34,3.33l.71,252.5c0,1.85-1.49,3.35-3.34,3.35h-360.19c-1.84,0-3.34-1.49-3.34-3.34Z"/>
505
- <path id="store-62" class="cls-11" d="M1312.82,1187.1v-169.39c0-1.85,1.5-3.34,3.35-3.34l152.16.52c1.84,0,3.32,1.5,3.32,3.34v168.87c0,1.84-1.49,3.34-3.34,3.34h-152.16c-1.84,0-3.34-1.49-3.34-3.34Z"/>
506
- <rect id="store-61" class="cls-11" x="1038.81" y="952.78" width="269.57" height="237.66" rx="3.34" ry="3.34"/>
502
+ <polygon id="store-65" class="cls-11" points="202.1 1463.57 202.1 954.94 1034.36 952.79 1034.36 1463.57 202.1 1463.57"/>
503
+ <rect id="store-64" class="cls-11" x="1129.71" y="1194.88" width="366.14" height="230.12"/>
504
+ <polygon id="store-63" class="cls-11" points="1129.71 1688.61 1129.71 1429.45 1495.85 1429.45 1496.58 1688.61 1129.71 1688.61"/>
505
+ <polygon id="store-62" class="cls-11" points="1312.82 1190.44 1312.82 1014.37 1471.65 1014.91 1471.65 1190.44 1312.82 1190.44"/>
506
+ <rect id="store-61" class="cls-11" x="1038.81" y="952.78" width="269.57" height="237.66"/>
507
507
  <polygon id="store-60" class="cls-11" points="3181.67 364.6 2982.98 364.6 2982.98 131.2 3181.68 131.58 3181.67 364.6"/>
508
508
  <rect id="store-59" class="cls-11" x="2531.79" y="136.16" width="78.34" height="77.23"/>
509
509
  <polygon id="store-58" class="cls-11" points="2189.05 409.1 2189.05 541.4 2043.9 541.4 2044.28 409.1 2189.05 409.1"/>
510
510
  <rect id="store-57" class="cls-11" x="155.48" y="173.58" width="168.82" height="74.87"/>
511
511
  <polygon id="store-56" class="cls-11" points="4738.35 145.78 4738.35 267.53 4598.58 267.53 4598.67 145.78 4738.35 145.78"/>
512
512
  <rect id="store-55" class="cls-11" x="3844.81" y="146.13" width="132.74" height="102.28"/>
513
- <polygon id="store-54" class="cls-11" points="4940.7 569.9 4940.7 498.46 5012.89 498.46 5012.89 498.46 5101.82 498.48 5101.82 529.47 5101.82 529.47 5101.82 569.9 4940.7 569.9"/>
513
+ <polygon id="store-54" class="cls-11" points="4940.7 569.9 4940.7 498.46 5101.82 498.48 5101.82 569.9 4940.7 569.9"/>
514
514
  <polygon id="store-53" class="cls-11" points="4946.22 151.77 5082.97 151.22 5082.97 216.65 4946.22 216.65 4946.22 151.77"/>
515
515
  <rect id="store-52" class="cls-11" x="4975.79" y="814.66" width="122.34" height="191.07"/>
516
516
  <rect id="store-51" class="cls-11" x="3620.13" y="149.14" width="105.92" height="91"/>
@@ -31,60 +31,60 @@
31
31
  </style>
32
32
  </defs>
33
33
  <g id="INTERACTIVE">
34
- <path id="store-46" class="cls-5" d="M3297.34,1571.8l34.16-33.86c1.31-1.3,3.42-1.29,4.72.02l45.19,45.56c1.3,1.31,3.41,1.32,4.72.02l19.6-19.43c1.31-1.3,3.42-1.29,4.72.02l51.37,51.77c1.3,1.31,1.29,3.42-.02,4.72l-58.47,57.99c-1.31,1.3-3.42,1.29-4.72-.02l-101.28-102.07c-1.3-1.31-1.29-3.42.02-4.72Z"/>
35
- <path id="store-45" class="cls-5" d="M3425.6,1568.37l18.8-18.63c1.31-1.3,1.32-3.41.02-4.72l-50.26-50.67c-1.3-1.31-1.29-3.42.02-4.72l39.52-39.18c1.31-1.3,3.42-1.29,4.72.02l77.62,78.3c.61.62.96,1.46.97,2.33l.17,32.5c0,.89-.35,1.75-.98,2.38l-46.77,46.54c-1.31,1.3-3.42,1.29-4.72-.02l-39.12-39.42c-1.3-1.31-1.29-3.42.02-4.72Z"/>
36
- <path id="store-44" class="cls-5" d="M3363.74,1505.97l15.92-15.82c1.31-1.3,3.44-1.29,4.73.03l53.76,54.8c1.29,1.31,1.27,3.41-.03,4.71l-15.66,15.52c-1.31,1.3-3.42,1.29-4.72-.02l-54.03-54.5c-1.3-1.31-1.29-3.42.02-4.71Z"/>
37
- <path id="store-43" class="cls-5" d="M3339.4,1530.11l16.45-16.31c1.31-1.3,3.42-1.29,4.72.02l42.05,42.42c1.3,1.31,1.29,3.42-.02,4.72l-16.44,16.3c-1.31,1.3-3.42,1.29-4.72-.02l-42.06-42.41c-1.3-1.31-1.29-3.42.02-4.72Z"/>
38
- <path id="store-42" class="cls-5" d="M2847.44,2342.52v-255.05c0-1.84,1.49-3.34,3.34-3.34h203.62c1.5,0,2.82,1.01,3.22,2.46l43.3,158.85c.35,1.27-.09,2.63-1.11,3.46l-3.06,2.5c-.06.05-.11.09-.17.14l-5.5,5.13c-.05.05-.11.1-.16.16l-5.15,5.49c-.05.05-.1.11-.15.17l-4.78,5.82c-.05.06-.09.12-.13.18l-4.38,6.12c-.04.06-.08.12-.12.18l-3.96,6.39c-.04.06-.08.13-.11.19l-3.53,6.64c-.03.07-.07.13-.1.2l-3.09,6.86c-.03.07-.06.14-.08.2l-2.62,7.05c-.03.07-.05.14-.07.21l-2.15,7.21c-.02.07-.04.14-.06.21l-1.67,7.34c-.02.07-.03.14-.04.22l-1.18,7.43c-.01.07-.02.15-.03.22l-.69,7.49c0,.07-.01.15-.01.22l-.19,7.52c0,.07,0,.15,0,.22l.07,1.76c.08,1.89-1.44,3.47-3.33,3.47h-202.62c-1.84,0-3.34-1.49-3.34-3.34Z"/>
39
- <path id="store-41-1-lf" class="cls-5" d="M3133.02,2186.35l16.27,59.69c.4,1.45,1.71,2.46,3.22,2.46h15.62c1.5,0,2.81,1,3.21,2.44l18.99,68.24c.4,1.44,1.72,2.44,3.21,2.44h58.27c1.84,0,3.34-1.49,3.34-3.34v-132.81c0-1.84-1.49-3.34-3.34-3.34h-115.58c-2.2,0-3.8,2.09-3.22,4.21Z"/>
40
- <path id="store-41" class="cls-5" d="M3255.16,2174.35v-85.27c0-1.84-1.49-3.34-3.34-3.34h-141.86c-2.2,0-3.8,2.09-3.22,4.21l23.25,85.27c.4,1.45,1.71,2.46,3.22,2.46h118.61c1.84,0,3.34-1.49,3.34-3.34Z"/>
41
- <path id="store-40" class="cls-5" d="M3122.62,2065.62v-37.42c0-.88-.35-1.72-.97-2.35l-20.44-20.62c-.62-.62-.97-1.47-.97-2.35v-63.98c0-1.84,1.49-3.34,3.34-3.34h101.72c1.84,0,3.34,1.49,3.34,3.34v126.71c0,1.84-1.49,3.34-3.34,3.34h-79.36c-1.84,0-3.34-1.49-3.34-3.34Z"/>
42
- <path id="store-39" class="cls-5" d="M2864.62,1916.67v-119.48c0-1.46,1.18-2.64,2.64-2.64h107.73c1.42-.01,2.59,1.11,2.64,2.53v.35c.01.06.02.12.03.18l.53,4.99c0,.06.02.12.03.18l.88,4.94c.01.06.02.12.04.18l1.23,4.87c.02.06.03.12.05.18l1.57,4.77c.02.06.04.12.06.18l1.9,4.65c.02.06.05.11.08.17l2.22,4.51c.03.06.06.11.09.16l2.54,4.33c.03.05.06.11.1.16l2.83,4.14c.06.08.12.16.19.24l3.11,3.58.56.66c.89,1.05.82,2.61-.16,3.58l-40.04,39.69c-.5.5-.78,1.17-.78,1.87v31.02c0,1.46-1.18,2.64-2.64,2.64h-84.77c-1.46,0-2.64-1.18-2.64-2.64Z"/>
43
- <path id="store-38" class="cls-5" d="M2864.62,2019.56v-80.51c0-1.84,1.49-3.34,3.34-3.34h177.13c1.84,0,3.34,1.49,3.34,3.33v34.64c0,1.84-1.49,3.34-3.34,3.34h-87.54c-1.84,0-3.34,1.49-3.34,3.34v39.2c0,1.84-1.49,3.34-3.34,3.34h-82.92c-1.84,0-3.34-1.49-3.34-3.34Z"/>
44
- <path id="store-37" class="cls-5" d="M2958.67,2019.56v-34.76c0-1.84,1.49-3.34,3.34-3.34h83.09c1.84,0,3.34,1.49,3.34,3.34v14.89c0,.89-.36,1.74-.99,2.37l-20.04,19.86c-.62.62-1.47.97-2.35.97h-63.05c-1.84,0-3.34-1.49-3.34-3.34Z"/>
45
- <path id="store-36" class="cls-5" d="M2946.65,1543.58v-4.61c0-.88-.35-1.72-.96-2.34l-45.02-45.61c-1.29-1.3-1.28-3.4.01-4.7l89.84-90.22c1.3-1.31,3.42-1.31,4.72,0l43.8,43.81c.63.63,1.47.98,2.36.98h99.92c2.98,0,4.46,3.61,2.35,5.7l-146.1,144.95c-1.31,1.3-3.42,1.29-4.72-.02l-45.23-45.59c-.62-.62-.97-1.47-.97-2.35Z"/>
46
- <path id="store-35" class="cls-5" d="M3229.88,1371.4l18.8-18.73c1.3-1.3,3.42-1.3,4.72,0l86.27,86.55c.63.63.98,1.49.97,2.38l-.1,13.7c0,.88-.36,1.72-.99,2.34l-11.92,11.83c-1.31,1.3-3.41,1.29-4.71-.01l-93.05-93.35c-1.3-1.3-1.3-3.42,0-4.72Z"/>
47
- <path id="store-34" class="cls-5" d="M3169.93,1509.73l28.53-28.31c1.31-1.3,1.32-3.41.02-4.72l-29.9-30.08c-1.3-1.31-1.29-3.42.02-4.72l57.81-57.31c1.3-1.29,3.4-1.29,4.7,0l88.62,88c1.31,1.3,1.31,3.43,0,4.73l-91.67,90.98c-1.31,1.3-3.42,1.29-4.72-.02l-53.41-53.84c-1.3-1.31-1.29-3.42.02-4.72Z"/>
48
- <path id="store-33" class="cls-5" d="M3120.36,1845.41c-.34-.34-.8-.54-1.29-.54h-18.12s0,0,0,0l2-1.91s.06-.06.09-.09l3.21-3.51s.05-.06.08-.09l2.97-3.71s.05-.06.07-.1l2.71-3.91s.05-.07.07-.1l2.44-4.08s.04-.07.06-.11l2.16-4.24s.04-.07.05-.11l1.87-4.37s.03-.08.04-.11l1.57-4.49s.03-.08.04-.12l1.26-4.58s.02-.08.03-.12l.95-4.66s.02-.08.02-.12h0c.2-1.49,2.02-2.1,3.08-1.03l52.72,53.19c.7.71.7,1.86-.01,2.56l-21.17,20.99c-.71.7-1.86.7-2.56-.01l-34.33-34.63Z"/>
49
- <path id="store-32" class="cls-5" d="M3123.58,1794.85v-.22s0-4.69,0-4.69c0-.07,0-.15,0-.22l-.31-4.64c0-.08-.01-.15-.02-.23l-.63-4.61c-.01-.07-.02-.15-.04-.22l-.94-4.56c-.02-.07-.03-.15-.05-.22l-1.24-4.48c-.02-.07-.04-.15-.07-.22l-1.54-4.39c-.02-.07-.05-.14-.08-.21l-1.83-4.27c-.03-.07-.06-.14-.1-.21l-2.12-4.14c-.03-.07-.07-.13-.11-.2l-.17-.29c-.79-1.31-.58-3,.51-4.08l74.84-74.5c1.3-1.3,3.42-1.29,4.72,0l102.36,102.65c1.3,1.31,1.3,3.42-.01,4.72l-89.33,88.82c-1.31,1.3-3.42,1.29-4.72-.01l-79.11-79.62Z"/>
50
- <path id="store-31" class="cls-5" d="M3256.55,1344.81l9.5-9.47c1.3-1.3,3.41-1.3,4.71,0l17.33,17.3,51.84,51.95c.63.63.98,1.49.97,2.38l-.15,18.99c-.02,2.96-3.61,4.43-5.7,2.33l-78.52-78.77c-1.3-1.3-1.3-3.42,0-4.72Z"/>
51
- <path id="store-30" class="cls-5" d="M3102.17,1507.81l58.53-58.07c1.31-1.3,3.42-1.29,4.71.02l26.77,26.93c1.3,1.31,1.29,3.42-.02,4.72l-28.52,28.31c-1.31,1.3-1.32,3.41-.02,4.72l56.55,57c1.3,1.31,1.29,3.42-.02,4.72l-25.29,25.1c-1.31,1.3-3.42,1.29-4.72-.02l-87.99-88.69c-1.3-1.31-1.29-3.42.02-4.72Z"/>
52
- <path id="store-29" class="cls-5" d="M2864.62,1739.71v-143.94c0-1.84,1.49-3.34,3.34-3.34h102.79c.89,0,1.74.36,2.37.99l18.86,19.02c1.3,1.31,3.41,1.32,4.72.02l97.59-96.82c1.31-1.3,3.42-1.29,4.72.02l87.99,88.69c1.3,1.31,1.29,3.42-.02,4.72l-112.28,111.43c-.86.86-2.13,1.18-3.29.83l-1.56-.46c-.07-.02-.15-.04-.22-.06l-4.76-1.05c-.08-.02-.15-.03-.23-.04l-4.82-.72c-.08-.01-.15-.02-.23-.03l-4.86-.39c-.08,0-.15,0-.23-.01l-4.87-.05c-.08,0-.15,0-.23,0l-4.86.29c-.08,0-.15.01-.23.02l-4.83.62c-.08,0-.15.02-.23.04l-4.78.95c-.08.02-.15.03-.23.05l-4.7,1.28c-.07.02-.15.04-.22.07l-4.6,1.6c-.07.03-.14.05-.21.08l-4.48,1.92c-.07.03-.14.06-.21.1l-4.34,2.22c-.07.04-.14.07-.2.11l-4.17,2.52c-.07.04-.13.08-.19.13l-3.99,2.8c-.06.04-.12.09-.18.14l-3.79,3.07c-.06.05-.12.1-.17.15l-3.57,3.32c-.06.05-.11.11-.16.16l-1.71,1.82c-.63.67-1.51,1.06-2.44,1.06h-126.94c-1.84,0-3.34-1.49-3.34-3.34Z"/>
53
- <path id="store-28" class="cls-5" d="M3100.25,1927.79v-75.13c0-1.84,1.49-3.34,3.34-3.34h13c.89,0,1.74.36,2.37.99l34.63,34.94c1.3,1.31,3.41,1.32,4.71.02l22.24-21.99c1.31-1.29,3.41-1.28,4.71.02l22.43,22.47c.62.63.97,1.47.97,2.36v39.67c0,1.84-1.49,3.34-3.34,3.34h-101.72c-1.84,0-3.34-1.49-3.34-3.34Z"/>
54
- <rect id="store-27" class="cls-5" x="2959.12" y="1894.6" width="89.31" height="24.71" rx="2.64" ry="2.64"/>
55
- <path id="store-26" class="cls-5" d="M2959.12,1887.51h0c0-.7.28-1.38.78-1.87l38.68-38.34c.99-.98,2.57-1.02,3.61-.1l.68.61,3.49,3.09c.07.06.15.12.22.18l4.14,2.93c.05.04.1.07.16.1l4.35,2.63c.05.03.11.06.16.09l4.53,2.32c.06.03.11.06.17.08l4.68,1.99c.06.02.12.05.18.07l4.81,1.65c.06.02.12.04.18.05l4.92,1.3c.06.02.12.03.18.04l4.99.95c.06.01.12.02.19.03l5.05.59c.06,0,.13.01.19.02l.45.02c1.41.06,2.52,1.22,2.52,2.63v18.94c0,1.46-1.18,2.64-2.64,2.64h-84.03c-1.46,0-2.64-1.18-2.64-2.64Z"/>
56
- <path id="store-25" class="cls-5" d="M3905.64,1495.81h40.6c1.84,0,3.34,1.49,3.34,3.34v25.49c0,1.84-1.49,3.33-3.33,3.34l-40.6.07c-1.84,0-3.34-1.49-3.34-3.34v-25.56c0-1.84,1.49-3.34,3.34-3.34Z"/>
57
- <rect id="store-24" class="cls-5" x="3765.09" y="1400.64" width="42.96" height="145.53" rx="3.34" ry="3.34"/>
58
- <rect id="store-23" class="cls-5" x="3718.34" y="1400.64" width="42.3" height="145.53" rx="3.34" ry="3.34"/>
59
- <rect id="store-22" class="cls-5" x="3391.96" y="1275.69" width="23.6" height="73.35" rx="3.34" ry="3.34"/>
60
- <rect id="store-21" class="cls-5" x="3902.31" y="1463.86" width="47.27" height="27.5" rx="3.34" ry="3.34"/>
61
- <rect id="store-20" class="cls-5" x="3902.31" y="1421.4" width="47.27" height="38.02" rx="3.34" ry="3.34"/>
62
- <path id="store-19" class="cls-5" d="M3812.71,1345.7v-131.93c0-1.84,1.49-3.34,3.34-3.34h130.2c1.84,0,3.34,1.49,3.34,3.34v115.66c0,1.85-1.5,3.34-3.35,3.34l-41.7-.18c-.88,0-1.73.34-2.36.97l-14.64,14.52c-.62.62-1.47.97-2.35.97h-69.13c-1.84,0-3.34-1.49-3.34-3.34Z"/>
63
- <rect id="store-18" class="cls-5" x="3711.8" y="1210.44" width="96.46" height="138.6" rx="3.34" ry="3.34"/>
64
- <rect id="store-17" class="cls-5" x="3578.96" y="1210.44" width="65.29" height="138.6" rx="3.34" ry="3.34"/>
65
- <rect id="store-16" class="cls-5" x="3648.69" y="1210.44" width="19.94" height="138.6" rx="3.34" ry="3.34"/>
66
- <rect id="store-15" class="cls-5" x="3505.72" y="1210.44" width="68.8" height="138.6" rx="3.34" ry="3.34"/>
67
- <path id="store-14" class="cls-5" d="M3420.01,1345.7v-71.13c0-1.84-1.49-3.34-3.34-3.34h-21.38c-1.84,0-3.34-1.49-3.34-3.34v-23.33c0-.91-.37-1.77-1.02-2.4l-13.52-13.04c-1.34-1.3-1.36-3.44-.04-4.76l25.78-25.69c1.24-1.23,3.22-1.3,4.54-.16l12.79,11.1c.61.53,1.38.82,2.19.82h75.26c1.84,0,3.34,1.49,3.34,3.34v131.93c0,1.84-1.49,3.34-3.34,3.34h-74.59c-1.84,0-3.34-1.49-3.34-3.34Z"/>
68
- <rect id="store-13" class="cls-5" x="3673.09" y="1210.44" width="34.26" height="138.6" rx="3.34" ry="3.34"/>
69
- <path id="store-12" class="cls-5" d="M3812.5,1464.64v-55.41c0-2.96,3.58-4.46,5.68-2.37l38.17,37.82c.63.63.99,1.48.99,2.37v17.6c0,1.84-1.49,3.34-3.34,3.34h-38.17c-1.84,0-3.34-1.49-3.34-3.34Z"/>
70
- <path id="store-11" class="cls-5" d="M3532.25,1542.85l-.25-138.86c0-1.84,1.49-3.34,3.34-3.34h82.28c1.84,0,3.33,1.49,3.34,3.33l.25,138.86c0,1.84-1.49,3.34-3.34,3.34h-82.28c-1.84,0-3.33-1.49-3.34-3.33Z"/>
71
- <path id="store-10" class="cls-5" d="M3625.4,1542.84v-42.42c0-1.84,1.49-3.34,3.34-3.34h40.17c1.84,0,3.34-1.49,3.34-3.34v-89.77c0-1.84,1.49-3.34,3.34-3.34h34.98c1.84,0,3.34,1.49,3.34,3.34v138.86c0,1.84-1.49,3.34-3.34,3.34h-81.82c-1.84,0-3.34-1.49-3.34-3.34Z"/>
72
- <path id="store-9" class="cls-5" d="M3368.55,1325.36v-26.18c0-.88.35-1.73.98-2.36l12.29-12.29c2.1-2.1,5.69-.61,5.69,2.36v50.86c0,2.98-3.61,4.46-5.7,2.35l-12.29-12.39c-.62-.62-.97-1.47-.97-2.35Z"/>
73
- <rect id="store-8" class="cls-5" x="3812.5" y="1472.42" width="44.84" height="73.76" rx="3.34" ry="3.34"/>
74
- <rect id="store-7" class="cls-5" x="3625.4" y="1400.64" width="42.39" height="92" rx="3.34" ry="3.34"/>
75
- <path id="store-6" class="cls-5" d="M3485.25,1490.02v-86.04c0-1.84,1.49-3.34,3.34-3.34h25.73c1.85,0,3.35,1.5,3.34,3.35l-.58,111.41c-.02,2.97-3.61,4.44-5.7,2.33l-25.15-25.37c-.62-.62-.97-1.47-.97-2.35Z"/>
76
- <path id="store-5" class="cls-5" d="M3441.6,1442.62l33.52-33.23c2.11-2.09,5.68-.6,5.68,2.37v67.04c0,2.98-3.61,4.46-5.7,2.35l-33.52-33.81c-1.3-1.31-1.29-3.42.02-4.72Z"/>
34
+ <polygon id="store-46" class="cls-5" points="3294.97 1574.15 3333.87 1535.59 3383.76 1585.89 3408.1 1561.77 3464.16 1618.27 3400.95 1680.96 3294.97 1574.15"/>
35
+ <polygon id="store-45" class="cls-5" points="3423.23 1570.72 3446.76 1547.39 3391.81 1491.98 3436.07 1448.1 3517 1529.74 3517.19 1565 3467.05 1614.88 3423.23 1570.72"/>
36
+ <polygon id="store-44" class="cls-5" points="3361.38 1508.32 3382.04 1487.79 3440.48 1547.35 3420.1 1567.56 3361.38 1508.32"/>
37
+ <polygon id="store-43" class="cls-5" points="3337.03 1532.46 3358.22 1511.45 3404.97 1558.61 3383.79 1579.6 3337.03 1532.46"/>
38
+ <polygon id="store-42" class="cls-5" points="2847.44 2345.86 2847.44 2084.13 3056.95 2084.13 3101.49 2247.53 3096.67 2251.47 3091 2256.75 3085.7 2262.4 3080.79 2268.38 3076.28 2274.68 3072.2 2281.27 3068.56 2288.1 3065.39 2295.17 3062.69 2302.43 3060.47 2309.85 3058.75 2317.4 3057.54 2325.05 3056.83 2332.76 3056.64 2340.51 3056.86 2345.86 2847.44 2345.86"/>
39
+ <polygon id="store-41-1-lf" class="cls-5" points="3131.87 2182.14 3149.97 2248.5 3170.67 2248.5 3191.02 2321.61 3255.16 2321.61 3255.16 2182.14 3131.87 2182.14"/>
40
+ <polygon id="store-41" class="cls-5" points="3255.16 2177.69 3255.16 2085.75 3105.6 2085.75 3130.66 2177.69 3255.16 2177.69"/>
41
+ <polygon id="store-40" class="cls-5" points="3122.62 2068.95 3122.62 2026.82 3100.25 2004.26 3100.25 1935.57 3208.65 1935.57 3208.65 2068.95 3122.62 2068.95"/>
42
+ <path id="store-39" class="cls-5" d="M2864.62,1919.31v-124.76s0,0,0,0h112.91s0-.01,0-.01l.1,2.89c0,.06,0,.12.01.18l.54,5.09h0s.91,5.13.91,5.13h0s1.27,5.05,1.27,5.05h0s1.63,4.95,1.63,4.95h0s1.97,4.82,1.97,4.82h0s2.31,4.67,2.31,4.67h0s2.63,4.5,2.63,4.5h0s2.97,4.34,2.97,4.34h0s3.21,3.7,3.21,3.7l2.13,2.52s0,0,0,0l-42.55,42.18s0,0,0,0v34.75s0,0,0,0h-90.05s0,0,0,0Z"/>
43
+ <polygon id="store-38" class="cls-5" points="2864.62 2022.89 2864.62 1935.71 3048.43 1935.71 3048.43 1977.02 2954.22 1977.02 2954.22 2022.89 2864.62 2022.89"/>
44
+ <polygon id="store-37" class="cls-5" points="2958.67 2022.89 2958.67 1981.47 3048.43 1981.47 3048.43 2001.08 3026.43 2022.89 2958.67 2022.89"/>
45
+ <polygon id="store-36" class="cls-5" points="2946.65 1544.95 2946.65 1537.6 2898.35 1488.67 2992.88 1393.73 3040.02 1440.88 3149.42 1440.88 2995.2 1593.89 2946.65 1544.95"/>
46
+ <polygon id="store-35" class="cls-5" points="3227.52 1373.75 3251.04 1350.31 3340.65 1440.21 3340.53 1456.68 3325.27 1471.82 3227.52 1373.75"/>
47
+ <polygon id="store-34" class="cls-5" points="3167.57 1512.08 3200.83 1479.07 3166.22 1444.26 3228.75 1382.26 3322.1 1474.96 3225.68 1570.65 3167.57 1512.08"/>
48
+ <path id="store-33" class="cls-5" d="M3119.83,1844.87h-18.87s0,0,0,0l2.05-1.96,3.29-3.6,3.04-3.81,2.78-4.01,2.5-4.18,2.21-4.34,1.92-4.48,1.61-4.6,1.29-4.7.96-4.72s.02-.08.02-.12l.49-3.65,56.59,57.09-23.74,23.54-36.13-36.45Z"/>
49
+ <path id="store-32" class="cls-5" d="M3123.58,1794.85v-.22s0-4.8,0-4.8l-.33-4.87-.66-4.83-.98-4.78-1.3-4.7-1.62-4.6-1.92-4.48-2.17-4.24c-.03-.07-.07-.13-.11-.2l-1.52-2.53,79.05-78.69,107.07,107.38-94.07,93.53-81.46-81.99Z"/>
50
+ <polygon id="store-31" class="cls-5" points="3254.19 1347.17 3268.41 1332.99 3288.09 1352.64 3340.92 1405.58 3340.7 1433.95 3254.19 1347.17"/>
51
+ <polygon id="store-30" class="cls-5" points="3099.8 1510.16 3163.07 1447.39 3194.54 1479.05 3161.28 1512.05 3222.52 1573.78 3192.49 1603.58 3099.8 1510.16"/>
52
+ <polygon id="store-29" class="cls-5" points="2864.62 1743.04 2864.62 1592.43 2972.13 1592.43 2994.32 1614.81 3096.64 1513.29 3189.34 1606.72 3073.29 1721.89 3069.73 1720.84 3064.74 1719.73 3059.7 1718.98 3054.61 1718.57 3049.51 1718.52 3044.41 1718.82 3039.35 1719.47 3034.34 1720.46 3029.42 1721.81 3024.6 1723.49 3019.91 1725.49 3015.37 1727.82 3011 1730.45 3006.82 1733.39 3002.86 1736.6 2999.12 1740.08 2996.35 1743.04 2864.62 1743.04"/>
53
+ <polygon id="store-28" class="cls-5" points="3100.25 1931.12 3100.25 1849.32 3117.97 1849.32 3155.93 1887.61 3182.9 1860.94 3208.65 1886.74 3208.65 1931.12 3100.25 1931.12"/>
54
+ <rect id="store-27" class="cls-5" x="2959.12" y="1894.6" width="89.31" height="24.71"/>
55
+ <path id="store-26" class="cls-5" d="M2959.12,1890.15v-3.74s41.22-40.86,41.22-40.86l2.53,2.25,3.6,3.19,4.34,3.07,4.51,2.73,4.69,2.4,4.85,2.06,4.99,1.71,5.1,1.35,5.18.98,5.15.6c.06,0,.13.01.19.02l2.97.13v24.1h-89.31Z"/>
56
+ <polygon id="store-25" class="cls-5" points="3902.31 1495.81 3949.58 1495.81 3949.58 1527.97 3902.31 1528.05 3902.31 1495.81"/>
57
+ <rect id="store-24" class="cls-5" x="3765.09" y="1400.64" width="42.96" height="145.53"/>
58
+ <rect id="store-23" class="cls-5" x="3718.34" y="1400.64" width="42.3" height="145.53"/>
59
+ <rect id="store-22" class="cls-5" x="3391.96" y="1275.69" width="23.6" height="73.35"/>
60
+ <rect id="store-21" class="cls-5" x="3902.31" y="1463.86" width="47.27" height="27.5"/>
61
+ <rect id="store-20" class="cls-5" x="3902.31" y="1421.4" width="47.27" height="38.02"/>
62
+ <polygon id="store-19" class="cls-5" points="3812.71 1349.04 3812.71 1210.44 3949.58 1210.44 3949.58 1332.78 3903.15 1332.58 3886.55 1349.04 3812.71 1349.04"/>
63
+ <rect id="store-18" class="cls-5" x="3711.8" y="1210.44" width="96.46" height="138.6"/>
64
+ <rect id="store-17" class="cls-5" x="3578.96" y="1210.44" width="65.29" height="138.6"/>
65
+ <rect id="store-16" class="cls-5" x="3648.69" y="1210.44" width="19.94" height="138.6"/>
66
+ <rect id="store-15" class="cls-5" x="3505.72" y="1210.44" width="68.8" height="138.6"/>
67
+ <polygon id="store-14" class="cls-5" points="3420.01 1349.04 3420.01 1271.24 3391.96 1271.24 3391.96 1243.16 3374.97 1226.78 3405.35 1196.49 3421.42 1210.44 3501.27 1210.44 3501.27 1349.04 3420.01 1349.04"/>
68
+ <rect id="store-13" class="cls-5" x="3673.09" y="1210.44" width="34.26" height="138.6"/>
69
+ <polygon id="store-12" class="cls-5" points="3812.5 1467.97 3812.5 1401.22 3857.34 1445.65 3857.34 1467.97 3812.5 1467.97"/>
70
+ <polygon id="store-11" class="cls-5" points="3532.26 1546.18 3532 1400.64 3620.96 1400.64 3621.21 1546.18 3532.26 1546.18"/>
71
+ <polygon id="store-10" class="cls-5" points="3625.4 1546.18 3625.4 1497.09 3672.24 1497.09 3672.24 1400.64 3713.89 1400.64 3713.89 1546.18 3625.4 1546.18"/>
72
+ <polygon id="store-9" class="cls-5" points="3368.55 1326.73 3368.55 1297.8 3387.51 1278.83 3387.51 1345.86 3368.55 1326.73"/>
73
+ <rect id="store-8" class="cls-5" x="3812.5" y="1472.42" width="44.84" height="73.76"/>
74
+ <rect id="store-7" class="cls-5" x="3625.4" y="1400.64" width="42.39" height="92"/>
75
+ <polygon id="store-6" class="cls-5" points="3485.25 1491.39 3485.25 1400.64 3517.67 1400.64 3517.03 1523.45 3485.25 1491.39"/>
76
+ <polygon id="store-5" class="cls-5" points="3439.23 1444.97 3480.8 1403.76 3480.8 1486.9 3439.23 1444.97"/>
77
77
  <rect id="store-4" class="cls-5" x="3301.44" y="1520.56" width="11.14" height="11.14" transform="translate(-116.0601 2770.3111) rotate(-44.7472)"/>
78
78
  <rect id="store-3" class="cls-5" x="3531.24" y="1369.23" width="14.32" height="11.05"/>
79
- <path id="store-2" class="cls-5" d="M3230.76,1637.36l31.01-30.34c1.31-1.28,3.4-1.27,4.7.03l101.36,101.78c1.3,1.31,1.3,3.42-.01,4.72l-31.19,30.94c-1.31,1.3-3.42,1.29-4.72-.02l-101.17-102.37c-1.3-1.31-1.28-3.44.04-4.73Z"/>
80
- <path id="store-1" class="cls-5" d="M3269.68,1599.23l19.77-19.6c1.31-1.3,3.42-1.29,4.71.02l101.22,101.85c1.3,1.31,1.29,3.42-.02,4.72l-19.66,19.5c-1.31,1.3-3.41,1.29-4.71-.01l-101.33-101.75c-1.3-1.31-1.3-3.42.02-4.72Z"/>
81
- <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"/>
82
- <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"/>
83
- <path id="store-71" class="cls-5" d="M2846.54,2657.78l.9-292.28c0-1.84,1.49-3.34,3.34-3.34h205.44c1.57,0,2.93,1.09,3.26,2.63l.73,3.37c.02.08.04.15.06.22l2.2,7.58c.02.07.05.15.07.22l2.73,7.41c.03.07.06.14.09.21l3.24,7.2c.03.07.07.14.1.21l3.73,6.96c.04.07.08.14.12.2l4.2,6.68c.04.07.08.13.13.19l4.66,6.38c.05.06.09.12.14.18l5.09,6.04c.05.06.1.12.16.17l5.49,5.67c.05.06.11.11.17.16l5.88,5.27c.06.05.12.1.18.15l.86.67c1.67,1.3,1.72,3.81.11,5.17l-56.96,48.37c-.75.63-1.18,1.56-1.18,2.54l-.89,171.77c0,1.84-1.49,3.34-3.34,3.34l-187.35-.03c-1.84,0-3.34-1.49-3.34-3.34Z"/>
84
- <path id="store-70" class="cls-5" d="M3047.08,2485.55l59.05-50.14c.6-.51,1.37-.79,2.16-.79h143.54c1.84,0,3.34,1.49,3.34,3.34l-.9,217.35c0,1.83-1.47,3.31-3.3,3.34l-202.58,2.43c-1.86.02-3.38-1.48-3.38-3.34l.9-169.65c0-.98.43-1.91,1.18-2.54Z"/>
85
- <path id="store-69" class="cls-5" d="M2914.62,1122.26l207.59-206.92c1.3-1.3,3.41-1.3,4.71,0l274.19,274.38c1.3,1.3,1.3,3.42,0,4.72l-207.59,206.92c-1.3,1.3-3.41,1.3-4.71,0l-274.19-274.38c-1.3-1.3-1.3-3.42,0-4.72Z"/>
86
- <path id="store-68" class="cls-5" d="M2540.31,1911.61l-2.25-302.68c-.01-1.85,1.49-3.36,3.34-3.36l303.52.44c1.84,0,3.33,1.5,3.33,3.34v303.64c0,1.85-1.5,3.34-3.35,3.34l-301.27-1.4c-1.83,0-3.31-1.48-3.32-3.31Z"/>
87
- <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"/>
79
+ <polygon id="store-2" class="cls-5" points="3228.37 1639.7 3264.14 1604.7 3370.18 1711.19 3334.24 1746.84 3228.37 1639.7"/>
80
+ <polygon id="store-1" class="cls-5" points="3267.3 1601.58 3291.82 1577.28 3397.74 1683.86 3373.34 1708.06 3267.3 1601.58"/>
81
+ <polygon id="store-73-lf" class="cls-5" points="3954.03 1286.92 3954.03 1611.71 3954.03 1611.71 4438.96 1611.71 4438.96 1611.71 4439.24 1454.71 4439.24 1454.71 4597.55 1293.87 4597.56 1293.87 4778.52 1293.75 4778.53 1293.74 4778.53 922.53 4778.52 922.52 4375.26 922.52 4375.26 922.53 4375.26 1065.49 4375.25 1065.5 4306.02 1066.25 4306.02 1066.25 4306.02 1286.92 4306.01 1286.92 3954.03 1286.92 3954.03 1286.92"/>
82
+ <polygon id="store-72" class="cls-5" points="4299.77 1280.58 4298.1 1063.99 4192.49 1065.15 4192.49 813.24 3919.38 813.56 3919.38 1113.77 3972.23 1113.77 3972.23 1282.07 4299.77 1280.58"/>
83
+ <path id="store-71" class="cls-5" d="M2846.54,2661.14l.9-298.98h211.46l1.33,6.11,2.27,7.8,2.81,7.63,3.33,7.41,3.84,7.17,4.32,6.88,4.79,6.56,5.24,6.21,5.66,5.84,6.05,5.43,4.19,3.27-60.09,51.02c-.75.63-1.18,1.56-1.18,2.54l-.89,175.11h-194.02Z"/>
84
+ <path id="store-70" class="cls-5" d="M3047.08,2485.55l59.98-50.93h148.02l-.82,226.46h-209.25l.9-172.98c0-.98.43-1.91,1.18-2.54Z"/>
85
+ <polygon id="store-69" class="cls-5" points="2912.25 1124.61 3124.56 912.98 3403.47 1192.08 3191.16 1403.72 2912.25 1124.61"/>
86
+ <polygon id="store-68" class="cls-5" points="2540.33 1914.91 2538.03 1605.57 2848.25 1606.02 2848.25 1916.34 2540.33 1914.91"/>
87
+ <polygon id="store-72-2" data-name="store-72" class="cls-5" points="3912.9 1112.09 3913.38 813.04 3913.38 813.03 3712.62 813.27 3712.62 813.28 3712.61 893.02 3712.61 893.02 3647.7 893.02 3647.69 893.03 3648.24 1113.13 3648.24 1113.14 3912.89 1112.09 3912.9 1112.09"/>
88
88
  </g>
89
89
  <g id="KIOSK">
90
90
  <rect id="kiosk-1" class="cls-4" x="3120.55" y="2241.07" width="11.56" height="11.56" transform="translate(-432.21 777.48) rotate(-13.27)"/>
@@ -27,78 +27,78 @@
27
27
  </style>
28
28
  </defs>
29
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"/>
30
+ <path id="store-2405-1-uf" class="cls-5" d="M2849.43,2399.64v-336.46s176.56,0,176.56,0l51.63,188.44c-60.15,26.2-71.47,76.75-40.78,148.24l-187.41-.22Z"/>
31
+ <polygon id="store-2110" class="cls-5" points="3478.46 1259.56 3478.46 1210.82 3523.3 1210.82 3523.31 1259.62 3478.46 1259.56"/>
32
+ <rect id="store-spensers" class="cls-5" x="3664.68" y="1210.82" width="26.13" height="122"/>
33
+ <polygon id="store-dummy-58" class="cls-5" points="3108.57 2091.99 3108.57 2080.1 3252.34 2080.22 3252.34 2173.51 3131.48 2173.51 3108.57 2091.99"/>
34
+ <polygon id="store-2404" class="cls-5" points="3112.29 2017.95 3206.38 2017.95 3206.38 2059.21 3112.29 2059.34 3112.29 2017.95"/>
35
+ <rect id="store-2402" class="cls-5" x="3112.29" y="1984.37" width="94.09" height="29.19"/>
36
+ <rect id="store-2400" class="cls-5" x="3112.29" y="1926.36" width="94.09" height="53.61"/>
37
+ <polygon id="store-2228" class="cls-5" points="3412.12 1496.64 3439.77 1468.98 3481.17 1510.38 3475.02 1559.54 3412.12 1496.64"/>
38
+ <polygon id="store-2224" class="cls-5" points="3478.96 1563.48 3485.8 1508.8 3442.88 1465.88 3489.12 1419.64 3568.99 1419.64 3568.98 1541.28 3532.25 1541.28 3494.5 1579.02 3478.96 1563.48"/>
39
+ <rect id="store-2213" class="cls-5" x="3642.08" y="1419.64" width="18.5" height="56.66"/>
40
+ <polygon id="store-2214" class="cls-5" points="3642.19 1541.28 3642.08 1480.69 3664.97 1480.69 3664.97 1419.64 3706.37 1419.64 3706.5 1541.3 3642.19 1541.28"/>
41
+ <polygon id="store-2210" class="cls-5" points="3756.43 1541.28 3756.56 1419.64 3782.69 1419.64 3782.56 1541.28 3756.43 1541.28"/>
42
+ <polygon id="store-2208" class="cls-5" points="3786.95 1541.28 3787.08 1419.64 3814.44 1419.64 3814.31 1541.28 3786.95 1541.28"/>
43
+ <polygon id="store-2206" class="cls-5" points="3818.7 1541.28 3818.83 1419.64 3847.38 1419.67 3846.98 1541.28 3818.7 1541.28"/>
44
+ <polygon id="store-2204" class="cls-5" points="3938.56 1524.65 3938.56 1419.64 3851.77 1419.67 3851.52 1524.68 3938.56 1524.65"/>
45
+ <rect id="store-shoe-dept" class="cls-5" x="3695.21" y="1210.82" width="227.91" height="122"/>
46
+ <rect id="store-2122" class="cls-5" x="3637.5" y="1210.82" width="22.79" height="122"/>
47
+ <rect id="store-2116" class="cls-5" x="3527.7" y="1276.16" width="22.69" height="56.66"/>
48
+ <polygon id="store-2104" class="cls-5" points="3390.22 1332.82 3390.22 1298.72 3345.03 1298.72 3345.03 1286.84 3434.67 1286.84 3434.67 1332.82 3390.22 1332.82"/>
49
+ <polygon id="store-2102" class="cls-5" points="3349.39 1303.12 3385.82 1303.12 3385.82 1330.61 3349.39 1303.12"/>
50
+ <polygon id="store-2030" class="cls-5" points="3218.64 1493.24 3247.93 1464.12 3276.52 1492.87 3247.25 1522.14 3218.64 1493.24"/>
51
+ <rect id="store-hotdog" class="cls-5" x="2961.93" y="1525.5" width="31.48" height="29.19" transform="translate(-216.8749 2556.6146) rotate(-45)"/>
52
+ <polygon id="store-special-courses" class="cls-5" points="2979.97 1564.65 3002.23 1542.4 3031.49 1571.66 3009.07 1593.75 2979.97 1564.65"/>
53
+ <polygon id="store-osaka-japan" class="cls-5" points="3012.18 1596.86 3034.59 1574.77 3063.88 1604.05 3041.62 1626.31 3012.18 1596.86"/>
54
+ <polygon id="store-dairy-queen" class="cls-5" points="3059.35 1659.84 3064.14 1655.05 3073.98 1664.88 3099.37 1639.54 3112.49 1652.66 3083.04 1683.52 3059.35 1659.84"/>
55
+ <polygon id="store-2250" class="cls-5" points="3192.96 1702.45 3211.89 1683.52 3300.58 1773.22 3281.94 1791.64 3192.96 1702.45"/>
56
+ <polygon id="store-2302" class="cls-5" points="3112.29 1873.56 3112.29 1782.09 3144.03 1750.74 3233.41 1840.11 3206.72 1866.8 3206.73 1873.57 3112.29 1873.56"/>
57
+ <rect id="store-2306" class="cls-5" x="3112.29" y="1877.94" width="94.44" height="32.57"/>
58
+ <polygon id="store-2254" class="cls-5" points="3147.15 1747.65 3189.84 1705.55 3278.82 1794.73 3236.38 1837 3147.15 1747.65"/>
59
+ <rect id="store-2316" class="cls-5" x="2855.61" y="1807.3" width="50.79" height="68.87"/>
60
+ <path id="store-2314" class="cls-5" d="M2910.79,1912.04v-104.75h65.79l.98,3.08c.02.07.05.14.08.21l1.81,4.56,2.16,4.53,2.46,4.37,2.76,4.2,1.44,1.89,3.08,3.53,2.2,2.31-40.84,40.95h-24.18v35.11h-17.74Z"/>
61
+ <path id="store-2312" class="cls-5" d="M2932.93,1912.04v-30.71h21.61l42.15-42.27,5.91,5.41,1.9,1.45,4.2,2.76,4.37,2.46,4.53,2.16,4.57,1.81c.07.03.14.05.21.07l3.08.98v55.87h-92.54Z"/>
62
+ <rect id="store-2315" class="cls-5" x="2855.61" y="1880.57" width="50.79" height="31.48"/>
63
+ <rect id="store-2240" class="cls-5" x="3316.37" y="1584.43" width="41.4" height="125.94" transform="translate(-187.4951 2842.1438) rotate(-44.9995)"/>
64
+ <polygon id="store-2242" class="cls-5" points="3258.25 1668.08 3258.25 1637.16 3274.76 1620.65 3363.88 1709.64 3331.91 1741.61 3258.25 1668.08"/>
65
+ <rect id="store-22238" class="cls-5" x="3348.69" y="1552.11" width="41.4" height="125.94" transform="translate(-155.156 2855.5946) rotate(-45.0005)"/>
66
+ <polygon id="store-white-barn" class="cls-5" points="3375.03 1520.41 3395.59 1500.13 3484.44 1589.08 3464.01 1609.52 3375.03 1520.41"/>
67
+ <polygon id="store-subway" class="cls-5" points="3013.97 1483.16 3039.37 1457.76 3065.55 1483.94 3050.67 1519.86 3013.97 1483.16"/>
68
+ <path id="store-dummy-45" class="cls-5" d="M3054.73,1521.55l14.18-34.24s2.56,2.56,2.56,2.56c.45.45,1.07.71,1.71.71h23.99v30.98h-42.44Z"/>
69
+ <rect id="store-panda-express" class="cls-5" x="3101.56" y="1490.57" width="37.04" height="30.98"/>
70
+ <rect id="store-meltway" class="cls-5" x="3143" y="1490.57" width="36.44" height="30.98"/>
71
+ <rect id="store-2117" class="cls-5" x="3554.78" y="1276.16" width="36.81" height="56.66"/>
72
+ <polygon id="store-2112" class="cls-5" points="3478.46 1332.83 3478.46 1263.95 3523.31 1264.01 3523.31 1332.83 3478.46 1332.83"/>
73
+ <polygon id="store-2103" class="cls-5" points="3345.03 1282.45 3345.03 1259.47 3405.35 1199.59 3416.55 1210.82 3434.67 1210.82 3434.67 1282.45 3345.03 1282.45"/>
74
+ <polygon id="store-2036" class="cls-5" points="3218.4 1385.7 3274.32 1330 3319.62 1374.45 3280.25 1374.45 3253.06 1401.54 3243.65 1410.95 3218.4 1385.7"/>
75
+ <polygon id="store-sbarro" class="cls-5" points="3217.88 1542.49 3216.61 1542.36 3215.34 1542.15 3214.09 1541.85 3212.87 1541.47 3211.67 1541.01 3210.51 1540.47 3209.38 1539.85 3208.3 1539.16 3207.28 1538.39 3206.3 1537.56 3205.38 1536.66 3204.53 1535.7 3203.74 1534.69 3203.02 1533.63 3202.37 1532.52 3201.81 1531.37 3201.32 1530.18 3200.91 1528.97 3200.58 1527.73 3200.34 1526.46 3200.19 1525.24 3200.04 1493.93 3206.79 1487.59 3243.22 1524.33 3227.24 1540.3 3226.98 1540.54 3226.7 1540.77 3226.41 1540.96 3226.11 1541.14 3225.79 1541.3 3225.46 1541.43 3224.24 1541.82 3222.99 1542.12 3221.73 1542.34 3220.45 1542.48 3219.17 1542.52 3217.88 1542.49"/>
76
+ <polygon id="store-dummy-41" class="cls-5" points="3130.97 1694.28 3141.74 1683.51 3151.6 1693.34 3140.82 1704.12 3130.97 1694.28"/>
77
+ <rect id="store-dummy-40" class="cls-5" x="3184.25" y="1628.55" width="26.64" height="14.43" 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" 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" transform="translate(-145.9646 2770.4081) rotate(-44.996)"/>
80
+ <polygon id="store-dummy-37" class="cls-5" points="3107.14 1718.12 3120.8 1704.45 3130.65 1714.29 3116.98 1727.96 3107.14 1718.12"/>
81
+ <rect id="store-2408" class="cls-5" x="2849.43" y="1926.36" width="176.04" height="132.42"/>
82
+ <rect id="store-2232" class="cls-5" x="3381.07" y="1519.73" width="41.4" height="125.95" 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"/>
84
+ <polygon id="store-2212" class="cls-5" points="3710.64 1541.28 3710.77 1419.64 3752.16 1419.64 3752.03 1541.28 3710.64 1541.28"/>
85
+ <rect id="store-2120" class="cls-5" x="3527.7" y="1210.82" width="105.4" height="60.94"/>
86
+ <rect id="store-2118" class="cls-5" x="3595.99" y="1276.16" width="37.11" height="56.66"/>
87
+ <polygon id="store-dummy-33" class="cls-5" points="3324.76 1279.68 3340.64 1263.85 3340.64 1295.6 3324.76 1279.68"/>
88
+ <polygon id="store-2034" class="cls-5" points="3257.72 1403.1 3282.06 1378.85 3320.87 1378.85 3320.87 1448.52 3312 1457.39 3257.72 1403.1"/>
89
+ <polygon id="store-2032" class="cls-5" points="3225.49 1435.32 3254.61 1406.21 3308.9 1460.49 3279.63 1489.76 3225.49 1435.32"/>
90
+ <polygon id="store-dummy-32" class="cls-5" points="3077.65 1477.34 3060.95 1460.63 3060.95 1442.47 3143.27 1442.47 3143.3 1477.34 3077.65 1477.34"/>
91
+ <polygon id="store-charleys" class="cls-5" points="3044.73 1629.42 3066.99 1607.16 3096.26 1636.43 3073.98 1658.66 3044.73 1629.42"/>
92
+ <polygon id="store-2328" class="cls-5" points="2956.59 1720.47 2956.59 1602.12 2969.31 1602.12 2982.36 1589.06 3080 1686.7 3047.77 1720.47 2956.59 1720.47"/>
93
+ <rect id="store-2326" class="cls-5" x="2909.03" y="1651.6" width="43.17" height="68.88"/>
94
+ <rect id="store-2324" class="cls-5" x="2864.36" y="1651.6" width="39.5" height="68.88"/>
95
+ <polygon id="store-2405-7" class="cls-5" points="3168.56 2306.06 3132.71 2177.9 3252.34 2177.9 3252.34 2306.06 3168.56 2306.06"/>
96
+ <polygon id="store-73-lf" class="cls-5" points="3954.03 1286.92 3954.03 1611.71 4438.96 1611.71 4439.24 1454.71 4597.56 1293.87 4778.53 1293.75 4778.53 922.52 4375.26 922.52 4375.26 1065.5 4306.02 1066.25 4306.02 1286.92 3954.03 1286.92"/>
97
+ <polygon id="store-72" class="cls-5" points="4299.77 1280.58 4298.1 1063.99 4192.49 1065.15 4192.49 813.24 3919.38 813.56 3919.38 1113.77 3972.23 1113.77 3972.23 1282.07 4299.77 1280.58"/>
98
+ <polygon id="store-72-2" data-name="store-72" class="cls-5" points="3912.9 1112.09 3913.38 813.03 3712.62 813.27 3712.61 893.02 3647.69 893.02 3648.24 1113.14 3912.9 1112.09"/>
99
+ <polygon id="store-2300-uf" class="cls-5" points="2545.95 1906.98 2543.67 1601.29 2850.23 1601.74 2850.23 1908.42 2545.95 1906.98"/>
100
+ <path id="store-uf" class="cls-5" d="M2849.43,2404.04l270.24.2c7.48,4.45,17.84,8.3,31.77,11.39,0,0,0,0,0,0h100.9s0,251.77,0,251.77l-402.91,2.48v-265.84Z"/>
101
+ <polygon id="store-2100-uf" class="cls-5" points="2913.48 1126.01 3123.28 916.88 3402.25 1196.48 3192.53 1405.26 2913.48 1126.01"/>
102
102
  </g>
103
103
  <g id="KIOSK">
104
104
  <rect id="kiosk-5-uf" class="cls-4" x="3062.01" y="2031.06" width="13.73" height="13.73"/>
@@ -124,8 +124,8 @@
124
124
  <rect id="amenity-13" class="cls-1" x="3857.75" y="1368.94" width="12.95" height="12.95"/>
125
125
  <rect id="amenity-12" class="cls-1" x="3062.01" y="1900.51" width="13.73" height="13.73"/>
126
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"/>
127
+ <polygon id="amenity-10" class="cls-1" points="3200.9 1475.46 3217.84 1458.52 3210.08 1450.76 3222.39 1438.43 3244.83 1461 3215.54 1490.12 3200.9 1475.46"/>
128
+ <polygon id="amenity-9" class="cls-1" points="3155.85 1476.88 3155.85 1447.34 3178.27 1425.09 3211.63 1458.52 3193.27 1476.88 3155.85 1476.88"/>
129
129
  </g>
130
130
  <g id="ROUTES">
131
131
  <line id="route-path" class="cls-3" x1="3127.87" y1="2380.37" x2="3127.87" y2="2408.76"/>