@trailstash/ultra 3.0.0-dev

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 (415) hide show
  1. package/.gitlab-ci.yml +15 -0
  2. package/Examples/alt-bbox-format.ultra +9 -0
  3. package/Examples/atp-usps-dropboxes.ultra +68 -0
  4. package/Examples/bike-infra.ultra +111 -0
  5. package/Examples/contribution-heatmap.ultra +17 -0
  6. package/Examples/custom-style.ultra +114 -0
  7. package/Examples/glow-effect.ultra +27 -0
  8. package/Examples/index.md +7 -0
  9. package/Examples/landmarks-prototype.ultra +68 -0
  10. package/Examples/minimalist-ski-map.ultra +55 -0
  11. package/Examples/opentrailstash-3d.ultra +40 -0
  12. package/Examples/overture-landcover-plus-hillshade.ultra +45 -0
  13. package/Examples/overture-places-and-osm.ultra +29 -0
  14. package/Examples/trees.ultra +60 -0
  15. package/Examples/wikidata-photo.ultra +28 -0
  16. package/Examples/within-bounds.ultra +12 -0
  17. package/LICENSE +23 -0
  18. package/MapLibre-Examples/3d-buildings.ultra +43 -0
  19. package/MapLibre-Examples/3d-extrusion-floorplan.ultra +28 -0
  20. package/MapLibre-Examples/3d-terrain.ultra +39 -0
  21. package/MapLibre-Examples/add-image.ultra +26 -0
  22. package/MapLibre-Examples/attribution-position.ultra +12 -0
  23. package/MapLibre-Examples/change-case-of-labels.ultra +26 -0
  24. package/MapLibre-Examples/cluster.ultra +59 -0
  25. package/MapLibre-Examples/cooperative-gestures.ultra +11 -0
  26. package/MapLibre-Examples/custom-marker-icons.ultra +65 -0
  27. package/MapLibre-Examples/data-driven-lines.ultra +169 -0
  28. package/MapLibre-Examples/disable-rotation.ultra +11 -0
  29. package/MapLibre-Examples/disable-scroll-zoom.ultra +9 -0
  30. package/MapLibre-Examples/display-and-style-rich-text-labels.ultra +22 -0
  31. package/MapLibre-Examples/fill-pattern.ultra +43 -0
  32. package/MapLibre-Examples/fullscreen.ultra +10 -0
  33. package/MapLibre-Examples/geojson-layer-in-stack.ultra +23 -0
  34. package/MapLibre-Examples/geojson-line.ultra +114 -0
  35. package/MapLibre-Examples/geojson-markers.ultra +217 -0
  36. package/MapLibre-Examples/geojson-polygon.ultra +104 -0
  37. package/MapLibre-Examples/heatmap-layer.ultra +111 -0
  38. package/MapLibre-Examples/index.md +4 -0
  39. package/MapLibre-Examples/locate-user.ultra +14 -0
  40. package/MapLibre-Examples/map-tiles.ultra +9 -0
  41. package/MapLibre-Examples/pmtiles.ultra +25 -0
  42. package/MapLibre-Examples/wms.ultra +14 -0
  43. package/README.md +46 -0
  44. package/bin/dev.cmd +3 -0
  45. package/bin/dev.js +6 -0
  46. package/bin/run.cmd +3 -0
  47. package/bin/run.js +5 -0
  48. package/build-examples-docs.js +104 -0
  49. package/build-examples-images.js +87 -0
  50. package/build-sprites.sh +30 -0
  51. package/cli/build.js +53 -0
  52. package/cli/serve.js +34 -0
  53. package/components/button-modal.js +111 -0
  54. package/components/button.css +22 -0
  55. package/components/button.js +6 -0
  56. package/components/code-editor.js +87 -0
  57. package/components/download-button.js +69 -0
  58. package/components/fontawesome-icon.js +80 -0
  59. package/components/fs-button.js +52 -0
  60. package/components/help-modal.js +98 -0
  61. package/components/map-popup.js +57 -0
  62. package/components/nav-bar.js +76 -0
  63. package/components/run-button.js +78 -0
  64. package/components/share-button.js +35 -0
  65. package/components/share-modal.js +139 -0
  66. package/components/style-picker.js +47 -0
  67. package/components/ultra-ide.js +298 -0
  68. package/components/ultra-loader.js +60 -0
  69. package/components/ultra-map.js +312 -0
  70. package/configs/minimal.js +9 -0
  71. package/configs/overpass-ultra.js +185 -0
  72. package/docs/assets/Examples/alt-bbox-format.png +0 -0
  73. package/docs/assets/Examples/atp-usps-dropboxes.png +0 -0
  74. package/docs/assets/Examples/bike-infra.png +0 -0
  75. package/docs/assets/Examples/contribution-heatmap.png +0 -0
  76. package/docs/assets/Examples/custom-style.png +0 -0
  77. package/docs/assets/Examples/glow-effect.png +0 -0
  78. package/docs/assets/Examples/landmarks-prototype.png +0 -0
  79. package/docs/assets/Examples/minimalist-ski-map.png +0 -0
  80. package/docs/assets/Examples/opentrailstash-3d.png +0 -0
  81. package/docs/assets/Examples/overture-landcover-plus-hillshade.png +0 -0
  82. package/docs/assets/Examples/overture-places-and-osm.png +0 -0
  83. package/docs/assets/Examples/trees.png +0 -0
  84. package/docs/assets/Examples/wikidata-photo.png +0 -0
  85. package/docs/assets/Examples/within-bounds.png +0 -0
  86. package/docs/assets/MapLibre-Examples/3d-buildings.png +0 -0
  87. package/docs/assets/MapLibre-Examples/3d-extrusion-floorplan.png +0 -0
  88. package/docs/assets/MapLibre-Examples/3d-terrain.png +0 -0
  89. package/docs/assets/MapLibre-Examples/add-image.png +0 -0
  90. package/docs/assets/MapLibre-Examples/attribution-position.png +0 -0
  91. package/docs/assets/MapLibre-Examples/change-case-of-labels.png +0 -0
  92. package/docs/assets/MapLibre-Examples/cluster.png +0 -0
  93. package/docs/assets/MapLibre-Examples/cooperative-gestures.png +0 -0
  94. package/docs/assets/MapLibre-Examples/custom-marker-icons.png +0 -0
  95. package/docs/assets/MapLibre-Examples/data-driven-lines.png +0 -0
  96. package/docs/assets/MapLibre-Examples/disable-rotation.png +0 -0
  97. package/docs/assets/MapLibre-Examples/disable-scroll-zoom.png +0 -0
  98. package/docs/assets/MapLibre-Examples/display-and-style-rich-text-labels.png +0 -0
  99. package/docs/assets/MapLibre-Examples/fill-pattern.png +0 -0
  100. package/docs/assets/MapLibre-Examples/fullscreen.png +0 -0
  101. package/docs/assets/MapLibre-Examples/geojson-layer-in-stack.png +0 -0
  102. package/docs/assets/MapLibre-Examples/geojson-line.png +0 -0
  103. package/docs/assets/MapLibre-Examples/geojson-markers.png +0 -0
  104. package/docs/assets/MapLibre-Examples/geojson-polygon.png +0 -0
  105. package/docs/assets/MapLibre-Examples/heatmap-layer.png +0 -0
  106. package/docs/assets/MapLibre-Examples/locate-user.png +0 -0
  107. package/docs/assets/MapLibre-Examples/map-tiles.png +0 -0
  108. package/docs/assets/MapLibre-Examples/pmtiles.png +0 -0
  109. package/docs/assets/MapLibre-Examples/wms.png +0 -0
  110. package/docs/assets/data/Examples/atp_usps_collection_boxes.geojson +1 -0
  111. package/docs/further-reading.md +15 -0
  112. package/docs/index.md +55 -0
  113. package/docs/overrides/partials/integrations/analytics/custom.html +11 -0
  114. package/docs/query-shortcuts.md +21 -0
  115. package/docs/style.md +120 -0
  116. package/docs/url-parameters.md +45 -0
  117. package/docs/yaml.md +117 -0
  118. package/index.js +53 -0
  119. package/lib/base.css +12 -0
  120. package/lib/bounds.js +8 -0
  121. package/lib/dom.js +21 -0
  122. package/lib/glyphFallback.js +31 -0
  123. package/lib/localStorage.js +34 -0
  124. package/lib/normalize.js +5 -0
  125. package/lib/queryMap.js +50 -0
  126. package/lib/queryParams.js +142 -0
  127. package/lib/queryProviders/auto.js +47 -0
  128. package/lib/queryProviders/geojson.js +134 -0
  129. package/lib/queryProviders/gpx.js +101 -0
  130. package/lib/queryProviders/index.js +22 -0
  131. package/lib/queryProviders/kml.js +132 -0
  132. package/lib/queryProviders/osm.js +199 -0
  133. package/lib/queryProviders/overpass.js +162 -0
  134. package/lib/queryProviders/raster.js +23 -0
  135. package/lib/queryProviders/tcx.js +105 -0
  136. package/lib/queryProviders/vector.js +13 -0
  137. package/lib/settings.js +72 -0
  138. package/lib/sprites.js +18 -0
  139. package/lib/style.js +222 -0
  140. package/mkdocs.yml +26 -0
  141. package/package.json +80 -0
  142. package/screenshot.png +0 -0
  143. package/static/embed.js +18 -0
  144. package/static/font/0-255.pbf +0 -0
  145. package/static/font/1024-1279.pbf +0 -0
  146. package/static/font/10240-10495.pbf +3 -0
  147. package/static/font/10496-10751.pbf +0 -0
  148. package/static/font/10752-11007.pbf +3 -0
  149. package/static/font/11008-11263.pbf +0 -0
  150. package/static/font/11264-11519.pbf +0 -0
  151. package/static/font/11520-11775.pbf +0 -0
  152. package/static/font/11776-12031.pbf +0 -0
  153. package/static/font/12032-12287.pbf +0 -0
  154. package/static/font/12288-12543.pbf +0 -0
  155. package/static/font/12544-12799.pbf +0 -0
  156. package/static/font/1280-1535.pbf +0 -0
  157. package/static/font/12800-13055.pbf +0 -0
  158. package/static/font/13056-13311.pbf +0 -0
  159. package/static/font/13312-13567.pbf +0 -0
  160. package/static/font/13568-13823.pbf +0 -0
  161. package/static/font/13824-14079.pbf +0 -0
  162. package/static/font/14080-14335.pbf +0 -0
  163. package/static/font/14336-14591.pbf +0 -0
  164. package/static/font/14592-14847.pbf +0 -0
  165. package/static/font/14848-15103.pbf +0 -0
  166. package/static/font/15104-15359.pbf +0 -0
  167. package/static/font/1536-1791.pbf +0 -0
  168. package/static/font/15360-15615.pbf +0 -0
  169. package/static/font/15616-15871.pbf +0 -0
  170. package/static/font/15872-16127.pbf +0 -0
  171. package/static/font/16128-16383.pbf +0 -0
  172. package/static/font/16384-16639.pbf +0 -0
  173. package/static/font/16640-16895.pbf +0 -0
  174. package/static/font/16896-17151.pbf +0 -0
  175. package/static/font/17152-17407.pbf +0 -0
  176. package/static/font/17408-17663.pbf +0 -0
  177. package/static/font/17664-17919.pbf +0 -0
  178. package/static/font/1792-2047.pbf +0 -0
  179. package/static/font/17920-18175.pbf +0 -0
  180. package/static/font/18176-18431.pbf +0 -0
  181. package/static/font/18432-18687.pbf +0 -0
  182. package/static/font/18688-18943.pbf +0 -0
  183. package/static/font/18944-19199.pbf +0 -0
  184. package/static/font/19200-19455.pbf +0 -0
  185. package/static/font/19456-19711.pbf +0 -0
  186. package/static/font/19712-19967.pbf +0 -0
  187. package/static/font/19968-20223.pbf +0 -0
  188. package/static/font/20224-20479.pbf +0 -0
  189. package/static/font/2048-2303.pbf +0 -0
  190. package/static/font/20480-20735.pbf +0 -0
  191. package/static/font/20736-20991.pbf +0 -0
  192. package/static/font/20992-21247.pbf +0 -0
  193. package/static/font/21248-21503.pbf +0 -0
  194. package/static/font/21504-21759.pbf +0 -0
  195. package/static/font/21760-22015.pbf +0 -0
  196. package/static/font/22016-22271.pbf +0 -0
  197. package/static/font/22272-22527.pbf +192 -26
  198. package/static/font/22528-22783.pbf +0 -0
  199. package/static/font/22784-23039.pbf +0 -0
  200. package/static/font/2304-2559.pbf +0 -0
  201. package/static/font/23040-23295.pbf +0 -0
  202. package/static/font/23296-23551.pbf +0 -0
  203. package/static/font/23552-23807.pbf +0 -0
  204. package/static/font/23808-24063.pbf +0 -0
  205. package/static/font/24064-24319.pbf +0 -0
  206. package/static/font/24320-24575.pbf +0 -0
  207. package/static/font/24576-24831.pbf +0 -0
  208. package/static/font/24832-25087.pbf +0 -0
  209. package/static/font/25088-25343.pbf +0 -0
  210. package/static/font/25344-25599.pbf +0 -0
  211. package/static/font/256-511.pbf +0 -0
  212. package/static/font/2560-2815.pbf +0 -0
  213. package/static/font/25600-25855.pbf +0 -0
  214. package/static/font/25856-26111.pbf +0 -0
  215. package/static/font/26112-26367.pbf +0 -0
  216. package/static/font/26368-26623.pbf +0 -0
  217. package/static/font/26624-26879.pbf +0 -0
  218. package/static/font/26880-27135.pbf +0 -0
  219. package/static/font/27136-27391.pbf +0 -0
  220. package/static/font/27392-27647.pbf +0 -0
  221. package/static/font/27648-27903.pbf +0 -0
  222. package/static/font/27904-28159.pbf +0 -0
  223. package/static/font/2816-3071.pbf +0 -0
  224. package/static/font/28160-28415.pbf +0 -0
  225. package/static/font/28416-28671.pbf +0 -0
  226. package/static/font/28672-28927.pbf +0 -0
  227. package/static/font/28928-29183.pbf +0 -0
  228. package/static/font/29184-29439.pbf +0 -0
  229. package/static/font/29440-29695.pbf +0 -0
  230. package/static/font/29696-29951.pbf +0 -0
  231. package/static/font/29952-30207.pbf +0 -0
  232. package/static/font/30208-30463.pbf +0 -0
  233. package/static/font/30464-30719.pbf +0 -0
  234. package/static/font/3072-3327.pbf +0 -0
  235. package/static/font/30720-30975.pbf +0 -0
  236. package/static/font/30976-31231.pbf +0 -0
  237. package/static/font/31232-31487.pbf +0 -0
  238. package/static/font/31488-31743.pbf +0 -0
  239. package/static/font/31744-31999.pbf +0 -0
  240. package/static/font/32000-32255.pbf +0 -0
  241. package/static/font/32256-32511.pbf +0 -0
  242. package/static/font/32512-32767.pbf +0 -0
  243. package/static/font/32768-33023.pbf +0 -0
  244. package/static/font/33024-33279.pbf +0 -0
  245. package/static/font/3328-3583.pbf +0 -0
  246. package/static/font/33280-33535.pbf +0 -0
  247. package/static/font/33536-33791.pbf +0 -0
  248. package/static/font/33792-34047.pbf +0 -0
  249. package/static/font/34048-34303.pbf +0 -0
  250. package/static/font/34304-34559.pbf +0 -0
  251. package/static/font/34560-34815.pbf +0 -0
  252. package/static/font/34816-35071.pbf +0 -0
  253. package/static/font/35072-35327.pbf +0 -0
  254. package/static/font/35328-35583.pbf +0 -0
  255. package/static/font/35584-35839.pbf +0 -0
  256. package/static/font/3584-3839.pbf +0 -0
  257. package/static/font/35840-36095.pbf +0 -0
  258. package/static/font/36096-36351.pbf +0 -0
  259. package/static/font/36352-36607.pbf +0 -0
  260. package/static/font/36608-36863.pbf +0 -0
  261. package/static/font/36864-37119.pbf +0 -0
  262. package/static/font/37120-37375.pbf +0 -0
  263. package/static/font/37376-37631.pbf +0 -0
  264. package/static/font/37632-37887.pbf +0 -0
  265. package/static/font/37888-38143.pbf +0 -0
  266. package/static/font/38144-38399.pbf +0 -0
  267. package/static/font/3840-4095.pbf +0 -0
  268. package/static/font/38400-38655.pbf +45 -4
  269. package/static/font/38656-38911.pbf +0 -0
  270. package/static/font/38912-39167.pbf +0 -0
  271. package/static/font/39168-39423.pbf +0 -0
  272. package/static/font/39424-39679.pbf +0 -0
  273. package/static/font/39680-39935.pbf +0 -0
  274. package/static/font/39936-40191.pbf +0 -0
  275. package/static/font/40192-40447.pbf +0 -0
  276. package/static/font/40448-40703.pbf +0 -0
  277. package/static/font/40704-40959.pbf +0 -0
  278. package/static/font/4096-4351.pbf +0 -0
  279. package/static/font/40960-41215.pbf +3 -0
  280. package/static/font/41216-41471.pbf +3 -0
  281. package/static/font/41472-41727.pbf +3 -0
  282. package/static/font/41728-41983.pbf +3 -0
  283. package/static/font/41984-42239.pbf +3 -0
  284. package/static/font/42240-42495.pbf +3 -0
  285. package/static/font/42496-42751.pbf +3 -0
  286. package/static/font/42752-43007.pbf +0 -0
  287. package/static/font/43008-43263.pbf +0 -0
  288. package/static/font/43264-43519.pbf +0 -0
  289. package/static/font/4352-4607.pbf +0 -0
  290. package/static/font/43520-43775.pbf +0 -0
  291. package/static/font/43776-44031.pbf +0 -0
  292. package/static/font/44032-44287.pbf +0 -0
  293. package/static/font/44288-44543.pbf +0 -0
  294. package/static/font/44544-44799.pbf +0 -0
  295. package/static/font/44800-45055.pbf +0 -0
  296. package/static/font/45056-45311.pbf +0 -0
  297. package/static/font/45312-45567.pbf +0 -0
  298. package/static/font/45568-45823.pbf +0 -0
  299. package/static/font/45824-46079.pbf +0 -0
  300. package/static/font/4608-4863.pbf +0 -0
  301. package/static/font/46080-46335.pbf +0 -0
  302. package/static/font/46336-46591.pbf +0 -0
  303. package/static/font/46592-46847.pbf +0 -0
  304. package/static/font/46848-47103.pbf +0 -0
  305. package/static/font/47104-47359.pbf +0 -0
  306. package/static/font/47360-47615.pbf +0 -0
  307. package/static/font/47616-47871.pbf +0 -0
  308. package/static/font/47872-48127.pbf +0 -0
  309. package/static/font/48128-48383.pbf +0 -0
  310. package/static/font/48384-48639.pbf +0 -0
  311. package/static/font/4864-5119.pbf +0 -0
  312. package/static/font/48640-48895.pbf +0 -0
  313. package/static/font/48896-49151.pbf +0 -0
  314. package/static/font/49152-49407.pbf +0 -0
  315. package/static/font/49408-49663.pbf +0 -0
  316. package/static/font/49664-49919.pbf +0 -0
  317. package/static/font/49920-50175.pbf +0 -0
  318. package/static/font/50176-50431.pbf +0 -0
  319. package/static/font/50432-50687.pbf +0 -0
  320. package/static/font/50688-50943.pbf +0 -0
  321. package/static/font/50944-51199.pbf +0 -0
  322. package/static/font/512-767.pbf +0 -0
  323. package/static/font/5120-5375.pbf +3 -0
  324. package/static/font/51200-51455.pbf +0 -0
  325. package/static/font/51456-51711.pbf +0 -0
  326. package/static/font/51712-51967.pbf +0 -0
  327. package/static/font/51968-52223.pbf +0 -0
  328. package/static/font/52224-52479.pbf +0 -0
  329. package/static/font/52480-52735.pbf +0 -0
  330. package/static/font/52736-52991.pbf +0 -0
  331. package/static/font/52992-53247.pbf +0 -0
  332. package/static/font/53248-53503.pbf +0 -0
  333. package/static/font/53504-53759.pbf +0 -0
  334. package/static/font/5376-5631.pbf +3 -0
  335. package/static/font/53760-54015.pbf +0 -0
  336. package/static/font/54016-54271.pbf +0 -0
  337. package/static/font/54272-54527.pbf +0 -0
  338. package/static/font/54528-54783.pbf +0 -0
  339. package/static/font/54784-55039.pbf +0 -0
  340. package/static/font/55040-55295.pbf +0 -0
  341. package/static/font/55296-55551.pbf +3 -0
  342. package/static/font/55552-55807.pbf +3 -0
  343. package/static/font/55808-56063.pbf +3 -0
  344. package/static/font/56064-56319.pbf +3 -0
  345. package/static/font/5632-5887.pbf +3 -0
  346. package/static/font/56320-56575.pbf +3 -0
  347. package/static/font/56576-56831.pbf +3 -0
  348. package/static/font/56832-57087.pbf +3 -0
  349. package/static/font/57088-57343.pbf +3 -0
  350. package/static/font/57344-57599.pbf +3 -0
  351. package/static/font/57600-57855.pbf +3 -0
  352. package/static/font/57856-58111.pbf +3 -0
  353. package/static/font/58112-58367.pbf +3 -0
  354. package/static/font/58368-58623.pbf +3 -0
  355. package/static/font/58624-58879.pbf +3 -0
  356. package/static/font/5888-6143.pbf +0 -0
  357. package/static/font/58880-59135.pbf +3 -0
  358. package/static/font/59136-59391.pbf +3 -0
  359. package/static/font/59392-59647.pbf +3 -0
  360. package/static/font/59648-59903.pbf +3 -0
  361. package/static/font/59904-60159.pbf +3 -0
  362. package/static/font/60160-60415.pbf +3 -0
  363. package/static/font/60416-60671.pbf +3 -0
  364. package/static/font/60672-60927.pbf +3 -0
  365. package/static/font/60928-61183.pbf +3 -0
  366. package/static/font/61184-61439.pbf +3 -0
  367. package/static/font/6144-6399.pbf +0 -0
  368. package/static/font/61440-61695.pbf +3 -0
  369. package/static/font/61696-61951.pbf +3 -0
  370. package/static/font/61952-62207.pbf +3 -0
  371. package/static/font/62208-62463.pbf +3 -0
  372. package/static/font/62464-62719.pbf +3 -0
  373. package/static/font/62720-62975.pbf +3 -0
  374. package/static/font/62976-63231.pbf +3 -0
  375. package/static/font/63232-63487.pbf +3 -0
  376. package/static/font/63488-63743.pbf +3 -0
  377. package/static/font/63744-63999.pbf +0 -0
  378. package/static/font/6400-6655.pbf +0 -0
  379. package/static/font/64000-64255.pbf +0 -0
  380. package/static/font/64256-64511.pbf +0 -0
  381. package/static/font/64512-64767.pbf +0 -0
  382. package/static/font/64768-65023.pbf +0 -0
  383. package/static/font/65024-65279.pbf +0 -0
  384. package/static/font/65280-65535.pbf +0 -0
  385. package/static/font/6656-6911.pbf +3 -0
  386. package/static/font/6912-7167.pbf +0 -0
  387. package/static/font/7168-7423.pbf +0 -0
  388. package/static/font/7424-7679.pbf +0 -0
  389. package/static/font/768-1023.pbf +0 -0
  390. package/static/font/7680-7935.pbf +0 -0
  391. package/static/font/7936-8191.pbf +0 -0
  392. package/static/font/8192-8447.pbf +0 -0
  393. package/static/font/8448-8703.pbf +0 -0
  394. package/static/font/8704-8959.pbf +0 -0
  395. package/static/font/8960-9215.pbf +0 -0
  396. package/static/font/9216-9471.pbf +0 -0
  397. package/static/font/9472-9727.pbf +0 -0
  398. package/static/font/9728-9983.pbf +0 -0
  399. package/static/font/9984-10239.pbf +0 -0
  400. package/static/index.html +59 -0
  401. package/static/logo.png +0 -0
  402. package/static/logo.svg +78 -0
  403. package/static/mapbox-gl-rtl-text@0.2.3.js +9851 -0
  404. package/static/minimal.js +9 -0
  405. package/static/minimal.json +7 -0
  406. package/static/sprites/maki.json +1706 -0
  407. package/static/sprites/maki.license +116 -0
  408. package/static/sprites/maki.png +0 -0
  409. package/static/sprites/maki@2x.json +1706 -0
  410. package/static/sprites/maki@2x.png +0 -0
  411. package/static/sprites/temaki.json +4306 -0
  412. package/static/sprites/temaki.license +118 -0
  413. package/static/sprites/temaki.png +0 -0
  414. package/static/sprites/temaki@2x.json +4306 -0
  415. package/static/sprites/temaki@2x.png +0 -0
