@unovis/ts 1.1.1-beta.6 → 1.1.1-beta.7

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 (710) hide show
  1. package/declaration.d.ts +1 -0
  2. package/index.ts +1 -0
  3. package/licences.txt +43 -0
  4. package/maps.ts +1 -0
  5. package/package.json +1 -1
  6. package/rollup.config.js +71 -0
  7. package/rules/ts-getter-setter.js +35 -0
  8. package/src/components/area/config.ts +29 -0
  9. package/src/components/area/index.ts +133 -0
  10. package/{components/area/style.js → src/components/area/style.ts} +9 -10
  11. package/src/components/area/types.ts +2 -0
  12. package/src/components/axis/config.ts +76 -0
  13. package/src/components/axis/index.ts +363 -0
  14. package/{components/axis/style.js → src/components/axis/style.ts} +27 -22
  15. package/src/components/axis/types.ts +4 -0
  16. package/src/components/brush/config.ts +51 -0
  17. package/src/components/brush/index.ts +233 -0
  18. package/{components/brush/style.js → src/components/brush/style.ts} +15 -14
  19. package/src/components/brush/types.ts +8 -0
  20. package/src/components/bullet-legend/config.ts +38 -0
  21. package/src/components/bullet-legend/index.ts +104 -0
  22. package/{components/bullet-legend/style.js → src/components/bullet-legend/style.ts} +18 -16
  23. package/src/components/bullet-legend/types.ts +7 -0
  24. package/src/components/chord-diagram/config.ts +53 -0
  25. package/src/components/chord-diagram/index.ts +401 -0
  26. package/src/components/chord-diagram/modules/label.ts +155 -0
  27. package/src/components/chord-diagram/modules/link.ts +91 -0
  28. package/src/components/chord-diagram/modules/node.ts +80 -0
  29. package/{components/chord-diagram/style.js → src/components/chord-diagram/style.ts} +39 -30
  30. package/src/components/chord-diagram/types.ts +68 -0
  31. package/src/components/crosshair/config.ts +48 -0
  32. package/src/components/crosshair/index.ts +220 -0
  33. package/{components/crosshair/style.js → src/components/crosshair/style.ts} +12 -12
  34. package/src/components/crosshair/types.ts +15 -0
  35. package/src/components/donut/config.ts +65 -0
  36. package/src/components/donut/index.ts +148 -0
  37. package/src/components/donut/modules/arc.ts +86 -0
  38. package/{components/donut/style.js → src/components/donut/style.ts} +20 -18
  39. package/src/components/donut/types.ts +17 -0
  40. package/src/components/flow-legend/config.ts +31 -0
  41. package/src/components/flow-legend/index.ts +103 -0
  42. package/{components/flow-legend/style.js → src/components/flow-legend/style.ts} +25 -21
  43. package/src/components/flow-legend/types.ts +10 -0
  44. package/src/components/free-brush/config.ts +54 -0
  45. package/src/components/free-brush/index.ts +207 -0
  46. package/{components/free-brush/style.js → src/components/free-brush/style.ts} +12 -12
  47. package/src/components/free-brush/types.ts +8 -0
  48. package/src/components/graph/config.ts +280 -0
  49. package/src/components/graph/index.ts +809 -0
  50. package/src/components/graph/modules/layout-helpers.ts +96 -0
  51. package/src/components/graph/modules/layout.ts +502 -0
  52. package/src/components/graph/modules/link/helper.ts +105 -0
  53. package/src/components/graph/modules/link/index.ts +302 -0
  54. package/{components/graph/modules/link/style.js → src/components/graph/modules/link/style.ts} +45 -34
  55. package/src/components/graph/modules/node/helper.ts +162 -0
  56. package/src/components/graph/modules/node/index.ts +343 -0
  57. package/{components/graph/modules/node/style.js → src/components/graph/modules/node/style.ts} +72 -52
  58. package/src/components/graph/modules/panel/helper.ts +160 -0
  59. package/src/components/graph/modules/panel/index.ts +137 -0
  60. package/{components/graph/modules/panel/style.js → src/components/graph/modules/panel/style.ts} +42 -32
  61. package/src/components/graph/modules/shape.ts +108 -0
  62. package/src/components/graph/modules/zoom-levels.ts +6 -0
  63. package/src/components/graph/style.ts +72 -0
  64. package/src/components/graph/types.ts +152 -0
  65. package/src/components/grouped-bar/config.ts +40 -0
  66. package/src/components/grouped-bar/index.ts +325 -0
  67. package/{components/grouped-bar/style.js → src/components/grouped-bar/style.ts} +15 -14
  68. package/src/components/leaflet-flow-map/config.ts +60 -0
  69. package/src/components/leaflet-flow-map/index.ts +279 -0
  70. package/src/components/leaflet-flow-map/renderer-utils.ts +14 -0
  71. package/src/components/leaflet-flow-map/renderer.ts +146 -0
  72. package/{components/leaflet-flow-map/shaders.js → src/components/leaflet-flow-map/shaders.ts} +4 -7
  73. package/src/components/leaflet-flow-map/types.ts +18 -0
  74. package/src/components/leaflet-map/config.ts +234 -0
  75. package/src/components/leaflet-map/index.ts +808 -0
  76. package/src/components/leaflet-map/leaflet.css +625 -0
  77. package/src/components/leaflet-map/modules/clusterBackground.ts +34 -0
  78. package/src/components/leaflet-map/modules/donut.ts +37 -0
  79. package/src/components/leaflet-map/modules/map.ts +178 -0
  80. package/src/components/leaflet-map/modules/node.ts +208 -0
  81. package/src/components/leaflet-map/modules/selectionRing.ts +63 -0
  82. package/src/components/leaflet-map/modules/utils.ts +290 -0
  83. package/{components → src/components}/leaflet-map/renderer/leaflet-maplibre-gl.js +76 -78
  84. package/src/components/leaflet-map/renderer/map-style.ts +24 -0
  85. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json +35 -0
  86. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json +35 -0
  87. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json +2185 -0
  88. package/src/components/leaflet-map/renderer/mapboxgl-layer.ts +43 -0
  89. package/src/components/leaflet-map/renderer/mapboxgl-utils.ts +40 -0
  90. package/{components → src/components}/leaflet-map/renderer/maplibre-gl.css.js +2 -4
  91. package/src/components/leaflet-map/style.ts +217 -0
  92. package/src/components/leaflet-map/types.ts +75 -0
  93. package/src/components/line/config.ts +34 -0
  94. package/src/components/line/index.ts +188 -0
  95. package/{components/line/style.js → src/components/line/style.ts} +18 -16
  96. package/src/components/line/types.ts +3 -0
  97. package/src/components/nested-donut/config.ts +75 -0
  98. package/src/components/nested-donut/index.ts +176 -0
  99. package/src/components/nested-donut/modules/arc.ts +78 -0
  100. package/src/components/nested-donut/modules/label.ts +63 -0
  101. package/src/components/nested-donut/style.ts +82 -0
  102. package/src/components/nested-donut/types.ts +29 -0
  103. package/src/components/sankey/config.ts +195 -0
  104. package/src/components/sankey/index.ts +387 -0
  105. package/src/components/sankey/modules/label.ts +228 -0
  106. package/src/components/sankey/modules/link.ts +141 -0
  107. package/src/components/sankey/modules/node.ts +221 -0
  108. package/{components/sankey/style.js → src/components/sankey/style.ts} +60 -44
  109. package/src/components/sankey/types.ts +95 -0
  110. package/src/components/scatter/config.ts +49 -0
  111. package/src/components/scatter/index.ts +220 -0
  112. package/src/components/scatter/modules/point.ts +123 -0
  113. package/src/components/scatter/modules/utils.ts +150 -0
  114. package/{components/scatter/style.js → src/components/scatter/style.ts} +15 -14
  115. package/src/components/scatter/types.ts +21 -0
  116. package/src/components/stacked-bar/config.ts +42 -0
  117. package/src/components/stacked-bar/index.ts +267 -0
  118. package/{components/stacked-bar/style.js → src/components/stacked-bar/style.ts} +15 -14
  119. package/src/components/stacked-bar/types.ts +5 -0
  120. package/src/components/timeline/config.ts +49 -0
  121. package/src/components/timeline/index.ts +302 -0
  122. package/{components/timeline/style.js → src/components/timeline/style.ts} +39 -30
  123. package/src/components/tooltip/config.ts +69 -0
  124. package/src/components/tooltip/index.ts +220 -0
  125. package/{components → src/components}/tooltip/style.js +11 -14
  126. package/src/components/topojson-map/config.ts +124 -0
  127. package/src/components/topojson-map/index.ts +436 -0
  128. package/{components/topojson-map/style.js → src/components/topojson-map/style.ts} +33 -26
  129. package/src/components/topojson-map/types.ts +123 -0
  130. package/src/components/topojson-map/utils.ts +29 -0
  131. package/src/components/vis-controls/config.ts +16 -0
  132. package/src/components/vis-controls/index.ts +68 -0
  133. package/{components/vis-controls/style.js → src/components/vis-controls/style.ts} +34 -27
  134. package/src/components/vis-controls/types.ts +14 -0
  135. package/src/components/xy-labels/config.ts +56 -0
  136. package/src/components/xy-labels/index.ts +109 -0
  137. package/src/components/xy-labels/modules/label.ts +140 -0
  138. package/{components/xy-labels/style.js → src/components/xy-labels/style.ts} +15 -14
  139. package/src/components/xy-labels/types.ts +26 -0
  140. package/src/components.ts +56 -0
  141. package/src/containers/single-container/config.ts +15 -0
  142. package/src/containers/single-container/index.ts +150 -0
  143. package/src/containers/xy-container/config.ts +112 -0
  144. package/src/containers/xy-container/index.ts +407 -0
  145. package/src/containers.ts +6 -0
  146. package/src/core/component/config.ts +61 -0
  147. package/src/core/component/index.ts +154 -0
  148. package/src/core/component/types.ts +9 -0
  149. package/src/core/config/index.ts +12 -0
  150. package/src/core/container/config.ts +56 -0
  151. package/src/core/container/index.ts +136 -0
  152. package/src/core/xy-component/config.ts +46 -0
  153. package/src/core/xy-component/index.ts +90 -0
  154. package/src/data-models/core.ts +15 -0
  155. package/src/data-models/graph.ts +138 -0
  156. package/src/data-models/map-graph.ts +72 -0
  157. package/src/data-models/map.ts +18 -0
  158. package/src/data-models/series.ts +16 -0
  159. package/src/index.ts +7 -0
  160. package/src/maps/china-provinces.json +1 -0
  161. package/src/maps/fr-regions.json +1 -0
  162. package/src/maps/germany-regions.json +1 -0
  163. package/src/maps/ind-regions.json +1 -0
  164. package/src/maps/uk-regions.json +1 -0
  165. package/src/maps/us-counties.json +1 -0
  166. package/src/maps/us-states.json +1 -0
  167. package/src/maps/world-110m-alpha.json +1 -0
  168. package/src/maps/world-simple.json +1 -0
  169. package/src/maps/world-simplest.json +1 -0
  170. package/src/maps.ts +34 -0
  171. package/src/styles/colors.ts +28 -0
  172. package/src/styles/index.ts +38 -0
  173. package/{styles/sizes.js → src/styles/sizes.ts} +6 -8
  174. package/src/types/accessor.ts +5 -0
  175. package/src/types/component.ts +15 -0
  176. package/src/types/curve.ts +62 -0
  177. package/src/types/data.ts +5 -0
  178. package/src/types/direction.ts +6 -0
  179. package/src/types/graph.ts +40 -0
  180. package/src/types/map.ts +5 -0
  181. package/src/types/misc.ts +10 -0
  182. package/src/types/position.ts +23 -0
  183. package/src/types/scale.ts +47 -0
  184. package/src/types/shape.ts +7 -0
  185. package/src/types/spacing.ts +6 -0
  186. package/src/types/svg.ts +32 -0
  187. package/src/types/symbol.ts +21 -0
  188. package/src/types/text.ts +71 -0
  189. package/src/types.ts +31 -0
  190. package/src/utils/color.ts +41 -0
  191. package/src/utils/d3.ts +15 -0
  192. package/src/utils/data.ts +328 -0
  193. package/src/utils/html.ts +13 -0
  194. package/src/utils/map.ts +29 -0
  195. package/src/utils/misc.ts +54 -0
  196. package/src/utils/path.ts +196 -0
  197. package/src/utils/scale.ts +1 -0
  198. package/src/utils/style.ts +37 -0
  199. package/src/utils/svg.ts +49 -0
  200. package/src/utils/text.ts +529 -0
  201. package/src/utils/type.ts +9 -0
  202. package/tsconfig.json +29 -0
  203. package/components/area/config.d.ts +0 -25
  204. package/components/area/config.js +0 -16
  205. package/components/area/config.js.map +0 -1
  206. package/components/area/index.d.ts +0 -19
  207. package/components/area/index.js +0 -102
  208. package/components/area/index.js.map +0 -1
  209. package/components/area/style.d.ts +0 -3
  210. package/components/area/style.js.map +0 -1
  211. package/components/area/types.d.ts +0 -6
  212. package/components/axis/config.d.ts +0 -71
  213. package/components/axis/config.js +0 -32
  214. package/components/axis/config.js.map +0 -1
  215. package/components/axis/index.d.ts +0 -44
  216. package/components/axis/index.js +0 -305
  217. package/components/axis/index.js.map +0 -1
  218. package/components/axis/style.d.ts +0 -9
  219. package/components/axis/style.js.map +0 -1
  220. package/components/axis/types.d.ts +0 -4
  221. package/components/axis/types.js +0 -8
  222. package/components/axis/types.js.map +0 -1
  223. package/components/brush/config.d.ts +0 -42
  224. package/components/brush/config.js +0 -24
  225. package/components/brush/config.js.map +0 -1
  226. package/components/brush/index.d.ts +0 -28
  227. package/components/brush/index.js +0 -199
  228. package/components/brush/index.js.map +0 -1
  229. package/components/brush/style.d.ts +0 -5
  230. package/components/brush/style.js.map +0 -1
  231. package/components/brush/types.d.ts +0 -7
  232. package/components/brush/types.js +0 -8
  233. package/components/brush/types.js.map +0 -1
  234. package/components/bullet-legend/config.d.ts +0 -34
  235. package/components/bullet-legend/config.js +0 -16
  236. package/components/bullet-legend/config.js.map +0 -1
  237. package/components/bullet-legend/index.d.ts +0 -19
  238. package/components/bullet-legend/index.js +0 -79
  239. package/components/bullet-legend/index.js.map +0 -1
  240. package/components/bullet-legend/style.d.ts +0 -6
  241. package/components/bullet-legend/style.js.map +0 -1
  242. package/components/bullet-legend/types.d.ts +0 -7
  243. package/components/bullet-legend/types.js +0 -2
  244. package/components/bullet-legend/types.js.map +0 -1
  245. package/components/chord-diagram/config.d.ts +0 -44
  246. package/components/chord-diagram/config.js +0 -25
  247. package/components/chord-diagram/config.js.map +0 -1
  248. package/components/chord-diagram/index.d.ts +0 -42
  249. package/components/chord-diagram/index.js +0 -305
  250. package/components/chord-diagram/index.js.map +0 -1
  251. package/components/chord-diagram/modules/label.d.ts +0 -8
  252. package/components/chord-diagram/modules/label.js +0 -115
  253. package/components/chord-diagram/modules/label.js.map +0 -1
  254. package/components/chord-diagram/modules/link.d.ts +0 -21
  255. package/components/chord-diagram/modules/link.js +0 -63
  256. package/components/chord-diagram/modules/link.js.map +0 -1
  257. package/components/chord-diagram/modules/node.d.ts +0 -17
  258. package/components/chord-diagram/modules/node.js +0 -52
  259. package/components/chord-diagram/modules/node.js.map +0 -1
  260. package/components/chord-diagram/style.d.ts +0 -13
  261. package/components/chord-diagram/style.js.map +0 -1
  262. package/components/chord-diagram/types.d.ts +0 -58
  263. package/components/chord-diagram/types.js +0 -8
  264. package/components/chord-diagram/types.js.map +0 -1
  265. package/components/crosshair/config.d.ts +0 -43
  266. package/components/crosshair/config.js +0 -19
  267. package/components/crosshair/config.js.map +0 -1
  268. package/components/crosshair/index.d.ts +0 -35
  269. package/components/crosshair/index.js +0 -183
  270. package/components/crosshair/index.js.map +0 -1
  271. package/components/crosshair/style.d.ts +0 -4
  272. package/components/crosshair/style.js.map +0 -1
  273. package/components/crosshair/types.d.ts +0 -13
  274. package/components/crosshair/types.js +0 -2
  275. package/components/crosshair/types.js.map +0 -1
  276. package/components/donut/config.d.ts +0 -59
  277. package/components/donut/config.js +0 -28
  278. package/components/donut/config.js.map +0 -1
  279. package/components/donut/index.d.ts +0 -21
  280. package/components/donut/index.js +0 -107
  281. package/components/donut/index.js.map +0 -1
  282. package/components/donut/modules/arc.d.ts +0 -10
  283. package/components/donut/modules/arc.js +0 -59
  284. package/components/donut/modules/arc.js.map +0 -1
  285. package/components/donut/style.d.ts +0 -7
  286. package/components/donut/style.js.map +0 -1
  287. package/components/donut/types.d.ts +0 -20
  288. package/components/flow-legend/config.d.ts +0 -29
  289. package/components/flow-legend/config.js +0 -18
  290. package/components/flow-legend/config.js.map +0 -1
  291. package/components/flow-legend/index.d.ts +0 -16
  292. package/components/flow-legend/index.js +0 -75
  293. package/components/flow-legend/index.js.map +0 -1
  294. package/components/flow-legend/style.d.ts +0 -8
  295. package/components/flow-legend/style.js.map +0 -1
  296. package/components/flow-legend/types.d.ts +0 -9
  297. package/components/flow-legend/types.js +0 -8
  298. package/components/flow-legend/types.js.map +0 -1
  299. package/components/free-brush/config.d.ts +0 -45
  300. package/components/free-brush/config.js +0 -24
  301. package/components/free-brush/config.js.map +0 -1
  302. package/components/free-brush/index.d.ts +0 -20
  303. package/components/free-brush/index.js +0 -192
  304. package/components/free-brush/index.js.map +0 -1
  305. package/components/free-brush/style.d.ts +0 -4
  306. package/components/free-brush/style.js.map +0 -1
  307. package/components/free-brush/types.d.ts +0 -7
  308. package/components/free-brush/types.js +0 -9
  309. package/components/free-brush/types.js.map +0 -1
  310. package/components/graph/config.d.ts +0 -238
  311. package/components/graph/config.js +0 -84
  312. package/components/graph/config.js.map +0 -1
  313. package/components/graph/index.d.ts +0 -126
  314. package/components/graph/index.js +0 -656
  315. package/components/graph/index.js.map +0 -1
  316. package/components/graph/modules/layout-helpers.d.ts +0 -21
  317. package/components/graph/modules/layout-helpers.js +0 -69
  318. package/components/graph/modules/layout-helpers.js.map +0 -1
  319. package/components/graph/modules/layout.d.ts +0 -10
  320. package/components/graph/modules/layout.js +0 -399
  321. package/components/graph/modules/layout.js.map +0 -1
  322. package/components/graph/modules/link/helper.d.ts +0 -25
  323. package/components/graph/modules/link/helper.js +0 -74
  324. package/components/graph/modules/link/helper.js.map +0 -1
  325. package/components/graph/modules/link/index.d.ts +0 -11
  326. package/components/graph/modules/link/index.js +0 -212
  327. package/components/graph/modules/link/index.js.map +0 -1
  328. package/components/graph/modules/link/style.d.ts +0 -15
  329. package/components/graph/modules/link/style.js.map +0 -1
  330. package/components/graph/modules/node/helper.d.ts +0 -21
  331. package/components/graph/modules/node/helper.js +0 -126
  332. package/components/graph/modules/node/helper.js.map +0 -1
  333. package/components/graph/modules/node/index.d.ts +0 -11
  334. package/components/graph/modules/node/index.js +0 -252
  335. package/components/graph/modules/node/index.js.map +0 -1
  336. package/components/graph/modules/node/style.d.ts +0 -24
  337. package/components/graph/modules/node/style.js.map +0 -1
  338. package/components/graph/modules/panel/helper.d.ts +0 -18
  339. package/components/graph/modules/panel/helper.js +0 -111
  340. package/components/graph/modules/panel/helper.js.map +0 -1
  341. package/components/graph/modules/panel/index.d.ts +0 -7
  342. package/components/graph/modules/panel/index.js +0 -98
  343. package/components/graph/modules/panel/index.js.map +0 -1
  344. package/components/graph/modules/panel/style.d.ts +0 -14
  345. package/components/graph/modules/panel/style.js.map +0 -1
  346. package/components/graph/modules/shape.d.ts +0 -6
  347. package/components/graph/modules/shape.js +0 -80
  348. package/components/graph/modules/shape.js.map +0 -1
  349. package/components/graph/modules/zoom-levels.d.ts +0 -6
  350. package/components/graph/modules/zoom-levels.js +0 -10
  351. package/components/graph/modules/zoom-levels.js.map +0 -1
  352. package/components/graph/style.d.ts +0 -6
  353. package/components/graph/style.js +0 -66
  354. package/components/graph/style.js.map +0 -1
  355. package/components/graph/types.d.ts +0 -125
  356. package/components/graph/types.js +0 -30
  357. package/components/graph/types.js.map +0 -1
  358. package/components/grouped-bar/config.d.ts +0 -36
  359. package/components/grouped-bar/config.js +0 -20
  360. package/components/grouped-bar/config.js.map +0 -1
  361. package/components/grouped-bar/index.d.ts +0 -32
  362. package/components/grouped-bar/index.js +0 -249
  363. package/components/grouped-bar/index.js.map +0 -1
  364. package/components/grouped-bar/style.d.ts +0 -5
  365. package/components/grouped-bar/style.js.map +0 -1
  366. package/components/leaflet-flow-map/config.d.ts +0 -46
  367. package/components/leaflet-flow-map/config.js +0 -25
  368. package/components/leaflet-flow-map/config.js.map +0 -1
  369. package/components/leaflet-flow-map/index.d.ts +0 -52
  370. package/components/leaflet-flow-map/index.js +0 -220
  371. package/components/leaflet-flow-map/index.js.map +0 -1
  372. package/components/leaflet-flow-map/renderer-utils.d.ts +0 -5
  373. package/components/leaflet-flow-map/renderer-utils.js +0 -15
  374. package/components/leaflet-flow-map/renderer-utils.js.map +0 -1
  375. package/components/leaflet-flow-map/renderer.d.ts +0 -26
  376. package/components/leaflet-flow-map/renderer.js +0 -117
  377. package/components/leaflet-flow-map/renderer.js.map +0 -1
  378. package/components/leaflet-flow-map/shaders.d.ts +0 -2
  379. package/components/leaflet-flow-map/shaders.js.map +0 -1
  380. package/components/leaflet-flow-map/types.d.ts +0 -23
  381. package/components/leaflet-map/config.d.ts +0 -193
  382. package/components/leaflet-map/config.js +0 -71
  383. package/components/leaflet-map/config.js.map +0 -1
  384. package/components/leaflet-map/index.d.ts +0 -130
  385. package/components/leaflet-map/index.js +0 -690
  386. package/components/leaflet-map/index.js.map +0 -1
  387. package/components/leaflet-map/leaflet.css.js +0 -5
  388. package/components/leaflet-map/leaflet.css.js.map +0 -1
  389. package/components/leaflet-map/modules/clusterBackground.d.ts +0 -5
  390. package/components/leaflet-map/modules/clusterBackground.js +0 -27
  391. package/components/leaflet-map/modules/clusterBackground.js.map +0 -1
  392. package/components/leaflet-map/modules/donut.d.ts +0 -3
  393. package/components/leaflet-map/modules/donut.js +0 -25
  394. package/components/leaflet-map/modules/donut.js.map +0 -1
  395. package/components/leaflet-map/modules/map.d.ts +0 -14
  396. package/components/leaflet-map/modules/map.js +0 -154
  397. package/components/leaflet-map/modules/map.js.map +0 -1
  398. package/components/leaflet-map/modules/node.d.ts +0 -9
  399. package/components/leaflet-map/modules/node.js +0 -162
  400. package/components/leaflet-map/modules/node.js.map +0 -1
  401. package/components/leaflet-map/modules/selectionRing.d.ts +0 -7
  402. package/components/leaflet-map/modules/selectionRing.js +0 -41
  403. package/components/leaflet-map/modules/selectionRing.js.map +0 -1
  404. package/components/leaflet-map/modules/utils.d.ts +0 -50
  405. package/components/leaflet-map/modules/utils.js +0 -210
  406. package/components/leaflet-map/modules/utils.js.map +0 -1
  407. package/components/leaflet-map/renderer/leaflet-maplibre-gl.js.map +0 -1
  408. package/components/leaflet-map/renderer/map-style.d.ts +0 -4
  409. package/components/leaflet-map/renderer/map-style.js +0 -15
  410. package/components/leaflet-map/renderer/map-style.js.map +0 -1
  411. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js +0 -40
  412. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js.map +0 -1
  413. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js +0 -40
  414. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js.map +0 -1
  415. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js +0 -4981
  416. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js.map +0 -1
  417. package/components/leaflet-map/renderer/mapboxgl-layer.d.ts +0 -8
  418. package/components/leaflet-map/renderer/mapboxgl-layer.js +0 -27
  419. package/components/leaflet-map/renderer/mapboxgl-layer.js.map +0 -1
  420. package/components/leaflet-map/renderer/mapboxgl-utils.d.ts +0 -4
  421. package/components/leaflet-map/renderer/mapboxgl-utils.js +0 -39
  422. package/components/leaflet-map/renderer/mapboxgl-utils.js.map +0 -1
  423. package/components/leaflet-map/renderer/maplibre-gl.css.js.map +0 -1
  424. package/components/leaflet-map/style.d.ts +0 -52
  425. package/components/leaflet-map/style.js +0 -183
  426. package/components/leaflet-map/style.js.map +0 -1
  427. package/components/leaflet-map/types.d.ts +0 -75
  428. package/components/leaflet-map/types.js +0 -15
  429. package/components/leaflet-map/types.js.map +0 -1
  430. package/components/line/config.d.ts +0 -30
  431. package/components/line/config.js +0 -17
  432. package/components/line/config.js.map +0 -1
  433. package/components/line/index.d.ts +0 -27
  434. package/components/line/index.js +0 -152
  435. package/components/line/index.js.map +0 -1
  436. package/components/line/style.d.ts +0 -6
  437. package/components/line/style.js.map +0 -1
  438. package/components/line/types.d.ts +0 -12
  439. package/components/nested-donut/config.d.ts +0 -59
  440. package/components/nested-donut/config.js +0 -19
  441. package/components/nested-donut/config.js.map +0 -1
  442. package/components/nested-donut/index.d.ts +0 -38
  443. package/components/nested-donut/index.js +0 -133
  444. package/components/nested-donut/index.js.map +0 -1
  445. package/components/nested-donut/modules/arc.d.ts +0 -17
  446. package/components/nested-donut/modules/arc.js +0 -50
  447. package/components/nested-donut/modules/arc.js.map +0 -1
  448. package/components/nested-donut/modules/label.d.ts +0 -7
  449. package/components/nested-donut/modules/label.js +0 -34
  450. package/components/nested-donut/modules/label.js.map +0 -1
  451. package/components/nested-donut/style.d.ts +0 -26
  452. package/components/nested-donut/style.js +0 -70
  453. package/components/nested-donut/style.js.map +0 -1
  454. package/components/nested-donut/types.d.ts +0 -24
  455. package/components/nested-donut/types.js +0 -11
  456. package/components/nested-donut/types.js.map +0 -1
  457. package/components/sankey/config.d.ts +0 -162
  458. package/components/sankey/config.js +0 -65
  459. package/components/sankey/config.js.map +0 -1
  460. package/components/sankey/index.d.ts +0 -59
  461. package/components/sankey/index.js +0 -306
  462. package/components/sankey/index.js.map +0 -1
  463. package/components/sankey/modules/label.d.ts +0 -23
  464. package/components/sankey/modules/label.js +0 -168
  465. package/components/sankey/modules/label.js.map +0 -1
  466. package/components/sankey/modules/link.d.ts +0 -14
  467. package/components/sankey/modules/link.js +0 -108
  468. package/components/sankey/modules/link.js.map +0 -1
  469. package/components/sankey/modules/node.d.ts +0 -10
  470. package/components/sankey/modules/node.js +0 -156
  471. package/components/sankey/modules/node.js.map +0 -1
  472. package/components/sankey/style.d.ts +0 -20
  473. package/components/sankey/style.js.map +0 -1
  474. package/components/sankey/types.d.ts +0 -84
  475. package/components/sankey/types.js +0 -34
  476. package/components/sankey/types.js.map +0 -1
  477. package/components/scatter/config.d.ts +0 -44
  478. package/components/scatter/config.js +0 -23
  479. package/components/scatter/config.js.map +0 -1
  480. package/components/scatter/index.d.ts +0 -28
  481. package/components/scatter/index.js +0 -167
  482. package/components/scatter/index.js.map +0 -1
  483. package/components/scatter/modules/point.d.ts +0 -7
  484. package/components/scatter/modules/point.js +0 -86
  485. package/components/scatter/modules/point.js.map +0 -1
  486. package/components/scatter/modules/utils.d.ts +0 -11
  487. package/components/scatter/modules/utils.js +0 -112
  488. package/components/scatter/modules/utils.js.map +0 -1
  489. package/components/scatter/style.d.ts +0 -5
  490. package/components/scatter/style.js.map +0 -1
  491. package/components/scatter/types.d.ts +0 -19
  492. package/components/stacked-bar/config.d.ts +0 -38
  493. package/components/stacked-bar/config.js +0 -20
  494. package/components/stacked-bar/config.js.map +0 -1
  495. package/components/stacked-bar/index.d.ts +0 -28
  496. package/components/stacked-bar/index.js +0 -208
  497. package/components/stacked-bar/index.js.map +0 -1
  498. package/components/stacked-bar/style.d.ts +0 -5
  499. package/components/stacked-bar/style.js.map +0 -1
  500. package/components/stacked-bar/types.d.ts +0 -5
  501. package/components/timeline/config.d.ts +0 -43
  502. package/components/timeline/config.js +0 -24
  503. package/components/timeline/config.js.map +0 -1
  504. package/components/timeline/index.d.ts +0 -41
  505. package/components/timeline/index.js +0 -244
  506. package/components/timeline/index.js.map +0 -1
  507. package/components/timeline/style.d.ts +0 -13
  508. package/components/timeline/style.js.map +0 -1
  509. package/components/tooltip/config.d.ts +0 -68
  510. package/components/tooltip/config.js +0 -20
  511. package/components/tooltip/config.js.map +0 -1
  512. package/components/tooltip/index.d.ts +0 -36
  513. package/components/tooltip/index.js +0 -184
  514. package/components/tooltip/index.js.map +0 -1
  515. package/components/tooltip/style.js.map +0 -1
  516. package/components/topojson-map/config.d.ts +0 -99
  517. package/components/topojson-map/config.js +0 -42
  518. package/components/topojson-map/config.js.map +0 -1
  519. package/components/topojson-map/index.d.ts +0 -52
  520. package/components/topojson-map/index.js +0 -355
  521. package/components/topojson-map/index.js.map +0 -1
  522. package/components/topojson-map/style.d.ts +0 -11
  523. package/components/topojson-map/style.js.map +0 -1
  524. package/components/topojson-map/types.d.ts +0 -78
  525. package/components/topojson-map/types.js +0 -80
  526. package/components/topojson-map/types.js.map +0 -1
  527. package/components/topojson-map/utils.d.ts +0 -3
  528. package/components/topojson-map/utils.js +0 -30
  529. package/components/topojson-map/utils.js.map +0 -1
  530. package/components/vis-controls/config.d.ts +0 -12
  531. package/components/vis-controls/config.js +0 -13
  532. package/components/vis-controls/config.js.map +0 -1
  533. package/components/vis-controls/index.d.ts +0 -14
  534. package/components/vis-controls/index.js +0 -52
  535. package/components/vis-controls/index.js.map +0 -1
  536. package/components/vis-controls/style.d.ts +0 -11
  537. package/components/vis-controls/style.js.map +0 -1
  538. package/components/vis-controls/types.d.ts +0 -13
  539. package/components/vis-controls/types.js +0 -8
  540. package/components/vis-controls/types.js.map +0 -1
  541. package/components/xy-labels/config.d.ts +0 -48
  542. package/components/xy-labels/config.js +0 -25
  543. package/components/xy-labels/config.js.map +0 -1
  544. package/components/xy-labels/index.d.ts +0 -15
  545. package/components/xy-labels/index.js +0 -87
  546. package/components/xy-labels/index.js.map +0 -1
  547. package/components/xy-labels/modules/label.d.ts +0 -9
  548. package/components/xy-labels/modules/label.js +0 -107
  549. package/components/xy-labels/modules/label.js.map +0 -1
  550. package/components/xy-labels/style.d.ts +0 -5
  551. package/components/xy-labels/style.js.map +0 -1
  552. package/components/xy-labels/types.d.ts +0 -23
  553. package/components/xy-labels/types.js +0 -9
  554. package/components/xy-labels/types.js.map +0 -1
  555. package/components.d.ts +0 -51
  556. package/components.js +0 -29
  557. package/components.js.map +0 -1
  558. package/containers/single-container/config.d.ts +0 -12
  559. package/containers/single-container/config.js +0 -12
  560. package/containers/single-container/config.js.map +0 -1
  561. package/containers/single-container/index.d.ts +0 -19
  562. package/containers/single-container/index.js +0 -128
  563. package/containers/single-container/index.js.map +0 -1
  564. package/containers/xy-container/config.d.ts +0 -99
  565. package/containers/xy-container/config.js +0 -30
  566. package/containers/xy-container/config.js.map +0 -1
  567. package/containers/xy-container/index.d.ts +0 -34
  568. package/containers/xy-container/index.js +0 -330
  569. package/containers/xy-container/index.js.map +0 -1
  570. package/containers.d.ts +0 -6
  571. package/containers.js +0 -4
  572. package/containers.js.map +0 -1
  573. package/core/component/config.d.ts +0 -58
  574. package/core/component/config.js +0 -14
  575. package/core/component/config.js.map +0 -1
  576. package/core/component/index.d.ts +0 -43
  577. package/core/component/index.js +0 -118
  578. package/core/component/index.js.map +0 -1
  579. package/core/component/types.d.ts +0 -2
  580. package/core/component/types.js +0 -2
  581. package/core/component/types.js.map +0 -1
  582. package/core/config/index.d.ts +0 -3
  583. package/core/config/index.js +0 -16
  584. package/core/config/index.js.map +0 -1
  585. package/core/container/config.d.ts +0 -48
  586. package/core/container/config.js +0 -29
  587. package/core/container/config.js.map +0 -1
  588. package/core/container/index.d.ts +0 -26
  589. package/core/container/index.js +0 -105
  590. package/core/container/index.js.map +0 -1
  591. package/core/xy-component/config.d.ts +0 -38
  592. package/core/xy-component/config.js +0 -20
  593. package/core/xy-component/config.js.map +0 -1
  594. package/core/xy-component/index.d.ts +0 -27
  595. package/core/xy-component/index.js +0 -74
  596. package/core/xy-component/index.js.map +0 -1
  597. package/data-models/core.d.ts +0 -6
  598. package/data-models/core.js +0 -14
  599. package/data-models/core.js.map +0 -1
  600. package/data-models/graph.d.ts +0 -24
  601. package/data-models/graph.js +0 -107
  602. package/data-models/graph.js.map +0 -1
  603. package/data-models/map-graph.d.ts +0 -21
  604. package/data-models/map-graph.js +0 -62
  605. package/data-models/map-graph.js.map +0 -1
  606. package/data-models/map.d.ts +0 -5
  607. package/data-models/map.js +0 -12
  608. package/data-models/map.js.map +0 -1
  609. package/data-models/series.d.ts +0 -6
  610. package/data-models/series.js +0 -19
  611. package/data-models/series.js.map +0 -1
  612. package/index.d.ts +0 -7
  613. package/index.js +0 -55
  614. package/index.js.map +0 -1
  615. package/maps/china-provinces.json.js +0 -140373
  616. package/maps/fr-regions.json.js +0 -14162
  617. package/maps/germany-regions.json.js +0 -35760
  618. package/maps/ind-regions.json.js +0 -290584
  619. package/maps/uk-regions.json.js +0 -96233
  620. package/maps/us-counties.json.js +0 -206318
  621. package/maps/us-states.json.js +0 -16345
  622. package/maps/world-110m-alpha.json.js +0 -251366
  623. package/maps/world-simple.json.js +0 -89428
  624. package/maps/world-simplest.json.js +0 -28175
  625. package/maps.d.ts +0 -60
  626. package/maps.js +0 -23
  627. package/styles/colors.d.ts +0 -7
  628. package/styles/colors.js +0 -24
  629. package/styles/colors.js.map +0 -1
  630. package/styles/index.d.ts +0 -7
  631. package/styles/index.js +0 -38
  632. package/styles/index.js.map +0 -1
  633. package/styles/sizes.d.ts +0 -2
  634. package/styles/sizes.js.map +0 -1
  635. package/types/accessor.d.ts +0 -5
  636. package/types/accessor.js +0 -2
  637. package/types/accessor.js.map +0 -1
  638. package/types/component.d.ts +0 -13
  639. package/types/component.js +0 -14
  640. package/types/component.js.map +0 -1
  641. package/types/curve.d.ts +0 -40
  642. package/types/curve.js +0 -46
  643. package/types/curve.js.map +0 -1
  644. package/types/data.d.ts +0 -7
  645. package/types/data.js +0 -2
  646. package/types/data.js.map +0 -1
  647. package/types/direction.d.ts +0 -6
  648. package/types/direction.js +0 -10
  649. package/types/direction.js.map +0 -1
  650. package/types/graph.d.ts +0 -35
  651. package/types/graph.js +0 -2
  652. package/types/graph.js.map +0 -1
  653. package/types/map.d.ts +0 -4
  654. package/types/map.js +0 -2
  655. package/types/map.js.map +0 -1
  656. package/types/misc.d.ts +0 -8
  657. package/types/position.d.ts +0 -20
  658. package/types/position.js +0 -27
  659. package/types/position.js.map +0 -1
  660. package/types/scale.d.ts +0 -23
  661. package/types/scale.js +0 -27
  662. package/types/scale.js.map +0 -1
  663. package/types/shape.d.ts +0 -7
  664. package/types/shape.js +0 -11
  665. package/types/shape.js.map +0 -1
  666. package/types/spacing.d.ts +0 -6
  667. package/types/spacing.js +0 -2
  668. package/types/spacing.js.map +0 -1
  669. package/types/svg.d.ts +0 -18
  670. package/types/svg.js +0 -22
  671. package/types/svg.js.map +0 -1
  672. package/types/symbol.d.ts +0 -18
  673. package/types/symbol.js +0 -24
  674. package/types/symbol.js.map +0 -1
  675. package/types/text.d.ts +0 -47
  676. package/types/text.js +0 -26
  677. package/types/text.js.map +0 -1
  678. package/types.d.ts +0 -27
  679. package/types.js +0 -30
  680. package/types.js.map +0 -1
  681. package/utils/color.d.ts +0 -10
  682. package/utils/color.js +0 -32
  683. package/utils/color.js.map +0 -1
  684. package/utils/d3.d.ts +0 -3
  685. package/utils/d3.js +0 -16
  686. package/utils/d3.js.map +0 -1
  687. package/utils/data.d.ts +0 -45
  688. package/utils/data.js +0 -274
  689. package/utils/data.js.map +0 -1
  690. package/utils/html.d.ts +0 -1
  691. package/utils/html.js +0 -16
  692. package/utils/html.js.map +0 -1
  693. package/utils/map.d.ts +0 -2
  694. package/utils/map.js +0 -20
  695. package/utils/map.js.map +0 -1
  696. package/utils/misc.d.ts +0 -9
  697. package/utils/misc.js +0 -47
  698. package/utils/misc.js.map +0 -1
  699. package/utils/path.d.ts +0 -23
  700. package/utils/path.js +0 -144
  701. package/utils/path.js.map +0 -1
  702. package/utils/scale.d.ts +0 -1
  703. package/utils/style.d.ts +0 -6
  704. package/utils/style.js +0 -24
  705. package/utils/style.js.map +0 -1
  706. package/utils/svg.d.ts +0 -3
  707. package/utils/text.d.ts +0 -139
  708. package/utils/text.js +0 -443
  709. package/utils/text.js.map +0 -1
  710. package/utils/type.d.ts +0 -5
@@ -0,0 +1 @@
1
+ {"type": "Topology", "arcs": [[[24378, 9422], [59, 5], [102, -1], [103, -2], [4, 0], [102, -3], [14, 0], [125, -1], [3, 0], [121, -1], [69, -1]], [[25080, 9418], [7, -54], [13, -103], [2, -16], [3, -27], [14, -103], [12, -90], [6, -50], [3, -27], [13, -108], [9, -74], [3, -24], [16, -129], [0, -10], [14, -102], [15, -52], [13, -63], [20, -42], [7, -57], [16, -64], [-37, -41], [2, -32], [-3, -32], [-17, -91], [0, -7], [22, -106], [-13, -91], [-4, -53], [22, -48], [6, -33]], [[25244, 7689], [-132, -1], [-2, 0], [-146, -2], [-41, 1], [-54, 0], [-82, 0], [-26, 1], [-102, 1], [-118, -1], [-9, -57], [27, -53], [34, -29], [-6, -117], [-25, -55]], [[24562, 7377], [-37, -13], [-67, 69], [-9, 108], [-19, 12], [-25, -77], [-2, -57], [-78, -3]], [[24325, 7416], [-4, 159], [-4, 113], [-2, 51], [-4, 140], [-4, 113], [-3, 85], [11, 145], [3, 35], [9, 116], [11, 153], [2, 27], [10, 128], [8, 108], [7, 91], [12, 135], [0, 12], [8, 103], [5, 61], [4, 51], [12, 136], [-28, 44]], [[25080, 9418], [37, -1], [29, 0], [27, 1], [77, 1], [1, 0], [46, 0], [8, 0], [42, 0], [81, 0]], [[25428, 9419], [53, 0], [33, 0], [19, 0], [104, 2], [19, 0], [101, 4]], [[25757, 9425], [-66, -124], [3, -13], [65, -65], [14, -18], [16, -7], [29, 0], [29, -82], [9, -35], [40, -85], [8, -25], [59, -53], [35, -64], [28, -38], [23, -23], [5, -5], [27, -40], [-9, -34], [25, -50], [26, -22], [39, -44], [19, -22], [33, -91], [2, -39], [7, -65], [29, -17], [42, -109], [-6, -33], [8, -48], [63, -36]], [[26359, 8138], [12, -11], [-85, -123], [-12, 0], [1, -68], [-22, -87], [2, -33], [-47, -120], [11, -25], [-11, -107]], [[26208, 7564], [-69, 16], [-55, 32], [-38, -32], [8, -67], [-10, -101], [-33, -1], [-12, 91], [-55, 5], [-12, 1], [-33, 4], [-29, 2], [-121, 13], [-36, 3], [-23, 2], [-69, 6], [-36, 3], [-72, 6], [-20, 2], [-54, 4], [-26, 2], [-132, 9], [-2, 7], [-35, 118]], [[23561, 13111], [4, -34], [1, -31], [38, -43], [-32, -75], [6, -39], [28, -109], [42, -27], [48, -15], [21, -58]], [[23717, 12680], [45, -55], [43, -81], [42, -33], [2, -36], [1, -46], [-25, -63], [-20, -24], [-8, -61], [-31, -28], [-88, -30], [-71, -18], [-6, -34], [-12, -40], [45, -73], [0, -2], [-4, -62], [-36, -49], [-5, -50], [-19, -25], [-44, -13], [-20, -101]], [[23506, 11756], [-18, 3], [-62, 94], [-61, 3], [-64, -3], [-47, -1], [-77, -3], [-21, 0], [-104, -3], [-75, -1], [-49, 0], [-59, -2], [-66, -1], [-58, -1], [-65, 0], [-43, 0], [-77, 1], [-78, 2], [-46, 1], [-107, 2]], [[22329, 11847], [-31, 70], [13, 16], [5, 51], [-18, 65], [0, 46], [-11, 14], [-4, 87], [-16, 50], [-25, 11], [-9, 65], [14, 52], [-18, 28], [2, 46], [-39, 33], [-23, 72], [0, 27], [-6, 73], [-18, 19]], [[22145, 12672], [-14, 31], [-38, 77], [28, 74], [22, 76], [-27, 76], [8, 59], [-20, 46], [40, 0]], [[22144, 13111], [108, 0], [52, 0], [110, 0], [18, 0], [128, 0], [16, 0], [112, 0], [52, 0], [76, 0], [87, 0], [41, 0], [121, 0], [6, 0], [129, 0], [27, 0], [100, 0], [95, 0], [33, 0], [106, 0]], [[22640, 10291], [0, -101], [0, -43], [0, -73]], [[22640, 10074], [15, -146], [3, -26], [16, -149], [5, -52], [12, -106], [-1, -4], [-4, -195], [-1, -90], [-2, -96], [-3, -137], [-2, -109], [-2, -131]], [[22676, 8833], [-69, 30], [-48, 35], [-64, 65], [-42, -25], [-61, 1], [-8, 22], [-65, -31], [-11, -9], [-82, -1], [-5, -29], [-58, -20], [-66, 50], [9, 24], [-27, -20], [-48, 2], [-19, 43], [-2, -2], [-61, -91], [-11, 77], [-44, -42], [-30, 42], [-21, -8], [-30, 40], [-44, -58], [-39, 14], [-28, 49], [-15, 60], [-61, 8], [-16, -33], [-51, 33], [-41, -10], [-52, 34], [-64, 1], [-6, 52], [-49, 46], [-22, -20], [-60, -6], [-40, 54], [-41, 23], [-1, 81], [0, 123], [0, 66], [0, 104], [0, 86], [0, 113], [0, 76], [-1, 193], [-147, -1], [-111, 1], [-35, -1], [-146, 1], [-111, 0], [-34, 0], [-228, 0]], [[20370, 10075], [0, 217]], [[20370, 10292], [259, -3]], [[20629, 10289], [5, 0], [127, 1], [133, 1], [33, 0], [84, 1], [148, 1], [23, 0], [125, -1], [23, 0], [124, 0], [123, -1], [54, 0], [63, 0], [84, 0], [92, 0], [85, 1], [108, -1], [61, 0], [142, 0], [9, 0], [49, 1], [71, 0], [32, 0], [90, 0], [18, 0], [105, -1]], [[28035, 12182], [-39, -35], [-41, -81], [7, 1], [-42, -55], [19, -41], [-33, -41], [-6, -73], [1, -7], [33, -22], [4, -55], [30, -33], [59, -84], [-67, -42], [-23, -25], [-22, -44], [-20, -10], [-55, -29]], [[27840, 11506], [-48, 17], [-53, -51]], [[27739, 11472], [-93, 0], [-27, -1], [-2, 0], [-89, 0], [-60, 0], [-57, 0], [-59, 0], [-65, 0], [-3, 0], [-171, 1], [-65, 0], [-11, 0], [-116, 0], [-32, 0], [-125, -1], [-23, 0]], [[26741, 11471], [-78, 0], [-42, 0], [-136, 0], [-27, 0], [0, 105], [0, 24], [0, 62], [0, 104], [0, 33], [0, 71]], [[26458, 11870], [0, 92], [0, 21], [0, 97], [0, 4], [0, 154], [0, 5], [0, 151], [0, 57]], [[26458, 12451], [206, 126]], [[26664, 12577], [0, -117], [40, 0], [149, 0], [38, 0], [166, 0], [27, 0], [124, 0], [38, 0], [175, 1], [10, 0], [100, -1], [112, 0], [11, 0], [168, 0], [22, 0], [69, -65], [26, -43], [-5, -65], [49, -70], [36, -6], [16, -29]], [[22329, 11847], [16, -27], [42, -113], [0, -1], [66, -113]], [[22453, 11593], [-8, 0], [-122, 0], [-60, 0], [-62, 0], [-60, 0], [-93, 0], [-30, 0], [-122, 1], [-123, 0], [-30, 0], [-93, 0], [-63, 0], [-59, 0], [-93, 0], [-30, 0], [-120, 0], [-1, 0], [-149, -1], [-4, 0], [-148, 1], [-6, 0], [-153, 0], [-24, 0], [-172, 0]], [[20628, 11594], [0, 150], [0, 39], [0, 112], [0, 23], [0, 109], [-155, 0], [-8, 0], [-198, 0], [-52, 0], [-130, 0]], [[20085, 12027], [1, 170], [0, 74], [0, 58], [0, 132], [0, 264], [-1, 169]], [[20085, 12894], [149, 0], [136, 0], [57, 0], [192, -1], [231, 0], [279, 0], [180, 0], [76, 0], [204, 0], [52, -50], [42, -19], [55, -30], [28, 42], [57, -7], [41, 0], [48, 7], [39, -29], [40, -16], [57, -25], [47, -79], [50, -15]], [[23506, 11756], [-21, -56], [-2, -21], [3, -70], [16, -40], [19, -82], [16, -31], [35, -38], [65, -86], [59, -76], [15, -126], [32, -26], [26, 41], [47, -20], [43, -50], [-14, -15], [-3, -48], [-21, -56], [-1, -5], [-22, -58], [-3, -75], [27, -38], [13, -17], [54, -51], [18, -41], [26, 13], [46, -44], [44, -51], [-2, -50], [0, -2], [26, -73], [-17, -27], [-1, -36], [31, -92], [17, -13], [49, -12]], [[24126, 10284], [8, -17], [-6, -69], [-14, -58], [-41, -8], [-24, -58]], [[24049, 10074], [-19, 0], [-15, 0], [-1, -70], [-23, -66], [-28, -80]], [[23963, 9858], [-61, -1], [-89, -1], [-24, 0], [50, 88], [29, 32], [5, 50], [-42, 48], [-96, 0], [-57, 0], [-92, 0], [-76, -1], [-12, 1], [-60, 1], [-121, -1], [-8, 0], [-103, 0], [-65, 0], [-23, 0], [-119, 0], [-6, 0], [-73, 0], [-76, 0], [-58, 0], [-146, 0]], [[22640, 10291], [0, 25], [0, 122], [0, 11], [0, 125], [0, 9], [1, 158], [0, 10], [0, 142], [1, 40], [1, 112], [0, 47], [0, 86], [0, 31], [2, 19], [-47, 18], [-52, 95], [-37, 49], [13, 35], [48, 90], [-32, 34], [-23, -16], [-62, 60]], [[15768, 12458], [172, 0], [10, 0], [305, 1], [317, 1]], [[16572, 12460], [2, 0], [311, -1], [226, 0], [204, -1], [66, 0]], [[17381, 12458], [-1, -432], [-1, -383], [0, -91], [0, -158], [-1, -375], [0, -45], [0, -185], [-1, -236], [1, -261]], [[17378, 10292], [0, -69], [1, -282], [-29, -73], [-23, -4], [-36, 55], [-54, 4], [-45, -20], [2, -70], [20, -144], [-6, -53], [22, -71], [7, -81], [-16, -59]], [[17221, 9425], [-276, 350], [-53, 67], [-189, 233], [-169, 203], [-180, 215], [-161, 187], [-198, 225], [-46, 52], [-70, 78], [-86, 95], [-26, 58], [-1, 20], [0, 23], [0, 65], [0, 56], [1, 120], [1, 337], [-1, 297], [1, 352]], [[26208, 7564], [0, -88], [17, -111], [45, -253], [31, -105], [36, -122], [64, -154], [42, -89], [13, -55], [-16, -21], [-5, -66], [11, -70], [32, -102], [33, -132], [34, -127], [32, -128], [13, -75], [-11, -207], [-12, -149], [-3, -88], [-31, -24], [-26, -95], [-10, -83], [28, 20], [6, -5], [-29, -81], [-35, 21], [-71, -24], [-30, 13], [-60, -25], [-25, 44], [15, 58], [-47, 145], [-48, 50], [-42, 40], [-18, -19], [-30, 102], [-12, 104], [-45, 71], [-25, -3], [-9, 66], [20, 58], [-3, 81], [-28, -18], [-11, -64], [-14, 9], [-29, 68], [-52, 153], [-20, 39], [-17, 43], [41, 68], [44, 84], [-69, 79], [17, -88], [-14, -47], [-28, -2], [-30, 79], [6, 58], [-9, 66], [8, 0], [7, 0], [34, 113], [3, 113], [-24, 130], [-19, 71], [-46, 9], [-46, 48], [-13, 57], [-50, 42], [-3, 65], [-34, 24], [-28, 71], [-95, 86], [-23, 5], [-52, 1], [-20, -59], [-52, -22], [-79, -67], [-108, -34], [-44, 107], [-42, 31], [-123, 118], [-109, 47], [-109, 4], [-32, -7], [-163, -39]], [[26108, 4900], [18, 39], [82, 67], [38, -25], [12, -40], [-70, -18], [-46, -27], [-34, 4]], [[23963, 9858], [24, -42], [-33, -5], [-13, -57], [-36, -9], [10, -88], [-35, 4], [-4, -60], [-1, -2], [-22, 14], [17, -23], [-22, -52], [-4, -63], [-37, -53]], [[23807, 9422], [1, -58], [-27, -13], [-30, -87], [-18, 4], [3, -50], [1, -41], [-71, -70], [-34, -65], [0, -1], [19, -38], [-54, -24], [8, -85], [-8, -52], [-36, 2], [-3, -44], [4, -13], [35, -134], [-22, -91], [0, -4]], [[23575, 8558], [-27, 1], [-46, 0], [-6, 0], [-165, 1], [-178, 3], [-72, 1], [-67, 0], [-68, 1], [-8, 0], [-77, 0], [-3, 0], [-62, 0]], [[22796, 8565], [0, 121], [0, 110], [-38, 18], [-57, -18], [-25, 37]], [[22796, 8565], [0, -60], [0, -82], [0, -130], [0, -85], [8, -94], [36, -59], [21, -68], [-8, -43], [46, -98], [17, -81], [13, 4], [10, -70], [-12, -67], [-17, -75], [-29, -53], [-3, -74], [9, -69], [-4, -83], [-36, -82], [-20, -29], [25, -46]], [[22852, 7121], [-44, -4], [-96, -51], [-4, -3], [-39, -6], [-62, -7], [12, 100], [-33, 0], [-31, -36], [-23, -52], [29, -25], [5, -81], [-45, -46], [-13, -35], [77, 96], [5, -28], [-85, -88], [-72, -91], [-34, -18], [-82, -69], [-111, -75], [-42, -45], [-18, -31], [-51, -41], [-59, -71], [-53, -96], [-48, -114], [-34, -129], [-8, -133], [24, -161], [18, -81], [-6, 0], [-19, 81], [-20, 87], [-3, 137], [6, 70], [29, 129], [41, 97], [11, 51], [43, 77], [26, 20], [55, 77], [-39, 40], [-8, -40], [-1, -20], [-3, -24], [-35, -40], [-24, 26], [-51, -47], [52, -15], [-31, -60], [-85, -12], [-15, -13], [69, -65], [-20, -59], [-21, -99], [-30, 13], [-33, -34], [25, -23], [33, 12], [-12, -237], [7, -48], [24, -81], [20, -62], [-3, -72], [37, -18], [2, -47], [-102, -29], [-35, 58], [-59, 15], [-46, -7], [-57, 14], [-59, 65], [-33, 14], [-22, -8], [-41, 59], [-78, 24], [-16, 63], [-27, 117], [-49, 78], [-1, 105], [-14, 32], [7, 64], [-34, 67], [-27, 6], [-47, 64], [-4, 43], [-51, 106], [-36, 22], [-22, 38], [-11, 63], [-45, 101], [-1, 34], [-39, 88], [-5, 61], [-34, 69], [-59, 55], [-13, 39], [-55, 34], [3, 38], [-31, 17], [-29, 50], [-78, 1], [-58, 12], [-38, -8], [-56, 37], [-18, -48], [-28, 7], [-50, -19], [-36, -94], [-16, -128], [-63, -74], [-4, -31], [-44, -1], [-40, 26], [-35, 49], [-46, 15], [-18, 31], [-67, 26], [-127, 138], [-46, 124], [-3, 110], [-46, 92], [-11, 77], [-23, 27], [-57, 70], [-54, 28], [-44, 58], [-13, 40], [-46, 36], [-60, 96], [-57, 35], [-48, 115], [-39, 22]], [[19415, 8029], [-29, 36], [5, 58], [65, 0], [103, 0], [292, 0], [19, 0], [223, -1], [12, 0], [69, 1], [108, 0], [71, 0], [0, 38], [0, 188], [0, 190], [2, 186], [1, 79], [2, 110], [1, 208], [0, 4], [0, 188], [0, 90], [0, 99], [0, 191], [0, 51], [0, 136], [0, 194], [11, 0]], [[17381, 12458], [281, 2], [227, -1], [14, 0], [164, 1], [125, 1]], [[18192, 12461], [0, -183], [0, -142], [0, -111], [270, 0], [12, 0], [258, 1]], [[18732, 12026], [1, -146], [-1, -191], [0, -244], [0, -70], [0, -57], [-3, -376], [6, -151], [0, -117], [-1, -173], [0, -210]], [[18734, 10291], [-260, 0], [-202, 2], [-162, -1], [-323, 0], [-97, 0], [-312, 0]], [[19415, 8029], [-208, 0], [-247, 0], [0, -195], [-228, 0]], [[18732, 7834], [1, 474], [0, 153], [0, 186], [0, 247], [0, 347], [0, 166], [0, 452], [1, 432]], [[18734, 10291], [180, 1], [243, 0], [16, 0], [256, -3], [127, 1], [78, 0], [135, 0], [18, 0], [310, 0], [250, 2], [23, 0]], [[20629, 10289], [1, 171], [0, 110], [0, 42], [-1, 227], [0, 2], [0, 151], [0, 36], [0, 151], [0, 38], [-1, 188], [0, 3], [0, 186]], [[24325, 7416], [-29, -21], [-84, 23], [-29, 8], [-95, -38], [-19, 29], [3, -30], [-52, -53]], [[24020, 7334], [-25, 20], [-20, 100], [-43, 91], [33, 145], [-29, 0], [-115, -1], [-24, 0], [-54, 0], [-6, 0], [-70, 0], [-63, 0], [-31, 0], [-125, 0], [12, 83], [20, 36], [1, 112], [32, 49], [4, 38], [18, 5], [18, 54], [59, 107], [0, 3], [-7, 1], [-18, 38], [34, 1], [28, 49], [-30, 18], [-30, 49], [12, 35], [7, 6], [-29, 27], [-4, 158]], [[23807, 9422], [159, 0], [21, 0], [79, 0], [42, 0], [49, 0], [52, 0], [10, 0], [111, 0], [4, 0], [44, 0]], [[22144, 13111], [0, 151], [0, 151], [0, 150], [0, 38], [0, 76], [0, 75], [0, 125], [-5, 25], [-57, 37], [-42, 77], [-2, 25], [52, 44], [23, 82]], [[22113, 14167], [-3, 37], [-6, 134], [-37, 65], [-14, 65], [-2, 1], [-10, 225], [-1, 38], [-4, 112], [-11, 76], [-44, 119], [-25, 98], [1, 9], [-6, 152], [17, 62], [-35, 136]], [[21933, 15496], [223, -1], [294, 0], [45, 0], [0, 168], [53, -7], [36, -32], [39, -179], [-2, -46], [70, -33], [50, -20], [109, -11], [13, -49], [89, 13], [70, 42], [33, -7], [97, -38], [20, -44], [40, 5], [37, -100], [22, 54], [34, 9], [43, -43], [55, -27], [24, -38], [77, -29], [48, 15], [60, 46], [39, 24], [33, -63], [106, -4], [65, 9], [71, -54], [33, 16], [43, -24], [-104, -59], [-153, -55], [-132, -104], [-90, -112], [-118, -115], [-81, -67], [21, -35]], [[23345, 14501], [-33, 14], [-42, -33], [0, -106], [0, -113], [-19, -63], [-94, -51], [-36, -71], [-12, -37], [65, -89], [-26, -63], [-4, -37], [-9, -56], [6, -94], [-9, -52], [19, -14], [51, -63], [62, -11], [20, -38], [42, -20], [34, -21], [28, -72], [81, -73], [36, -18], [38, -59], [7, -53], [11, -97]], [[23345, 14501], [53, -7], [73, 28], [87, 47], [36, -1], [70, 42], [23, -25], [-36, -62], [-11, -75], [46, 27], [56, -27], [36, -8]], [[23778, 14440], [54, -28], [27, -71], [51, -16], [227, -71], [27, -17], [16, -11], [67, -25], [153, -40], [16, -61], [58, -26], [18, -21], [-22, -139], [58, -6], [-26, -62], [41, -44]], [[24543, 13802], [-11, -51], [-35, -5], [-62, -125], [17, -61], [45, 47], [7, 14], [34, 70], [55, 29], [46, 114], [55, 23], [-4, -57], [-38, -52], [-50, -128], [-25, -53], [-21, -97], [6, -64], [-34, -33], [-23, -93], [7, -92], [-24, -59], [-32, -127], [6, -25], [0, -83], [17, -69], [6, -75], [1, -77]], [[24486, 12673], [-108, 2], [-28, -1], [-109, 0], [-19, -1], [-45, 1], [-115, 3], [-10, 0], [-117, 2], [-24, 0], [-136, 1], [-58, 0]], [[24049, 10074], [19, 2], [139, 0], [1, 0], [3, 0], [81, -1], [8, 0], [118, -1], [-5, 78], [103, -18], [14, 0], [82, 2], [60, 0], [14, 1], [81, 2], [54, -7], [42, 8], [55, -5], [62, -5], [51, -3], [96, -1], [38, 3], [5, 0], [81, -4], [52, -6], [1, 0], [140, -4], [10, 0], [65, -2], [16, 0], [69, 5]], [[25604, 10118], [55, -1], [132, -2], [41, 0], [60, 0], [85, 1], [15, 0], [25, 0], [87, 8], [49, -1], [-8, -10]], [[26145, 10113], [-14, -86], [-52, -44], [-3, -11], [-40, -69], [-39, 22], [-52, -36], [-24, -41], [-27, 27], [-80, -41], [-17, -66], [-37, -8], [-43, -26], [0, -8], [-65, -57], [-46, 2], [-29, -3], [-49, -45], [-2, 2], [-18, -74], [-72, -37], [-8, -95]], [[25604, 10118], [57, 28], [73, 32], [33, 50], [52, 17], [3, 35], [39, 64], [43, 33], [3, 3], [65, 40], [94, 104]], [[26066, 10524], [11, -11], [0, -65], [51, -53], [48, -14], [54, 57], [37, -45], [66, 25], [36, 24], [-3, 35], [42, -15], [41, 35], [21, -22], [48, 37], [21, 51], [-21, 29], [37, 79], [29, 34], [26, 48], [16, 56], [28, 31], [29, 73], [11, 69], [47, -58], [44, -20], [24, 29], [45, 122], [17, 39], [34, -38], [22, 53], [50, 34], [16, 40], [10, 14], [28, 35], [15, 129], [32, -32], [53, -55], [56, -57], [29, 81]], [[27216, 11298], [12, 2], [59, -45], [-1, -64], [36, -8], [57, -53]], [[27379, 11130], [20, -41], [1, -21]], [[27400, 11068], [0, -2], [-12, -35], [-13, -30]], [[27375, 11001], [-24, 1], [-22, -58], [5, -69], [74, 12], [4, -42], [43, -49], [60, -7], [26, -49], [77, -63], [-23, -91], [-11, -30], [-47, 23], [-29, 56], [-71, 90], [60, -99], [42, -70], [46, -36], [-13, -55], [7, -50], [-32, -19], [27, -33], [30, -20], [-27, -56], [-63, 56], [2, 21], [-71, 41], [-18, -12], [73, -40], [1, -37], [50, -56], [20, -13], [21, -4], [42, 17], [49, -3], [35, -160]], [[27718, 10097], [-69, 0], [-52, 0], [-48, 0], [-13, -1], [-102, 1], [0, -3], [-67, 1], [-37, -1], [-126, 0], [-37, 0], [-39, 0], [-76, 0], [-35, -1], [-75, 0], [-17, 0], [-93, 0], [-21, 0], [-34, 0], [-35, -1], [-11, 0], [-55, 1], [-85, 0], [-7, 0], [-105, 4], [-46, 3], [-62, 0], [-16, 1], [-123, 6], [-87, 6]], [[27771, 10704], [13, 19], [103, 14]], [[27887, 10737], [-30, -66], [-23, -2], [-34, -58], [-10, -74], [-21, -45], [-38, -116], [-41, -28], [-15, 55], [24, 127], [72, 174]], [[18732, 7834], [-382, 0], [-166, 0], [-79, 40], [-280, 141], [-253, 125], [-401, 197], [2, 53], [24, 44]], [[17197, 8434], [48, 18], [20, 38], [-13, 79], [-52, 30], [8, 75], [-12, 55], [26, 15], [35, 115], [-10, 99], [27, 66], [49, 42], [31, 56], [-55, 64], [-35, 113], [-43, 68], [0, 58]], [[24126, 10284], [-11, 37], [46, 68], [19, 1], [1, 0], [99, -64], [20, -5], [17, 37], [-25, 57], [28, 60], [15, -8], [81, 43], [-20, 30], [-6, 39], [34, 59]], [[24424, 10638], [28, 45], [62, -2], [67, 19], [40, -19], [10, -8], [53, -33], [25, 55], [45, 30], [42, -68], [33, 32], [12, 56], [8, 33], [36, 25], [17, -53], [72, -25], [15, 4], [6, 8], [6, 66], [29, 47], [42, 40], [55, 63], [2, 27], [-7, 53], [33, 11], [35, -19], [48, 31], [58, 13], [4, 28], [-20, 19], [-2, 56], [16, 33]], [[25294, 11205], [53, -14], [32, 9], [50, -32], [23, -64], [1, -20], [48, -24], [41, -2], [54, -55], [16, -1], [33, 28], [69, -37], [34, 3], [27, 35], [40, 22], [22, -80], [40, -28], [20, -36]], [[25897, 10909], [-4, -77], [-9, -47], [39, -83], [20, -40], [24, -49], [33, -51], [66, -38]], [[20085, 12894], [0, 207], [0, 11], [0, 152], [0, 125], [0, 17], [0, 169], [-1, 185]], [[20084, 13760], [4, 93], [0, 291], [0, 27]], [[20088, 14171], [284, 0], [14, 0], [255, 0], [1, 0], [402, -1], [3, 0], [169, -1], [43, 0], [193, 0], [76, -1], [194, -1], [8, 0], [204, 0], [179, 0]], [[15768, 12458], [-239, 0], [-154, 1], [-228, 5], [-255, -2], [-78, -1], [-81, -3], [-107, 2]], [[14626, 12460], [-39, 50], [-21, 141], [12, 58], [-44, 116], [20, 49], [26, 136], [45, 148], [15, 110], [13, 179], [15, 166], [-2, 75], [17, 93], [18, 267], [-9, 53], [10, 125], [21, 37], [83, 45]], [[14806, 14308], [51, -50], [40, 11], [26, 7], [57, -45], [32, -101], [7, -53], [23, -48], [116, -30], [88, 44], [15, 19], [94, 14], [22, -12], [142, -25], [71, 42], [40, -16], [80, 11], [57, 37], [36, 11], [118, 35], [83, 7], [37, 28], [268, 1], [6, 0], [101, -1], [33, 0], [154, -1]], [[16603, 14193], [32, -61], [54, -33], [36, -71], [-60, -151], [-27, -82], [-32, -102], [-39, -43], [-26, -86], [-23, -29], [2, -77], [31, -9], [56, -55], [-22, -119], [-13, -86], [0, -284], [0, -445]], [[23778, 14440], [105, 47], [38, 40], [26, 22], [97, 9], [79, 64], [57, 21], [12, 29], [101, 80], [26, 37], [64, 38], [103, 6], [23, -14], [-139, -104], [-60, -113], [5, -63], [51, 59], [54, -7], [40, -1], [72, -43], [66, -125], [73, -12], [28, 16], [38, -41], [103, 37], [96, 64], [75, 8], [103, -4], [67, 32], [56, -25], [-8, -74], [70, -35], [103, 24], [83, 1], [-9, -37], [6, -103], [14, -38], [47, -41], [53, 45], [33, -6], [19, -69], [-74, 2], [-90, 19], [-71, -20], [-75, 52], [-25, -94], [-70, 74], [-89, 38], [-51, -1], [-38, -54], [-54, 1], [-17, -16], [-73, 14], [-34, -25], [-38, -64], [-86, 44], [-16, -60], [-63, -1], [-52, -73], [-17, -53], [-77, -132], [5, -13]], [[25663, 12344], [-83, -4], [-32, -2], [-130, -5], [-11, -1], [-110, -4]], [[25297, 12328], [-5, 28], [-101, -1], [-26, 1], [-99, -1], [-35, 0], [-74, 1], [-44, 0], [-81, -1], [-82, 1]], [[24750, 12356], [56, 57], [36, 98], [33, 54], [25, 77], [18, 151], [-17, 152], [-53, 154], [-20, 63], [29, 87], [-23, 104], [35, 52], [33, 72], [8, 75], [1, 81], [43, 32], [2, 55], [37, 28], [33, -8], [16, 43], [45, 9], [-15, -128], [53, 37], [13, 30], [2, 120], [4, 27], [75, 42], [-7, 88], [57, 78], [48, 17], [73, -59], [70, -11], [26, -52], [54, -9], [84, -58], [28, 2], [30, -65], [18, -34], [-37, -42], [36, -75], [14, -63], [-13, -88], [-3, -74], [-48, -29], [-16, -47], [-4, -47], [-67, -30], [-22, -34], [0, -103], [57, -30], [62, 56], [56, 105], [94, 42], [48, -36], [28, -68], [8, -61], [28, -226], [25, -83], [-31, -161], [-51, -4], [2, 38], [-25, -13], [-19, -89], [-24, -48], [-46, -43], [-16, -91], [-38, -46], [-35, -83]], [[24092, 15009], [21, 25], [171, 104], [-33, -71], [-62, -25], [-43, -44], [-54, 11]], [[17197, 8434], [-376, -43], [-275, -37], [-33, 59], [-2, 89], [-21, 107], [-48, 92], [-25, 23], [-50, 68], [-90, 87], [-38, -17], [-42, 16], [5, 43], [-34, 81], [-115, 8], [-74, 43], [-14, 47], [-57, 54], [-22, 16], [-85, -2], [-72, 28], [-90, -11], [-47, 57], [12, 48], [-13, 123], [4, 65], [-71, 53], [7, 68], [-36, 24], [-44, 77], [-32, 17], [-16, 52], [-101, 173], [-48, 54], [-13, 73], [5, 64], [27, 10], [4, 83], [-14, 35], [-66, 11], [-51, 66], [-30, 39], [1, 70], [-31, 70], [3, 82], [30, 0], [8, -51], [69, -55], [16, -2], [-31, 90], [-45, 50], [-1, 2], [6, 48], [-28, 17], [40, 53], [-35, 35], [-25, -13], [3, -120], [-61, 26], [-64, 60], [-17, 114], [-35, 68], [-55, 50], [-54, 87], [-52, 65], [9, 60], [-36, 136], [16, 79], [-23, 122], [-46, 73], [-92, 113], [-13, 76], [21, 78], [47, 112], [1, 77], [24, 179], [-21, 106], [-30, 32], [11, 94]], [[15700, 8991], [47, 10], [-13, -56], [-34, 46]], [[26458, 11870], [-41, -24], [11, -82], [8, -34], [-22, -57], [-5, -12], [-9, -54], [-23, -79], [-4, -57], [-30, -49], [-26, -29], [-22, -36], [-68, -50], [-23, 29], [-73, -83], [-8, -15], [2, -38], [-9, -73], [-34, -21], [-6, 47], [-45, -13], [-32, -70], [-1, -88], [-19, -4], [-10, -58], [-49, -16], [-23, 5]], [[25294, 11205], [0, 86], [1, 94], [0, 20], [0, 69], [1, 83], [0, 38], [2, 132], [-1, 18], [1, 96], [0, 68], [0, 84], [0, 28], [0, 115], [0, 8], [0, 67], [-1, 45], [0, 72]], [[25663, 12344], [79, -48], [62, -47], [65, -8], [58, -49], [36, 20], [103, 34], [60, -8], [69, 62], [55, 56], [77, 41], [131, 54]], [[26664, 12577], [169, 130], [24, 52], [52, 41], [-44, 122], [-15, 85], [118, 42], [46, 6], [128, -2], [64, -14], [49, -40], [54, 15], [115, -3], [62, 31], [28, 34], [57, 45], [56, 22], [1, 46], [-8, 53], [25, 57], [-50, 41], [2, 74], [123, 88], [26, 49], [141, 153], [73, 50], [67, 5], [189, 0], [186, 7]], [[28402, 13766], [-6, -194], [7, -8], [7, -122], [-34, -96], [16, -102], [4, -24], [31, -98], [-1, -92], [-6, -161], [3, -85]], [[28423, 12784], [-24, -103], [-42, -183], [3, -16], [3, 0]], [[28363, 12482], [-9, -167], [-4, -60], [-3, -70], [17, -67], [-67, -48], [20, -50]], [[28317, 12020], [-30, -47], [-6, -33], [5, 0], [15, 30], [59, 23], [72, -8], [25, 26], [136, 7], [81, 54], [65, -50], [-81, -54], [-178, -86], [-100, -25], [-89, -8], [-34, -11], [-32, 2], [-7, 48], [-8, 4]], [[28210, 11892], [17, 47], [14, 36], [5, 15], [6, 35], [-86, 59], [-6, 4], [-35, 26], [-90, 68]], [[28204, 11879], [-11, -49], [-40, -20]], [[28153, 11810], [15, 40], [11, 22], [25, 7]], [[24424, 10638], [-16, 40], [15, 69], [26, 53], [-12, 25], [-1, 11], [36, 8], [29, 61], [26, 67], [35, 56], [-4, 67], [3, 24], [-32, 109], [10, 44], [20, 38], [0, 56], [0, 56], [0, 120], [0, 115], [2, 142], [0, 6], [0, 107], [0, 119], [0, 67], [0, 58], [0, 74], [1, 103]], [[24562, 12333], [26, -28], [55, -8], [78, 37], [29, 22]], [[24486, 12673], [-9, -82], [21, -65], [20, -33], [22, -108], [22, -52]], [[30268, 2044], [-25, -3], [-42, 1], [-17, 9], [-25, -19], [-2, 0], [-33, -1], [-35, -3], [-27, 3], [8, 93], [-2, 43], [-10, 13], [-4, 34], [22, 17], [15, 43], [40, -11], [15, -2], [18, 1], [19, -1], [48, 0], [14, -1], [26, 1], [25, 1], [8, -5], [32, -4], [10, -6], [9, 9], [25, -10], [12, 3], [44, -15], [22, -16], [22, -10], [12, -32], [-10, -35], [-22, -15], [-15, -45], [-15, -25], [-16, -13], [-30, -1], [-13, -5], [-40, -22], [-33, 26], [-30, 3]], [[87426, 81], [40, 13], [23, 72], [18, -58], [-41, -57], [0, -36], [-31, -15], [-9, 81]], [[27718, 10097], [25, -139], [32, -92], [-18, -7], [-19, 97], [-45, 12], [-16, -30], [-46, 47], [-23, -46], [-38, -49], [-44, -30], [-40, 62], [9, 56], [-8, -15], [-9, -42], [16, -87], [89, 0], [82, 21], [5, -142], [8, 2], [10, 98], [21, 35], [32, -18], [15, -54], [-1, -80], [-38, -19], [-74, -111], [-92, 19], [-28, 59], [32, 21], [-45, -20], [8, -75], [37, -33], [-36, -83], [-54, -45], [-43, 36], [54, -55], [20, 18], [49, 19], [62, -29], [-46, -55], [-21, -57], [-103, 0], [-56, -19], [-110, -86], [-54, -63], [-30, -57], [-29, -102], [-22, -17], [-100, 6], [-42, -22]], [[26994, 8926], [-29, 40], [-115, 154], [-102, 139], [-4, 5], [-62, 75], [-64, 1], [-106, 3], [-65, 1], [-64, 1], [-12, 80], [-17, 32], [-37, 32], [-78, 6], [-10, 1], [-109, 6], [-29, 2], [-26, 1], [-66, 4], [-38, -2], [-60, -21], [-51, -32], [-36, -5], [-30, -13], [-27, -11]], [[29116, 12920], [-32, 27], [1, 50], [-40, 45], [1, 87], [-7, 108], [-6, 214], [-19, 442]], [[29014, 13893], [35, 13], [32, -26], [2, 54], [74, 117], [80, 96], [-15, 75], [28, 116], [42, 38], [8, 67], [7, 53], [209, 332], [52, -23], [-1, -70], [39, -27], [86, 45], [39, -2], [57, 27], [73, -64], [44, -56], [3, -488], [-7, -114], [103, -43], [-21, -39], [23, -50], [-13, -36], [17, -58], [36, 14], [42, -34], [36, -130], [-56, -73], [-47, -6], [-56, -43], [-56, -8], [-49, -42], [-50, -17], [-47, -66], [-38, 52], [-45, -100], [-9, 3], [-47, 83], [7, 92], [-61, -119], [-20, -63], [15, -40], [-47, -43], [-42, 20], [-87, -59], [-51, -20], [-87, -62], [-40, -43], [-17, -75], [-33, -12], [-23, -87], [-22, -32]], [[20088, 14171], [0, 146], [0, 112], [0, 44], [0, 299], [0, 29], [0, 259], [-1, 171], [0, 106], [0, 158]], [[20087, 15495], [300, 0], [249, 0], [141, 0], [356, 0], [178, 0], [143, 0], [284, 1], [195, 0]], [[18732, 12026], [306, 1], [163, 0], [125, 0], [145, -1], [36, -1], [247, 0], [90, 0], [241, 2]], [[12198, 19464], [28, -65], [56, -68], [59, -100], [108, -172], [-32, -52], [87, -19], [-19, -69], [68, -38], [9, -88], [69, 5], [133, -89], [83, -18], [85, -55], [12, -43], [49, -19], [39, 9], [20, -88], [-34, -64], [7, -81], [39, -129], [-97, -157], [-97, -87], [-59, 30], [-26, 90], [8, 31], [-48, 56], [-73, 18], [-73, 50], [-39, 73], [48, 26], [-44, 37], [-43, -72], [-58, 59], [-16, 41], [47, 43], [12, 55], [-64, -15], [-97, 47], [-23, 50], [52, 83], [51, 1], [-57, 161], [-59, 55], [-40, 87], [-109, 32], [-54, 28], [18, 77], [-14, 97], [-46, 20], [33, 64], [-14, 38], [-8, -10], [-17, -19], [-96, 116], [-10, 52], [-147, 29], [-44, 106], [-40, 52], [0, 74], [-56, 27], [-8, 56], [-60, 14], [69, -169], [-12, -18], [38, -115], [-11, -48], [-70, 31], [-27, 56], [-50, 12], [-75, -20], [-1, 103], [-48, 85], [-43, -27], [-104, 59], [144, -162], [16, -59], [-94, -36], [-43, 9], [-42, -42], [-66, 75], [-45, 0], [-154, 99], [-71, 78], [3, 29], [-96, 81], [-94, 33], [-77, 51], [-136, 57], [-118, 67], [73, 47], [1, 57], [-53, 23], [-143, -58], [-158, 21], [-145, 59], [-46, 36], [-255, 53], [-101, 3], [-214, -27], [-50, -17], [-61, 47], [-64, -3], [-51, 43], [-101, 13], [-94, 39], [-91, 62], [-87, 17], [-64, -54], [-124, -55], [-31, 68], [249, 85], [-59, 32], [-68, -8], [-118, 40], [40, 30], [-156, 74], [-66, -45], [-104, 15], [9, -41], [-114, 5], [17, -101], [40, -65], [-51, -91], [84, -77], [-60, -52], [-49, 16], [-127, -14], [-46, -8], [-83, 42], [-71, -18], [-65, -59], [-17, -65], [-55, -10], [-114, -111], [-44, 20], [-60, -16], [-55, -83], [-219, -32], [-62, 41], [25, 72], [132, 52], [-28, 41], [-88, 38], [-11, 25], [45, 110], [76, 78], [33, 75], [10, 69], [-40, 76], [94, 29], [186, 110], [50, -61], [52, -16], [62, 45], [198, -53], [-189, 74], [-91, 62], [40, 23], [61, 76], [73, 35], [-50, 11], [-70, -47], [-12, -52], [-214, -6], [-71, -25], [-53, -63], [-85, -16], [-86, -68], [-13, -52], [-125, -98], [20, -49], [-87, -74], [-48, -22], [44, -44], [-37, -68], [-80, -12], [-13, -85], [-44, -24], [-71, 3], [-68, -90], [-86, -21], [-46, -102], [40, -34], [100, 0], [81, -46], [14, -53], [-15, -45], [-75, -57], [-59, -2], [-28, -99], [-48, -24], [8, -48], [-52, -53], [-66, -31], [-110, -2], [-29, -64], [-128, -33], [-44, -104], [-64, -2], [-101, -56], [-3, -111], [-50, -49], [-127, -62], [-53, -60], [-73, 30], [-55, -98], [-67, 15], [14, -74], [-66, 21], [-58, -16], [-44, -62], [77, -20], [-59, -99], [-117, -28], [-15, -30], [-126, -27], [-51, -103], [-31, 10], [10, 75], [-99, -14], [-14, -33], [-141, -68], [-23, -45], [-54, 29], [-99, -74], [-75, 2], [41, 106], [-63, 6], [-30, -43], [3, -48], [-51, -70], [-46, -10], [23, -52], [-70, -33], [-68, 10], [-81, -52], [-39, 8], [-45, 69], [-40, -29], [52, -44], [-149, -144], [-135, 4], [-67, -39], [-5, -28], [-78, -32], [-56, 11], [-28, 69], [65, 37], [43, 99], [56, 2], [85, 33], [37, 30], [97, 4], [37, -63], [30, 28], [-7, 69], [96, 19], [81, 84], [43, 12], [3, 52], [61, 77], [121, 86], [185, 55], [74, -9], [25, -48], [63, 24], [49, 148], [142, 115], [80, 35], [140, 83], [34, -4], [59, -4], [-1, 83], [77, 107], [84, 52], [106, 111], [-3, 48], [33, 174], [50, 21], [-41, 46], [26, 99], [51, 45], [51, 42], [25, 78], [-36, -9], [-277, -109], [-57, 49], [-113, 59], [-26, -73], [43, -92], [-52, -40], [-45, 14], [-89, 147], [-53, 59], [-39, 14], [-48, -66], [-40, 47], [-63, 26], [-8, 54], [-117, -70], [-77, -31], [-14, -8], [-70, -37], [-8, -30], [-84, -44], [-69, 39], [46, 52], [-4, 85], [-74, 131], [29, 47], [67, 48], [-113, 206], [-68, 87], [-36, -73], [-55, -4], [-102, -55], [-129, -26], [-150, 15], [-21, 81], [-52, 23], [-85, 95], [-72, 19], [-62, 69], [35, 82], [9, 93], [-26, 8], [-12, 98], [-104, -23], [-19, 80], [-69, 25], [-10, 36], [44, 35], [-104, 57], [50, 88], [85, 6], [-28, 50], [19, 77], [156, 166], [23, 51], [47, 19], [-11, 43], [67, 136], [56, 50], [77, 21], [110, -20], [114, -77], [74, 10], [59, 63], [63, 31], [86, 91], [66, -17], [120, 0], [121, 25], [101, 116], [-50, 138], [-7, 63], [-78, 70], [-65, 11], [31, 47], [99, -14], [60, 49], [5, 46], [-41, 45], [-75, 27], [-44, -48], [-79, 7], [-58, -34], [-78, -13], [-101, -66], [-24, -62], [-159, 107], [-103, -31], [-224, -7], [-160, -48], [-108, 27], [-223, 38], [-66, 65], [18, 60], [-74, 49], [14, 55], [79, 71], [-38, 24], [-268, 36], [-163, 70], [-8, 47], [154, 59], [193, 101], [276, 122], [108, 37], [273, 70], [155, 4], [27, -32], [-40, -55], [-11, -86], [40, -56], [162, -1], [114, 13], [96, -26], [74, 17], [77, -20], [78, 94], [94, -12], [19, 54], [-107, 26], [-106, -20], [11, 70], [-106, 90], [-58, 5], [-32, 73], [84, 14], [76, -74], [-16, -50], [134, -90], [67, 17], [-151, 104], [57, 106], [-37, 38], [-187, -31], [-336, 64], [-5, 57], [-87, 143], [-123, 60], [-223, 131], [-139, 36], [-99, 71], [-151, 35], [113, 30], [39, 61], [5, 137], [241, -9], [290, 31], [77, 24], [118, 68], [73, 64], [33, 70], [-2, 70], [38, 87], [180, 163], [126, 61], [160, -14], [129, 34], [162, 79], [153, 102], [129, 35], [139, -39], [170, 20], [144, 52], [188, 146], [75, 4], [255, -54], [10, -48], [-120, -49], [34, -52], [99, 14], [-3, 34], [130, 90], [113, -52], [12, -87], [106, -25], [78, 50], [177, 16], [172, -17], [103, -25], [-67, -59], [14, -34], [164, -27], [70, -48], [110, -26], [53, 36], [118, 10], [43, -32], [133, 44], [186, -10], [208, -80], [91, 11], [107, -56], [187, -23], [29, 17], [296, -16], [161, -67], [156, -11], [45, 29], [318, 50], [145, -47], [356, -150], [116, -22], [0, -498], [0, -526], [0, -279], [0, -348], [0, -437], [0, -425], [0, -405], [0, -440], [1, -361], [-1, -294], [0, -38], [126, -35], [17, 37], [131, -54], [79, 68], [166, 7], [-31, -116], [46, -42], [89, -36], [21, -61], [276, -229], [29, -110], [-8, -36], [189, 110], [67, 3], [25, 41], [4, 88], [47, 0], [30, 77], [127, 39], [66, 30], [121, -103], [0, -94], [18, -28], [71, -14], [59, -52], [42, -71], [21, -47], [111, -56], [38, -52], [87, -78], [-23, -18], [77, -103]], [[11928, 19468], [-3, -33], [77, -119], [-66, -21], [57, -63], [18, -111], [-45, -14], [-32, -51], [-93, -77], [-28, 1], [-12, 84], [49, 71], [-38, 54], [-34, 90], [7, 46], [-25, 100], [-32, 68], [54, 2], [93, -32], [53, 5]], [[11334, 19326], [-55, 41], [5, 65], [51, 31], [-9, 55], [115, -32], [52, 38], [90, -67], [92, -20], [53, -47], [-53, -89], [52, -13], [25, -105], [-70, -16], [-132, 91], [1, -82], [-39, -51], [-48, 17], [-98, 121], [-32, 63]], [[1729, 21805], [27, 51], [226, -40], [113, 54], [106, -37], [13, -53], [110, -27], [26, -23], [149, -14], [84, -21], [-46, -64], [-141, 2], [-97, -76], [-25, 44], [-145, 91], [-136, 56], [-64, 4], [-98, -51], [-74, 26], [-28, 78]], [[2920, 20357], [162, 1], [2, 25], [94, 53], [78, 0], [141, -43], [-8, -98], [35, -68], [-120, -20], [-45, -48], [-59, 43], [-56, -1], [-132, 61], [-92, 95]], [[12159, 18970], [59, -2], [46, -79], [31, -12], [76, -92], [-75, -39], [-87, 17], [-18, -37], [-56, 20], [-99, -44], [-49, -130], [-82, 13], [-10, 73], [27, 104], [-33, 10], [-25, 128], [39, 38], [60, -6], [0, 46], [43, 30], [153, -38]], [[12228, 18687], [39, 43], [82, -28], [-11, -51], [-58, -15], [-52, 51]], [[8204, 20173], [63, 92], [80, 52], [60, 18], [-136, -155], [-67, -7]], [[8198, 20372], [43, 102], [47, -47], [-39, -93], [-51, 38]], [[12553, 18256], [60, -25], [-49, -47], [-11, 72]], [[6718, 19427], [101, 105], [55, 29], [47, 83], [89, 11], [-47, -70], [4, -32], [139, -1], [-26, -86], [-109, -11], [-91, -58], [-45, -5], [-117, 35]], [[6462, 18767], [72, 33], [38, -48], [-75, -7], [-35, 22]], [[6348, 19124], [41, 63], [110, 66], [66, -6], [13, 71], [57, 34], [41, -26], [32, 57], [49, -31], [39, 24], [69, -6], [43, -33], [66, 46], [44, -75], [-33, -64], [75, -9], [-38, -45], [-51, -22], [-40, -63], [-85, -27], [9, -57], [-171, -57], [-116, -110], [-42, 17], [73, 84], [-60, -2], [-40, -41], [-81, 50], [-4, 89], [-66, 73]], [[6341, 18720], [74, 72], [39, -20], [-113, -52]], [[12613, 18114], [67, 75], [3, -86], [-70, 11]], [[12033, 18297], [15, 44], [116, -33], [-74, -69], [-15, 45], [-42, 13]], [[12026, 18516], [71, 89], [-30, 62], [22, 18], [114, -15], [64, -124], [78, -48], [76, -118], [10, -78], [53, -79], [39, -33], [6, -182], [-50, -43], [-61, 26], [-32, 64], [-117, 62], [7, -64], [71, -5], [-13, -88], [-51, 9], [-69, 103], [-32, 66], [4, 59], [-58, -7], [-4, 47], [102, 40], [-51, 68], [-118, 91], [86, 42], [-43, 44], [-48, -37], [-26, 31]], [[11804, 18656], [-8, -50], [-38, 28], [-101, 192], [-108, 81], [35, 11], [26, 57], [-38, 32], [-54, 118], [74, 86], [96, -64], [58, -4], [2, -70], [61, -265], [-5, -152]], [[11474, 19070], [25, 46], [59, -86], [-25, -60], [-60, -6], [1, 106]], [[96865, 16790], [49, 17], [30, -22], [-43, -43], [-36, 48]], [[94964, 17199], [45, 32], [130, -3], [85, -64], [-140, -36], [-72, 70], [-48, 1]], [[2809, 17368], [107, 55], [27, -8], [80, 85], [10, 59], [-31, 30], [29, 51], [105, 31], [22, -60], [76, 46], [46, -90], [-46, -40], [-74, -26], [-7, -40], [-45, -39], [-105, -6], [-138, -77], [-56, 29]], [[2484, 17171], [72, 79], [6, 60], [45, 40], [69, -5], [-18, 64], [57, 53], [53, 14], [59, -28], [-16, -49], [-116, -63], [-61, -90], [-150, -75]], [[1131, 16855], [67, -12], [48, 20], [62, -53], [-137, 9], [-40, 36]], [[784, 16809], [182, 35], [28, 31], [69, 15], [-7, 71], [69, 5], [23, -41], [-42, -73], [-74, -42], [-87, -10], [-161, 9]], [[548, 16831], [39, 14], [5, -78], [-35, 8], [-9, 56]], [[334, 16636], [55, 81], [135, 25], [0, -57], [-59, -6], [-66, -40], [-65, -3]], [[0, 16746], [73, 15], [43, -54], [-16, -49], [-100, 88]], [[4867, 18068], [32, 36], [-14, 45], [34, 36], [52, -46], [-104, -71]], [[4703, 18236], [40, 37], [60, -91], [-96, 5], [-4, 49]], [[4168, 17860], [110, -16], [-11, -31], [-99, 47]], [[3283, 17727], [62, 31], [54, -52], [-101, -22], [-15, 43]], [[4641, 19655], [8, 49], [58, 21], [-10, -74], [-56, 4]], [[18192, 12461], [0, 221], [0, 220], [0, 128], [0, 81], [-1, 209], [0, 213]], [[18191, 13533], [-2, 83], [3, 146], [92, -4], [245, 4], [319, -1], [101, 0], [91, 1], [446, -3], [65, 0], [257, 2], [10, 0], [266, -1]], [[18191, 13533], [-48, 46], [-41, 74], [-28, -18], [-37, -70], [-55, -17], [-13, 24], [-65, -19], [-49, 21], [-50, -39], [-83, 3], [-9, -47], [-51, 32], [-35, 140], [-88, 40], [1, 84], [-33, 30], [-44, 85], [-26, 85], [7, 36], [-37, 36], [-106, -99], [-61, 47], [15, 67], [-17, 23], [49, 47], [-28, 71], [10, 85], [36, 160], [-3, 21], [-72, -12], [-21, 45], [-68, 43], [-10, 43], [-76, 94], [-22, 45], [-55, 21], [-52, 52], [25, 24], [-26, 95], [-28, 24], [-60, 97], [-1, 103], [1, 125], [0, 216]], [[16837, 15496], [358, 0], [178, -1], [287, 0], [221, 0], [250, -1], [142, 1], [340, 1], [339, -1], [286, 0], [290, 0], [285, 0], [274, 0]], [[5829, 3318], [9, 37], [32, -1], [20, -47], [41, 24], [25, -8], [31, -45], [30, -14], [-13, -62], [-88, -33], [-17, 15], [-7, 74], [-45, 17], [-18, 43]], [[5730, 3311], [46, 5], [24, -46], [-44, -32], [-26, 73]], [[5769, 3425], [12, -52], [-59, 24], [-59, -1], [19, 52], [62, -16], [25, -7]], [[4993, 3798], [15, 49], [41, 36], [63, -4], [15, -30], [-10, -81], [-31, -39], [-44, 10], [-49, 59]], [[6003, 2807], [31, 47], [31, 80], [-19, 48], [24, 49], [62, -59], [84, -47], [50, -72], [28, -90], [46, -48], [-46, -78], [-41, -33], [-44, -4], [-56, -56], [-45, -95], [-58, 51], [-11, 37], [10, 94], [-10, 61], [-36, 115]], [[5402, 3603], [41, 4], [42, 54], [36, -79], [-1, -30], [51, -71], [-42, -17], [-23, 21], [-60, -2], [-44, 120]], [[16603, 14193], [-3, 75], [-36, 77], [5, 34], [0, 51], [0, 254], [0, 57], [0, 46], [-1, 265], [0, 30], [3, 347], [0, 66]], [[16571, 15495], [266, 1]], [[27739, 11472], [6, -149], [1, -35], [2, -22], [2, -45], [7, -136], [5, -84], [0, -32], [3, -44], [96, -3], [79, -1]], [[27940, 10921], [-53, -184]], [[27771, 10704], [-56, 26], [3, 98], [1, 49], [-30, 6], [-52, -53], [-45, 101], [15, 59], [67, -16], [-82, 86], [36, 34], [11, 105], [-32, 23], [29, 81], [45, 19], [9, 79], [-29, -7], [-7, -46], [-50, -51], [-19, 31], [2, -61], [-49, -3], [0, -15], [28, -33], [10, -53], [-35, -64], [-3, -64], [4, -80], [34, -62], [-22, -28], [41, -80], [-11, -34], [-62, 67], [-56, 10], [-13, 51], [-35, -4], [-12, 44], [-51, -38], [-18, 53], [38, 67]], [[27400, 11068], [36, 44], [-26, 32], [-31, -14]], [[27216, 11298], [-28, 75], [-4, 49], [-49, 5], [-41, 33], [-44, -25], [-37, -52], [-51, 8], [-45, 23], [-35, -54], [-31, 5], [-55, -63], [-58, -53], [3, 222]], [[26994, 8926], [-74, -47], [-51, -74], [-40, -85], [-10, -88], [-28, -28], [-19, -44], [-33, -3], [-26, -41], [-73, -65], [-41, -66], [-75, -38], [-54, -14], [2, -72], [-40, -25], [-71, -78], [-2, -20]], [[14806, 14308], [-49, 13], [-48, -19], [-43, 35], [46, 91], [-55, 111], [31, 56], [-11, 47], [-41, 27], [-16, 84], [-23, 30], [-9, 77], [-21, 92], [-49, 59], [-17, 36], [-8, 95], [14, 90], [163, -93], [94, -5], [123, -22], [24, 22], [63, -44], [26, 30], [53, -116], [-39, -70], [-54, -42], [-10, -38], [71, 66], [20, 56], [41, 45], [11, -70], [-2, -102], [-13, -46], [-1, -51], [-44, -68], [-36, 56], [11, 42], [-17, -36], [2, -45], [42, -27], [47, 81], [30, 12], [25, 31], [-28, 117], [9, 51], [45, 109], [-36, 42], [-8, 44], [-3, 10], [7, 20], [-35, 30], [-8, 44], [31, 57], [-18, 20], [-12, 57], [-31, -1], [-38, 48], [8, 50], [273, -2], [244, 2], [230, -1], [315, 1], [173, 0], [208, 0], [108, -1]], [[14900, 15321], [42, 11], [35, 40], [47, -23], [-7, -43], [-43, -44], [-52, 14], [-22, 45]], [[28210, 11892], [-6, -13]], [[28153, 11810], [10, -21], [61, -19], [6, -48], [-15, -86], [-18, -147], [-58, -113], [-27, -61], [-35, -26], [-29, -38], [-39, -96], [-31, 41], [-2, 40], [-69, 11], [-65, 78], [-34, 34], [-6, 62], [-1, 11], [14, 24]], [[27815, 11456], [26, 47], [-1, 3]], [[28402, 13766], [40, 1], [173, -2], [178, 0], [107, 2]], [[28900, 13767], [2, -44], [-35, -73], [20, -51], [-13, -61], [-46, -34], [-19, -26], [-62, -33], [7, -49], [-44, -168], [-34, -74], [-12, -9], [-16, -151], [-5, -31], [1, -65], [-24, -26], [-2, -61], [23, -35]], [[28641, 12776], [-128, 5], [-25, 1], [-65, 2]], [[24020, 7334], [-27, -12], [-17, -33], [-46, -30], [45, -61], [24, 6], [5, 50], [24, 20], [48, -51], [-31, -80], [-28, -31], [-40, -58], [42, -35], [5, -30], [53, 1], [53, -58], [14, -71], [-61, -22], [-52, 77], [-42, 32], [-72, 2], [-50, -58], [-37, -34], [-22, 80], [-19, 7], [-41, 9], [-53, -74], [-37, -17], [-28, 37], [-86, 30], [12, 82], [-60, 14], [-45, 114], [-63, 1], [-31, 42], [-62, -47], [25, -48], [-58, -36], [-80, 24], [-89, 53], [-62, 27], [-81, -1], [-72, -14], [-26, -20]], [[23344, 7078], [46, 16], [37, -31], [-36, -33], [-47, 48]], [[28975, 12334], [-35, 16], [-8, 5], [-7, -45], [-3, -79], [-17, -43], [-102, -22]], [[28803, 12166], [17, 41], [2, 78], [0, 19], [0, 36], [-2, 124]], [[28820, 12464], [81, 4], [32, -14], [17, -91], [25, -29]], [[28983, 12319], [20, -77]], [[29003, 12242], [-60, -1], [40, 78]], [[29116, 12920], [-31, -82]], [[29085, 12838], [-31, 6], [-85, -62], [-2, -2], [-11, -17], [-164, 6], [-8, 0], [-95, 4], [-48, 3]], [[28900, 13767], [26, 80], [33, 45], [55, 1]], [[28363, 12482], [117, -4], [12, -1], [135, -2], [101, -2], [9, 0], [83, -9]], [[28803, 12166], [-23, 7], [-107, -25], [-53, -10], [-116, -2], [-39, -37], [-148, -79]], [[29085, 12838], [13, -72], [32, -54], [-59, -15], [-25, -45], [-8, -56], [10, -13], [35, -8], [12, -6], [38, -70], [-5, -56], [29, -14], [4, -51], [76, -42], [69, 41], [20, -51], [-86, -27], [-115, -50], [-6, 5], [13, 84], [-54, -39], [-24, -38], [-51, -19]], [[28983, 12319], [-8, 15]], [[29081, 12180], [63, 56], [40, -58], [-103, 2]], [[27815, 11456], [-22, -15], [0, -82], [21, -41], [33, -70], [-1, -64], [23, -49], [32, -60], [30, -15], [9, -139]]], "transform": {"scale": [0.0036928423394695293, 0.0023057019440557596], "translate": [-178.22498575753406, 13.27104287589273]}, "objects": {"states": {"type": "GeometryCollection", "geometries": [{"arcs": [[0, 1, 2, 3, 4]], "type": "Polygon", "properties": {"name": "Alabama"}, "id": "1"}, {"arcs": [[-2, 5, 6, 7, 8, 9]], "type": "Polygon", "properties": {"name": "Georgia"}, "id": "13"}, {"arcs": [[10, 11, 12, 13, 14, 15]], "type": "Polygon", "properties": {"name": "Iowa"}, "id": "19"}, {"arcs": [[16, 17, 18, 19, 20, 21]], "type": "Polygon", "properties": {"name": "Oklahoma"}, "id": "40"}, {"arcs": [[22, 23, 24, 25, 26, 27, 28]], "type": "Polygon", "properties": {"name": "Pennsylvania"}, "id": "42"}, {"arcs": [[-14, 29, 30, 31, 32, 33]], "type": "Polygon", "properties": {"name": "Nebraska"}, "id": "31"}, {"arcs": [[-13, 34, 35, 36, 37, -17, 38, -30]], "type": "Polygon", "properties": {"name": "Missouri"}, "id": "29"}, {"arcs": [[39, 40, 41, 42, 43]], "type": "Polygon", "properties": {"name": "Nevada"}, "id": "32"}, {"arcs": [[[-3, -10, 44]], [[45]]], "type": "MultiPolygon", "properties": {"name": "Florida"}, "id": "12"}, {"arcs": [[-18, -38, 46, 47, 48, 49]], "type": "Polygon", "properties": {"name": "Arkansas"}, "id": "5"}, {"arcs": [[-19, -50, 50, 51, 52]], "type": "Polygon", "properties": {"name": "Texas"}, "id": "48"}, {"arcs": [[-42, 53, 54, 55, 56]], "type": "Polygon", "properties": {"name": "Utah"}, "id": "49"}, {"arcs": [[-20, -53, 57, 58, 59]], "type": "Polygon", "properties": {"name": "New Mexico"}, "id": "35"}, {"arcs": [[-22, 60, -31, -39]], "type": "Polygon", "properties": {"name": "Kansas"}, "id": "20"}, {"arcs": [[-5, 61, 62, -48, 63]], "type": "Polygon", "properties": {"name": "Mississippi"}, "id": "28"}, {"arcs": [[-16, 64, 65, 66, 67]], "type": "Polygon", "properties": {"name": "Minnesota"}, "id": "27"}, {"arcs": [[-11, -68, 68, 69, 70, 71]], "type": "Polygon", "properties": {"name": "Wisconsin"}, "id": "55"}, {"arcs": [[-1, -64, -47, -37, 72, 73, 74, -6]], "type": "Polygon", "properties": {"name": "Tennessee"}, "id": "47"}, {"arcs": [[[-74, 75, 76, 77, 78, 79, 80, 81]], [[82, 83]]], "type": "MultiPolygon", "properties": {"name": "Virginia"}, "id": "51"}, {"arcs": [[-43, -57, -59, 84, 85]], "type": "Polygon", "properties": {"name": "Arizona"}, "id": "4"}, {"arcs": [[-36, 86, 87, 88, 89, -76, -73]], "type": "Polygon", "properties": {"name": "Kentucky"}, "id": "21"}, {"arcs": [[-15, -34, 90, 91, 92, -65]], "type": "Polygon", "properties": {"name": "South Dakota"}, "id": "46"}, {"arcs": [[-40, 93, 94, 95, 96]], "type": "Polygon", "properties": {"name": "Oregon"}, "id": "41"}, {"arcs": [[[-70, 97]], [[98, 99, 100]], [[101]]], "type": "MultiPolygon", "properties": {"name": "Michigan"}, "id": "26"}, {"arcs": [[[-44, -86, 102, -94]], [[103]]], "type": "MultiPolygon", "properties": {"name": "California"}, "id": "6"}, {"arcs": [[-27, 104, -89, 105, -99, 106]], "type": "Polygon", "properties": {"name": "Ohio"}, "id": "39"}, {"arcs": [[[-29, 107, 108, 109, 110, 111, 112]], [[113, 114]]], "type": "MultiPolygon", "properties": {"name": "New York"}, "id": "36"}, {"arcs": [[-88, 115, 116, -100, -106]], "type": "Polygon", "properties": {"name": "Indiana"}, "id": "18"}, {"arcs": [[-12, -72, 117, -116, -87, -35]], "type": "Polygon", "properties": {"name": "Illinois"}, "id": "17"}, {"arcs": [[[118]], [[119]]], "type": "MultiPolygon", "properties": {"name": null}, "id": "None"}, {"arcs": [[-7, -75, -82, 120, 121]], "type": "Polygon", "properties": {"name": "North Carolina"}, "id": "37"}, {"arcs": [[122, 123]], "type": "Polygon", "properties": {"name": "Maine"}, "id": "23"}, {"arcs": [[-66, -93, 124, 125]], "type": "Polygon", "properties": {"name": "North Dakota"}, "id": "38"}, {"arcs": [[-21, -60, -56, 126, -32, -61]], "type": "Polygon", "properties": {"name": "Colorado"}, "id": "8"}, {"arcs": [[[127]], [[128]], [[129]], [[130]], [[131]], [[132]], [[133]], [[134]], [[135]], [[136]], [[137]], [[138]], [[139]], [[140]], [[141]], [[142]], [[143]], [[144]], [[145]], [[146]], [[147]], [[148]], [[149]], [[150]], [[151]], [[152]], [[153]], [[154]], [[155]], [[156]], [[157]], [[158]], [[159]]], "type": "MultiPolygon", "properties": {"name": "Alaska"}, "id": "2"}, {"arcs": [[-33, -127, -55, 160, 161, -91]], "type": "Polygon", "properties": {"name": "Wyoming"}, "id": "56"}, {"arcs": [[-92, -162, 162, 163, -125]], "type": "Polygon", "properties": {"name": "Montana"}, "id": "30"}, {"arcs": [[[164]], [[165]], [[166]], [[167]], [[168]], [[169]]], "type": "MultiPolygon", "properties": {"name": "Hawaii"}, "id": "15"}, {"arcs": [[-41, -97, 170, 171, -163, -161, -54]], "type": "Polygon", "properties": {"name": "Idaho"}, "id": "16"}, {"arcs": [[-25, 172, 173, -83, 174, -80, 175, -78, 176]], "type": "Polygon", "properties": {"name": "Maryland"}, "id": "24"}, {"arcs": [[-26, -177, -77, -90, -105]], "type": "Polygon", "properties": {"name": "West Virginia"}, "id": "54"}, {"arcs": [[-8, -122, 177]], "type": "Polygon", "properties": {"name": "South Carolina"}, "id": "45"}, {"arcs": [[[-96, 178, -171]], [[179]]], "type": "MultiPolygon", "properties": {"name": "Washington"}, "id": "53"}, {"arcs": [[-23, -113, 180, -115, 181, 182]], "type": "Polygon", "properties": {"name": "New Jersey"}, "id": "34"}, {"arcs": [[-109, 183, 184, 185]], "type": "Polygon", "properties": {"name": "Vermont"}, "id": "50"}, {"arcs": [[[-49, -63, 186, -51]], [[187]]], "type": "MultiPolygon", "properties": {"name": "Louisiana"}, "id": "22"}, {"arcs": [[[188, 189, 190]], [[191, 192]]], "type": "MultiPolygon", "properties": {"name": "Rhode Island"}, "id": "44"}, {"arcs": [[-123, 193, 194, -185, 195]], "type": "Polygon", "properties": {"name": "New Hampshire"}, "id": "33"}, {"arcs": [[-111, 196, -190, 197]], "type": "Polygon", "properties": {"name": "Connecticut"}, "id": "9"}, {"arcs": [[[-110, -186, -195, 198, -192, 199, -191, -197]], [[200]]], "type": "MultiPolygon", "properties": {"name": "Massachusetts"}, "id": "25"}, {"arcs": [[-79, -176]], "type": "Polygon", "properties": {"name": "District of Columbia"}, "id": "11"}, {"arcs": [[-24, -183, 201, -173]], "type": "Polygon", "properties": {"name": "Delaware"}, "id": "10"}]}}}