@@ -0,0 +1,4306 @@
1
+ {
2
+ "abseiling": {
3
+ "height": 66,
4
+ "width": 66,
5
+ "x": 0,
6
+ "y": 0,
7
+ "pixelRatio": 2,
8
+ "sdf": true
9
+ },
10
+ "accessible_space": {
11
+ "height": 66,
12
+ "width": 66,
13
+ "x": 66,
14
+ "y": 0,
15
+ "pixelRatio": 2,
16
+ "sdf": true
17
+ },
18
+ "accounting": {
19
+ "height": 66,
20
+ "width": 66,
21
+ "x": 0,
22
+ "y": 66,
23
+ "pixelRatio": 2,
24
+ "sdf": true
25
+ },
26
+ "adit_profile": {
27
+ "height": 66,
28
+ "width": 66,
29
+ "x": 66,
30
+ "y": 66,
31
+ "pixelRatio": 2,
32
+ "sdf": true
33
+ },
34
+ "aerialway_pole": {
35
+ "height": 66,
36
+ "width": 66,
37
+ "x": 132,
38
+ "y": 0,
39
+ "pixelRatio": 2,
40
+ "sdf": true
41
+ },
42
+ "airport": {
43
+ "height": 66,
44
+ "width": 66,
45
+ "x": 132,
46
+ "y": 66,
47
+ "pixelRatio": 2,
48
+ "sdf": true
49
+ },
50
+ "amusement_park": {
51
+ "height": 66,
52
+ "width": 66,
53
+ "x": 0,
54
+ "y": 132,
55
+ "pixelRatio": 2,
56
+ "sdf": true
57
+ },
58
+ "anchor_medal": {
59
+ "height": 66,
60
+ "width": 66,
61
+ "x": 66,
62
+ "y": 132,
63
+ "pixelRatio": 2,
64
+ "sdf": true
65
+ },
66
+ "antenna": {
67
+ "height": 66,
68
+ "width": 66,
69
+ "x": 132,
70
+ "y": 132,
71
+ "pixelRatio": 2,
72
+ "sdf": true
73
+ },
74
+ "anvil": {
75
+ "height": 66,
76
+ "width": 66,
77
+ "x": 198,
78
+ "y": 0,
79
+ "pixelRatio": 2,
80
+ "sdf": true
81
+ },
82
+ "anvil_and_hammer": {
83
+ "height": 66,
84
+ "width": 66,
85
+ "x": 198,
86
+ "y": 66,
87
+ "pixelRatio": 2,
88
+ "sdf": true
89
+ },
90
+ "app_terminal": {
91
+ "height": 66,
92
+ "width": 66,
93
+ "x": 198,
94
+ "y": 132,
95
+ "pixelRatio": 2,
96
+ "sdf": true
97
+ },
98
+ "archery": {
99
+ "height": 66,
100
+ "width": 66,
101
+ "x": 0,
102
+ "y": 198,
103
+ "pixelRatio": 2,
104
+ "sdf": true
105
+ },
106
+ "army_tent": {
107
+ "height": 66,
108
+ "width": 66,
109
+ "x": 66,
110
+ "y": 198,
111
+ "pixelRatio": 2,
112
+ "sdf": true
113
+ },
114
+ "asterisk": {
115
+ "height": 66,
116
+ "width": 66,
117
+ "x": 132,
118
+ "y": 198,
119
+ "pixelRatio": 2,
120
+ "sdf": true
121
+ },
122
+ "atm": {
123
+ "height": 66,
124
+ "width": 66,
125
+ "x": 198,
126
+ "y": 198,
127
+ "pixelRatio": 2,
128
+ "sdf": true
129
+ },
130
+ "atm2": {
131
+ "height": 66,
132
+ "width": 66,
133
+ "x": 264,
134
+ "y": 0,
135
+ "pixelRatio": 2,
136
+ "sdf": true
137
+ },
138
+ "balance_beam": {
139
+ "height": 66,
140
+ "width": 66,
141
+ "x": 264,
142
+ "y": 66,
143
+ "pixelRatio": 2,
144
+ "sdf": true
145
+ },
146
+ "balloon": {
147
+ "height": 66,
148
+ "width": 66,
149
+ "x": 264,
150
+ "y": 132,
151
+ "pixelRatio": 2,
152
+ "sdf": true
153
+ },
154
+ "barn": {
155
+ "height": 66,
156
+ "width": 66,
157
+ "x": 264,
158
+ "y": 198,
159
+ "pixelRatio": 2,
160
+ "sdf": true
161
+ },
162
+ "beach": {
163
+ "height": 66,
164
+ "width": 66,
165
+ "x": 0,
166
+ "y": 264,
167
+ "pixelRatio": 2,
168
+ "sdf": true
169
+ },
170
+ "beauty_salon": {
171
+ "height": 66,
172
+ "width": 66,
173
+ "x": 66,
174
+ "y": 264,
175
+ "pixelRatio": 2,
176
+ "sdf": true
177
+ },
178
+ "bench": {
179
+ "height": 66,
180
+ "width": 66,
181
+ "x": 132,
182
+ "y": 264,
183
+ "pixelRatio": 2,
184
+ "sdf": true
185
+ },
186
+ "benchmark_disk": {
187
+ "height": 66,
188
+ "width": 66,
189
+ "x": 198,
190
+ "y": 264,
191
+ "pixelRatio": 2,
192
+ "sdf": true
193
+ },
194
+ "bicycle_box": {
195
+ "height": 66,
196
+ "width": 66,
197
+ "x": 264,
198
+ "y": 264,
199
+ "pixelRatio": 2,
200
+ "sdf": true
201
+ },
202
+ "bicycle_locker": {
203
+ "height": 66,
204
+ "width": 66,
205
+ "x": 330,
206
+ "y": 0,
207
+ "pixelRatio": 2,
208
+ "sdf": true
209
+ },
210
+ "bicycle_parked": {
211
+ "height": 66,
212
+ "width": 66,
213
+ "x": 330,
214
+ "y": 66,
215
+ "pixelRatio": 2,
216
+ "sdf": true
217
+ },
218
+ "bicycle_rental": {
219
+ "height": 66,
220
+ "width": 66,
221
+ "x": 330,
222
+ "y": 132,
223
+ "pixelRatio": 2,
224
+ "sdf": true
225
+ },
226
+ "bicycle_repair": {
227
+ "height": 66,
228
+ "width": 66,
229
+ "x": 330,
230
+ "y": 198,
231
+ "pixelRatio": 2,
232
+ "sdf": true
233
+ },
234
+ "bicycle_shed": {
235
+ "height": 66,
236
+ "width": 66,
237
+ "x": 330,
238
+ "y": 264,
239
+ "pixelRatio": 2,
240
+ "sdf": true
241
+ },
242
+ "bicycle_structure": {
243
+ "height": 66,
244
+ "width": 66,
245
+ "x": 0,
246
+ "y": 330,
247
+ "pixelRatio": 2,
248
+ "sdf": true
249
+ },
250
+ "bicycle_wash": {
251
+ "height": 66,
252
+ "width": 66,
253
+ "x": 66,
254
+ "y": 330,
255
+ "pixelRatio": 2,
256
+ "sdf": true
257
+ },
258
+ "bikini": {
259
+ "height": 66,
260
+ "width": 66,
261
+ "x": 132,
262
+ "y": 330,
263
+ "pixelRatio": 2,
264
+ "sdf": true
265
+ },
266
+ "billboard": {
267
+ "height": 66,
268
+ "width": 66,
269
+ "x": 198,
270
+ "y": 330,
271
+ "pixelRatio": 2,
272
+ "sdf": true
273
+ },
274
+ "binoculars": {
275
+ "height": 66,
276
+ "width": 66,
277
+ "x": 264,
278
+ "y": 330,
279
+ "pixelRatio": 2,
280
+ "sdf": true
281
+ },
282
+ "bleachers": {
283
+ "height": 66,
284
+ "width": 66,
285
+ "x": 330,
286
+ "y": 330,
287
+ "pixelRatio": 2,
288
+ "sdf": true
289
+ },
290
+ "blind": {
291
+ "height": 66,
292
+ "width": 66,
293
+ "x": 396,
294
+ "y": 0,
295
+ "pixelRatio": 2,
296
+ "sdf": true
297
+ },
298
+ "board_bus": {
299
+ "height": 66,
300
+ "width": 66,
301
+ "x": 396,
302
+ "y": 66,
303
+ "pixelRatio": 2,
304
+ "sdf": true
305
+ },
306
+ "board_ferry": {
307
+ "height": 66,
308
+ "width": 66,
309
+ "x": 396,
310
+ "y": 132,
311
+ "pixelRatio": 2,
312
+ "sdf": true
313
+ },
314
+ "board_gondola_lift": {
315
+ "height": 66,
316
+ "width": 66,
317
+ "x": 396,
318
+ "y": 198,
319
+ "pixelRatio": 2,
320
+ "sdf": true
321
+ },
322
+ "board_hanging_rail": {
323
+ "height": 66,
324
+ "width": 66,
325
+ "x": 396,
326
+ "y": 264,
327
+ "pixelRatio": 2,
328
+ "sdf": true
329
+ },
330
+ "board_heavy_rail": {
331
+ "height": 66,
332
+ "width": 66,
333
+ "x": 396,
334
+ "y": 330,
335
+ "pixelRatio": 2,
336
+ "sdf": true
337
+ },
338
+ "board_light_rail": {
339
+ "height": 66,
340
+ "width": 66,
341
+ "x": 0,
342
+ "y": 396,
343
+ "pixelRatio": 2,
344
+ "sdf": true
345
+ },
346
+ "board_monorail": {
347
+ "height": 66,
348
+ "width": 66,
349
+ "x": 66,
350
+ "y": 396,
351
+ "pixelRatio": 2,
352
+ "sdf": true
353
+ },
354
+ "board_school_bus": {
355
+ "height": 66,
356
+ "width": 66,
357
+ "x": 132,
358
+ "y": 396,
359
+ "pixelRatio": 2,
360
+ "sdf": true
361
+ },
362
+ "board_subway": {
363
+ "height": 66,
364
+ "width": 66,
365
+ "x": 198,
366
+ "y": 396,
367
+ "pixelRatio": 2,
368
+ "sdf": true
369
+ },
370
+ "board_train": {
371
+ "height": 66,
372
+ "width": 66,
373
+ "x": 264,
374
+ "y": 396,
375
+ "pixelRatio": 2,
376
+ "sdf": true
377
+ },
378
+ "board_train_bullet": {
379
+ "height": 66,
380
+ "width": 66,
381
+ "x": 330,
382
+ "y": 396,
383
+ "pixelRatio": 2,
384
+ "sdf": true
385
+ },
386
+ "board_train_diesel": {
387
+ "height": 66,
388
+ "width": 66,
389
+ "x": 396,
390
+ "y": 396,
391
+ "pixelRatio": 2,
392
+ "sdf": true
393
+ },
394
+ "board_train_kids": {
395
+ "height": 66,
396
+ "width": 66,
397
+ "x": 462,
398
+ "y": 0,
399
+ "pixelRatio": 2,
400
+ "sdf": true
401
+ },
402
+ "board_train_steam": {
403
+ "height": 66,
404
+ "width": 66,
405
+ "x": 462,
406
+ "y": 66,
407
+ "pixelRatio": 2,
408
+ "sdf": true
409
+ },
410
+ "board_tram": {
411
+ "height": 66,
412
+ "width": 66,
413
+ "x": 462,
414
+ "y": 132,
415
+ "pixelRatio": 2,
416
+ "sdf": true
417
+ },
418
+ "board_transit": {
419
+ "height": 66,
420
+ "width": 66,
421
+ "x": 462,
422
+ "y": 198,
423
+ "pixelRatio": 2,
424
+ "sdf": true
425
+ },
426
+ "board_trolleybus": {
427
+ "height": 66,
428
+ "width": 66,
429
+ "x": 462,
430
+ "y": 264,
431
+ "pixelRatio": 2,
432
+ "sdf": true
433
+ },
434
+ "boat": {
435
+ "height": 66,
436
+ "width": 66,
437
+ "x": 462,
438
+ "y": 330,
439
+ "pixelRatio": 2,
440
+ "sdf": true
441
+ },
442
+ "boat_dry_dock": {
443
+ "height": 66,
444
+ "width": 66,
445
+ "x": 462,
446
+ "y": 396,
447
+ "pixelRatio": 2,
448
+ "sdf": true
449
+ },
450
+ "boat_floating": {
451
+ "height": 66,
452
+ "width": 66,
453
+ "x": 0,
454
+ "y": 462,
455
+ "pixelRatio": 2,
456
+ "sdf": true
457
+ },
458
+ "boat_ramp": {
459
+ "height": 66,
460
+ "width": 66,
461
+ "x": 66,
462
+ "y": 462,
463
+ "pixelRatio": 2,
464
+ "sdf": true
465
+ },
466
+ "boat_rental": {
467
+ "height": 66,
468
+ "width": 66,
469
+ "x": 132,
470
+ "y": 462,
471
+ "pixelRatio": 2,
472
+ "sdf": true
473
+ },
474
+ "boat_repair": {
475
+ "height": 66,
476
+ "width": 66,
477
+ "x": 198,
478
+ "y": 462,
479
+ "pixelRatio": 2,
480
+ "sdf": true
481
+ },
482
+ "boat_tour": {
483
+ "height": 66,
484
+ "width": 66,
485
+ "x": 264,
486
+ "y": 462,
487
+ "pixelRatio": 2,
488
+ "sdf": true
489
+ },
490
+ "boating": {
491
+ "height": 66,
492
+ "width": 66,
493
+ "x": 330,
494
+ "y": 462,
495
+ "pixelRatio": 2,
496
+ "sdf": true
497
+ },
498
+ "bollard": {
499
+ "height": 66,
500
+ "width": 66,
501
+ "x": 396,
502
+ "y": 462,
503
+ "pixelRatio": 2,
504
+ "sdf": true
505
+ },
506
+ "bollard_row": {
507
+ "height": 66,
508
+ "width": 66,
509
+ "x": 462,
510
+ "y": 462,
511
+ "pixelRatio": 2,
512
+ "sdf": true
513
+ },
514
+ "book_store": {
515
+ "height": 66,
516
+ "width": 66,
517
+ "x": 528,
518
+ "y": 0,
519
+ "pixelRatio": 2,
520
+ "sdf": true
521
+ },
522
+ "bottles": {
523
+ "height": 66,
524
+ "width": 66,
525
+ "x": 528,
526
+ "y": 66,
527
+ "pixelRatio": 2,
528
+ "sdf": true
529
+ },
530
+ "boulder1": {
531
+ "height": 66,
532
+ "width": 66,
533
+ "x": 528,
534
+ "y": 132,
535
+ "pixelRatio": 2,
536
+ "sdf": true
537
+ },
538
+ "boulder2": {
539
+ "height": 66,
540
+ "width": 66,
541
+ "x": 528,
542
+ "y": 198,
543
+ "pixelRatio": 2,
544
+ "sdf": true
545
+ },
546
+ "boulder3": {
547
+ "height": 66,
548
+ "width": 66,
549
+ "x": 528,
550
+ "y": 264,
551
+ "pixelRatio": 2,
552
+ "sdf": true
553
+ },
554
+ "bow_and_arrow": {
555
+ "height": 66,
556
+ "width": 66,
557
+ "x": 528,
558
+ "y": 330,
559
+ "pixelRatio": 2,
560
+ "sdf": true
561
+ },
562
+ "bowling": {
563
+ "height": 66,
564
+ "width": 66,
565
+ "x": 528,
566
+ "y": 396,
567
+ "pixelRatio": 2,
568
+ "sdf": true
569
+ },
570
+ "bowling_alt1": {
571
+ "height": 66,
572
+ "width": 66,
573
+ "x": 528,
574
+ "y": 462,
575
+ "pixelRatio": 2,
576
+ "sdf": true
577
+ },
578
+ "bread": {
579
+ "height": 66,
580
+ "width": 66,
581
+ "x": 0,
582
+ "y": 528,
583
+ "pixelRatio": 2,
584
+ "sdf": true
585
+ },
586
+ "brick_trowel": {
587
+ "height": 66,
588
+ "width": 66,
589
+ "x": 66,
590
+ "y": 528,
591
+ "pixelRatio": 2,
592
+ "sdf": true
593
+ },
594
+ "bridge": {
595
+ "height": 66,
596
+ "width": 66,
597
+ "x": 132,
598
+ "y": 528,
599
+ "pixelRatio": 2,
600
+ "sdf": true
601
+ },
602
+ "briefcase": {
603
+ "height": 66,
604
+ "width": 66,
605
+ "x": 198,
606
+ "y": 528,
607
+ "pixelRatio": 2,
608
+ "sdf": true
609
+ },
610
+ "briefcase_asterisk": {
611
+ "height": 66,
612
+ "width": 66,
613
+ "x": 264,
614
+ "y": 528,
615
+ "pixelRatio": 2,
616
+ "sdf": true
617
+ },
618
+ "briefcase_bolt": {
619
+ "height": 66,
620
+ "width": 66,
621
+ "x": 330,
622
+ "y": 528,
623
+ "pixelRatio": 2,
624
+ "sdf": true
625
+ },
626
+ "briefcase_cross": {
627
+ "height": 66,
628
+ "width": 66,
629
+ "x": 396,
630
+ "y": 528,
631
+ "pixelRatio": 2,
632
+ "sdf": true
633
+ },
634
+ "briefcase_info": {
635
+ "height": 66,
636
+ "width": 66,
637
+ "x": 462,
638
+ "y": 528,
639
+ "pixelRatio": 2,
640
+ "sdf": true
641
+ },
642
+ "briefcase_shield": {
643
+ "height": 66,
644
+ "width": 66,
645
+ "x": 528,
646
+ "y": 528,
647
+ "pixelRatio": 2,
648
+ "sdf": true
649
+ },
650
+ "bubble_tea": {
651
+ "height": 66,
652
+ "width": 66,
653
+ "x": 594,
654
+ "y": 0,
655
+ "pixelRatio": 2,
656
+ "sdf": true
657
+ },
658
+ "buffer_stop": {
659
+ "height": 66,
660
+ "width": 66,
661
+ "x": 594,
662
+ "y": 66,
663
+ "pixelRatio": 2,
664
+ "sdf": true
665
+ },
666
+ "bulb": {
667
+ "height": 66,
668
+ "width": 66,
669
+ "x": 594,
670
+ "y": 132,
671
+ "pixelRatio": 2,
672
+ "sdf": true
673
+ },
674
+ "bulb2": {
675
+ "height": 66,
676
+ "width": 66,
677
+ "x": 594,
678
+ "y": 198,
679
+ "pixelRatio": 2,
680
+ "sdf": true
681
+ },
682
+ "bulb3": {
683
+ "height": 66,
684
+ "width": 66,
685
+ "x": 594,
686
+ "y": 264,
687
+ "pixelRatio": 2,
688
+ "sdf": true
689
+ },
690
+ "bulldozer": {
691
+ "height": 66,
692
+ "width": 66,
693
+ "x": 594,
694
+ "y": 330,
695
+ "pixelRatio": 2,
696
+ "sdf": true
697
+ },
698
+ "bulletin_board": {
699
+ "height": 66,
700
+ "width": 66,
701
+ "x": 594,
702
+ "y": 396,
703
+ "pixelRatio": 2,
704
+ "sdf": true
705
+ },
706
+ "bunk_beds": {
707
+ "height": 66,
708
+ "width": 66,
709
+ "x": 594,
710
+ "y": 462,
711
+ "pixelRatio": 2,
712
+ "sdf": true
713
+ },
714
+ "bunker": {
715
+ "height": 66,
716
+ "width": 66,
717
+ "x": 594,
718
+ "y": 528,
719
+ "pixelRatio": 2,
720
+ "sdf": true
721
+ },
722
+ "bunker_silo": {
723
+ "height": 66,
724
+ "width": 66,
725
+ "x": 0,
726
+ "y": 594,
727
+ "pixelRatio": 2,
728
+ "sdf": true
729
+ },
730
+ "buoy": {
731
+ "height": 66,
732
+ "width": 66,
733
+ "x": 66,
734
+ "y": 594,
735
+ "pixelRatio": 2,
736
+ "sdf": true
737
+ },
738
+ "bus": {
739
+ "height": 66,
740
+ "width": 66,
741
+ "x": 132,
742
+ "y": 594,
743
+ "pixelRatio": 2,
744
+ "sdf": true
745
+ },
746
+ "bus_guided": {
747
+ "height": 66,
748
+ "width": 66,
749
+ "x": 198,
750
+ "y": 594,
751
+ "pixelRatio": 2,
752
+ "sdf": true
753
+ },
754
+ "cabin": {
755
+ "height": 66,
756
+ "width": 66,
757
+ "x": 264,
758
+ "y": 594,
759
+ "pixelRatio": 2,
760
+ "sdf": true
761
+ },
762
+ "cable": {
763
+ "height": 66,
764
+ "width": 66,
765
+ "x": 330,
766
+ "y": 594,
767
+ "pixelRatio": 2,
768
+ "sdf": true
769
+ },
770
+ "cable_device": {
771
+ "height": 66,
772
+ "width": 66,
773
+ "x": 396,
774
+ "y": 594,
775
+ "pixelRatio": 2,
776
+ "sdf": true
777
+ },
778
+ "cable_manhole": {
779
+ "height": 66,
780
+ "width": 66,
781
+ "x": 462,
782
+ "y": 594,
783
+ "pixelRatio": 2,
784
+ "sdf": true
785
+ },
786
+ "cable_meter": {
787
+ "height": 66,
788
+ "width": 66,
789
+ "x": 528,
790
+ "y": 594,
791
+ "pixelRatio": 2,
792
+ "sdf": true
793
+ },
794
+ "cable_shutoff": {
795
+ "height": 66,
796
+ "width": 66,
797
+ "x": 594,
798
+ "y": 594,
799
+ "pixelRatio": 2,
800
+ "sdf": true
801
+ },
802
+ "cairn": {
803
+ "height": 66,
804
+ "width": 66,
805
+ "x": 660,
806
+ "y": 0,
807
+ "pixelRatio": 2,
808
+ "sdf": true
809
+ },
810
+ "camper_trailer": {
811
+ "height": 66,
812
+ "width": 66,
813
+ "x": 660,
814
+ "y": 66,
815
+ "pixelRatio": 2,
816
+ "sdf": true
817
+ },
818
+ "camper_trailer_dump": {
819
+ "height": 66,
820
+ "width": 66,
821
+ "x": 660,
822
+ "y": 132,
823
+ "pixelRatio": 2,
824
+ "sdf": true
825
+ },
826
+ "campfire": {
827
+ "height": 66,
828
+ "width": 66,
829
+ "x": 660,
830
+ "y": 198,
831
+ "pixelRatio": 2,
832
+ "sdf": true
833
+ },
834
+ "can": {
835
+ "height": 66,
836
+ "width": 66,
837
+ "x": 660,
838
+ "y": 264,
839
+ "pixelRatio": 2,
840
+ "sdf": true
841
+ },
842
+ "canoe": {
843
+ "height": 66,
844
+ "width": 66,
845
+ "x": 660,
846
+ "y": 330,
847
+ "pixelRatio": 2,
848
+ "sdf": true
849
+ },
850
+ "cape_landform": {
851
+ "height": 66,
852
+ "width": 66,
853
+ "x": 660,
854
+ "y": 396,
855
+ "pixelRatio": 2,
856
+ "sdf": true
857
+ },
858
+ "capitol": {
859
+ "height": 66,
860
+ "width": 66,
861
+ "x": 660,
862
+ "y": 462,
863
+ "pixelRatio": 2,
864
+ "sdf": true
865
+ },
866
+ "car_dealer": {
867
+ "height": 66,
868
+ "width": 66,
869
+ "x": 660,
870
+ "y": 528,
871
+ "pixelRatio": 2,
872
+ "sdf": true
873
+ },
874
+ "car_parked": {
875
+ "height": 66,
876
+ "width": 66,
877
+ "x": 660,
878
+ "y": 594,
879
+ "pixelRatio": 2,
880
+ "sdf": true
881
+ },
882
+ "car_pool": {
883
+ "height": 66,
884
+ "width": 66,
885
+ "x": 0,
886
+ "y": 660,
887
+ "pixelRatio": 2,
888
+ "sdf": true
889
+ },
890
+ "car_structure": {
891
+ "height": 66,
892
+ "width": 66,
893
+ "x": 66,
894
+ "y": 660,
895
+ "pixelRatio": 2,
896
+ "sdf": true
897
+ },
898
+ "car_wash": {
899
+ "height": 66,
900
+ "width": 66,
901
+ "x": 132,
902
+ "y": 660,
903
+ "pixelRatio": 2,
904
+ "sdf": true
905
+ },
906
+ "carport": {
907
+ "height": 66,
908
+ "width": 66,
909
+ "x": 198,
910
+ "y": 660,
911
+ "pixelRatio": 2,
912
+ "sdf": true
913
+ },
914
+ "casino": {
915
+ "height": 66,
916
+ "width": 66,
917
+ "x": 264,
918
+ "y": 660,
919
+ "pixelRatio": 2,
920
+ "sdf": true
921
+ },
922
+ "catering": {
923
+ "height": 66,
924
+ "width": 66,
925
+ "x": 330,
926
+ "y": 660,
927
+ "pixelRatio": 2,
928
+ "sdf": true
929
+ },
930
+ "cattle_grid": {
931
+ "height": 66,
932
+ "width": 66,
933
+ "x": 396,
934
+ "y": 660,
935
+ "pixelRatio": 2,
936
+ "sdf": true
937
+ },
938
+ "chairlift": {
939
+ "height": 66,
940
+ "width": 66,
941
+ "x": 462,
942
+ "y": 660,
943
+ "pixelRatio": 2,
944
+ "sdf": true
945
+ },
946
+ "checkpoint": {
947
+ "height": 66,
948
+ "width": 66,
949
+ "x": 528,
950
+ "y": 660,
951
+ "pixelRatio": 2,
952
+ "sdf": true
953
+ },
954
+ "chefs_knife": {
955
+ "height": 66,
956
+ "width": 66,
957
+ "x": 594,
958
+ "y": 660,
959
+ "pixelRatio": 2,
960
+ "sdf": true
961
+ },
962
+ "chicane_arrow": {
963
+ "height": 66,
964
+ "width": 66,
965
+ "x": 660,
966
+ "y": 660,
967
+ "pixelRatio": 2,
968
+ "sdf": true
969
+ },
970
+ "chimney": {
971
+ "height": 66,
972
+ "width": 66,
973
+ "x": 726,
974
+ "y": 0,
975
+ "pixelRatio": 2,
976
+ "sdf": true
977
+ },
978
+ "chocolate": {
979
+ "height": 66,
980
+ "width": 66,
981
+ "x": 726,
982
+ "y": 66,
983
+ "pixelRatio": 2,
984
+ "sdf": true
985
+ },
986
+ "cleaver": {
987
+ "height": 66,
988
+ "width": 66,
989
+ "x": 726,
990
+ "y": 132,
991
+ "pixelRatio": 2,
992
+ "sdf": true
993
+ },
994
+ "cliff_falling_rocks": {
995
+ "height": 66,
996
+ "width": 66,
997
+ "x": 726,
998
+ "y": 198,
999
+ "pixelRatio": 2,
1000
+ "sdf": true
1001
+ },
1002
+ "climbing": {
1003
+ "height": 66,
1004
+ "width": 66,
1005
+ "x": 726,
1006
+ "y": 264,
1007
+ "pixelRatio": 2,
1008
+ "sdf": true
1009
+ },
1010
+ "clock": {
1011
+ "height": 66,
1012
+ "width": 66,
1013
+ "x": 726,
1014
+ "y": 330,
1015
+ "pixelRatio": 2,
1016
+ "sdf": true
1017
+ },
1018
+ "cloth": {
1019
+ "height": 66,
1020
+ "width": 66,
1021
+ "x": 726,
1022
+ "y": 396,
1023
+ "pixelRatio": 2,
1024
+ "sdf": true
1025
+ },
1026
+ "clothes_hanger": {
1027
+ "height": 66,
1028
+ "width": 66,
1029
+ "x": 726,
1030
+ "y": 462,
1031
+ "pixelRatio": 2,
1032
+ "sdf": true
1033
+ },
1034
+ "coffee": {
1035
+ "height": 66,
1036
+ "width": 66,
1037
+ "x": 726,
1038
+ "y": 528,
1039
+ "pixelRatio": 2,
1040
+ "sdf": true
1041
+ },
1042
+ "compass": {
1043
+ "height": 66,
1044
+ "width": 66,
1045
+ "x": 726,
1046
+ "y": 594,
1047
+ "pixelRatio": 2,
1048
+ "sdf": true
1049
+ },
1050
+ "conveyor": {
1051
+ "height": 66,
1052
+ "width": 66,
1053
+ "x": 726,
1054
+ "y": 660,
1055
+ "pixelRatio": 2,
1056
+ "sdf": true
1057
+ },
1058
+ "cooling_tower": {
1059
+ "height": 66,
1060
+ "width": 66,
1061
+ "x": 0,
1062
+ "y": 726,
1063
+ "pixelRatio": 2,
1064
+ "sdf": true
1065
+ },
1066
+ "cooling_tower_radiation": {
1067
+ "height": 66,
1068
+ "width": 66,
1069
+ "x": 66,
1070
+ "y": 726,
1071
+ "pixelRatio": 2,
1072
+ "sdf": true
1073
+ },
1074
+ "coral_reef": {
1075
+ "height": 66,
1076
+ "width": 66,
1077
+ "x": 132,
1078
+ "y": 726,
1079
+ "pixelRatio": 2,
1080
+ "sdf": true
1081
+ },
1082
+ "courthouse": {
1083
+ "height": 66,
1084
+ "width": 66,
1085
+ "x": 198,
1086
+ "y": 726,
1087
+ "pixelRatio": 2,
1088
+ "sdf": true
1089
+ },
1090
+ "crane": {
1091
+ "height": 66,
1092
+ "width": 66,
1093
+ "x": 264,
1094
+ "y": 726,
1095
+ "pixelRatio": 2,
1096
+ "sdf": true
1097
+ },
1098
+ "cross_country_skiing": {
1099
+ "height": 66,
1100
+ "width": 66,
1101
+ "x": 330,
1102
+ "y": 726,
1103
+ "pixelRatio": 2,
1104
+ "sdf": true
1105
+ },
1106
+ "crossing_markings-dashes": {
1107
+ "height": 66,
1108
+ "width": 66,
1109
+ "x": 396,
1110
+ "y": 726,
1111
+ "pixelRatio": 2,
1112
+ "sdf": true
1113
+ },
1114
+ "crossing_markings-dots": {
1115
+ "height": 66,
1116
+ "width": 66,
1117
+ "x": 462,
1118
+ "y": 726,
1119
+ "pixelRatio": 2,
1120
+ "sdf": true
1121
+ },
1122
+ "crossing_markings-ladder": {
1123
+ "height": 66,
1124
+ "width": 66,
1125
+ "x": 528,
1126
+ "y": 726,
1127
+ "pixelRatio": 2,
1128
+ "sdf": true
1129
+ },
1130
+ "crossing_markings-ladder_paired": {
1131
+ "height": 66,
1132
+ "width": 66,
1133
+ "x": 594,
1134
+ "y": 726,
1135
+ "pixelRatio": 2,
1136
+ "sdf": true
1137
+ },
1138
+ "crossing_markings-ladder_skewed": {
1139
+ "height": 66,
1140
+ "width": 66,
1141
+ "x": 660,
1142
+ "y": 726,
1143
+ "pixelRatio": 2,
1144
+ "sdf": true
1145
+ },
1146
+ "crossing_markings-lines": {
1147
+ "height": 66,
1148
+ "width": 66,
1149
+ "x": 726,
1150
+ "y": 726,
1151
+ "pixelRatio": 2,
1152
+ "sdf": true
1153
+ },
1154
+ "crossing_markings-lines_paired": {
1155
+ "height": 66,
1156
+ "width": 66,
1157
+ "x": 792,
1158
+ "y": 0,
1159
+ "pixelRatio": 2,
1160
+ "sdf": true
1161
+ },
1162
+ "crossing_markings-surface": {
1163
+ "height": 66,
1164
+ "width": 66,
1165
+ "x": 792,
1166
+ "y": 66,
1167
+ "pixelRatio": 2,
1168
+ "sdf": true
1169
+ },
1170
+ "crossing_markings-zebra": {
1171
+ "height": 66,
1172
+ "width": 66,
1173
+ "x": 792,
1174
+ "y": 132,
1175
+ "pixelRatio": 2,
1176
+ "sdf": true
1177
+ },
1178
+ "crossing_markings-zebra_bicolour": {
1179
+ "height": 66,
1180
+ "width": 66,
1181
+ "x": 792,
1182
+ "y": 198,
1183
+ "pixelRatio": 2,
1184
+ "sdf": true
1185
+ },
1186
+ "crossing_markings-zebra_double": {
1187
+ "height": 66,
1188
+ "width": 66,
1189
+ "x": 792,
1190
+ "y": 264,
1191
+ "pixelRatio": 2,
1192
+ "sdf": true
1193
+ },
1194
+ "crossing_markings-zebra_paired": {
1195
+ "height": 66,
1196
+ "width": 66,
1197
+ "x": 792,
1198
+ "y": 330,
1199
+ "pixelRatio": 2,
1200
+ "sdf": true
1201
+ },
1202
+ "crossing_rail_rail": {
1203
+ "height": 66,
1204
+ "width": 66,
1205
+ "x": 792,
1206
+ "y": 396,
1207
+ "pixelRatio": 2,
1208
+ "sdf": true
1209
+ },
1210
+ "crossing_rail_road": {
1211
+ "height": 66,
1212
+ "width": 66,
1213
+ "x": 792,
1214
+ "y": 462,
1215
+ "pixelRatio": 2,
1216
+ "sdf": true
1217
+ },
1218
+ "crossing_rail_solid": {
1219
+ "height": 66,
1220
+ "width": 66,
1221
+ "x": 792,
1222
+ "y": 528,
1223
+ "pixelRatio": 2,
1224
+ "sdf": true
1225
+ },
1226
+ "crossing_rail_striped": {
1227
+ "height": 66,
1228
+ "width": 66,
1229
+ "x": 792,
1230
+ "y": 594,
1231
+ "pixelRatio": 2,
1232
+ "sdf": true
1233
+ },
1234
+ "crossing_tram_road": {
1235
+ "height": 66,
1236
+ "width": 66,
1237
+ "x": 792,
1238
+ "y": 660,
1239
+ "pixelRatio": 2,
1240
+ "sdf": true
1241
+ },
1242
+ "crossing_tram_solid": {
1243
+ "height": 66,
1244
+ "width": 66,
1245
+ "x": 792,
1246
+ "y": 726,
1247
+ "pixelRatio": 2,
1248
+ "sdf": true
1249
+ },
1250
+ "crossing_tram_striped": {
1251
+ "height": 66,
1252
+ "width": 66,
1253
+ "x": 0,
1254
+ "y": 792,
1255
+ "pixelRatio": 2,
1256
+ "sdf": true
1257
+ },
1258
+ "curtains": {
1259
+ "height": 66,
1260
+ "width": 66,
1261
+ "x": 66,
1262
+ "y": 792,
1263
+ "pixelRatio": 2,
1264
+ "sdf": true
1265
+ },
1266
+ "cycle_barrier": {
1267
+ "height": 66,
1268
+ "width": 66,
1269
+ "x": 132,
1270
+ "y": 792,
1271
+ "pixelRatio": 2,
1272
+ "sdf": true
1273
+ },
1274
+ "cyclist_crosswalk": {
1275
+ "height": 66,
1276
+ "width": 66,
1277
+ "x": 198,
1278
+ "y": 792,
1279
+ "pixelRatio": 2,
1280
+ "sdf": true
1281
+ },
1282
+ "dagger": {
1283
+ "height": 66,
1284
+ "width": 66,
1285
+ "x": 264,
1286
+ "y": 792,
1287
+ "pixelRatio": 2,
1288
+ "sdf": true
1289
+ },
1290
+ "desk_lamp": {
1291
+ "height": 66,
1292
+ "width": 66,
1293
+ "x": 330,
1294
+ "y": 792,
1295
+ "pixelRatio": 2,
1296
+ "sdf": true
1297
+ },
1298
+ "detergent_bottle": {
1299
+ "height": 66,
1300
+ "width": 66,
1301
+ "x": 396,
1302
+ "y": 792,
1303
+ "pixelRatio": 2,
1304
+ "sdf": true
1305
+ },
1306
+ "diamond": {
1307
+ "height": 66,
1308
+ "width": 66,
1309
+ "x": 462,
1310
+ "y": 792,
1311
+ "pixelRatio": 2,
1312
+ "sdf": true
1313
+ },
1314
+ "dice": {
1315
+ "height": 66,
1316
+ "width": 66,
1317
+ "x": 528,
1318
+ "y": 792,
1319
+ "pixelRatio": 2,
1320
+ "sdf": true
1321
+ },
1322
+ "disc_golf_basket": {
1323
+ "height": 66,
1324
+ "width": 66,
1325
+ "x": 594,
1326
+ "y": 792,
1327
+ "pixelRatio": 2,
1328
+ "sdf": true
1329
+ },
1330
+ "diving": {
1331
+ "height": 66,
1332
+ "width": 66,
1333
+ "x": 660,
1334
+ "y": 792,
1335
+ "pixelRatio": 2,
1336
+ "sdf": true
1337
+ },
1338
+ "dog_shelter": {
1339
+ "height": 66,
1340
+ "width": 66,
1341
+ "x": 726,
1342
+ "y": 792,
1343
+ "pixelRatio": 2,
1344
+ "sdf": true
1345
+ },
1346
+ "domed_tower": {
1347
+ "height": 66,
1348
+ "width": 66,
1349
+ "x": 792,
1350
+ "y": 792,
1351
+ "pixelRatio": 2,
1352
+ "sdf": true
1353
+ },
1354
+ "donut": {
1355
+ "height": 66,
1356
+ "width": 66,
1357
+ "x": 858,
1358
+ "y": 0,
1359
+ "pixelRatio": 2,
1360
+ "sdf": true
1361
+ },
1362
+ "drag_lift": {
1363
+ "height": 66,
1364
+ "width": 66,
1365
+ "x": 858,
1366
+ "y": 66,
1367
+ "pixelRatio": 2,
1368
+ "sdf": true
1369
+ },
1370
+ "dress": {
1371
+ "height": 66,
1372
+ "width": 66,
1373
+ "x": 858,
1374
+ "y": 132,
1375
+ "pixelRatio": 2,
1376
+ "sdf": true
1377
+ },
1378
+ "drink_cup": {
1379
+ "height": 66,
1380
+ "width": 66,
1381
+ "x": 858,
1382
+ "y": 198,
1383
+ "pixelRatio": 2,
1384
+ "sdf": true
1385
+ },
1386
+ "ear": {
1387
+ "height": 66,
1388
+ "width": 66,
1389
+ "x": 858,
1390
+ "y": 264,
1391
+ "pixelRatio": 2,
1392
+ "sdf": true
1393
+ },
1394
+ "egg": {
1395
+ "height": 66,
1396
+ "width": 66,
1397
+ "x": 858,
1398
+ "y": 330,
1399
+ "pixelRatio": 2,
1400
+ "sdf": true
1401
+ },
1402
+ "electronic": {
1403
+ "height": 66,
1404
+ "width": 66,
1405
+ "x": 858,
1406
+ "y": 396,
1407
+ "pixelRatio": 2,
1408
+ "sdf": true
1409
+ },
1410
+ "elevator": {
1411
+ "height": 66,
1412
+ "width": 66,
1413
+ "x": 858,
1414
+ "y": 462,
1415
+ "pixelRatio": 2,
1416
+ "sdf": true
1417
+ },
1418
+ "embassy": {
1419
+ "height": 66,
1420
+ "width": 66,
1421
+ "x": 858,
1422
+ "y": 528,
1423
+ "pixelRatio": 2,
1424
+ "sdf": true
1425
+ },
1426
+ "fashion_accessories": {
1427
+ "height": 66,
1428
+ "width": 66,
1429
+ "x": 858,
1430
+ "y": 594,
1431
+ "pixelRatio": 2,
1432
+ "sdf": true
1433
+ },
1434
+ "ferry": {
1435
+ "height": 66,
1436
+ "width": 66,
1437
+ "x": 858,
1438
+ "y": 660,
1439
+ "pixelRatio": 2,
1440
+ "sdf": true
1441
+ },
1442
+ "field_hockey": {
1443
+ "height": 66,
1444
+ "width": 66,
1445
+ "x": 858,
1446
+ "y": 726,
1447
+ "pixelRatio": 2,
1448
+ "sdf": true
1449
+ },
1450
+ "fighter_jet": {
1451
+ "height": 66,
1452
+ "width": 66,
1453
+ "x": 858,
1454
+ "y": 792,
1455
+ "pixelRatio": 2,
1456
+ "sdf": true
1457
+ },
1458
+ "fire_hydrant": {
1459
+ "height": 66,
1460
+ "width": 66,
1461
+ "x": 0,
1462
+ "y": 858,
1463
+ "pixelRatio": 2,
1464
+ "sdf": true
1465
+ },
1466
+ "fire_hydrant_underground": {
1467
+ "height": 66,
1468
+ "width": 66,
1469
+ "x": 66,
1470
+ "y": 858,
1471
+ "pixelRatio": 2,
1472
+ "sdf": true
1473
+ },
1474
+ "fireplace": {
1475
+ "height": 66,
1476
+ "width": 66,
1477
+ "x": 132,
1478
+ "y": 858,
1479
+ "pixelRatio": 2,
1480
+ "sdf": true
1481
+ },
1482
+ "fish_cleaning": {
1483
+ "height": 66,
1484
+ "width": 66,
1485
+ "x": 198,
1486
+ "y": 858,
1487
+ "pixelRatio": 2,
1488
+ "sdf": true
1489
+ },
1490
+ "fish_ladder": {
1491
+ "height": 66,
1492
+ "width": 66,
1493
+ "x": 264,
1494
+ "y": 858,
1495
+ "pixelRatio": 2,
1496
+ "sdf": true
1497
+ },
1498
+ "fishing_pier": {
1499
+ "height": 66,
1500
+ "width": 66,
1501
+ "x": 330,
1502
+ "y": 858,
1503
+ "pixelRatio": 2,
1504
+ "sdf": true
1505
+ },
1506
+ "florist": {
1507
+ "height": 66,
1508
+ "width": 66,
1509
+ "x": 396,
1510
+ "y": 858,
1511
+ "pixelRatio": 2,
1512
+ "sdf": true
1513
+ },
1514
+ "food": {
1515
+ "height": 66,
1516
+ "width": 66,
1517
+ "x": 462,
1518
+ "y": 858,
1519
+ "pixelRatio": 2,
1520
+ "sdf": true
1521
+ },
1522
+ "footwear_decontamination": {
1523
+ "height": 66,
1524
+ "width": 66,
1525
+ "x": 528,
1526
+ "y": 858,
1527
+ "pixelRatio": 2,
1528
+ "sdf": true
1529
+ },
1530
+ "fountain": {
1531
+ "height": 66,
1532
+ "width": 66,
1533
+ "x": 594,
1534
+ "y": 858,
1535
+ "pixelRatio": 2,
1536
+ "sdf": true
1537
+ },
1538
+ "freight_car": {
1539
+ "height": 66,
1540
+ "width": 66,
1541
+ "x": 660,
1542
+ "y": 858,
1543
+ "pixelRatio": 2,
1544
+ "sdf": true
1545
+ },
1546
+ "furniture": {
1547
+ "height": 66,
1548
+ "width": 66,
1549
+ "x": 726,
1550
+ "y": 858,
1551
+ "pixelRatio": 2,
1552
+ "sdf": true
1553
+ },
1554
+ "garden_bed": {
1555
+ "height": 66,
1556
+ "width": 66,
1557
+ "x": 792,
1558
+ "y": 858,
1559
+ "pixelRatio": 2,
1560
+ "sdf": true
1561
+ },
1562
+ "gas": {
1563
+ "height": 66,
1564
+ "width": 66,
1565
+ "x": 858,
1566
+ "y": 858,
1567
+ "pixelRatio": 2,
1568
+ "sdf": true
1569
+ },
1570
+ "gas_device": {
1571
+ "height": 66,
1572
+ "width": 66,
1573
+ "x": 924,
1574
+ "y": 0,
1575
+ "pixelRatio": 2,
1576
+ "sdf": true
1577
+ },
1578
+ "gas_manhole": {
1579
+ "height": 66,
1580
+ "width": 66,
1581
+ "x": 924,
1582
+ "y": 66,
1583
+ "pixelRatio": 2,
1584
+ "sdf": true
1585
+ },
1586
+ "gas_meter": {
1587
+ "height": 66,
1588
+ "width": 66,
1589
+ "x": 924,
1590
+ "y": 132,
1591
+ "pixelRatio": 2,
1592
+ "sdf": true
1593
+ },
1594
+ "gas_shutoff": {
1595
+ "height": 66,
1596
+ "width": 66,
1597
+ "x": 924,
1598
+ "y": 198,
1599
+ "pixelRatio": 2,
1600
+ "sdf": true
1601
+ },
1602
+ "gate": {
1603
+ "height": 66,
1604
+ "width": 66,
1605
+ "x": 924,
1606
+ "y": 264,
1607
+ "pixelRatio": 2,
1608
+ "sdf": true
1609
+ },
1610
+ "golf_cart": {
1611
+ "height": 66,
1612
+ "width": 66,
1613
+ "x": 924,
1614
+ "y": 330,
1615
+ "pixelRatio": 2,
1616
+ "sdf": true
1617
+ },
1618
+ "golf_green": {
1619
+ "height": 66,
1620
+ "width": 66,
1621
+ "x": 924,
1622
+ "y": 396,
1623
+ "pixelRatio": 2,
1624
+ "sdf": true
1625
+ },
1626
+ "gondola_lift": {
1627
+ "height": 66,
1628
+ "width": 66,
1629
+ "x": 924,
1630
+ "y": 462,
1631
+ "pixelRatio": 2,
1632
+ "sdf": true
1633
+ },
1634
+ "goods_lift": {
1635
+ "height": 66,
1636
+ "width": 66,
1637
+ "x": 924,
1638
+ "y": 528,
1639
+ "pixelRatio": 2,
1640
+ "sdf": true
1641
+ },
1642
+ "gown": {
1643
+ "height": 66,
1644
+ "width": 66,
1645
+ "x": 924,
1646
+ "y": 594,
1647
+ "pixelRatio": 2,
1648
+ "sdf": true
1649
+ },
1650
+ "grapes": {
1651
+ "height": 66,
1652
+ "width": 66,
1653
+ "x": 924,
1654
+ "y": 660,
1655
+ "pixelRatio": 2,
1656
+ "sdf": true
1657
+ },
1658
+ "grass": {
1659
+ "height": 66,
1660
+ "width": 66,
1661
+ "x": 924,
1662
+ "y": 726,
1663
+ "pixelRatio": 2,
1664
+ "sdf": true
1665
+ },
1666
+ "guard_rail": {
1667
+ "height": 66,
1668
+ "width": 66,
1669
+ "x": 924,
1670
+ "y": 792,
1671
+ "pixelRatio": 2,
1672
+ "sdf": true
1673
+ },
1674
+ "gym": {
1675
+ "height": 66,
1676
+ "width": 66,
1677
+ "x": 924,
1678
+ "y": 858,
1679
+ "pixelRatio": 2,
1680
+ "sdf": true
1681
+ },
1682
+ "hair_care": {
1683
+ "height": 66,
1684
+ "width": 66,
1685
+ "x": 0,
1686
+ "y": 924,
1687
+ "pixelRatio": 2,
1688
+ "sdf": true
1689
+ },
1690
+ "hammer_shoe": {
1691
+ "height": 66,
1692
+ "width": 66,
1693
+ "x": 66,
1694
+ "y": 924,
1695
+ "pixelRatio": 2,
1696
+ "sdf": true
1697
+ },
1698
+ "hand": {
1699
+ "height": 66,
1700
+ "width": 66,
1701
+ "x": 132,
1702
+ "y": 924,
1703
+ "pixelRatio": 2,
1704
+ "sdf": true
1705
+ },
1706
+ "handbag": {
1707
+ "height": 66,
1708
+ "width": 66,
1709
+ "x": 198,
1710
+ "y": 924,
1711
+ "pixelRatio": 2,
1712
+ "sdf": true
1713
+ },
1714
+ "hang_gliding": {
1715
+ "height": 66,
1716
+ "width": 66,
1717
+ "x": 264,
1718
+ "y": 924,
1719
+ "pixelRatio": 2,
1720
+ "sdf": true
1721
+ },
1722
+ "hangar": {
1723
+ "height": 66,
1724
+ "width": 66,
1725
+ "x": 330,
1726
+ "y": 924,
1727
+ "pixelRatio": 2,
1728
+ "sdf": true
1729
+ },
1730
+ "hanging_rail": {
1731
+ "height": 66,
1732
+ "width": 66,
1733
+ "x": 396,
1734
+ "y": 924,
1735
+ "pixelRatio": 2,
1736
+ "sdf": true
1737
+ },
1738
+ "hearing_aid": {
1739
+ "height": 66,
1740
+ "width": 66,
1741
+ "x": 462,
1742
+ "y": 924,
1743
+ "pixelRatio": 2,
1744
+ "sdf": true
1745
+ },
1746
+ "heart": {
1747
+ "height": 66,
1748
+ "width": 66,
1749
+ "x": 528,
1750
+ "y": 924,
1751
+ "pixelRatio": 2,
1752
+ "sdf": true
1753
+ },
1754
+ "heavy_rail": {
1755
+ "height": 66,
1756
+ "width": 66,
1757
+ "x": 594,
1758
+ "y": 924,
1759
+ "pixelRatio": 2,
1760
+ "sdf": true
1761
+ },
1762
+ "hedge": {
1763
+ "height": 66,
1764
+ "width": 66,
1765
+ "x": 660,
1766
+ "y": 924,
1767
+ "pixelRatio": 2,
1768
+ "sdf": true
1769
+ },
1770
+ "height_restrictor": {
1771
+ "height": 66,
1772
+ "width": 66,
1773
+ "x": 726,
1774
+ "y": 924,
1775
+ "pixelRatio": 2,
1776
+ "sdf": true
1777
+ },
1778
+ "hinduism": {
1779
+ "height": 66,
1780
+ "width": 66,
1781
+ "x": 792,
1782
+ "y": 924,
1783
+ "pixelRatio": 2,
1784
+ "sdf": true
1785
+ },
1786
+ "horizontal_bar": {
1787
+ "height": 66,
1788
+ "width": 66,
1789
+ "x": 858,
1790
+ "y": 924,
1791
+ "pixelRatio": 2,
1792
+ "sdf": true
1793
+ },
1794
+ "horn_cleat": {
1795
+ "height": 66,
1796
+ "width": 66,
1797
+ "x": 924,
1798
+ "y": 924,
1799
+ "pixelRatio": 2,
1800
+ "sdf": true
1801
+ },
1802
+ "horse_shelter": {
1803
+ "height": 66,
1804
+ "width": 66,
1805
+ "x": 990,
1806
+ "y": 0,
1807
+ "pixelRatio": 2,
1808
+ "sdf": true
1809
+ },
1810
+ "horseshoe": {
1811
+ "height": 66,
1812
+ "width": 66,
1813
+ "x": 990,
1814
+ "y": 66,
1815
+ "pixelRatio": 2,
1816
+ "sdf": true
1817
+ },
1818
+ "horseshoes": {
1819
+ "height": 66,
1820
+ "width": 66,
1821
+ "x": 990,
1822
+ "y": 132,
1823
+ "pixelRatio": 2,
1824
+ "sdf": true
1825
+ },
1826
+ "hot_drink_cup": {
1827
+ "height": 66,
1828
+ "width": 66,
1829
+ "x": 990,
1830
+ "y": 198,
1831
+ "pixelRatio": 2,
1832
+ "sdf": true
1833
+ },
1834
+ "houseboat": {
1835
+ "height": 66,
1836
+ "width": 66,
1837
+ "x": 990,
1838
+ "y": 264,
1839
+ "pixelRatio": 2,
1840
+ "sdf": true
1841
+ },
1842
+ "hunting_blind": {
1843
+ "height": 66,
1844
+ "width": 66,
1845
+ "x": 990,
1846
+ "y": 330,
1847
+ "pixelRatio": 2,
1848
+ "sdf": true
1849
+ },
1850
+ "hut": {
1851
+ "height": 66,
1852
+ "width": 66,
1853
+ "x": 990,
1854
+ "y": 396,
1855
+ "pixelRatio": 2,
1856
+ "sdf": true
1857
+ },
1858
+ "ice_fishing": {
1859
+ "height": 66,
1860
+ "width": 66,
1861
+ "x": 990,
1862
+ "y": 462,
1863
+ "pixelRatio": 2,
1864
+ "sdf": true
1865
+ },
1866
+ "ice_skating": {
1867
+ "height": 66,
1868
+ "width": 66,
1869
+ "x": 990,
1870
+ "y": 528,
1871
+ "pixelRatio": 2,
1872
+ "sdf": true
1873
+ },
1874
+ "info_board": {
1875
+ "height": 66,
1876
+ "width": 66,
1877
+ "x": 990,
1878
+ "y": 594,
1879
+ "pixelRatio": 2,
1880
+ "sdf": true
1881
+ },
1882
+ "inline_skating": {
1883
+ "height": 66,
1884
+ "width": 66,
1885
+ "x": 990,
1886
+ "y": 660,
1887
+ "pixelRatio": 2,
1888
+ "sdf": true
1889
+ },
1890
+ "island_trees_building": {
1891
+ "height": 66,
1892
+ "width": 66,
1893
+ "x": 990,
1894
+ "y": 726,
1895
+ "pixelRatio": 2,
1896
+ "sdf": true
1897
+ },
1898
+ "islet_tree": {
1899
+ "height": 66,
1900
+ "width": 66,
1901
+ "x": 990,
1902
+ "y": 792,
1903
+ "pixelRatio": 2,
1904
+ "sdf": true
1905
+ },
1906
+ "j_bar_lift": {
1907
+ "height": 66,
1908
+ "width": 66,
1909
+ "x": 990,
1910
+ "y": 858,
1911
+ "pixelRatio": 2,
1912
+ "sdf": true
1913
+ },
1914
+ "jet_skiing": {
1915
+ "height": 66,
1916
+ "width": 66,
1917
+ "x": 990,
1918
+ "y": 924,
1919
+ "pixelRatio": 2,
1920
+ "sdf": true
1921
+ },
1922
+ "jetplane_front": {
1923
+ "height": 66,
1924
+ "width": 66,
1925
+ "x": 0,
1926
+ "y": 990,
1927
+ "pixelRatio": 2,
1928
+ "sdf": true
1929
+ },
1930
+ "jewelry_store": {
1931
+ "height": 66,
1932
+ "width": 66,
1933
+ "x": 66,
1934
+ "y": 990,
1935
+ "pixelRatio": 2,
1936
+ "sdf": true
1937
+ },
1938
+ "junction": {
1939
+ "height": 66,
1940
+ "width": 66,
1941
+ "x": 132,
1942
+ "y": 990,
1943
+ "pixelRatio": 2,
1944
+ "sdf": true
1945
+ },
1946
+ "junk_car": {
1947
+ "height": 66,
1948
+ "width": 66,
1949
+ "x": 198,
1950
+ "y": 990,
1951
+ "pixelRatio": 2,
1952
+ "sdf": true
1953
+ },
1954
+ "kayaking": {
1955
+ "height": 66,
1956
+ "width": 66,
1957
+ "x": 264,
1958
+ "y": 990,
1959
+ "pixelRatio": 2,
1960
+ "sdf": true
1961
+ },
1962
+ "kerb-flush": {
1963
+ "height": 66,
1964
+ "width": 66,
1965
+ "x": 330,
1966
+ "y": 990,
1967
+ "pixelRatio": 2,
1968
+ "sdf": true
1969
+ },
1970
+ "kerb-lowered": {
1971
+ "height": 66,
1972
+ "width": 66,
1973
+ "x": 396,
1974
+ "y": 990,
1975
+ "pixelRatio": 2,
1976
+ "sdf": true
1977
+ },
1978
+ "kerb-raised": {
1979
+ "height": 66,
1980
+ "width": 66,
1981
+ "x": 462,
1982
+ "y": 990,
1983
+ "pixelRatio": 2,
1984
+ "sdf": true
1985
+ },
1986
+ "kerb-rolled": {
1987
+ "height": 66,
1988
+ "width": 66,
1989
+ "x": 528,
1990
+ "y": 990,
1991
+ "pixelRatio": 2,
1992
+ "sdf": true
1993
+ },
1994
+ "kerb-unspecified": {
1995
+ "height": 66,
1996
+ "width": 66,
1997
+ "x": 594,
1998
+ "y": 990,
1999
+ "pixelRatio": 2,
2000
+ "sdf": true
2001
+ },
2002
+ "kitchen_sink": {
2003
+ "height": 66,
2004
+ "width": 66,
2005
+ "x": 660,
2006
+ "y": 990,
2007
+ "pixelRatio": 2,
2008
+ "sdf": true
2009
+ },
2010
+ "latrine": {
2011
+ "height": 66,
2012
+ "width": 66,
2013
+ "x": 726,
2014
+ "y": 990,
2015
+ "pixelRatio": 2,
2016
+ "sdf": true
2017
+ },
2018
+ "laundry": {
2019
+ "height": 66,
2020
+ "width": 66,
2021
+ "x": 792,
2022
+ "y": 990,
2023
+ "pixelRatio": 2,
2024
+ "sdf": true
2025
+ },
2026
+ "lawn": {
2027
+ "height": 66,
2028
+ "width": 66,
2029
+ "x": 858,
2030
+ "y": 990,
2031
+ "pixelRatio": 2,
2032
+ "sdf": true
2033
+ },
2034
+ "lawyer": {
2035
+ "height": 66,
2036
+ "width": 66,
2037
+ "x": 924,
2038
+ "y": 990,
2039
+ "pixelRatio": 2,
2040
+ "sdf": true
2041
+ },
2042
+ "letter_box": {
2043
+ "height": 66,
2044
+ "width": 66,
2045
+ "x": 990,
2046
+ "y": 990,
2047
+ "pixelRatio": 2,
2048
+ "sdf": true
2049
+ },
2050
+ "library": {
2051
+ "height": 66,
2052
+ "width": 66,
2053
+ "x": 1056,
2054
+ "y": 0,
2055
+ "pixelRatio": 2,
2056
+ "sdf": true
2057
+ },
2058
+ "lift_gate": {
2059
+ "height": 66,
2060
+ "width": 66,
2061
+ "x": 1056,
2062
+ "y": 66,
2063
+ "pixelRatio": 2,
2064
+ "sdf": true
2065
+ },
2066
+ "light_rail": {
2067
+ "height": 66,
2068
+ "width": 66,
2069
+ "x": 1056,
2070
+ "y": 132,
2071
+ "pixelRatio": 2,
2072
+ "sdf": true
2073
+ },
2074
+ "lipstick": {
2075
+ "height": 66,
2076
+ "width": 66,
2077
+ "x": 1056,
2078
+ "y": 198,
2079
+ "pixelRatio": 2,
2080
+ "sdf": true
2081
+ },
2082
+ "lock": {
2083
+ "height": 66,
2084
+ "width": 66,
2085
+ "x": 1056,
2086
+ "y": 264,
2087
+ "pixelRatio": 2,
2088
+ "sdf": true
2089
+ },
2090
+ "lounger": {
2091
+ "height": 66,
2092
+ "width": 66,
2093
+ "x": 1056,
2094
+ "y": 330,
2095
+ "pixelRatio": 2,
2096
+ "sdf": true
2097
+ },
2098
+ "lounging": {
2099
+ "height": 66,
2100
+ "width": 66,
2101
+ "x": 1056,
2102
+ "y": 396,
2103
+ "pixelRatio": 2,
2104
+ "sdf": true
2105
+ },
2106
+ "manhole": {
2107
+ "height": 66,
2108
+ "width": 66,
2109
+ "x": 1056,
2110
+ "y": 462,
2111
+ "pixelRatio": 2,
2112
+ "sdf": true
2113
+ },
2114
+ "manufactured_home": {
2115
+ "height": 66,
2116
+ "width": 66,
2117
+ "x": 1056,
2118
+ "y": 528,
2119
+ "pixelRatio": 2,
2120
+ "sdf": true
2121
+ },
2122
+ "mast": {
2123
+ "height": 66,
2124
+ "width": 66,
2125
+ "x": 1056,
2126
+ "y": 594,
2127
+ "pixelRatio": 2,
2128
+ "sdf": true
2129
+ },
2130
+ "mast_communication": {
2131
+ "height": 66,
2132
+ "width": 66,
2133
+ "x": 1056,
2134
+ "y": 660,
2135
+ "pixelRatio": 2,
2136
+ "sdf": true
2137
+ },
2138
+ "mast_lighting": {
2139
+ "height": 66,
2140
+ "width": 66,
2141
+ "x": 1056,
2142
+ "y": 726,
2143
+ "pixelRatio": 2,
2144
+ "sdf": true
2145
+ },
2146
+ "maze": {
2147
+ "height": 66,
2148
+ "width": 66,
2149
+ "x": 1056,
2150
+ "y": 792,
2151
+ "pixelRatio": 2,
2152
+ "sdf": true
2153
+ },
2154
+ "meat": {
2155
+ "height": 66,
2156
+ "width": 66,
2157
+ "x": 1056,
2158
+ "y": 858,
2159
+ "pixelRatio": 2,
2160
+ "sdf": true
2161
+ },
2162
+ "milestone": {
2163
+ "height": 66,
2164
+ "width": 66,
2165
+ "x": 1056,
2166
+ "y": 924,
2167
+ "pixelRatio": 2,
2168
+ "sdf": true
2169
+ },
2170
+ "military": {
2171
+ "height": 66,
2172
+ "width": 66,
2173
+ "x": 1056,
2174
+ "y": 990,
2175
+ "pixelRatio": 2,
2176
+ "sdf": true
2177
+ },
2178
+ "military_checkpoint": {
2179
+ "height": 66,
2180
+ "width": 66,
2181
+ "x": 0,
2182
+ "y": 1056,
2183
+ "pixelRatio": 2,
2184
+ "sdf": true
2185
+ },
2186
+ "milk_jug": {
2187
+ "height": 66,
2188
+ "width": 66,
2189
+ "x": 66,
2190
+ "y": 1056,
2191
+ "pixelRatio": 2,
2192
+ "sdf": true
2193
+ },
2194
+ "mineshaft_cage": {
2195
+ "height": 66,
2196
+ "width": 66,
2197
+ "x": 132,
2198
+ "y": 1056,
2199
+ "pixelRatio": 2,
2200
+ "sdf": true
2201
+ },
2202
+ "mineshaft_profile": {
2203
+ "height": 66,
2204
+ "width": 66,
2205
+ "x": 198,
2206
+ "y": 1056,
2207
+ "pixelRatio": 2,
2208
+ "sdf": true
2209
+ },
2210
+ "money_hand": {
2211
+ "height": 66,
2212
+ "width": 66,
2213
+ "x": 264,
2214
+ "y": 1056,
2215
+ "pixelRatio": 2,
2216
+ "sdf": true
2217
+ },
2218
+ "monorail": {
2219
+ "height": 66,
2220
+ "width": 66,
2221
+ "x": 330,
2222
+ "y": 1056,
2223
+ "pixelRatio": 2,
2224
+ "sdf": true
2225
+ },
2226
+ "motorcycle": {
2227
+ "height": 66,
2228
+ "width": 66,
2229
+ "x": 396,
2230
+ "y": 1056,
2231
+ "pixelRatio": 2,
2232
+ "sdf": true
2233
+ },
2234
+ "motorcycle_rental": {
2235
+ "height": 66,
2236
+ "width": 66,
2237
+ "x": 462,
2238
+ "y": 1056,
2239
+ "pixelRatio": 2,
2240
+ "sdf": true
2241
+ },
2242
+ "motorcycle_repair": {
2243
+ "height": 66,
2244
+ "width": 66,
2245
+ "x": 528,
2246
+ "y": 1056,
2247
+ "pixelRatio": 2,
2248
+ "sdf": true
2249
+ },
2250
+ "mountain_asterisk": {
2251
+ "height": 66,
2252
+ "width": 66,
2253
+ "x": 594,
2254
+ "y": 1056,
2255
+ "pixelRatio": 2,
2256
+ "sdf": true
2257
+ },
2258
+ "mountain_cross": {
2259
+ "height": 66,
2260
+ "width": 66,
2261
+ "x": 660,
2262
+ "y": 1056,
2263
+ "pixelRatio": 2,
2264
+ "sdf": true
2265
+ },
2266
+ "mountain_range": {
2267
+ "height": 66,
2268
+ "width": 66,
2269
+ "x": 726,
2270
+ "y": 1056,
2271
+ "pixelRatio": 2,
2272
+ "sdf": true
2273
+ },
2274
+ "movie_rental": {
2275
+ "height": 66,
2276
+ "width": 66,
2277
+ "x": 792,
2278
+ "y": 1056,
2279
+ "pixelRatio": 2,
2280
+ "sdf": true
2281
+ },
2282
+ "museum": {
2283
+ "height": 66,
2284
+ "width": 66,
2285
+ "x": 858,
2286
+ "y": 1056,
2287
+ "pixelRatio": 2,
2288
+ "sdf": true
2289
+ },
2290
+ "needle_and_spool": {
2291
+ "height": 66,
2292
+ "width": 66,
2293
+ "x": 924,
2294
+ "y": 1056,
2295
+ "pixelRatio": 2,
2296
+ "sdf": true
2297
+ },
2298
+ "obelisk": {
2299
+ "height": 66,
2300
+ "width": 66,
2301
+ "x": 990,
2302
+ "y": 1056,
2303
+ "pixelRatio": 2,
2304
+ "sdf": true
2305
+ },
2306
+ "oil_well": {
2307
+ "height": 66,
2308
+ "width": 66,
2309
+ "x": 1056,
2310
+ "y": 1056,
2311
+ "pixelRatio": 2,
2312
+ "sdf": true
2313
+ },
2314
+ "os_benchmark": {
2315
+ "height": 66,
2316
+ "width": 66,
2317
+ "x": 1122,
2318
+ "y": 0,
2319
+ "pixelRatio": 2,
2320
+ "sdf": true
2321
+ },
2322
+ "parking_space": {
2323
+ "height": 66,
2324
+ "width": 66,
2325
+ "x": 1122,
2326
+ "y": 66,
2327
+ "pixelRatio": 2,
2328
+ "sdf": true
2329
+ },
2330
+ "passport_checkpoint": {
2331
+ "height": 66,
2332
+ "width": 66,
2333
+ "x": 1122,
2334
+ "y": 132,
2335
+ "pixelRatio": 2,
2336
+ "sdf": true
2337
+ },
2338
+ "ped_cyclist_crosswalk": {
2339
+ "height": 66,
2340
+ "width": 66,
2341
+ "x": 1122,
2342
+ "y": 198,
2343
+ "pixelRatio": 2,
2344
+ "sdf": true
2345
+ },
2346
+ "pedestrian": {
2347
+ "height": 66,
2348
+ "width": 66,
2349
+ "x": 1122,
2350
+ "y": 264,
2351
+ "pixelRatio": 2,
2352
+ "sdf": true
2353
+ },
2354
+ "pedestrian_and_cyclist": {
2355
+ "height": 66,
2356
+ "width": 66,
2357
+ "x": 1122,
2358
+ "y": 330,
2359
+ "pixelRatio": 2,
2360
+ "sdf": true
2361
+ },
2362
+ "pedestrian_crosswalk": {
2363
+ "height": 66,
2364
+ "width": 66,
2365
+ "x": 1122,
2366
+ "y": 396,
2367
+ "pixelRatio": 2,
2368
+ "sdf": true
2369
+ },
2370
+ "pedestrian_walled": {
2371
+ "height": 66,
2372
+ "width": 66,
2373
+ "x": 1122,
2374
+ "y": 462,
2375
+ "pixelRatio": 2,
2376
+ "sdf": true
2377
+ },
2378
+ "perfume": {
2379
+ "height": 66,
2380
+ "width": 66,
2381
+ "x": 1122,
2382
+ "y": 528,
2383
+ "pixelRatio": 2,
2384
+ "sdf": true
2385
+ },
2386
+ "pet_grooming": {
2387
+ "height": 66,
2388
+ "width": 66,
2389
+ "x": 1122,
2390
+ "y": 594,
2391
+ "pixelRatio": 2,
2392
+ "sdf": true
2393
+ },
2394
+ "pet_store": {
2395
+ "height": 66,
2396
+ "width": 66,
2397
+ "x": 1122,
2398
+ "y": 660,
2399
+ "pixelRatio": 2,
2400
+ "sdf": true
2401
+ },
2402
+ "pharmacy": {
2403
+ "height": 66,
2404
+ "width": 66,
2405
+ "x": 1122,
2406
+ "y": 726,
2407
+ "pixelRatio": 2,
2408
+ "sdf": true
2409
+ },
2410
+ "physiotherapist": {
2411
+ "height": 66,
2412
+ "width": 66,
2413
+ "x": 1122,
2414
+ "y": 792,
2415
+ "pixelRatio": 2,
2416
+ "sdf": true
2417
+ },
2418
+ "pick_hammer": {
2419
+ "height": 66,
2420
+ "width": 66,
2421
+ "x": 1122,
2422
+ "y": 858,
2423
+ "pixelRatio": 2,
2424
+ "sdf": true
2425
+ },
2426
+ "picnic_shelter": {
2427
+ "height": 66,
2428
+ "width": 66,
2429
+ "x": 1122,
2430
+ "y": 924,
2431
+ "pixelRatio": 2,
2432
+ "sdf": true
2433
+ },
2434
+ "pier_fixed": {
2435
+ "height": 66,
2436
+ "width": 66,
2437
+ "x": 1122,
2438
+ "y": 990,
2439
+ "pixelRatio": 2,
2440
+ "sdf": true
2441
+ },
2442
+ "pier_floating": {
2443
+ "height": 66,
2444
+ "width": 66,
2445
+ "x": 1122,
2446
+ "y": 1056,
2447
+ "pixelRatio": 2,
2448
+ "sdf": true
2449
+ },
2450
+ "pin": {
2451
+ "height": 66,
2452
+ "width": 66,
2453
+ "x": 0,
2454
+ "y": 1122,
2455
+ "pixelRatio": 2,
2456
+ "sdf": true
2457
+ },
2458
+ "pipe": {
2459
+ "height": 66,
2460
+ "width": 66,
2461
+ "x": 66,
2462
+ "y": 1122,
2463
+ "pixelRatio": 2,
2464
+ "sdf": true
2465
+ },
2466
+ "plane_taxiing": {
2467
+ "height": 66,
2468
+ "width": 66,
2469
+ "x": 132,
2470
+ "y": 1122,
2471
+ "pixelRatio": 2,
2472
+ "sdf": true
2473
+ },
2474
+ "planes": {
2475
+ "height": 66,
2476
+ "width": 66,
2477
+ "x": 198,
2478
+ "y": 1122,
2479
+ "pixelRatio": 2,
2480
+ "sdf": true
2481
+ },
2482
+ "planes_bidirectional": {
2483
+ "height": 66,
2484
+ "width": 66,
2485
+ "x": 264,
2486
+ "y": 1122,
2487
+ "pixelRatio": 2,
2488
+ "sdf": true
2489
+ },
2490
+ "plant": {
2491
+ "height": 66,
2492
+ "width": 66,
2493
+ "x": 330,
2494
+ "y": 1122,
2495
+ "pixelRatio": 2,
2496
+ "sdf": true
2497
+ },
2498
+ "plaque": {
2499
+ "height": 66,
2500
+ "width": 66,
2501
+ "x": 396,
2502
+ "y": 1122,
2503
+ "pixelRatio": 2,
2504
+ "sdf": true
2505
+ },
2506
+ "platter_lift": {
2507
+ "height": 66,
2508
+ "width": 66,
2509
+ "x": 462,
2510
+ "y": 1122,
2511
+ "pixelRatio": 2,
2512
+ "sdf": true
2513
+ },
2514
+ "play_structure": {
2515
+ "height": 66,
2516
+ "width": 66,
2517
+ "x": 528,
2518
+ "y": 1122,
2519
+ "pixelRatio": 2,
2520
+ "sdf": true
2521
+ },
2522
+ "plumber": {
2523
+ "height": 66,
2524
+ "width": 66,
2525
+ "x": 594,
2526
+ "y": 1122,
2527
+ "pixelRatio": 2,
2528
+ "sdf": true
2529
+ },
2530
+ "police_checkpoint": {
2531
+ "height": 66,
2532
+ "width": 66,
2533
+ "x": 660,
2534
+ "y": 1122,
2535
+ "pixelRatio": 2,
2536
+ "sdf": true
2537
+ },
2538
+ "police_officer": {
2539
+ "height": 66,
2540
+ "width": 66,
2541
+ "x": 726,
2542
+ "y": 1122,
2543
+ "pixelRatio": 2,
2544
+ "sdf": true
2545
+ },
2546
+ "polished_nail": {
2547
+ "height": 66,
2548
+ "width": 66,
2549
+ "x": 792,
2550
+ "y": 1122,
2551
+ "pixelRatio": 2,
2552
+ "sdf": true
2553
+ },
2554
+ "portrait": {
2555
+ "height": 66,
2556
+ "width": 66,
2557
+ "x": 858,
2558
+ "y": 1122,
2559
+ "pixelRatio": 2,
2560
+ "sdf": true
2561
+ },
2562
+ "portrait_framed": {
2563
+ "height": 66,
2564
+ "width": 66,
2565
+ "x": 924,
2566
+ "y": 1122,
2567
+ "pixelRatio": 2,
2568
+ "sdf": true
2569
+ },
2570
+ "post_box": {
2571
+ "height": 66,
2572
+ "width": 66,
2573
+ "x": 990,
2574
+ "y": 1122,
2575
+ "pixelRatio": 2,
2576
+ "sdf": true
2577
+ },
2578
+ "poster_box": {
2579
+ "height": 66,
2580
+ "width": 66,
2581
+ "x": 1056,
2582
+ "y": 1122,
2583
+ "pixelRatio": 2,
2584
+ "sdf": true
2585
+ },
2586
+ "power": {
2587
+ "height": 66,
2588
+ "width": 66,
2589
+ "x": 1122,
2590
+ "y": 1122,
2591
+ "pixelRatio": 2,
2592
+ "sdf": true
2593
+ },
2594
+ "power_cb": {
2595
+ "height": 66,
2596
+ "width": 66,
2597
+ "x": 1188,
2598
+ "y": 0,
2599
+ "pixelRatio": 2,
2600
+ "sdf": true
2601
+ },
2602
+ "power_cb2": {
2603
+ "height": 66,
2604
+ "width": 66,
2605
+ "x": 1188,
2606
+ "y": 66,
2607
+ "pixelRatio": 2,
2608
+ "sdf": true
2609
+ },
2610
+ "power_circuit": {
2611
+ "height": 66,
2612
+ "width": 66,
2613
+ "x": 1188,
2614
+ "y": 132,
2615
+ "pixelRatio": 2,
2616
+ "sdf": true
2617
+ },
2618
+ "power_ct": {
2619
+ "height": 66,
2620
+ "width": 66,
2621
+ "x": 1188,
2622
+ "y": 198,
2623
+ "pixelRatio": 2,
2624
+ "sdf": true
2625
+ },
2626
+ "power_device": {
2627
+ "height": 66,
2628
+ "width": 66,
2629
+ "x": 1188,
2630
+ "y": 264,
2631
+ "pixelRatio": 2,
2632
+ "sdf": true
2633
+ },
2634
+ "power_isolator": {
2635
+ "height": 66,
2636
+ "width": 66,
2637
+ "x": 1188,
2638
+ "y": 330,
2639
+ "pixelRatio": 2,
2640
+ "sdf": true
2641
+ },
2642
+ "power_la": {
2643
+ "height": 66,
2644
+ "width": 66,
2645
+ "x": 1188,
2646
+ "y": 396,
2647
+ "pixelRatio": 2,
2648
+ "sdf": true
2649
+ },
2650
+ "power_manhole": {
2651
+ "height": 66,
2652
+ "width": 66,
2653
+ "x": 1188,
2654
+ "y": 462,
2655
+ "pixelRatio": 2,
2656
+ "sdf": true
2657
+ },
2658
+ "power_meter": {
2659
+ "height": 66,
2660
+ "width": 66,
2661
+ "x": 1188,
2662
+ "y": 528,
2663
+ "pixelRatio": 2,
2664
+ "sdf": true
2665
+ },
2666
+ "power_pole": {
2667
+ "height": 66,
2668
+ "width": 66,
2669
+ "x": 1188,
2670
+ "y": 594,
2671
+ "pixelRatio": 2,
2672
+ "sdf": true
2673
+ },
2674
+ "power_shutoff": {
2675
+ "height": 66,
2676
+ "width": 66,
2677
+ "x": 1188,
2678
+ "y": 660,
2679
+ "pixelRatio": 2,
2680
+ "sdf": true
2681
+ },
2682
+ "power_switch": {
2683
+ "height": 66,
2684
+ "width": 66,
2685
+ "x": 1188,
2686
+ "y": 726,
2687
+ "pixelRatio": 2,
2688
+ "sdf": true
2689
+ },
2690
+ "power_tower": {
2691
+ "height": 66,
2692
+ "width": 66,
2693
+ "x": 1188,
2694
+ "y": 792,
2695
+ "pixelRatio": 2,
2696
+ "sdf": true
2697
+ },
2698
+ "power_transformer": {
2699
+ "height": 66,
2700
+ "width": 66,
2701
+ "x": 1188,
2702
+ "y": 858,
2703
+ "pixelRatio": 2,
2704
+ "sdf": true
2705
+ },
2706
+ "powered_pump": {
2707
+ "height": 66,
2708
+ "width": 66,
2709
+ "x": 1188,
2710
+ "y": 924,
2711
+ "pixelRatio": 2,
2712
+ "sdf": true
2713
+ },
2714
+ "propane_tank": {
2715
+ "height": 66,
2716
+ "width": 66,
2717
+ "x": 1188,
2718
+ "y": 990,
2719
+ "pixelRatio": 2,
2720
+ "sdf": true
2721
+ },
2722
+ "psychic": {
2723
+ "height": 66,
2724
+ "width": 66,
2725
+ "x": 1188,
2726
+ "y": 1056,
2727
+ "pixelRatio": 2,
2728
+ "sdf": true
2729
+ },
2730
+ "quakerism": {
2731
+ "height": 66,
2732
+ "width": 66,
2733
+ "x": 1188,
2734
+ "y": 1122,
2735
+ "pixelRatio": 2,
2736
+ "sdf": true
2737
+ },
2738
+ "quay": {
2739
+ "height": 66,
2740
+ "width": 66,
2741
+ "x": 0,
2742
+ "y": 1188,
2743
+ "pixelRatio": 2,
2744
+ "sdf": true
2745
+ },
2746
+ "racetrack_oval": {
2747
+ "height": 66,
2748
+ "width": 66,
2749
+ "x": 66,
2750
+ "y": 1188,
2751
+ "pixelRatio": 2,
2752
+ "sdf": true
2753
+ },
2754
+ "radiation": {
2755
+ "height": 66,
2756
+ "width": 66,
2757
+ "x": 132,
2758
+ "y": 1188,
2759
+ "pixelRatio": 2,
2760
+ "sdf": true
2761
+ },
2762
+ "radio": {
2763
+ "height": 66,
2764
+ "width": 66,
2765
+ "x": 198,
2766
+ "y": 1188,
2767
+ "pixelRatio": 2,
2768
+ "sdf": true
2769
+ },
2770
+ "rafting": {
2771
+ "height": 66,
2772
+ "width": 66,
2773
+ "x": 264,
2774
+ "y": 1188,
2775
+ "pixelRatio": 2,
2776
+ "sdf": true
2777
+ },
2778
+ "rail_flag": {
2779
+ "height": 66,
2780
+ "width": 66,
2781
+ "x": 330,
2782
+ "y": 1188,
2783
+ "pixelRatio": 2,
2784
+ "sdf": true
2785
+ },
2786
+ "rail_profile": {
2787
+ "height": 66,
2788
+ "width": 66,
2789
+ "x": 396,
2790
+ "y": 1188,
2791
+ "pixelRatio": 2,
2792
+ "sdf": true
2793
+ },
2794
+ "railing": {
2795
+ "height": 66,
2796
+ "width": 66,
2797
+ "x": 462,
2798
+ "y": 1188,
2799
+ "pixelRatio": 2,
2800
+ "sdf": true
2801
+ },
2802
+ "railway_cable_track": {
2803
+ "height": 66,
2804
+ "width": 66,
2805
+ "x": 528,
2806
+ "y": 1188,
2807
+ "pixelRatio": 2,
2808
+ "sdf": true
2809
+ },
2810
+ "railway_signals": {
2811
+ "height": 66,
2812
+ "width": 66,
2813
+ "x": 594,
2814
+ "y": 1188,
2815
+ "pixelRatio": 2,
2816
+ "sdf": true
2817
+ },
2818
+ "railway_track": {
2819
+ "height": 66,
2820
+ "width": 66,
2821
+ "x": 660,
2822
+ "y": 1188,
2823
+ "pixelRatio": 2,
2824
+ "sdf": true
2825
+ },
2826
+ "railway_track_askew": {
2827
+ "height": 66,
2828
+ "width": 66,
2829
+ "x": 726,
2830
+ "y": 1188,
2831
+ "pixelRatio": 2,
2832
+ "sdf": true
2833
+ },
2834
+ "railway_track_mini": {
2835
+ "height": 66,
2836
+ "width": 66,
2837
+ "x": 792,
2838
+ "y": 1188,
2839
+ "pixelRatio": 2,
2840
+ "sdf": true
2841
+ },
2842
+ "railway_track_narrow": {
2843
+ "height": 66,
2844
+ "width": 66,
2845
+ "x": 858,
2846
+ "y": 1188,
2847
+ "pixelRatio": 2,
2848
+ "sdf": true
2849
+ },
2850
+ "railway_track_partial": {
2851
+ "height": 66,
2852
+ "width": 66,
2853
+ "x": 924,
2854
+ "y": 1188,
2855
+ "pixelRatio": 2,
2856
+ "sdf": true
2857
+ },
2858
+ "real_estate_agency": {
2859
+ "height": 66,
2860
+ "width": 66,
2861
+ "x": 990,
2862
+ "y": 1188,
2863
+ "pixelRatio": 2,
2864
+ "sdf": true
2865
+ },
2866
+ "rigging": {
2867
+ "height": 66,
2868
+ "width": 66,
2869
+ "x": 1056,
2870
+ "y": 1188,
2871
+ "pixelRatio": 2,
2872
+ "sdf": true
2873
+ },
2874
+ "rocket_firework": {
2875
+ "height": 66,
2876
+ "width": 66,
2877
+ "x": 1122,
2878
+ "y": 1188,
2879
+ "pixelRatio": 2,
2880
+ "sdf": true
2881
+ },
2882
+ "roller_coaster": {
2883
+ "height": 66,
2884
+ "width": 66,
2885
+ "x": 1188,
2886
+ "y": 1188,
2887
+ "pixelRatio": 2,
2888
+ "sdf": true
2889
+ },
2890
+ "room": {
2891
+ "height": 66,
2892
+ "width": 66,
2893
+ "x": 1254,
2894
+ "y": 0,
2895
+ "pixelRatio": 2,
2896
+ "sdf": true
2897
+ },
2898
+ "rope_fence": {
2899
+ "height": 66,
2900
+ "width": 66,
2901
+ "x": 1254,
2902
+ "y": 66,
2903
+ "pixelRatio": 2,
2904
+ "sdf": true
2905
+ },
2906
+ "row_houses": {
2907
+ "height": 66,
2908
+ "width": 66,
2909
+ "x": 1254,
2910
+ "y": 132,
2911
+ "pixelRatio": 2,
2912
+ "sdf": true
2913
+ },
2914
+ "ruins": {
2915
+ "height": 66,
2916
+ "width": 66,
2917
+ "x": 1254,
2918
+ "y": 198,
2919
+ "pixelRatio": 2,
2920
+ "sdf": true
2921
+ },
2922
+ "rumble_strip": {
2923
+ "height": 66,
2924
+ "width": 66,
2925
+ "x": 1254,
2926
+ "y": 264,
2927
+ "pixelRatio": 2,
2928
+ "sdf": true
2929
+ },
2930
+ "saddle": {
2931
+ "height": 66,
2932
+ "width": 66,
2933
+ "x": 1254,
2934
+ "y": 330,
2935
+ "pixelRatio": 2,
2936
+ "sdf": true
2937
+ },
2938
+ "sail": {
2939
+ "height": 66,
2940
+ "width": 66,
2941
+ "x": 1254,
2942
+ "y": 396,
2943
+ "pixelRatio": 2,
2944
+ "sdf": true
2945
+ },
2946
+ "sailboat": {
2947
+ "height": 66,
2948
+ "width": 66,
2949
+ "x": 1254,
2950
+ "y": 462,
2951
+ "pixelRatio": 2,
2952
+ "sdf": true
2953
+ },
2954
+ "sailing": {
2955
+ "height": 66,
2956
+ "width": 66,
2957
+ "x": 1254,
2958
+ "y": 528,
2959
+ "pixelRatio": 2,
2960
+ "sdf": true
2961
+ },
2962
+ "sandbox": {
2963
+ "height": 66,
2964
+ "width": 66,
2965
+ "x": 1254,
2966
+ "y": 594,
2967
+ "pixelRatio": 2,
2968
+ "sdf": true
2969
+ },
2970
+ "sandwich": {
2971
+ "height": 66,
2972
+ "width": 66,
2973
+ "x": 1254,
2974
+ "y": 660,
2975
+ "pixelRatio": 2,
2976
+ "sdf": true
2977
+ },
2978
+ "scaffold": {
2979
+ "height": 66,
2980
+ "width": 66,
2981
+ "x": 1254,
2982
+ "y": 726,
2983
+ "pixelRatio": 2,
2984
+ "sdf": true
2985
+ },
2986
+ "school": {
2987
+ "height": 66,
2988
+ "width": 66,
2989
+ "x": 1254,
2990
+ "y": 792,
2991
+ "pixelRatio": 2,
2992
+ "sdf": true
2993
+ },
2994
+ "school_bus": {
2995
+ "height": 66,
2996
+ "width": 66,
2997
+ "x": 1254,
2998
+ "y": 858,
2999
+ "pixelRatio": 2,
3000
+ "sdf": true
3001
+ },
3002
+ "scuba_diving": {
3003
+ "height": 66,
3004
+ "width": 66,
3005
+ "x": 1254,
3006
+ "y": 924,
3007
+ "pixelRatio": 2,
3008
+ "sdf": true
3009
+ },
3010
+ "sculpture": {
3011
+ "height": 66,
3012
+ "width": 66,
3013
+ "x": 1254,
3014
+ "y": 990,
3015
+ "pixelRatio": 2,
3016
+ "sdf": true
3017
+ },
3018
+ "security_camera": {
3019
+ "height": 66,
3020
+ "width": 66,
3021
+ "x": 1254,
3022
+ "y": 1056,
3023
+ "pixelRatio": 2,
3024
+ "sdf": true
3025
+ },
3026
+ "seesaw": {
3027
+ "height": 66,
3028
+ "width": 66,
3029
+ "x": 1254,
3030
+ "y": 1122,
3031
+ "pixelRatio": 2,
3032
+ "sdf": true
3033
+ },
3034
+ "shield": {
3035
+ "height": 66,
3036
+ "width": 66,
3037
+ "x": 1254,
3038
+ "y": 1188,
3039
+ "pixelRatio": 2,
3040
+ "sdf": true
3041
+ },
3042
+ "shinto": {
3043
+ "height": 66,
3044
+ "width": 66,
3045
+ "x": 0,
3046
+ "y": 1254,
3047
+ "pixelRatio": 2,
3048
+ "sdf": true
3049
+ },
3050
+ "shopping_mall": {
3051
+ "height": 66,
3052
+ "width": 66,
3053
+ "x": 66,
3054
+ "y": 1254,
3055
+ "pixelRatio": 2,
3056
+ "sdf": true
3057
+ },
3058
+ "shower": {
3059
+ "height": 66,
3060
+ "width": 66,
3061
+ "x": 132,
3062
+ "y": 1254,
3063
+ "pixelRatio": 2,
3064
+ "sdf": true
3065
+ },
3066
+ "shrub": {
3067
+ "height": 66,
3068
+ "width": 66,
3069
+ "x": 198,
3070
+ "y": 1254,
3071
+ "pixelRatio": 2,
3072
+ "sdf": true
3073
+ },
3074
+ "shrub_low": {
3075
+ "height": 66,
3076
+ "width": 66,
3077
+ "x": 264,
3078
+ "y": 1254,
3079
+ "pixelRatio": 2,
3080
+ "sdf": true
3081
+ },
3082
+ "shuffleboard": {
3083
+ "height": 66,
3084
+ "width": 66,
3085
+ "x": 330,
3086
+ "y": 1254,
3087
+ "pixelRatio": 2,
3088
+ "sdf": true
3089
+ },
3090
+ "sign_and_bench": {
3091
+ "height": 66,
3092
+ "width": 66,
3093
+ "x": 396,
3094
+ "y": 1254,
3095
+ "pixelRatio": 2,
3096
+ "sdf": true
3097
+ },
3098
+ "sign_and_car": {
3099
+ "height": 66,
3100
+ "width": 66,
3101
+ "x": 462,
3102
+ "y": 1254,
3103
+ "pixelRatio": 2,
3104
+ "sdf": true
3105
+ },
3106
+ "sign_and_pedestrian": {
3107
+ "height": 66,
3108
+ "width": 66,
3109
+ "x": 528,
3110
+ "y": 1254,
3111
+ "pixelRatio": 2,
3112
+ "sdf": true
3113
+ },
3114
+ "sikhism": {
3115
+ "height": 66,
3116
+ "width": 66,
3117
+ "x": 594,
3118
+ "y": 1254,
3119
+ "pixelRatio": 2,
3120
+ "sdf": true
3121
+ },
3122
+ "silo": {
3123
+ "height": 66,
3124
+ "width": 66,
3125
+ "x": 660,
3126
+ "y": 1254,
3127
+ "pixelRatio": 2,
3128
+ "sdf": true
3129
+ },
3130
+ "skateboarding": {
3131
+ "height": 66,
3132
+ "width": 66,
3133
+ "x": 726,
3134
+ "y": 1254,
3135
+ "pixelRatio": 2,
3136
+ "sdf": true
3137
+ },
3138
+ "ski_jumping": {
3139
+ "height": 66,
3140
+ "width": 66,
3141
+ "x": 792,
3142
+ "y": 1254,
3143
+ "pixelRatio": 2,
3144
+ "sdf": true
3145
+ },
3146
+ "skiing": {
3147
+ "height": 66,
3148
+ "width": 66,
3149
+ "x": 858,
3150
+ "y": 1254,
3151
+ "pixelRatio": 2,
3152
+ "sdf": true
3153
+ },
3154
+ "sledding": {
3155
+ "height": 66,
3156
+ "width": 66,
3157
+ "x": 924,
3158
+ "y": 1254,
3159
+ "pixelRatio": 2,
3160
+ "sdf": true
3161
+ },
3162
+ "sleep_shelter": {
3163
+ "height": 66,
3164
+ "width": 66,
3165
+ "x": 990,
3166
+ "y": 1254,
3167
+ "pixelRatio": 2,
3168
+ "sdf": true
3169
+ },
3170
+ "slide": {
3171
+ "height": 66,
3172
+ "width": 66,
3173
+ "x": 1056,
3174
+ "y": 1254,
3175
+ "pixelRatio": 2,
3176
+ "sdf": true
3177
+ },
3178
+ "snow": {
3179
+ "height": 66,
3180
+ "width": 66,
3181
+ "x": 1122,
3182
+ "y": 1254,
3183
+ "pixelRatio": 2,
3184
+ "sdf": true
3185
+ },
3186
+ "snow_shoeing": {
3187
+ "height": 66,
3188
+ "width": 66,
3189
+ "x": 1188,
3190
+ "y": 1254,
3191
+ "pixelRatio": 2,
3192
+ "sdf": true
3193
+ },
3194
+ "snowboarding": {
3195
+ "height": 66,
3196
+ "width": 66,
3197
+ "x": 1254,
3198
+ "y": 1254,
3199
+ "pixelRatio": 2,
3200
+ "sdf": true
3201
+ },
3202
+ "snowmobile": {
3203
+ "height": 66,
3204
+ "width": 66,
3205
+ "x": 1320,
3206
+ "y": 0,
3207
+ "pixelRatio": 2,
3208
+ "sdf": true
3209
+ },
3210
+ "social_facility": {
3211
+ "height": 66,
3212
+ "width": 66,
3213
+ "x": 1320,
3214
+ "y": 66,
3215
+ "pixelRatio": 2,
3216
+ "sdf": true
3217
+ },
3218
+ "spa": {
3219
+ "height": 66,
3220
+ "width": 66,
3221
+ "x": 1320,
3222
+ "y": 132,
3223
+ "pixelRatio": 2,
3224
+ "sdf": true
3225
+ },
3226
+ "speaker": {
3227
+ "height": 66,
3228
+ "width": 66,
3229
+ "x": 1320,
3230
+ "y": 198,
3231
+ "pixelRatio": 2,
3232
+ "sdf": true
3233
+ },
3234
+ "speed_bump": {
3235
+ "height": 66,
3236
+ "width": 66,
3237
+ "x": 1320,
3238
+ "y": 264,
3239
+ "pixelRatio": 2,
3240
+ "sdf": true
3241
+ },
3242
+ "speed_dip": {
3243
+ "height": 66,
3244
+ "width": 66,
3245
+ "x": 1320,
3246
+ "y": 330,
3247
+ "pixelRatio": 2,
3248
+ "sdf": true
3249
+ },
3250
+ "speed_dip_double": {
3251
+ "height": 66,
3252
+ "width": 66,
3253
+ "x": 1320,
3254
+ "y": 396,
3255
+ "pixelRatio": 2,
3256
+ "sdf": true
3257
+ },
3258
+ "speed_hump": {
3259
+ "height": 66,
3260
+ "width": 66,
3261
+ "x": 1320,
3262
+ "y": 462,
3263
+ "pixelRatio": 2,
3264
+ "sdf": true
3265
+ },
3266
+ "speed_table": {
3267
+ "height": 66,
3268
+ "width": 66,
3269
+ "x": 1320,
3270
+ "y": 528,
3271
+ "pixelRatio": 2,
3272
+ "sdf": true
3273
+ },
3274
+ "speedway_8": {
3275
+ "height": 66,
3276
+ "width": 66,
3277
+ "x": 1320,
3278
+ "y": 594,
3279
+ "pixelRatio": 2,
3280
+ "sdf": true
3281
+ },
3282
+ "speedway_oval": {
3283
+ "height": 66,
3284
+ "width": 66,
3285
+ "x": 1320,
3286
+ "y": 660,
3287
+ "pixelRatio": 2,
3288
+ "sdf": true
3289
+ },
3290
+ "spice_bottle": {
3291
+ "height": 66,
3292
+ "width": 66,
3293
+ "x": 1320,
3294
+ "y": 726,
3295
+ "pixelRatio": 2,
3296
+ "sdf": true
3297
+ },
3298
+ "spike_strip": {
3299
+ "height": 66,
3300
+ "width": 66,
3301
+ "x": 1320,
3302
+ "y": 792,
3303
+ "pixelRatio": 2,
3304
+ "sdf": true
3305
+ },
3306
+ "spotting_scope": {
3307
+ "height": 66,
3308
+ "width": 66,
3309
+ "x": 1320,
3310
+ "y": 858,
3311
+ "pixelRatio": 2,
3312
+ "sdf": true
3313
+ },
3314
+ "spring_rider": {
3315
+ "height": 66,
3316
+ "width": 66,
3317
+ "x": 1320,
3318
+ "y": 924,
3319
+ "pixelRatio": 2,
3320
+ "sdf": true
3321
+ },
3322
+ "stamp": {
3323
+ "height": 66,
3324
+ "width": 66,
3325
+ "x": 1320,
3326
+ "y": 990,
3327
+ "pixelRatio": 2,
3328
+ "sdf": true
3329
+ },
3330
+ "statue": {
3331
+ "height": 66,
3332
+ "width": 66,
3333
+ "x": 1320,
3334
+ "y": 1056,
3335
+ "pixelRatio": 2,
3336
+ "sdf": true
3337
+ },
3338
+ "stile_squeezer": {
3339
+ "height": 66,
3340
+ "width": 66,
3341
+ "x": 1320,
3342
+ "y": 1122,
3343
+ "pixelRatio": 2,
3344
+ "sdf": true
3345
+ },
3346
+ "stop": {
3347
+ "height": 66,
3348
+ "width": 66,
3349
+ "x": 1320,
3350
+ "y": 1188,
3351
+ "pixelRatio": 2,
3352
+ "sdf": true
3353
+ },
3354
+ "storage": {
3355
+ "height": 66,
3356
+ "width": 66,
3357
+ "x": 1320,
3358
+ "y": 1254,
3359
+ "pixelRatio": 2,
3360
+ "sdf": true
3361
+ },
3362
+ "storage_drum": {
3363
+ "height": 66,
3364
+ "width": 66,
3365
+ "x": 0,
3366
+ "y": 1320,
3367
+ "pixelRatio": 2,
3368
+ "sdf": true
3369
+ },
3370
+ "storage_fermenter": {
3371
+ "height": 66,
3372
+ "width": 66,
3373
+ "x": 66,
3374
+ "y": 1320,
3375
+ "pixelRatio": 2,
3376
+ "sdf": true
3377
+ },
3378
+ "storage_rental": {
3379
+ "height": 66,
3380
+ "width": 66,
3381
+ "x": 132,
3382
+ "y": 1320,
3383
+ "pixelRatio": 2,
3384
+ "sdf": true
3385
+ },
3386
+ "storage_tank": {
3387
+ "height": 66,
3388
+ "width": 66,
3389
+ "x": 198,
3390
+ "y": 1320,
3391
+ "pixelRatio": 2,
3392
+ "sdf": true
3393
+ },
3394
+ "street_lamp_arm": {
3395
+ "height": 66,
3396
+ "width": 66,
3397
+ "x": 264,
3398
+ "y": 1320,
3399
+ "pixelRatio": 2,
3400
+ "sdf": true
3401
+ },
3402
+ "striped_way": {
3403
+ "height": 66,
3404
+ "width": 66,
3405
+ "x": 330,
3406
+ "y": 1320,
3407
+ "pixelRatio": 2,
3408
+ "sdf": true
3409
+ },
3410
+ "striped_zone": {
3411
+ "height": 66,
3412
+ "width": 66,
3413
+ "x": 396,
3414
+ "y": 1320,
3415
+ "pixelRatio": 2,
3416
+ "sdf": true
3417
+ },
3418
+ "subway": {
3419
+ "height": 66,
3420
+ "width": 66,
3421
+ "x": 462,
3422
+ "y": 1320,
3423
+ "pixelRatio": 2,
3424
+ "sdf": true
3425
+ },
3426
+ "suitcase": {
3427
+ "height": 66,
3428
+ "width": 66,
3429
+ "x": 528,
3430
+ "y": 1320,
3431
+ "pixelRatio": 2,
3432
+ "sdf": true
3433
+ },
3434
+ "suitcase_key": {
3435
+ "height": 66,
3436
+ "width": 66,
3437
+ "x": 594,
3438
+ "y": 1320,
3439
+ "pixelRatio": 2,
3440
+ "sdf": true
3441
+ },
3442
+ "suitcase_xray": {
3443
+ "height": 66,
3444
+ "width": 66,
3445
+ "x": 660,
3446
+ "y": 1320,
3447
+ "pixelRatio": 2,
3448
+ "sdf": true
3449
+ },
3450
+ "surfing": {
3451
+ "height": 66,
3452
+ "width": 66,
3453
+ "x": 726,
3454
+ "y": 1320,
3455
+ "pixelRatio": 2,
3456
+ "sdf": true
3457
+ },
3458
+ "swamp": {
3459
+ "height": 66,
3460
+ "width": 66,
3461
+ "x": 792,
3462
+ "y": 1320,
3463
+ "pixelRatio": 2,
3464
+ "sdf": true
3465
+ },
3466
+ "t_bar_lift": {
3467
+ "height": 66,
3468
+ "width": 66,
3469
+ "x": 858,
3470
+ "y": 1320,
3471
+ "pixelRatio": 2,
3472
+ "sdf": true
3473
+ },
3474
+ "tall_gate": {
3475
+ "height": 66,
3476
+ "width": 66,
3477
+ "x": 924,
3478
+ "y": 1320,
3479
+ "pixelRatio": 2,
3480
+ "sdf": true
3481
+ },
3482
+ "tanning": {
3483
+ "height": 66,
3484
+ "width": 66,
3485
+ "x": 990,
3486
+ "y": 1320,
3487
+ "pixelRatio": 2,
3488
+ "sdf": true
3489
+ },
3490
+ "tanning2": {
3491
+ "height": 66,
3492
+ "width": 66,
3493
+ "x": 1056,
3494
+ "y": 1320,
3495
+ "pixelRatio": 2,
3496
+ "sdf": true
3497
+ },
3498
+ "taoism": {
3499
+ "height": 66,
3500
+ "width": 66,
3501
+ "x": 1122,
3502
+ "y": 1320,
3503
+ "pixelRatio": 2,
3504
+ "sdf": true
3505
+ },
3506
+ "tattoo_machine": {
3507
+ "height": 66,
3508
+ "width": 66,
3509
+ "x": 1188,
3510
+ "y": 1320,
3511
+ "pixelRatio": 2,
3512
+ "sdf": true
3513
+ },
3514
+ "taxi_stand": {
3515
+ "height": 66,
3516
+ "width": 66,
3517
+ "x": 1254,
3518
+ "y": 1320,
3519
+ "pixelRatio": 2,
3520
+ "sdf": true
3521
+ },
3522
+ "telephone": {
3523
+ "height": 66,
3524
+ "width": 66,
3525
+ "x": 1320,
3526
+ "y": 1320,
3527
+ "pixelRatio": 2,
3528
+ "sdf": true
3529
+ },
3530
+ "telescope": {
3531
+ "height": 66,
3532
+ "width": 66,
3533
+ "x": 1386,
3534
+ "y": 0,
3535
+ "pixelRatio": 2,
3536
+ "sdf": true
3537
+ },
3538
+ "temaki": {
3539
+ "height": 66,
3540
+ "width": 66,
3541
+ "x": 1386,
3542
+ "y": 66,
3543
+ "pixelRatio": 2,
3544
+ "sdf": true
3545
+ },
3546
+ "tennis": {
3547
+ "height": 66,
3548
+ "width": 66,
3549
+ "x": 1386,
3550
+ "y": 132,
3551
+ "pixelRatio": 2,
3552
+ "sdf": true
3553
+ },
3554
+ "tents": {
3555
+ "height": 66,
3556
+ "width": 66,
3557
+ "x": 1386,
3558
+ "y": 198,
3559
+ "pixelRatio": 2,
3560
+ "sdf": true
3561
+ },
3562
+ "ticket": {
3563
+ "height": 66,
3564
+ "width": 66,
3565
+ "x": 1386,
3566
+ "y": 264,
3567
+ "pixelRatio": 2,
3568
+ "sdf": true
3569
+ },
3570
+ "tiling": {
3571
+ "height": 66,
3572
+ "width": 66,
3573
+ "x": 1386,
3574
+ "y": 330,
3575
+ "pixelRatio": 2,
3576
+ "sdf": true
3577
+ },
3578
+ "tire": {
3579
+ "height": 66,
3580
+ "width": 66,
3581
+ "x": 1386,
3582
+ "y": 396,
3583
+ "pixelRatio": 2,
3584
+ "sdf": true
3585
+ },
3586
+ "tire_course": {
3587
+ "height": 66,
3588
+ "width": 66,
3589
+ "x": 1386,
3590
+ "y": 462,
3591
+ "pixelRatio": 2,
3592
+ "sdf": true
3593
+ },
3594
+ "toll_gantry": {
3595
+ "height": 66,
3596
+ "width": 66,
3597
+ "x": 1386,
3598
+ "y": 528,
3599
+ "pixelRatio": 2,
3600
+ "sdf": true
3601
+ },
3602
+ "toolbox": {
3603
+ "height": 66,
3604
+ "width": 66,
3605
+ "x": 1386,
3606
+ "y": 594,
3607
+ "pixelRatio": 2,
3608
+ "sdf": true
3609
+ },
3610
+ "tools": {
3611
+ "height": 66,
3612
+ "width": 66,
3613
+ "x": 1386,
3614
+ "y": 660,
3615
+ "pixelRatio": 2,
3616
+ "sdf": true
3617
+ },
3618
+ "tower": {
3619
+ "height": 66,
3620
+ "width": 66,
3621
+ "x": 1386,
3622
+ "y": 726,
3623
+ "pixelRatio": 2,
3624
+ "sdf": true
3625
+ },
3626
+ "tower_communication": {
3627
+ "height": 66,
3628
+ "width": 66,
3629
+ "x": 1386,
3630
+ "y": 792,
3631
+ "pixelRatio": 2,
3632
+ "sdf": true
3633
+ },
3634
+ "town_hall": {
3635
+ "height": 66,
3636
+ "width": 66,
3637
+ "x": 1386,
3638
+ "y": 858,
3639
+ "pixelRatio": 2,
3640
+ "sdf": true
3641
+ },
3642
+ "traffic_signals": {
3643
+ "height": 66,
3644
+ "width": 66,
3645
+ "x": 1386,
3646
+ "y": 924,
3647
+ "pixelRatio": 2,
3648
+ "sdf": true
3649
+ },
3650
+ "train": {
3651
+ "height": 66,
3652
+ "width": 66,
3653
+ "x": 1386,
3654
+ "y": 990,
3655
+ "pixelRatio": 2,
3656
+ "sdf": true
3657
+ },
3658
+ "train_bullet": {
3659
+ "height": 66,
3660
+ "width": 66,
3661
+ "x": 1386,
3662
+ "y": 1056,
3663
+ "pixelRatio": 2,
3664
+ "sdf": true
3665
+ },
3666
+ "train_diesel": {
3667
+ "height": 66,
3668
+ "width": 66,
3669
+ "x": 1386,
3670
+ "y": 1122,
3671
+ "pixelRatio": 2,
3672
+ "sdf": true
3673
+ },
3674
+ "train_kids": {
3675
+ "height": 66,
3676
+ "width": 66,
3677
+ "x": 1386,
3678
+ "y": 1188,
3679
+ "pixelRatio": 2,
3680
+ "sdf": true
3681
+ },
3682
+ "train_steam": {
3683
+ "height": 66,
3684
+ "width": 66,
3685
+ "x": 1386,
3686
+ "y": 1254,
3687
+ "pixelRatio": 2,
3688
+ "sdf": true
3689
+ },
3690
+ "train_wash": {
3691
+ "height": 66,
3692
+ "width": 66,
3693
+ "x": 1386,
3694
+ "y": 1320,
3695
+ "pixelRatio": 2,
3696
+ "sdf": true
3697
+ },
3698
+ "tram": {
3699
+ "height": 66,
3700
+ "width": 66,
3701
+ "x": 0,
3702
+ "y": 1386,
3703
+ "pixelRatio": 2,
3704
+ "sdf": true
3705
+ },
3706
+ "tram_side": {
3707
+ "height": 66,
3708
+ "width": 66,
3709
+ "x": 66,
3710
+ "y": 1386,
3711
+ "pixelRatio": 2,
3712
+ "sdf": true
3713
+ },
3714
+ "transit": {
3715
+ "height": 66,
3716
+ "width": 66,
3717
+ "x": 132,
3718
+ "y": 1386,
3719
+ "pixelRatio": 2,
3720
+ "sdf": true
3721
+ },
3722
+ "transit_shelter": {
3723
+ "height": 66,
3724
+ "width": 66,
3725
+ "x": 198,
3726
+ "y": 1386,
3727
+ "pixelRatio": 2,
3728
+ "sdf": true
3729
+ },
3730
+ "tree_and_bench": {
3731
+ "height": 66,
3732
+ "width": 66,
3733
+ "x": 264,
3734
+ "y": 1386,
3735
+ "pixelRatio": 2,
3736
+ "sdf": true
3737
+ },
3738
+ "tree_broadleaved": {
3739
+ "height": 66,
3740
+ "width": 66,
3741
+ "x": 330,
3742
+ "y": 1386,
3743
+ "pixelRatio": 2,
3744
+ "sdf": true
3745
+ },
3746
+ "tree_cactus": {
3747
+ "height": 66,
3748
+ "width": 66,
3749
+ "x": 396,
3750
+ "y": 1386,
3751
+ "pixelRatio": 2,
3752
+ "sdf": true
3753
+ },
3754
+ "tree_leafless": {
3755
+ "height": 66,
3756
+ "width": 66,
3757
+ "x": 462,
3758
+ "y": 1386,
3759
+ "pixelRatio": 2,
3760
+ "sdf": true
3761
+ },
3762
+ "tree_needleleaved": {
3763
+ "height": 66,
3764
+ "width": 66,
3765
+ "x": 528,
3766
+ "y": 1386,
3767
+ "pixelRatio": 2,
3768
+ "sdf": true
3769
+ },
3770
+ "tree_palm": {
3771
+ "height": 66,
3772
+ "width": 66,
3773
+ "x": 594,
3774
+ "y": 1386,
3775
+ "pixelRatio": 2,
3776
+ "sdf": true
3777
+ },
3778
+ "tree_row": {
3779
+ "height": 66,
3780
+ "width": 66,
3781
+ "x": 660,
3782
+ "y": 1386,
3783
+ "pixelRatio": 2,
3784
+ "sdf": true
3785
+ },
3786
+ "tree_stump": {
3787
+ "height": 66,
3788
+ "width": 66,
3789
+ "x": 726,
3790
+ "y": 1386,
3791
+ "pixelRatio": 2,
3792
+ "sdf": true
3793
+ },
3794
+ "trench": {
3795
+ "height": 66,
3796
+ "width": 66,
3797
+ "x": 792,
3798
+ "y": 1386,
3799
+ "pixelRatio": 2,
3800
+ "sdf": true
3801
+ },
3802
+ "trolleybus": {
3803
+ "height": 66,
3804
+ "width": 66,
3805
+ "x": 858,
3806
+ "y": 1386,
3807
+ "pixelRatio": 2,
3808
+ "sdf": true
3809
+ },
3810
+ "truck": {
3811
+ "height": 66,
3812
+ "width": 66,
3813
+ "x": 924,
3814
+ "y": 1386,
3815
+ "pixelRatio": 2,
3816
+ "sdf": true
3817
+ },
3818
+ "tunnel": {
3819
+ "height": 66,
3820
+ "width": 66,
3821
+ "x": 990,
3822
+ "y": 1386,
3823
+ "pixelRatio": 2,
3824
+ "sdf": true
3825
+ },
3826
+ "turnstile": {
3827
+ "height": 66,
3828
+ "width": 66,
3829
+ "x": 1056,
3830
+ "y": 1386,
3831
+ "pixelRatio": 2,
3832
+ "sdf": true
3833
+ },
3834
+ "utility_pole": {
3835
+ "height": 66,
3836
+ "width": 66,
3837
+ "x": 1122,
3838
+ "y": 1386,
3839
+ "pixelRatio": 2,
3840
+ "sdf": true
3841
+ },
3842
+ "vacuum": {
3843
+ "height": 66,
3844
+ "width": 66,
3845
+ "x": 1188,
3846
+ "y": 1386,
3847
+ "pixelRatio": 2,
3848
+ "sdf": true
3849
+ },
3850
+ "vacuum_station": {
3851
+ "height": 66,
3852
+ "width": 66,
3853
+ "x": 1254,
3854
+ "y": 1386,
3855
+ "pixelRatio": 2,
3856
+ "sdf": true
3857
+ },
3858
+ "valley": {
3859
+ "height": 66,
3860
+ "width": 66,
3861
+ "x": 1320,
3862
+ "y": 1386,
3863
+ "pixelRatio": 2,
3864
+ "sdf": true
3865
+ },
3866
+ "vase": {
3867
+ "height": 66,
3868
+ "width": 66,
3869
+ "x": 1386,
3870
+ "y": 1386,
3871
+ "pixelRatio": 2,
3872
+ "sdf": true
3873
+ },
3874
+ "vending_bread": {
3875
+ "height": 66,
3876
+ "width": 66,
3877
+ "x": 1452,
3878
+ "y": 0,
3879
+ "pixelRatio": 2,
3880
+ "sdf": true
3881
+ },
3882
+ "vending_cigarettes": {
3883
+ "height": 66,
3884
+ "width": 66,
3885
+ "x": 1452,
3886
+ "y": 66,
3887
+ "pixelRatio": 2,
3888
+ "sdf": true
3889
+ },
3890
+ "vending_cold_drink": {
3891
+ "height": 66,
3892
+ "width": 66,
3893
+ "x": 1452,
3894
+ "y": 132,
3895
+ "pixelRatio": 2,
3896
+ "sdf": true
3897
+ },
3898
+ "vending_cold_drink2": {
3899
+ "height": 66,
3900
+ "width": 66,
3901
+ "x": 1452,
3902
+ "y": 198,
3903
+ "pixelRatio": 2,
3904
+ "sdf": true
3905
+ },
3906
+ "vending_eggs": {
3907
+ "height": 66,
3908
+ "width": 66,
3909
+ "x": 1452,
3910
+ "y": 264,
3911
+ "pixelRatio": 2,
3912
+ "sdf": true
3913
+ },
3914
+ "vending_flat_coin": {
3915
+ "height": 66,
3916
+ "width": 66,
3917
+ "x": 1452,
3918
+ "y": 330,
3919
+ "pixelRatio": 2,
3920
+ "sdf": true
3921
+ },
3922
+ "vending_hot_drink": {
3923
+ "height": 66,
3924
+ "width": 66,
3925
+ "x": 1452,
3926
+ "y": 396,
3927
+ "pixelRatio": 2,
3928
+ "sdf": true
3929
+ },
3930
+ "vending_hot_drink2": {
3931
+ "height": 66,
3932
+ "width": 66,
3933
+ "x": 1452,
3934
+ "y": 462,
3935
+ "pixelRatio": 2,
3936
+ "sdf": true
3937
+ },
3938
+ "vending_ice": {
3939
+ "height": 66,
3940
+ "width": 66,
3941
+ "x": 1452,
3942
+ "y": 528,
3943
+ "pixelRatio": 2,
3944
+ "sdf": true
3945
+ },
3946
+ "vending_ice_cream": {
3947
+ "height": 66,
3948
+ "width": 66,
3949
+ "x": 1452,
3950
+ "y": 594,
3951
+ "pixelRatio": 2,
3952
+ "sdf": true
3953
+ },
3954
+ "vending_ice_cream2": {
3955
+ "height": 66,
3956
+ "width": 66,
3957
+ "x": 1452,
3958
+ "y": 660,
3959
+ "pixelRatio": 2,
3960
+ "sdf": true
3961
+ },
3962
+ "vending_lockers": {
3963
+ "height": 66,
3964
+ "width": 66,
3965
+ "x": 1452,
3966
+ "y": 726,
3967
+ "pixelRatio": 2,
3968
+ "sdf": true
3969
+ },
3970
+ "vending_love": {
3971
+ "height": 66,
3972
+ "width": 66,
3973
+ "x": 1452,
3974
+ "y": 792,
3975
+ "pixelRatio": 2,
3976
+ "sdf": true
3977
+ },
3978
+ "vending_machine": {
3979
+ "height": 66,
3980
+ "width": 66,
3981
+ "x": 1452,
3982
+ "y": 858,
3983
+ "pixelRatio": 2,
3984
+ "sdf": true
3985
+ },
3986
+ "vending_medicine": {
3987
+ "height": 66,
3988
+ "width": 66,
3989
+ "x": 1452,
3990
+ "y": 924,
3991
+ "pixelRatio": 2,
3992
+ "sdf": true
3993
+ },
3994
+ "vending_newspaper": {
3995
+ "height": 66,
3996
+ "width": 66,
3997
+ "x": 1452,
3998
+ "y": 990,
3999
+ "pixelRatio": 2,
4000
+ "sdf": true
4001
+ },
4002
+ "vending_pet_waste": {
4003
+ "height": 66,
4004
+ "width": 66,
4005
+ "x": 1452,
4006
+ "y": 1056,
4007
+ "pixelRatio": 2,
4008
+ "sdf": true
4009
+ },
4010
+ "vending_stamps": {
4011
+ "height": 66,
4012
+ "width": 66,
4013
+ "x": 1452,
4014
+ "y": 1122,
4015
+ "pixelRatio": 2,
4016
+ "sdf": true
4017
+ },
4018
+ "vending_tickets": {
4019
+ "height": 66,
4020
+ "width": 66,
4021
+ "x": 1452,
4022
+ "y": 1188,
4023
+ "pixelRatio": 2,
4024
+ "sdf": true
4025
+ },
4026
+ "vending_venus": {
4027
+ "height": 66,
4028
+ "width": 66,
4029
+ "x": 1452,
4030
+ "y": 1254,
4031
+ "pixelRatio": 2,
4032
+ "sdf": true
4033
+ },
4034
+ "vertex": {
4035
+ "height": 66,
4036
+ "width": 66,
4037
+ "x": 1452,
4038
+ "y": 1320,
4039
+ "pixelRatio": 2,
4040
+ "sdf": true
4041
+ },
4042
+ "vertical_rotisserie": {
4043
+ "height": 66,
4044
+ "width": 66,
4045
+ "x": 1452,
4046
+ "y": 1386,
4047
+ "pixelRatio": 2,
4048
+ "sdf": true
4049
+ },
4050
+ "veterinary_care": {
4051
+ "height": 66,
4052
+ "width": 66,
4053
+ "x": 0,
4054
+ "y": 1452,
4055
+ "pixelRatio": 2,
4056
+ "sdf": true
4057
+ },
4058
+ "wall": {
4059
+ "height": 66,
4060
+ "width": 66,
4061
+ "x": 66,
4062
+ "y": 1452,
4063
+ "pixelRatio": 2,
4064
+ "sdf": true
4065
+ },
4066
+ "waste": {
4067
+ "height": 66,
4068
+ "width": 66,
4069
+ "x": 132,
4070
+ "y": 1452,
4071
+ "pixelRatio": 2,
4072
+ "sdf": true
4073
+ },
4074
+ "waste_device": {
4075
+ "height": 66,
4076
+ "width": 66,
4077
+ "x": 198,
4078
+ "y": 1452,
4079
+ "pixelRatio": 2,
4080
+ "sdf": true
4081
+ },
4082
+ "waste_manhole": {
4083
+ "height": 66,
4084
+ "width": 66,
4085
+ "x": 264,
4086
+ "y": 1452,
4087
+ "pixelRatio": 2,
4088
+ "sdf": true
4089
+ },
4090
+ "waste_meter": {
4091
+ "height": 66,
4092
+ "width": 66,
4093
+ "x": 330,
4094
+ "y": 1452,
4095
+ "pixelRatio": 2,
4096
+ "sdf": true
4097
+ },
4098
+ "waste_shutoff": {
4099
+ "height": 66,
4100
+ "width": 66,
4101
+ "x": 396,
4102
+ "y": 1452,
4103
+ "pixelRatio": 2,
4104
+ "sdf": true
4105
+ },
4106
+ "water": {
4107
+ "height": 66,
4108
+ "width": 66,
4109
+ "x": 462,
4110
+ "y": 1452,
4111
+ "pixelRatio": 2,
4112
+ "sdf": true
4113
+ },
4114
+ "water_bottle": {
4115
+ "height": 66,
4116
+ "width": 66,
4117
+ "x": 528,
4118
+ "y": 1452,
4119
+ "pixelRatio": 2,
4120
+ "sdf": true
4121
+ },
4122
+ "water_device": {
4123
+ "height": 66,
4124
+ "width": 66,
4125
+ "x": 594,
4126
+ "y": 1452,
4127
+ "pixelRatio": 2,
4128
+ "sdf": true
4129
+ },
4130
+ "water_manhole": {
4131
+ "height": 66,
4132
+ "width": 66,
4133
+ "x": 660,
4134
+ "y": 1452,
4135
+ "pixelRatio": 2,
4136
+ "sdf": true
4137
+ },
4138
+ "water_meter": {
4139
+ "height": 66,
4140
+ "width": 66,
4141
+ "x": 726,
4142
+ "y": 1452,
4143
+ "pixelRatio": 2,
4144
+ "sdf": true
4145
+ },
4146
+ "water_shutoff": {
4147
+ "height": 66,
4148
+ "width": 66,
4149
+ "x": 792,
4150
+ "y": 1452,
4151
+ "pixelRatio": 2,
4152
+ "sdf": true
4153
+ },
4154
+ "water_tap": {
4155
+ "height": 66,
4156
+ "width": 66,
4157
+ "x": 858,
4158
+ "y": 1452,
4159
+ "pixelRatio": 2,
4160
+ "sdf": true
4161
+ },
4162
+ "water_tap_drinkable": {
4163
+ "height": 66,
4164
+ "width": 66,
4165
+ "x": 924,
4166
+ "y": 1452,
4167
+ "pixelRatio": 2,
4168
+ "sdf": true
4169
+ },
4170
+ "water_tower": {
4171
+ "height": 66,
4172
+ "width": 66,
4173
+ "x": 990,
4174
+ "y": 1452,
4175
+ "pixelRatio": 2,
4176
+ "sdf": true
4177
+ },
4178
+ "waterskiing": {
4179
+ "height": 66,
4180
+ "width": 66,
4181
+ "x": 1056,
4182
+ "y": 1452,
4183
+ "pixelRatio": 2,
4184
+ "sdf": true
4185
+ },
4186
+ "well_pump_manual": {
4187
+ "height": 66,
4188
+ "width": 66,
4189
+ "x": 1122,
4190
+ "y": 1452,
4191
+ "pixelRatio": 2,
4192
+ "sdf": true
4193
+ },
4194
+ "well_pump_powered": {
4195
+ "height": 66,
4196
+ "width": 66,
4197
+ "x": 1188,
4198
+ "y": 1452,
4199
+ "pixelRatio": 2,
4200
+ "sdf": true
4201
+ },
4202
+ "whale_watching": {
4203
+ "height": 66,
4204
+ "width": 66,
4205
+ "x": 1254,
4206
+ "y": 1452,
4207
+ "pixelRatio": 2,
4208
+ "sdf": true
4209
+ },
4210
+ "wheel": {
4211
+ "height": 66,
4212
+ "width": 66,
4213
+ "x": 1320,
4214
+ "y": 1452,
4215
+ "pixelRatio": 2,
4216
+ "sdf": true
4217
+ },
4218
+ "wheelchair": {
4219
+ "height": 66,
4220
+ "width": 66,
4221
+ "x": 1386,
4222
+ "y": 1452,
4223
+ "pixelRatio": 2,
4224
+ "sdf": true
4225
+ },
4226
+ "wheelchair_active": {
4227
+ "height": 66,
4228
+ "width": 66,
4229
+ "x": 1452,
4230
+ "y": 1452,
4231
+ "pixelRatio": 2,
4232
+ "sdf": true
4233
+ },
4234
+ "wind_surfing": {
4235
+ "height": 66,
4236
+ "width": 66,
4237
+ "x": 1518,
4238
+ "y": 0,
4239
+ "pixelRatio": 2,
4240
+ "sdf": true
4241
+ },
4242
+ "wind_turbine": {
4243
+ "height": 66,
4244
+ "width": 66,
4245
+ "x": 1518,
4246
+ "y": 66,
4247
+ "pixelRatio": 2,
4248
+ "sdf": true
4249
+ },
4250
+ "windmill": {
4251
+ "height": 66,
4252
+ "width": 66,
4253
+ "x": 1518,
4254
+ "y": 132,
4255
+ "pixelRatio": 2,
4256
+ "sdf": true
4257
+ },
4258
+ "window": {
4259
+ "height": 66,
4260
+ "width": 66,
4261
+ "x": 1518,
4262
+ "y": 198,
4263
+ "pixelRatio": 2,
4264
+ "sdf": true
4265
+ },
4266
+ "windpump": {
4267
+ "height": 66,
4268
+ "width": 66,
4269
+ "x": 1518,
4270
+ "y": 264,
4271
+ "pixelRatio": 2,
4272
+ "sdf": true
4273
+ },
4274
+ "windsock": {
4275
+ "height": 66,
4276
+ "width": 66,
4277
+ "x": 1518,
4278
+ "y": 330,
4279
+ "pixelRatio": 2,
4280
+ "sdf": true
4281
+ },
4282
+ "x_oblique": {
4283
+ "height": 66,
4284
+ "width": 66,
4285
+ "x": 1518,
4286
+ "y": 396,
4287
+ "pixelRatio": 2,
4288
+ "sdf": true
4289
+ },
4290
+ "yield": {
4291
+ "height": 66,
4292
+ "width": 66,
4293
+ "x": 1518,
4294
+ "y": 462,
4295
+ "pixelRatio": 2,
4296
+ "sdf": true
4297
+ },
4298
+ "zoo": {
4299
+ "height": 66,
4300
+ "width": 66,
4301
+ "x": 1518,
4302
+ "y": 528,
4303
+ "pixelRatio": 2,
4304
+ "sdf": true
4305
+ }
4306
+ }