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

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/components/area/config.d.ts +25 -0
  2. package/components/area/config.js +16 -0
  3. package/components/area/config.js.map +1 -0
  4. package/components/area/index.d.ts +19 -0
  5. package/components/area/index.js +102 -0
  6. package/components/area/index.js.map +1 -0
  7. package/components/area/style.d.ts +3 -0
  8. package/{src/components/area/style.ts → components/area/style.js} +10 -9
  9. package/components/area/style.js.map +1 -0
  10. package/components/area/types.d.ts +6 -0
  11. package/components/axis/config.d.ts +71 -0
  12. package/components/axis/config.js +32 -0
  13. package/components/axis/config.js.map +1 -0
  14. package/components/axis/index.d.ts +44 -0
  15. package/components/axis/index.js +305 -0
  16. package/components/axis/index.js.map +1 -0
  17. package/components/axis/style.d.ts +9 -0
  18. package/{src/components/axis/style.ts → components/axis/style.js} +22 -27
  19. package/components/axis/style.js.map +1 -0
  20. package/components/axis/types.d.ts +4 -0
  21. package/components/axis/types.js +8 -0
  22. package/components/axis/types.js.map +1 -0
  23. package/components/brush/config.d.ts +42 -0
  24. package/components/brush/config.js +24 -0
  25. package/components/brush/config.js.map +1 -0
  26. package/components/brush/index.d.ts +28 -0
  27. package/components/brush/index.js +199 -0
  28. package/components/brush/index.js.map +1 -0
  29. package/components/brush/style.d.ts +5 -0
  30. package/{src/components/brush/style.ts → components/brush/style.js} +14 -15
  31. package/components/brush/style.js.map +1 -0
  32. package/components/brush/types.d.ts +7 -0
  33. package/components/brush/types.js +8 -0
  34. package/components/brush/types.js.map +1 -0
  35. package/components/bullet-legend/config.d.ts +34 -0
  36. package/components/bullet-legend/config.js +16 -0
  37. package/components/bullet-legend/config.js.map +1 -0
  38. package/components/bullet-legend/index.d.ts +19 -0
  39. package/components/bullet-legend/index.js +79 -0
  40. package/components/bullet-legend/index.js.map +1 -0
  41. package/components/bullet-legend/style.d.ts +6 -0
  42. package/{src/components/bullet-legend/style.ts → components/bullet-legend/style.js} +16 -18
  43. package/components/bullet-legend/style.js.map +1 -0
  44. package/components/bullet-legend/types.d.ts +7 -0
  45. package/components/bullet-legend/types.js +2 -0
  46. package/components/bullet-legend/types.js.map +1 -0
  47. package/components/chord-diagram/config.d.ts +44 -0
  48. package/components/chord-diagram/config.js +25 -0
  49. package/components/chord-diagram/config.js.map +1 -0
  50. package/components/chord-diagram/index.d.ts +42 -0
  51. package/components/chord-diagram/index.js +305 -0
  52. package/components/chord-diagram/index.js.map +1 -0
  53. package/components/chord-diagram/modules/label.d.ts +8 -0
  54. package/components/chord-diagram/modules/label.js +115 -0
  55. package/components/chord-diagram/modules/label.js.map +1 -0
  56. package/components/chord-diagram/modules/link.d.ts +21 -0
  57. package/components/chord-diagram/modules/link.js +63 -0
  58. package/components/chord-diagram/modules/link.js.map +1 -0
  59. package/components/chord-diagram/modules/node.d.ts +17 -0
  60. package/components/chord-diagram/modules/node.js +52 -0
  61. package/components/chord-diagram/modules/node.js.map +1 -0
  62. package/components/chord-diagram/style.d.ts +13 -0
  63. package/{src/components/chord-diagram/style.ts → components/chord-diagram/style.js} +30 -39
  64. package/components/chord-diagram/style.js.map +1 -0
  65. package/components/chord-diagram/types.d.ts +58 -0
  66. package/components/chord-diagram/types.js +8 -0
  67. package/components/chord-diagram/types.js.map +1 -0
  68. package/components/crosshair/config.d.ts +43 -0
  69. package/components/crosshair/config.js +19 -0
  70. package/components/crosshair/config.js.map +1 -0
  71. package/components/crosshair/index.d.ts +35 -0
  72. package/components/crosshair/index.js +183 -0
  73. package/components/crosshair/index.js.map +1 -0
  74. package/components/crosshair/style.d.ts +4 -0
  75. package/{src/components/crosshair/style.ts → components/crosshair/style.js} +12 -12
  76. package/components/crosshair/style.js.map +1 -0
  77. package/components/crosshair/types.d.ts +13 -0
  78. package/components/crosshair/types.js +2 -0
  79. package/components/crosshair/types.js.map +1 -0
  80. package/components/donut/config.d.ts +59 -0
  81. package/components/donut/config.js +28 -0
  82. package/components/donut/config.js.map +1 -0
  83. package/components/donut/index.d.ts +21 -0
  84. package/components/donut/index.js +107 -0
  85. package/components/donut/index.js.map +1 -0
  86. package/components/donut/modules/arc.d.ts +10 -0
  87. package/components/donut/modules/arc.js +59 -0
  88. package/components/donut/modules/arc.js.map +1 -0
  89. package/components/donut/style.d.ts +7 -0
  90. package/{src/components/donut/style.ts → components/donut/style.js} +18 -20
  91. package/components/donut/style.js.map +1 -0
  92. package/components/donut/types.d.ts +20 -0
  93. package/components/flow-legend/config.d.ts +29 -0
  94. package/components/flow-legend/config.js +18 -0
  95. package/components/flow-legend/config.js.map +1 -0
  96. package/components/flow-legend/index.d.ts +16 -0
  97. package/components/flow-legend/index.js +75 -0
  98. package/components/flow-legend/index.js.map +1 -0
  99. package/components/flow-legend/style.d.ts +8 -0
  100. package/{src/components/flow-legend/style.ts → components/flow-legend/style.js} +21 -25
  101. package/components/flow-legend/style.js.map +1 -0
  102. package/components/flow-legend/types.d.ts +9 -0
  103. package/components/flow-legend/types.js +8 -0
  104. package/components/flow-legend/types.js.map +1 -0
  105. package/components/free-brush/config.d.ts +45 -0
  106. package/components/free-brush/config.js +24 -0
  107. package/components/free-brush/config.js.map +1 -0
  108. package/components/free-brush/index.d.ts +20 -0
  109. package/components/free-brush/index.js +192 -0
  110. package/components/free-brush/index.js.map +1 -0
  111. package/components/free-brush/style.d.ts +4 -0
  112. package/{src/components/free-brush/style.ts → components/free-brush/style.js} +12 -12
  113. package/components/free-brush/style.js.map +1 -0
  114. package/components/free-brush/types.d.ts +7 -0
  115. package/components/free-brush/types.js +9 -0
  116. package/components/free-brush/types.js.map +1 -0
  117. package/components/graph/config.d.ts +238 -0
  118. package/components/graph/config.js +84 -0
  119. package/components/graph/config.js.map +1 -0
  120. package/components/graph/index.d.ts +126 -0
  121. package/components/graph/index.js +656 -0
  122. package/components/graph/index.js.map +1 -0
  123. package/components/graph/modules/layout-helpers.d.ts +21 -0
  124. package/components/graph/modules/layout-helpers.js +69 -0
  125. package/components/graph/modules/layout-helpers.js.map +1 -0
  126. package/components/graph/modules/layout.d.ts +10 -0
  127. package/components/graph/modules/layout.js +399 -0
  128. package/components/graph/modules/layout.js.map +1 -0
  129. package/components/graph/modules/link/helper.d.ts +25 -0
  130. package/components/graph/modules/link/helper.js +74 -0
  131. package/components/graph/modules/link/helper.js.map +1 -0
  132. package/components/graph/modules/link/index.d.ts +11 -0
  133. package/components/graph/modules/link/index.js +212 -0
  134. package/components/graph/modules/link/index.js.map +1 -0
  135. package/components/graph/modules/link/style.d.ts +15 -0
  136. package/{src/components/graph/modules/link/style.ts → components/graph/modules/link/style.js} +34 -45
  137. package/components/graph/modules/link/style.js.map +1 -0
  138. package/components/graph/modules/node/helper.d.ts +21 -0
  139. package/components/graph/modules/node/helper.js +126 -0
  140. package/components/graph/modules/node/helper.js.map +1 -0
  141. package/components/graph/modules/node/index.d.ts +11 -0
  142. package/components/graph/modules/node/index.js +252 -0
  143. package/components/graph/modules/node/index.js.map +1 -0
  144. package/components/graph/modules/node/style.d.ts +24 -0
  145. package/{src/components/graph/modules/node/style.ts → components/graph/modules/node/style.js} +52 -72
  146. package/components/graph/modules/node/style.js.map +1 -0
  147. package/components/graph/modules/panel/helper.d.ts +18 -0
  148. package/components/graph/modules/panel/helper.js +111 -0
  149. package/components/graph/modules/panel/helper.js.map +1 -0
  150. package/components/graph/modules/panel/index.d.ts +7 -0
  151. package/components/graph/modules/panel/index.js +98 -0
  152. package/components/graph/modules/panel/index.js.map +1 -0
  153. package/components/graph/modules/panel/style.d.ts +14 -0
  154. package/{src/components/graph/modules/panel/style.ts → components/graph/modules/panel/style.js} +32 -42
  155. package/components/graph/modules/panel/style.js.map +1 -0
  156. package/components/graph/modules/shape.d.ts +6 -0
  157. package/components/graph/modules/shape.js +80 -0
  158. package/components/graph/modules/shape.js.map +1 -0
  159. package/components/graph/modules/zoom-levels.d.ts +6 -0
  160. package/components/graph/modules/zoom-levels.js +10 -0
  161. package/components/graph/modules/zoom-levels.js.map +1 -0
  162. package/components/graph/style.d.ts +6 -0
  163. package/components/graph/style.js +66 -0
  164. package/components/graph/style.js.map +1 -0
  165. package/components/graph/types.d.ts +125 -0
  166. package/components/graph/types.js +30 -0
  167. package/components/graph/types.js.map +1 -0
  168. package/components/grouped-bar/config.d.ts +36 -0
  169. package/components/grouped-bar/config.js +20 -0
  170. package/components/grouped-bar/config.js.map +1 -0
  171. package/components/grouped-bar/index.d.ts +32 -0
  172. package/components/grouped-bar/index.js +249 -0
  173. package/components/grouped-bar/index.js.map +1 -0
  174. package/components/grouped-bar/style.d.ts +5 -0
  175. package/{src/components/grouped-bar/style.ts → components/grouped-bar/style.js} +14 -15
  176. package/components/grouped-bar/style.js.map +1 -0
  177. package/components/leaflet-flow-map/config.d.ts +46 -0
  178. package/components/leaflet-flow-map/config.js +25 -0
  179. package/components/leaflet-flow-map/config.js.map +1 -0
  180. package/components/leaflet-flow-map/index.d.ts +52 -0
  181. package/components/leaflet-flow-map/index.js +220 -0
  182. package/components/leaflet-flow-map/index.js.map +1 -0
  183. package/components/leaflet-flow-map/renderer-utils.d.ts +5 -0
  184. package/components/leaflet-flow-map/renderer-utils.js +15 -0
  185. package/components/leaflet-flow-map/renderer-utils.js.map +1 -0
  186. package/components/leaflet-flow-map/renderer.d.ts +26 -0
  187. package/components/leaflet-flow-map/renderer.js +117 -0
  188. package/components/leaflet-flow-map/renderer.js.map +1 -0
  189. package/components/leaflet-flow-map/shaders.d.ts +2 -0
  190. package/{src/components/leaflet-flow-map/shaders.ts → components/leaflet-flow-map/shaders.js} +7 -4
  191. package/components/leaflet-flow-map/shaders.js.map +1 -0
  192. package/components/leaflet-flow-map/types.d.ts +23 -0
  193. package/components/leaflet-map/config.d.ts +193 -0
  194. package/components/leaflet-map/config.js +71 -0
  195. package/components/leaflet-map/config.js.map +1 -0
  196. package/components/leaflet-map/index.d.ts +130 -0
  197. package/components/leaflet-map/index.js +690 -0
  198. package/components/leaflet-map/index.js.map +1 -0
  199. package/components/leaflet-map/leaflet.css.js +5 -0
  200. package/components/leaflet-map/leaflet.css.js.map +1 -0
  201. package/components/leaflet-map/modules/clusterBackground.d.ts +5 -0
  202. package/components/leaflet-map/modules/clusterBackground.js +27 -0
  203. package/components/leaflet-map/modules/clusterBackground.js.map +1 -0
  204. package/components/leaflet-map/modules/donut.d.ts +3 -0
  205. package/components/leaflet-map/modules/donut.js +25 -0
  206. package/components/leaflet-map/modules/donut.js.map +1 -0
  207. package/components/leaflet-map/modules/map.d.ts +14 -0
  208. package/components/leaflet-map/modules/map.js +154 -0
  209. package/components/leaflet-map/modules/map.js.map +1 -0
  210. package/components/leaflet-map/modules/node.d.ts +9 -0
  211. package/components/leaflet-map/modules/node.js +162 -0
  212. package/components/leaflet-map/modules/node.js.map +1 -0
  213. package/components/leaflet-map/modules/selectionRing.d.ts +7 -0
  214. package/components/leaflet-map/modules/selectionRing.js +41 -0
  215. package/components/leaflet-map/modules/selectionRing.js.map +1 -0
  216. package/components/leaflet-map/modules/utils.d.ts +50 -0
  217. package/components/leaflet-map/modules/utils.js +210 -0
  218. package/components/leaflet-map/modules/utils.js.map +1 -0
  219. package/{src/components → components}/leaflet-map/renderer/leaflet-maplibre-gl.js +78 -76
  220. package/components/leaflet-map/renderer/leaflet-maplibre-gl.js.map +1 -0
  221. package/components/leaflet-map/renderer/map-style.d.ts +4 -0
  222. package/components/leaflet-map/renderer/map-style.js +15 -0
  223. package/components/leaflet-map/renderer/map-style.js.map +1 -0
  224. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js +40 -0
  225. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json.js.map +1 -0
  226. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js +40 -0
  227. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json.js.map +1 -0
  228. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js +4981 -0
  229. package/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json.js.map +1 -0
  230. package/components/leaflet-map/renderer/mapboxgl-layer.d.ts +8 -0
  231. package/components/leaflet-map/renderer/mapboxgl-layer.js +27 -0
  232. package/components/leaflet-map/renderer/mapboxgl-layer.js.map +1 -0
  233. package/components/leaflet-map/renderer/mapboxgl-utils.d.ts +4 -0
  234. package/components/leaflet-map/renderer/mapboxgl-utils.js +39 -0
  235. package/components/leaflet-map/renderer/mapboxgl-utils.js.map +1 -0
  236. package/{src/components → components}/leaflet-map/renderer/maplibre-gl.css.js +4 -2
  237. package/components/leaflet-map/renderer/maplibre-gl.css.js.map +1 -0
  238. package/components/leaflet-map/style.d.ts +52 -0
  239. package/components/leaflet-map/style.js +183 -0
  240. package/components/leaflet-map/style.js.map +1 -0
  241. package/components/leaflet-map/types.d.ts +75 -0
  242. package/components/leaflet-map/types.js +15 -0
  243. package/components/leaflet-map/types.js.map +1 -0
  244. package/components/line/config.d.ts +30 -0
  245. package/components/line/config.js +17 -0
  246. package/components/line/config.js.map +1 -0
  247. package/components/line/index.d.ts +27 -0
  248. package/components/line/index.js +152 -0
  249. package/components/line/index.js.map +1 -0
  250. package/components/line/style.d.ts +6 -0
  251. package/{src/components/line/style.ts → components/line/style.js} +16 -18
  252. package/components/line/style.js.map +1 -0
  253. package/components/line/types.d.ts +12 -0
  254. package/components/nested-donut/config.d.ts +59 -0
  255. package/components/nested-donut/config.js +19 -0
  256. package/components/nested-donut/config.js.map +1 -0
  257. package/components/nested-donut/index.d.ts +38 -0
  258. package/components/nested-donut/index.js +133 -0
  259. package/components/nested-donut/index.js.map +1 -0
  260. package/components/nested-donut/modules/arc.d.ts +17 -0
  261. package/components/nested-donut/modules/arc.js +50 -0
  262. package/components/nested-donut/modules/arc.js.map +1 -0
  263. package/components/nested-donut/modules/label.d.ts +7 -0
  264. package/components/nested-donut/modules/label.js +34 -0
  265. package/components/nested-donut/modules/label.js.map +1 -0
  266. package/components/nested-donut/style.d.ts +26 -0
  267. package/components/nested-donut/style.js +70 -0
  268. package/components/nested-donut/style.js.map +1 -0
  269. package/components/nested-donut/types.d.ts +24 -0
  270. package/components/nested-donut/types.js +11 -0
  271. package/components/nested-donut/types.js.map +1 -0
  272. package/components/sankey/config.d.ts +162 -0
  273. package/components/sankey/config.js +65 -0
  274. package/components/sankey/config.js.map +1 -0
  275. package/components/sankey/index.d.ts +59 -0
  276. package/components/sankey/index.js +306 -0
  277. package/components/sankey/index.js.map +1 -0
  278. package/components/sankey/modules/label.d.ts +23 -0
  279. package/components/sankey/modules/label.js +168 -0
  280. package/components/sankey/modules/label.js.map +1 -0
  281. package/components/sankey/modules/link.d.ts +14 -0
  282. package/components/sankey/modules/link.js +108 -0
  283. package/components/sankey/modules/link.js.map +1 -0
  284. package/components/sankey/modules/node.d.ts +10 -0
  285. package/components/sankey/modules/node.js +156 -0
  286. package/components/sankey/modules/node.js.map +1 -0
  287. package/components/sankey/style.d.ts +20 -0
  288. package/{src/components/sankey/style.ts → components/sankey/style.js} +44 -60
  289. package/components/sankey/style.js.map +1 -0
  290. package/components/sankey/types.d.ts +84 -0
  291. package/components/sankey/types.js +34 -0
  292. package/components/sankey/types.js.map +1 -0
  293. package/components/scatter/config.d.ts +44 -0
  294. package/components/scatter/config.js +23 -0
  295. package/components/scatter/config.js.map +1 -0
  296. package/components/scatter/index.d.ts +28 -0
  297. package/components/scatter/index.js +167 -0
  298. package/components/scatter/index.js.map +1 -0
  299. package/components/scatter/modules/point.d.ts +7 -0
  300. package/components/scatter/modules/point.js +86 -0
  301. package/components/scatter/modules/point.js.map +1 -0
  302. package/components/scatter/modules/utils.d.ts +11 -0
  303. package/components/scatter/modules/utils.js +112 -0
  304. package/components/scatter/modules/utils.js.map +1 -0
  305. package/components/scatter/style.d.ts +5 -0
  306. package/{src/components/scatter/style.ts → components/scatter/style.js} +14 -15
  307. package/components/scatter/style.js.map +1 -0
  308. package/components/scatter/types.d.ts +19 -0
  309. package/components/stacked-bar/config.d.ts +38 -0
  310. package/components/stacked-bar/config.js +20 -0
  311. package/components/stacked-bar/config.js.map +1 -0
  312. package/components/stacked-bar/index.d.ts +28 -0
  313. package/components/stacked-bar/index.js +208 -0
  314. package/components/stacked-bar/index.js.map +1 -0
  315. package/components/stacked-bar/style.d.ts +5 -0
  316. package/{src/components/stacked-bar/style.ts → components/stacked-bar/style.js} +14 -15
  317. package/components/stacked-bar/style.js.map +1 -0
  318. package/components/stacked-bar/types.d.ts +5 -0
  319. package/components/timeline/config.d.ts +43 -0
  320. package/components/timeline/config.js +24 -0
  321. package/components/timeline/config.js.map +1 -0
  322. package/components/timeline/index.d.ts +41 -0
  323. package/components/timeline/index.js +244 -0
  324. package/components/timeline/index.js.map +1 -0
  325. package/components/timeline/style.d.ts +13 -0
  326. package/{src/components/timeline/style.ts → components/timeline/style.js} +30 -39
  327. package/components/timeline/style.js.map +1 -0
  328. package/components/tooltip/config.d.ts +68 -0
  329. package/components/tooltip/config.js +20 -0
  330. package/components/tooltip/config.js.map +1 -0
  331. package/components/tooltip/index.d.ts +36 -0
  332. package/components/tooltip/index.js +184 -0
  333. package/components/tooltip/index.js.map +1 -0
  334. package/{src/components → components}/tooltip/style.js +14 -11
  335. package/components/tooltip/style.js.map +1 -0
  336. package/components/topojson-map/config.d.ts +99 -0
  337. package/components/topojson-map/config.js +42 -0
  338. package/components/topojson-map/config.js.map +1 -0
  339. package/components/topojson-map/index.d.ts +52 -0
  340. package/components/topojson-map/index.js +355 -0
  341. package/components/topojson-map/index.js.map +1 -0
  342. package/components/topojson-map/style.d.ts +11 -0
  343. package/{src/components/topojson-map/style.ts → components/topojson-map/style.js} +26 -33
  344. package/components/topojson-map/style.js.map +1 -0
  345. package/components/topojson-map/types.d.ts +78 -0
  346. package/components/topojson-map/types.js +80 -0
  347. package/components/topojson-map/types.js.map +1 -0
  348. package/components/topojson-map/utils.d.ts +3 -0
  349. package/components/topojson-map/utils.js +30 -0
  350. package/components/topojson-map/utils.js.map +1 -0
  351. package/components/vis-controls/config.d.ts +12 -0
  352. package/components/vis-controls/config.js +13 -0
  353. package/components/vis-controls/config.js.map +1 -0
  354. package/components/vis-controls/index.d.ts +14 -0
  355. package/components/vis-controls/index.js +52 -0
  356. package/components/vis-controls/index.js.map +1 -0
  357. package/components/vis-controls/style.d.ts +11 -0
  358. package/{src/components/vis-controls/style.ts → components/vis-controls/style.js} +27 -34
  359. package/components/vis-controls/style.js.map +1 -0
  360. package/components/vis-controls/types.d.ts +13 -0
  361. package/components/vis-controls/types.js +8 -0
  362. package/components/vis-controls/types.js.map +1 -0
  363. package/components/xy-labels/config.d.ts +48 -0
  364. package/components/xy-labels/config.js +25 -0
  365. package/components/xy-labels/config.js.map +1 -0
  366. package/components/xy-labels/index.d.ts +15 -0
  367. package/components/xy-labels/index.js +87 -0
  368. package/components/xy-labels/index.js.map +1 -0
  369. package/components/xy-labels/modules/label.d.ts +9 -0
  370. package/components/xy-labels/modules/label.js +107 -0
  371. package/components/xy-labels/modules/label.js.map +1 -0
  372. package/components/xy-labels/style.d.ts +5 -0
  373. package/{src/components/xy-labels/style.ts → components/xy-labels/style.js} +14 -15
  374. package/components/xy-labels/style.js.map +1 -0
  375. package/components/xy-labels/types.d.ts +23 -0
  376. package/components/xy-labels/types.js +9 -0
  377. package/components/xy-labels/types.js.map +1 -0
  378. package/components.d.ts +51 -0
  379. package/components.js +29 -0
  380. package/components.js.map +1 -0
  381. package/containers/single-container/config.d.ts +12 -0
  382. package/containers/single-container/config.js +12 -0
  383. package/containers/single-container/config.js.map +1 -0
  384. package/containers/single-container/index.d.ts +19 -0
  385. package/containers/single-container/index.js +128 -0
  386. package/containers/single-container/index.js.map +1 -0
  387. package/containers/xy-container/config.d.ts +99 -0
  388. package/containers/xy-container/config.js +30 -0
  389. package/containers/xy-container/config.js.map +1 -0
  390. package/containers/xy-container/index.d.ts +34 -0
  391. package/containers/xy-container/index.js +330 -0
  392. package/containers/xy-container/index.js.map +1 -0
  393. package/containers.d.ts +6 -0
  394. package/containers.js +4 -0
  395. package/containers.js.map +1 -0
  396. package/core/component/config.d.ts +58 -0
  397. package/core/component/config.js +14 -0
  398. package/core/component/config.js.map +1 -0
  399. package/core/component/index.d.ts +43 -0
  400. package/core/component/index.js +118 -0
  401. package/core/component/index.js.map +1 -0
  402. package/core/component/types.d.ts +2 -0
  403. package/core/component/types.js +2 -0
  404. package/core/component/types.js.map +1 -0
  405. package/core/config/index.d.ts +3 -0
  406. package/core/config/index.js +16 -0
  407. package/core/config/index.js.map +1 -0
  408. package/core/container/config.d.ts +48 -0
  409. package/core/container/config.js +29 -0
  410. package/core/container/config.js.map +1 -0
  411. package/core/container/index.d.ts +26 -0
  412. package/core/container/index.js +106 -0
  413. package/core/container/index.js.map +1 -0
  414. package/core/xy-component/config.d.ts +38 -0
  415. package/core/xy-component/config.js +20 -0
  416. package/core/xy-component/config.js.map +1 -0
  417. package/core/xy-component/index.d.ts +27 -0
  418. package/core/xy-component/index.js +74 -0
  419. package/core/xy-component/index.js.map +1 -0
  420. package/data-models/core.d.ts +6 -0
  421. package/data-models/core.js +14 -0
  422. package/data-models/core.js.map +1 -0
  423. package/data-models/graph.d.ts +24 -0
  424. package/data-models/graph.js +107 -0
  425. package/data-models/graph.js.map +1 -0
  426. package/data-models/map-graph.d.ts +21 -0
  427. package/data-models/map-graph.js +62 -0
  428. package/data-models/map-graph.js.map +1 -0
  429. package/data-models/map.d.ts +5 -0
  430. package/data-models/map.js +12 -0
  431. package/data-models/map.js.map +1 -0
  432. package/data-models/series.d.ts +6 -0
  433. package/data-models/series.js +19 -0
  434. package/data-models/series.js.map +1 -0
  435. package/index.d.ts +7 -0
  436. package/index.js +55 -0
  437. package/index.js.map +1 -0
  438. package/maps/china-provinces.json.js +140373 -0
  439. package/maps/fr-regions.json.js +14162 -0
  440. package/maps/germany-regions.json.js +35760 -0
  441. package/maps/ind-regions.json.js +290584 -0
  442. package/maps/uk-regions.json.js +96233 -0
  443. package/maps/us-counties.json.js +206318 -0
  444. package/maps/us-states.json.js +16345 -0
  445. package/maps/world-110m-alpha.json.js +251366 -0
  446. package/maps/world-simple.json.js +89428 -0
  447. package/maps/world-simplest.json.js +28175 -0
  448. package/maps.d.ts +60 -0
  449. package/maps.js +23 -0
  450. package/package.json +1 -1
  451. package/styles/colors.d.ts +7 -0
  452. package/styles/colors.js +24 -0
  453. package/styles/colors.js.map +1 -0
  454. package/styles/index.d.ts +7 -0
  455. package/styles/index.js +38 -0
  456. package/styles/index.js.map +1 -0
  457. package/styles/sizes.d.ts +2 -0
  458. package/{src/styles/sizes.ts → styles/sizes.js} +8 -6
  459. package/styles/sizes.js.map +1 -0
  460. package/types/accessor.d.ts +5 -0
  461. package/types/accessor.js +2 -0
  462. package/types/accessor.js.map +1 -0
  463. package/types/component.d.ts +13 -0
  464. package/types/component.js +14 -0
  465. package/types/component.js.map +1 -0
  466. package/types/curve.d.ts +40 -0
  467. package/types/curve.js +46 -0
  468. package/types/curve.js.map +1 -0
  469. package/types/data.d.ts +7 -0
  470. package/types/data.js +2 -0
  471. package/types/data.js.map +1 -0
  472. package/types/direction.d.ts +6 -0
  473. package/types/direction.js +10 -0
  474. package/types/direction.js.map +1 -0
  475. package/types/graph.d.ts +35 -0
  476. package/types/graph.js +2 -0
  477. package/types/graph.js.map +1 -0
  478. package/types/map.d.ts +4 -0
  479. package/types/map.js +2 -0
  480. package/types/map.js.map +1 -0
  481. package/types/misc.d.ts +8 -0
  482. package/types/position.d.ts +20 -0
  483. package/types/position.js +27 -0
  484. package/types/position.js.map +1 -0
  485. package/types/scale.d.ts +23 -0
  486. package/types/scale.js +27 -0
  487. package/types/scale.js.map +1 -0
  488. package/types/shape.d.ts +7 -0
  489. package/types/shape.js +11 -0
  490. package/types/shape.js.map +1 -0
  491. package/types/spacing.d.ts +6 -0
  492. package/types/spacing.js +2 -0
  493. package/types/spacing.js.map +1 -0
  494. package/types/svg.d.ts +18 -0
  495. package/types/svg.js +22 -0
  496. package/types/svg.js.map +1 -0
  497. package/types/symbol.d.ts +18 -0
  498. package/types/symbol.js +24 -0
  499. package/types/symbol.js.map +1 -0
  500. package/types/text.d.ts +47 -0
  501. package/types/text.js +26 -0
  502. package/types/text.js.map +1 -0
  503. package/types.d.ts +27 -0
  504. package/types.js +30 -0
  505. package/types.js.map +1 -0
  506. package/utils/color.d.ts +10 -0
  507. package/utils/color.js +32 -0
  508. package/utils/color.js.map +1 -0
  509. package/utils/d3.d.ts +3 -0
  510. package/utils/d3.js +16 -0
  511. package/utils/d3.js.map +1 -0
  512. package/utils/data.d.ts +45 -0
  513. package/utils/data.js +274 -0
  514. package/utils/data.js.map +1 -0
  515. package/utils/html.d.ts +1 -0
  516. package/utils/html.js +16 -0
  517. package/utils/html.js.map +1 -0
  518. package/utils/map.d.ts +2 -0
  519. package/utils/map.js +20 -0
  520. package/utils/map.js.map +1 -0
  521. package/utils/misc.d.ts +9 -0
  522. package/utils/misc.js +47 -0
  523. package/utils/misc.js.map +1 -0
  524. package/utils/path.d.ts +23 -0
  525. package/utils/path.js +144 -0
  526. package/utils/path.js.map +1 -0
  527. package/utils/scale.d.ts +1 -0
  528. package/utils/style.d.ts +6 -0
  529. package/utils/style.js +24 -0
  530. package/utils/style.js.map +1 -0
  531. package/utils/svg.d.ts +3 -0
  532. package/utils/text.d.ts +139 -0
  533. package/utils/text.js +443 -0
  534. package/utils/text.js.map +1 -0
  535. package/utils/type.d.ts +5 -0
  536. package/declaration.d.ts +0 -1
  537. package/index.ts +0 -1
  538. package/licences.txt +0 -43
  539. package/maps.ts +0 -1
  540. package/rollup.config.js +0 -71
  541. package/rules/ts-getter-setter.js +0 -35
  542. package/src/components/area/config.ts +0 -29
  543. package/src/components/area/index.ts +0 -133
  544. package/src/components/area/types.ts +0 -2
  545. package/src/components/axis/config.ts +0 -76
  546. package/src/components/axis/index.ts +0 -363
  547. package/src/components/axis/types.ts +0 -4
  548. package/src/components/brush/config.ts +0 -51
  549. package/src/components/brush/index.ts +0 -233
  550. package/src/components/brush/types.ts +0 -8
  551. package/src/components/bullet-legend/config.ts +0 -38
  552. package/src/components/bullet-legend/index.ts +0 -104
  553. package/src/components/bullet-legend/types.ts +0 -7
  554. package/src/components/chord-diagram/config.ts +0 -53
  555. package/src/components/chord-diagram/index.ts +0 -401
  556. package/src/components/chord-diagram/modules/label.ts +0 -155
  557. package/src/components/chord-diagram/modules/link.ts +0 -91
  558. package/src/components/chord-diagram/modules/node.ts +0 -80
  559. package/src/components/chord-diagram/types.ts +0 -68
  560. package/src/components/crosshair/config.ts +0 -48
  561. package/src/components/crosshair/index.ts +0 -220
  562. package/src/components/crosshair/types.ts +0 -15
  563. package/src/components/donut/config.ts +0 -65
  564. package/src/components/donut/index.ts +0 -148
  565. package/src/components/donut/modules/arc.ts +0 -86
  566. package/src/components/donut/types.ts +0 -17
  567. package/src/components/flow-legend/config.ts +0 -31
  568. package/src/components/flow-legend/index.ts +0 -103
  569. package/src/components/flow-legend/types.ts +0 -10
  570. package/src/components/free-brush/config.ts +0 -54
  571. package/src/components/free-brush/index.ts +0 -207
  572. package/src/components/free-brush/types.ts +0 -8
  573. package/src/components/graph/config.ts +0 -280
  574. package/src/components/graph/index.ts +0 -809
  575. package/src/components/graph/modules/layout-helpers.ts +0 -96
  576. package/src/components/graph/modules/layout.ts +0 -502
  577. package/src/components/graph/modules/link/helper.ts +0 -105
  578. package/src/components/graph/modules/link/index.ts +0 -302
  579. package/src/components/graph/modules/node/helper.ts +0 -162
  580. package/src/components/graph/modules/node/index.ts +0 -343
  581. package/src/components/graph/modules/panel/helper.ts +0 -160
  582. package/src/components/graph/modules/panel/index.ts +0 -137
  583. package/src/components/graph/modules/shape.ts +0 -108
  584. package/src/components/graph/modules/zoom-levels.ts +0 -6
  585. package/src/components/graph/style.ts +0 -72
  586. package/src/components/graph/types.ts +0 -152
  587. package/src/components/grouped-bar/config.ts +0 -40
  588. package/src/components/grouped-bar/index.ts +0 -325
  589. package/src/components/leaflet-flow-map/config.ts +0 -60
  590. package/src/components/leaflet-flow-map/index.ts +0 -279
  591. package/src/components/leaflet-flow-map/renderer-utils.ts +0 -14
  592. package/src/components/leaflet-flow-map/renderer.ts +0 -146
  593. package/src/components/leaflet-flow-map/types.ts +0 -18
  594. package/src/components/leaflet-map/config.ts +0 -234
  595. package/src/components/leaflet-map/index.ts +0 -808
  596. package/src/components/leaflet-map/leaflet.css +0 -625
  597. package/src/components/leaflet-map/modules/clusterBackground.ts +0 -34
  598. package/src/components/leaflet-map/modules/donut.ts +0 -37
  599. package/src/components/leaflet-map/modules/map.ts +0 -178
  600. package/src/components/leaflet-map/modules/node.ts +0 -208
  601. package/src/components/leaflet-map/modules/selectionRing.ts +0 -63
  602. package/src/components/leaflet-map/modules/utils.ts +0 -290
  603. package/src/components/leaflet-map/renderer/map-style.ts +0 -24
  604. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-dark-theme.json +0 -35
  605. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-light-theme.json +0 -35
  606. package/src/components/leaflet-map/renderer/mapboxgl/mapboxgl-settings.json +0 -2185
  607. package/src/components/leaflet-map/renderer/mapboxgl-layer.ts +0 -43
  608. package/src/components/leaflet-map/renderer/mapboxgl-utils.ts +0 -40
  609. package/src/components/leaflet-map/style.ts +0 -217
  610. package/src/components/leaflet-map/types.ts +0 -75
  611. package/src/components/line/config.ts +0 -34
  612. package/src/components/line/index.ts +0 -188
  613. package/src/components/line/types.ts +0 -3
  614. package/src/components/nested-donut/config.ts +0 -75
  615. package/src/components/nested-donut/index.ts +0 -176
  616. package/src/components/nested-donut/modules/arc.ts +0 -78
  617. package/src/components/nested-donut/modules/label.ts +0 -63
  618. package/src/components/nested-donut/style.ts +0 -82
  619. package/src/components/nested-donut/types.ts +0 -29
  620. package/src/components/sankey/config.ts +0 -195
  621. package/src/components/sankey/index.ts +0 -387
  622. package/src/components/sankey/modules/label.ts +0 -228
  623. package/src/components/sankey/modules/link.ts +0 -141
  624. package/src/components/sankey/modules/node.ts +0 -221
  625. package/src/components/sankey/types.ts +0 -95
  626. package/src/components/scatter/config.ts +0 -49
  627. package/src/components/scatter/index.ts +0 -220
  628. package/src/components/scatter/modules/point.ts +0 -123
  629. package/src/components/scatter/modules/utils.ts +0 -150
  630. package/src/components/scatter/types.ts +0 -21
  631. package/src/components/stacked-bar/config.ts +0 -42
  632. package/src/components/stacked-bar/index.ts +0 -267
  633. package/src/components/stacked-bar/types.ts +0 -5
  634. package/src/components/timeline/config.ts +0 -49
  635. package/src/components/timeline/index.ts +0 -302
  636. package/src/components/tooltip/config.ts +0 -69
  637. package/src/components/tooltip/index.ts +0 -220
  638. package/src/components/topojson-map/config.ts +0 -124
  639. package/src/components/topojson-map/index.ts +0 -436
  640. package/src/components/topojson-map/types.ts +0 -123
  641. package/src/components/topojson-map/utils.ts +0 -29
  642. package/src/components/vis-controls/config.ts +0 -16
  643. package/src/components/vis-controls/index.ts +0 -68
  644. package/src/components/vis-controls/types.ts +0 -14
  645. package/src/components/xy-labels/config.ts +0 -56
  646. package/src/components/xy-labels/index.ts +0 -109
  647. package/src/components/xy-labels/modules/label.ts +0 -140
  648. package/src/components/xy-labels/types.ts +0 -26
  649. package/src/components.ts +0 -56
  650. package/src/containers/single-container/config.ts +0 -15
  651. package/src/containers/single-container/index.ts +0 -150
  652. package/src/containers/xy-container/config.ts +0 -112
  653. package/src/containers/xy-container/index.ts +0 -407
  654. package/src/containers.ts +0 -6
  655. package/src/core/component/config.ts +0 -61
  656. package/src/core/component/index.ts +0 -154
  657. package/src/core/component/types.ts +0 -9
  658. package/src/core/config/index.ts +0 -12
  659. package/src/core/container/config.ts +0 -56
  660. package/src/core/container/index.ts +0 -136
  661. package/src/core/xy-component/config.ts +0 -46
  662. package/src/core/xy-component/index.ts +0 -90
  663. package/src/data-models/core.ts +0 -15
  664. package/src/data-models/graph.ts +0 -138
  665. package/src/data-models/map-graph.ts +0 -72
  666. package/src/data-models/map.ts +0 -18
  667. package/src/data-models/series.ts +0 -16
  668. package/src/index.ts +0 -7
  669. package/src/maps/china-provinces.json +0 -1
  670. package/src/maps/fr-regions.json +0 -1
  671. package/src/maps/germany-regions.json +0 -1
  672. package/src/maps/ind-regions.json +0 -1
  673. package/src/maps/uk-regions.json +0 -1
  674. package/src/maps/us-counties.json +0 -1
  675. package/src/maps/us-states.json +0 -1
  676. package/src/maps/world-110m-alpha.json +0 -1
  677. package/src/maps/world-simple.json +0 -1
  678. package/src/maps/world-simplest.json +0 -1
  679. package/src/maps.ts +0 -34
  680. package/src/styles/colors.ts +0 -28
  681. package/src/styles/index.ts +0 -38
  682. package/src/types/accessor.ts +0 -5
  683. package/src/types/component.ts +0 -15
  684. package/src/types/curve.ts +0 -62
  685. package/src/types/data.ts +0 -5
  686. package/src/types/direction.ts +0 -6
  687. package/src/types/graph.ts +0 -40
  688. package/src/types/map.ts +0 -5
  689. package/src/types/misc.ts +0 -10
  690. package/src/types/position.ts +0 -23
  691. package/src/types/scale.ts +0 -47
  692. package/src/types/shape.ts +0 -7
  693. package/src/types/spacing.ts +0 -6
  694. package/src/types/svg.ts +0 -32
  695. package/src/types/symbol.ts +0 -21
  696. package/src/types/text.ts +0 -71
  697. package/src/types.ts +0 -31
  698. package/src/utils/color.ts +0 -41
  699. package/src/utils/d3.ts +0 -15
  700. package/src/utils/data.ts +0 -328
  701. package/src/utils/html.ts +0 -13
  702. package/src/utils/map.ts +0 -29
  703. package/src/utils/misc.ts +0 -54
  704. package/src/utils/path.ts +0 -196
  705. package/src/utils/scale.ts +0 -1
  706. package/src/utils/style.ts +0 -37
  707. package/src/utils/svg.ts +0 -49
  708. package/src/utils/text.ts +0 -529
  709. package/src/utils/type.ts +0 -9
  710. package/tsconfig.json +0 -29
@@ -1 +0,0 @@
1
- {"type":"Topology","arcs":[[[38987,25612],[-78,-57],[-38,19],[-55,0],[-122,-14],[-71,-39],[-66,-76],[-17,5],[-66,-111],[27,-28],[39,-143],[0,-58],[-22,-67],[-28,-24],[-49,-105],[21,-34],[-10,-86],[-61,-29],[-49,0],[-50,29],[-17,-43],[39,-76],[22,-92],[-55,-48],[-55,-13],[-12,-15],[-11,-91],[-27,-72],[5,-134],[-44,-77],[-33,-4],[-27,43],[-22,-15],[-44,15],[-23,-34],[-66,-47],[22,-43],[-38,-34],[-28,-5],[-38,24],[-34,-9],[-33,-67],[-33,-29],[-17,-86],[6,-77],[-11,-57],[11,-44],[-22,-33],[-165,-76],[-89,0],[-38,-15],[-28,-33],[-77,29],[-171,-25],[-72,34],[-176,91]],[[36891,23636],[143,268],[5,67],[-21,86],[-133,29],[-5,138],[11,73],[-33,148],[-11,95],[55,110],[-55,15],[-11,33],[0,106],[22,57],[38,5],[-22,62],[33,29],[28,110],[-5,62],[16,10],[11,86]],[[36957,25225],[39,-43],[27,-14],[44,9],[39,-53],[66,0],[56,53],[10,110],[28,5],[88,43],[78,57],[21,29],[45,220],[44,29],[72,5],[10,57],[23,29],[49,-44],[66,-14]],[[37762,25703],[83,-5],[17,-28],[50,9],[37,-28]],[[37949,25651],[12,-29],[38,-29],[33,39],[95,66],[60,-61],[16,23],[0,76],[33,34],[28,5],[50,-19],[16,34],[-5,71],[33,39],[27,71],[44,34],[56,-39],[11,-38],[0,-76],[38,4],[-16,-129],[-6,-86],[28,-110],[17,-15],[66,63],[77,33],[39,67],[44,38],[44,19],[38,-28],[0,-38],[55,24],[39,28],[50,-9],[33,-43]],[[39042,25670],[-22,14],[-55,-33],[22,-39]],[[31243,12409],[11,-139],[-11,-57],[0,-110],[-5,-38],[11,-63],[-22,-110],[16,-57],[-22,-14],[-165,0],[-121,0],[0,-216],[0,-354],[0,-244],[27,-177],[27,-24],[34,-63],[66,-100],[61,-100]],[[31150,10543],[-254,-81],[-44,-20],[-50,15],[-55,-20],[-55,39],[-116,5],[-121,28],[-39,53],[-22,48],[-116,5],[-116,0],[-176,0],[-210,0],[-60,-5],[-50,47],[-44,63],[-44,10],[-39,-24],[-44,-44],[-55,0],[-17,15],[-54,-24]],[[29369,10653],[10,148],[0,201],[-10,38],[27,34],[16,57],[6,72],[33,168],[17,167],[16,77],[11,85],[50,116],[16,67],[28,38],[38,33],[28,67],[28,129],[0,92],[10,119],[-22,115],[-27,57],[-6,48],[-27,67],[-17,82],[0,43],[-33,138],[55,101],[6,86],[-83,316],[-5,77],[-45,100],[-21,62],[0,77],[60,19],[44,38]],[[29572,13787],[17,5],[121,0],[66,-10],[55,5],[150,5],[88,-5],[33,-24],[27,-57],[6,-124],[27,-87],[11,-91],[67,-172],[16,-52],[61,4],[11,-14],[27,24],[72,24],[44,-19],[61,9],[11,115],[11,24],[5,91],[23,29],[127,33],[16,-101],[176,-4],[17,-34],[-11,-124],[17,-129],[0,-96],[-11,-134],[5,-115],[38,-76],[28,-111],[5,-119],[-22,-53],[6,-62],[16,-24],[28,33],[99,0],[39,29],[66,-9],[22,38]],[[29412,14026],[28,63],[28,43],[77,48],[27,-53]],[[29572,14127],[-38,-29],[-33,-62],[-12,-48],[-5,-157],[-44,-10]],[[29440,13821],[-6,120],[-22,85]],[[30719,26947],[-5,-81],[-11,-15],[16,-109],[28,-62],[33,-15]],[[30780,26665],[11,-62],[-33,-48],[-22,-91],[-55,-38],[11,-39],[-27,-52],[-28,15]],[[30637,26350],[-6,47],[-22,48],[-55,43],[-22,58],[0,57],[22,86],[-6,134],[22,62],[0,39],[-38,23]],[[30532,26947],[0,106],[55,110],[28,-48],[27,19]],[[30642,27134],[28,-57],[44,-48],[5,-82]],[[30631,32039],[44,-24],[-82,-43],[-11,38],[49,29]],[[27791,27149],[39,-29]],[[27830,27120],[-34,-20],[-5,49]],[[36207,22291],[-50,-67],[-22,67],[-16,-19],[-6,-182],[22,-9],[11,-44],[-66,-19],[-5,-71],[-50,-192],[0,-91]],[[36025,21664],[-11,-24],[-199,43],[-192,44],[-12,14],[-66,143],[-22,58],[-55,114],[0,44]],[[35468,22100],[33,-10],[11,-67],[61,-5],[61,48],[60,-5],[44,-14],[88,-5],[78,58],[38,120],[99,143],[34,72],[65,81],[23,72]],[[36163,22588],[11,0],[0,-115],[22,5]],[[36196,22478],[5,-24],[6,-163]],[[17053,287],[5,144],[0,464]],[[17058,895],[56,-91],[-28,-24],[-11,-43],[55,-24],[22,-72],[77,-100],[100,-82],[94,-85],[76,-34],[56,10],[33,-15],[-28,-57],[-77,-5],[-99,-34],[-67,29],[-198,29],[-66,-10]],[[17974,9279],[44,-57],[22,-48],[44,-124],[39,-58],[71,-81],[28,-53],[28,-29],[49,-28],[61,-15],[33,-19],[83,-100],[99,-91],[33,-19],[28,-34],[27,0],[50,-48],[39,-71],[0,-34],[-28,-48],[-28,-96],[-22,-24],[-22,-66],[6,-72],[-11,-39],[-28,-38],[-33,-76],[6,-34],[66,10],[55,-10],[66,-34],[44,-9],[33,9],[44,-9],[23,-24],[44,67],[71,-29],[17,58],[27,57],[34,10],[66,119],[22,144],[0,120]],[[19204,8356],[28,-15],[32,29],[50,-38],[11,-82],[22,-71],[-11,-125],[5,-38],[-16,-86],[-66,-72],[-88,-48],[-17,-53],[-22,-33],[-39,-24],[-22,-38],[-38,-29],[10,-38],[-37,-15],[-17,-53],[-33,-42],[-22,-72],[-39,-58],[-44,-105],[-61,-71],[-11,-54],[-33,-38]],[[18746,7087],[-5,-33],[-33,-81],[5,-92],[-5,-47],[-28,-86],[0,-101],[-22,-29],[0,-85],[11,-34],[-17,-43]],[[18652,6456],[6,-134],[-11,-33],[-28,-10],[-17,-177],[23,-87],[-6,-52],[-17,-10],[17,-66],[22,-39],[83,-62],[66,-82],[22,-47],[0,-39],[-27,-57],[-6,-53],[16,-67],[56,-57],[33,-10],[6,-124],[-67,-168],[-60,-124],[-22,-72],[-83,-77],[-127,-62],[-105,-33],[-22,-14],[-193,-44],[-77,0],[-72,25],[-17,28],[-21,-96],[38,-62],[-11,-124],[-27,-34],[-17,-110],[28,-86],[-23,-62],[-88,-63],[-38,-9],[-83,0],[-94,62],[-71,29],[-34,4],[-16,-38],[0,-43],[22,-129],[-6,-110],[23,-53],[60,-38],[16,-38],[50,10],[6,38],[38,43],[28,-48],[0,-115],[-11,-29],[-55,-23],[-28,38],[0,28],[-38,39],[-28,-5],[-50,-38],[-5,-29],[60,-38],[28,-43],[-60,-34],[-61,-105],[-11,-62],[11,-72],[-11,-29],[5,-58],[-11,-33],[-44,-47],[-11,-39],[11,-57],[-83,9],[-60,-58],[-56,-19],[-49,-90],[-55,-130],[5,-81],[28,-57],[94,-125],[121,-24],[22,-19],[16,-52],[-11,-82],[-33,-38],[33,-43],[-88,-110],[-116,-96],[-50,-72],[-32,-81],[5,-29],[-22,-139],[-16,-38],[-133,-81],[-44,-57],[-27,-125],[17,-43],[32,-168],[33,-86],[34,-47],[5,-44]],[[17086,976],[-116,58],[-44,0],[-72,38],[-303,5],[-16,48],[-56,76],[17,67],[-11,34],[17,72],[-12,62],[-27,19],[-44,-5],[-45,-33],[-27,52],[-6,58],[-27,62],[0,91],[-16,57],[21,77],[50,4],[11,77],[50,34],[22,48],[-6,57],[39,43],[11,34],[-28,124],[22,81],[66,82],[-11,28],[6,72],[33,34],[5,33],[-27,119],[33,53],[-17,34],[0,72],[39,19],[22,76],[-38,72],[-66,19],[10,29],[77,15],[34,-5],[16,57],[-11,33],[-93,15],[0,77],[21,47],[-16,48],[11,29],[-28,57],[22,44],[-5,33],[-50,29],[-5,133],[17,29],[-12,62],[12,29],[43,10],[0,38],[-22,86],[6,211],[-11,57],[38,96],[-21,43],[27,43],[-11,105],[28,10],[22,110],[-6,62],[33,48],[39,19],[17,38],[-17,43],[-11,111],[-22,76],[5,91],[-11,38],[17,53],[-11,72],[17,91],[44,28],[22,58],[38,38],[0,82],[-11,123],[27,164],[34,119],[33,19],[-6,172],[11,87],[-33,5],[-11,67],[11,38],[-22,71],[0,44],[-28,81],[17,62],[-33,29],[-22,77],[11,115],[33,33],[-6,33],[28,130],[33,24],[17,62],[-17,28],[6,72],[-17,120],[33,62],[23,192],[77,134],[16,95],[33,115],[77,38],[-5,58],[-33,81],[0,44],[27,57],[-27,182],[5,71],[17,48],[-17,62],[6,58],[39,62],[137,101],[45,215],[10,67],[-27,53]],[[17279,9117],[22,47],[5,39],[34,28],[5,39],[61,43],[17,76],[21,0],[50,-76],[121,0],[61,-34],[38,-167],[12,62],[44,148],[16,20],[160,0],[28,-63]],[[34690,26130],[-55,-5]],[[34635,26125],[-27,81],[-28,52],[5,48],[-49,-14],[-50,43],[-16,34],[-44,-19]],[[34426,26350],[-28,52],[-44,43],[-44,-10],[-33,15],[-33,115],[16,24],[6,62],[-39,86]],[[34227,26737],[50,5],[55,24],[105,0],[27,24]],[[34464,26790],[17,-63],[38,-19],[33,-43],[-33,-58],[55,-85],[39,-24],[-16,-63],[-39,0],[88,-114],[44,-10],[-16,-33],[33,-58],[-17,-33],[0,-57]],[[38170,1871],[50,34],[16,-38],[-10,-39],[143,48],[11,-34],[-33,-62],[-28,24],[-38,0],[-28,-28],[39,-39],[27,24],[23,-24],[-28,-33],[-61,29],[-22,-15],[-67,34],[-27,-48],[-33,14],[17,58],[0,76],[-17,29],[28,105],[27,-48],[-16,-43],[27,-24]],[[49791,4163],[33,5],[71,-52],[11,-20],[78,-37],[94,42],[60,15],[22,-10],[22,43],[39,-10],[16,24],[50,-43],[0,-301],[-27,-19],[-17,-43],[0,-48],[-17,-62],[11,-134],[-27,-19],[-39,62],[-44,-24],[0,-38],[-27,-15],[-33,-96],[-50,29],[-78,-10],[-5,48],[-77,125],[-33,105],[-11,86],[6,58],[-28,52],[-44,115],[-17,91],[11,115],[50,-34]],[[50243,4446],[44,-62],[6,-43],[-33,-34],[-17,24],[-27,96],[27,19]],[[49620,4350],[-16,57],[5,58],[32,14],[12,-86],[-33,-43]],[[48649,5556],[66,-5],[6,-43],[-61,5],[-33,-53],[-39,29],[-10,-14],[-62,0],[-32,38],[16,38],[105,43],[39,-4],[5,-34]],[[51020,8308],[-16,57],[11,96],[50,62],[-45,-196],[0,-19]],[[50723,8930],[22,-48],[-16,-19],[-23,57],[17,10]],[[49978,10380],[11,-48],[-11,-19],[-27,53],[27,14]],[[48942,10839],[-33,-43],[-23,29],[23,43],[44,19],[-11,-48]],[[48511,11601],[17,-10],[-12,-63],[23,-62],[-83,19],[11,29],[0,72],[39,53],[5,-38]],[[47557,12189],[-22,-29],[-22,33],[-5,49],[27,38],[6,-48],[16,-43]],[[47580,12270],[43,19],[17,-9],[33,29],[33,-20],[11,-33],[-11,-43],[-77,-96],[-66,86],[-17,48],[6,72],[28,-53]],[[49504,12112],[-11,-95],[22,-29],[33,-124],[17,-164],[-6,-80],[17,-63],[16,-105],[33,-33],[33,47],[45,19],[27,-71],[61,-87],[33,-38],[-5,-43],[11,-67],[-6,-38],[28,-163],[-6,-95],[49,-130],[28,-10],[-5,-42],[27,-86],[11,-68],[-17,-177],[28,-67],[17,-9],[-6,-81],[44,-82],[39,-29],[27,-5],[22,-38],[45,5],[22,-67],[49,-67],[45,-24],[28,-38],[32,-15],[28,-38],[16,-52],[-27,-29],[16,-43],[61,-106],[22,-100],[17,-29],[0,-47],[22,-139],[16,-48],[33,-19],[11,91],[11,4],[28,-57],[50,-53],[27,-5],[6,-167],[11,-77],[44,-90],[55,-63],[27,-4],[33,-49],[34,-104],[49,-58],[17,-77],[39,-52],[16,-48],[0,-67],[16,-53],[23,-24],[-12,-95],[12,-187],[-6,-57],[39,-159],[11,-76],[22,-53],[-6,-81],[11,-38],[-5,-53],[-22,-52],[-17,-68],[0,-57],[-22,-182],[-28,-110],[6,-96],[-16,-143],[-22,-101],[-39,-67],[0,-57],[-11,-53],[-50,-86],[-49,-43],[-44,-110],[-17,-58],[-22,-19],[0,-95],[-50,-101],[-16,-57],[-11,-105],[5,-29],[-38,-62],[-28,-101],[-28,-72],[-22,-196],[-16,-81],[5,-115],[-11,-72],[-55,-57],[-38,-19],[-56,4],[-126,-19],[-78,-57],[-115,-168],[-100,-14],[17,-48],[22,15],[0,-77],[-17,0],[-27,72],[-39,-10],[-22,62],[-28,5],[-33,33],[22,39],[-5,43],[-38,-14],[-6,-29],[-39,-29],[-5,43],[33,67],[-39,53],[-50,-48],[17,-38],[-89,-67],[-43,-67],[-39,-34],[-50,24],[-60,43],[-33,38],[-39,20],[-27,-5],[-39,29],[-33,4],[-17,-33],[-27,10],[-60,76],[-62,15],[-38,38],[-28,66],[-50,82],[-21,58],[5,66],[16,67],[-21,77],[-39,101],[-66,91],[39,86],[-17,5],[-105,-82],[-50,10],[33,80],[17,82],[0,72],[-66,163],[-22,-77],[-11,-76],[-28,-115],[-33,5],[-49,-29],[-39,0],[22,86],[55,0],[17,91],[-6,57],[6,62],[22,82],[44,76],[-11,106],[22,29],[-11,90],[-22,-14],[-55,-105],[-28,-120],[-50,-33],[-77,-77],[-44,-110],[-39,-62],[-11,-58],[-22,-19],[-27,48],[-6,48],[-38,187],[-44,76],[-17,86],[-27,38],[-50,5],[-28,115],[22,24],[-5,34],[-45,33],[-22,43],[-38,24],[-50,0],[-72,62],[-66,-19],[-16,5],[-72,86],[-88,53],[-61,-29],[-99,5],[-143,-19],[-39,-15],[-133,-100],[-115,-53],[-83,-14],[-99,14],[-33,-9],[-50,-58],[-50,-29],[-77,-76],[-60,-19],[-33,-48],[-45,-130],[-33,-66],[-66,-38],[-22,24],[-44,0],[-94,-29],[-17,33],[-99,15],[-237,-43],[-33,-34],[-28,-72],[-33,-24],[-55,-10],[-55,-71],[-61,-67],[-83,-29],[-165,29],[-77,53],[-44,76],[-66,58],[-22,-10],[-23,24],[-5,124],[5,81],[28,-38],[28,5],[22,29],[28,91],[-12,148],[17,24],[6,191],[-6,53],[-38,106],[-62,205],[-16,143],[0,168],[-17,81],[-33,72],[-5,58],[-72,191],[-5,120],[-11,52],[-50,139],[-55,120],[-17,48],[28,9],[27,-95],[23,-15],[16,29],[0,48],[-39,62],[-27,105],[22,24],[22,-57],[0,-72],[27,19],[17,-81],[33,10],[6,90],[-39,115],[-27,105],[-23,53],[-21,106],[-17,42],[0,82],[11,71],[44,125],[6,139],[-17,76],[39,196],[27,29],[-5,-95],[33,-68],[44,129],[38,58],[50,29],[45,38],[82,129],[110,106],[67,0],[38,-20],[44,20],[77,76],[83,29],[55,77],[72,-15],[33,24],[100,29],[88,67],[49,76],[78,235],[27,24],[55,95],[-22,20],[-11,114],[0,68],[27,72],[62,71],[27,101],[11,0],[22,-120],[22,-48],[17,-72],[27,-33],[6,115],[22,-29],[22,52],[-44,67],[-17,49],[22,24],[-5,52],[22,10],[16,-53],[17,24],[28,5],[21,-34],[17,29],[6,52],[22,-5],[-28,101],[6,72],[22,0],[38,91],[39,34],[44,-25],[5,29],[-22,24],[-11,63],[23,42],[38,20],[17,52],[22,-81],[27,24],[6,76],[22,62],[11,-47],[22,43],[22,-38],[33,52],[0,48],[22,15],[28,-34],[33,-19],[72,-101],[16,-52],[50,-72],[-23,-96],[61,86],[28,0],[66,-29],[28,5],[32,-19],[28,24],[-5,81],[-39,43],[39,101],[16,14],[17,115],[50,33],[16,39],[-22,43],[6,53],[27,19],[17,62],[28,5],[5,67],[32,-43],[0,53],[23,4],[0,38],[33,10],[33,-29],[44,0],[22,15],[28,-15],[28,24],[21,-14],[39,58],[6,104],[-34,44],[-60,5],[-17,38],[0,43],[39,-34],[22,25],[33,-39],[17,-38],[27,28],[28,-14],[22,-72],[27,-5],[28,-24],[55,-4],[50,-48],[49,-14],[28,19],[44,-58],[33,-9],[16,29],[34,19],[44,43],[5,-24],[-27,-48],[50,-10],[10,-62],[28,-5],[11,39],[-11,48],[28,47],[38,-76],[22,0],[17,-34],[-66,-119],[11,-62],[-22,-58],[-22,24],[-61,-48],[0,-86],[11,-52],[-17,-96],[-22,-39],[-49,-129],[16,-67],[50,-43],[55,-67],[11,-48],[50,-33],[27,-53],[33,5],[44,-53],[67,-48],[55,-105],[27,-29],[56,-14],[60,-34],[17,-33],[22,-86],[27,-14],[89,-87],[27,0],[50,19],[50,58],[16,110],[38,105],[34,158],[-6,43],[28,196],[11,39],[-17,163],[11,86],[-22,100],[28,148],[-6,87],[28,43],[17,47],[-34,34],[0,38],[28,106],[17,19],[27,172],[6,91],[22,14],[22,53],[11,-48],[27,-38],[22,-115],[0,-110],[50,-34]],[[30196,28637],[-28,-86],[-33,0],[-17,-68],[-33,-19],[11,-62],[-11,-42],[-49,-34]],[[30036,28326],[-22,-53],[-28,10],[-50,-24],[-82,-5],[-55,-57],[-128,33]],[[29671,28230],[-82,14],[-121,34],[-39,82],[-138,-5],[-33,-49],[-88,20]],[[29170,28326],[-39,-5],[-94,58]],[[29037,28379],[-5,57]],[[29032,28436],[0,72]],[[29032,28508],[33,14],[44,-29],[39,-48],[22,68],[66,-10],[16,-34],[50,10],[61,43],[71,10],[6,28],[49,-24],[23,10],[44,-53],[16,48],[-22,14],[6,53],[-34,48],[23,38],[66,34],[22,67],[33,-15],[22,68]],[[29688,28848],[33,-44],[50,-9],[49,28],[39,44],[5,47],[133,-38],[33,-33],[66,14],[61,-24],[11,-29]],[[30168,28804],[-16,-62],[44,-105]],[[34635,26125],[-99,33],[-44,57],[-55,120]],[[34437,26335],[-11,15]],[[35054,26000],[-33,-10],[-33,53],[-27,14],[-33,48],[5,34],[33,14],[0,29],[-27,52],[33,34],[-50,77],[-33,-10],[-143,-139],[-56,-66]],[[34464,26790],[45,43],[65,-34],[11,-28],[56,-10],[44,-34],[28,25],[0,52],[-50,43],[-17,62],[39,43]],[[34685,26952],[39,-14],[76,-105],[17,-48],[44,-19],[39,0],[33,67],[50,38],[27,67]],[[35010,26938],[17,-14],[66,-134],[17,-77],[49,-86],[28,-29],[60,-19],[22,-19],[-16,-38],[-39,-5],[-55,-34],[-33,-158],[5,-71],[-16,-20],[-5,-57],[-34,14],[-22,-81],[0,-110]],[[32076,14180],[-11,95],[-22,72],[6,101],[-6,52],[6,63],[-33,72],[0,23]],[[32016,14658],[10,34],[34,-25],[11,-32],[49,0],[28,23],[5,105],[28,-24],[50,29],[22,-24]],[[32253,14744],[-17,-57],[-5,-72],[55,-33],[0,-77],[-55,-86],[-6,-43],[-66,-158],[-39,-38],[-44,0]],[[28486,29393],[38,-38],[22,-82],[-38,-52]],[[28508,29221],[-22,14],[-39,-81],[22,-62],[-10,-29]],[[28459,29063],[-45,-10],[-22,29],[-77,62],[-34,43],[-71,-10],[0,77],[-33,29],[-44,-5],[-6,39],[-49,9],[-33,76],[-39,-19],[-39,48],[-11,58]],[[27956,29489],[127,81]],[[28083,29570],[11,-38],[39,9],[55,-9],[28,38]],[[28216,29570],[44,24],[55,-19],[28,19],[27,-53],[44,0],[50,-52],[-28,-63],[6,-24]],[[28442,29402],[44,-9]],[[27818,17118],[22,24],[-16,76],[-11,10],[5,105],[0,488],[-5,106],[-33,62],[-5,53],[0,119],[-89,110],[6,86],[16,77]],[[27708,18434],[39,72],[28,14],[10,38],[28,-9],[61,5],[49,76],[11,58]],[[27934,18688],[0,86],[78,43],[71,-134],[39,-53]],[[28122,18630],[-17,-81],[33,-77],[6,-96],[17,-47],[-12,-48],[-22,-5],[-11,-38],[11,-29],[-11,-72],[-38,-34],[0,-33],[-28,-57],[-11,-101],[-44,-14],[-5,-163],[-6,-24],[0,-148],[6,-29],[0,-263],[5,-14],[-11,-96]],[[27984,17161],[-138,-28],[-28,-15]],[[27708,18434],[-66,0],[-82,38]],[[27560,18472],[-34,10],[-55,-62],[-17,19],[-126,0],[-194,-5],[-11,-110],[22,-53],[6,-134],[-6,-67],[11,-52]],[[27156,18018],[-16,-14],[-27,71],[-28,48],[-33,14],[-61,5],[-61,-39],[-32,-37],[-50,28],[-39,48],[-22,86],[-38,20],[-23,33]],[[26726,18281],[6,38],[0,129],[27,49],[11,85],[-11,87],[28,38],[50,14],[33,34],[22,52],[-6,91],[39,34],[-17,91],[39,71],[33,0],[44,-52],[39,24],[5,81],[12,29],[43,0],[6,76],[44,77],[22,9],[50,-28],[11,9],[11,72],[49,19],[100,86],[38,58],[33,9],[23,-19],[22,14],[71,-42]],[[27603,19516],[-5,-115],[33,-68],[-6,-47],[39,-101],[50,-33],[5,-63],[0,-90],[17,-10],[71,-100],[39,-5],[44,24],[22,-68],[-28,-23],[6,-29],[44,-100]],[[41474,21497],[-39,-10],[28,72],[-5,62],[-17,19],[-6,63],[28,-15],[5,-43],[23,-43],[-6,-86],[-11,-19]],[[41750,21464],[11,-187],[-11,-10],[-39,48],[-22,-38],[17,-67],[5,-72]],[[41711,21138],[-38,105],[-6,139],[-17,57],[-16,115],[-17,58],[-33,76],[-27,-14],[-11,-29],[-44,-10],[-17,34],[-39,115],[-16,-24],[11,-38],[-17,-24],[28,-130],[-50,-124],[-22,-24],[-11,53],[-38,-5],[-34,-48],[-21,0],[-17,-29],[-22,0],[-28,106]],[[41209,21497],[6,24],[-22,124],[-11,110],[11,43],[-33,19],[5,48],[-28,67],[23,91],[-12,86],[-66,38],[-21,25],[-6,48],[17,52],[27,-10],[22,87],[55,-5],[-6,91],[-44,10],[-38,71],[-22,14],[6,68],[49,86],[11,33],[44,-76],[44,-10],[39,-57],[28,0],[5,52],[22,-5],[17,-67],[0,-100],[-6,-62],[11,-15],[88,-38],[133,10],[27,-15],[89,10],[49,-43],[-22,-34],[0,-33],[-22,-106],[-22,-9],[-17,-48],[-27,5],[-22,-29],[-23,0],[-21,-48],[-12,-91],[17,-57],[6,-77],[22,29],[11,-48],[27,-9],[12,28],[-6,53],[33,57],[-6,53],[50,-5],[17,-95],[0,-110],[22,-68],[11,-195]],[[31861,26976],[-83,-9],[-27,38],[-44,-5],[-17,-19],[-50,-14],[-38,-62]],[[31602,26905],[-33,4],[6,-95],[-139,-39],[-60,43],[-11,-14],[-61,47],[-50,0],[-66,-37],[-60,0],[-50,-15]],[[31078,26799],[5,120],[-22,72],[-33,19],[-33,62]],[[30995,27072],[28,33],[-17,53],[0,43],[44,24],[39,86],[-66,72],[-28,91],[11,62],[28,19],[16,43]],[[31050,27598],[50,-43],[-28,-33],[11,-33],[94,4],[105,-24],[33,10],[110,-29],[50,-5],[50,24],[60,67],[99,38],[34,5],[55,-38],[66,-10],[27,-47],[83,-20]],[[31949,27464],[-5,-66],[-67,-29],[-27,-58],[-6,-120],[-21,-14],[-45,-67],[39,-29],[44,-105]],[[35325,22540],[-23,24],[-5,62],[28,-19],[0,-67]],[[16386,21248],[-23,-58],[-77,-14],[0,48],[22,24],[44,-10],[34,10]],[[15674,22090],[16,-29],[6,-76],[-11,-33],[-28,0],[-11,81],[-22,48],[50,9]],[[15663,22215],[0,-68],[-49,-47],[-11,57],[-23,-5],[-27,44],[22,33],[22,76],[22,29],[27,-95],[17,-24]],[[15547,22774],[17,-9],[66,14],[6,-24],[-50,-5],[-66,-38],[11,82],[16,-20]],[[15740,22545],[-17,29],[23,133],[22,-42],[-17,-24],[-11,-96]],[[30483,27775],[54,-4],[-38,-106],[0,-38],[71,-81],[-49,-29],[33,-62],[0,-34],[-44,-14]],[[30510,27407],[-39,-9],[-11,-44],[-38,-52],[0,-34],[-28,-19],[17,-96],[-17,-14]],[[30394,27139],[-50,33],[-55,63],[-11,-5]],[[30278,27230],[-16,10]],[[30262,27240],[11,28],[-39,43],[-16,72],[-61,53],[-61,100],[-44,57],[-11,72],[-60,82],[10,119],[34,-4],[44,-48],[33,57],[38,-5],[22,20],[34,-29],[104,-24],[72,14],[72,-29],[11,-43],[28,0]],[[32435,29766],[-61,0],[-61,-14],[-33,-43],[-33,-82],[17,-66],[-17,-25],[-55,58],[-94,-9],[-33,-15],[-33,62],[-83,-19],[-60,19],[-17,-14],[-127,14],[-17,38],[-55,5],[-154,44],[-77,4],[-138,-19],[-61,-77],[-28,15],[-27,-34]],[[31188,29608],[-11,24],[17,120],[-72,58],[33,71],[77,53],[-5,110],[-45,139],[-16,91]],[[31166,30274],[111,4],[16,-19],[72,24],[16,48],[105,48],[22,110],[22,57],[39,9],[27,49],[50,0],[27,38],[-44,14],[17,96]],[[31646,30752],[66,43],[83,-10],[49,77],[39,19]],[[31883,30881],[61,-14],[38,-43],[44,24],[45,-24],[-6,-43],[22,-24],[72,43],[77,-15],[39,-47],[27,-5],[-11,-91],[22,-62],[-27,-72],[55,-43],[-11,-38],[49,-82],[61,-38],[-5,-67],[66,-9],[38,-24],[0,-34],[44,-57],[-88,-77],[-44,5],[-27,28],[-45,-5],[-21,-47],[49,-77],[0,-119],[28,-58]],[[13953,19788],[-55,0],[5,68],[0,181],[6,77],[0,134],[6,67]],[[13915,20315],[0,43],[49,0],[39,90],[6,44],[38,5]],[[14047,20497],[22,-34],[5,-62],[-27,-139],[6,-182],[-11,-91],[-39,-91],[-22,-14],[-28,-62],[0,-34]],[[17279,9117],[-61,-19],[-33,0],[-16,28],[5,81],[-11,44],[-5,76],[-17,20],[-16,100],[0,86],[-61,148],[17,34],[-45,62],[11,24],[-11,67],[28,14],[5,38],[-22,48],[34,96],[-72,96],[-22,206],[-11,38],[11,28],[-33,30],[-6,47],[-28,72]],[[16920,10581],[0,34],[-16,52],[28,29],[38,86],[28,38],[0,58],[16,47],[-49,30],[-28,153],[22,71],[17,28],[-28,54],[-5,42],[22,82],[33,57],[0,34],[21,14],[-32,144],[16,52],[0,168],[28,43],[16,62],[-16,67],[-22,53],[-33,114],[-17,39],[-27,96],[-22,57]],[[16910,12385],[22,5],[93,-19],[17,-29],[66,38],[33,77],[56,5],[21,47],[44,54],[17,0],[72,95],[22,19],[99,34],[44,-10],[39,29],[11,-43],[0,-106],[-22,-57],[0,-34],[22,-124],[-11,-72],[11,-43],[44,-105],[5,-38],[33,-24],[39,-53],[16,-53],[72,-24],[39,15],[66,-67],[28,14],[16,-52],[22,-29],[72,-48],[27,0],[45,-96],[17,-14],[54,0],[55,9],[72,-66],[22,-34],[6,-67],[-11,-24],[28,-120],[5,-129],[-39,-14],[44,-91],[0,-72],[11,-148],[111,-5],[171,-14],[-23,-87],[0,-72],[17,-100],[55,-62],[28,0],[6,-48],[33,-124],[0,-43],[-23,-125],[0,-86],[-10,-9],[-56,-182],[45,-63],[-45,-53]],[[18663,9848],[0,87],[-50,58],[-93,95],[-144,0],[-132,-53],[-132,-42],[-28,-116],[-27,-81],[-28,-57],[0,-139],[-28,-177],[-27,-144]],[[19629,15012],[5,63],[22,33],[0,62],[17,58],[44,28],[16,-33],[-16,-101],[-55,-85],[-33,-25]],[[19970,15343],[45,19],[33,0],[77,-19],[33,-19],[-22,-154],[-28,-67],[-22,-33],[6,-48],[-33,-34],[-23,29],[-5,-52],[-44,23],[-11,-52],[-33,-24],[-33,24],[-77,-24],[-17,43],[-22,110],[-6,62],[6,101],[16,105],[28,29],[33,14],[99,-33]],[[19810,15371],[-38,-57],[-22,29],[11,33],[33,19],[16,-24]],[[19998,15376],[-45,-10],[0,43],[34,20],[22,-24],[-11,-29]],[[19953,15481],[-16,-72],[-27,-9],[-44,14],[5,58],[22,-5],[39,24],[21,-10]],[[19844,15443],[-28,19],[28,34],[0,62],[16,9],[0,-91],[-16,-33]],[[19888,15515],[-22,34],[27,23],[-5,-57]],[[19866,15941],[-17,-14],[-16,38],[27,33],[6,-57]],[[18917,15941],[72,-29],[17,15],[0,42],[-34,72],[22,58],[39,-29],[55,10],[55,42],[22,-42],[23,0],[16,-34]],[[19204,16046],[28,-33],[49,-24],[55,67],[39,-30],[28,25],[10,-29],[39,-14],[44,48],[22,47],[0,34],[28,86],[5,43],[28,67],[60,172],[17,19]],[[19656,16524],[33,72],[33,-62],[22,-115],[6,-110],[33,-172],[5,-48],[39,-153],[17,-24],[60,-29],[28,-86],[-6,-72],[-60,-91],[-28,-52],[-17,-57],[-33,-72],[-27,-10],[-17,-48],[-27,-14],[-33,-115],[-11,-10],[-28,-86],[0,-43],[-27,-48],[0,-38],[-17,-19],[-33,10],[-50,-44],[39,-14],[16,-19],[39,14],[66,63],[94,114],[11,-29],[5,-124],[17,-38],[0,-34],[44,-71],[22,28],[39,24],[43,-29],[62,58],[-28,-153],[5,-62],[39,162],[33,24],[44,96],[17,0],[22,-38],[0,129],[22,28],[16,63],[28,33],[33,10],[22,-14],[45,23],[38,-33],[49,-9],[28,-54],[61,-33],[27,0],[12,-24],[49,-42],[27,-5],[23,-101],[22,57],[22,0],[38,-57],[22,-5],[34,-119],[5,-53],[-22,-34],[-17,-76],[-11,-105],[17,4],[28,53],[16,110],[17,19],[16,-33],[28,0],[27,19],[45,5],[11,33],[22,0],[88,-57],[11,-20],[55,-37],[55,13],[33,-38],[50,-14],[22,14],[50,5],[60,20],[77,-20],[144,-143],[50,-72],[33,-19],[33,-62],[33,-77],[38,-48],[28,-53],[50,-33],[16,-58],[39,-4],[28,-34],[27,-10],[66,0],[27,10],[67,-19],[22,-34],[22,-86],[16,-100],[6,-72],[16,-57],[22,-172],[6,-106],[-11,-96],[5,-62],[-16,-119],[-33,-144],[-27,-81],[-61,-134],[-11,-5],[-33,-96],[-28,-43],[-28,-72],[-38,-28],[-44,-63],[-72,-186],[-44,-168],[-50,-134],[-33,-71],[-27,-34],[-17,57],[-27,38],[-23,-109],[0,-34],[-27,-62],[-11,-58],[11,-47],[5,-96],[-11,-153],[17,-249],[11,-82],[-11,-90],[-28,-158],[-11,-153],[6,-106],[-17,-42],[-33,-39],[-22,-72],[-16,-105],[5,-178],[-11,-80],[-33,-48],[-22,-63],[-11,-67],[-28,-95],[-33,-63],[-28,-33],[-27,-91],[-11,-72],[11,-115],[-22,-47],[-72,-43],[-60,-92],[5,-57],[-16,-43],[-83,0],[-55,-10],[-22,20],[5,38],[-27,4],[5,-52],[-50,-29],[-49,39],[-44,-29],[-78,-14],[6,-72],[-55,-15],[-39,-57],[-33,-28],[-6,-34],[-55,14],[-21,-9],[-139,-125],[-38,-67],[-110,-129],[-11,-58],[-39,-43],[-33,15],[-11,-48],[11,-43],[-22,-62],[-11,-101],[-22,-24],[16,-38],[-5,-81],[11,-49],[6,-133],[-12,-53],[6,-143],[-11,-63],[-17,-38],[0,-39],[-38,-32],[-72,-101],[-39,-82],[-44,-119],[-38,-172],[-50,-130],[-44,-100],[-83,-125],[-55,-52],[-33,-58],[-6,77],[28,-10],[33,24],[33,62],[28,19],[16,39],[0,62],[28,5],[5,52],[28,24],[11,34],[-5,77],[-34,14],[-16,28],[-39,-90],[-22,-125],[-38,-52],[-45,-39],[-5,-62],[-17,-24],[-11,-53],[11,-81],[-33,-72],[-22,-119],[-39,-110],[-93,-130]],[[19397,6106],[-28,24],[0,134],[61,120],[-11,28],[-44,34],[-17,29],[-22,96],[-33,33],[-39,19],[-55,105],[-49,24],[-55,49],[-45,95],[-38,-43],[-33,-14],[5,67],[-27,57],[-83,124],[-33,24],[-33,-14],[-6,-34],[-60,0],[-6,24]],[[19204,8356],[0,38],[22,62],[27,249],[-5,53],[11,19],[-55,67],[-55,-48],[-61,-5],[-22,148],[-6,87],[-17,72],[6,57],[-32,101],[-56,9],[-27,53],[-23,-5],[-16,-34],[-44,-9],[-50,19],[-49,5],[-28,19],[-22,-10],[-17,24],[11,38],[0,115],[17,139],[-11,67],[-17,43],[0,39],[-22,80]],[[16910,12385],[-56,10],[-38,-34],[-28,-5],[-22,34],[-16,-19],[0,325],[11,34],[-17,52],[-88,-124],[-55,-10],[-88,0],[0,43],[-28,96],[-66,24],[-61,0],[33,81],[0,34],[-55,133],[-33,49],[-11,72],[-17,24],[0,57],[-38,52],[5,58],[33,14],[-11,53],[6,67],[66,91],[33,28],[0,34],[-17,67],[39,129],[11,129],[33,24],[50,82],[83,77],[77,18],[11,15],[44,9],[28,48],[60,5],[22,-38],[39,-10],[5,24]],[[16854,14237],[17,158],[5,86],[34,287],[10,148],[17,149],[-5,67],[-17,19],[-11,58],[6,43],[-50,67],[-22,47],[0,201],[66,20],[16,19],[39,-29],[17,5],[0,62],[-22,53],[-83,0],[0,181],[55,15],[28,-15],[171,0],[-11,39],[21,29],[12,-48],[33,0],[49,91],[22,-10],[45,-129],[0,-120],[33,15]],[[17329,15745],[77,-130],[55,14],[50,49],[38,-53],[50,86],[28,34],[27,4],[33,53],[33,5],[17,19],[22,67],[0,38],[94,67],[5,72],[-94,19],[-5,91],[-28,110],[0,106],[-5,19],[-61,95],[11,39],[50,0],[38,-58],[111,-5],[49,-90],[33,23],[0,72],[55,62],[39,-19],[88,53],[11,33],[33,29],[28,0],[28,48],[38,38],[11,48],[-22,57]],[[18266,16840],[22,-4],[72,14],[22,-43],[-6,-96],[-16,-62],[27,0],[34,-24],[0,-62],[27,-72],[-27,-76],[-17,-19],[0,-68],[-22,-95],[0,-86],[16,-91],[17,-25],[6,-42],[-6,-58],[83,-143],[39,-24],[22,-29],[21,24],[28,0],[0,43],[28,43],[44,-19],[11,33],[55,14],[28,58],[49,29],[39,-33],[55,14]],[[45191,16759],[17,0],[22,-76],[-6,-77],[-22,9],[-11,87],[0,57]],[[45191,16759],[-44,-53],[5,-71],[11,-20],[-11,-62],[-27,-38],[-28,62],[-21,14],[-6,49],[-28,33]],[[45042,16673],[39,5],[33,28],[71,87],[6,-34]],[[41187,22937],[39,106],[22,33],[28,67],[76,67],[61,-24],[-5,-38],[44,0],[44,-14],[17,-20],[38,34],[55,-43],[0,-48]],[[41606,23057],[-5,-53],[22,-33],[33,5],[22,-49],[-16,-57],[11,-57],[-83,-19],[-17,19],[-22,-24],[-83,-5],[-60,34],[-33,-39],[-56,-14],[-66,43],[-27,-10],[-44,39],[-17,72],[22,28]],[[32071,9289],[-39,-5],[-44,-77],[-72,-28],[-55,-77],[-17,-57],[-21,-34],[-28,-14],[-11,-34],[-28,-14],[-38,-43],[-17,-48],[-22,-134],[-33,-43],[-22,-52],[-83,-44],[-49,-239],[-23,-29],[-71,-9],[-39,-19],[-61,24],[-21,28],[-34,0],[-88,96],[-60,-10],[-23,-38],[-38,-187],[-61,-71],[-17,-53],[-43,-24],[-17,-48],[-39,5],[-110,-5],[-17,29],[0,81],[28,77],[0,72],[-17,48],[-32,143],[-23,53],[-55,67]],[[30631,8576],[0,306],[0,460],[149,0],[5,9],[0,388],[0,225],[0,392],[83,14],[188,58],[72,19],[38,-67],[16,-62],[17,9],[66,96],[39,29],[22,-24],[61,67],[55,5]],[[31442,10500],[-6,-48],[33,-72],[6,-34],[44,-81],[22,-81],[22,-115],[17,-48],[77,-96],[77,-57],[17,-105],[60,-10],[0,-168],[23,-38],[27,-81],[77,-29],[83,-43],[-5,-47],[33,-25],[22,-33]],[[31271,17793],[11,-14],[-5,-68],[38,-33],[61,-29],[54,-91],[6,-43],[-11,-24],[33,-62],[78,-76],[22,-29],[50,-91],[-6,-62],[17,-34],[10,-57],[33,-19],[66,-77],[12,-29],[5,-91],[22,-47]],[[31767,16817],[-44,23],[-44,-38],[-99,29],[-72,33],[-50,-9],[-22,-62],[-27,-20],[-44,-9],[-50,24],[-22,-5],[-138,-91],[-60,24],[-39,-29],[-50,-143],[-77,33],[-39,10],[-22,-10],[-44,14],[-66,39],[-39,5],[-49,100],[-67,72],[-44,14],[-27,-19],[-38,-48],[-39,-100],[-39,-48],[11,-110],[-5,-130]],[[30422,16366],[-22,39],[-50,-34],[-110,53],[-67,-38],[-49,-5],[-17,-19],[-17,-129],[-5,-82],[-38,-120]],[[30047,16031],[-11,58],[0,101],[-28,71],[-22,5],[-50,91],[-11,34],[-50,105],[12,33],[-17,77],[-44,67],[-11,163],[-16,24],[11,62],[0,100],[-17,15],[-11,47],[38,44],[17,33],[27,105],[11,10],[28,134],[22,24],[17,47]],[[29942,17481],[55,-14],[83,58],[10,38],[23,-24],[27,-53],[72,72],[61,48],[44,0],[99,20],[11,38],[39,57],[28,86],[-28,48],[38,38],[78,0],[66,29],[38,0],[66,77],[39,86],[39,72],[16,4],[22,58],[28,43],[0,57],[39,48],[82,72],[55,-24]],[[31072,18415],[11,-34],[50,-91],[33,-81],[28,-96],[-6,-134],[-22,-62],[16,-96],[89,-28]],[[18211,28072],[22,-33],[39,-15],[33,48],[-17,48],[45,53],[10,-34],[61,-14],[-28,-72],[-54,-63],[-45,-18],[-94,-5],[-27,38],[-6,96],[39,67],[55,138],[39,49],[33,9],[11,-67],[-28,-153],[-88,-72]],[[17797,28215],[17,24],[61,-28],[49,-9],[121,18],[23,-18],[-78,-58],[0,-63],[-49,5],[-17,53],[-38,-9],[-67,19],[-22,38],[-50,15],[0,47],[-44,29],[28,57],[55,-81],[11,-39]],[[17290,27857],[-33,-5],[-23,34],[-5,57],[17,24],[-61,38],[0,378],[-77,76],[-83,-42],[-33,19],[0,43],[-27,9],[-116,-205],[-11,-77],[-28,-52],[-11,-53],[5,-43],[-27,-53],[-38,-43],[5,-34],[-72,-47],[-27,9],[-28,-76],[-193,0],[-193,-5],[-105,0]],[[16126,27809],[66,53],[34,14],[44,43],[33,9],[27,91],[33,67],[67,48],[33,48],[44,24],[16,33],[133,53],[110,77],[72,95],[88,163],[77,86],[66,48],[17,24],[132,86],[149,77],[66,24],[122,14],[83,-19],[43,-24],[45,-52],[11,-34],[-23,-105],[-44,-15],[-27,-48],[-72,-47],[-33,4],[-66,43],[-44,-57],[71,-33],[12,-44],[27,-4],[39,33],[55,-5],[28,-19],[-33,-96],[-61,-76],[72,-9],[-11,-49],[54,-176],[56,-5],[44,-19],[-22,-39],[55,-43],[28,5],[33,-34],[60,5],[22,-34],[83,20],[39,38],[11,-43],[33,-19],[27,14],[33,-57],[-27,-34],[27,-33],[-187,-110],[-121,-53],[-28,-4],[-22,-44],[-44,19],[-17,29],[-44,-29],[-11,-66],[-77,-120],[-33,-38],[-39,-15],[-16,-43],[-45,10],[-22,67],[-38,5],[-11,90],[16,63],[67,76],[-6,24],[122,105],[71,39],[33,-39],[22,29],[50,24],[-50,29],[-77,0],[-38,19],[-11,39],[-150,-111],[-33,10],[-49,-44],[-66,-9],[-39,29]],[[8174,29082],[-50,29],[33,33],[17,-62]],[[18101,28938],[-61,-5],[-88,24],[-122,67],[-44,73],[-88,42],[11,29],[38,5],[128,-34],[99,-52],[127,-96],[0,-53]],[[8394,29216],[-27,57],[27,24],[17,-48],[-17,-33]],[[8085,29364],[77,-33],[188,-58],[22,-57],[61,-100],[16,-58],[27,-29],[100,-52],[28,-44],[50,-134],[5,-42],[-22,-29],[-50,14],[-116,57],[-71,63],[33,38],[-66,14],[-17,-19],[-72,120],[-77,24],[-16,77],[-28,47],[-39,-9],[-33,19],[-39,62],[-49,-14],[-22,91],[-55,43],[-6,52],[61,19],[110,-62]],[[19077,29613],[-28,-48],[-49,-4],[27,-72],[-16,-53],[-33,-34],[-6,-33],[-94,-177],[-16,-62],[16,-38],[78,119],[110,-38],[-33,-34],[-22,-67],[32,-38],[45,14],[61,-62],[77,72],[16,-29],[61,5],[55,-33],[6,-49],[-39,-42],[-22,-77],[38,-14],[-5,-43],[33,-5],[28,24],[50,-15],[-89,-86],[11,-28],[-49,-87],[16,-38],[39,24],[33,72],[50,9],[-34,-105],[34,-28],[27,62],[22,-62],[-5,-34],[-39,-91],[6,-33],[-22,-72],[-23,-19],[-33,19],[-33,-10],[0,129],[-61,-86],[-27,24],[50,129],[-28,115],[-28,-9],[-38,-101],[-61,-5],[-33,-81],[-33,-53],[-82,-9],[0,57],[54,24],[45,76],[49,34],[-33,24],[-44,0],[-11,-48],[-66,15],[6,71],[-50,-4],[-11,-29],[-83,-29],[-177,29],[-60,0],[-122,-29],[-33,48],[-5,43],[116,144],[-17,47],[33,115],[22,24],[39,-5],[16,39],[-33,24],[6,38],[27,29],[83,254],[99,181],[28,67],[94,58],[49,-29],[39,19]],[[15205,29943],[-44,5],[-154,72],[27,47],[105,5],[61,-76],[5,-53]],[[7390,30067],[17,-71],[-17,-48],[77,-167],[-143,177],[6,57],[-33,39],[93,13]],[[7876,30001],[11,-120],[-39,-43],[0,110],[-44,0],[-22,72],[33,71],[49,-47],[12,-43]],[[7677,30063],[-99,100],[11,24],[77,-52],[28,-53],[-17,-19]],[[7622,30278],[-39,-24],[-27,34],[33,28],[33,-38]],[[7247,30326],[149,-38],[-28,-76],[-5,-92],[-17,-33],[-77,-20],[-33,34],[-50,130],[6,105],[55,-10]],[[7566,30503],[56,72]],[[7622,30575],[-17,-58],[-39,-14]],[[15481,30915],[-39,-106],[-38,15],[-22,52],[-50,-72],[-16,20],[60,86],[33,10],[16,86],[50,-48],[6,-43]],[[17119,32010],[-17,34],[28,58],[50,-48],[-61,-44]],[[17638,32322],[-83,52],[-6,24],[94,5],[22,-19],[-27,-62]],[[15388,32609],[37,-43],[-5,-63],[-60,-115],[-17,-4],[-71,72],[5,81],[61,72],[50,0]],[[17643,32652],[60,-24],[-38,-29],[-22,53]],[[16793,32647],[-65,14],[-6,67],[55,-28],[16,-53]],[[15007,32757],[5,-48],[-88,-100],[-72,-57],[-55,9],[-50,-19],[-33,72],[83,134],[66,-10],[111,29],[33,-10]],[[15641,32901],[55,-58],[-22,-28],[-55,-5],[-77,76],[44,19],[55,-4]],[[15823,32881],[-38,0],[-67,53],[39,24],[55,-28],[11,-49]],[[14560,33394],[50,52],[55,-23],[16,-34],[99,-29],[45,-48],[94,-57],[82,-29],[39,-62],[22,-72],[99,-38],[28,19],[83,-91],[-99,-77],[-67,15],[-160,52],[-11,54],[-83,28],[-5,38],[-83,-29],[-11,-52],[-72,-72],[-27,-5],[-28,-57],[-44,-38],[-66,-29],[-44,0],[-44,158],[-122,-15],[-38,-23],[-55,28],[38,63],[99,52],[-11,115],[23,105],[21,177],[17,48],[66,58],[66,-63],[-21,-48],[49,-71]],[[14598,33480],[-66,52],[-11,53],[39,14],[38,-57],[0,-62]],[[14747,33542],[-60,-5],[0,81],[50,-28],[10,-48]],[[16292,34092],[-72,-5],[-72,15],[-27,43],[55,29],[138,-24],[-22,-58]],[[14306,34078],[-44,19],[-11,86],[61,48],[27,-100],[-33,-53]],[[15977,34240],[83,-28],[6,-163],[-33,-67],[-111,-38],[-127,-5],[-33,24],[-33,101],[11,43],[83,114],[154,19]],[[16099,34245],[-66,34],[-12,34],[50,23],[38,-52],[-10,-39]],[[11968,34313],[-72,23],[50,44],[39,-15],[-17,-52]],[[12216,34370],[-60,-5],[5,62],[66,-28],[-11,-29]],[[15437,34385],[-28,23],[78,53],[33,62],[66,-14],[-94,-105],[-55,-19]],[[15773,34466],[-55,33],[5,43],[89,-4],[11,-25],[-50,-47]],[[15404,34643],[-22,-43],[-89,-29],[-44,33],[155,39]],[[12646,34604],[171,-86],[55,-86],[56,-52],[-105,-91],[-50,-10],[-132,19],[-127,62],[-160,29],[-17,72],[83,9],[61,39],[-6,76],[39,15],[33,57],[60,0],[39,-53]],[[7655,30809],[-11,63],[-50,4],[-49,58],[-55,19],[-72,53],[-39,0],[-33,119],[-49,15],[16,33],[-49,81],[-83,159],[-50,71],[5,24],[-65,82],[-61,38],[-33,67],[-78,52],[-22,44],[6,38],[-66,57],[-127,-52],[-22,-39],[-17,-86],[-38,0],[-72,-43],[-33,0],[-17,67],[-159,149],[-12,37],[-71,49],[16,71],[-94,-4],[-44,-39],[-72,29],[-10,-19],[-73,19],[0,325],[0,240],[0,325],[0,402],[0,483],[0,321],[0,483]],[[5972,34604],[155,-9],[122,-29],[160,-100],[221,-72],[126,10],[-6,52],[34,57],[61,-4],[21,48],[105,0],[11,57],[78,-43],[32,-43],[94,29],[22,43],[72,4],[133,62],[71,10],[72,62],[171,-19],[-17,-19],[-198,-100],[-155,-29],[-55,-62],[-55,-10],[-111,-105],[106,-19],[-11,52],[38,39],[94,38],[44,48],[88,0],[28,-39],[77,91],[121,49],[72,13],[11,-47],[105,76],[11,34],[93,43],[-77,43],[66,29],[94,-77],[66,-129],[66,-62],[83,-48],[83,14],[-27,58],[93,100],[44,-24],[50,-72],[-44,-76],[127,0],[60,48],[39,77],[187,-5],[116,-39],[105,-67],[66,-24],[171,-29],[100,-52],[121,-29],[133,-14],[27,24],[93,0],[155,-62],[66,-53],[17,-82],[-105,5],[-55,-38],[-45,-57],[45,-29],[193,-34],[221,-4],[49,14],[171,14],[94,44],[55,9],[61,-67],[83,-10],[170,-124],[0,-43],[-38,-14],[16,-53],[55,28],[94,-19],[-22,58],[-44,48],[-11,67],[-50,86],[33,58],[144,23],[60,24],[23,48],[66,24],[-11,48],[-83,-33],[-22,-44],[-105,-19],[-66,-33],[-100,0],[-54,33],[65,86],[83,10],[243,77],[77,-24],[44,-116],[161,-104],[65,0],[67,23],[121,-86],[171,-33],[171,43],[149,-15],[83,-19],[82,24],[-49,53],[27,14],[94,-96],[72,-23],[49,28],[-11,38],[-82,34],[-56,-24],[-49,48],[33,67],[132,48],[56,-63],[82,-28],[72,24],[-33,-144],[-28,-48],[33,-71],[66,9],[72,-14],[-28,96],[-32,33],[38,86],[83,-4],[116,100],[99,53],[-28,67],[-126,-24],[0,57],[38,24],[-17,120],[-264,96],[-67,80],[-11,58],[39,53],[-39,81],[23,129],[55,39],[77,-24],[22,43],[-71,23],[104,91],[88,25],[50,-63],[83,-33],[110,-86],[22,-58],[-16,-76],[99,-57],[66,-96],[-94,-53],[83,-19],[-77,-96],[88,-43],[210,-5],[-56,-67],[67,-105],[-17,-115],[61,-53],[50,68],[22,114],[55,81],[44,10],[38,-38],[121,-86],[34,-101],[0,-43],[-83,0],[22,-148],[110,-110],[28,-53],[116,86],[27,96],[67,67],[33,105],[-6,34],[72,48],[66,90],[-82,43],[0,173],[60,-14],[116,9],[88,-38],[143,0],[83,-110],[122,-29],[10,-24],[-93,-62],[88,-9],[11,-53],[-165,-92],[60,-129],[89,-71],[22,-39],[-33,-109],[-62,-20],[-60,-72],[-55,-38],[-50,-10],[-55,-47],[-49,29],[-55,66],[-34,-14],[67,-119],[-77,14],[-28,-34],[-100,43],[-49,58],[-193,-5],[16,-57],[72,-24],[11,-58],[-176,-177],[-116,-9],[-121,90],[-127,68],[-116,4],[82,-53],[83,-81],[44,-28],[116,-20],[127,-4],[61,-43],[-45,-77],[-93,-115],[-34,-62],[-82,-48],[-149,5],[-66,-38],[-33,-67],[-50,4],[-33,-23],[-110,42],[-28,-19],[56,-43],[93,-43],[6,-76],[-116,-72],[-100,14],[-71,-86],[-72,-124],[-50,-48],[6,-38],[-89,-82],[0,-38],[-38,-91],[-77,-158],[-22,-134],[5,-134],[-16,-105],[28,-62],[60,-43],[77,19],[78,-5],[21,-19],[6,-58],[28,-72],[33,-124],[44,-125],[-28,-76],[88,5],[139,48],[82,-5],[121,-67],[149,-43],[56,-58],[60,-38],[77,-115],[265,-110],[116,-100],[88,-10],[88,14],[205,-42],[44,-44],[11,-52],[-28,-125],[6,-48],[38,-100],[-11,-57],[5,-96],[-21,-53],[110,-177],[-11,-38],[105,-86],[49,-63],[33,-100],[94,-57],[50,110],[71,-29],[44,14],[-38,58],[17,48],[60,96],[-11,66],[-28,38],[6,63],[-22,33],[-39,187],[17,95],[-66,92],[-39,100],[116,48],[94,53],[66,47],[110,115],[78,125],[16,67],[6,148],[-22,134],[-23,76],[-55,101],[-61,62],[-71,43],[-77,68],[5,52],[110,158],[-16,19],[82,86],[6,72],[-61,106],[-27,95],[-44,19],[66,101],[0,62],[33,33],[-66,58],[-22,43],[-11,77],[17,42],[104,58],[77,-10],[160,-57],[72,-5],[99,-33],[155,81],[126,-95],[28,0],[28,-58],[66,-53],[66,-34],[-33,-47],[77,-82],[127,-28],[55,0],[11,-43],[61,9],[44,-19],[-50,-76],[0,-67],[17,-58],[-28,-24],[23,-43],[11,-72],[-11,-76],[38,0],[0,-72],[-17,-57],[-55,-5],[17,-43],[94,57],[71,0],[50,-43],[5,-43],[100,-96],[149,67],[55,86],[44,-4],[55,66],[27,91],[17,120],[39,33],[39,96],[33,24],[33,-19],[82,-172],[28,-38],[-28,-39],[61,-9],[22,-72],[34,-62],[49,-48],[-39,-38],[6,-34],[71,24],[-33,-105],[50,9],[28,-52],[66,-29],[-11,-67],[-34,-43],[50,-24],[-16,-38],[49,-14],[44,-48],[-5,-92],[-66,-28],[-17,-43],[61,-9],[-28,-44],[55,-5],[0,-67],[55,-29],[23,25],[38,-39],[61,-90],[-39,-77],[77,14],[39,-14],[66,0],[39,-14],[33,-87],[61,-19],[66,29],[5,-29],[83,-57],[-50,-48],[-66,-10],[-44,-33],[-33,-53],[-132,-57],[-39,5],[-39,-24],[-22,-48],[50,-24],[77,38],[67,62],[88,67],[22,34],[116,-19],[44,-86],[-17,-38],[-38,-25],[27,-43],[72,77],[61,5],[16,-39],[39,-9],[39,-67],[-6,-96],[6,-134],[21,-24],[-11,-38],[11,-43],[-49,-57],[-149,-130],[-72,5],[-60,-19],[-28,-24],[-72,-5],[-99,-144],[-144,-143],[-182,-14],[-66,-29],[-33,38],[-121,19],[-77,-19],[-77,19],[-67,-9],[-55,9],[-55,-9],[-61,14],[-132,-33],[-55,0],[-67,-58],[-66,-177],[-143,-43],[-55,-72],[-44,-28],[-66,-125],[-61,-76],[-33,-101],[-72,-86],[-38,-81],[-61,-58],[-22,-34],[-55,-28],[-39,-5],[-127,-110],[-44,-19],[-44,-86],[-33,-43],[-33,-10],[-50,-57],[6,-43],[-56,-39],[-55,-57]],[[16126,27809],[-44,-5],[-61,-57],[-71,-96],[-44,-33],[-50,-68],[-55,-119],[-287,0],[-72,-43],[17,-53],[0,-52],[22,-48],[-17,-29],[-110,-77],[-77,-43],[-154,-47],[-182,-144],[-39,0],[-50,43],[-16,38],[11,91],[77,86],[22,125],[44,139],[-22,171],[-11,54],[-33,263],[-94,81],[-66,48],[22,52],[-22,34],[-50,-14],[-27,43],[-6,86],[-66,-24],[-33,53],[-11,71],[-93,63],[-56,47],[-292,211],[-99,62],[-33,-10],[-105,-66],[-111,0],[-11,28],[-99,-4],[-17,28],[-33,-5],[-49,-38],[-22,0],[-100,81],[-38,-19],[-11,44],[-88,52],[-50,0],[-50,-29],[-49,39],[-89,24],[-27,71],[-22,96],[-33,5],[0,-105],[-232,0],[-265,0],[-325,0],[-326,0],[-258,0],[-265,0],[-193,0],[-326,0],[-198,0],[-259,0],[-331,0],[-194,0],[-264,0],[-259,0],[-326,0],[-210,0]],[[8763,28910],[-66,42],[-22,87],[-27,-15],[-50,19],[-44,87],[-44,-5],[-55,67],[-39,110],[-27,19],[-72,-4],[-110,19],[-33,105],[-67,-15],[-61,34],[-38,48],[-6,95],[-22,72],[-33,5],[-38,105],[50,43],[-39,29],[27,134],[-55,-9],[-11,72],[-17,28],[-93,48],[-50,-48],[-116,134],[39,67],[0,57],[-55,67],[5,34],[72,148],[17,67],[-22,10],[-17,57],[11,86]],[[10026,35418],[160,24],[0,38],[61,48],[160,-28],[121,-63],[-11,-58],[172,53],[-72,96],[88,0],[171,-91],[66,-95],[61,-173],[55,-19],[77,72],[-60,72],[-39,100],[-44,163],[27,66],[166,-19],[176,-71],[61,-63],[27,-105],[72,-148],[61,-82],[6,-52],[-34,-72],[94,-100],[144,-67],[38,0],[182,-106],[82,-5],[17,-67],[-17,-57],[-109,10],[-78,38],[-55,-33],[0,-48],[-132,28],[88,-86],[116,43],[44,-129],[-160,-57],[-88,0],[-132,29],[-34,-15],[-82,15],[10,42],[-171,24],[-33,63],[-44,14],[-110,-115],[-155,-24],[-88,-48],[-154,-38],[-210,-24],[-149,-4],[-88,-15],[-71,34],[-44,67],[-6,95],[-99,24],[-238,10],[-99,33],[-94,106],[0,81],[243,43],[144,14],[319,-24],[122,34],[-61,28],[-254,67],[-165,-18],[-187,-10],[-22,10],[-210,0],[-121,95],[66,48],[314,67],[-22,19],[-199,-4],[-60,-15],[-72,15],[72,62],[-133,-5],[-61,33],[6,63],[116,81],[-44,38],[55,58],[132,76],[105,38],[298,86],[72,-24],[16,-100],[-72,-86]],[[11444,35504],[-121,77],[-72,62],[-66,24],[55,52],[165,20],[61,-5],[88,-58],[-5,-53],[-61,-85],[-44,-34]],[[15388,35710],[192,0],[166,-43],[27,-44],[111,-71],[33,-57],[-50,-15],[-221,20],[-253,-39],[-67,29],[-38,100],[-94,29],[-11,110],[72,10],[133,-29]],[[14306,34977],[144,44],[132,-19],[22,138],[-115,39],[-78,72],[78,62],[93,9],[-28,43],[-65,10],[-39,53],[28,129],[71,62],[193,67],[166,43],[110,0],[83,-24],[38,-91],[71,-38],[17,-67],[45,-53],[-111,-86],[61,0],[-49,-67],[0,-77],[126,87],[6,42],[115,5],[50,-33],[133,5],[-50,38],[16,48],[121,38],[100,-5],[110,-43],[55,5],[83,-29],[33,-71],[121,-48],[-5,-58],[-61,-43],[155,10],[0,-34],[60,-28],[61,52],[193,-43],[72,-67],[-89,-67],[61,-19],[89,38],[22,-67],[-83,-66],[187,62],[89,-15],[138,-52],[16,-34],[-132,-81],[143,-29],[27,62],[62,-24],[82,-100],[-22,-38],[-132,5],[-50,-44],[72,-28],[104,0],[105,-53],[-16,-38],[-106,4],[-71,24],[-55,-24],[83,-33],[-17,-72],[-105,20],[94,-91],[44,9],[66,-24],[78,-96],[66,0],[11,-43],[138,-4],[44,-44],[60,15],[72,-62],[22,-77],[66,9],[83,-38],[-38,-67],[137,-24],[67,29],[93,-91],[-33,-86],[-127,-14],[-22,-24],[78,-44],[-56,-47],[-38,-72],[-105,-5],[-5,-110],[-17,-57],[-55,19],[-111,9],[-66,72],[-83,168],[-55,9],[-82,63],[-55,85],[-61,-33],[-22,-38],[-55,-10],[77,-62],[-55,-33],[-99,33],[-11,-29],[60,-43],[-11,-43],[83,-9],[11,-62],[99,-106],[72,-34],[44,10],[99,-72],[33,-52],[-44,-58],[28,-57],[77,0],[38,-86],[-22,-10],[6,-115],[-83,-4],[50,-82],[-66,-5],[16,-62],[-105,62],[-16,-4],[-121,48],[-56,62],[-77,47],[-38,-19],[-110,86],[-62,5],[12,-43],[99,-115],[77,-28],[110,-110],[45,-20],[55,-81],[38,-19],[-16,-38],[11,-53],[-55,-5],[-55,34],[-100,38],[-171,29],[-82,43],[-44,43],[-33,57],[-100,-4],[-193,100],[-72,86],[44,0],[45,34],[-66,47],[-61,-4],[-44,28],[-28,58],[-116,110],[28,38],[-99,5],[-94,24],[-17,-29],[-66,-28],[-66,24],[-39,-44],[-44,0],[-127,-43],[-138,34],[-43,38],[-23,48],[17,76],[33,34],[77,38],[-11,48],[28,24],[226,-57],[72,4],[49,29],[66,-4],[50,33],[105,14],[-28,62],[-99,91],[0,34],[66,38],[105,91],[39,14],[33,82],[66,29],[0,57],[-33,86],[-72,125],[-44,42],[-72,29],[6,58],[-78,-10],[-99,110],[-105,-14],[-121,-53],[-28,77],[94,14],[50,53],[-22,28],[-94,34],[-94,48],[0,62],[-88,0],[-28,110],[-77,-5],[-121,106],[-44,-63],[77,-38],[11,-53],[-83,-43],[-342,62],[0,-47],[-88,-29],[-55,5],[-99,43],[-61,-14],[-154,9],[-138,33],[-55,-23],[-89,38],[-22,48],[-170,-5],[-34,-24],[-82,57],[-72,20],[-56,67],[-21,86],[127,-10],[76,-24],[133,10],[-110,62],[-182,19],[-111,48],[-33,134],[56,58],[-33,28],[5,57],[77,106],[16,72],[78,81],[121,77],[177,43],[253,-5],[22,-34],[-159,-105],[-95,-119],[-5,-44],[44,-52],[6,-115],[44,-96],[154,-115],[-237,-96]],[[12249,35787],[133,-58],[154,24],[50,19],[93,-9],[34,-39],[-56,-62],[12,-29],[-78,-29],[-99,-71],[149,-5],[88,-86],[55,5],[11,-63],[-55,-47],[33,-20],[-28,-52],[28,-58],[-132,-57],[-111,10],[0,-62],[-71,-39],[-88,24],[-78,100],[-132,111],[-94,48],[-88,4],[-28,38],[-116,77],[11,43],[95,43],[143,-100],[93,19],[34,96],[-45,9],[-148,96],[82,28],[11,53],[138,39]],[[12519,35768],[-110,-15],[-66,24],[204,57],[50,-28],[-78,-38]],[[13297,35848],[149,-52],[88,14],[154,-19],[39,-38],[-94,-86],[-121,-163],[-72,-53],[-171,24],[-60,-38],[33,-67],[-50,-48],[-27,-62],[-177,0],[-11,129],[-55,125],[-5,201],[43,19],[100,95],[237,19]],[[9227,35834],[182,38],[160,-4],[121,-58],[188,-110],[5,-52],[-154,-48],[-89,-43],[-292,-115],[-82,-105],[-106,-24],[-38,-163],[-27,-34],[-133,-33],[-44,15],[-61,-48],[-104,-48],[-83,33],[-94,129],[-199,82],[-82,-5],[11,48],[55,81],[66,48],[22,124],[61,101],[49,29],[50,67],[-50,24],[-88,138],[188,24],[127,5],[132,24],[99,-15],[182,-67],[28,-38]],[[11620,36088],[-115,33],[60,72],[99,-9],[28,-67],[-72,-29]],[[13242,36088],[-6,-100],[-149,-10],[-116,43],[-87,10],[-111,66],[72,82],[72,48],[154,24],[115,-53],[61,-81],[-5,-29]],[[9442,36241],[-72,-19],[-88,29],[116,76],[154,19],[-110,-105]],[[11913,36361],[-55,-67],[-116,-5],[-138,76],[-16,39],[187,38],[83,-10],[55,-71]],[[11637,36514],[149,-33],[-66,-34],[-138,0],[-33,76],[88,-9]],[[12602,36485],[28,-100],[-11,-72],[33,-48],[-11,-57],[-67,-15],[33,-76],[-66,-29],[-231,-15],[-105,15],[-66,86],[149,72],[-22,19],[-403,-43],[61,100],[83,-14],[-78,139],[50,34],[237,-125],[39,86],[-105,24],[-28,33],[182,29],[78,-47],[66,66],[154,-62]],[[10980,36370],[78,-5],[17,-43],[126,19],[50,29],[143,-33],[17,-53],[-55,-153],[-39,-29],[-143,-43],[-122,19],[-143,0],[-111,-33],[-159,-24],[-61,-43],[-121,-39],[-122,-19],[-154,0],[-116,48],[22,48],[198,57],[205,19],[5,39],[-226,-24],[-232,-5],[-93,-29],[-100,-4],[-115,57],[-83,-5],[-88,34],[38,48],[172,9],[-33,29],[-111,10],[111,71],[-28,53],[121,53],[39,48],[121,19],[88,-14],[61,-68],[99,15],[72,-19],[176,-101],[39,-62],[337,-29],[21,53],[-132,47],[55,44],[-39,52],[-76,19],[-11,39],[66,28],[116,82],[82,-19],[5,-86],[61,-58],[-28,-48]],[[13827,36495],[-50,-5],[-77,67],[132,-5],[-5,-57]],[[10176,36562],[-182,0],[16,28],[116,10],[50,-38]],[[13126,36605],[55,5],[110,-44],[34,-38],[104,-5],[83,20],[160,-29],[-17,-38],[238,-39],[-17,-28],[-138,-10],[6,-29],[159,-81],[-10,-52],[110,19],[55,-34],[143,29],[72,-39],[110,5],[227,43],[104,43],[105,-19],[138,24],[182,-24],[22,-28],[132,-15],[61,-33],[39,-58],[-138,-62],[110,-5],[28,-38],[-105,-14],[-11,-67],[-149,-5],[-88,-24],[-182,29],[-193,-20],[-419,-9],[-221,4],[11,82],[-226,-67],[-149,43],[-116,-14],[-49,24],[-72,134],[-11,52],[55,67],[-17,53],[-154,144],[-105,-29],[-215,0],[-105,48],[12,33],[-155,48],[72,19],[-50,48],[171,24],[204,-43]],[[9872,36729],[-104,-48],[54,-57],[-54,-29],[43,-38],[-43,-34],[-122,-24],[-17,-57],[-132,24],[33,105],[-66,-5],[-66,-119],[-50,-48],[-88,-29],[-61,-53],[-66,-9],[-44,57],[-105,-19],[-198,10],[-45,38],[83,72],[116,10],[94,71],[292,168],[166,19],[115,-19],[66,62],[72,5],[127,-53]],[[13810,36706],[-39,-20],[-165,52],[6,63],[143,-5],[72,-43],[-17,-47]],[[11554,36672],[-127,29],[-104,128],[93,-4],[78,-82],[60,-18],[0,-53]],[[12944,36849],[337,-15],[-39,-76],[-375,5],[-33,62],[110,24]],[[11990,36820],[-105,9],[-11,44],[127,5],[99,-44],[-110,-14]],[[10132,36839],[-116,5],[-66,53],[104,28],[111,-71],[-33,-15]],[[10650,36935],[121,-29],[-72,-67],[-10,-62],[-72,-24],[-193,-28],[-67,4],[-121,48],[-5,106],[303,47],[116,5]],[[10749,37083],[49,-14],[17,-72],[-325,-14],[-210,52],[177,29],[198,53],[94,-34]],[[12834,37054],[99,-4],[105,-48],[-50,-105],[-127,-24],[-154,10],[-94,47],[-105,105],[39,24],[-22,68],[248,-29],[61,-44]],[[11725,37270],[121,-63],[116,0],[221,-76],[132,-72],[-39,-33],[111,-86],[0,-67],[-127,-24],[-99,29],[-72,81],[-265,38],[-236,-19],[-100,57],[39,29],[149,-14],[38,67],[-55,38],[-259,43],[27,72],[298,0]],[[12437,37452],[-198,-20],[5,53],[160,5],[33,-38]],[[13496,37768],[93,-77],[216,-95],[336,-34],[6,-53],[99,-81],[-22,-62],[209,-19],[88,-58],[0,-43],[-193,-53],[-231,-134],[-99,-43],[-28,-57],[-243,-9],[-160,9],[-143,33],[-77,39],[-204,143],[138,48],[93,9],[66,53],[-60,24],[-199,-47],[-55,33],[-122,-33],[-99,38],[66,62],[-82,5],[-116,66],[-28,63],[100,67],[0,86],[204,14],[-110,34],[38,38],[221,29],[-61,62],[138,10],[171,-34],[50,-33]],[[16926,38289],[441,-19],[0,-57],[227,43],[253,-34],[61,-57],[259,-34],[16,-47],[-138,-63],[-215,-57],[-292,-48],[-176,-14],[-45,-34],[-270,-52],[22,-15],[430,67],[139,-14],[-287,-110],[-342,-124],[-94,-58],[-204,-72],[-77,-100],[-282,-29],[-38,-43],[-205,-10],[-198,-38],[155,-34],[88,-38],[-237,-19],[253,-71],[-71,-54],[-227,-4],[183,-53],[-105,-86],[-132,-24],[-199,5],[-11,-120],[-94,-47],[-369,-19],[127,-34],[121,14],[27,-62],[83,-24],[77,24],[44,-62],[-44,-48],[-155,-62],[-104,-29],[-154,-19],[22,53],[-55,38],[-337,-19],[-270,-39],[-215,62],[-22,-42],[-259,9],[-182,24],[10,91],[210,86],[199,9],[-116,62],[-78,91],[94,44],[171,-19],[122,-96],[127,-29],[159,14],[72,48],[-248,-24],[-66,20],[-44,148],[-99,-5],[-205,24],[11,67],[105,101],[276,38],[264,-43],[34,48],[-116,33],[-220,168],[-122,14],[-55,34],[-34,76],[50,57],[343,-19],[215,-72],[120,-76],[133,-9],[-298,162],[67,29],[237,19],[204,53],[386,71],[-381,-5],[-259,-71],[-242,-14],[-78,38],[-127,-48],[-165,-5],[-205,29],[56,48],[155,52],[-83,15],[-237,-101],[-100,0],[-165,43],[-138,82],[44,57],[-132,39],[110,38],[-281,19],[182,52],[127,5],[165,48],[518,-9],[-215,43],[282,71],[176,-33],[66,-38],[182,24],[-71,43],[115,23],[-16,39],[303,43],[-50,29],[331,0],[342,38],[204,-10],[111,-47],[138,67],[435,9],[72,-29]],[[29032,28436],[5,-57]],[[29170,28326],[0,-87],[-55,10],[-23,-62],[-44,-19],[-60,47],[-6,-71],[-33,-53],[-33,-5],[-77,111],[-28,-39],[6,-28],[-56,-68],[-38,19],[-61,-28],[-16,14]],[[28646,28067],[-39,63],[0,72],[-49,4],[-34,-29],[-22,34],[11,43],[39,38],[6,53],[33,24],[49,76],[22,53],[33,-19],[44,48]],[[28739,28527],[45,-10],[44,10],[44,48],[60,-34],[44,5],[56,-38]],[[17296,206],[-28,-38],[-44,28],[-33,-24],[-50,15],[-33,62],[27,14],[133,-9],[28,-48]],[[16893,268],[121,-29],[39,20],[38,-25],[11,-81],[45,-47],[-128,14],[-27,57],[-55,-52],[-88,81],[16,72],[28,-10]],[[16694,283],[28,-29],[61,19],[21,-43],[-27,-34],[-44,19],[-39,68]],[[16634,512],[60,-58],[-22,-38],[-50,43],[-77,5],[-38,44],[33,47],[72,-19],[22,-24]],[[16402,665],[0,-24],[66,-5],[39,-62],[-50,-71],[-55,-15],[22,72],[-83,-24],[0,63],[-27,-5],[-33,86],[93,-24],[28,9]],[[16176,818],[50,-9],[93,-53],[-21,-43],[-34,53],[-72,9],[-16,43]],[[17053,287],[-66,-14],[-61,14],[-44,29],[-39,-19],[-39,19],[-33,-19],[-143,53],[-60,0],[71,62],[33,-15],[39,34],[28,-44],[60,0],[-33,53],[-33,14],[-16,39],[0,62],[49,67],[11,-72],[-27,-28],[71,-106],[66,19],[50,-23],[22,-43],[33,43],[-143,81],[-22,57],[5,49],[116,66],[-28,38],[-55,-4],[-33,-19],[-49,33],[-6,62],[105,96],[44,67],[61,-53],[44,29],[27,-19]],[[16109,1172],[6,-52],[39,-43],[-50,-77],[-27,63],[-11,66],[43,43]],[[16148,1273],[-5,-33],[-66,0],[44,52],[27,-19]],[[16033,1436],[-17,57],[44,-4],[-27,-53]],[[16071,1541],[-61,-10],[23,91],[66,-29],[-28,-52]],[[16066,1943],[-22,-62],[-39,-5],[-22,38],[17,29],[66,0]],[[16159,1857],[6,-39],[-11,-100],[11,-34],[-17,-57],[-77,38],[-33,0],[-44,44],[39,19],[0,38],[-23,33],[28,29],[17,48],[33,33],[-6,39],[39,34],[33,-29],[5,-96]],[[16005,1967],[-22,48],[22,96],[-11,43],[27,14],[39,-110],[-11,-67],[-44,-24]],[[16148,2010],[-55,-10],[-49,158],[44,39],[38,-62],[22,-125]],[[16187,2814],[-22,-19],[-39,24],[33,67],[33,38],[-5,-110]],[[16391,3063],[-39,-24],[-27,24],[-6,38],[39,86],[55,-33],[11,-29],[-33,-62]],[[16275,3168],[-38,-29],[38,-167],[-16,-62],[-39,4],[-39,115],[-44,72],[22,48],[61,24],[0,53],[28,14],[33,-39],[-6,-33]],[[16270,3460],[-55,-5],[-34,24],[23,110],[5,182],[17,29],[5,86],[77,-29],[11,-72],[-5,-86],[-44,-43],[33,-38],[16,-48],[-44,-62],[-5,-48]],[[17086,976],[-121,39],[-33,-15],[-28,-57],[-44,-10],[-132,-72],[-34,-167],[0,-110],[-44,-29],[-61,19],[-66,38],[-38,53],[11,62],[66,-9],[72,48],[38,72],[-38,23],[-78,-67],[-60,-33],[-28,-34],[-11,-57],[-27,10],[-50,52],[22,34],[11,81],[61,0],[49,48],[50,-10],[22,34],[-88,9],[-83,-14],[-5,-38],[-33,-48],[0,-38],[-50,-10],[-44,62],[60,34],[-22,33],[-32,-24],[-67,10],[0,67],[-22,24],[-17,57],[67,-33],[88,19],[88,48],[17,52],[-55,-19],[-67,-57],[-22,10],[-33,66],[-38,5],[16,125],[-38,38],[-72,14],[-34,19],[-43,106],[66,4],[-17,53],[22,34],[0,42],[44,63],[11,101],[61,23],[-72,48],[-5,154],[5,52],[-22,38],[-16,82],[0,48],[55,-15],[61,0],[0,48],[-61,-29],[-28,48],[-38,29],[33,33],[5,68],[39,42],[0,57],[-22,49],[-28,-24],[-33,4],[-44,34],[-11,33],[-61,-9],[11,-58],[-38,0],[0,72],[110,124],[-22,77],[44,15],[50,-5],[55,33],[-5,63],[49,14],[-22,-110],[39,-5],[0,-58],[-17,-85],[17,-10],[17,177],[-28,19],[5,62],[28,0],[55,34],[-39,33],[11,72],[44,14],[56,53],[11,81],[-28,10],[-66,62],[5,77],[28,10],[11,62],[-17,86],[23,29],[27,86],[-11,67],[11,43],[-5,57],[27,29],[17,57],[-33,-4],[-17,23],[28,72],[-34,39],[-21,-10],[-23,-53],[-55,-14],[-33,14],[17,43],[-28,20],[-27,148],[33,139],[16,138],[39,53],[27,153],[-44,196],[11,130],[-33,95],[12,63],[-12,38],[12,38],[49,-5],[16,44],[6,100],[17,14],[21,67],[17,115],[28,62],[-6,48],[33,96],[28,38],[28,129],[5,125],[28,96],[27,47],[-6,101],[-11,53],[28,33],[16,86],[6,77],[-11,48],[-22,339],[-11,63],[5,115],[45,52],[11,139],[-6,81],[-22,43],[0,91],[28,53],[22,81],[5,86],[12,68],[21,62],[0,76],[17,129],[17,67],[11,77],[0,90],[-11,58],[11,67],[21,48],[6,53],[-16,110],[10,177],[0,101],[17,57],[-33,52],[6,87],[27,23],[22,115],[0,101],[11,62],[6,91],[11,77],[-22,176],[0,54],[11,80],[0,120],[-23,148],[-11,120],[0,120],[-10,14]],[[16783,10351],[38,5],[39,34],[11,28],[5,120],[23,5],[21,38]],[[44557,20918],[11,-29],[5,-67],[-27,-24],[-39,-105],[-16,-120],[-34,-24],[-32,-67],[-33,-5],[-17,-38],[-27,-10],[-78,39],[-49,48],[-11,100],[5,110],[77,101],[0,28],[22,39],[34,0],[10,19],[50,-5],[39,24],[33,5],[33,-24],[11,43],[33,-38]],[[46305,23664],[-44,15],[16,34],[28,-49]],[[46239,24086],[-16,-5],[-67,48],[22,14],[61,-57]],[[47563,27129],[-33,43],[-6,53],[-55,34],[-22,-82],[-6,-62],[-22,-24],[-33,14],[-33,-76],[-33,-33],[-138,-15],[0,-24],[38,-96],[-10,-33],[-77,0],[-83,23],[-22,63],[-17,10],[-50,-39],[-11,-67],[-82,-138],[-44,-15],[-45,-53],[-49,-28],[-94,-101],[-16,-52]],[[46620,26431],[-39,-44],[-116,-18],[-49,-29],[-106,-82],[-33,-62],[-38,-43],[-27,5],[-6,-38],[-50,-15],[-27,-24],[-6,53],[89,53],[-11,28],[27,53],[-83,-5],[0,43],[33,29],[6,52],[44,29],[61,115],[11,48],[-23,43],[-38,43],[-105,15],[-66,-86],[-44,-96],[-132,-91],[-34,-43],[-22,-53],[-5,-43],[-33,-62],[-55,0],[-50,-34],[-39,48],[-44,-29],[-33,-119],[17,-77],[55,-62],[83,-24],[39,5],[33,-58],[-12,-158],[50,-57],[72,5],[22,57],[66,72],[5,24],[61,33],[44,-28],[28,-34],[27,-5],[39,-33],[50,-5],[10,24],[44,-34],[39,5],[0,-66],[-11,-48],[-28,-48],[-27,33],[-33,0],[-83,-62],[-38,-19],[-67,-67],[-11,-82],[-38,-19],[-11,48],[-33,-29],[11,-28],[-39,-91],[-33,-29],[-44,-76],[-11,-53],[-22,-29],[0,-71],[33,-10],[22,-38],[100,-72],[16,-43],[60,-254],[23,-62],[0,-96],[16,-29],[50,-28],[16,-24],[11,-72],[34,-19],[22,-38],[5,-58],[-27,5],[-50,38],[-61,5],[11,-43],[94,-110],[22,-43],[11,-67],[-55,-20],[-77,-81],[-28,-52],[-60,10],[32,-72],[39,9],[39,38],[27,-5],[56,-86],[38,-24],[-11,-71],[17,-38],[-11,-101],[-17,29],[-38,0],[-6,-34],[22,-29],[-5,-66],[-23,-34],[17,-77],[-33,-38],[-39,19],[-82,-196],[5,-48],[-33,-72],[-17,-14],[-22,-57],[-11,-58],[-16,-24],[-28,48],[-22,-38],[22,-24],[17,-57],[-33,-29],[-34,-48],[28,-39],[-17,-90],[-16,-34],[-39,-4],[11,-68],[-32,5],[-17,-24],[0,-57],[-33,-38],[-6,-48],[-55,-10],[-33,15],[-11,-44],[5,-62],[-33,-67],[-16,5],[-17,-53],[-38,-67],[-11,34],[-33,-39],[-28,20],[-5,-53],[-50,-77],[-12,-62],[-21,0],[-72,-38],[-33,15],[-22,-39],[-44,29],[-56,-58],[-33,39],[-21,-63],[-33,5]],[[45076,21621],[-39,-9]],[[45037,21612],[-17,4],[-39,77],[-11,72],[-38,-57],[33,-73],[5,-81],[-16,-28]],[[44954,21526],[-33,-29],[-39,5],[-5,-48],[-28,0],[-33,-44],[-22,29],[-22,-38],[-55,29],[-50,-82],[-44,-19],[-50,5],[-66,-81],[-27,-10],[-28,-38],[-5,-48],[27,-5],[-6,-48],[33,-57],[-27,-48],[-33,-9],[-27,9],[0,53],[-28,38],[6,24],[-23,48],[17,124],[22,15],[-22,47],[-94,-37],[-22,57],[-39,0],[-44,76],[-5,-81],[-72,-29]],[[44110,21334],[-33,43],[-17,-14],[-44,0],[-55,62],[0,14],[-55,39],[0,71],[-17,29],[6,48],[22,19],[11,38],[-39,39],[-27,-14],[-55,33],[-22,-14],[-44,38],[-17,47],[-27,29],[-67,-67],[-5,-52],[-44,-29],[-23,-29],[-32,29],[-17,-14],[-22,-63],[-44,72],[-22,-53],[-28,44],[-22,-58],[-28,-29],[-38,58],[-38,29],[-34,-82],[-16,-24]],[[43217,21573],[-17,19],[-28,-14],[-27,19],[-22,-67],[11,-62],[22,-48],[-5,-182],[-28,19],[-38,-14],[-23,110]],[[43062,21353],[0,48],[-44,-24],[-49,-58],[-28,15],[-22,-10],[-44,96],[0,58],[-50,19],[-61,9],[0,43],[23,58],[5,91],[22,38],[-5,24],[-94,38],[5,34],[-16,57],[0,63],[-33,95],[-33,9],[-55,-19],[-56,-47],[-11,28],[23,67],[-6,43],[-22,29],[5,77],[28,28],[-5,43],[16,63],[38,24],[12,62],[22,0],[27,62],[28,33],[-11,53],[16,24],[5,67],[0,168],[-10,143],[-23,24],[-32,-29],[-28,139],[0,24],[-33,62],[-17,0],[-38,38],[-34,-76]],[[42477,23186],[-27,34],[-55,4],[-27,29],[-45,-24],[11,62],[34,44],[-23,71],[-44,-33],[-5,47],[11,53],[-28,48],[-77,-62],[-16,-44],[-100,34],[-22,38],[-50,-47],[-60,-96],[-33,-28],[-66,-20],[-23,-62],[-33,-48],[-27,-19],[-6,-58],[-38,-33],[-50,-5],[-28,-24],[-44,10]],[[41187,22937],[-22,29],[17,120],[-6,38],[-33,24],[-77,-58]],[[41066,23090],[-28,5],[-39,-19],[-82,5],[-17,24],[-71,43],[-22,-43],[-44,52],[-12,-52],[-22,14],[-33,81],[-88,10],[6,77],[-56,-10],[-88,101],[-17,81],[-27,19],[-49,-29],[-56,106],[-60,33],[-56,72],[-54,57],[-12,48],[-60,20],[-39,-15],[-22,-67],[-22,-19],[-17,38]],[[39979,23722],[-49,67],[-66,43],[-28,57],[-44,53],[-34,-4],[-10,9],[-22,33],[-39,82],[-55,-29],[11,86],[-17,34],[6,71],[-39,63],[-11,95],[44,10],[33,-67],[45,38],[5,58],[-5,67],[-17,19],[6,43],[-44,71],[-11,63],[-6,120],[39,47],[-50,68],[-61,38],[-38,167],[5,63],[-38,4]],[[39489,25191],[-33,-9],[-78,24],[-50,28]],[[39328,25234],[-21,19],[-12,44],[-60,-15],[-11,43],[-22,10],[5,119],[-27,67],[-61,53],[-50,29],[-27,-10],[-55,19]],[[39042,25670],[33,57],[-33,43],[5,58],[-22,81],[6,101],[-44,38],[-61,14],[-17,-33],[-33,19],[-16,57],[16,34],[-33,81],[5,58]],[[38848,26278],[45,38],[-11,66],[22,63],[66,24],[39,48],[49,38],[39,10],[44,38],[17,-81],[33,-5],[22,19],[49,-5],[22,24],[56,148],[21,15],[95,-15],[33,19],[49,5],[50,96],[105,82],[99,52],[16,29],[50,5],[0,43]],[[39858,27034],[6,24],[-17,95],[17,48],[44,24],[-22,48],[60,29],[-22,52],[12,24],[-34,125],[-22,57],[-6,96],[23,86],[-72,14],[-22,24],[33,34],[88,33],[33,0],[127,58],[39,-53],[49,19],[33,-29],[22,48],[0,38],[-49,39],[105,383],[5,62],[28,0],[93,-52],[133,-5],[27,-39],[56,58],[49,14],[17,43],[-23,182],[17,81],[33,58],[33,0],[78,28],[27,48],[0,67],[22,43],[67,0]],[[40945,28938],[77,19]],[[41022,28957],[11,-43],[-22,-33],[50,-48],[-12,-43],[83,-48],[5,-43],[72,-62],[67,9],[49,-57],[27,15],[56,-63],[22,-91],[38,-86],[23,-14],[22,-120],[-17,-72],[17,-62],[-50,-86],[-5,-57],[33,-87],[27,5],[39,-29],[171,-28],[54,4],[133,-33],[33,-52],[50,-20],[82,-81],[50,-24],[45,5],[0,-67],[38,-53],[38,-129],[0,-29],[72,-95],[11,-58],[127,19],[231,-43],[117,-19],[93,29],[105,-24],[138,-24],[44,-77],[127,-47],[44,-10],[99,-72],[116,33],[0,-57],[89,-15],[22,34],[99,72],[127,77],[165,38],[89,9],[55,-9],[115,14],[144,86],[38,58],[55,100],[73,34],[71,96],[-66,104],[-17,63],[17,24],[16,86],[44,67],[78,0],[27,-43],[72,-29],[82,-14],[78,62],[49,62],[23,53],[55,-5],[77,10],[39,14],[87,91],[0,48],[50,91],[33,24],[56,-10],[33,10],[11,57],[33,-19],[99,53],[66,-5],[17,19],[71,-43],[61,0],[22,19],[6,48],[-28,81],[-28,29],[-76,120],[-39,19],[-44,62],[-50,14],[-61,-14],[-60,-86],[-44,38],[-50,20],[-83,-5],[-49,-48],[-45,53],[-11,71],[39,28],[5,92],[23,33],[110,311]],[[45445,29139],[82,-52],[39,-5],[61,-29],[88,91],[44,33],[77,29],[17,58],[-28,38],[44,81],[6,43],[88,201],[94,106],[11,62],[-17,29],[0,71],[-93,43],[104,125],[39,28],[66,10],[143,48],[28,-10],[122,29],[66,-14],[82,-43],[28,-34],[67,-14],[27,9],[88,-47],[61,-82],[-6,-33],[50,-72],[27,-119],[22,-39],[6,-62],[17,-15],[16,-109],[44,-77],[22,-57],[6,-91],[33,-24],[-16,-91],[33,-57],[43,-29],[122,4],[5,-33],[78,-29],[27,10],[28,-29],[77,-110],[55,-5],[0,-72],[39,-72],[-11,-90],[27,-48],[6,-39],[55,5],[72,-9],[110,9],[33,63],[66,43],[50,0],[55,47],[72,29],[44,-14],[16,-34],[-16,-62],[27,-72],[-44,-77],[-38,-24],[-6,-61],[-16,-43],[-17,-101],[-17,-29],[6,-48],[-22,-38],[-22,-77],[-16,-9],[-11,-76],[-39,-29],[-11,-101],[-39,-19],[-132,48],[-22,24],[-61,-96],[-66,-24],[39,-225],[-12,-19],[-5,-81],[17,-91],[-34,-134],[-93,-39],[22,-38],[-11,-24]],[[27096,16821],[0,-14]],[[27096,16807],[0,14]],[[27156,18018],[-5,-101],[22,-91],[11,-158],[-11,-34],[-33,-52],[-22,-120],[-11,-95],[-33,-86],[0,-101],[22,-96],[22,-124],[22,-5],[5,-52],[-5,-77],[-33,-5]],[[27107,16821],[-22,19],[-28,-19],[-110,34],[-127,-34],[-105,-14],[-49,-19],[-144,-96],[-61,-48],[-26,-33],[-23,-5]],[[26412,16606],[-5,129],[5,72],[23,67],[0,91],[-6,52],[-56,34],[-11,72],[-72,33],[-38,43],[44,82],[6,76],[-33,134]],[[26269,17491],[44,5],[16,48],[-5,29],[22,61],[-39,49],[0,52],[28,15],[61,-24],[-6,62],[-38,38],[5,57],[22,25],[-22,33],[5,63],[-38,19],[0,105],[-6,29],[28,52]],[[26346,18209],[27,19],[23,53],[22,0],[22,-48],[60,-29],[6,53],[38,0],[6,86],[17,-19],[44,38],[22,-143],[22,9],[11,34],[33,19],[27,0]],[[30047,16031],[-17,-66],[11,-63],[-22,-9],[-38,43],[-61,5],[-28,28],[-38,-9],[-50,53],[-44,-10],[-155,0]],[[29605,16003],[-11,23],[-82,0],[-50,15],[-61,-5],[-94,5],[0,-38]],[[29307,16003],[-209,0],[-27,38]],[[29071,16041],[21,215],[-11,63],[-66,167],[-66,48],[-17,96],[-22,38],[-16,-19],[-17,29],[6,38]],[[28883,16716],[0,24],[33,100],[22,158],[11,39],[55,110],[44,62],[23,62],[55,62],[5,-28],[44,0],[11,43],[28,-15],[44,-81],[22,-72],[27,15],[34,57],[0,43],[44,77],[-12,38],[39,86],[0,38],[22,63],[11,90],[28,87],[49,43],[28,187],[44,38],[11,129],[22,38],[17,120],[55,148],[39,29],[55,57],[11,24],[-5,53],[11,115],[-17,43],[-50,23],[-16,192]],[[29727,19013],[60,-19],[12,-53],[32,-47],[17,-106],[33,-115],[6,-86],[-12,-48],[-5,-71],[17,-125],[22,-81],[38,-77],[6,-33],[-55,5],[-56,-10],[-88,10],[-44,-77],[6,-29],[44,-86],[5,-24],[66,-100],[17,-10],[39,-67],[22,-62],[27,-129],[17,-19],[-11,-73]],[[32297,16366],[5,-19],[-22,-105],[17,-52],[-22,-106],[38,-14],[50,-72],[-5,-29],[-50,-100],[-66,-120],[-28,-14],[-22,-62],[-39,-48],[0,-81],[-39,-168],[-16,-278],[0,-76]],[[32098,15022],[-33,-34],[-33,-81],[6,-86],[-45,-77],[6,-77],[17,-9]],[[32076,14180],[-16,-125],[38,-162],[6,-77],[-17,-53],[6,-95],[27,-86],[72,-96],[33,-101],[55,-239]],[[32280,13146],[-105,-29],[-176,-48],[6,-29],[-12,-57],[-27,-62],[-44,-57],[22,-77],[11,-91],[0,-158],[5,-38],[-16,-72],[-28,-186],[17,-92],[44,-66],[44,-82],[66,-19],[0,43],[50,29],[0,-340],[-28,5],[-5,33],[-50,-33],[-38,0],[-23,71],[-33,73],[-16,4],[-11,57],[-17,39],[-77,57],[-33,5],[-16,19],[-17,67],[-28,48],[-11,48],[-22,-19],[-22,-77],[-28,-9],[-121,33],[-44,33],[-17,-4],[-27,38],[-11,58],[0,53],[-94,-39],[-22,-24],[-28,19],[12,34],[-17,52],[-28,10],[-22,43]],[[29572,13787],[-44,0],[-39,-38],[-16,5],[-33,67]],[[29572,14127],[50,-52],[38,28],[11,77],[34,-10],[66,53],[11,-34],[-11,-48],[5,-66],[50,-15],[83,158],[22,19],[27,58],[45,28],[38,129],[11,72],[0,283],[66,129],[22,91],[28,67],[50,38],[71,124],[-5,72],[27,144],[6,81],[-6,163],[28,115],[0,129],[38,177],[28,76],[17,106],[0,47]],[[31767,16817],[17,-44],[33,-48],[17,-52],[55,-67],[38,-10],[44,53],[34,-5],[44,-29],[38,63],[27,-10],[39,-86],[44,-77],[34,-28],[22,-43],[27,-29],[17,-39]],[[29412,14026],[-33,68],[-6,52],[-16,38],[-44,63],[0,19],[-39,62]],[[29274,14328],[17,62],[44,43],[28,-43],[22,-4],[0,47],[11,48],[-33,48],[10,53],[-21,38],[-6,138],[23,-14],[32,14],[17,-19],[60,24],[6,63],[-6,57],[23,19],[27,-29],[33,-105],[72,-24],[38,58],[28,-48],[28,-29],[16,33],[-5,39],[22,72],[16,14],[0,86],[11,48],[-11,119],[11,101],[-5,24],[-33,29],[-22,43],[-28,5],[-6,43],[6,105],[28,67],[22,5],[33,71],[-6,53],[-16,34],[-6,53],[-27,23],[-34,5],[-88,-48],[-16,82],[0,67],[16,105]],[[16645,18678],[-33,-29],[-67,-28],[-43,-129],[-50,-58],[-45,-134],[-27,-230],[-28,-62],[-16,-57],[22,-10],[22,19],[17,-38],[22,-5],[22,-134],[38,-67],[6,-82],[-17,-76],[0,-77],[11,-33],[28,-9],[22,-77],[27,-29],[45,10],[93,-10],[39,29],[71,-43],[28,0],[28,-67],[72,-153],[38,-5],[17,19],[55,-9],[88,9],[44,29],[44,-14],[16,-20],[6,-43],[-22,-52],[-16,-105],[-17,-19],[0,-68],[-11,-129],[11,-77],[0,-52],[12,-29],[16,-91],[16,-19],[28,-77],[-6,-23],[-77,-130],[44,-23],[61,-120],[-6,-20],[17,-62],[39,-224]],[[16854,14237],[-38,67],[-23,53],[-22,-19],[-32,23],[11,53],[54,139],[34,95],[-6,24],[-82,72],[-45,53],[-38,-29],[-33,-5],[-61,49],[-28,-49],[-66,-28],[-33,23],[-49,-14],[-34,34],[6,53],[-22,85],[-28,10],[-5,58],[-28,76],[-33,15],[-27,47],[-28,14],[-28,111],[-27,57],[-34,48],[-21,0],[-28,38],[-22,-14]],[[16038,15376],[-50,48],[-27,5],[-28,47],[-44,54],[-22,-10],[-5,-44],[-50,-4],[-55,33],[-44,10],[-11,67],[-28,24],[-6,33],[-22,-5],[-49,39],[-77,86],[-28,48]],[[15492,15807],[-28,47],[11,34],[28,29],[33,-24],[-11,81],[0,67],[28,48],[50,5],[21,19],[50,86],[-6,43],[22,10],[12,48],[38,96],[11,76],[-33,24],[-11,28],[0,67],[16,29],[6,53],[-11,134],[0,67],[-28,57],[33,38],[12,29],[-12,63],[-21,47],[11,29],[5,81],[-44,82],[-22,72],[-16,29]],[[15636,17401],[10,57],[39,28],[38,44],[6,57],[17,15],[-33,128],[-11,20],[16,43]],[[15718,17793],[17,-43],[44,-67],[16,-53],[17,-19],[0,86],[-22,86],[33,19],[61,81],[22,77],[38,48],[39,5],[-6,77],[11,71],[-11,58],[17,33],[16,77],[94,139],[61,-34],[-11,-33],[22,-29],[28,96],[0,43],[22,19],[38,-14],[77,4],[89,115],[72,48],[16,48],[0,33],[66,67],[33,0],[39,-24],[16,-47],[0,-34],[-27,-48]],[[34227,12127],[-33,38],[0,91],[22,5],[0,-58],[11,-76]],[[23980,19544],[-11,-28],[-22,4],[-22,43],[6,68],[49,-87]],[[24057,19884],[39,-19],[-22,-53],[-17,72]],[[23716,20075],[-17,-4],[-11,48],[33,28],[22,-28],[-27,-44]],[[14924,18046],[-61,-33],[0,-110],[33,-43],[-27,-43],[11,-29],[0,-53],[-28,-29],[23,-76]],[[14875,17630],[-23,62],[-16,14],[-6,68],[-33,33],[-5,-24],[21,-43],[-38,-5],[-33,44],[22,52],[-5,67],[-39,67],[-50,48],[-55,29],[-17,38],[-5,52],[-82,101],[16,-67],[38,-34],[0,-19],[-33,-67],[-33,62],[-44,29],[-27,62],[-6,72],[22,48],[6,48],[-39,48],[22,38]],[[14433,18453],[22,39],[110,-68],[28,29],[55,-19],[22,-53],[44,-14],[33,14],[12,34]],[[14759,18415],[27,-125],[50,-114],[16,-15],[39,-91],[33,-24]],[[14924,21353],[-44,-38],[-17,0],[-22,95],[17,44],[44,-15],[22,-86]],[[15034,21788],[39,-9],[50,9],[11,-28],[82,14],[17,-24],[44,-23],[28,4],[60,-57],[33,-62],[27,-29],[89,-10],[89,-71],[38,-58],[49,-38],[12,29],[83,-116],[44,-47],[27,0],[61,-38],[55,-10],[16,-29],[-22,-52],[17,-19],[116,-25],[55,-76],[44,-14],[17,-24],[-17,-44],[-61,-4],[-71,-43],[-66,-5],[-34,19],[-77,10],[-83,-15],[-33,-14],[-110,-10],[27,62],[72,101],[-22,53],[-17,9],[-99,10],[-21,14],[-56,82],[-5,67],[-17,62],[-28,29],[-55,-20],[-116,53],[-33,24],[-55,62],[-71,0],[-39,24],[-88,15],[-45,52],[50,19],[6,48],[-28,14],[-127,0],[-44,-47],[-16,-34],[-56,-57],[-60,-5],[-22,-62],[-33,-10],[-33,-34],[-6,73],[28,9],[-11,48],[17,62],[38,53],[121,81],[89,24],[49,28],[38,10],[39,-10]],[[32776,25072],[-16,9],[-33,-24],[-22,5],[-22,38],[-44,-5],[-33,-19],[-23,24]],[[32583,25100],[23,5],[11,58],[55,-15],[44,5],[132,62],[-77,-81],[5,-62]],[[32776,25072],[-43,-24],[-28,-48],[-33,-24],[-94,-19],[-44,33],[0,77],[22,28],[27,5]],[[30455,29053],[-33,-5],[-72,-67],[-11,-52],[-50,-48],[-38,-14],[-50,9],[-33,-72]],[[29688,28848],[-22,33],[-39,19],[-77,105],[-38,19],[-44,92],[21,38],[-49,62],[22,48],[33,33],[61,5],[11,19],[204,115],[66,-10]],[[29837,29426],[27,44],[45,-20],[11,-38],[61,-19],[49,-33],[55,-10],[-33,-43],[72,-91],[49,38],[23,38],[71,-62],[33,-48],[33,14],[83,-42],[0,-34],[39,-67]],[[29749,30278],[0,-24]],[[29749,30254],[0,24]],[[29671,30398],[-82,-19],[0,62],[22,43],[55,-48],[5,-38]],[[29754,30216],[22,-125],[-5,-47],[-39,-62],[61,-63],[17,-33],[-11,-48],[32,-77],[-21,-67],[16,-86],[28,-14],[16,-62],[-6,-43],[-27,-63]],[[28739,28527],[-16,19],[11,110],[39,158],[44,62],[0,29],[-83,24],[-23,23],[-104,0],[-49,82],[-17,5]],[[28541,29039],[22,96],[-55,47],[0,39]],[[28486,29393],[10,43],[-27,29],[39,38],[11,95],[-39,87],[33,24],[33,-15],[56,20],[-6,43],[44,38],[0,67],[-38,5],[0,47],[44,0],[28,101],[0,76]],[[28674,30091],[-23,58],[23,48],[120,10],[28,-44],[50,39],[17,52],[43,-9],[0,119],[-38,39],[49,38],[-43,67],[0,33]],[[28900,30541],[99,-28],[66,4]],[[29065,30517],[22,-9],[50,-105],[21,9],[56,-33],[44,14],[0,-53],[-33,-29],[94,-37],[60,57],[44,5],[72,86],[72,-19],[17,-34],[49,-38],[38,0],[22,-81],[61,-34]],[[34144,18439],[-22,0],[-33,24],[-39,-24],[-54,-19],[-23,14],[-5,58],[0,109],[5,39],[23,33],[66,167]],[[34062,18840],[11,20],[32,-43],[23,53],[49,38]],[[34177,18908],[28,-68],[16,-76],[-10,-43],[-45,-52],[-38,-29],[-28,-48],[66,9],[28,-24]],[[34194,18577],[-50,-138]],[[18183,19612],[-16,-10],[-17,86],[28,15],[11,-58],[-6,-33]],[[29313,30536],[44,-14],[16,-43],[-49,-14],[-61,38],[0,48],[50,-15]],[[29881,30570],[-61,24],[11,53],[56,-38],[-6,-39]],[[29203,30733],[27,-77],[-5,-52],[-28,-24],[-55,9],[-44,24],[-17,96],[67,24],[55,0]],[[29495,30781],[-55,-86],[33,-48],[-50,-29],[-5,-101],[-33,-14],[-28,115],[-60,5],[-17,33],[-6,77],[56,96],[33,-10],[77,57],[49,-9],[6,-86]],[[28900,30541],[-11,139],[-72,53],[11,105],[-11,43],[5,129],[61,-14],[-44,82],[50,71],[126,15],[83,114],[77,19],[11,-57],[-6,-57],[-32,-67],[0,-101],[27,-28],[55,0],[6,-62],[-39,-30],[-44,5],[-22,-96],[-94,-100],[17,-62],[-28,-43],[39,-82]],[[16578,20377],[0,86],[-16,19],[0,53],[22,67],[-11,19],[22,76],[-17,25],[6,57],[-11,62]],[[16573,20841],[16,38],[39,10],[22,-14],[50,19],[22,-5],[28,-34],[33,0],[33,-38],[38,10],[11,-53],[22,-48],[61,10],[6,-39],[-44,5],[-6,-29],[39,-4],[71,-29],[33,-24],[55,-81],[-16,-53],[-28,-29],[-49,29],[-89,0],[-38,10],[-39,-19],[-22,-34],[-50,-10],[-38,34],[-44,-19],[-5,-43],[-45,-120],[-44,24],[-17,72]],[[29026,23736],[-27,-28],[49,-134],[28,-144],[0,-153],[11,-210],[-22,-125],[11,-115],[11,-19],[-6,-81],[-55,-62],[-11,-72],[89,-206],[16,-148],[33,-72],[17,-15],[38,20],[127,-63],[55,-172],[11,-48]],[[29401,21889],[-154,-167],[-160,-168],[-160,-172],[-210,-220],[-115,-172],[-138,-216],[-11,-9],[-116,-43],[-121,-39]],[[28216,20683],[-117,-43],[-33,5],[-21,38],[21,63],[-5,114],[-49,48],[-61,19],[-39,63],[-61,9],[-21,24],[-12,48],[-71,72],[0,81],[-122,144],[-55,57],[-149,177],[-149,177],[-149,177],[-49,62],[-105,115],[-88,110],[-50,53]],[[26831,22296],[-72,76],[-33,44],[-143,143],[-111,125],[-176,181],[-55,62]],[[26241,22927],[0,101]],[[26241,23028],[0,292],[61,76],[44,39],[55,67],[34,14],[49,58],[71,-19],[17,66],[44,0],[71,19],[50,24],[39,58],[33,82],[99,66],[50,58],[44,10],[6,42],[-23,15],[6,77],[-11,19],[11,52],[50,0],[66,39],[22,66],[55,15],[111,-10],[82,0],[0,48],[28,53],[-6,23],[-38,44],[-22,48],[-6,53],[-22,66],[11,72],[-16,57],[5,111],[-16,52],[11,34],[-17,33],[6,39],[-61,76],[-6,19]],[[27228,25081],[34,-5],[54,29],[50,48],[39,62],[99,77],[61,-10],[27,62],[55,58],[116,71],[166,24],[38,-5],[61,54],[83,4],[38,24],[149,0],[17,-5],[49,-53],[39,0],[44,34],[83,38],[33,39],[66,-43],[50,14],[27,24],[78,-57],[99,23]],[[28883,25588],[-55,-124],[22,-33],[-17,-159],[11,-38],[0,-71],[12,-53],[-12,-34],[-16,-119],[-55,-67],[-17,-43],[-28,-34],[-11,-43],[6,-72],[38,-134],[45,-38],[22,-43],[16,-62],[0,-44],[56,-67],[55,-52],[16,-134],[22,-139],[33,-249]],[[13733,15194],[-33,24],[11,43],[33,10],[11,-48],[-22,-29]],[[13567,15281],[-27,4],[-11,34],[33,19],[5,-57]],[[13694,15314],[-33,0],[5,48],[28,-48]],[[13589,15414],[17,-71],[27,-53],[0,-43],[28,-48],[-17,-53],[-32,-19],[-39,0],[-17,43],[23,43],[27,19],[-11,72],[-22,24],[-6,72],[22,14]],[[16038,15376],[-28,-14],[6,-67],[28,-43],[-6,-39],[6,-72],[-28,0],[-22,-157],[-28,-53],[-49,-115],[-94,-115],[-28,-24],[-154,-90],[-50,-106],[-22,-19],[-11,-96],[-22,-57],[-16,-96],[0,-52],[-39,-53],[-22,-77],[-39,15],[-22,48],[-10,62],[-17,24],[-22,-10],[-56,53],[-44,-48],[-11,19],[22,53],[-22,9],[0,43],[34,5],[16,24],[-6,82],[-16,62]],[[15266,14472],[27,19],[33,62],[34,144],[-17,61],[-27,0],[-39,-76],[-33,0],[-34,62],[-21,14],[-22,44],[33,33],[0,67],[-11,53],[5,72],[-16,81],[11,28],[44,34],[11,77],[0,57],[22,58],[44,86],[-5,119],[5,67],[66,39],[22,24],[89,43],[5,67]],[[32815,24009],[66,-282],[34,-196]],[[32915,23531],[-23,-58],[-21,-138],[-23,-111],[-5,-71],[-34,-96],[-65,81],[-28,58],[-55,86],[-22,138],[-33,58],[-23,67],[-22,124],[-16,-14],[-17,-81],[45,-125],[-6,-53],[88,-215],[55,-86],[0,-81],[23,-72],[16,-19],[22,-173],[17,-23],[38,-148],[39,-92],[16,-66],[83,-269],[66,-143],[-22,-48],[11,-139],[22,-91],[28,-57],[50,-29],[27,-67],[66,-81],[6,-29]],[[33218,21468],[-149,0],[-204,0],[-199,0],[-281,0],[11,43],[-22,10],[-22,-53],[-138,0],[-232,0],[-237,0],[-116,0],[-231,0]],[[31398,21468],[0,249],[0,249],[0,430],[0,436],[0,306],[0,326],[-11,38],[-33,230],[27,72],[17,85],[-22,115],[0,39],[49,90]],[[31425,24133],[33,-42],[78,33],[88,-33],[121,-34],[45,-48],[44,-5],[21,-28],[83,-10],[83,-62],[33,9],[50,44],[49,57],[44,10],[28,52],[50,-14],[44,19],[27,33],[56,-38],[55,24],[-22,-67],[38,-19],[17,-38],[33,48],[33,-44],[22,-9],[66,29],[11,-24],[72,9],[38,15],[44,38]],[[32809,24038],[6,-29]],[[33719,19731],[-27,-20],[-6,49],[17,23],[16,-52]],[[34062,18840],[-22,58],[-44,58],[-28,86],[-61,86],[-38,62],[-44,105],[-45,34],[-49,57],[-50,0],[-55,29],[-50,-19],[-22,43],[-38,-43],[-61,-14],[-28,62],[-27,14],[-28,43],[-27,-110],[-17,-86],[-11,5],[-39,81],[-22,-14],[-17,-39],[-33,15],[-43,-20]],[[33163,19333],[0,82],[-11,110],[0,53],[22,62],[16,100],[33,158],[0,91],[11,48],[5,72],[62,0],[16,62],[39,48],[61,24],[66,125]],[[33483,20368],[49,-159],[33,-191],[11,-148],[17,-77],[16,-33],[11,-72],[23,-24],[10,-62],[22,67],[28,-34],[5,-53],[23,-38],[66,-33],[22,-43],[60,-34],[72,-172],[89,-110],[27,-105],[17,4],[33,-57],[11,-43],[44,-10],[5,-33]],[[25210,23167],[5,-77],[-27,-38],[-39,43],[16,72],[45,0]],[[25066,23229],[-10,-62],[-39,-43],[-28,81],[44,29],[33,-5]],[[25397,23171],[-5,10],[33,139],[28,-33],[-17,-91],[-39,-25]],[[24841,23258],[-28,77],[33,23],[11,-33],[-16,-67]],[[25469,23378],[-11,37],[50,25],[0,-39],[-39,-23]],[[27791,26134],[-16,43],[32,14],[11,-24],[-27,-33]],[[28050,26374],[49,-10],[-33,-101],[-27,-24],[-44,29],[-22,43],[-22,-24],[-17,38],[61,67],[60,34],[-5,-52]],[[28227,26387],[-66,34],[0,29],[55,-10],[11,-53]],[[27295,27369],[11,-25],[49,-19],[16,-52],[83,-38],[28,-34],[44,10],[39,-39],[38,10],[66,-10],[17,44],[83,-39],[22,-28]],[[27830,27120],[49,-39],[28,19],[55,-23],[61,33],[38,-10]],[[28061,27100],[-6,-47],[11,-86],[-38,-48],[-105,-82],[-33,-52],[-77,-24],[-83,-39],[-49,-62],[27,-29],[-44,-28],[-39,-81],[-49,-87],[-55,-133],[16,-130],[28,-47],[38,-34],[-38,-48],[-55,-43],[-67,-182],[11,-48],[-88,-9],[-50,-48],[-21,-43],[-23,-82],[-38,-52],[-39,24],[-50,-34],[-54,15],[-44,-15],[-62,10],[-82,-10],[-50,-57],[-38,0],[-39,-24],[-44,-96],[-22,-14],[-66,48],[-50,124],[-16,86],[-67,72],[-76,-9]],[[26435,25656],[-12,109],[6,39],[38,77],[28,14],[-50,110],[16,86],[28,39],[11,42],[-28,19],[-21,58],[-22,96],[66,9],[16,62],[-16,72],[33,39],[0,85],[-17,106],[77,91],[28,42],[-11,34],[-38,10],[-12,72],[-88,4],[-32,-33],[-78,14],[-39,-19],[6,53],[-11,33],[-61,-23],[-28,-29]],[[26224,26967],[-16,43],[16,90],[-5,58],[-16,38],[-50,58],[11,52],[50,43],[49,0],[44,29],[0,39],[39,33],[44,19],[33,-5],[33,-43],[122,-4],[99,19],[27,-15],[172,-48],[32,0],[66,25],[45,4],[82,-43],[28,24],[83,-34],[83,20]],[[31034,31566],[55,-5],[50,-34],[-83,-62],[-89,-29],[-43,29],[16,34],[94,67]],[[31083,31623],[-60,-38],[-23,48],[28,57],[50,-24],[5,-43]],[[31861,31800],[-38,-115],[-39,-48],[-11,-43],[17,-81],[-12,-43],[33,-96],[-44,-72],[-5,-38]],[[31762,31264],[-61,19],[-66,-19],[-39,19],[-44,67],[-33,5],[-77,53],[-28,5],[-116,-53]],[[31298,31360],[28,129],[-61,-24],[-55,29],[-33,57],[-16,96],[11,77],[88,23],[44,53],[77,15],[88,0],[11,28],[171,-19],[50,-29],[143,-14],[17,19]],[[34144,18439],[-39,-106],[23,-100],[55,-105],[33,-110],[39,-39],[27,-52],[33,-44],[133,-81],[215,-124],[105,-67],[154,0]],[[34922,17611],[-83,-139],[-71,-129],[-89,-144],[-121,-230],[-72,-152],[-33,-58],[-143,9],[-72,-28],[-61,-53],[-49,-96],[-122,-42],[-22,-49]],[[33984,16500],[-60,0],[-39,-9],[-22,14],[-49,77],[-116,-86],[-23,-29],[-32,-76],[-23,-34],[-116,29],[-21,14],[-78,10],[-77,95],[-105,115],[-127,15],[-49,95],[5,82],[-5,67],[-44,19],[-23,-14],[-5,38]],[[32975,16922],[-33,47],[-17,101],[-38,172],[-33,67],[-33,29],[-33,58],[-12,62],[-49,62],[-66,24],[-34,33],[0,20],[34,124],[28,14],[82,0],[22,39],[0,239]],[[32793,18013],[11,129],[22,72],[-5,96],[22,71],[22,24],[33,-38],[22,34],[5,115],[23,148],[22,38],[16,53],[55,143],[61,15],[5,100],[23,105],[11,15],[11,129],[11,71]],[[32010,34432],[-66,-28],[33,-44],[-44,-62],[33,-96],[99,-33],[72,-86],[22,-58],[-61,-62],[-72,-96],[94,-205],[33,-39],[28,-115],[-44,-28],[-28,-96],[28,-33],[-33,-29],[27,-52],[44,-10],[-11,-58],[17,-52],[66,-48],[0,-34],[-50,-76],[-33,-20],[67,-62],[115,-81],[56,-91],[-56,-110],[-93,-95],[-133,-164],[-71,-71],[-127,-106],[-94,-100]],[[31828,32092],[-50,-19],[-38,24],[-39,-24],[-116,-14],[-72,-39],[-71,-5],[-17,-19],[-88,-19],[-132,-43],[-83,5],[-44,62],[-33,-48],[-33,0],[16,91],[-49,10],[-127,57],[-11,101],[27,86],[12,81],[-34,91],[-22,24],[17,62],[-28,53],[-5,91],[77,81],[-17,48],[56,0],[65,29],[-10,33],[116,105],[38,25],[154,167],[44,82],[105,37],[17,149],[-116,76],[-66,15]],[[31271,33547],[-39,91],[-33,29],[0,62],[28,28],[16,72],[-55,96],[17,67],[-39,100],[28,44],[-133,124],[-121,34],[-83,47],[-127,96]],[[30730,34437],[78,9],[0,48],[77,5],[115,-134],[0,-19],[144,-19],[105,43],[144,-57],[60,76],[60,34],[0,66],[39,115],[88,77],[83,-5],[121,43],[78,-66],[110,-44],[33,-52],[-77,-82],[22,-43]],[[54881,10619],[17,-43],[28,-33],[10,-120],[-49,-14],[-28,-34],[-28,-5],[-77,34],[-22,19],[-11,43],[28,48],[-5,33],[33,48],[49,15],[39,24],[16,-15]],[[55141,10950],[-34,-77],[-33,-53],[6,-29],[44,63],[0,-44],[-44,-33],[-28,-5],[-33,29],[-27,-53],[-56,-5],[-10,67],[33,10],[11,29],[33,29],[44,14],[38,43],[61,20],[-5,-5]],[[18338,1220],[66,20],[22,-15],[50,24],[16,-19],[-99,-149],[-50,-4],[-16,-43],[-55,-14],[-39,38],[55,28],[55,48],[-5,86]],[[18553,1273],[55,-9],[39,-29],[44,10],[22,-39],[0,-53],[-50,-14],[-27,-29],[-56,-19],[6,-48],[-72,29],[6,-48],[-89,10],[12,57],[77,77],[0,43],[33,62]],[[36119,9523],[-39,-4],[-39,38],[-11,43],[11,43],[56,0],[27,-62],[-5,-58]],[[34492,11830],[-17,5],[0,86],[22,-29],[-5,-62]],[[18255,19401],[-39,-5],[-22,91],[12,19],[27,-33],[22,-72]],[[18134,19817],[-17,-10],[-10,91],[32,-9],[-5,-72]],[[18178,19879],[-33,0],[11,76],[22,-76]],[[29021,27206],[11,-72],[0,-115],[-23,-57],[0,-53],[-33,-95],[-44,37],[0,49],[-27,19],[0,77],[-22,47],[0,38],[22,53],[66,53],[50,19]],[[28459,29063],[32,-29],[50,5]],[[28646,28067],[-33,-33],[33,-86],[22,-29],[-11,-43],[-61,-58],[17,-43],[22,-4],[11,-48],[-28,-48],[22,-62],[61,-44],[38,10],[6,-33],[-28,-48],[0,-29]],[[28717,27469],[-6,-5]],[[28711,27464],[-43,-24],[-44,-62],[-22,-14],[-28,-53],[-66,-33],[-49,9],[-62,34],[-10,33],[-39,29],[-67,-19],[-109,48],[-100,-101],[-33,-76],[6,-91],[16,-44]],[[27295,27369],[49,43],[22,129],[11,177],[17,187],[16,110],[-11,52],[-5,106],[-39,9],[-60,43],[-39,81],[6,68],[-28,33],[11,29],[-61,9],[17,48],[-56,39],[-171,62],[-66,-5],[-16,38],[6,43],[-50,67],[0,48],[28,24],[71,24],[33,-5],[94,39],[39,-10],[43,-72],[39,29],[94,-5],[61,5],[-17,43],[-5,110],[-45,110],[0,24],[94,0],[17,-81],[99,-10],[50,-14],[49,57],[6,53],[66,43],[99,38],[44,67],[6,139],[11,38],[39,29],[93,29]],[[19204,16046],[33,38],[33,101],[0,95],[27,77],[-16,86],[-39,81],[-10,101],[-6,134],[33,105],[16,20]],[[19275,16884],[12,14],[10,71],[23,29],[60,-57],[28,-5],[61,-33],[16,-43],[50,-67],[27,-25],[56,-114],[21,14],[17,-144]],[[26555,32561],[-5,-38],[-55,0],[-23,52],[34,10],[49,-24]],[[29037,15692],[22,14],[12,-24],[236,0],[0,321]],[[29274,14328],[-27,67],[-44,77],[-50,105],[-88,134],[-22,43],[-11,58],[-23,38],[12,33],[-22,19],[-44,125],[5,24],[-22,62],[-16,96],[49,38],[22,62],[6,81],[-6,96],[28,-38],[50,-29],[0,38],[-39,29],[-33,86],[44,48],[-6,72]],[[26925,30106],[-39,-43],[-16,57],[55,-14]],[[26616,30316],[-66,-9],[0,33],[-61,63],[-38,-67],[-39,-10],[-44,24],[-44,72],[55,29],[-22,28],[66,38],[17,58],[27,19]],[[26467,30594],[39,24],[72,14],[55,-4],[38,-87],[44,-66],[-11,-77],[-54,-91],[-34,9]],[[26787,30690],[-33,10],[-11,38],[39,14],[5,-62]],[[26633,30824],[11,-67],[-44,24],[33,43]],[[26687,30939],[-65,-19],[11,100],[54,-43],[0,-38]],[[26627,31254],[11,-57],[61,-4],[-33,-58],[-22,38],[-44,0],[-17,33],[-50,39],[22,28],[72,5],[0,-24]],[[26622,31494],[-39,-76],[-39,-49],[-55,24],[-5,48],[132,91],[6,-38]],[[27096,31537],[-16,-53],[-122,-100],[22,-38],[0,-63],[67,29],[71,-5],[132,5],[50,-62],[-28,-34],[-16,-57],[-66,-144],[-28,-33],[-61,-14],[61,-39],[-77,-67],[16,-33],[72,19],[66,-34],[77,-91],[34,-148],[44,-105],[60,-29],[106,-120],[-23,-24],[33,-76],[-10,-29],[54,-86],[11,-48],[-49,-67],[38,-28],[67,47],[99,-24],[44,-38],[16,-81],[-33,-106],[-66,-81],[-22,5],[-11,-62],[-49,-15],[10,-33],[116,-10],[0,-52],[-55,-34],[-11,-34],[-116,-47],[-104,14],[-50,-14],[-50,23],[-71,-33],[-66,0],[-6,-33],[-77,5],[-56,28],[-76,-24],[-39,-110],[-94,34],[-83,-29],[-61,-67],[-55,53],[39,9],[116,148],[6,58],[38,10],[16,47],[50,10],[94,-10],[33,15],[44,91],[-38,-10],[-45,-38],[-44,5],[-50,47],[-98,43],[-56,-33],[-44,29],[0,62],[122,67],[38,33],[22,63],[-17,100],[-43,29],[16,34],[77,47],[72,10],[38,24],[0,43],[22,38],[-22,34],[22,28],[6,62],[-44,-14],[-38,48],[-28,72],[49,95],[-44,10],[-50,-38],[-93,-15],[-50,24],[-33,-24],[-22,43],[77,163],[-33,53],[6,100],[-61,-33],[-22,-43],[-22,-105],[-34,14],[23,76],[0,91],[33,125],[-72,14],[-27,57],[49,25],[28,105],[-44,57],[33,120],[66,9],[-33,39],[11,52],[49,5],[-10,72],[55,-5],[253,39],[-5,-34]],[[27371,32092],[34,-43],[-17,-72],[-49,33],[32,82]],[[34227,26737],[-39,24],[-44,76],[-33,34],[-33,-43],[-44,14],[-55,-14],[-50,23]],[[33929,26851],[39,82],[0,43],[-17,48],[-27,139],[-11,24],[-44,24],[-44,67],[-56,19],[-77,76]],[[33692,27373],[27,44],[78,-10],[44,-34],[66,-24],[33,-28],[72,-10],[55,10],[55,-15],[50,-52],[72,-38],[38,-34],[0,-43],[61,24],[44,28],[55,-4],[55,-24],[17,-34],[60,-14],[-16,-67],[44,-43],[83,-53]],[[27096,16821],[11,0]],[[27560,18472],[10,-62],[-16,-53],[71,-129],[0,-110],[-16,-95],[44,-24],[-11,-82],[5,-57],[-16,-48],[11,-43],[22,-24],[11,-48],[-16,-48],[5,-115],[-17,-48],[6,-43],[16,-9],[-5,-72],[-11,-34],[28,-143],[38,-38],[33,-63]],[[27752,17084],[-22,-23],[-16,-53],[-28,-15],[-77,0],[-61,-52],[-33,-19],[-16,-29],[-34,-19],[-16,-29],[-44,-9],[-89,-58],[-16,-29],[-38,-28],[-39,28],[-72,39],[-55,19]],[[26269,17491],[-28,34],[-33,-115],[-33,-14],[-22,43],[-33,9],[17,82],[-23,129],[0,47],[-39,53],[-49,-29],[-33,15]],[[25993,17745],[-17,0],[-21,-48],[-23,24],[28,72],[-17,57],[0,53],[-22,19],[11,52],[-27,53],[-11,43],[-50,91],[-99,0],[-33,-33],[-22,14],[-33,-19],[-39,-134],[-33,-29],[-6,-33],[-22,-29],[-22,5]],[[25535,17903],[0,43],[-22,58],[-33,57],[-11,62],[-39,29],[-11,47],[-22,0],[-38,34],[-28,81],[-33,115],[-33,-9]],[[25265,18420],[17,38],[33,115],[44,19],[27,29],[44,0],[39,19],[0,62],[-33,62],[33,29],[6,52],[-6,53]],[[25469,18898],[99,-9],[66,-68],[56,-19],[16,15],[94,14],[27,-5]],[[25827,18826],[-16,-66],[28,-44],[16,5],[28,48],[22,-14],[22,-63],[16,5],[23,53],[32,24],[67,-48],[72,57],[10,67],[39,-24],[33,-134],[0,-67],[22,-43],[44,-43],[-44,-91],[33,5],[22,-29],[0,-91],[11,-47],[39,-34],[0,-43]],[[25033,19152],[160,0],[39,58],[50,-5],[93,-82],[28,15],[44,-15],[0,-43],[-61,-24],[-66,29],[-49,48],[-23,9],[-22,-43],[-77,-19],[-6,-48],[-121,0],[-22,-24]],[[25000,19008],[-6,77],[23,33],[16,-43],[17,10],[-17,67]],[[25011,18812],[28,0],[60,28],[44,-4],[39,14],[61,53],[127,-5],[99,0]],[[25265,18420],[-22,28],[-6,34],[-27,15],[-11,57],[11,52],[-17,34],[11,57],[-55,-48],[-22,5],[0,48],[-28,-10],[-33,34],[-16,43],[-39,43]],[[29037,15692],[-28,29],[6,43],[33,86],[23,86],[0,105]],[[28910,16443],[33,-14],[-38,-134],[-39,9],[0,53],[17,9],[11,53],[16,24]],[[31221,25201],[50,19],[16,-62],[28,-5],[44,19],[39,-4],[16,-20],[61,-9],[38,9],[0,-57],[45,23],[38,-19],[-16,-38],[-55,5],[-155,-29],[-11,39],[-44,23],[-138,39],[5,67],[39,0]],[[31834,25311],[-17,5],[0,62],[27,48],[50,24],[-22,-101],[-38,-38]],[[31486,25598],[-33,24],[27,38],[6,-62]],[[30730,25985],[22,-85],[-38,9],[-11,72],[27,4]],[[31569,25943],[-39,76],[39,10],[11,-67],[-11,-19]],[[31155,26144],[17,-39],[55,-33],[33,-5],[17,-38],[10,-86],[50,-29],[-11,-43],[-49,43],[-23,71],[-44,5],[-22,44],[-55,67],[-33,19],[16,38],[39,-14]],[[31619,26249],[27,-82],[-33,-19],[-33,15],[-50,43],[11,28],[39,24],[39,-9]],[[31469,26426],[-16,-48],[-44,14],[0,39],[60,-5]],[[31365,26603],[-39,4],[17,44],[22,-48]],[[30780,26665],[94,5],[33,24],[22,43],[50,15],[38,-10],[33,14],[28,43]],[[31602,26905],[38,-34],[11,-53],[-49,-43],[6,-67],[-50,-77]],[[31558,26631],[-28,34],[-55,10],[-61,33],[-44,-38],[-49,24],[-61,-63],[-50,5],[17,-90],[-22,-34],[38,-48],[-22,-24],[-27,53],[-55,0],[-61,48],[-11,53],[-28,-25],[-11,-129],[39,-62],[22,-67],[22,-19],[28,-58],[-17,-19],[-27,34],[-28,-20],[22,-66],[-28,-62],[72,-39],[17,-38],[32,-10],[17,-38],[50,-33],[5,-144],[-11,-9],[-61,95],[-60,-14],[0,-96],[33,-10],[11,-38],[-50,-29],[-5,29],[-61,29],[56,-191],[-17,-92],[-28,73],[-27,0],[-34,-39],[-49,105],[-16,-9],[-11,-72],[-50,96],[0,33],[22,29],[-22,67],[-39,34],[-27,66],[27,34],[11,43],[44,-5],[23,43],[22,0],[44,-38],[44,-19],[38,-38],[61,42],[-66,44],[-56,23],[-27,-9],[-38,19],[-78,-24],[-55,14],[-17,77],[-16,34],[28,29],[11,38],[-56,-5],[-43,67],[-28,19],[-16,62],[-28,44]],[[19755,34576],[-33,0],[-17,86],[67,-28],[-17,-58]],[[19490,34686],[105,-38],[23,-58],[-28,-29],[-226,-67],[-94,44],[55,38],[-104,9],[-61,39],[38,67],[-22,71],[66,24],[155,-24],[93,-76]],[[23677,34954],[0,-72],[-61,-14],[-61,-44],[-60,29],[-199,-29],[-22,20],[49,52],[0,53],[172,-5],[121,43],[61,-33]],[[19143,35470],[-77,-62],[-72,58],[149,4]],[[24813,36193],[16,-57],[61,-15],[-11,-43],[-171,0],[-33,19],[5,72],[133,24]],[[24724,36365],[-77,111],[55,57],[22,-168]],[[24873,37409],[-66,-29],[-155,14],[6,48],[237,24],[-22,-57]],[[20698,38031],[-292,72],[-77,86],[132,9],[155,-29],[99,-52],[-17,-86]],[[22982,38437],[226,-33],[386,-38],[-248,-29],[88,-33],[287,24],[99,-77],[298,-24],[132,-29],[11,-38],[-231,-62],[-116,-9],[-877,-34],[5,-62],[265,28],[409,-14],[132,-82],[121,19],[49,63],[248,24],[67,-38],[0,-68],[-149,-186],[210,81],[110,67],[430,-33],[143,86],[111,24],[198,-5],[282,-38],[154,-57],[-314,-120],[-155,-19],[-6,-58],[-347,-52],[127,-39],[-160,-67],[-165,-4],[-210,23],[-111,-67],[28,-71],[105,-19],[-22,-77],[71,-53],[-115,-43],[-50,-62],[-165,-48],[28,-29],[-67,-134],[-55,-76],[182,29],[166,-49],[-182,-28],[32,-48],[177,-62],[149,0],[6,-57],[-34,-63],[-237,39],[-137,-10],[-100,-57],[-88,33],[-66,-33],[110,-29],[61,-86],[94,9],[121,-24],[22,-57],[61,-58],[27,-138],[-66,-39],[-105,44],[-66,-44],[22,-71],[121,23],[67,-95],[38,-24],[0,-67],[-209,-48],[-72,-5],[-127,38],[-49,-62],[192,-23],[105,-34],[-27,-91],[-155,-14],[-126,-48],[-95,23],[-120,53],[-62,63],[-137,-101],[143,5],[254,-120],[66,-19],[-5,-144],[-33,-14],[0,-62],[-276,105],[-45,53],[-38,96],[-309,-87],[28,-14],[226,63],[33,-10],[16,-115],[166,-86],[165,-63],[77,-62],[-77,-48],[116,-9],[11,-168],[22,-95],[-61,-20],[-215,0],[-99,58],[-61,134],[-231,119],[33,-85],[-55,-48],[-105,-39],[-182,14],[-16,-66],[-83,-77],[83,-24],[193,24],[93,-67],[94,34],[121,-19],[166,-44],[210,-5],[-23,-38],[-94,-24],[6,-23],[-187,-58],[-11,-43],[-89,-43],[-110,-72],[-16,-38],[-100,-53],[-71,-9],[-160,-48],[-39,0],[-171,-53],[-99,5],[-50,-34],[-99,-33],[-89,14],[-110,72],[-33,-48],[33,-62],[-149,-91],[-72,-134],[-77,-120],[-60,-38],[-22,-43],[-83,-52],[-88,19],[16,-48],[-110,-86],[-88,-15],[-55,5],[-17,-38],[-83,-5],[22,96],[78,91],[-72,-15],[-33,-33],[-33,-120],[-66,-24],[-205,-19],[61,-57],[-55,-58],[-50,-24],[-127,15],[17,-63],[50,10],[71,-119],[-94,-73],[28,-23],[-5,-57],[16,-54],[-39,-52],[-38,-5],[-11,-67],[-143,-162],[-17,-34],[-22,-115],[27,-81],[-33,-48],[-43,-172],[-12,-82],[-55,-67],[-16,-52],[5,-72],[-28,-39],[-44,5],[-49,-33],[-22,28],[-50,-9],[-11,33],[-55,10],[-83,43],[11,67],[-116,48],[-16,43],[22,86],[-89,-33],[-44,-44],[-55,-9],[-33,19],[-55,-5],[-33,-29],[-33,24],[61,58],[-83,-5],[-16,63],[-67,14],[-16,67],[-56,100],[-33,29],[11,67],[-82,33],[-39,34],[0,96],[-72,72],[-104,153],[5,72],[-16,28],[148,43],[-21,14],[-127,-33],[-22,29],[71,100],[-27,15],[-66,-106],[-39,53],[0,72],[-22,129],[-33,14],[-17,72],[-28,34],[-71,0],[-6,52],[23,53],[-78,53],[-5,71],[33,62],[61,48],[-83,34],[-50,53],[50,196],[83,105],[148,-43],[72,-5],[61,76],[-39,20],[-55,-43],[-88,-5],[-61,24],[-94,-5],[56,86],[65,29],[150,-48],[76,15],[-16,43],[22,105],[105,0],[-22,33],[-83,-9],[56,139],[60,19],[-27,38],[-105,33],[-44,-19],[-133,29],[-104,62],[-150,29],[-82,76],[33,29],[72,5],[220,-34],[138,-71],[33,43],[6,105],[-17,43],[-105,0],[-55,20],[-88,-5],[-16,38],[54,52],[-110,39],[50,33],[-50,24],[-83,-52],[6,-58],[-132,-24],[-78,15],[-38,37],[5,58],[39,96],[-56,29],[56,38],[89,96],[0,48],[-56,38],[-94,24],[61,43],[-22,57],[-99,24],[28,96],[-50,62],[-72,24],[6,67],[66,19],[-89,39],[-39,47],[-115,53],[-121,96],[55,33],[-39,53],[-414,129],[-137,24],[-100,0],[-104,24],[-61,-34],[-72,29],[-176,-52],[-67,33],[-104,-29],[-39,-48],[-232,34],[-159,67],[-6,29],[116,43],[-237,71],[-83,-5],[-61,53],[83,48],[248,0],[61,39],[176,13],[111,-13],[61,33],[-56,62],[-198,-48],[-89,24],[-99,-38],[-121,24],[-94,67],[-121,10],[-105,28],[-110,63],[60,95],[138,38],[94,0],[138,39],[154,19],[-5,24],[253,52],[215,0],[105,86],[72,153],[-331,24],[-39,39],[94,86],[149,43],[144,77],[193,14],[65,52],[243,-23],[50,77],[-17,95],[116,48],[419,67],[331,24],[155,28],[221,-67],[49,58],[287,-120],[193,0],[-116,62],[-66,101],[303,-19],[342,-86],[204,-72],[116,5],[-5,191],[-293,110],[166,19],[336,67],[293,-43],[93,48],[315,0],[137,62],[596,5],[133,24],[463,-15]],[[14053,19740],[-67,-100],[-44,-58],[-33,-28],[-6,-38],[12,-67],[-33,-67]],[[13882,19382],[-33,-10],[5,-39],[-33,-47],[-27,-19],[-28,-48],[5,-29]],[[13771,19190],[-60,48],[-23,9],[-82,-4],[-72,52],[-94,120]],[[13440,19415],[11,24],[0,91],[17,33],[-22,44],[16,71],[55,158],[199,0],[6,77],[-28,33],[-16,67],[-66,72],[-28,62],[49,15],[0,153],[122,0],[160,0]],[[13953,19788],[45,-38],[11,24],[44,-34]],[[18266,16840],[-99,197],[11,38],[28,43],[0,67],[-12,38],[12,29],[38,24],[28,-5],[50,48],[0,63],[-34,-5],[0,47],[-16,48],[27,86],[23,5],[32,48],[22,15],[6,38],[22,33],[-28,67]],[[18376,17764],[28,-48],[27,-5],[73,-81],[60,-91],[28,-53],[21,-62],[0,-76],[-16,-58],[44,15],[50,-29],[55,-91],[11,-33],[50,-44],[5,-81],[-5,-91]],[[18807,16936],[-17,-57],[17,-43],[-17,-48],[-61,-5],[-33,-48],[12,-67],[-28,-110],[0,-48],[22,-43],[11,-48],[28,-43],[0,-33],[54,-15],[0,-48],[12,-86],[16,-28],[17,-67],[44,-130],[33,-28]],[[45076,21621],[0,-72],[-50,19],[11,44]],[[14830,19539],[-38,5],[-66,-62],[-33,0],[-33,-28],[-39,-15],[-50,48],[-28,-33],[-22,-68],[0,-28],[-27,-29],[-66,-105],[-39,57],[-44,-81],[-45,5],[-21,-10],[5,-129],[-27,-15],[-6,-47],[-16,-15],[-44,-4]],[[14191,18985],[-23,100],[-49,14]],[[14119,19099],[16,115],[-44,20],[-22,28],[-49,-38],[-6,33],[-55,43],[-39,67],[-38,15]],[[14053,19740],[16,-5],[39,48],[39,10],[21,-33],[33,9],[56,-19],[22,10],[60,-5],[28,28],[61,34],[50,-29],[49,5],[27,19],[50,-29],[61,-14],[44,-86],[5,-33],[28,-48],[22,14],[33,-9],[33,-68]],[[30394,27139],[11,-39]],[[30405,27100],[-105,101],[-22,29]],[[29837,27804],[-55,29],[22,38],[33,-67]],[[30466,28067],[0,-48],[17,-100],[38,-33],[-33,-39],[11,-43],[-16,-29]],[[30262,27240],[-105,129],[-77,38],[-61,-5],[-5,38],[-72,68],[-55,95],[22,39],[-45,57],[-16,62],[0,72],[-49,57],[-34,15],[-55,-139],[-17,0],[-33,71],[-22,106],[11,10]],[[29649,27953],[44,-25],[89,20],[22,42],[38,-52],[78,0],[-11,72],[60,38],[-5,91],[93,48],[12,48],[33,-10]],[[30102,28225],[33,-23],[99,-130],[33,-10],[33,-33],[94,-10],[33,39],[39,9]],[[16419,20583],[-6,-19],[-39,24],[-11,47],[56,-52]],[[16578,20377],[-43,52],[-72,0],[-56,-19],[-77,29],[-55,-19],[-22,-43],[-49,67],[-34,19],[-11,29],[17,48],[44,4],[78,-33],[121,-24],[27,33],[33,0],[11,34],[-22,19],[-49,91],[16,101],[-55,48],[-39,4],[-16,48],[27,24],[55,9],[39,-4],[61,-43],[66,-10]],[[31072,28623],[-27,-44],[-66,-24],[-39,-52],[-33,-105],[-22,-34],[-22,-86],[-28,-24],[-27,-91],[-56,-9],[-16,-29],[-66,-10]],[[30670,28115],[-11,10],[-100,5],[-44,-49],[-49,-14]],[[30102,28225],[-39,96],[-27,5]],[[30196,28637],[22,0],[71,-62],[61,-5],[88,9],[6,44],[22,28],[88,15],[22,33],[50,-24],[60,43],[23,58],[21,14],[88,-14],[56,0],[33,-48],[55,19]],[[30962,28747],[66,-72],[33,-9],[11,-43]],[[46405,12399],[-17,39],[33,19],[50,62],[5,-48],[-33,-43],[-38,-29]],[[45952,12820],[34,-33],[5,-29],[28,-9],[55,-87],[5,-23],[-22,-48],[-38,-24],[-61,48],[-17,43],[-49,53],[-39,0],[-49,28],[-12,43],[12,24],[38,19],[50,5],[60,-10]],[[46570,12830],[38,-24],[23,34],[0,33]],[[46631,12873],[22,10],[54,57]],[[46707,12940],[28,-14],[0,-53],[-22,-29],[17,-62]],[[46730,12782],[-39,-66],[-16,-44],[-44,-62],[-39,-10],[-33,-33],[-33,-14],[-22,38],[16,38],[-16,29],[16,96],[50,76]],[[45869,12998],[-5,76],[22,-24],[-17,-52]],[[45439,13031],[-22,-57],[-22,-29],[-77,29],[33,24],[0,81],[33,57],[17,10],[38,-24],[11,-29],[-11,-62]],[[46554,13127],[-23,-10],[-33,-72],[-22,-5],[-16,39],[71,72],[23,-24]],[[48848,13093],[-50,5],[16,48],[17,9],[17,-62]],[[45577,13098],[-11,53],[28,0],[-17,-53]],[[46653,13160],[82,-14],[0,-43],[-104,-24],[-6,53],[28,28]],[[46377,13031],[-55,-33],[-50,0],[-38,-34],[-28,-9],[-39,24],[-11,-29],[-55,-5],[-27,24],[-72,5],[-33,14],[-33,-24],[-11,81],[61,77],[60,14],[44,-23],[83,-73],[83,34],[44,-43],[27,5],[17,48],[44,33],[0,58],[22,-15],[0,-47],[-27,-44],[-6,-38]],[[45682,13113],[50,14],[27,-19],[39,0],[6,-63],[-17,-38],[-39,-28],[-39,-15],[-5,53],[-28,-48],[-22,0],[-27,-24],[-22,5],[-33,-29],[-45,-5],[-27,-19],[-44,38],[5,101],[56,62],[71,-24],[28,-67],[27,-5],[39,34],[-28,38],[-38,34],[-11,38],[22,29],[44,-15],[11,-47]],[[45258,13160],[38,-71],[-61,-58],[-16,-62],[-23,76],[-33,39],[-38,14],[-16,29],[0,43],[49,-19],[27,0],[23,33],[50,-24]],[[47458,13213],[-17,-24],[-22,34],[6,33],[33,-5],[0,-38]],[[46995,13294],[-45,-57],[-5,-24],[-66,19],[-39,-28],[6,47],[22,43],[38,-14],[61,38],[28,-24]],[[48793,13127],[-39,-38],[-49,9],[-45,-9],[0,38],[22,91],[28,81],[44,58],[72,14],[33,-58],[-11,-81],[-17,-48],[-38,-57]],[[47689,13204],[-33,0],[0,85],[23,58],[54,101],[12,-91],[-17,-68],[-33,-52],[-6,-33]],[[45009,13448],[-28,0],[-27,-29],[-55,-5],[-55,24],[-6,19],[23,48],[27,5],[143,0],[11,-24],[-33,-38]],[[48180,13629],[-22,-62],[-5,-38],[-28,-29],[-22,38],[11,86],[0,77],[44,-57],[22,-15]],[[44016,13749],[44,-57],[106,-19],[33,-63],[5,-57],[27,-24],[39,0],[44,-15],[28,15],[66,-29],[44,5],[33,-14],[16,14],[28,105],[39,24],[28,-67],[33,-10],[27,15],[33,-34],[39,-9],[11,-24],[55,0],[17,-10],[16,-81],[22,-19],[0,-72],[33,-29],[72,-19],[88,29],[50,-39],[11,-66],[-11,-72],[11,-82],[-44,-18],[-72,42],[-66,53],[-22,0],[-66,-33],[-89,24],[-93,4],[-105,29],[-33,14],[-88,72],[-116,52],[-83,10],[-60,-38],[-67,19],[-55,53],[-39,19],[-116,19],[-16,43],[16,53],[-88,52],[-110,10],[6,29],[27,-20],[22,34],[11,57],[17,0],[11,96],[33,57],[116,-52],[16,5],[17,47],[49,-28]],[[48213,13835],[-5,-34],[5,-104],[-16,-44],[-33,5],[-28,48],[11,125],[22,42],[28,20],[16,-58]],[[47932,13777],[0,63],[11,19],[17,82],[11,-10],[-11,-62],[-22,-43],[-6,-49]],[[46266,13907],[-10,-5],[-28,57],[11,43],[27,-19],[0,-76]],[[46355,13955],[-22,-33],[-33,19],[22,66],[-12,63],[6,24],[50,38],[11,-86],[-22,-58],[0,-33]],[[46438,14151],[5,-57],[-22,4],[-11,-62],[11,-53],[22,-28],[-33,-33],[-27,-77],[-28,0],[-6,48],[23,62],[11,57],[5,120],[17,48],[16,4],[17,-33]],[[46449,14270],[-17,-33],[-22,24],[6,48],[27,-5],[6,-34]],[[45384,14338],[-33,-48],[0,62],[-11,34],[16,100],[22,24],[6,-53],[0,-119]],[[47005,14553],[23,-19],[33,-62],[0,-67],[-44,-39],[-39,-14],[-77,67],[-22,43],[-6,72],[12,14],[71,15],[49,-10]],[[47447,14615],[33,-28],[61,-5],[33,-39],[11,-71],[32,-49],[-10,-81],[-66,63],[-56,43],[-27,43],[-50,0],[-6,-39],[-104,53],[-22,-43],[-28,-5],[-33,67],[-55,-5],[33,77],[17,19],[55,10],[77,0],[6,-29],[49,43],[50,-24]],[[42952,14529],[-33,53],[5,57],[39,-72],[-11,-38]],[[44143,14582],[0,-29],[-22,-39],[-33,20],[-28,-10],[-10,77],[10,96],[28,14],[39,-19],[22,-29],[11,-38],[-17,-43]],[[42919,14648],[-33,-4],[5,72],[28,-68]],[[42864,14758],[-33,25],[11,52],[22,-77]],[[46873,14912],[-11,-34],[-72,-5],[6,39],[77,0]],[[47541,14941],[11,-34],[-6,-43],[-44,-29],[-61,57],[61,39],[39,10]],[[46713,14936],[56,-29],[0,-19],[-50,-19],[-28,14],[-27,-24],[-33,-5],[-17,38],[11,49],[45,14],[43,-19]],[[48324,14969],[110,-19],[28,-19],[49,-5],[-11,-38],[-66,4],[-50,29],[-60,24],[0,24]],[[43812,14945],[23,-53],[5,-90],[22,-77],[72,-28],[-22,-34],[-23,-100],[-44,47],[-49,38],[0,82],[-11,9],[-11,68],[-33,28],[-33,-14],[-34,43],[39,43],[-5,29],[16,38],[72,19],[16,-48]],[[47199,14950],[-6,-14],[-55,5],[-27,-10],[-28,38],[11,38],[27,34],[45,-34],[33,-57]],[[46443,15084],[44,-24],[5,-53],[-54,-47],[0,86],[-45,-77],[-10,43],[16,67],[44,5]],[[44375,15079],[-27,-28],[-17,14],[11,71],[22,0],[22,-33],[-11,-24]],[[42759,14916],[-44,29],[-6,39],[-33,76],[11,76],[28,20],[33,-91],[6,-58],[21,-47],[-16,-44]],[[47640,15046],[-39,14],[-16,81],[38,19],[28,-19],[-11,-95]],[[48307,15228],[72,-19],[66,-96],[-16,-43],[-50,28],[-17,82],[-11,-20],[-44,53],[0,15]],[[49168,14687],[0,-335],[0,-225],[0,-469],[-22,-110],[22,-43],[0,-216],[0,-397]],[[49168,12892],[-33,39],[-28,71],[-78,115],[-21,58],[-88,-24],[-28,29],[-39,-53],[-11,19],[11,81],[23,86],[-23,34],[-11,77],[-38,71],[38,19],[-33,82],[-33,62],[-22,110],[-33,63],[0,71],[-44,39],[-6,18],[-99,91],[-39,5],[-71,58],[-28,9],[-33,34],[-83,24],[-38,0],[-67,71],[-11,68],[-22,-10],[-22,19],[-22,-9],[-16,42],[-28,-9],[-38,67],[-11,62],[-39,-120],[6,-14],[-28,-62],[-44,-10],[-34,111],[17,42],[-17,72],[-60,87],[-44,14],[-17,38],[45,28],[71,-28],[28,33],[22,48],[22,15],[66,-29],[44,43],[5,67],[-65,-24],[-45,5],[-38,-19],[-72,19],[-28,-9],[-49,85],[-11,101],[-94,48],[-28,-19],[-22,9],[28,58],[17,57],[0,43],[82,43],[50,68],[38,28],[39,0],[66,-43],[61,-62],[60,0],[39,-29],[-5,-43],[27,-86],[-5,-62],[-17,-53],[11,-163],[44,-143],[0,72],[28,-5],[5,-96],[28,-9],[0,-68],[33,-38],[61,5],[55,96],[22,62],[39,53],[22,81],[71,24],[50,48],[0,57],[66,67],[45,24],[33,-38],[82,-48],[22,-34],[39,-19],[33,-33],[82,-68],[56,0],[11,-19],[60,-9],[17,-43],[39,0]],[[43575,15314],[17,-38],[-17,-39],[-33,44],[33,33]],[[47111,15319],[16,-43],[-11,-39],[33,-24],[-5,-53],[-23,34],[-27,-9],[0,43],[-22,38],[39,53]],[[47607,15405],[33,-10],[39,-29],[0,-62],[-50,10],[-28,-29],[-33,19],[-5,29],[-45,14],[23,38],[66,20]],[[42654,15261],[-22,15],[17,67],[16,-10],[-11,-72]],[[43619,15357],[-33,-19],[-16,14],[16,57],[33,-52]],[[43354,15610],[-49,10],[-38,34],[10,62],[28,-38],[44,-34],[5,-34]],[[43592,15740],[11,-67],[-22,-34],[-17,96],[28,5]],[[43261,15678],[-17,4],[-16,96],[11,14],[28,-67],[-6,-47]],[[42505,15811],[34,-81],[33,-57],[-6,-96],[-33,-5],[-11,62],[-33,34],[-17,67],[-33,62],[28,0],[16,29],[22,-15]],[[43272,15807],[-67,14],[-5,33],[67,-33],[5,-14]],[[46703,15682],[-33,-48],[-39,-100],[-23,-19],[-99,-29],[-55,10],[-27,43],[-127,0],[-66,-14],[-61,19],[-83,-14],[-49,23],[-34,-23],[-27,-49],[-17,-62],[-11,-95],[17,-96],[22,-63],[28,-24],[38,-114],[55,-10],[17,20],[16,61],[50,82],[22,-29],[39,0],[44,48],[60,-5],[28,29],[50,24],[33,-19],[5,-38],[-5,-63],[-22,5],[-28,33],[-33,-14],[-50,-114],[-38,-58],[-61,-38],[-33,-58],[-39,19],[-11,-33],[28,-24],[11,-33],[22,-15],[39,-91],[16,-58],[33,-42],[0,-39],[17,-43],[-17,-19],[-5,-72],[5,-38],[22,-19],[22,-67],[23,-34],[21,0],[0,-81],[-60,-5],[-44,-23],[-23,-34],[6,-48],[-27,-14],[-50,24],[-17,47],[12,87],[11,33],[-11,38],[-39,29],[-61,95],[0,44],[22,57],[6,86],[-11,57],[-56,5],[-49,-57],[-11,-52],[22,-82],[6,-95],[-12,-106],[12,-148],[-23,-130],[23,-109],[-17,-15],[-66,-14],[-28,-29],[-39,48],[-16,58],[11,66],[16,53],[0,72],[12,29],[5,134],[-22,71],[0,62],[-22,24],[-55,-19],[-11,15],[-16,86],[5,67],[-11,43],[49,76],[11,96],[28,86],[-6,115],[6,48],[22,91],[33,62],[22,-48],[-22,211],[22,19],[-5,72],[66,201],[39,-44],[32,49],[28,86],[28,10],[44,-20],[28,-52],[49,4],[38,-14],[50,-5],[66,-48],[28,29],[133,-29],[54,48],[23,48],[16,10],[17,52],[22,14],[21,58],[28,0],[17,-58],[-17,-23],[-11,-58],[-21,-48]],[[43151,15979],[10,-38],[-10,-43],[-34,-15],[-16,48],[5,34],[33,29],[12,-15]],[[47138,15639],[22,-5],[11,58],[33,33],[6,67],[33,34],[39,14],[5,-129],[-67,-62],[-5,-39],[55,-52],[12,-53],[-116,25],[-6,-111],[33,-148],[22,-67],[-33,9],[-22,77],[-22,34],[-11,124],[6,38],[-22,53],[-6,57],[11,29],[-28,96],[33,191],[39,82],[22,-5],[-22,-77],[22,-39],[0,-99],[-22,-49],[-33,-38],[11,-48]],[[47248,15969],[-28,-4],[-10,76],[16,48],[44,33],[12,-33],[-6,-71],[-28,-49]],[[42345,16056],[-16,4],[-50,62],[-33,15],[-11,34],[11,38],[28,-38],[66,-72],[5,-43]],[[45594,16553],[33,5]],[[45627,16558],[5,-34],[-27,-14],[-11,43]],[[44160,16424],[-39,53],[-5,43],[27,43],[34,-58],[0,-43],[-17,-38]],[[44364,15965],[-16,-34],[16,-33],[5,-48],[111,-187],[33,-14],[50,38],[27,10],[56,-15],[43,0],[50,39],[16,81],[44,33],[72,5],[17,-38],[72,-33],[16,-24],[44,57],[72,19],[22,-14],[22,62],[0,38],[22,20],[-11,76],[55,77],[-6,52],[6,72],[22,38],[34,0],[5,86],[11,43],[-6,39],[6,81],[17,72],[33,43],[16,-19],[33,24],[28,-20],[27,10],[78,0],[76,-43]],[[45582,16558],[-16,-14],[11,-53],[28,-38],[0,-43],[-33,24],[-11,-29],[-44,-9],[33,-63],[-6,-48],[44,-33],[0,-67],[28,-19],[11,-58],[27,-62],[0,-28],[-38,-53],[44,-92],[83,-104],[55,-91],[-17,-29],[-55,-20],[-66,34],[-55,-57],[-33,-134],[-6,-153],[16,-115],[-55,-53],[-33,-72],[-38,-4],[-6,-48],[-27,-29],[-17,-86],[0,-72],[22,-67],[-5,-57],[-28,-5],[0,-86],[-17,-82],[-38,-81],[-5,-48],[-111,-86],[-83,-72],[-11,5],[-5,125],[-11,57],[-22,5],[-44,52],[-44,-48],[-28,10],[0,62],[-44,-14],[-44,86],[-11,-67],[-61,-62],[-44,24],[-28,-15],[-22,-43],[-22,0],[0,144],[-21,33],[-12,-23],[-38,9],[-50,-33],[-50,9],[-22,38],[-39,-28],[-11,19],[-21,253],[-22,38],[11,63],[0,67],[-11,57],[-45,67],[-60,29],[16,57],[-39,53],[0,48],[12,72],[-17,71],[-22,29],[-6,48],[0,105],[6,63],[11,19],[6,62],[33,76],[16,58],[39,29]],[[46995,16520],[-17,9],[17,53],[-11,24],[21,34],[6,-53],[-16,-67]],[[42351,16845],[72,15],[33,-20],[44,10],[66,-101],[17,-57],[38,-67],[6,-91],[38,-24],[50,-81],[44,-33],[55,-77],[33,-34],[39,-81],[21,-67],[73,-143],[33,4],[11,38],[28,-10],[38,-66],[27,-87],[44,-19],[50,-71],[17,-62],[0,-34],[39,-67],[60,-14],[33,-62],[61,-5],[33,-53],[16,-67],[-55,-67],[-5,-48],[16,-14],[-11,-43],[22,-62],[72,-63],[49,-5],[28,-239],[39,-33],[5,-53],[-27,-43],[11,-52],[27,52],[56,9],[49,-38],[72,-186],[-28,-67],[-5,-91],[11,-38],[-17,-77],[11,-110],[0,-125],[-11,-186],[-11,-39],[-27,15],[-6,29],[-27,33],[-39,-57],[-72,62],[6,-82],[-11,-24],[-83,145],[-33,85],[-66,72],[-39,62],[-33,34],[-61,86],[-27,53],[-33,100],[-78,96],[-49,143],[-28,39],[-38,96],[-6,85],[-72,230],[-11,82],[-65,134],[-23,76],[-22,39],[-38,28],[-28,43],[-55,311],[-33,115],[-78,82],[-44,23],[-10,20],[-17,134],[-33,38],[-77,187],[-55,28],[-45,86],[-38,53],[-77,139],[-45,143],[6,77],[28,19],[49,-14],[61,-82],[55,-19]],[[41954,17290],[-11,-24],[-22,120],[22,15],[17,-73],[-6,-38]],[[41739,18314],[-17,0],[-5,58],[22,38],[11,-53],[-11,-43]],[[41772,18587],[-22,48],[-6,43],[17,38],[11,96],[5,129],[11,15],[6,133],[11,34],[22,-72],[-28,-76],[11,-29],[6,-86],[-22,-24],[5,-57],[-17,-43],[0,-120],[-10,-29]],[[39626,24196],[0,-43],[17,-34],[-11,-86],[55,29],[22,-43],[17,-39],[5,-9],[17,-24],[10,-9],[34,4],[44,-53],[28,-57],[66,-43],[49,-67]],[[39979,23722],[-16,0],[-44,-58],[-33,-62],[-22,-86],[-11,-81],[-23,-72],[61,-72],[11,15],[110,-101],[11,-34],[83,-85],[22,14],[72,-67],[33,0],[11,-43],[83,-39],[44,25],[38,-25],[44,34],[17,-19],[61,-34],[11,-71],[93,-82],[56,24],[11,-53],[22,-14],[22,14],[55,-19],[61,-38],[38,34],[11,-34],[28,-19],[22,15],[33,-5],[67,9],[16,101],[-28,76],[6,91],[17,96],[-6,33]],[[42477,23186],[6,-67],[-71,-91],[0,-57],[32,-77],[-11,-19],[-32,57],[-23,10],[-93,-33],[-23,-48],[-27,-24],[-38,-58],[-45,-29],[-22,-48],[12,-119],[-50,-143],[-22,-15],[-17,-62],[27,-53],[-33,-114],[-21,-44],[-28,-139],[-17,-28],[-60,38],[-28,-10],[-28,15],[17,-96],[-11,-162],[-27,-15],[-17,-86],[17,-120],[-17,-19],[-17,-57],[-44,29],[-16,-38]],[[41209,21497],[0,-120],[-33,0],[-22,19],[11,77],[-17,29],[-11,-77],[6,-34],[-22,-28],[-60,24],[-17,33],[-45,-43],[-88,-43],[-22,-38],[-16,-72],[22,-110],[-22,-48],[-17,-62],[-33,-38],[-44,-77],[-99,-52],[-17,52],[-33,-38],[27,-34],[-32,-33],[-67,-106],[-49,-119],[-56,-111],[-71,-61],[-66,-125],[-33,-43],[-61,-53],[-33,-47],[-17,-44],[17,-43],[-17,-62],[-77,-62],[-55,10],[-28,-29],[-16,-82],[-23,-57],[-49,38],[-55,-53],[-28,-104],[-11,-68],[23,-138],[0,-62],[-12,-39],[23,-119],[-28,-48],[44,-68],[-22,-186],[-11,-63],[-27,-61],[-17,-67],[-17,-116],[0,-57],[17,-47],[0,-240],[-72,-4],[-22,-39],[0,-38],[-38,-96],[-12,-62],[12,-53],[-89,-43],[-33,-62],[-22,-139],[-44,-52],[-39,-30],[-33,15],[-50,77],[-54,120],[-12,14],[-33,153],[22,24],[-16,105],[-28,43],[0,34],[-38,157],[-11,77],[-50,177],[-50,101],[-38,139],[-16,76],[-28,182],[0,48],[-28,100],[-22,149],[-39,91],[-11,9],[-22,101],[6,24],[-39,85],[-27,96],[-22,110],[-28,321],[-28,134],[0,43],[-16,115],[22,96],[-33,14],[0,82],[-22,129],[5,66],[34,163],[-12,115],[-22,24],[-11,76],[33,63],[-44,5],[11,72],[-11,57],[-33,28],[-11,-66],[-28,-29],[17,-43],[11,-67],[-38,-101],[-94,-81],[-78,-43],[-60,38],[-72,91],[-44,91],[-83,134],[-27,58],[5,66],[33,-43],[45,34],[38,9],[28,29],[27,5],[39,110],[-33,0],[-55,-28],[-28,-29],[-66,24],[-66,57],[-28,38],[-33,105],[-28,5],[-10,72]],[[38011,21980],[21,24],[67,9],[0,87],[28,5],[99,-10],[38,-29],[33,10],[11,24],[61,33],[33,-48],[33,39],[17,105],[-23,86],[-38,101],[5,52],[-16,24],[-44,0],[-28,57],[-5,44],[11,38],[5,71],[-16,29],[-50,15],[-39,38],[6,101],[33,47],[50,106],[11,43],[28,38],[27,10],[22,-24],[5,-43],[33,-15],[61,39],[39,4],[49,24],[12,57],[38,68],[22,91],[89,76],[55,163],[16,86],[66,48],[22,33],[-11,49],[22,33],[28,71],[22,34],[44,38],[-16,24],[11,96],[-11,81],[16,34],[105,91],[-11,43],[-39,24],[-49,9],[0,72],[-50,5],[-11,62],[-44,67],[27,72],[-27,34],[0,42],[33,29],[0,33],[-44,10],[11,43],[-28,34],[0,29],[22,62],[56,33],[143,-48],[55,-23],[39,14],[27,28],[66,25],[17,-5],[66,71],[6,34]],[[39373,25086],[116,105]],[[39489,25191],[38,-4],[-5,-63],[38,-167],[61,-38],[50,-68],[-39,-47],[6,-120],[11,-63],[44,-71],[-6,-43],[17,-19],[5,-67],[-5,-58],[-45,-38],[-33,67],[-44,-10],[11,-95],[28,-53],[5,-38]],[[26616,30316],[-16,-28],[33,-134],[-6,-38],[23,-120],[-50,-144],[0,-42],[-33,-20],[-34,10],[-49,-24],[-66,-10],[-22,-33],[-34,-10],[-72,-57],[-71,-39],[-72,-24],[-121,44],[0,28],[-44,29],[60,72],[-66,0],[116,115],[55,153],[-77,81],[-44,5],[28,86],[5,100],[-22,53],[105,5],[121,-14],[-17,28],[61,43],[-77,48],[55,57],[17,73],[116,23],[54,19],[34,-19],[-39,-38]],[[36179,22827],[-39,-62],[-16,9],[-66,-43],[-11,19],[132,101],[0,-24]],[[35054,26000],[6,-82],[27,-128],[44,-44],[95,-19],[38,-29],[16,-52],[33,-38],[89,-72],[99,-39],[66,5],[176,67],[62,15],[33,-29],[5,38],[-17,105]],[[35826,25698],[61,5],[71,38],[12,63],[83,91],[33,14],[110,-4],[0,28],[55,19],[83,-14],[22,-67],[55,-15],[61,-33],[22,-33],[88,4],[77,-58],[6,-38],[27,-42],[61,-39],[55,-110],[127,0],[22,-282]],[[36957,25225],[-11,-86],[-16,-10],[5,-62],[-28,-110],[-33,-29],[22,-62],[-38,-5],[-22,-57],[0,-106],[11,-33],[55,-15],[-55,-110],[11,-95],[33,-148],[-11,-73],[5,-138],[133,-29],[21,-86],[-5,-67],[-143,-268]],[[36891,23636],[77,-144],[0,-19],[33,-110],[50,-86],[71,-38],[34,-48],[27,5],[0,-72],[11,-139],[-11,-67],[22,-9],[45,9],[16,-33],[-12,-39],[-10,-96],[-61,0],[-49,-23],[-50,-67],[-39,-19],[-16,-116],[-11,-14],[-11,-158]],[[37007,22353],[-28,-28],[-116,52],[-22,39],[-17,-34],[-60,19],[-61,5],[-27,24],[-61,-19],[-39,38],[-88,10],[-44,28],[-93,29],[-17,101],[-16,57],[-6,86],[-11,63],[-39,62],[-61,19],[-61,-43],[-43,-19],[-39,-58],[-38,-10],[-39,-47],[-39,-15],[-60,53],[-83,9],[-33,34],[-23,43],[-55,38],[-44,48],[-33,81],[-71,58],[-67,10],[-49,76],[-22,81],[-11,82],[-33,53],[5,37],[-27,25],[-6,76],[-44,72],[-33,67],[-11,77],[-16,0],[-67,-48],[-16,29],[-61,47],[-22,-19],[-11,-57],[-45,-20]],[[35004,23664],[-16,20],[-5,57],[-55,63],[-6,143],[-50,5],[0,110],[23,110],[-45,96],[-27,86],[-34,0],[-49,62],[-66,67],[-44,14],[11,67],[-44,111],[-28,19],[-33,62],[-6,33],[17,67],[-17,39],[12,43],[60,124],[39,48],[-28,86],[28,86],[-67,0],[-11,29],[-38,19],[-22,96],[-33,33],[0,53],[-22,38],[-22,96]],[[34426,25646],[5,38],[-33,43],[0,82],[-55,62],[38,95],[-27,19],[0,125],[-22,43],[5,43],[-22,67],[55,10],[17,86],[50,-24]],[[34922,23669],[-39,29],[-33,5],[-44,-14],[-22,-29],[-27,-110],[-61,-125]],[[34696,23425],[-22,-10],[-259,39],[-138,182],[-144,177],[-116,158],[-165,148],[-99,91],[-188,53]],[[33565,24263],[22,29],[-5,33],[-33,-15],[5,53],[-44,239]],[[33510,24602],[122,111],[170,157],[39,15],[38,105],[0,72],[28,215],[-17,72],[0,58],[23,62],[60,23],[44,63],[45,82]],[[34062,25637],[60,71],[50,0],[72,-38],[44,-5],[22,24],[33,-29],[11,-62],[49,58],[23,-10]],[[35004,23664],[-27,0],[-33,25],[-22,-20]],[[25188,33662],[99,14],[-33,-48],[72,-43],[55,-91],[55,0],[50,-38],[-28,-33],[33,-63],[-11,-33],[-61,-77],[-38,-5],[-39,-76],[-71,-39],[-39,0],[-89,-33],[-93,-71],[-44,-20],[-138,-29],[-44,-57],[-111,-39],[-93,10],[-77,29],[-67,5],[-44,52],[-83,24],[-248,0],[22,44],[77,28],[6,115],[-49,19],[-28,58],[-133,9],[-77,-24],[-27,43],[138,19],[66,19],[44,34],[11,38],[66,29],[-17,29],[-137,24],[-155,-48],[-88,28],[72,48],[27,43],[50,10],[-33,52],[55,29],[55,-52],[88,23],[-66,29],[-38,43],[27,29],[77,0],[160,-120],[11,-33],[-22,-67],[45,-91],[33,72],[93,42],[6,101],[44,-9],[55,-72],[33,0],[0,67],[99,38],[78,-81],[0,77],[60,-5],[50,-48],[71,67],[56,-24],[50,43],[-12,58],[72,9],[72,-81]],[[33014,24335],[-23,28],[-32,10],[-17,-19],[-17,-81],[6,-82],[33,-24],[-27,-29],[-22,-85],[33,0],[55,28]],[[33003,24081],[-12,-67],[0,-67],[-38,-158],[0,-76],[-28,-158]],[[32925,23555],[-10,-24]],[[32815,24009],[44,86],[-5,19]],[[32854,24114],[50,168],[16,115],[28,129]],[[32948,24526],[49,-4],[17,47],[49,52]],[[33063,24621],[6,-133],[-17,-57]],[[33052,24431],[-28,-15],[-10,-81]],[[29958,25943],[-55,-120],[-22,-91],[11,-72],[22,-52],[-27,-48],[0,-44],[-56,10],[-38,24],[-22,48],[-33,34],[-55,9],[-144,124],[-22,-4],[-28,29],[-16,42],[22,63],[27,38],[34,-43],[33,43],[27,-5],[55,-52],[50,14],[39,-5],[55,20],[11,18],[61,0],[55,39],[16,-19]],[[29048,26675],[23,-91],[-23,-77],[6,-95],[-17,-211],[-16,-5],[-61,24],[-5,-53],[-23,-33],[-38,0],[-33,76],[-5,77],[21,100],[-21,39],[10,86],[-10,43],[-34,57],[6,72],[55,-19],[39,29],[27,43],[55,24],[39,-48],[5,-38]],[[29671,28230],[-49,-57],[38,-39],[-11,-100],[17,-5],[22,-34],[5,-23],[-22,0]],[[29671,27972],[12,10],[-23,42],[-27,-19],[-39,19],[-27,-38],[-83,-48],[-33,-5],[-6,-57],[44,-77],[-44,-66],[23,-135],[44,-67],[33,-19],[60,-62],[44,-33],[34,-111],[33,-134],[83,-124],[49,-52],[44,-29],[39,-10],[83,10],[33,-15],[0,-33],[-39,-39],[17,-52],[82,-57],[83,-49],[55,-57],[77,-53],[78,-119],[-6,-67],[-17,-44],[-38,34],[-34,91],[-60,10],[-44,52],[-39,-9],[-38,-91],[-22,-77],[11,-62],[33,-14],[44,-53],[11,-105],[-66,-33],[-28,-49],[0,-81],[-44,-48],[-33,-81],[-49,0],[-17,62],[27,34],[28,114],[33,15],[0,48],[-16,24],[-11,91],[-28,76],[-22,101],[-61,19],[-55,48],[-5,86],[-23,33],[-32,-14],[-17,38],[-61,29],[-28,72],[-27,33],[-50,10],[-38,-10],[-39,43],[-33,19],[-88,130],[-39,38],[-27,57],[-50,38],[-99,149],[-50,153],[-11,91],[-33,48],[-50,19],[-66,62],[-83,29],[-27,-19],[-77,-120],[-50,-33],[-39,-10]],[[15735,20492],[55,-15],[33,-38],[49,-29],[22,-52],[-10,-24],[-33,-5],[-56,34],[-10,-39],[-34,0],[-5,-33],[-44,38],[-45,5],[-43,86],[-39,9],[-6,34],[22,29],[50,19],[94,-19]],[[33003,24081],[16,81],[-5,173]],[[33052,24431],[28,-20],[16,-38],[61,-48],[55,-10],[188,187],[110,100]],[[33565,24263],[-22,-34],[-33,-19],[-198,-86],[-78,-38],[155,-273],[-50,-43],[-27,-96],[-122,-43],[-33,-95],[-61,-82],[-72,14],[-99,29]],[[32925,23497],[0,58]],[[47215,22750],[-33,-28],[-16,-57],[-28,28],[72,101],[5,-44]],[[47402,23181],[-16,-24],[-16,53],[60,29],[-28,-58]],[[47580,23746],[-28,0],[11,58],[22,-19],[-5,-39]],[[47497,24292],[-17,28],[5,48],[23,9],[5,-57],[-16,-28]],[[47662,24670],[33,-10],[33,24],[22,-29],[-33,-76],[55,-5],[-5,-39],[22,-76],[-39,-67],[-22,-77],[-22,-119],[6,-29],[-23,-105],[-44,10],[6,-48],[-28,-44],[-16,44],[-22,124],[-22,-72],[22,-52],[-11,-24],[-61,33],[22,81],[-22,48],[0,91],[44,57],[28,87],[-44,129],[-23,24],[-5,-91],[-55,-33],[-28,76],[44,-5],[-55,72],[6,29],[116,81],[16,53],[28,24],[44,-14],[33,-72]],[[48153,24847],[44,-5],[-5,-53],[16,-62],[-55,-57],[-28,-101],[-33,57],[-44,20],[-61,-44],[-5,-33],[-44,-110],[-17,-24],[-22,38],[-33,5],[5,105],[-16,38],[-22,10],[55,63],[22,80],[22,30],[33,-48],[66,28],[23,58],[32,33],[45,-9],[22,-19]],[[48241,24856],[-16,-24],[-28,29],[39,62],[5,-67]],[[47391,24875],[-21,5],[11,67],[21,-19],[-11,-53]],[[48765,25832],[-17,49],[6,42],[33,29],[0,-96],[-22,-24]],[[49206,26809],[33,9],[-11,-86],[11,-134],[28,-33],[22,-53],[33,-153],[-11,-144],[-17,-48],[-22,-19],[-22,-57],[-11,-101],[-60,-24],[-17,-43],[-5,-57],[17,-134],[-12,-124],[-27,-43],[-34,-173],[39,-124],[-55,-72],[-6,-67],[-16,-34],[-55,-57],[-17,19],[0,77],[38,67],[-5,28],[-33,5],[-28,-66],[12,-54],[-17,-23],[-22,43],[-33,-5],[-22,-34],[-5,-86],[-28,-57],[-22,19],[11,110],[-39,-5],[-50,-95],[-11,-39],[-32,15],[-106,14],[-55,33],[-28,58],[-32,-96],[55,-67],[-6,-33],[-77,-38],[-66,-173],[-33,-19],[-39,19],[-44,96],[-11,105],[50,72],[-12,29],[-43,-5],[-39,34],[-33,4],[-50,-14],[-44,-53],[-82,-24],[-45,-38],[-16,9],[-39,-23],[-55,28],[-27,-33],[-17,-110],[-61,62],[-77,-29],[-22,19],[-28,-14],[-6,81],[12,24],[50,10],[49,62],[39,29],[66,86],[71,115],[28,19],[50,10],[22,-24],[33,14],[55,-5],[77,34],[61,9],[44,24],[27,-57],[56,-10],[33,29],[27,43],[-10,34],[5,66],[33,44],[66,129],[5,57],[-5,67],[22,48],[72,43],[6,-24],[-72,-90],[39,-96],[33,0],[22,52],[66,29],[60,43],[50,71],[39,101],[55,48],[22,33],[17,101],[38,77],[22,124],[22,48],[0,96],[-22,71],[17,68],[-17,95],[17,33],[38,25],[11,38],[-5,58],[49,9],[6,-81],[33,9],[39,-14],[21,62],[-11,38],[-60,-28],[6,76],[16,24],[44,-38]],[[49604,27565],[27,0],[72,-43],[49,-5],[83,110],[-39,-158],[28,-81],[11,-82],[-49,-38],[-62,-23],[-66,9],[-66,-63],[-27,-42],[-33,-77],[-6,-67],[-17,-24],[-110,72],[-99,91],[-66,-10],[-66,-57],[-44,57],[-33,5],[-28,-62],[33,-58],[28,0],[60,-76],[-16,-34],[-50,24],[-44,-82],[-33,-28],[-28,43],[22,91],[-11,43],[-33,58],[5,105],[56,38],[39,72],[-17,52],[17,29],[44,-38],[55,-10],[27,10],[17,48],[-6,72],[33,76],[28,221],[-11,62],[-22,57],[11,62],[44,39],[78,-111],[43,-81],[89,-119],[83,-77]],[[39373,25086],[-45,148]],[[39858,27034],[-44,62],[-77,19],[-39,76],[-44,5],[-77,29],[-55,-5],[-122,15],[-39,19],[-71,-19],[-110,5],[-22,-34],[-45,10],[-82,38],[-72,52],[-61,5],[-60,-52],[-22,-110],[-33,-20],[-50,10],[-17,19],[-143,53],[-88,-24],[-56,-110],[12,-24]],[[38441,27053],[-34,-14],[-32,-43],[-33,-5],[-34,-58],[-66,-38],[-94,-86],[0,-29],[-33,-38],[-44,-82],[6,-57],[-45,9],[-38,44],[11,57],[-28,48],[-171,-14],[-27,57],[-22,177],[-77,5],[11,129],[5,139],[-44,-29],[-50,119],[-50,49],[-38,62],[-71,-43],[-189,19],[-187,-38],[-127,186],[-16,53],[-259,230],[-127,100],[-66,-19],[-326,-134],[0,-378],[0,-383],[0,-254]],[[36146,26794],[-66,-14],[-16,10],[-78,138],[-11,43],[-27,34],[-89,72],[-66,-10],[-105,-48],[-77,-95]],[[35611,26924],[-5,86],[28,124],[-6,57],[-100,25],[-49,86],[-50,4],[0,87],[-27,43],[-44,152],[-22,20],[-67,24],[0,48],[23,29],[71,0],[28,-29],[50,4],[-56,87],[61,138],[49,10],[105,5],[99,-29],[0,29],[-43,43],[54,172],[-11,96],[17,33],[-39,82],[-66,10],[-22,-30],[-38,-14],[-56,29],[-16,24],[-71,24],[-89,-63],[-27,-4],[-62,-67],[-99,-29],[-21,-53]],[[35110,28177],[-95,62],[0,58],[45,-19],[11,19],[-61,153],[-71,115],[-94,19],[-28,-19],[-33,58],[5,47],[-16,43],[-55,39],[-5,43],[11,62],[49,81],[0,29],[-33,48],[11,91],[17,43],[49,57],[0,58],[44,38],[72,-86],[22,-48],[33,-29],[61,38],[-22,164],[99,80],[28,68],[49,9],[66,43],[83,125],[56,-24],[21,-44],[44,0],[61,53],[50,0],[50,-57],[104,4],[33,-23],[22,-43],[45,-24],[104,-158],[0,52],[-17,48],[28,15],[72,-72],[55,-38],[39,0],[38,28],[11,38],[55,49],[23,-10],[60,24],[61,-53],[22,5],[38,53],[56,0],[55,-34],[49,-76],[89,-19],[11,-34],[38,15],[28,66],[28,10],[27,-34],[50,-14],[49,10],[67,47],[33,101],[-28,53],[-149,62],[-60,91],[54,43],[39,5],[44,38],[6,28],[-33,77],[44,82],[50,9],[77,-14],[16,43],[-49,33],[-72,19],[-6,29],[56,29],[-83,33],[17,34],[5,62],[33,19],[99,-24],[78,14],[22,19],[209,53],[67,34],[71,0],[28,-14],[22,47],[38,34],[111,10],[226,57],[82,33],[11,53],[33,5],[72,53],[77,-10],[94,-53],[99,38],[28,-47],[33,-115],[0,-96],[-16,-29],[44,-28],[105,9],[27,34],[61,-53],[50,-5],[33,-33],[82,-14],[-38,-34],[-17,-62],[28,-34],[55,43],[88,-33],[6,38],[61,53],[21,-5],[61,43],[6,33],[71,20],[56,43],[82,0],[-33,-105],[138,-120],[61,-63],[22,-52],[71,-125],[33,-76],[132,-268],[67,-168],[72,63],[-6,48],[45,33],[65,-43],[-5,-53],[44,0],[11,-57],[72,5],[22,-15],[60,5],[45,48],[38,0],[50,29],[94,-63],[33,-71],[11,-62],[55,-24],[33,-34],[71,-134],[89,-9],[50,-20],[66,77],[0,-43],[66,-101],[39,-43]],[[33984,16500],[-38,-104],[-72,-163],[-27,-43],[0,-402],[0,-235],[0,-388],[71,-158],[16,-66]],[[33934,14941],[-21,-49],[-44,-33],[-17,10],[-27,-125],[-28,-38],[-39,-5],[-27,-38],[-6,-91],[-11,-62],[-28,-53],[-16,-96],[-50,-191],[-16,-38],[-28,-19]],[[33576,14113],[-83,110],[-27,28],[-66,96],[-28,29],[-38,62],[11,57],[-6,72],[-149,149],[-33,28],[-226,230],[-155,158],[-11,0]],[[32765,15132],[0,268],[6,53],[22,57],[0,34],[50,100],[16,67],[45,38],[-6,39],[27,71],[6,63],[-16,153],[-23,110],[-21,28],[-23,67],[-11,67],[11,68],[-44,43],[-28,110]],[[32776,16568],[61,110],[138,244]],[[38848,26278],[-21,5],[-55,-29],[-72,9],[-44,-14],[-23,-34],[-32,39],[-33,-20],[-11,39],[-33,14],[-17,34],[-45,-24],[-16,-29],[-33,-5],[-33,53],[-94,-10],[-55,10],[-44,-14],[-11,62],[27,43],[17,52],[66,29],[77,-43],[78,38],[0,15]],[[38441,26498],[49,14],[61,-38],[44,29],[22,47],[39,-9],[5,53],[28,-20],[27,38],[56,39],[-23,19],[-49,0],[-72,72],[-50,19],[-10,62],[-17,10],[-27,-39],[-17,-52],[-66,19],[-28,19],[-17,53],[-33,-10],[-44,43],[61,72],[38,24],[6,29],[55,38],[-38,24]],[[43338,18635],[-27,106],[-6,109],[-33,48],[-5,96],[-23,76],[0,72],[33,10],[45,105],[10,48],[44,53],[56,24],[66,-19],[66,4],[55,15],[61,-19]],[[43680,19363],[28,-68],[27,15],[33,-19],[22,-48],[28,0],[11,38],[-22,57],[28,29],[5,29],[39,9],[22,-9],[33,-43],[88,67],[16,38]],[[44038,19458],[0,-43],[-22,-48],[-5,-81],[11,-24],[33,-153],[-22,-110],[11,-91],[0,-77],[-22,-48],[-11,19],[-27,-14],[-34,-52],[-33,-29],[-44,-5],[0,-72],[-66,19],[-22,-38],[0,-91],[50,-72],[-12,-67],[-60,58],[-50,-19],[-11,-24],[-38,19],[0,-58],[-39,-52],[-39,0],[-22,-29]],[[43564,18276],[-22,34],[-66,14],[-28,-19],[-16,24],[22,43],[5,38],[-27,67],[-28,-62],[-33,0],[-11,82],[6,66],[-28,72]],[[46923,24564],[-27,24],[27,43],[55,24],[33,-9],[-6,-48],[-44,-29],[-38,-5]],[[47292,25000],[-38,14],[28,43],[10,-57]],[[46967,25818],[5,38],[56,91],[22,19],[116,-4],[38,19],[33,72]],[[47237,26053],[33,-125],[39,-76],[72,-173],[16,-57],[5,-86],[-11,-192],[28,-28],[-22,-125],[-33,-86],[-22,-19],[-88,-5],[-6,-62],[-88,24],[-27,0],[5,-48],[-33,14],[-22,-28],[17,-29],[-28,-48],[-44,43],[-17,-48],[-22,20],[-39,-53],[-5,48],[-33,47],[38,10],[-32,124],[27,96],[0,43],[39,34],[-6,71],[-22,34],[0,86],[-27,48],[-33,34],[27,52],[38,19],[44,-14],[-21,62],[11,24],[-23,43],[-16,77],[11,14]],[[30642,27134],[-5,53],[49,24]],[[30686,27211],[44,57],[-5,38],[39,0],[44,-33],[38,-82],[55,-23],[-33,-87],[6,-28]],[[30874,27053],[-66,-19],[-56,-29],[-5,-58],[-28,0]],[[34966,23574],[-33,47],[17,48],[27,-52],[-11,-43]],[[34988,23272],[-116,0],[-39,124],[-137,29]],[[34922,23669],[0,-38],[22,-62],[-28,0],[-38,-62],[55,-10],[17,-105],[27,-57],[11,-63]],[[43680,19363],[50,47],[11,110],[-11,58],[0,53],[22,72],[0,32],[-39,34],[-5,58],[-28,14],[-55,105],[-11,48],[0,67],[11,115],[-22,67],[-39,43],[-33,77],[-22,66],[-88,53],[-28,0],[-5,-38],[-28,-38],[-11,-43],[-61,-14],[-21,14],[-50,62],[-28,-34],[-22,-4],[-11,-34],[-50,-62],[-38,-62],[-39,24],[33,153],[-10,95],[16,39],[17,95],[-17,168],[-39,10],[-44,-34],[-33,43],[5,67],[17,52],[-44,82],[-23,-14]],[[42907,21009],[17,110],[45,52],[27,91],[61,62],[5,29]],[[43217,21573],[5,-24],[61,-105],[11,-62],[44,9],[-11,-124],[39,-101],[55,-33],[22,-24],[39,48],[33,24],[38,-34],[39,-62],[-34,-48],[39,-14],[6,-43],[33,-14],[5,-44],[-16,-47],[-33,-62],[-50,19],[-39,0],[6,-58],[-22,-57],[33,-20],[94,-109],[60,-34],[-5,-62],[39,-72],[16,-10],[22,-47],[17,-68],[44,-91],[44,-52],[38,-96],[0,-62],[23,-53],[27,19],[11,-47],[72,-86],[-6,-34],[-27,-19],[0,-29],[22,-47],[39,-48],[10,-58],[-27,-57],[5,-77]],[[33080,24952],[72,-5],[22,-110],[-6,-24],[-72,-81],[-22,-48],[17,-19],[-28,-44]],[[32948,24526],[16,48],[44,172],[16,38],[6,63],[22,52],[22,15],[6,38]],[[25805,17309],[39,92],[39,61],[22,19],[33,63],[11,86],[27,24],[17,43],[0,48]],[[26412,16606],[-16,5],[-89,62],[-137,124],[-172,283],[-22,28],[-60,39],[-6,43],[-71,62],[-34,57]],[[31398,21468],[0,-273],[0,-277],[-155,0],[0,-139]],[[31243,20779],[-71,67],[-149,129],[-72,67],[-149,129],[-72,67],[-148,130],[-72,67],[-221,191],[-71,67],[-149,129],[-50,48],[-155,-124]],[[29864,21746],[-121,-106],[-88,139],[-94,48],[-160,62]],[[29026,23736],[66,58],[45,95],[5,72],[-22,120],[22,57],[33,15],[16,43],[39,52],[105,91],[-11,63],[0,71],[11,82]],[[29335,24555],[44,-29],[72,-62],[71,-14],[83,28],[55,-33],[28,0],[61,-29],[44,-48],[105,-33],[27,-62],[0,-53],[17,-87],[33,-66],[66,-43],[99,-15],[89,-33],[71,-43],[55,-44],[78,-100],[38,-34],[55,0],[67,53],[44,86],[22,77],[-33,134],[-6,72],[17,81],[55,86],[38,43],[67,53],[55,5],[33,38],[82,-5],[116,-62],[23,-19],[5,-77],[28,-33],[76,-14],[50,-44],[116,-5],[22,-28],[22,-63]],[[18244,19214],[-28,-9],[0,38],[23,48],[5,-77]],[[39825,18108],[39,0],[16,-42],[56,-77],[76,-210],[23,-49],[10,-86],[39,-105],[28,-124],[0,-106],[-22,-110],[-55,-71],[-99,-72],[-34,-10],[-38,15],[-23,43],[-16,57],[-5,62],[-17,67],[-11,206],[-11,134],[16,-4],[0,71],[17,105],[0,58],[22,52],[5,101],[33,0],[-10,43],[-34,10],[-5,42]],[[31971,7106],[-49,-9],[-17,-19],[-44,-120],[-55,29],[-44,72],[0,33],[-28,62],[-22,77],[39,39],[39,76],[27,81],[38,19],[39,49],[61,32],[50,-81],[55,-57],[11,-62],[-11,-72],[-28,-34],[-6,-62],[-55,-53]],[[30780,30642],[-11,5]],[[30769,30647],[11,-5]],[[31166,30274],[-16,71],[-94,43]],[[31056,30388],[-11,58],[22,76],[-39,63],[-77,0],[-127,52]],[[30824,30637],[0,53],[-27,100],[0,72]],[[30797,30862],[88,67],[61,24],[82,-9],[44,9],[143,-19],[50,-19],[56,5],[66,33],[22,-58],[83,-19],[77,-62],[27,-43],[50,-19]],[[30797,30862],[-6,53],[6,153],[44,53],[16,85],[44,67],[122,44],[16,-34],[77,-77],[23,-62],[55,-33],[44,10],[49,43],[23,42],[-12,154]],[[31762,31264],[72,-67],[-17,-86],[72,-182],[-6,-48]],[[17918,20387],[-16,0]],[[17902,20387],[16,0]],[[26241,23028],[-17,-33],[6,-106],[-22,-14],[-77,0],[-50,-67],[-55,15],[-28,-15],[-43,38],[-56,5],[-72,-33],[12,-39],[-62,-148],[0,-29],[-49,-19],[-33,-172],[-22,-149],[-49,-66],[-56,-63],[-22,-86],[-27,-43],[-56,-38],[-22,-29],[-22,-96],[-22,-162],[0,-87],[-16,-71],[-22,-29],[-28,-62],[-5,-72],[-28,-39],[-50,-4],[-116,19],[-104,-5],[-61,-18]],[[24967,21311],[11,133],[22,72],[39,47],[27,72],[6,68],[17,28],[0,43],[60,178],[-17,28],[50,62],[61,110],[22,20],[22,48],[17,191],[16,38],[11,72],[16,33],[6,63],[44,72],[33,18],[61,67],[50,192],[11,62],[33,72],[27,19],[50,10],[72,28],[88,72],[50,91],[94,95],[43,92],[66,157],[23,111],[-23,67],[-16,9],[6,57],[5,159],[17,81],[50,100],[10,44],[6,90],[66,96],[33,77],[44,52],[116,72],[66,53],[55,81],[67,177],[60,249],[0,29],[50,14],[33,29],[11,-53],[33,-76],[44,-53],[28,-19],[49,-10],[50,19],[94,-9],[28,9],[33,49],[21,-77],[94,-10]],[[31646,28708],[38,34],[56,-5],[50,34],[44,-19],[38,-44],[44,-28],[61,-10],[22,-47],[44,-19],[-5,-116],[60,-57],[0,-81],[50,-34],[5,-81],[34,-33],[-45,-20],[-22,29],[-77,19],[-38,-19],[11,-77],[-45,-91],[-38,-48],[5,-42],[-44,-20]],[[31894,27933],[-22,144],[22,134],[0,53],[-22,91],[-44,52],[-50,101],[-22,28],[-28,91],[-38,67],[-44,14]],[[35159,11978],[6,-29],[55,-148],[38,-263],[0,-134],[17,-115],[22,-57],[5,-67],[-10,-67],[-28,-91],[-34,43],[-16,96],[-38,-19],[11,-154],[16,-48],[0,-95],[-16,-29],[-11,-53],[-33,-95],[11,-115],[-23,-187],[-21,-124],[-23,-91],[-72,-368],[-38,-245],[-27,-139],[-39,-153],[-16,-162],[-34,-178],[-5,-67],[-23,-66],[-21,-124],[-17,-58],[-33,-72],[-33,-29],[-55,-9],[-72,-43],[-44,-53],[-61,-14],[-60,67],[-72,28],[-44,58],[-22,105],[-39,77],[0,105],[-5,67],[11,57],[-22,125],[-28,53],[-11,52],[-11,115],[5,95],[22,77],[11,82],[50,47],[17,87],[27,91],[22,43],[22,95],[11,168],[-33,100],[0,91],[-22,67],[-11,58],[-5,249],[66,186],[0,129],[72,20],[49,62],[17,-25],[38,10],[17,48],[72,24],[22,-48],[11,87],[77,99],[17,-4],[44,86],[11,48],[16,15],[11,-77],[28,86],[27,10],[-16,76],[33,110],[-17,63],[23,38],[33,-34],[22,53],[32,28],[28,44],[22,119],[-22,101],[22,9],[45,101],[49,-101]],[[10407,22172],[-39,67],[12,42],[27,-109]],[[10385,23401],[-17,-66],[-38,38],[11,72],[27,19],[17,-63]],[[10236,23415],[-16,10],[-50,86],[28,25],[5,-44],[28,-9],[5,-68]],[[13440,19415],[-104,192],[-155,224],[-71,63],[-78,38],[-33,-67],[-55,-58],[-44,-24],[-66,-52],[-50,-10],[-44,19],[-55,53],[-88,14],[-61,68],[-55,23],[-39,67],[-22,0],[-66,34],[-55,14],[-50,58],[-127,76],[-115,125],[-22,52],[-28,34],[-44,0],[-72,29],[-116,71],[-38,86],[-34,53],[-77,72],[-82,57],[-22,72],[-28,39],[-33,76],[-17,91],[11,53],[22,5],[22,42],[-38,29],[38,96],[6,100],[-33,34],[-33,105],[0,91],[-22,86],[-39,53],[-55,100],[-28,72],[-55,120],[-22,38],[-72,91],[6,38],[-50,15],[-27,43],[0,24],[-28,52],[17,34],[-45,24],[-60,67],[-11,33],[-66,15],[-17,33],[-5,86],[33,72],[-11,67],[-34,48],[-38,-5],[-22,53],[-11,52],[-49,24],[-33,43],[-17,62],[11,87],[-61,9],[-28,19],[-27,43],[-28,72],[-32,24],[-39,91],[-33,62],[-11,67],[-23,24],[-5,53],[-28,48],[-22,71],[-17,91],[-44,134],[11,106],[-27,24],[-60,24],[0,33],[-50,43],[-6,-29],[-44,10],[-44,48],[-33,-24],[-11,-29],[-6,-105],[23,-57],[16,-125],[0,-96],[39,-91],[33,-24],[60,-100],[34,-72],[10,-52],[45,-34],[21,-91],[28,-14],[11,-58],[6,-86],[33,-67],[33,-33],[5,-53],[17,-43],[28,-29],[0,-28],[33,-24],[33,-48],[16,-86],[22,-77],[6,-91],[22,-62],[17,-9],[21,-106],[23,-43],[11,-57],[-11,-53],[11,-72],[22,-33],[39,-5],[0,43],[38,-48],[49,-105],[6,-38],[39,-48],[-6,-77],[-55,-76],[-28,-10],[-16,29],[-11,95],[-28,72],[-44,39],[-16,38],[-44,62],[-62,62],[-37,63],[-61,76],[-6,57],[11,120],[-11,76],[-39,125],[-44,29],[-55,71],[-27,77],[-61,-38],[-38,72],[-23,4],[-16,34],[-56,29],[-11,57],[-71,86],[-5,29],[110,-19],[27,-29],[-5,96],[16,114],[-11,48],[-27,34],[-94,172],[-39,19],[-77,91],[-22,153],[-28,29],[-10,110],[-34,43],[-5,67],[-50,96],[6,81],[-34,38],[-10,58],[-23,28],[-11,63]],[[9629,24373],[221,29],[149,24],[-22,-58],[221,-124],[143,-82],[221,-119],[270,0],[160,0],[0,124],[138,-5],[137,0],[28,-62],[66,-81],[44,-72],[94,-110],[33,-124],[0,-39],[28,-86],[60,-81],[72,-48],[61,-58],[27,10],[34,62],[5,48],[33,86],[50,33],[44,-23],[61,0],[33,-15],[10,-28],[89,-125],[27,-100],[34,-87],[5,-47],[44,-77],[39,-91],[38,-48],[11,-138],[34,-77],[16,-86],[39,-19],[38,-38],[23,-5],[27,-34],[77,-19],[66,-34],[33,15]],[[12690,22564],[-11,-105],[-33,-96],[-39,-235],[-10,-296],[0,-120],[-11,-29],[-6,-71],[17,-110],[22,-96],[-6,-43],[22,-57],[55,-216],[66,-119],[39,-87],[11,-86],[17,-62],[44,-77],[11,-66],[55,-29],[55,-5],[28,-34],[33,-14],[38,-96],[56,5],[99,67],[99,10],[28,38],[38,19],[72,10],[5,-39],[23,-28],[44,-5],[38,48],[-16,48],[6,28],[60,67],[33,58],[6,105],[33,57],[0,168],[16,124],[28,34],[55,43],[143,39],[67,42],[71,10],[77,-39],[45,-5],[0,34],[27,5],[28,-47],[5,-116],[-16,-57],[-50,-81],[-27,-72],[-6,-39],[6,-57],[-28,-29],[-17,-43],[45,-14],[-12,-81],[-38,-173],[-17,-105],[-33,67],[5,58],[-27,0],[-11,-72]],[[30874,27053],[50,19],[71,0]],[[25827,18826],[-11,63],[11,86],[-27,62],[-11,52],[-39,25],[-27,52],[16,63],[-11,28],[0,67],[-33,67],[11,53],[-16,43]],[[25690,19487],[27,-14],[33,66],[17,120],[44,57],[83,-134],[38,77],[34,5],[54,-19],[55,5],[72,28],[205,0],[187,0],[187,0],[6,82],[17,134],[-39,81],[-17,201],[0,67],[-22,277],[0,68],[-21,272],[0,72],[-23,273],[0,67],[-22,277],[0,67],[-17,206],[0,67],[-21,278],[-6,129],[270,0]],[[28216,20683],[0,-201],[5,-76],[0,-316],[-11,-53],[0,-62],[-55,-249],[-44,-53],[-6,-33],[-66,19],[-11,-24],[-171,-9],[-88,-10],[-55,-81],[-100,0],[-11,-19]],[[41921,20554],[-28,53],[39,0],[-11,-53]],[[41927,20798],[33,-38],[-28,-29],[-5,67]],[[42907,21009],[-27,24],[-33,-24],[-44,9],[11,-47],[-16,-25],[-44,5],[-17,-19],[-6,-67],[-72,-28],[-38,-5],[-22,23],[-44,-86],[0,-91],[-16,-38],[5,-110],[-39,-24],[-5,-38],[22,-29],[22,-90],[-5,-44],[82,-172],[28,-48],[5,-67],[33,-120],[22,34],[11,-34],[-11,-33],[-38,-34],[-6,-76],[6,-101],[-55,-47],[-6,-25],[11,-91],[50,-128],[55,-82],[33,-96],[5,-134],[-10,-33],[16,-101],[28,-52],[0,-44],[33,-167],[-22,-48],[-45,-138],[-66,-125],[0,-86],[-11,-43]],[[42687,18214],[-28,-24],[-5,158],[33,86],[11,72],[-6,52],[12,63],[-28,38],[11,67],[-11,48],[11,38],[-5,134],[-11,86],[-17,38],[-5,53],[-28,67],[0,57],[-28,15],[6,48],[-16,48],[-28,143],[-11,125],[5,33],[-10,124],[-23,39],[11,62],[6,86],[-44,-10],[-28,101],[-5,48],[-33,72],[-17,-34],[11,-47],[-22,-87],[-22,-43],[-33,-15],[-17,-28],[-38,-19],[-6,-24],[-38,-19],[-34,-91],[-27,-34],[-28,29],[-38,-5],[-22,43],[-33,91],[-23,-57],[-33,-19],[6,138],[17,34],[16,134],[17,48],[0,72],[-23,177],[-27,81],[0,29],[-28,67],[-5,81],[-16,0],[0,-67],[-33,34],[-34,96],[11,9],[39,-48],[28,58],[-28,23],[-28,91],[-44,58],[-55,4],[-34,34],[12,58],[-39,14],[-44,91]],[[30532,26947],[-66,106],[-61,47]],[[30510,27407],[5,-24],[50,-67],[61,-33],[60,-53],[0,-19]],[[41022,28957],[27,5],[33,77],[94,-5],[55,24],[77,62],[-5,43],[49,19],[39,39],[127,86],[55,10],[44,57],[78,9],[22,43],[44,-47],[44,23],[27,-47],[28,5],[149,-19],[11,-68],[44,-77],[50,5],[16,-24],[61,-14],[55,29],[66,-15],[22,-19],[94,-4],[22,-34],[33,-4],[39,47],[61,29],[33,57],[11,87],[-39,28],[-33,96],[17,101],[44,42],[11,48],[55,34],[38,86],[78,-52],[49,-15],[28,-34],[88,-4],[138,-77],[27,5],[83,-33],[17,-144],[16,-76],[67,-53],[60,-19],[72,-44],[88,10],[44,38],[94,24],[44,24],[77,-19],[28,-24],[77,0],[44,-19],[56,-72],[110,-19],[0,-67],[72,-81],[33,-19],[93,4],[45,-19],[104,-29],[33,15],[61,-15],[77,53],[116,19],[44,24],[50,0],[55,29],[17,53],[65,57],[111,72],[66,-10],[83,-81],[66,-19],[66,38],[61,-24],[22,-29]],[[32490,8006],[0,91],[-11,48],[5,62],[-22,43]],[[32462,8250],[6,91],[0,345],[-17,96],[-49,153],[0,52],[-17,130],[-22,114]],[[32363,9231],[72,116],[38,81],[61,105],[-6,48],[17,52],[0,77],[28,43],[33,81],[21,96],[-38,134],[11,38],[0,53],[-22,53],[28,29],[16,109],[-5,163],[5,144],[-16,57],[11,91],[-34,9],[-16,24],[-55,39],[-50,5],[-38,57],[-28,10],[-38,42],[-127,10],[-6,96]],[[32225,11093],[-5,81],[-23,96],[72,53],[72,33],[171,100],[143,87]],[[32655,11543],[28,-77],[39,-76],[87,43],[28,-5],[17,-48],[11,-86],[-6,-105],[-16,-72],[-28,-72],[28,-72],[-6,-33],[83,-153],[22,-19],[11,-82],[22,0],[0,86],[-16,87],[27,91],[55,18],[11,39],[6,76],[-6,115],[11,110],[0,53],[-27,58],[-45,114],[-54,110],[-28,38],[-28,5],[-16,39],[-11,191],[-22,124],[49,173],[44,0]],[[32925,12213],[34,5],[60,-10],[33,43],[17,0],[44,-43],[17,-29],[60,5],[28,34],[77,-39],[55,34],[17,29],[11,52],[39,5],[49,-38],[50,53],[55,14],[38,38],[44,19],[45,38],[71,101]],[[33769,12524],[22,-57],[-16,-29],[5,-82],[-22,-71],[11,-34],[-5,-58],[16,-95],[-5,-33],[0,-101],[11,-77],[-22,-38],[22,-24],[0,-234],[5,-77],[34,-95],[0,-92],[-23,-38],[-11,-48],[6,-43],[-11,-57],[-72,-139],[-16,-67],[-34,-19],[11,-38],[-32,-44],[-61,-57],[-22,-47],[-67,-24],[-82,-53],[-138,-134],[-44,-72],[-6,-38],[-55,-106],[-33,-76],[-55,-34],[-50,-71],[-44,-91],[-61,-87],[-33,0],[-5,-181],[44,-91],[22,-163],[22,-72],[5,-105],[11,-76],[23,19],[-6,-144],[11,-53],[-11,-62],[-17,-143],[17,-101],[-38,-101],[-39,-62],[-60,-43],[-117,-72],[-77,-52],[-60,-62],[-23,-44],[-33,-96],[39,-76],[17,5],[-11,-163]],[[32606,8006],[-116,0]],[[25690,19487],[-22,24],[-17,43],[-22,9],[-28,44],[-11,57],[-44,47],[-27,120],[-17,25],[-55,0],[-33,76],[-33,43],[-39,24],[-83,0],[-16,-24],[-50,-5],[-16,-15],[-50,-4],[-28,14],[-27,-24],[-22,-66],[-11,-101]],[[25039,19774],[0,120],[11,90],[16,87],[23,76],[27,192],[-11,172],[-11,53],[-5,81],[-50,101],[38,114],[12,120],[-23,53],[-10,66],[-34,-4],[-38,124],[-17,-14],[-11,-62]],[[24956,21143],[17,143],[121,0],[215,0],[265,0],[0,144],[-6,38],[0,110],[-16,101],[22,67],[60,76],[39,10],[55,43],[0,326],[0,373],[138,0],[232,0],[143,0],[0,353]],[[36400,9758],[-39,-5],[-10,15],[27,109],[22,20],[17,-29],[5,-67],[-22,-43]],[[32655,11543],[-33,9],[-28,82],[-5,38],[33,91],[5,86],[-10,29],[10,47],[62,39],[-23,105],[6,139],[-11,19],[22,106],[-17,71],[61,82],[-22,100],[-33,53],[5,48],[-22,52],[-33,15],[-11,57]],[[32611,12811],[33,-24],[33,-5],[12,-24],[55,0],[49,20],[66,-135],[6,-110],[16,-81],[-10,-101],[44,-86],[10,-52]],[[45594,16553],[16,24],[17,-19]],[[42864,17190],[11,-29],[-28,-28],[-11,28],[28,29]],[[42907,17180],[6,67],[28,-33],[72,-39],[11,-47],[28,0],[5,-58],[-17,-53],[22,-57],[17,43],[49,34],[11,-34],[39,10],[6,43],[21,28],[6,44]],[[43211,17128],[28,-10],[38,-96],[39,-62],[50,-62],[44,-154],[11,-129],[-6,-115],[-11,-57],[11,-67],[0,-163],[17,-42],[38,-53],[28,-87],[39,-148],[11,-67],[-22,-33],[-28,24],[-44,0],[-33,-33],[-17,57],[-72,71],[-27,15],[-28,52],[-60,57],[-39,54],[-17,38],[-38,29],[-38,52],[11,39],[-6,66],[-33,58],[-11,43],[-50,95],[17,15],[-23,57],[-5,115],[-22,110],[-22,149],[5,52],[-16,110],[-23,72]],[[44364,15965],[11,-48],[61,-44],[38,5],[50,-47],[55,4],[17,48],[16,91],[-11,67],[45,34],[-6,57],[27,53],[77,24],[94,43],[39,23],[71,164],[78,148],[5,72],[11,14]],[[45191,16759],[0,-57],[11,-87],[22,-9],[6,77],[-22,76],[38,5],[28,48],[-22,86],[22,43],[33,-10],[44,96],[11,67],[55,110],[39,124],[17,-38],[5,-48],[33,86],[39,-100],[44,-38],[5,-53],[-11,-24],[0,-71],[28,0],[33,33],[16,-53],[61,-38],[11,-38],[61,-48],[27,5],[17,-53],[-22,-38],[-72,-39],[-60,10],[-12,-48],[17,-43],[39,-43],[5,-29],[-88,-43],[-44,24],[-23,-43]],[[30631,8576],[0,-484],[0,-244],[0,-282],[-49,-14],[-78,-125],[-82,24],[-78,-5],[-39,29],[-60,20],[-16,57],[5,38],[-49,91],[-23,-10],[-33,-110],[-39,-43]],[[30090,7518],[-65,105],[-22,25],[-83,210],[-17,105],[-16,57],[5,53],[-28,77],[-5,100],[-17,67],[6,53],[-6,134],[-11,72],[-21,62],[-23,139],[6,114],[-6,96],[-11,86],[17,15],[-6,129],[-22,72],[-55,120],[-22,76],[-55,158],[-28,106],[-16,95],[-22,43],[-89,301],[-66,125],[-11,57],[-28,72],[-4,72],[0,139]],[[31150,10543],[32,14],[105,28],[100,-14],[27,-24],[28,-47]],[[53309,9500],[17,-53],[-28,-5],[-22,67],[33,-9]],[[53216,9571],[-44,29],[11,72],[33,-68],[0,-33]],[[52725,9825],[33,-10],[83,-110],[33,-24],[33,-57],[5,-29],[33,-53],[99,-100],[45,-67],[55,-57],[11,-48],[-39,-34],[-88,82],[-17,37],[-49,49],[-66,52],[-72,106],[-60,105],[-50,110],[11,48]],[[29655,19185],[-44,-9],[-105,-96],[-28,-67],[-49,0],[-22,29],[-77,43],[-83,4],[-72,-9],[-44,-14],[-39,-39],[-49,-91],[-61,5],[-72,24],[-99,105],[-50,15],[-66,-67],[-27,-5],[-17,-24],[-38,29],[-34,86],[-49,72],[-11,-5],[-105,58],[-38,-29],[-67,0],[-61,-34],[-43,-52],[-6,-110],[-22,-77],[-50,-67],[0,-168],[-5,-62]],[[29864,21746],[17,-158],[17,-225],[60,-182],[0,-57],[50,-96],[6,-24],[-33,-110],[-17,-301],[-11,-244],[-11,-283],[-39,-77],[-132,-244],[-88,-215],[-23,-91],[-27,-67],[5,-72],[17,-115]],[[29655,19185],[22,-62],[50,-110]],[[28883,16716],[-22,0],[-22,-52],[-100,-10],[-16,19],[-55,-24],[-22,-29],[-39,-19],[-49,0],[-56,-14],[-43,48],[-34,52],[-22,81],[-11,72],[5,53],[-27,24],[-17,67],[-38,81],[-67,91],[-43,19],[-210,-9],[-11,-5]],[[14433,18453],[-33,77],[-77,110],[-55,143],[-44,48],[-50,91],[-33,43],[11,39],[28,-34],[11,15]],[[14830,19539],[-22,-66],[17,-135],[-33,-76],[-12,-67],[-11,-115],[6,-105],[0,-149],[-16,-33],[-28,-120],[16,-9],[12,-48],[-17,-20],[-16,-61],[11,-96],[22,-24]],[[28083,29570],[83,-9],[50,9]],[[28486,29393],[-44,9]],[[28216,29570],[-94,19],[-6,38],[50,-4],[39,28],[-28,38],[83,135],[38,177],[22,-10],[72,53],[11,28],[66,48],[144,15],[61,-44]],[[29693,34221],[28,-19],[-127,-52],[11,43],[88,28]],[[29898,34408],[33,-43],[-28,-48],[-132,29],[77,58],[50,4]],[[29986,34303],[44,33],[77,10],[-99,-91],[-198,-53],[-56,19],[50,39],[77,9],[50,48],[22,72],[-11,48],[61,67],[38,-19],[-50,-53],[17,-81],[-22,-48]],[[30251,34590],[77,-24],[-6,-86],[-154,-34],[17,92],[44,-5],[22,57]],[[30521,34719],[55,-14],[-77,-57],[-50,-63],[-77,-14],[-33,29],[77,48],[44,57],[61,14]],[[31188,34853],[-44,-62],[-61,33],[105,29]],[[31161,34925],[-55,-62],[-111,-19],[0,38],[166,43]],[[32297,34643],[11,-53],[-237,-81],[-61,-77]],[[30730,34437],[-44,-38],[-5,-43],[-50,-58],[-16,-48],[-94,29],[-138,24],[-33,-9],[5,-87],[-38,-67],[-94,39],[-83,-58],[-27,-72],[-72,-57],[44,-100],[-154,-158],[11,-53],[-67,-38],[-76,-10],[11,-91],[-23,-134],[-82,-143],[-45,-58],[67,-33],[11,-77],[-28,-48],[-105,19],[-77,-19],[-94,-115],[6,-29],[-33,-52],[33,-81],[-17,-24],[0,-92],[33,-81],[-22,-158],[67,-48],[44,-52],[-33,-86],[-61,-10],[50,-153],[-17,-96],[-50,-53],[-38,-14],[-39,-71],[22,-87],[-27,-100],[-39,33]],[[29313,31680],[0,19],[-83,20],[-33,67],[-55,-101],[-66,-28],[-22,13],[-45,-57],[-71,-62],[-61,-76],[-55,-43],[-111,-34],[-65,0],[-72,29],[-28,38],[-99,72],[-33,57],[6,68],[49,-5],[17,62],[-39,43],[-55,-48],[-33,19],[22,115],[-28,52],[17,68],[-6,62],[12,72],[-33,38],[-6,91],[50,19],[-50,38],[0,53],[39,5],[-56,95],[11,29],[78,-5],[82,-28],[17,19],[-149,28],[61,96],[88,38],[33,48],[144,-5],[-6,44],[-72,9],[39,48],[82,39],[83,-5],[28,57],[50,38],[-33,29],[71,29],[72,-19],[55,14],[-11,48],[38,34],[105,138],[44,19],[61,53],[16,62],[127,72],[17,110],[83,105],[-6,43],[50,34],[-6,57],[22,57],[105,86],[17,34],[115,34],[-27,52],[99,72],[-66,5],[0,38],[77,72],[116,38],[83,72],[11,43],[110,48],[22,57],[88,43],[-5,43],[33,44],[88,14],[50,63],[220,42],[83,-5],[39,34],[-6,43],[199,57],[38,-19],[17,-57],[94,81],[60,24],[56,72],[-23,24],[61,47],[171,-42],[-89,-101],[39,-38],[160,158],[39,-19],[-28,-49],[67,-42],[38,110],[55,48],[249,-72],[88,-52],[38,18],[133,-86],[0,-33],[-155,-48],[-49,-34],[16,-66],[177,14]],[[26197,34935],[0,19],[93,62],[56,-29],[-149,-52]],[[30880,37069],[66,-5],[38,-96],[127,5],[50,-23],[-50,-48],[171,-24],[105,-39],[-133,-33],[-82,-68],[-149,-32],[-72,61],[-154,-14],[-28,34],[116,100],[-94,34],[-77,76],[-22,53],[188,19]],[[30140,37432],[122,-4],[60,-53],[122,-57],[0,-62],[281,-44],[-16,-38],[126,-47],[-33,-34],[-204,-15],[-110,-86],[-5,-62],[-89,-19],[-33,-139],[-94,-34],[-82,-200],[-95,-15],[-137,77],[-66,53],[-100,33],[-71,67],[104,24],[34,43],[325,29],[-27,34],[-122,-20],[-110,5],[-78,-24],[-115,0],[-61,72],[198,34],[139,52],[137,0],[-50,43],[-159,-10],[-22,39],[-122,19],[28,-72],[-83,-38],[-148,-10],[-183,110],[22,91],[-33,48],[-104,-5],[-72,110],[11,77],[226,5],[71,-15],[144,24],[55,-76],[121,52],[127,-148],[88,-34],[-66,159],[45,57],[104,4]],[[30769,37528],[231,-48],[6,77],[138,19],[94,-33],[446,-43],[34,-82],[-133,-47],[-72,-68],[-154,-19],[-94,-43],[-187,5],[-6,48],[-308,-5],[-144,38],[132,63],[-209,-10],[-105,10],[-71,47],[16,39],[127,52],[83,63],[176,-63]],[[53326,2488],[16,-57],[-49,-29],[-44,10],[27,67],[-5,53],[27,4],[28,-48]],[[584,3350],[-49,-33],[22,-53],[-39,-14],[12,57],[-6,48],[60,-5]],[[54087,4030],[33,19],[94,76],[27,-24],[-5,-134],[33,-67],[-61,-105],[0,-24],[-49,-72],[-33,-100],[-33,-53],[-39,-29],[-22,-62],[11,-72],[39,-14],[5,-47],[-27,-15],[-67,48],[-22,-38],[-71,-39],[-33,-33],[-33,-5],[-23,-43],[-16,-86],[-11,-120],[-22,-29],[-44,-148],[5,-53],[-49,-19],[-34,-58],[-44,-47],[-33,-62],[-88,-24],[-55,19],[-55,-10],[-33,67],[-50,0],[-28,48],[-88,-19],[-55,15],[0,66],[-39,0],[6,43],[44,29],[11,43],[-17,39],[23,28],[38,86],[61,68],[121,181],[45,34],[27,-10],[55,63],[88,66],[94,130],[55,38],[44,62],[33,62],[11,77],[28,110],[55,38],[27,58],[17,138],[22,53],[56,67],[33,-86],[21,-5],[17,-119]],[[54115,5776],[88,-24],[38,-33],[11,-44],[23,15],[33,-91],[6,-57],[-28,-5],[61,-139],[-6,-52],[11,-34],[-11,-43],[22,-38],[60,-20],[11,-62],[28,5],[-11,91],[6,77],[55,-101],[17,-134],[49,-67],[44,-43],[88,-43],[28,0],[33,24],[22,57],[44,38],[44,0],[39,-38],[-22,-71],[-11,-135],[-22,-52],[-34,-24],[-11,-82],[11,-33],[-66,19],[-71,-43],[-17,-38],[0,-67],[22,-19],[-38,-134],[-72,-139],[-60,-153],[-45,-53],[-61,-52],[-22,52],[-43,-5],[-39,39],[33,62],[49,125],[17,90],[-39,91],[-65,39],[-34,47],[-66,39],[-28,52],[6,39],[44,38],[50,19],[28,34],[10,114],[28,111],[-5,38],[21,24],[-33,95],[-5,48],[17,48],[0,43],[-50,5],[-11,47],[5,87],[-5,58],[-55,-34],[-17,53],[-78,172],[-49,95],[28,72]],[[35699,19994],[-38,172],[-22,34],[-16,86],[-12,24],[-16,86],[-17,52],[-44,192]],[[35534,20640],[149,96],[215,124],[94,58],[33,191],[66,364],[-66,191]],[[36207,22291],[39,-139],[44,-91],[44,-62],[60,-33],[78,-24],[33,-24],[39,5],[27,-34],[66,-153],[17,-48],[38,-57],[44,-19],[0,-58],[-27,-95],[-22,-49],[-22,-76],[-44,-57],[-61,-134],[-33,-110],[-33,-5],[-22,48],[-39,-91],[-22,-153],[6,-120],[10,-62],[-22,-19],[-77,-15],[-55,-43],[-22,-43],[-16,-115],[-28,-52],[-17,-10],[-99,-14],[-22,-15],[-39,-91],[11,-38],[-38,-91],[-45,-24],[-27,20],[-77,-5],[-16,-24],[-56,-43],[-49,-10],[-34,-24]],[[36163,22588],[11,43],[22,5],[16,-34],[-5,-81],[-11,-43]],[[38011,21980],[-78,-9],[-44,76],[-27,182],[-72,29],[0,100],[-44,96],[-33,5],[-11,-24],[-72,-39],[-39,5],[-55,-19],[-44,0],[-16,-33],[-77,38],[-67,14],[-28,-5],[-11,-43],[-43,15],[-28,-10],[-50,14],[-55,-38],[-88,0],[-22,19]],[[15636,17401],[-39,85],[-33,96],[-6,48],[22,4],[0,44],[23,38],[-34,24],[-16,-5],[-11,48],[-67,86],[-22,19],[-49,0],[-39,-42],[-22,-58],[11,-14],[-55,-68],[-39,-14],[-16,-58],[61,-114],[11,-48],[-44,-19],[-23,-43],[-39,-14],[-32,14],[0,48],[-22,72],[-22,28],[-6,-52],[-44,28],[-33,115],[-143,53],[-33,-24],[0,-48]],[[14924,18046],[28,-42],[5,-58],[17,-53],[21,-24],[50,5],[33,-33],[56,-15],[55,29],[21,38],[83,53],[45,43],[44,62],[55,-19],[16,5],[28,-33],[66,-5],[61,-48],[38,-43],[22,-53],[50,-62]],[[16783,10351],[-61,77],[-17,34],[-60,71],[-11,72],[-22,33],[-50,39],[-39,43],[-55,81],[-49,24],[-22,29],[-72,57],[-50,29],[-60,81],[-39,19],[-28,39],[-82,81],[-66,139],[-61,72],[-11,38],[-44,100],[0,53],[16,119],[-6,39],[-43,105],[-6,48],[-16,24],[-28,105],[-28,34],[-22,48],[0,38],[-22,105],[-50,67],[-5,72],[-11,52],[-72,206],[-11,77],[-27,124],[-22,58],[-28,148],[-39,110],[-55,105],[-33,115],[0,34],[-22,62],[-55,115],[-110,101],[-50,62],[-5,33],[16,38],[23,-9],[10,57],[-10,43],[-34,86],[6,38],[-34,96],[6,96],[77,163],[44,67],[28,29]],[[45991,16855],[-11,-24],[-55,-10],[61,58],[5,-24]],[[46129,17080],[11,-34],[-45,-14],[-5,29],[39,19]],[[46272,17180],[-22,-5],[-22,53],[38,38],[39,-29],[-33,-57]],[[46873,17974],[28,-9],[0,-57],[22,-62],[-27,-63],[33,-38],[10,-77],[-5,-76],[22,-58],[5,-129],[-22,-67],[-38,-43],[5,-100],[-16,0],[-5,67],[-28,105],[-11,62],[-28,-33],[0,-29],[-39,-86],[-5,-29],[33,-62],[17,-67],[-11,-101],[-23,-53],[-21,-19],[-17,58],[-6,67],[-22,-53],[-60,39],[-66,62],[-23,48],[-11,129],[6,67],[28,76],[-39,77],[-44,43],[-28,-5],[0,-38],[-16,-72],[-33,33],[-55,10],[0,43],[-17,15],[-33,-29],[-28,-91],[-5,-47],[-17,-44],[-22,-24],[-16,77],[21,43],[11,124],[39,68],[44,23],[39,5],[11,57],[22,44],[33,14],[11,38],[39,-24],[27,-53],[6,-66],[16,-10],[34,19],[27,106],[33,-24],[17,14],[11,81],[11,29],[44,-29],[11,43],[44,0],[6,34],[-23,143],[17,24],[55,-67],[22,-53]],[[46879,18099],[-11,19],[17,62],[11,-72],[-17,-9]],[[46658,18103],[-33,-37],[-38,-15],[-33,10],[-17,38],[5,29],[33,33],[17,38],[33,0],[28,-28],[5,-68]],[[46824,18137],[-28,58],[22,33],[6,-91]],[[46432,17903],[-22,0],[-17,71],[-49,44],[-22,62],[0,52],[38,25],[33,38],[-10,105],[16,29],[6,62],[44,48],[43,-24],[6,-39],[-33,-124],[-5,-57],[-22,-72],[-6,-67],[28,-72],[-11,-62],[-17,-19]],[[46471,18013],[-11,33],[16,86],[-5,20],[21,47],[62,230],[21,-9],[0,-96],[-16,-72],[-28,-29],[-44,-172],[-16,-38]],[[45539,17730],[5,77],[83,148],[38,29],[144,287],[33,48],[5,33],[-11,44],[33,124],[11,-38],[0,-58],[23,-110],[-11,-38],[-39,-24],[-22,-72],[-66,-43],[0,-38],[-50,-144],[-50,-38],[-22,-62],[-71,-96],[-33,-29]],[[46653,18535],[22,-10],[32,14],[17,-42],[-5,-116],[27,-57],[11,-67],[-38,-38],[5,-48],[-38,38],[-6,77],[6,66],[-16,77],[-39,-14],[0,67],[-17,72],[39,-19]],[[46333,18606],[22,-14],[33,9],[11,-28],[39,14],[-6,-71],[-27,-63],[-28,-33],[0,-29],[-39,-39],[-49,-19],[-33,-43],[-6,82],[16,91],[6,153],[-27,38],[11,34],[49,-39],[28,-43]],[[45958,18630],[-11,-9],[-17,81],[28,-10],[0,-62]],[[45969,18760],[22,-5],[11,-39],[-50,0],[-22,67],[39,-23]],[[46360,18798],[-11,-5],[-27,47],[27,10],[11,-52]],[[46757,18860],[12,-58],[33,-33],[-12,-67],[6,-115],[28,-115],[-72,5],[-45,91],[12,62],[-49,91],[-39,34],[-23,115],[83,-10],[50,10],[16,-10]],[[46520,18793],[34,-33],[16,-53],[-6,-43],[-88,105],[-38,-77],[11,110],[0,72],[49,-38],[22,-43]],[[46272,18812],[-27,-5],[16,72],[16,-19],[-5,-48]],[[46062,19123],[28,5],[33,-34],[28,0],[39,-81],[-12,-67],[12,-57],[-28,-87],[-22,-28],[-17,9],[-28,72],[-27,91],[-11,81],[-27,34],[-17,72],[49,-10]],[[46245,19138],[32,-20],[-16,-71],[-22,19],[-11,43],[17,29]],[[46620,19161],[-28,-23],[-22,33],[17,39],[0,62],[11,14],[33,-57],[-11,-68]],[[46123,20540],[72,-67],[55,-29],[33,57],[22,-24],[0,-43],[-16,-47],[-6,-134],[17,-53],[16,-15],[6,-43],[16,-14],[-16,-86],[-45,-172],[-65,-48],[-22,-53],[11,-29],[-34,-95],[6,-43],[33,-120],[-5,-57],[33,-144],[55,-34],[0,58],[44,48],[44,-10],[39,-57],[5,-76],[28,-15],[5,62],[61,-19],[22,-48],[-33,-5],[0,-52],[33,-67],[11,-43],[39,-24],[0,-67],[-12,-62],[-27,33],[6,72],[-45,-10],[-55,53],[6,29],[-22,67],[-45,38],[-16,43],[-44,52],[0,-62],[27,-86],[-11,-57],[-27,81],[-33,43],[-17,39],[-55,47],[-44,-42],[-17,-44],[-38,10],[-39,58],[-33,28],[0,57],[49,82],[-5,62],[-55,14],[0,-91],[-22,15],[-22,81],[-28,19],[-5,72],[-17,86],[-5,115],[-22,57],[11,77],[33,-38],[11,-34],[27,-5],[17,48],[-17,81],[0,34],[23,125],[0,95],[-12,53],[39,239],[33,29],[44,5]],[[50629,12830],[33,-15],[22,-33],[-5,-38],[-44,10],[-22,52],[16,24]],[[50602,12787],[-39,38],[16,43],[17,-14],[6,-67]],[[50949,12935],[28,0],[27,-38],[-17,-33],[-21,14],[-17,57]],[[50243,13801],[-33,53],[6,39],[38,-43],[-11,-49]],[[51462,13562],[-38,-48],[-45,24],[-27,44],[-6,86],[-28,19],[-38,71],[-11,43],[5,106],[56,-48],[16,-58],[39,-90],[44,-38],[21,-49],[12,-62]],[[50116,13907],[-28,48],[33,4],[-5,-52]],[[51258,13907],[-17,91],[33,-29],[-16,-62]],[[50838,14223],[34,24],[11,-24],[33,-15],[-5,-129],[-17,-38],[-39,-15],[-5,-19],[27,-76],[-11,-29],[-33,-29],[-55,0],[-11,-52],[-50,-67],[-44,-19],[-60,-58],[-89,-4],[-38,9],[-17,38],[-33,10],[-22,-14],[-50,61],[-60,39],[-11,62],[99,15],[39,-24],[38,0],[22,19],[33,-5],[33,58],[17,-58],[22,-5],[33,24],[17,-19],[49,29],[17,62],[39,67],[38,5],[16,48],[-21,114],[5,39],[39,-5],[10,-19]],[[49168,12892],[0,397],[0,216],[-22,43],[22,110],[0,469],[0,225],[0,335]],[[49168,14687],[27,-5],[111,-91],[16,0],[33,-33],[105,-67],[94,-29],[27,-43],[55,-62],[67,-5],[21,-48],[50,-53],[22,-43],[39,-9],[66,-124],[0,-96],[-6,-62],[17,-20],[55,-19],[28,-19],[99,-86],[61,-10],[22,-28],[39,-87],[5,-47],[-11,-44],[-66,-9],[-39,5],[-22,-29],[0,-29],[22,-66],[11,-58],[44,-63],[11,-28],[45,-62],[44,-43],[16,-116],[33,-47],[22,-101],[33,-9],[44,19],[23,-15],[-6,-62],[11,-57],[33,-24],[61,-9],[16,-34],[-32,-19],[21,-62],[67,-44],[49,-14],[-28,-48],[23,-28],[-23,-29],[-27,-5],[-44,19],[-11,29],[-33,34],[-61,18],[-77,15],[-17,19],[-44,-10],[-27,20],[-78,14],[-33,43],[-5,34],[-33,62],[-45,52],[-10,82],[-39,14],[-22,77],[-39,81],[-5,34],[-34,72],[-44,33],[-43,10],[-83,38],[-22,38],[-39,19],[-44,-53],[-50,24],[6,-71],[-11,-24],[-50,0],[11,-48],[-49,-19],[-78,-19],[50,-39],[44,-90],[-5,-44],[-44,-33],[-67,-67],[-66,43],[-88,-10],[-33,15],[-44,-19],[-22,28]],[[51004,14094],[-11,-19],[-27,52],[-6,101],[-16,76],[-44,115],[-23,24],[-44,24],[-44,72],[-77,86],[-33,14],[0,38],[93,-81],[50,-62],[39,-24],[50,-91],[98,-144],[17,-43],[0,-38],[-22,-100]],[[50613,14672],[-28,-5],[-33,49],[11,28],[22,5],[33,-33],[-5,-44]],[[50100,14864],[49,-14],[-28,-43],[-43,-5],[-50,24],[6,38],[66,0]],[[50514,14979],[-34,24],[11,29],[23,-53]],[[31188,29608],[6,-57],[71,-130],[-5,-85],[-17,-34],[-38,-10],[-105,-134],[-61,-95],[11,-106],[-27,-24]],[[31023,28933],[-77,39],[-22,33],[-39,19],[-88,5],[-28,-28],[-39,19],[-71,-19],[-17,-39],[-44,5],[5,34],[-55,76],[-44,-53],[-27,-4],[-22,33]],[[29754,30216],[-5,38]],[[29749,30278],[27,-9],[138,62],[138,38],[55,77],[50,10],[55,38],[93,23],[72,5],[56,-115],[44,-19],[66,10],[33,19]],[[30576,30417],[89,-10],[302,-19],[89,0]],[[17439,20492],[38,0],[39,-19],[0,-39],[-50,-71],[-27,-10],[-55,10],[-50,-10],[-50,5],[-5,71],[-11,29],[16,48],[149,-9],[6,-5]],[[47563,27129],[27,-62]],[[47590,27067],[-38,0],[-67,-86],[-49,-110],[11,-57],[-6,-144],[-60,-39],[-33,-62],[-61,-47],[-17,-34],[-44,-48],[-55,-9],[-11,-29],[-49,-28],[0,-91],[-17,-15],[-11,-53],[50,-24],[38,-61],[66,-77]],[[46967,25818],[-38,29],[-28,-15],[-39,15],[-27,29],[-28,-48],[-83,33],[28,44],[-49,9],[-6,29],[16,71],[50,72],[-22,34],[38,114],[-5,68],[-39,19],[-110,71],[-5,39]],[[24940,24464],[38,-5],[33,-24],[-22,-29],[-49,20],[0,38]],[[23644,25837],[72,0],[-12,-28],[-33,-5],[-27,33]],[[23257,26005],[-44,-10],[6,39],[38,-29]],[[26435,25656],[-67,-48],[-44,19],[-72,10],[-61,-25],[28,110],[5,87],[-16,62],[16,62],[-21,91],[-45,-19],[-5,57],[-33,19],[17,168],[33,57],[49,158],[-5,39],[10,95],[17,43],[5,77],[-16,67],[-22,153],[16,29]],[[32809,24038],[45,76]],[[4699,10528],[-44,-9],[-6,47],[39,10],[11,-48]],[[35424,22191],[-50,-5],[-22,53]],[[35352,22239],[6,28],[-12,77],[0,77],[17,47],[22,101],[39,48],[17,-43],[27,-29],[-11,-105],[16,-101],[0,-53],[-27,-81],[-22,-14]],[[31050,27598],[-33,58],[0,72],[-61,-44],[-27,34],[-61,34],[0,38],[-27,19],[22,43],[-61,38],[-50,53],[0,76],[-66,58],[-16,38]],[[31072,28623],[50,38],[33,-29],[39,5],[55,-19],[88,0],[44,-58],[88,53],[111,24],[22,57],[44,14]],[[31894,27933],[33,-43],[50,-14],[72,43],[49,-5],[22,-33]],[[32120,27881],[-22,-115],[-77,-24],[5,62],[-33,-14],[0,-96],[-33,-76],[0,-87],[-11,-67]],[[33422,28388],[-100,-5],[-33,-43],[-44,-14],[-39,-43],[-38,14],[-38,-29],[-72,-9],[-67,-67],[-21,14],[-28,-48],[-33,-19],[0,-58],[61,-148],[33,-38],[44,24],[39,-5],[44,24],[44,-19],[-22,-43],[-6,-48],[-83,-14],[-27,23],[-33,0],[-55,-81],[-61,0],[-39,-23],[-27,-49],[-56,-42],[-38,14],[-33,33],[28,96],[-12,52],[-55,25],[-44,43],[-44,-5],[-17,19],[100,96],[50,24],[27,33],[-72,62],[-110,-23],[-66,47],[-6,48],[55,9],[-60,68],[-28,-24],[-38,9],[-116,-29],[0,-24],[-44,-104],[-45,-63],[-93,-48],[22,-95],[-6,-24]],[[49967,27670],[22,-19],[-11,-38],[-27,-10],[-50,-86],[-17,19],[67,134],[16,0]],[[50331,27900],[-49,-29],[-56,-62],[-38,-5],[-11,-38],[-39,-43],[-28,24],[94,115],[89,24],[44,57],[33,0],[-6,-43],[-33,0]],[[50502,27986],[-5,57],[105,101],[-23,-77],[-38,-28],[-39,-53]],[[51456,29273],[-22,-28],[-82,-29],[-6,53],[72,28],[32,82],[34,-38],[-28,-68]],[[49438,30398],[33,-67],[-11,-72],[28,-110],[21,-53],[17,-90],[0,-96],[-22,-48],[-6,-101],[23,-124],[38,-105],[39,-268],[38,-106],[33,-157],[55,-139],[-99,129],[-38,10],[-78,-15],[-27,-43],[-72,-287],[0,-105],[33,-77],[33,-53],[12,-61],[21,-54],[39,-14],[17,-105],[-28,-38],[-16,90],[-72,15],[-23,29],[-32,-19],[-28,-82],[-11,-71],[-22,-49],[-22,49],[-17,100],[6,67],[27,124],[-10,111],[33,129],[-6,76],[-44,125],[27,90],[17,135],[0,205],[-11,91],[22,101],[0,62],[-16,58],[-33,52],[-34,86],[0,115],[22,53],[12,134],[-12,86],[50,43],[28,-29],[33,14],[-6,39],[22,38],[5,67],[-54,86],[33,0],[33,29]],[[48699,30594],[16,-14],[-10,-72],[-45,-38],[-33,62],[-5,38],[22,53],[55,-29]],[[30576,30417],[39,48],[16,81],[67,5],[71,96]],[[30780,30642],[-55,-82],[44,-19],[49,5],[6,91]],[[53100,30522],[-50,5],[-44,77],[-44,43],[72,9],[5,-43],[61,-91]],[[52637,31561],[16,109],[72,25],[44,38],[22,-34],[-6,-62],[-99,-38],[-49,-38]],[[38297,33738],[-55,14],[-28,44],[89,-5],[-6,-53]],[[28,34408],[143,-52],[28,-58],[66,-19],[50,-53],[38,24],[116,-67],[243,-124],[27,-86],[49,-5],[-16,-67],[27,-86],[-27,-44],[171,-71],[0,34],[-61,37],[33,44],[-10,43],[-73,43],[133,15],[83,-24],[-11,-25],[99,-14],[83,14],[72,-43],[27,-38],[72,-43],[110,-91],[61,-14],[-116,-77],[0,-57],[-77,-29],[-111,-10],[-71,15],[-11,-82],[17,-62],[-28,-24],[-94,-34],[22,-61],[66,-29],[-88,-58],[-44,-5],[-111,44],[-88,76],[-71,25],[-56,0],[-66,57],[0,62],[-38,62],[-149,43],[-66,-33],[-127,-5],[-34,29],[6,42],[-44,34],[33,91],[-160,-19],[-27,-62],[71,-91],[-44,-91],[-55,-48],[0,67],[0,67],[0,67],[0,67],[0,72],[0,67],[0,67],[0,67],[0,67],[0,67],[0,67],[0,67],[0,67],[0,67],[0,72],[0,67],[28,-15]],[[35269,34475],[-99,-86],[-143,-38],[-39,19],[-22,53],[6,76],[49,48],[89,19],[120,-57],[39,-34]],[[53491,34585],[-43,-5],[-89,29],[-88,48],[88,48],[154,-39],[-22,-81]],[[36830,34681],[0,-57],[-132,5],[-11,33],[-89,9],[-71,106],[49,43],[45,0],[82,-62],[127,-77]],[[35672,35078],[50,-57],[-28,-34],[-121,82],[99,9]],[[54970,34930],[-39,62],[44,48],[99,62],[72,24],[0,-153],[-55,-24],[-121,-19]],[[171,35135],[66,-9],[132,-72],[6,-33],[-82,-34],[-221,-33],[-72,19],[0,53],[0,62],[0,38],[171,9]],[[39461,35332],[-110,5],[72,71],[55,20],[99,-44],[-116,-52]],[[39748,35451],[-94,10],[-33,39],[77,52],[55,-48],[-5,-53]],[[39009,35495],[-89,38],[78,29],[11,-67]],[[36047,35614],[165,-29],[-49,-115],[-44,0],[-66,-91],[22,-66],[-34,-77],[28,-19],[50,-101],[99,-110],[66,-48],[116,-57],[-77,-38],[-94,38],[-94,-28],[-32,18],[-166,-5],[-188,53],[77,92],[-77,38],[-6,57],[-66,-14],[-77,14],[-93,-14],[-61,90],[61,92],[82,0],[50,52],[38,91],[-54,33],[104,30],[0,81],[78,28],[88,0],[71,24],[83,-19]],[[38396,35552],[-99,-14],[-5,90],[22,25],[154,9],[72,-86],[-144,-24]],[[49350,35777],[176,-91],[22,-91],[-44,-5],[-243,24],[-132,39],[-22,28],[77,87],[166,9]],[[49174,35806],[-78,-24],[-67,71],[133,24],[12,-71]],[[44937,35916],[-16,-39],[-72,-48],[-94,15],[-82,33],[66,77],[198,-38]],[[50055,36184],[111,19],[143,-10],[6,-38],[248,-14],[66,-34],[17,-43],[-122,-43],[-121,-5],[-149,15],[-298,105],[45,96],[54,-48]],[[48396,36193],[-78,-5],[17,68],[94,-10],[-33,-53]],[[49024,36308],[138,-34],[12,77],[71,43],[149,-67],[110,-24],[77,14],[238,-76],[-78,-62],[22,-24],[-132,-63],[-127,20],[-72,62],[-27,105],[-72,-19],[28,-86],[65,-67],[67,-38],[-110,-38],[-61,47],[-265,-43],[-110,19],[-33,-61],[-204,38],[-50,52],[-110,72],[49,19],[0,110],[34,48],[110,53],[105,24],[176,-101]],[[37949,36418],[-132,-43],[-193,-48],[-656,-162],[-105,-73],[-33,-47],[-204,-101],[-88,-5],[16,-47],[-33,-53],[-104,-33],[16,-58],[-110,-81],[-28,-39],[-83,-19],[-254,44],[-82,23],[-71,63],[137,52],[193,230],[88,48],[78,115],[93,-10],[72,86],[121,53],[183,38],[11,24],[143,15],[16,42],[94,5],[183,-19],[226,43],[215,62],[33,39],[115,48],[111,24],[143,-20],[67,-48],[0,-52],[-116,-82],[-62,-14]],[[35110,28177],[-23,-38],[-60,-28],[11,-49],[-39,5],[-38,-43],[-111,-47],[-44,-159],[-72,-105],[-10,-38],[82,-87],[27,-114],[23,-29],[-11,-81],[5,-43],[-11,-53],[39,-62],[5,-34],[78,-138],[22,-63],[27,-33]],[[33692,27373],[-17,15],[-82,120],[-105,114],[-71,29],[-50,77],[-55,0],[-28,57],[-105,77],[50,28],[110,24],[0,76],[28,39],[17,57],[38,25],[44,0],[-61,86],[-27,0],[-22,62],[33,-5],[28,24],[49,-10],[-6,43],[127,63],[-11,62],[-83,-34],[-27,10],[-44,-24]],[[33422,28388],[11,48],[0,81],[38,15],[56,67],[77,-10],[55,5],[33,119],[-22,72],[-27,14],[21,63],[-16,52],[33,15],[38,67],[-16,81],[-39,-5],[-93,77],[-39,-10],[-44,38],[-55,24],[-16,-28],[-33,4],[-39,39],[-17,53],[-27,33],[-100,-33],[-71,-5],[-28,38],[-33,5],[-45,-19],[-27,48],[0,62],[-55,124],[-55,-9],[-72,19],[-16,119],[38,29],[-44,53],[-11,48],[-44,52],[-88,0],[-39,-23],[-61,14],[-60,-72],[-55,14]],[[31861,31800],[0,67],[50,-9],[16,38],[78,0],[33,48],[154,-10],[-66,62],[-105,0],[-61,53],[0,62],[-22,19],[-49,-28],[-61,-10]],[[32297,34643],[94,-29],[88,43],[138,-23],[-28,-44],[-61,-33],[166,-15],[39,-33],[82,4],[116,-28],[44,14],[88,-19],[287,-139],[105,-96],[66,-5],[111,-71],[71,-14],[55,-53],[89,-34],[22,-119],[38,-19],[-28,-106],[-104,-100],[-61,-43],[-127,-48],[-94,-15],[-115,5],[-94,39],[-143,19],[-155,33],[-82,53],[-144,24],[-110,38],[-50,53],[-55,-29],[116,-110],[66,-24],[-17,-33],[83,-24],[94,-77],[11,-53],[-55,-100],[61,-115],[11,-115],[60,-57],[55,5],[77,-53],[34,-48],[154,-53],[94,39],[11,38],[-16,62],[-34,19],[-83,5],[-99,119],[38,39],[12,53],[44,4],[55,-23],[77,-63],[61,-5],[99,-38],[78,-43],[76,58],[56,0],[-22,62],[-78,96],[6,72],[77,37],[55,63],[122,43],[110,110],[94,-34],[66,5],[50,-28],[71,-72],[28,95],[44,72],[-33,120],[-66,24],[-11,38],[71,206],[-11,71],[-116,77],[116,-19],[138,10],[127,-24],[122,-144],[0,-33],[-177,-24],[-94,-77],[0,-33],[94,-48],[50,-82],[93,-23],[182,47],[39,134],[-6,34],[144,29],[-11,38],[60,14],[122,53],[138,76],[77,15],[99,38],[44,-24],[61,77],[171,72],[28,-38],[-33,-58],[27,-29],[-6,-86],[155,43],[77,53],[77,19],[111,-5],[77,-19],[160,91],[110,33],[72,-71],[-39,-39],[-5,-43],[82,-29],[45,19],[0,82],[110,19],[44,58],[-39,33],[-77,134],[133,72],[115,-24],[243,-29],[188,-62],[66,-48],[77,-24],[126,-62],[100,-24],[22,-33],[188,-120],[71,72],[44,105],[-71,-9],[-83,85],[-17,68],[-143,62],[-44,-10],[22,96],[50,24],[-17,33],[22,144],[-72,14],[-27,77],[44,57],[160,72],[44,38],[55,91],[66,182],[50,77],[77,-19],[249,9],[143,-34],[55,-28],[-6,-96],[-27,-91],[-45,-86],[-60,-43],[27,-67],[78,-43],[22,-86],[-6,-101],[-22,-81],[11,-191],[-16,-111],[27,-57],[133,-81],[-66,-110],[5,-87],[-33,-47],[-55,-29],[-111,-158],[-77,-15],[28,-52],[-94,-62],[-82,14],[-67,67],[-110,0],[-28,-19],[22,-53],[177,-62],[121,5],[116,-33],[66,23],[11,62],[171,82],[44,38],[39,115],[94,77],[16,81],[-60,119],[27,92],[88,33],[149,29],[55,0],[100,-105],[22,-77],[-11,-149],[49,39],[23,76],[49,19],[-49,178],[-254,90],[-88,0],[-56,-33],[-198,24],[11,86],[-44,53],[44,129],[77,115],[-127,187],[-66,48],[88,109],[127,44],[77,43],[11,110],[-44,71],[88,-5],[39,-57],[22,-81],[-77,-130],[39,-47],[-28,-86],[121,-34],[227,-14],[71,-48],[83,0],[-61,77],[-110,14],[-177,76],[-44,86],[61,29],[94,0],[77,-48],[99,19],[-27,53],[-83,24],[154,57],[144,-5],[83,-42],[132,-43],[5,-24],[122,-72],[66,-5],[105,19],[71,-28],[-50,-67],[-88,-43],[-16,-73],[55,-33],[66,5],[6,-58],[-23,-76],[23,-38],[93,38],[12,38],[-89,153],[61,120],[-55,91],[-89,14],[-65,86],[-166,43],[-50,34],[-22,53],[28,67],[-50,38],[-16,76],[27,58],[188,24],[265,0],[187,29],[104,-10],[28,24],[149,19],[66,-19],[-99,-53],[116,-5],[66,58],[-55,19],[-94,100],[-88,20],[105,57],[-127,58],[50,24],[72,-38],[60,23],[93,101],[254,91],[133,33],[513,72],[-105,38],[265,48],[154,-5],[199,-57],[93,14],[177,72],[149,-43],[0,43],[-127,62],[231,0],[83,14],[39,48],[-17,82],[248,143],[215,57],[287,-62],[28,-29],[-105,-42],[39,-39],[253,-28],[22,-19],[-154,-115],[182,0],[61,57],[375,10],[204,-39],[127,-62],[33,-91],[82,34],[28,-77],[49,-14],[-60,-53],[-83,-23],[122,-34],[-17,-43],[-110,-77],[-160,-76],[-309,-115],[-5,-44],[-111,-38],[-138,-91],[-143,-19],[-88,-81],[-77,-5],[-78,-95],[61,-5],[61,52],[198,10],[204,57],[39,29],[77,-5],[143,62],[-104,5],[-67,24],[94,62],[121,-23],[111,-53],[154,0],[193,-43],[116,4],[83,24],[176,-4],[122,-24],[176,0],[-6,-96],[232,-76],[166,-10],[132,10],[61,-24],[55,43],[83,-24],[71,67],[-49,67],[27,62],[138,24],[61,-10],[154,-67],[50,15],[66,-53],[72,62],[143,-28],[177,-96],[-17,-62],[39,-48],[-111,-58],[116,-14],[0,-96],[-55,-4],[-72,47],[-66,0],[138,-139],[127,-172],[193,-105],[83,43],[72,96],[-6,28],[49,106],[77,9],[95,-76],[104,-29],[88,0],[50,33],[132,34],[83,-15],[105,-42],[105,-72],[50,52],[-12,48],[116,29],[66,-52],[116,14],[-44,57],[-6,82],[28,43],[-99,4],[-6,44],[67,47],[132,0],[94,24],[-55,87],[93,-10],[116,-39],[221,-4],[303,-43],[116,-29],[0,-24],[-226,4],[-94,-33],[50,-24],[83,24],[242,15],[0,-53],[-122,29],[-11,-77],[-99,-24],[17,-43],[93,14],[83,48],[116,101],[50,14],[231,-24],[128,-43],[16,-72],[-127,-9],[154,-82],[94,-14],[138,-48],[144,-124],[198,14],[187,43],[132,15],[238,-5],[88,-10],[204,-67],[72,-52],[28,-106],[-44,-96],[16,-23],[165,-48],[23,-144],[77,-9],[0,86],[126,76],[127,20],[150,0],[49,-29],[193,-10],[171,-24],[116,68],[77,-44],[28,-86],[154,-53],[44,-81],[143,15],[67,57],[-61,148],[-66,15],[55,62],[-6,67],[116,-5],[249,-43],[87,5],[78,-20],[209,-4],[67,14],[182,-72],[72,-9],[82,-34],[144,-28],[176,-110],[0,-1082],[-88,-67],[-44,-9],[-100,-53],[-115,33],[-61,58],[-44,-38],[-100,18],[-11,-42],[78,-20],[93,29],[-5,-81],[82,-63],[67,15],[5,-72],[33,-9],[11,-87],[-11,-28],[61,-77],[44,-24],[-11,-52],[39,-39],[11,-47],[-72,-82],[0,-19],[-171,62],[-99,9],[0,44],[-50,9],[-6,-43],[-99,-76],[-165,-67],[-83,-43],[-33,-34],[-55,-5],[-50,-33],[-33,9],[-71,-86],[-122,-76],[-77,-82],[-138,-86],[-50,-23],[-27,-106],[-16,-24],[-56,29],[-55,101],[-61,47],[-115,-5],[-111,-19],[-121,-57],[-94,-120],[-33,29],[33,139],[-160,-96],[-33,-10],[0,-43],[-33,-29],[-28,44],[-43,19],[-39,-24],[-55,19],[-67,-72],[-11,-134],[-43,-77],[-83,-85],[-50,-72],[-28,-105],[22,-53],[61,-29],[39,48],[77,-43],[-6,-43],[-66,-77],[6,-148],[66,-39],[16,-124],[-43,-52],[-34,9],[-33,43],[-83,-38],[-49,-120],[-6,-81],[17,-62],[38,-68],[0,-38],[-55,-62],[-66,0],[-27,20],[-56,-15],[-104,-96],[-22,-53],[-11,-90],[16,-34],[-11,-48],[17,-29],[-67,-9],[-94,-53],[-54,-47],[-17,-68],[0,-71],[-22,-77],[-39,-81],[-39,-53],[-33,-19],[-66,-91],[-66,-67],[-11,72],[-27,43],[0,144],[-22,129],[-23,67],[-16,105],[-22,206],[-55,306],[-6,134],[23,201],[38,172],[116,125],[38,86],[-27,77],[27,24],[72,-10],[33,62],[50,-9],[49,29],[110,90],[89,105],[39,91],[77,72],[27,43],[50,24],[55,57],[33,53],[50,34],[44,86],[99,52],[45,34],[54,4],[56,34],[-17,48],[61,72],[-28,29],[33,71],[6,91],[22,67],[60,53],[-5,53],[-50,9],[-138,-43],[-27,-81],[-22,-129],[27,-15],[-21,-48],[-106,29],[-27,-34],[-199,-177],[-22,-38],[-44,-5],[-39,24],[28,53],[-66,29],[-11,48],[45,66],[21,68],[-21,33],[-95,-53],[-44,53],[-143,-24],[-44,-19],[-88,14],[-61,-33],[-61,-58],[-11,-57],[-88,-72],[-28,-62],[-66,-62],[-72,-48],[-60,-77],[-17,-57],[-27,-15],[-17,-85],[66,4],[89,-53],[0,-42],[-72,-15],[-39,19],[-66,-38],[-49,43],[-50,-5],[-83,-81],[-66,28],[-50,-33],[-115,-9],[-34,57],[61,24],[77,0],[-77,101],[-77,14],[-28,-34],[-55,39],[-127,48],[-88,-39],[22,-38],[-77,-14],[5,-53],[-38,5],[-33,38],[-61,-5],[-55,-33],[-72,28],[-93,15],[-23,-58],[-55,-4],[-17,38],[-38,19],[-165,-10],[-94,10],[-55,-19],[-50,9],[-94,-38],[-83,-63],[-66,-99],[-93,-63],[-33,-33],[-50,-134],[-66,-34],[-23,-38],[-66,-63],[-38,-18],[-33,-48],[-50,-34],[-66,-91],[-22,-52],[-61,-82],[-99,-96],[-105,-76],[-27,-48],[-94,-62],[-44,-48],[0,-57],[88,-43],[149,9],[-17,-225],[50,15],[50,66],[38,-33],[-11,-71],[-44,-49],[77,5],[77,48],[17,48],[33,-24],[-44,-62],[33,-5],[22,48],[11,81],[-6,77],[100,-34],[55,24],[83,-77],[16,-52],[56,-62],[44,-29],[60,-82],[-33,-47],[16,-101],[-21,-57],[55,-72],[-22,-71],[-66,-82],[-33,-110],[-28,-120],[-5,-66],[5,-116],[-11,-62],[11,-86],[-33,-148],[11,-24],[-22,-53],[-17,-100],[-66,-91],[-49,-53],[-34,-72],[-22,-72],[-66,-85],[-39,-144],[-32,-81],[-67,-120],[-132,-177],[-55,-96],[-33,-43],[-17,-48],[-39,-33],[-55,-111],[-5,-37],[-55,-87],[-67,-62],[-148,-129],[-23,0],[-60,-34],[-28,29],[-77,29],[-28,-10],[6,100],[-72,-38],[-11,43],[-99,-177],[-61,15],[11,-39],[-22,-62]],[[43332,37251],[6,-53],[155,19],[104,-81],[89,-14],[16,-77],[-72,-43],[-171,-24],[-386,-19],[-209,-67],[-83,24],[110,81],[39,96],[88,62],[34,62],[82,63],[121,23],[77,-52]],[[41766,37371],[-77,0],[-171,81],[171,19],[248,-39],[-171,-61]],[[42533,37500],[248,-39],[116,-67],[-44,-38],[-11,-86],[-55,-24],[93,-77],[-77,-33],[-160,-14],[-176,24],[-66,33],[-172,5],[-137,23],[-89,87],[-176,24],[182,91],[110,76],[221,0],[193,15]],[[36312,37552],[-11,-76],[-182,4],[33,72],[160,0]],[[35771,37509],[-148,29],[93,33],[105,-38],[-50,-24]],[[36450,37490],[-89,5],[-49,101],[215,-10],[-77,-96]],[[34839,37691],[50,-24],[-116,-52],[-132,-34],[-160,58],[259,28],[99,24]],[[37095,37686],[-17,-57],[-154,-58],[-270,29],[44,81],[138,-4],[171,28],[88,-19]],[[35269,37715],[83,-5],[138,-62],[-116,-43],[-171,-9],[-154,-39],[22,-52],[-88,-20],[-215,24],[-50,29],[154,58],[232,14],[11,71],[154,34]],[[35953,37763],[270,-29],[182,-57],[-132,-38],[-419,42],[99,82]],[[36549,37744],[38,-72],[-143,5],[-110,62],[127,29],[88,-24]],[[37277,37648],[-127,38],[88,39],[149,9],[33,48],[111,0],[66,-67],[-138,-48],[-182,-19]],[[41595,37772],[-49,-23],[-194,14],[17,28],[226,-19]],[[42357,37753],[33,-33],[149,-34],[21,-38],[-127,-43],[23,-81],[-337,-24],[-171,-39],[-253,44],[-105,52],[160,48],[105,72],[-73,28],[89,39],[193,19],[182,48],[111,-58]],[[36427,37882],[17,-95],[-336,0],[210,95],[109,0]],[[32098,15022],[39,15],[11,-34],[33,24],[39,81],[22,5]],[[32242,15113],[0,-38],[33,-53],[16,-48],[0,-110],[11,-48],[-16,-62],[-33,-10]],[[24956,21143],[-6,14],[17,154]],[[34988,23272],[33,-110],[28,-67],[-6,-48],[44,-48],[50,-100],[22,-10],[28,-52],[39,-34],[10,-86],[28,-57],[-17,-130],[17,-62],[33,-52],[16,-96],[39,-81]],[[35424,22191],[22,-24],[-17,-53],[39,-14]],[[35534,20640],[-39,-5],[-121,-33],[-38,-5],[-100,-28],[-93,-20],[-61,-19],[-132,-120],[-72,-153],[-28,-76],[-11,-58],[-50,-48],[-21,5],[-39,86],[-66,-9],[-138,24],[-33,28],[-66,0],[-116,-14],[-11,-14],[-33,14],[-17,29],[-28,9],[-33,-43],[6,-24],[-17,-43],[0,-72],[11,-23],[-33,-73],[-27,-37]],[[34128,19918],[-23,119],[-43,91],[-12,86],[-38,62],[-44,58],[-39,105],[-11,53],[-33,62],[-16,110],[-55,187],[-23,19],[-22,48],[-61,76],[-27,5],[-44,63],[-17,62],[-33,62],[-27,95],[5,58],[-22,100],[6,87],[11,52],[-17,105],[-16,29],[-28,120],[-39,110],[-27,57],[-55,72],[-56,29],[-55,148],[11,38],[-16,91],[-44,110],[-17,19],[-11,77],[-27,19],[-39,134],[-77,182],[-28,48],[-22,86],[-38,82],[-17,14],[-71,19],[27,95],[27,235]],[[32793,18013],[-33,0],[0,72],[11,33],[0,62],[-11,39],[-66,95],[-11,29],[-39,24],[6,29],[-11,205],[5,96],[11,77],[-72,0],[0,-58],[-99,0],[39,-81],[5,-39],[-5,-71],[11,-72],[-72,-110],[-11,-48],[-33,-72],[-66,-115],[-72,-18],[-44,67],[-72,81],[-60,-58],[0,-38],[-17,-43],[-38,-14],[-39,-29],[-22,-43],[0,-39],[-122,5],[-22,72],[-126,5],[-50,-33],[-33,9],[-55,120],[-44,67],[-11,57],[-111,-28],[-11,-53],[-38,-96],[5,-43],[-22,-62],[0,-58],[-17,-33],[-5,-48],[-33,-19],[-22,-43]],[[31072,18415],[11,120],[-22,14],[-33,47],[0,125],[-16,10],[-17,167],[-55,0],[-27,34],[11,57],[49,77],[6,33],[-23,111],[11,33],[56,67],[-17,48],[-6,57],[45,48],[0,38],[16,53],[22,33],[6,39],[-6,62],[28,47],[22,-4],[66,14],[44,-10],[0,431],[0,244],[0,369]],[[33218,21468],[0,-62],[33,-120],[22,-38],[-11,-24],[0,-105],[11,-48],[-6,-120],[11,-91],[0,-57],[17,-134],[22,-96],[33,-14],[127,-172],[6,-19]],[[32776,16568],[-76,-125],[-50,5],[-28,29],[-22,-24],[-77,-24],[-28,-48],[-33,19],[-22,53],[-28,-29],[-71,24],[-33,-38],[-11,-44]],[[25011,18812],[-11,48],[6,48],[-6,100]],[[25033,19152],[-11,48],[-16,19],[-6,48],[-27,110],[-33,67],[-39,38],[44,38],[44,101],[44,124],[6,29]],[[43498,15774],[-22,-20],[-28,20],[28,33],[22,-33]],[[52168,12155],[-88,58],[0,33],[88,-91]],[[53017,12442],[-33,-28],[-5,43],[22,10],[16,-25]],[[52344,12543],[66,-34],[22,-57],[-16,-24],[-44,10],[-55,57],[-11,91],[38,-43]],[[52041,12849],[33,-43],[61,5],[60,-81],[12,-43],[-28,-20],[-50,34],[-71,5],[-39,72],[0,52],[22,19]],[[51787,13012],[-33,5],[17,42],[16,-47]],[[52195,13113],[39,-82],[-11,-52],[33,-44],[17,-62],[-12,-58],[-49,68],[-17,52],[-16,96],[11,19],[-22,48],[27,15]],[[51738,13136],[22,-77],[-17,-28],[-33,48],[-11,53],[-28,-5],[0,48],[23,33],[16,-9],[11,-58],[17,-5]],[[51644,13170],[-28,29],[6,38],[27,-19],[-5,-48]],[[51572,13223],[-27,57],[22,28],[22,-47],[-17,-38]],[[52063,13055],[-38,43],[-106,91],[-54,76],[-6,34],[27,9],[17,-33],[39,-48],[16,0],[100,-114],[5,-58]],[[51694,13385],[-61,0],[-28,44],[-33,71],[-27,43],[16,34],[22,-34],[56,-52],[5,-43],[27,-49],[23,-14]],[[25805,17309],[-32,53],[-28,24],[-88,57],[11,43],[-11,34],[-33,14],[-28,39],[-11,76],[-28,19],[-22,62],[33,0],[28,53],[-34,0],[-16,19],[-11,101]],[[14119,19099],[-17,-62],[-88,5],[-55,24],[-66,57],[-78,19],[-44,48]],[[34194,18577],[33,-42],[28,-87],[33,-72],[44,-62],[38,-33],[83,0],[61,62],[55,43],[132,-19],[67,53],[38,48],[39,19],[33,-19],[50,9],[60,43],[39,5],[38,-14]],[[35065,18511],[0,-498],[-50,-134],[-93,-268]],[[35065,18511],[22,0],[89,52],[71,19],[55,58],[23,57],[27,15],[61,-43],[5,-48],[-16,-44],[-6,-47],[6,-72],[0,-129],[39,-34],[-67,-38],[-5,-24],[-11,-148],[0,-81],[-22,-49],[-39,-109],[-22,-96],[-28,-82],[-38,-66],[-28,-135],[-50,-134],[-16,-57],[-33,-168],[-61,-186],[-60,-149],[-39,-129],[-72,-144],[-99,-186],[-127,-225],[-33,-48],[-138,-134],[-94,-119],[-44,-77],[-49,-67],[-39,-67],[-138,-258],[-49,-115],[-39,-68],[-39,-124],[-28,-71]],[[28591,15438],[-28,0],[5,62],[28,20],[6,-48],[-11,-34]],[[18807,16936],[21,106],[17,14],[78,-14],[77,-39],[17,48],[71,-5],[33,15],[50,-5],[71,-19],[50,-29],[0,-58],[-17,-66]],[[31023,28933],[-39,-105],[-22,-33],[0,-48]],[[29649,27953],[22,19]],[[30102,30925],[-22,52],[38,105],[39,34],[-55,-191]],[[30494,31350],[-39,-38],[0,-86],[-22,-43],[-61,-43],[-28,53],[6,76],[38,58],[78,42],[28,-19]],[[31271,33547],[-72,5],[-88,-25],[-55,34],[-61,-5],[-16,-66],[-105,-53],[0,-82],[-66,-85],[49,-120],[-66,-53],[-39,-86],[-87,-58],[-45,-14],[-38,-43],[-56,-5],[-38,-52],[-66,-20],[-22,-76],[-89,-19],[11,-29],[-22,-62],[-66,-19],[17,-72],[-28,-130],[-27,-33],[10,-172],[23,-86],[76,-15],[62,-62],[44,-29],[60,-86],[6,-52],[-105,-86],[16,-44],[-16,-48],[-127,-71],[-105,-72],[-16,-43],[16,-63],[-27,-81],[0,-96],[11,-19],[-28,-61],[6,-58],[-17,-72],[-33,-57],[-33,-101],[-55,-14],[-138,-10],[-72,-72],[-11,-43],[22,-52],[-22,-38],[-60,9],[-72,-24],[-66,19],[11,91],[-72,154],[50,-10],[11,95],[-28,15],[-44,67],[-72,143],[-11,72],[-21,10],[-6,67],[-39,43],[0,62],[-27,33],[-17,158],[33,0]],[[32490,8006],[-17,10],[-11,-100],[6,-34],[-77,0],[-28,14],[-33,39],[-44,95],[0,86],[27,63],[17,66],[49,68],[72,-68],[11,5]],[[17918,20387],[-16,0]],[[33080,24952],[-11,62],[5,134],[-27,62],[22,96]],[[33069,25306],[38,-24],[34,48],[0,48],[44,14],[-17,62],[17,96],[44,-9],[22,-34],[55,0],[116,72],[38,-10],[39,-43],[100,-10],[99,39],[110,77],[39,5],[43,-15],[94,24],[50,43],[28,-52]],[[27818,17118],[-66,-34]],[[42643,17582],[-22,10],[6,57],[22,-15],[-6,-52]],[[43338,18635],[-22,48],[-28,86],[-27,-5],[-61,96],[-49,43],[-39,-19],[-55,14],[-22,-14],[-17,29],[17,129],[-6,76],[-39,15],[-66,-10],[-33,-38],[-5,-29],[16,-52],[-22,-101],[11,-91],[-11,-86],[-16,-29],[-6,-52],[-27,-77],[-22,-158],[-50,-158],[5,-43],[-5,-119],[22,-86],[-6,-44],[23,-14],[49,28],[17,-9],[11,-48],[5,-119],[27,-68],[17,0],[33,-272],[-27,91],[-17,-15],[6,-62],[33,-86],[28,0],[66,-91],[44,14],[27,-9],[44,-110],[50,-62]],[[42907,17180],[-37,86],[-28,34],[5,67],[-22,10],[-11,47],[-22,15],[-28,95],[-16,0],[-6,48],[-38,48],[-22,67],[-23,0],[-10,-38],[-22,14],[-11,86],[16,120],[6,86],[21,77],[28,172]],[[37949,25651],[17,110],[33,76],[33,53],[12,38],[-45,82],[-5,57],[17,58],[-17,28],[-55,0],[-11,43],[-39,29],[11,58],[44,42],[105,-23],[28,28],[5,57],[39,20],[-11,38],[22,48],[44,-10],[11,39],[-17,67],[33,62],[44,-39],[67,44],[49,57],[33,-48],[6,-53],[-49,-57],[38,-67],[50,10]],[[35826,25698],[-11,163],[6,96],[-6,67],[11,96],[-11,43],[-55,76],[-33,10],[-17,29],[17,47],[33,15],[6,67],[-17,14],[-61,10],[-16,-24],[-22,86],[6,91],[27,134],[16,-43],[39,-29],[44,10],[39,-44],[50,19],[27,39],[27,-10],[28,20],[-5,62],[-94,109],[-33,159],[-39,9],[-66,-9],[-33,-34],[-22,-71],[11,-30],[-11,-71],[-33,47],[-17,73]],[[36146,26794],[160,-14],[-11,163],[50,76],[82,15],[50,124],[61,14],[49,-33],[39,-10],[22,-48],[28,-14],[66,-5],[22,-28],[-11,-63],[22,-52],[6,-48],[-11,-48],[60,-52],[44,4],[89,-14],[22,24],[27,-10],[50,-57],[33,-139],[27,-57],[12,-82],[33,-48],[132,-134],[33,-52],[67,-62],[21,4],[56,-67],[66,-52],[77,-82],[39,10],[38,-19],[33,-38],[38,-15],[-10,-115],[5,-67]],[[46570,12830],[61,43]],[[46707,12940],[28,67],[39,33],[66,24],[110,5],[67,44],[50,-20],[-23,-53],[-33,-38],[-55,-28],[-27,-39],[-33,-9],[-39,-39],[-28,-4],[-50,-34],[-49,-67]],[[18222,18199],[-22,-14],[-66,-5],[-6,48],[22,10],[6,72],[-22,57],[33,14],[72,15],[-17,-48],[0,-77],[11,-19],[-11,-53]],[[29247,24703],[-33,5],[0,38],[27,0],[6,-43]],[[28883,25588],[39,15],[49,57],[83,38],[27,-23],[50,-15],[0,-48],[33,-81],[27,38],[72,58],[0,-67],[-38,-96],[-45,-48],[-5,-38],[16,-81],[67,-68],[0,-52],[16,-58],[-38,-96],[-50,-95],[-55,-53],[-22,-57],[17,-81],[44,-53],[44,10],[0,-48],[55,9],[17,-86],[49,-14]],[[33069,25306],[11,24],[-22,86],[55,96],[0,38],[-22,29],[-61,-48],[0,-24],[-39,-19],[-32,14],[-55,48],[-33,-4],[-45,-49],[-44,-76],[-49,-43],[-116,-24],[-23,-15],[-66,39],[-55,100],[-99,72],[-110,19],[-11,-19],[0,-77],[-11,-57],[-39,0],[-22,-19],[-61,-24],[-55,29],[-33,38],[-11,81],[-50,0],[-66,34],[-16,-39],[-39,34],[44,62],[-88,-4],[-22,67],[-44,38],[-22,81],[22,10],[5,43],[-17,29],[-71,57],[-22,-10],[-39,34],[23,43],[71,14],[-22,62],[16,58],[0,53],[-22,62],[17,62],[-110,-24],[11,144],[22,9],[22,48],[44,53],[83,14],[27,-33],[56,14],[182,5],[-34,38],[23,28],[132,34],[-83,24],[-33,43],[17,63],[115,-19],[67,9],[71,-29],[67,5],[33,57],[93,77],[34,38],[99,43],[49,34],[143,-15],[83,0],[39,29],[44,-91],[44,-29],[55,25],[17,-10],[22,-72],[33,-38],[60,24],[45,-53],[105,-29],[22,-19],[71,-24],[72,29],[88,24],[61,-34],[66,-4],[111,67],[66,57],[16,28]],[[31861,26976],[-6,-33],[34,-82],[22,-24],[110,-66],[-16,-63],[-28,-9],[-72,28],[-55,-24],[-27,10],[-39,-14],[-39,-77],[-72,-53],[-71,-105],[-11,53],[82,86],[-104,-5],[-11,33]],[[46107,21640],[-22,-96],[0,-66],[-28,0],[0,38],[-16,52],[-39,53],[-16,48],[-23,134],[11,53],[0,86],[72,210],[33,68],[39,95],[44,24],[33,33],[50,-57],[5,-24],[-22,-62],[6,-62],[-33,-130],[-17,-105],[-6,-71],[-16,-96],[-55,-125]],[[33620,13706],[12,-62],[-50,33],[-11,29],[5,67],[23,-5],[21,-62]],[[33675,14055],[0,-96],[-16,-52],[-16,19],[10,72],[-5,52],[27,5]],[[33576,14113],[-33,-230],[-27,-96],[0,-52],[11,-72],[38,-62],[22,-72],[28,-19],[11,-67],[-17,-24],[-22,-86],[6,-63],[16,-19],[0,-52],[-16,-96],[22,-163],[28,-67],[0,-62],[21,-139],[34,-67],[10,0],[50,-52],[11,-29]],[[32611,12811],[-66,57],[-6,15],[-77,28],[-16,44],[-22,-5],[-22,52],[-28,34],[-44,-5],[-39,62],[-11,53]],[[32242,15113],[49,19],[155,0],[137,0],[182,0]],[[19397,6106],[-28,-76],[-33,-62],[-5,-39],[-61,-81],[-110,-72],[-50,10],[-22,24],[-45,9],[-71,-33],[-38,9],[-11,24],[-61,29],[-50,62],[-99,-10],[-22,49],[-66,110],[-6,52],[11,148],[33,34],[11,48],[-22,115]],[[3739,20645],[-17,-10],[-32,29],[0,86],[-22,101],[33,71],[-11,44],[11,28],[93,-76],[22,-67],[39,-63],[-39,-57],[-38,-14],[-33,-44],[-6,-28]],[[3601,21176],[28,5],[44,-43],[-16,-43],[-50,-5],[-6,48],[-33,28],[17,39],[16,-29]],[[3486,21253],[77,-15],[-22,-28],[-66,14],[11,29]],[[3398,21319],[-17,-33],[-33,-5],[-22,77],[22,0],[27,29],[23,-68]],[[3155,21454],[-34,-10],[-27,39],[33,47],[33,0],[6,-47],[-11,-29]],[[16463,26703],[27,-23],[-132,-68],[-127,-18],[22,57],[45,33],[49,0],[33,15],[83,4]],[[17290,27857],[0,-77],[-11,-57],[-28,5],[-38,-34],[-33,0],[-11,-33],[-55,14],[-56,-53],[-49,34],[-17,-96],[-66,-52],[-61,-24],[-27,5],[-22,-58],[-50,-77],[-33,-76],[-11,-67],[11,-72],[-44,-67],[44,-24],[33,-81],[0,-39],[38,-19],[45,24],[11,-28],[-110,-30],[-11,30],[-39,-49],[-33,-14],[-6,43],[-33,-5],[0,-47],[-50,-34],[-165,-19],[-55,-24],[-60,-43],[-39,-53],[-17,5],[-38,-53],[-6,-52],[44,-38],[-33,-168],[-66,-120],[-28,-76],[-16,38],[-83,38],[17,-86],[38,-67],[-11,-28],[17,-53],[-50,-100],[-39,-120],[6,-19],[-39,-39],[-11,53],[39,91],[-61,91],[-28,24],[-10,38],[16,115],[-6,76],[-32,10],[-17,-134],[6,-57],[27,-111],[-88,44],[0,-29],[39,-15],[60,-66],[-11,-62],[11,-49],[-22,-28],[0,-48],[17,-28],[-17,-34],[61,-24],[16,-96],[-16,-24],[22,-57],[-44,5],[0,-39],[-39,0],[-11,-33],[-33,14],[-5,-33],[132,4],[16,-33],[-5,-53],[-50,-76],[-27,-5],[-33,19],[0,-43],[-17,-57],[38,-34],[-21,-48],[-33,-19],[-61,0],[-100,-115],[-16,-38],[-5,-57],[-78,-5],[-66,-53],[-44,-91],[-23,-72],[-82,-95],[-17,-34],[-66,-48],[-22,-48],[-55,-57],[-10,-48],[-34,-53],[0,-38],[-22,-66],[0,-29],[-33,-96],[39,-311],[22,-91],[65,-235],[-10,-62],[16,-58],[66,-267],[17,-34],[11,-76],[0,-63],[-17,-191],[-21,-72],[-12,-81],[-55,-48],[-60,-5],[0,62],[-39,129],[-55,44],[-23,124],[-27,34],[-6,38],[12,72],[-44,-24],[-22,52],[-28,96],[0,34],[33,86],[-27,9],[-23,-47],[-16,38],[28,177],[5,91],[-22,66],[-78,111],[-66,129],[-49,48],[-44,-10],[-11,-43],[-61,-38],[-83,-24],[6,33],[-88,115],[-89,49],[-82,-5],[5,33],[-33,10],[-17,-53],[-54,-24],[-23,9],[-22,44],[-17,62],[-16,-86],[-83,0],[-33,14],[-50,-24],[-16,5],[-38,-48],[-100,58],[-27,-67],[33,-29],[66,29],[0,-58],[28,-5],[27,39],[6,-63],[-28,-14],[-22,-62],[27,-34],[50,-24],[17,-33],[-11,-48],[-33,9],[-12,34],[-55,38],[-10,34],[-28,-10],[-6,-52],[-27,-29],[-17,48],[-33,-10],[-28,-38],[-82,43],[22,19],[-17,43],[-38,15],[-22,52],[-33,24],[-23,-10],[-38,-66],[-61,9],[-77,53],[-78,-5],[-33,-24],[-32,-5],[-61,-33],[-39,0],[6,57],[-44,-14],[16,-91],[-55,-110],[-88,-91],[-28,-14],[-55,19],[-28,-82],[-33,15],[-5,-53],[-55,-24],[17,-43],[-17,-29],[-39,-9],[23,-48],[-23,-96],[-5,-57],[-17,-38],[22,-135],[44,-143]],[[9629,24373],[-16,38],[-6,77],[-33,95],[-93,120],[-28,10],[-39,71],[-49,0],[-61,39],[-5,24],[-50,48],[-39,-5],[-27,19],[-56,-5],[-38,34],[6,62],[-6,86],[-33,24],[-5,62],[-61,67],[-56,134],[-33,48],[-5,67],[16,43],[-11,57],[-44,15],[-38,57],[0,48],[-17,110],[-66,91],[-6,48],[-22,48],[-88,125],[0,57],[-16,71],[0,111],[-45,90],[-33,44],[-5,66],[33,130],[11,115],[-6,66],[-21,44],[5,57],[-22,38],[-11,67],[5,58],[-22,62],[28,148],[33,96],[5,177],[12,24],[-6,96],[22,220],[-5,76],[10,115],[-21,29],[21,81],[-27,24],[-22,125],[-39,162],[-33,53],[-5,48],[10,62],[106,-58],[181,-28],[17,-52],[17,-116],[-6,-52],[-38,19],[-23,-48],[44,-14],[23,43],[33,28],[-11,115],[27,63],[-38,100],[-6,48],[-39,120]],[[320,29642],[-44,72],[33,5],[28,-25],[-17,-52]],[[518,29704],[23,-38],[-50,-29],[-17,43],[44,24]],[[811,29747],[60,53],[17,57],[27,-24],[-16,-57],[-88,-29]],[[54043,30020],[44,-5],[45,-48],[-72,-19],[-34,34],[17,38]],[[1842,30111],[-50,-29],[-33,-57],[-44,4],[22,58],[33,0],[6,43],[28,33],[60,-9],[-22,-43]],[[2046,30264],[17,-81],[-39,-39],[-61,-14],[-55,-39],[-44,15],[105,52],[22,120],[39,14],[16,-28]],[[2526,30560],[22,-66],[-27,-29],[-111,-14],[-22,-39],[-55,-9],[-22,57],[27,19],[28,53],[39,4],[71,44],[50,-20]],[[7219,30536],[-88,87],[22,33],[44,-57],[22,-63]],[[7148,30719],[-33,-68],[-33,53],[66,15]],[[7506,30700],[-33,-77],[-50,38],[-44,-33],[-5,52],[27,48],[6,67],[55,34],[44,-63],[0,-66]],[[7109,30934],[55,-5],[17,-62],[55,-24],[33,-43],[39,-81],[10,-91],[33,0],[0,-115],[-33,-19],[-21,47],[-66,39],[-45,71],[0,53],[-71,53],[44,62],[-44,62],[-6,53]],[[7231,30910],[-39,24],[22,34],[38,-5],[-21,-53]],[[7335,30872],[-5,-43],[-44,0],[-39,33],[-5,33],[60,82],[39,-67],[-6,-38]],[[7043,31073],[39,-53],[-22,-43],[-6,-101],[-39,-14],[-11,38],[11,58],[-33,86],[22,53],[39,-24]],[[7142,31121],[61,-34],[0,-67],[-28,-43],[-77,0],[-6,86],[-44,67],[94,-9]],[[6894,31216],[55,-163],[0,-128],[-33,4],[-28,96],[-43,38],[16,62],[-50,58],[-44,0],[50,76],[22,5],[55,-48]],[[4147,31346],[78,-5],[27,-53],[-27,-43],[-99,-62],[-62,-19],[-54,-48],[-56,5],[-27,-24],[-55,114],[27,62],[39,20],[72,4],[38,30],[99,19]],[[6778,31460],[22,-28],[66,-10],[33,-24],[0,-148],[-82,52],[-22,-52],[-45,-10],[-27,62],[-72,82],[6,38],[121,38]],[[6938,31436],[66,-4],[28,-39],[-28,-33],[50,-82],[0,-67],[-50,-52],[-55,-5],[22,96],[-27,43],[-17,100],[11,43]],[[4225,31494],[66,-34],[-22,-24],[-132,-43],[-61,25],[83,90],[66,-14]],[[2123,32049],[66,-29],[-5,-57],[22,-44],[-55,-4],[-39,-33],[-66,23],[-77,43],[-50,53],[94,5],[55,43],[55,0]],[[1307,32949],[88,-15],[50,29],[66,-19],[16,-39],[89,-38],[110,-9],[-22,-39],[-77,0],[-50,-62],[-22,48],[-55,19],[-49,53],[-83,19],[-72,-34],[-39,24],[-5,44],[55,19]],[[7655,30809],[-22,-43],[16,-119],[-27,-72]],[[7566,30503],[-37,10],[-34,96],[28,57],[-6,105],[-33,62],[-77,-9],[-28,-24],[-11,-57],[-38,-20],[-17,43],[38,58],[23,81],[-99,115],[0,33],[-50,34],[-17,43],[-83,34],[6,47],[-33,82],[33,24],[-49,38],[-72,100],[-66,44],[-67,114],[-16,-33],[22,-91],[-17,-34],[-66,53],[-50,-5],[6,63],[-27,43],[-83,9],[77,-86],[-6,-43],[-87,-24],[-128,86],[-77,101],[-72,62],[-33,5],[-154,91],[33,52],[-49,34],[-61,-29],[-67,0],[-154,67],[-132,34],[-61,4],[-133,-24],[-54,0],[-6,39],[-66,19],[-44,33],[-149,39],[33,47],[-72,0],[-5,24],[-67,34],[-5,33],[-94,0],[-16,-19],[-83,-9],[-39,52],[-38,-96],[33,-90],[-39,-110],[-60,-15],[-44,24],[-127,-67],[-39,-62],[-61,0],[-49,-86],[-39,14],[-66,-33],[-55,28],[11,29],[77,34],[-17,38],[-49,19],[5,57],[61,96],[11,129],[133,77],[38,-19],[94,9],[-72,53],[-5,24],[-78,10],[-105,-72],[-49,-15],[-22,-62],[-78,-62],[-5,-43],[-39,-34],[-33,-91],[-55,-14],[6,-48],[-61,5],[-88,-105],[-17,-48],[116,-57],[11,-29],[-55,-62],[-28,-10],[-50,-81],[-5,-39],[-55,-28],[-60,-10],[-23,-38],[-72,-38],[-27,-49],[-33,-4],[-72,-67],[12,-29],[-34,-52],[-82,-53],[-50,-15],[-16,-38],[-45,5],[-50,-48],[-33,-9],[23,-68],[-77,-57],[-100,-38],[-83,-15],[-77,-66],[-66,-10],[-44,-33],[-39,33],[-44,-33],[-55,-72],[-27,-19],[-56,47],[0,-57],[-27,-24],[-28,29],[-33,-53],[-16,67],[60,24],[116,148],[33,29],[110,53],[56,-67],[38,28],[22,72],[28,48],[77,67],[77,33],[56,58],[38,-24],[0,67],[27,43],[116,96],[17,139],[22,57],[-5,43],[44,63],[38,23],[-27,43],[-133,-66],[-44,0],[-22,38],[-11,81],[-38,-48],[-12,-52],[12,-77],[-50,9],[-39,72],[-50,48],[-38,-24],[-66,67],[-72,-52],[-61,-20],[-22,-33],[-60,-19],[5,52],[-11,86],[-33,48],[28,63],[-11,57],[-50,124],[-50,-47],[-27,0],[-72,-44],[-110,-9],[-34,53],[-76,86],[-45,9],[-16,44],[-50,9],[88,100],[83,-48],[55,5],[22,-43],[50,48],[-66,34],[-89,-5],[-49,19],[-50,-5],[-22,67],[-55,-14],[-17,53],[-71,66],[11,72],[72,20],[-17,62],[83,105],[60,38],[-10,53],[60,105],[55,19],[116,-57],[44,10],[66,47],[56,72],[44,-19],[71,5],[61,24],[49,71],[-27,120],[-61,53],[67,38],[5,58],[-44,38],[-44,-38],[-44,9],[-61,-38],[-99,-86],[-138,57],[-94,0],[-88,-33],[-193,33],[-50,43],[11,53],[-66,48],[50,14],[-23,53],[-115,24],[-88,38],[11,28],[77,53],[55,5],[50,48],[137,53],[61,42],[116,43],[94,15],[44,-33],[-39,-77],[50,-34],[149,-9],[143,0],[55,62],[-116,115],[-44,9],[-16,43],[50,10],[38,-38],[-5,-34],[71,-57],[83,5],[61,-29],[66,14],[-6,43],[-93,24],[-83,-29],[-72,39],[39,76],[-55,20],[-94,-10],[-143,24],[-45,48],[-50,91],[-192,124],[-89,29],[-60,71],[27,130],[105,-5],[209,24],[95,57],[55,63],[32,101],[166,157],[33,-24],[99,19],[138,77],[122,81],[50,-24],[154,15],[61,23],[120,106],[50,-5],[138,-48],[-88,-53],[88,-9],[50,53],[88,-29],[-16,-24],[87,-29],[45,24],[105,14],[154,-33],[-39,-43],[83,-58],[110,-9],[83,29],[61,-24],[61,24],[93,-5],[216,-53],[22,-24],[99,-14],[121,5],[127,-39],[127,-19],[132,34],[83,4],[77,-23],[66,-44],[89,-28],[44,-34],[65,0]],[[18227,17850],[-11,29],[23,29],[11,-34],[-23,-24]],[[17792,18472],[-11,-67],[-39,24],[39,58],[11,-15]],[[16645,18678],[-28,-43],[-55,-24],[-17,-38],[39,-134],[17,-77],[-6,-76],[-50,-91],[-22,-82],[22,-71],[33,-63],[0,-57],[34,-24],[38,24],[34,62],[5,96],[-5,38],[-23,48],[-5,38],[-22,29],[-17,77],[-5,66],[10,53],[34,10],[66,58],[44,14],[44,28],[22,43],[33,-24],[17,29],[-6,38],[-60,-14],[-12,72],[12,58],[33,23],[22,-33],[11,-106],[22,-52],[61,9],[60,-24],[66,-76],[11,-29],[6,-101],[22,-52],[44,-10],[132,39],[117,9],[60,-105],[111,-53],[44,10],[99,100],[55,-4],[-6,62],[56,-10],[71,24],[50,5],[72,-10],[-23,-43],[-44,5],[-16,-48],[44,-62],[28,-106],[38,54],[22,-29],[44,-15],[6,19],[44,-71],[44,-19],[33,-58],[-33,-52],[-22,-120],[-11,-33],[-55,-5],[44,-48],[44,19],[33,29],[50,-10],[49,19],[22,-19]],[[44110,21334],[-88,-62],[-6,-62],[-27,-29],[-17,14],[-27,-14],[-33,5],[11,-62],[-34,-58],[0,-67],[-54,-81],[-28,-15],[-28,-95],[-5,-82],[-22,-91],[38,-129],[28,-53],[27,-24],[39,-76],[-5,-62],[44,-96],[55,-86],[11,-43],[27,-29],[55,-86],[17,-48],[33,5],[6,-24],[50,-101],[5,-33],[33,-77],[27,-28],[28,-158],[11,-24],[5,-91],[28,-148],[-11,-72],[6,-86],[22,-86],[-11,-58],[-17,-28],[-5,-68],[0,-186],[-22,-39],[-11,-71],[-28,-5],[-16,-33],[-22,-10],[-45,-62],[-27,-10],[-11,-48],[-28,-5],[-55,-62],[-33,-24],[-28,29],[-49,-57],[5,-39],[-22,-43],[-22,-119],[-16,0],[-28,33],[-5,-76],[-105,-87],[-28,-81],[-28,-48],[-38,-9],[-11,57],[0,105],[5,120],[11,57],[28,24],[-11,43],[-33,39],[-22,-10],[-39,67]],[[53536,10021],[-23,-24],[-22,38],[6,38],[39,-52]],[[53508,10184],[-11,-10],[-39,29],[0,62],[22,5],[28,-86]],[[53376,10571],[11,-71],[-22,0],[-28,43],[11,23],[28,5]],[[53348,10902],[-39,9],[-16,24],[44,28],[11,-61]],[[53216,10968],[55,-66],[0,-48],[-50,-10],[-11,86],[-11,33],[-22,10],[11,58],[17,-10],[11,-53]],[[53111,11318],[11,-91],[39,24],[11,-15],[11,-100],[-17,-24],[-39,-14],[-33,62],[6,52],[-22,101],[16,58],[17,-53]],[[1307,11533],[-44,0],[-27,14],[-23,39],[33,15],[39,-20],[22,-48]],[[1169,11696],[23,-29],[5,-33],[-50,-33],[-38,61],[60,34]],[[35805,18889],[66,9],[49,-33],[-61,-53],[-77,-5],[-44,53],[33,53],[34,-24]],[[35699,19994],[-76,-48],[-39,-48],[-22,-95],[5,-82],[-83,-76],[-55,-43],[-44,-24],[-77,-29],[-55,-48],[-39,-10],[-55,-28],[-77,-72],[-6,-28],[-49,-82],[-33,-14],[-72,9],[-55,-47],[-34,-58],[-65,-29],[-28,-24],[-44,-14],[-94,-5],[-39,-14],[-38,-77],[-39,-19],[-16,-53],[-44,-14],[-23,19],[-38,-43],[-55,-19],[-55,38],[-23,29],[-38,115],[5,105],[-5,63],[-22,38],[0,52],[-17,77],[6,24],[-22,124],[-17,72],[6,29],[-17,76],[22,106],[-5,91]],[[32606,8006],[-6,-62],[-22,-101],[-22,-210],[-38,-115],[-39,-62],[-39,-24],[-72,-124],[-22,-58],[-22,-86],[-22,-48],[-33,-100],[-60,-149],[-67,-124],[-16,-10],[-94,-148],[-44,-81],[-61,-92],[-33,-38],[-55,-81],[-16,-9],[-105,-116],[-99,-66],[-67,14],[-55,-38],[0,-48],[-22,-5],[-50,19],[-27,-4],[-22,-53],[-39,0],[-60,28],[-95,25],[-49,-30],[-110,20],[-44,-15],[-72,-86],[-66,-10],[-44,15],[-94,-38],[-66,-77],[-61,10],[-44,48],[-11,42],[-27,20],[-39,-5],[0,48],[-17,33],[-61,0],[23,77],[-23,76],[-49,101],[-23,86],[17,33],[22,-9],[33,67],[0,106],[-16,105],[-83,201],[-77,253],[-33,192],[-33,105],[-45,110]],[[32071,9289],[43,14],[39,-9],[44,-34],[39,-9],[72,9],[55,-29]],[[31834,7437],[-17,-10],[-27,-81],[-39,-76],[-39,-39],[22,-77],[28,-62],[0,-33],[44,-72],[55,-29],[44,120],[17,19],[49,9],[55,53],[6,62],[28,34],[11,72],[-11,62],[-55,57],[-50,81],[-61,-32],[-39,-49],[-21,-9]],[[32225,11093],[-99,0],[-72,-34],[-61,-72],[-5,-109],[-11,-29],[-55,-34],[-72,-67],[-27,-42],[-17,-58],[-66,-129],[-28,-62],[-39,-25],[-33,5],[-38,29],[-27,5],[-45,-14],[-33,38],[-28,-9],[-27,14]]],"transform":{"scale":[0.006528125340006528,0.003627913053987581],"translate":[-180,-55.90090337693042]},"objects":{"countries":{"type":"GeometryCollection","geometries":[{"type":null,"properties":{"name":"Aruba","capital":"Oranjestad","languages":"nl-AW,pap,es,en","neighbours":"","tld":".aw","currencyCode":"AWG","currencyName":"Guilder","continent":"NA","areaSqKm":193},"id":"AW","fips":"AA","iso":"AW","iso3":"ABW"},{"arcs":[[0,1,2,3,4,5]],"type":"Polygon","properties":{"name":"Afghanistan","capital":"Kabul","languages":"fa-AF,ps,uz-AF,tk","neighbours":"TM,CN,IR,TJ,PK,UZ","tld":".af","currencyCode":"AFN","currencyName":"Afghani","continent":"AS","areaSqKm":647500},"id":"AF","fips":"AF","iso":"AF","iso3":"AFG"},{"arcs":[[[6,7,8,9]],[[10,11,12]]],"type":"MultiPolygon","properties":{"name":"Angola","capital":"Luanda","languages":"pt-AO","neighbours":"CD,NA,ZM,CG","tld":".ao","currencyCode":"AOA","currencyName":"Kwanza","continent":"AF","areaSqKm":1246700},"id":"AO","fips":"AO","iso":"AO","iso3":"AGO"},{"type":null,"properties":{"name":"Anguilla","capital":"The Valley","languages":"en-AI","neighbours":"","tld":".ai","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":102},"id":"AI","fips":"AV","iso":"AI","iso3":"AIA"},{"arcs":[[13,14,15,16,17]],"type":"Polygon","properties":{"name":"Albania","capital":"Tirana","languages":"sq,el","neighbours":"MK,GR,ME,RS,XK","tld":".al","currencyCode":"ALL","currencyName":"Lek","continent":"EU","areaSqKm":28748},"id":"AL","fips":"AL","iso":"AL","iso3":"ALB"},{"arcs":[[18]],"type":"Polygon","properties":{"name":"Åland Islands","capital":"Mariehamn","languages":"sv-AX","neighbours":"","tld":".ax","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":1580},"id":"AX","fips":"","iso":"AX","iso3":"ALA"},{"arcs":[[19,20]],"type":"Polygon","properties":{"name":"Andorra","capital":"Andorra la Vella","languages":"ca","neighbours":"ES,FR","tld":".ad","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":468},"id":"AD","fips":"AN","iso":"AD","iso3":"AND"},{"arcs":[[21,22,23,24,25]],"type":"Polygon","properties":{"name":"United Arab Emirates","capital":"Abu Dhabi","languages":"ar-AE,fa,en,hi,ur","neighbours":"SA,OM","tld":".ae","currencyCode":"AED","currencyName":"Dirham","continent":"AS","areaSqKm":82880},"id":"AE","fips":"AE","iso":"AE","iso3":"ARE"},{"arcs":[[[26,27]],[[28,29,30,31,32,33]]],"type":"MultiPolygon","properties":{"name":"Argentina","capital":"Buenos Aires","languages":"es-AR,en,it,de,fr,gn","neighbours":"CL,BO,UY,PY,BR","tld":".ar","currencyCode":"ARS","currencyName":"Peso","continent":"SA","areaSqKm":2766890},"id":"AR","fips":"AR","iso":"AR","iso3":"ARG"},{"arcs":[[34,35,36,37,38]],"type":"Polygon","properties":{"name":"Armenia","capital":"Yerevan","languages":"hy","neighbours":"GE,IR,AZ,TR","tld":".am","currencyCode":"AMD","currencyName":"Dram","continent":"AS","areaSqKm":29800},"id":"AM","fips":"AM","iso":"AM","iso3":"ARM"},{"type":null,"properties":{"name":"American Samoa","capital":"Pago Pago","languages":"en-AS,sm,to","neighbours":"","tld":".as","currencyCode":"USD","currencyName":"Dollar","continent":"OC","areaSqKm":199},"id":"AS","fips":"AQ","iso":"AS","iso3":"ASM"},{"arcs":[[39]],"type":"Polygon","properties":{"name":"French Southern Territories","capital":"Port-aux-Francais","languages":"fr","neighbours":"","tld":".tf","currencyCode":"EUR","currencyName":"Euro","continent":"AN","areaSqKm":7829},"id":"TF","fips":"FS","iso":"TF","iso3":"ATF"},{"type":null,"properties":{"name":"Antigua and Barbuda","capital":"St. John's","languages":"en-AG","neighbours":"","tld":".ag","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":443},"id":"AG","fips":"AC","iso":"AG","iso3":"ATG"},{"arcs":[[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]]],"type":"MultiPolygon","properties":{"name":"Australia","capital":"Canberra","languages":"en-AU","neighbours":"","tld":".au","currencyCode":"AUD","currencyName":"Dollar","continent":"OC","areaSqKm":7686850},"id":"AU","fips":"AS","iso":"AU","iso3":"AUS"},{"arcs":[[52,53,54,55,56,57,58,59,60]],"type":"Polygon","properties":{"name":"Austria","capital":"Vienna","languages":"de-AT,hr,hu,sl","neighbours":"CH,DE,HU,SK,CZ,IT,SI,LI","tld":".at","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":83858},"id":"AT","fips":"AU","iso":"AT","iso3":"AUT"},{"arcs":[[[61,62,-36]],[[63,-39,64,65,66]]],"type":"MultiPolygon","properties":{"name":"Azerbaijan","capital":"Baku","languages":"az,ru,hy","neighbours":"GE,IR,AM,TR,RU","tld":".az","currencyCode":"AZN","currencyName":"Manat","continent":"AS","areaSqKm":86600},"id":"AZ","fips":"AJ","iso":"AZ","iso3":"AZE"},{"arcs":[[67,68,69]],"type":"Polygon","properties":{"name":"Burundi","capital":"Bujumbura","languages":"fr-BI,rn","neighbours":"TZ,CD,RW","tld":".bi","currencyCode":"BIF","currencyName":"Franc","continent":"AF","areaSqKm":27830},"id":"BI","fips":"BY","iso":"BI","iso3":"BDI"},{"arcs":[[70,71,72,73,74,75,76]],"type":"Polygon","properties":{"name":"Belgium","capital":"Brussels","languages":"nl-BE,fr-BE,de-BE","neighbours":"DE,NL,LU,FR","tld":".be","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":30510},"id":"BE","fips":"BE","iso":"BE","iso3":"BEL"},{"arcs":[[77,78,79,80,81]],"type":"Polygon","properties":{"name":"Benin","capital":"Porto-Novo","languages":"fr-BJ","neighbours":"NE,TG,BF,NG","tld":".bj","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":112620},"id":"BJ","fips":"BN","iso":"BJ","iso3":"BEN"},{"arcs":[[-79,82,83,84,85,86]],"type":"Polygon","properties":{"name":"Burkina Faso","capital":"Ouagadougou","languages":"fr-BF,mos","neighbours":"NE,BJ,GH,CI,TG,ML","tld":".bf","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":274200},"id":"BF","fips":"UV","iso":"BF","iso3":"BFA"},{"arcs":[[[87]],[[88,89,90]]],"type":"MultiPolygon","properties":{"name":"Bangladesh","capital":"Dhaka","languages":"bn-BD,en","neighbours":"MM,IN","tld":".bd","currencyCode":"BDT","currencyName":"Taka","continent":"AS","areaSqKm":144000},"id":"BD","fips":"BG","iso":"BD","iso3":"BGD"},{"arcs":[[91,92,93,94,95,96]],"type":"Polygon","properties":{"name":"Bulgaria","capital":"Sofia","languages":"bg,tr-BG,rom","neighbours":"MK,GR,RO,TR,RS","tld":".bg","currencyCode":"BGN","currencyName":"Lev","continent":"EU","areaSqKm":110910},"id":"BG","fips":"BU","iso":"BG","iso3":"BGR"},{"arcs":[[97]],"type":"Polygon","properties":{"name":"Bahrain","capital":"Manama","languages":"ar-BH,en,fa,ur","neighbours":"","tld":".bh","currencyCode":"BHD","currencyName":"Dinar","continent":"AS","areaSqKm":665},"id":"BH","fips":"BA","iso":"BH","iso3":"BHR"},{"arcs":[[[98]],[[99]],[[100]],[[101]],[[102]]],"type":"MultiPolygon","properties":{"name":"Bahamas","capital":"Nassau","languages":"en-BS","neighbours":"","tld":".bs","currencyCode":"BSD","currencyName":"Dollar","continent":"NA","areaSqKm":13940},"id":"BS","fips":"BF","iso":"BS","iso3":"BHS"},{"arcs":[[103,104,105,106,107]],"type":"Polygon","properties":{"name":"Bosnia and Herzegovina","capital":"Sarajevo","languages":"bs,hr-BA,sr-BA","neighbours":"HR,ME,RS","tld":".ba","currencyCode":"BAM","currencyName":"Marka","continent":"EU","areaSqKm":51129},"id":"BA","fips":"BK","iso":"BA","iso3":"BIH"},{"arcs":[[108,109,110,111,112]],"type":"Polygon","properties":{"name":"Belarus","capital":"Minsk","languages":"be,ru","neighbours":"PL,LT,UA,RU,LV","tld":".by","currencyCode":"BYN","currencyName":"Belarusian ruble","continent":"EU","areaSqKm":207600},"id":"BY","fips":"BO","iso":"BY","iso3":"BLR"},{"arcs":[[113,114,115]],"type":"Polygon","properties":{"name":"Belize","capital":"Belmopan","languages":"en-BZ,es","neighbours":"GT,MX","tld":".bz","currencyCode":"BZD","currencyName":"Dollar","continent":"NA","areaSqKm":22966},"id":"BZ","fips":"BH","iso":"BZ","iso3":"BLZ"},{"type":null,"properties":{"name":"Bermuda","capital":"Hamilton","languages":"en-BM,pt","neighbours":"","tld":".bm","currencyCode":"BMD","currencyName":"Dollar","continent":"NA","areaSqKm":53},"id":"BM","fips":"BD","iso":"BM","iso3":"BMU"},{"arcs":[[-34,116,117,118,119]],"type":"Polygon","properties":{"name":"Bolivia, Plurinational State of","capital":"Sucre","languages":"es-BO,qu,ay","neighbours":"PE,CL,PY,BR,AR","tld":".bo","currencyCode":"BOB","currencyName":"Boliviano","continent":"SA","areaSqKm":1098580},"id":"BO","fips":"BL","iso":"BO","iso3":"BOL"},{"arcs":[[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128,129,130,131,-30,132,-119,133,134,135,136]]],"type":"MultiPolygon","properties":{"name":"Brazil","capital":"Brasilia","languages":"pt-BR,es,en,fr","neighbours":"SR,PE,BO,UY,GY,PY,GF,VE,CO,AR","tld":".br","currencyCode":"BRL","currencyName":"Real","continent":"SA","areaSqKm":8511965},"id":"BR","fips":"BR","iso":"BR","iso3":"BRA"},{"type":null,"properties":{"name":"Barbados","capital":"Bridgetown","languages":"en-BB","neighbours":"","tld":".bb","currencyCode":"BBD","currencyName":"Dollar","continent":"NA","areaSqKm":431},"id":"BB","fips":"BB","iso":"BB","iso3":"BRB"},{"arcs":[[[137]],[[138,139]]],"type":"MultiPolygon","properties":{"name":"Brunei Darussalam","capital":"Bandar Seri Begawan","languages":"ms-BN,en-BN","neighbours":"MY","tld":".bn","currencyCode":"BND","currencyName":"Dollar","continent":"AS","areaSqKm":5770},"id":"BN","fips":"BX","iso":"BN","iso3":"BRN"},{"arcs":[[140,141]],"type":"Polygon","properties":{"name":"Bhutan","capital":"Thimphu","languages":"dz","neighbours":"CN,IN","tld":".bt","currencyCode":"BTN","currencyName":"Ngultrum","continent":"AS","areaSqKm":47000},"id":"BT","fips":"BT","iso":"BT","iso3":"BTN"},{"arcs":[[142,143,144]],"type":"Polygon","properties":{"name":"Botswana","capital":"Gaborone","languages":"en-BW,tn-BW","neighbours":"ZW,ZA,NA","tld":".bw","currencyCode":"BWP","currencyName":"Pula","continent":"AF","areaSqKm":600370},"id":"BW","fips":"BC","iso":"BW","iso3":"BWA"},{"arcs":[[145,146,147,148,149,150]],"type":"Polygon","properties":{"name":"Central African Republic","capital":"Bangui","languages":"fr-CF,sg,ln,kg","neighbours":"TD,SD,CD,SS,CM,CG","tld":".cf","currencyCode":"XAF","currencyName":"Franc","continent":"AF","areaSqKm":622984},"id":"CF","fips":"CT","iso":"CF","iso3":"CAF"},{"arcs":[[[151]],[[152]],[[153,154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166,167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190,191,192,193]],[[194]],[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]],[[210]],[[211]],[[212]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]]],"type":"MultiPolygon","properties":{"name":"Canada","capital":"Ottawa","languages":"en-CA,fr-CA,iu","neighbours":"US","tld":".ca","currencyCode":"CAD","currencyName":"Dollar","continent":"NA","areaSqKm":9984670},"id":"CA","fips":"CA","iso":"CA","iso3":"CAN"},{"arcs":[[225,-56,226,227,228,-58]],"type":"Polygon","properties":{"name":"Switzerland","capital":"Bern","languages":"de-CH,fr-CH,it-CH,rm","neighbours":"DE,IT,LI,FR,AT","tld":".ch","currencyCode":"CHF","currencyName":"Franc","continent":"EU","areaSqKm":41290},"id":"CH","fips":"SZ","iso":"CH","iso3":"CHE"},{"arcs":[[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[-27,235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[-33,248,249,-117]]],"type":"MultiPolygon","properties":{"name":"Chile","capital":"Santiago","languages":"es-CL","neighbours":"PE,BO,AR","tld":".cl","currencyCode":"CLP","currencyName":"Peso","continent":"SA","areaSqKm":756950},"id":"CL","fips":"CI","iso":"CL","iso3":"CHL"},{"arcs":[[[250]],[[251]],[[252]],[[253,254,255,256,257,258,259,260,261,-141,262,263,264,265,266,-6,267,268,269,270,271,272]]],"type":"MultiPolygon","properties":{"name":"China","capital":"Beijing","languages":"zh-CN,yue,wuu,dta,ug,za","neighbours":"LA,BT,TJ,KZ,MN,AF,NP,MM,KG,PK,KP,RU,VN,IN","tld":".cn","currencyCode":"CNY","currencyName":"Yuan Renminbi","continent":"AS","areaSqKm":9596960},"id":"CN","fips":"CH","iso":"CN","iso3":"CHN"},{"arcs":[[-85,275,276,277,278,279]],"type":"Polygon","properties":{"name":"Côte d'Ivoire","capital":"Yamoussoukro","languages":"fr-CI","neighbours":"LR,GH,GN,BF,ML","tld":".ci","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":322460},"id":"CI","fips":"IV","iso":"CI","iso3":"CIV"},{"arcs":[[280,281,282,283,284,285,-149]],"type":"Polygon","properties":{"name":"Cameroon","capital":"Yaounde","languages":"en-CM,fr-CM","neighbours":"TD,CF,GA,GQ,CG,NG","tld":".cm","currencyCode":"XAF","currencyName":"Franc","continent":"AF","areaSqKm":475440},"id":"CM","fips":"CM","iso":"CM","iso3":"CMR"},{"arcs":[[286,287,-68,288,289,-10,290,-12,291,-147,292]],"type":"Polygon","properties":{"name":"Congo, the Democratic Republic of the","capital":"Kinshasa","languages":"fr-CD,ln,ktu,kg,sw,lua","neighbours":"TZ,CF,SS,RW,ZM,BI,UG,CG,AO","tld":".cd","currencyCode":"CDF","currencyName":"Franc","continent":"AF","areaSqKm":2345410},"id":"CD","fips":"CG","iso":"CD","iso3":"COD"},{"arcs":[[-11,293,294,-281,-148,-292]],"type":"Polygon","properties":{"name":"Congo","capital":"Brazzaville","languages":"fr-CG,kg,ln-CG","neighbours":"CF,GA,CD,CM,AO","tld":".cg","currencyCode":"XAF","currencyName":"Franc","continent":"AF","areaSqKm":342000},"id":"CG","fips":"CF","iso":"CG","iso3":"COG"},{"type":null,"properties":{"name":"Cook Islands","capital":"Avarua","languages":"en-CK,mi","neighbours":"","tld":".ck","currencyCode":"NZD","currencyName":"Dollar","continent":"OC","areaSqKm":240},"id":"CK","fips":"CW","iso":"CK","iso3":"COK"},{"arcs":[[295,-135,296,297,298,299,300]],"type":"Polygon","properties":{"name":"Colombia","capital":"Bogota","languages":"es-CO","neighbours":"EC,PE,PA,BR,VE","tld":".co","currencyCode":"COP","currencyName":"Peso","continent":"SA","areaSqKm":1138910},"id":"CO","fips":"CO","iso":"CO","iso3":"COL"},{"arcs":[[301]],"type":"Polygon","properties":{"name":"Comoros","capital":"Moroni","languages":"ar,fr-KM","neighbours":"","tld":".km","currencyCode":"KMF","currencyName":"Franc","continent":"AF","areaSqKm":2170},"id":"KM","fips":"CN","iso":"KM","iso3":"COM"},{"arcs":[[[302]],[[303]],[[304]]],"type":"MultiPolygon","properties":{"name":"Cape Verde","capital":"Praia","languages":"pt-CV","neighbours":"","tld":".cv","currencyCode":"CVE","currencyName":"Escudo","continent":"AF","areaSqKm":4033},"id":"CV","fips":"CV","iso":"CV","iso3":"CPV"},{"arcs":[[305,306,307,308]],"type":"Polygon","properties":{"name":"Costa Rica","capital":"San Jose","languages":"es-CR,en","neighbours":"PA,NI","tld":".cr","currencyCode":"CRC","currencyName":"Colon","continent":"NA","areaSqKm":51100},"id":"CR","fips":"CS","iso":"CR","iso3":"CRI"},{"arcs":[[[309]],[[310]]],"type":"MultiPolygon","properties":{"name":"Cuba","capital":"Havana","languages":"es-CU,pap","neighbours":"US","tld":".cu","currencyCode":"CUP","currencyName":"Peso","continent":"NA","areaSqKm":110860},"id":"CU","fips":"CU","iso":"CU","iso3":"CUB"},{"type":null,"properties":{"name":"Curaçao","capital":"Willemstad","languages":"nl,pap","neighbours":"","tld":".cw","currencyCode":"ANG","currencyName":"Guilder","continent":"NA","areaSqKm":444},"id":"CW","fips":"UC","iso":"CW","iso3":"CUW"},{"type":null,"properties":{"name":"Cayman Islands","capital":"George Town","languages":"en-KY","neighbours":"","tld":".ky","currencyCode":"KYD","currencyName":"Dollar","continent":"NA","areaSqKm":262},"id":"KY","fips":"CJ","iso":"KY","iso3":"CYM"},{"arcs":[[311,312]],"type":"Polygon","properties":{"name":"Northern Cyprus","color":"#1f77b4"},"id":""},{"arcs":[[-312,313]],"type":"Polygon","properties":{"name":"Cyprus","capital":"Nicosia","languages":"el-CY,tr-CY,en","neighbours":"","tld":".cy","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":9250},"id":"CY","fips":"CY","iso":"CY","iso3":"CYP"},{"arcs":[[314,-60,315,316]],"type":"Polygon","properties":{"name":"Czech Republic","capital":"Prague","languages":"cs,sk","neighbours":"PL,DE,SK,AT","tld":".cz","currencyCode":"CZK","currencyName":"Koruna","continent":"EU","areaSqKm":78866},"id":"CZ","fips":"EZ","iso":"CZ","iso3":"CZE"},{"arcs":[[[319]],[[320,-316,-59,-229,321,322,-71,323,324,325,326]]],"type":"MultiPolygon","properties":{"name":"Germany","capital":"Berlin","languages":"de","neighbours":"CH,PL,NL,DK,BE,CZ,LU,FR,AT","tld":".de","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":357021},"id":"DE","fips":"GM","iso":"DE","iso3":"DEU"},{"arcs":[[327,328,329,330]],"type":"Polygon","properties":{"name":"Djibouti","capital":"Djibouti","languages":"fr-DJ,ar,so-DJ,aa","neighbours":"ER,ET,SO","tld":".dj","currencyCode":"DJF","currencyName":"Franc","continent":"AF","areaSqKm":23000},"id":"DJ","fips":"DJ","iso":"DJ","iso3":"DJI"},{"arcs":[[331]],"type":"Polygon","properties":{"name":"Dominica","capital":"Roseau","languages":"en-DM","neighbours":"","tld":".dm","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":754},"id":"DM","fips":"DO","iso":"DM","iso3":"DMA"},{"arcs":[[[332]],[[333]],[[334]],[[335]],[[-326,336]]],"type":"MultiPolygon","properties":{"name":"Denmark","capital":"Copenhagen","languages":"da-DK,en,fo,de-DK","neighbours":"DE","tld":".dk","currencyCode":"DKK","currencyName":"Krone","continent":"EU","areaSqKm":43094},"id":"DK","fips":"DA","iso":"DK","iso3":"DNK"},{"arcs":[[337,338]],"type":"Polygon","properties":{"name":"Dominican Republic","capital":"Santo Domingo","languages":"es-DO","neighbours":"HT","tld":".do","currencyCode":"DOP","currencyName":"Peso","continent":"NA","areaSqKm":48730},"id":"DO","fips":"DR","iso":"DO","iso3":"DOM"},{"arcs":[[339,340,341,342,343,344,345,346]],"type":"Polygon","properties":{"name":"Algeria","capital":"Algiers","languages":"ar-DZ","neighbours":"NE,EH,LY,MR,TN,MA,ML","tld":".dz","currencyCode":"DZD","currencyName":"Dinar","continent":"AF","areaSqKm":2381740},"id":"DZ","fips":"AG","iso":"DZ","iso3":"DZA"},{"arcs":[[[347]],[[348]],[[349]],[[350]],[[351,352,-298]]],"type":"MultiPolygon","properties":{"name":"Ecuador","capital":"Quito","languages":"es-EC","neighbours":"PE,CO","tld":".ec","currencyCode":"USD","currencyName":"Dollar","continent":"SA","areaSqKm":283560},"id":"EC","fips":"EC","iso":"EC","iso3":"ECU"},{"arcs":[[353,354,355,356,357,358]],"type":"Polygon","properties":{"name":"Egypt","capital":"Cairo","languages":"ar-EG,en,fr","neighbours":"LY,SD,IL,PS","tld":".eg","currencyCode":"EGP","currencyName":"Pound","continent":"AF","areaSqKm":1001450},"id":"EG","fips":"EG","iso":"EG","iso3":"EGY"},{"arcs":[[[359]],[[-329,360,361,362]]],"type":"MultiPolygon","properties":{"name":"Eritrea","capital":"Asmara","languages":"aa-ER,ar,tig,kun,ti-ER","neighbours":"ET,SD,DJ","tld":".er","currencyCode":"ERN","currencyName":"Nakfa","continent":"AF","areaSqKm":121320},"id":"ER","fips":"ER","iso":"ER","iso3":"ERI"},{"arcs":[[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370]],[[371,-21,372,373,374,375]]],"type":"MultiPolygon","properties":{"name":"Spain","capital":"Madrid","languages":"es-ES,ca,gl,eu,oc","neighbours":"AD,PT,GI,FR,MA","tld":".es","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":504782},"id":"ES","fips":"SP","iso":"ES","iso3":"ESP"},{"arcs":[[[376]],[[377]],[[378,379,380]]],"type":"MultiPolygon","properties":{"name":"Estonia","capital":"Tallinn","languages":"et,ru","neighbours":"RU,LV","tld":".ee","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":45226},"id":"EE","fips":"EN","iso":"EE","iso3":"EST"},{"arcs":[[-328,381,382,383,384,385,-361]],"type":"Polygon","properties":{"name":"Ethiopia","capital":"Addis Ababa","languages":"am,en-ET,om-ET,ti-ET,so-ET,sid","neighbours":"ER,KE,SD,SS,SO,DJ","tld":".et","currencyCode":"ETB","currencyName":"Birr","continent":"AF","areaSqKm":1127127},"id":"ET","fips":"ET","iso":"ET","iso3":"ETH"},{"arcs":[[386,387,388,389]],"type":"Polygon","properties":{"name":"Finland","capital":"Helsinki","languages":"fi-FI,sv-FI,smn","neighbours":"NO,RU,SE","tld":".fi","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":337030},"id":"FI","fips":"FI","iso":"FI","iso3":"FIN"},{"arcs":[[[390]],[[391]]],"type":"MultiPolygon","properties":{"name":"Fiji","capital":"Suva","languages":"en-FJ,fj","neighbours":"","tld":".fj","currencyCode":"FJD","currencyName":"Dollar","continent":"OC","areaSqKm":18270},"id":"FJ","fips":"FJ","iso":"FJ","iso3":"FJI"},{"arcs":[[[392]],[[393]]],"type":"MultiPolygon","properties":{"name":"Falkland Islands (Malvinas)","capital":"Stanley","languages":"en-FK","neighbours":"","tld":".fk","currencyCode":"FKP","currencyName":"Pound","continent":"SA","areaSqKm":12173},"id":"FK","fips":"FK","iso":"FK","iso3":"FLK"},{"arcs":[[[394]],[[395]],[[396]],[[397]],[[398]],[[399]],[[400,-322,-228,401,402,403,-373,-20,-372,404,-73]]],"type":"MultiPolygon","properties":{"name":"France","capital":"Paris","languages":"fr-FR,frp,br,co,ca,eu,oc","neighbours":"CH,DE,BE,LU,IT,AD,MC,ES","tld":".fr","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":547030},"id":"FR","fips":"FR","iso":"FR","iso3":"FRA"},{"arcs":[[-130,405,406]],"type":"Polygon","properties":{"name":"French Guyana","capital":"Cayenne","languages":"fr-GF","neighbours":"SR,BR","tld":".gf","currencyCode":"EUR","currencyName":"Euro","continent":"SA","areaSqKm":91000},"id":"GF","fips":"FG","iso":"GF","iso3":"GUF"},{"arcs":[[407]],"type":"Polygon","properties":{"name":"Faroe Islands","capital":"Torshavn","languages":"fo,da-FO","neighbours":"","tld":".fo","currencyCode":"DKK","currencyName":"Krone","continent":"EU","areaSqKm":1399},"id":"FO","fips":"FO","iso":"FO","iso3":"FRO"},{"type":null,"properties":{"name":"Micronesia, Federated States of","capital":"Palikir","languages":"en-FM,chk,pon,yap,kos,uli,woe,nkr,kpg","neighbours":"","tld":".fm","currencyCode":"USD","currencyName":"Dollar","continent":"OC","areaSqKm":702},"id":"FM","fips":"FM","iso":"FM","iso3":"FSM"},{"arcs":[[408,-282,-295,409]],"type":"Polygon","properties":{"name":"Gabon","capital":"Libreville","languages":"fr-GA","neighbours":"CM,GQ,CG","tld":".ga","currencyCode":"XAF","currencyName":"Franc","continent":"AF","areaSqKm":267667},"id":"GA","fips":"GB","iso":"GA","iso3":"GAB"},{"arcs":[[[410]],[[411,412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]],[[419]]],"type":"MultiPolygon","properties":{"name":"United Kingdom","capital":"London","languages":"en-GB,cy-GB,gd","neighbours":"IE","tld":".uk","currencyCode":"GBP","currencyName":"Pound","continent":"EU","areaSqKm":244820},"id":"GB","fips":"UK","iso":"GB","iso3":"GBR"},{"arcs":[[-38,420,421,422,-65]],"type":"Polygon","properties":{"name":"Georgia","capital":"Tbilisi","languages":"ka,ru,hy,az","neighbours":"AM,AZ,TR,RU","tld":".ge","currencyCode":"GEL","currencyName":"Lari","continent":"AS","areaSqKm":69700},"id":"GE","fips":"GG","iso":"GE","iso3":"GEO"},{"type":null,"properties":{"name":"Guernsey","capital":"St Peter Port","languages":"en,nrf","neighbours":"","tld":".gg","currencyCode":"GBP","currencyName":"Pound","continent":"EU","areaSqKm":78},"id":"GG","fips":"GK","iso":"GG","iso3":"GGY"},{"arcs":[[-274,423,-276,-84,424,425]],"type":"Polygon","properties":{"name":"Ghana","capital":"Accra","languages":"en-GH,ak,ee,tw","neighbours":"CI,TG,BF","tld":".gh","currencyCode":"GHS","currencyName":"Cedi","continent":"AF","areaSqKm":239460},"id":"GH","fips":"GH","iso":"GH","iso3":"GHA"},{"arcs":[[-279,426,427,428,429,430,431]],"type":"Polygon","properties":{"name":"Guinea","capital":"Conakry","languages":"fr-GN","neighbours":"LR,SN,SL,CI,GW,ML","tld":".gn","currencyCode":"GNF","currencyName":"Franc","continent":"AF","areaSqKm":245857},"id":"GN","fips":"GV","iso":"GN","iso3":"GIN"},{"arcs":[[432,433]],"type":"Polygon","properties":{"name":"Gambia","capital":"Banjul","languages":"en-GM,mnk,wof,wo,ff","neighbours":"SN","tld":".gm","currencyCode":"GMD","currencyName":"Dalasi","continent":"AF","areaSqKm":11300},"id":"GM","fips":"GA","iso":"GM","iso3":"GMB"},{"arcs":[[434,-430,435]],"type":"Polygon","properties":{"name":"Guinea-Bissau","capital":"Bissau","languages":"pt-GW,pov","neighbours":"SN,GN","tld":".gw","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":36120},"id":"GW","fips":"PU","iso":"GW","iso3":"GNB"},{"arcs":[[[-283,-409,436]],[[437]]],"type":"MultiPolygon","properties":{"name":"Equatorial Guinea","capital":"Malabo","languages":"es-GQ,fr","neighbours":"GA,CM","tld":".gq","currencyCode":"XAF","currencyName":"Franc","continent":"AF","areaSqKm":28051},"id":"GQ","fips":"EK","iso":"GQ","iso3":"GNQ"},{"arcs":[[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[-15,447,-93,448,449]]],"type":"MultiPolygon","properties":{"name":"Greece","capital":"Athens","languages":"el-GR,en,fr","neighbours":"AL,MK,TR,BG","tld":".gr","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":131940},"id":"GR","fips":"GR","iso":"GR","iso3":"GRC"},{"type":null,"properties":{"name":"Grenada","capital":"St. George's","languages":"en-GD","neighbours":"","tld":".gd","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":344},"id":"GD","fips":"GJ","iso":"GD","iso3":"GRD"},{"arcs":[[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]]],"type":"MultiPolygon","properties":{"name":"Greenland","capital":"Nuuk","languages":"kl,da-GL,en","neighbours":"","tld":".gl","currencyCode":"DKK","currencyName":"Krone","continent":"NA","areaSqKm":2166086},"id":"GL","fips":"GL","iso":"GL","iso3":"GRL"},{"arcs":[[459,460,461,462,-114,463]],"type":"Polygon","properties":{"name":"Guatemala","capital":"Guatemala City","languages":"es-GT","neighbours":"MX,HN,BZ,SV","tld":".gt","currencyCode":"GTQ","currencyName":"Quetzal","continent":"NA","areaSqKm":108890},"id":"GT","fips":"GT","iso":"GT","iso3":"GTM"},{"type":null,"properties":{"name":"Guam","capital":"Hagatna","languages":"en-GU,ch-GU","neighbours":"","tld":".gu","currencyCode":"USD","currencyName":"Dollar","continent":"OC","areaSqKm":549},"id":"GU","fips":"GQ","iso":"GU","iso3":"GUM"},{"arcs":[[-137,464,465,466]],"type":"Polygon","properties":{"name":"Guyana","capital":"Georgetown","languages":"en-GY","neighbours":"SR,BR,VE","tld":".gy","currencyCode":"GYD","currencyName":"Dollar","continent":"SA","areaSqKm":214970},"id":"GY","fips":"GY","iso":"GY","iso3":"GUY"},{"arcs":[[-256,467]],"type":"Polygon","properties":{"name":"Hong Kong","capital":"Hong Kong","languages":"zh-HK,yue,zh,en","neighbours":"","tld":".hk","currencyCode":"HKD","currencyName":"Dollar","continent":"AS","areaSqKm":1092},"id":"HK","fips":"HK","iso":"HK","iso3":"HKG"},{"type":null,"properties":{"name":"Heard Island and McDonald Islands","capital":"","languages":"","neighbours":"","tld":".hm","currencyCode":"AUD","currencyName":"Dollar","continent":"AN","areaSqKm":412},"id":"HM","fips":"HM","iso":"HM","iso3":"HMD"},{"arcs":[[468,469,470,-460,471]],"type":"Polygon","properties":{"name":"Honduras","capital":"Tegucigalpa","languages":"es-HN,cab,miq","neighbours":"GT,NI,SV","tld":".hn","currencyCode":"HNL","currencyName":"Lempira","continent":"NA","areaSqKm":112090},"id":"HN","fips":"HO","iso":"HN","iso3":"HND"},{"arcs":[[[-106,472,473]],[[474]],[[475,-108,476,477,478]]],"type":"MultiPolygon","properties":{"name":"Croatia","capital":"Zagreb","languages":"hr-HR,sr","neighbours":"HU,SI,BA,ME,RS","tld":".hr","currencyCode":"HRK","currencyName":"Kuna","continent":"EU","areaSqKm":56542},"id":"HR","fips":"HR","iso":"HR","iso3":"HRV"},{"arcs":[[[479]],[[-338,480]]],"type":"MultiPolygon","properties":{"name":"Haiti","capital":"Port-au-Prince","languages":"ht,fr-HT","neighbours":"DO","tld":".ht","currencyCode":"HTG","currencyName":"Gourde","continent":"NA","areaSqKm":27750},"id":"HT","fips":"HA","iso":"HT","iso3":"HTI"},{"arcs":[[481,482,-479,483,-53,484,485]],"type":"Polygon","properties":{"name":"Hungary","capital":"Budapest","languages":"hu-HU","neighbours":"SK,SI,RO,UA,HR,AT,RS","tld":".hu","currencyCode":"HUF","currencyName":"Forint","continent":"EU","areaSqKm":93030},"id":"HU","fips":"HU","iso":"HU","iso3":"HUN"},{"arcs":[[[486]],[[487]],[[488,489,490,491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532,533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549,550]],[[551]],[[552,553]],[[554]],[[555]]],"type":"MultiPolygon","properties":{"name":"Indonesia","capital":"Jakarta","languages":"id,en,nl,jv","neighbours":"PG,TL,MY","tld":".id","currencyCode":"IDR","currencyName":"Rupiah","continent":"AS","areaSqKm":1919440},"id":"ID","fips":"ID","iso":"ID","iso3":"IDN"},{"type":null,"properties":{"name":"Isle of Man","capital":"Douglas","languages":"en,gv","neighbours":"","tld":".im","currencyCode":"GBP","currencyName":"Pound","continent":"EU","areaSqKm":572},"id":"IM","fips":"IM","iso":"IM","iso3":"IMN"},{"arcs":[[[556]],[[557]],[[558]],[[559,560,-263,-142,-262,561,-91,562,563,564,565]]],"type":"MultiPolygon","properties":{"name":"India","capital":"New Delhi","languages":"en-IN,hi,bn,te,mr,ta,ur,gu,kn,ml,or,pa,as,bh,sat,ks,ne,sd,kok,doi,mni,sit,sa,fr,lus,inc","neighbours":"CN,NP,MM,BT,PK,BD","tld":".in","currencyCode":"INR","currencyName":"Rupee","continent":"AS","areaSqKm":3287590},"id":"IN","fips":"IN","iso":"IN","iso3":"IND"},{"type":null,"properties":{"name":"Cocos Islands","capital":"West Island","languages":"ms-CC,en","neighbours":"","tld":".cc","currencyCode":"AUD","currencyName":"Dollar","continent":"AS","areaSqKm":14},"id":"CC","fips":"CK","iso":"CC","iso3":"CCK"},{"type":null,"properties":{"name":"Christmas Island","capital":"Flying Fish Cove","languages":"en,zh,ms-CC","neighbours":"","tld":".cx","currencyCode":"AUD","currencyName":"Dollar","continent":"OC","areaSqKm":135},"id":"CX","fips":"KT","iso":"CX","iso3":"CXR"},{"type":null,"properties":{"name":"British Indian Ocean Territory","capital":"Diego Garcia","languages":"en-IO","neighbours":"","tld":".io","currencyCode":"USD","currencyName":"Dollar","continent":"AS","areaSqKm":60},"id":"IO","fips":"IO","iso":"IO","iso3":"IOT"},{"arcs":[[-412,566]],"type":"Polygon","properties":{"name":"Ireland","capital":"Dublin","languages":"en-IE,ga-IE","neighbours":"GB","tld":".ie","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":70280},"id":"IE","fips":"EI","iso":"IE","iso3":"IRL"},{"arcs":[[[567]],[[-35,-64,568,569,570,571,572,573,574,-62]]],"type":"MultiPolygon","properties":{"name":"Iran, Islamic Republic of","capital":"Tehran","languages":"fa-IR,ku","neighbours":"TM,AF,IQ,AM,PK,AZ,TR","tld":".ir","currencyCode":"IRR","currencyName":"Rial","continent":"AS","areaSqKm":1648000},"id":"IR","fips":"IR","iso":"IR","iso3":"IRN"},{"arcs":[[575,576,577,578,579,-574,580]],"type":"Polygon","properties":{"name":"Iraq","capital":"Baghdad","languages":"ar-IQ,ku,hy","neighbours":"SY,SA,IR,JO,TR,KW","tld":".iq","currencyCode":"IQD","currencyName":"Dinar","continent":"AS","areaSqKm":437072},"id":"IQ","fips":"IZ","iso":"IQ","iso3":"IRQ"},{"arcs":[[581]],"type":"Polygon","properties":{"name":"Iceland","capital":"Reykjavik","languages":"is,en,de,da,sv,no","neighbours":"","tld":".is","currencyCode":"ISK","currencyName":"Krona","continent":"EU","areaSqKm":103000},"id":"IS","fips":"IC","iso":"IS","iso3":"ISL"},{"arcs":[[582,583,584,-354,585,586,587,588,589]],"type":"Polygon","properties":{"name":"Israel","capital":"Jerusalem","languages":"he,ar-IL,en-IL,","neighbours":"SY,JO,LB,EG,PS","tld":".il","currencyCode":"ILS","currencyName":"Shekel","continent":"AS","areaSqKm":20770},"id":"IL","fips":"IS","iso":"IL","iso3":"ISR"},{"arcs":[[[590]],[[591]],[[592,593,-402,-227,-55]]],"type":"MultiPolygon","properties":{"name":"Italy","capital":"Rome","languages":"it-IT,de-IT,fr-IT,sc,ca,co,sl","neighbours":"CH,VA,SI,SM,FR,AT","tld":".it","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":301230},"id":"IT","fips":"IT","iso":"IT","iso3":"ITA"},{"arcs":[[594]],"type":"Polygon","properties":{"name":"Jamaica","capital":"Kingston","languages":"en-JM","neighbours":"","tld":".jm","currencyCode":"JMD","currencyName":"Dollar","continent":"NA","areaSqKm":10991},"id":"JM","fips":"JM","iso":"JM","iso3":"JAM"},{"type":null,"properties":{"name":"Jersey","capital":"Saint Helier","languages":"en,fr,nrf","neighbours":"","tld":".je","currencyCode":"GBP","currencyName":"Pound","continent":"EU","areaSqKm":116},"id":"JE","fips":"JE","iso":"JE","iso3":"JEY"},{"arcs":[[-584,595,-590,596,-578,597,598]],"type":"Polygon","properties":{"name":"Jordan","capital":"Amman","languages":"ar-JO,en","neighbours":"SY,SA,IQ,IL,PS","tld":".jo","currencyCode":"JOD","currencyName":"Dinar","continent":"AS","areaSqKm":92300},"id":"JO","fips":"JO","iso":"JO","iso3":"JOR"},{"arcs":[[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]]],"type":"MultiPolygon","properties":{"name":"Japan","capital":"Tokyo","languages":"ja","neighbours":"","tld":".jp","currencyCode":"JPY","currencyName":"Yen","continent":"AS","areaSqKm":377835},"id":"JP","fips":"JA","iso":"JP","iso3":"JPN"},{"arcs":[[610,-266,-565]],"type":"Polygon","properties":{"name":"Siachen Glacier","color":"#d62728"},"id":""},{"arcs":[[-270,611,612,613,614,615]],"type":"Polygon","properties":{"name":"Kazakhstan","capital":"Nur-Sultan","languages":"kk,ru","neighbours":"TM,CN,KG,UZ,RU","tld":".kz","currencyCode":"KZT","currencyName":"Tenge","continent":"AS","areaSqKm":2717300},"id":"KZ","fips":"KZ","iso":"KZ","iso3":"KAZ"},{"arcs":[[616,617,618,619,620,-384]],"type":"Polygon","properties":{"name":"Kenya","capital":"Nairobi","languages":"en-KE,sw-KE","neighbours":"ET,TZ,SS,SO,UG","tld":".ke","currencyCode":"KES","currencyName":"Shilling","continent":"AF","areaSqKm":582650},"id":"KE","fips":"KE","iso":"KE","iso3":"KEN"},{"arcs":[[621,622,-612,-269]],"type":"Polygon","properties":{"name":"Kyrgyzstan","capital":"Bishkek","languages":"ky,uz,ru","neighbours":"CN,TJ,UZ,KZ","tld":".kg","currencyCode":"KGS","currencyName":"Som","continent":"AS","areaSqKm":198500},"id":"KG","fips":"KG","iso":"KG","iso3":"KGZ"},{"arcs":[[623,624,625,626]],"type":"Polygon","properties":{"name":"Cambodia","capital":"Phnom Penh","languages":"km,fr,en","neighbours":"LA,TH,VN","tld":".kh","currencyCode":"KHR","currencyName":"Riels","continent":"AS","areaSqKm":181040},"id":"KH","fips":"CB","iso":"KH","iso3":"KHM"},{"type":null,"properties":{"name":"Kiribati","capital":"Tarawa","languages":"en-KI,gil","neighbours":"","tld":".ki","currencyCode":"AUD","currencyName":"Dollar","continent":"OC","areaSqKm":811},"id":"KI","fips":"KR","iso":"KI","iso3":"KIR"},{"type":null,"properties":{"name":"Saint Kitts and Nevis","capital":"Basseterre","languages":"en-KN","neighbours":"","tld":".kn","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":261},"id":"KN","fips":"SC","iso":"KN","iso3":"KNA"},{"arcs":[[[627]],[[628]],[[629,630]]],"type":"MultiPolygon","properties":{"name":"Korea, Republic of","capital":"Seoul","languages":"ko-KR,en","neighbours":"KP","tld":".kr","currencyCode":"KRW","currencyName":"Won","continent":"AS","areaSqKm":98480},"id":"KR","fips":"KS","iso":"KR","iso3":"KOR"},{"arcs":[[-18,631,632,633]],"type":"Polygon","properties":{"name":"Kosovo","capital":"Pristina","languages":"sq,sr","neighbours":"RS,AL,MK,ME","tld":"","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":10908},"id":"XK","fips":"KV","iso":"XK","iso3":"XKX"},{"arcs":[[[634]],[[635,-576,636]]],"type":"MultiPolygon","properties":{"name":"Kuwait","capital":"Kuwait City","languages":"ar-KW,en","neighbours":"SA,IQ","tld":".kw","currencyCode":"KWD","currencyName":"Dinar","continent":"AS","areaSqKm":17820},"id":"KW","fips":"KU","iso":"KW","iso3":"KWT"},{"arcs":[[-625,637,638,-260,639]],"type":"Polygon","properties":{"name":"Lao People's Democratic Republic","capital":"Vientiane","languages":"lo,fr,en","neighbours":"CN,MM,KH,TH,VN","tld":".la","currencyCode":"LAK","currencyName":"Kip","continent":"AS","areaSqKm":236800},"id":"LA","fips":"LA","iso":"LA","iso3":"LAO"},{"arcs":[[640,-588,641]],"type":"Polygon","properties":{"name":"Lebanon","capital":"Beirut","languages":"ar-LB,fr-LB,en,hy","neighbours":"SY,IL","tld":".lb","currencyCode":"LBP","currencyName":"Pound","continent":"AS","areaSqKm":10400},"id":"LB","fips":"LE","iso":"LB","iso3":"LBN"},{"arcs":[[642,-427,-278,643]],"type":"Polygon","properties":{"name":"Liberia","capital":"Monrovia","languages":"en-LR","neighbours":"SL,CI,GN","tld":".lr","currencyCode":"LRD","currencyName":"Dollar","continent":"AF","areaSqKm":111370},"id":"LR","fips":"LI","iso":"LR","iso3":"LBR"},{"arcs":[[644,645,646,-340,647,648,-357]],"type":"Polygon","properties":{"name":"Libya","capital":"Tripoli","languages":"ar-LY,it,en","neighbours":"TD,NE,DZ,SD,TN,EG","tld":".ly","currencyCode":"LYD","currencyName":"Dinar","continent":"AF","areaSqKm":1759540},"id":"LY","fips":"LY","iso":"LY","iso3":"LBY"},{"arcs":[[649]],"type":"Polygon","properties":{"name":"Saint Lucia","capital":"Castries","languages":"en-LC","neighbours":"","tld":".lc","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":616},"id":"LC","fips":"ST","iso":"LC","iso3":"LCA"},{"arcs":[[-57,-226]],"type":"Polygon","properties":{"name":"Liechtenstein","capital":"Vaduz","languages":"de-LI","neighbours":"CH,AT","tld":".li","currencyCode":"CHF","currencyName":"Franc","continent":"EU","areaSqKm":160},"id":"LI","fips":"LS","iso":"LI","iso3":"LIE"},{"arcs":[[650]],"type":"Polygon","properties":{"name":"Sri Lanka","capital":"Colombo","languages":"si,ta,en","neighbours":"","tld":".lk","currencyCode":"LKR","currencyName":"Rupee","continent":"AS","areaSqKm":65610},"id":"LK","fips":"CE","iso":"LK","iso3":"LKA"},{"arcs":[[651]],"type":"Polygon","properties":{"name":"Lesotho","capital":"Maseru","languages":"en-LS,st,zu,xh","neighbours":"ZA","tld":".ls","currencyCode":"LSL","currencyName":"Loti","continent":"AF","areaSqKm":30355},"id":"LS","fips":"LT","iso":"LS","iso3":"LSO"},{"arcs":[[-111,654,655,656,657]],"type":"Polygon","properties":{"name":"Lithuania","capital":"Vilnius","languages":"lt,ru,pl","neighbours":"PL,BY,RU,LV","tld":".lt","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":65200},"id":"LT","fips":"LH","iso":"LT","iso3":"LTU"},{"arcs":[[-401,-72,-323]],"type":"Polygon","properties":{"name":"Luxembourg","capital":"Luxembourg","languages":"lb,de-LU,fr-LU","neighbours":"DE,BE,FR","tld":".lu","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":2586},"id":"LU","fips":"LU","iso":"LU","iso3":"LUX"},{"arcs":[[-112,-658,658,-380,659]],"type":"Polygon","properties":{"name":"Latvia","capital":"Riga","languages":"lv,ru,lt","neighbours":"LT,EE,BY,RU","tld":".lv","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":64589},"id":"LV","fips":"LG","iso":"LV","iso3":"LVA"},{"type":null,"properties":{"name":"Macao","capital":"Macao","languages":"zh,zh-MO,pt","neighbours":"","tld":".mo","currencyCode":"MOP","currencyName":"Pataca","continent":"AS","areaSqKm":254},"id":"MO","fips":"MC","iso":"MO","iso3":"MAC"},{"arcs":[[660,661]],"type":"Polygon","properties":{"name":"Saint Martin (French part)","capital":"Marigot","languages":"fr","neighbours":"SX","tld":".gp","currencyCode":"EUR","currencyName":"Euro","continent":"NA","areaSqKm":53},"id":"MF","fips":"RN","iso":"MF","iso3":"MAF"},{"arcs":[[-345,662,663]],"type":"Polygon","properties":{"name":"Morocco","capital":"Rabat","languages":"ar-MA,ber,fr","neighbours":"DZ,EH,ES","tld":".ma","currencyCode":"MAD","currencyName":"Dirham","continent":"AF","areaSqKm":446550},"id":"MA","fips":"MO","iso":"MA","iso3":"MAR"},{"type":null,"properties":{"name":"Monaco","capital":"Monaco","languages":"fr-MC,en,it","neighbours":"FR","tld":".mc","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":1.95},"id":"MC","fips":"MN","iso":"MC","iso3":"MCO"},{"arcs":[[664,665]],"type":"Polygon","properties":{"name":"Moldova, Republic of","capital":"Chisinau","languages":"ro,ru,gag,tr","neighbours":"RO,UA","tld":".md","currencyCode":"MDL","currencyName":"Leu","continent":"EU","areaSqKm":33843},"id":"MD","fips":"MD","iso":"MD","iso3":"MDA"},{"arcs":[[666]],"type":"Polygon","properties":{"name":"Madagascar","capital":"Antananarivo","languages":"fr-MG,mg","neighbours":"","tld":".mg","currencyCode":"MGA","currencyName":"Ariary","continent":"AF","areaSqKm":587040},"id":"MG","fips":"MA","iso":"MG","iso3":"MDG"},{"type":null,"properties":{"name":"Maldives","capital":"Male","languages":"dv,en","neighbours":"","tld":".mv","currencyCode":"MVR","currencyName":"Rufiyaa","continent":"AS","areaSqKm":300},"id":"MV","fips":"MV","iso":"MV","iso3":"MDV"},{"arcs":[[[667]],[[668]],[[669]],[[-115,-463,670,671,672]]],"type":"MultiPolygon","properties":{"name":"Mexico","capital":"Mexico City","languages":"es-MX","neighbours":"GT,US,BZ","tld":".mx","currencyCode":"MXN","currencyName":"Peso","continent":"NA","areaSqKm":1972550},"id":"MX","fips":"MX","iso":"MX","iso3":"MEX"},{"type":null,"properties":{"name":"Marshall Islands","capital":"Majuro","languages":"mh,en-MH","neighbours":"","tld":".mh","currencyCode":"USD","currencyName":"Dollar","continent":"OC","areaSqKm":181.3},"id":"MH","fips":"RM","iso":"MH","iso3":"MHL"},{"arcs":[[-448,-14,-634,673,-94]],"type":"Polygon","properties":{"name":"Macedonia, the former Yugoslav Republic of","capital":"Skopje","languages":"mk,sq,tr,rmm,sr","neighbours":"AL,GR,BG,RS,XK","tld":".mk","currencyCode":"MKD","currencyName":"Denar","continent":"EU","areaSqKm":25333},"id":"MK","fips":"MK","iso":"MK","iso3":"MKD"},{"arcs":[[-86,-280,-432,674,675,-342,676]],"type":"Polygon","properties":{"name":"Mali","capital":"Bamako","languages":"fr-ML,bm","neighbours":"SN,NE,DZ,CI,GN,MR,BF","tld":".ml","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":1240000},"id":"ML","fips":"ML","iso":"ML","iso3":"MLI"},{"type":null,"properties":{"name":"Malta","capital":"Valletta","languages":"mt,en-MT","neighbours":"","tld":".mt","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":316},"id":"MT","fips":"MT","iso":"MT","iso3":"MLT"},{"arcs":[[[677]],[[678]],[[-639,679,680,-89,-562,-261]]],"type":"MultiPolygon","properties":{"name":"Myanmar","capital":"Nay Pyi Taw","languages":"my","neighbours":"CN,LA,TH,BD,IN","tld":".mm","currencyCode":"MMK","currencyName":"Kyat","continent":"AS","areaSqKm":678500},"id":"MM","fips":"BM","iso":"MM","iso3":"MMR"},{"arcs":[[-632,-17,681,-473,-105,682]],"type":"Polygon","properties":{"name":"Montenegro","capital":"Podgorica","languages":"sr,hu,bs,sq,hr,rom","neighbours":"AL,HR,BA,RS,XK","tld":".me","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":14026},"id":"ME","fips":"MJ","iso":"ME","iso3":"MNE"},{"arcs":[[683,-272]],"type":"Polygon","properties":{"name":"Mongolia","capital":"Ulaanbaatar","languages":"mn,ru","neighbours":"CN,RU","tld":".mn","currencyCode":"MNT","currencyName":"Tugrik","continent":"AS","areaSqKm":1565000},"id":"MN","fips":"MG","iso":"MN","iso3":"MNG"},{"type":null,"properties":{"name":"Northern Mariana Islands","capital":"Saipan","languages":"fil,tl,zh,ch-MP,en-MP","neighbours":"","tld":".mp","currencyCode":"USD","currencyName":"Dollar","continent":"OC","areaSqKm":477},"id":"MP","fips":"CQ","iso":"MP","iso3":"MNP"},{"arcs":[[684,685,686,687,688,689,690,691]],"type":"Polygon","properties":{"name":"Mozambique","capital":"Maputo","languages":"pt-MZ,vmw","neighbours":"ZW,TZ,SZ,ZA,ZM,MW","tld":".mz","currencyCode":"MZN","currencyName":"Metical","continent":"AF","areaSqKm":801590},"id":"MZ","fips":"MZ","iso":"MZ","iso3":"MOZ"},{"arcs":[[692,693,694,-343,-676]],"type":"Polygon","properties":{"name":"Mauritania","capital":"Nouakchott","languages":"ar-MR,fuc,snk,fr,mey,wo","neighbours":"SN,DZ,EH,ML","tld":".mr","currencyCode":"MRO","currencyName":"Ouguiya","continent":"AF","areaSqKm":1030700},"id":"MR","fips":"MR","iso":"MR","iso3":"MRT"},{"type":null,"properties":{"name":"Montserrat","capital":"Plymouth","languages":"en-MS","neighbours":"","tld":".ms","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":102},"id":"MS","fips":"MH","iso":"MS","iso3":"MSR"},{"arcs":[[695]],"type":"Polygon","properties":{"name":"Mauritius","capital":"Port Louis","languages":"en-MU,bho,fr","neighbours":"","tld":".mu","currencyCode":"MUR","currencyName":"Rupee","continent":"AF","areaSqKm":2040},"id":"MU","fips":"MP","iso":"MU","iso3":"MUS"},{"arcs":[[-689,696,697]],"type":"Polygon","properties":{"name":"Malawi","capital":"Lilongwe","languages":"ny,yao,tum,swk","neighbours":"TZ,MZ,ZM","tld":".mw","currencyCode":"MWK","currencyName":"Kwacha","continent":"AF","areaSqKm":118480},"id":"MW","fips":"MI","iso":"MW","iso3":"MWI"},{"arcs":[[[-550,698]],[[699]],[[700,701]],[[-553,702,-139,703]]],"type":"MultiPolygon","properties":{"name":"Malaysia","capital":"Kuala Lumpur","languages":"ms-MY,en,zh,ta,te,ml,pa,th","neighbours":"BN,TH,ID","tld":".my","currencyCode":"MYR","currencyName":"Ringgit","continent":"AS","areaSqKm":329750},"id":"MY","fips":"MY","iso":"MY","iso3":"MYS"},{"arcs":[[-144,704,705,-8,706]],"type":"Polygon","properties":{"name":"Namibia","capital":"Windhoek","languages":"en-NA,af,de,hz,naq","neighbours":"ZA,BW,ZM,AO","tld":".na","currencyCode":"NAD","currencyName":"Dollar","continent":"AF","areaSqKm":825418},"id":"NA","fips":"WA","iso":"NA","iso3":"NAM"},{"arcs":[[[707]],[[708]],[[709]]],"type":"MultiPolygon","properties":{"name":"New Caledonia","capital":"Noumea","languages":"fr-NC","neighbours":"","tld":".nc","currencyCode":"XPF","currencyName":"Franc","continent":"OC","areaSqKm":19060},"id":"NC","fips":"NC","iso":"NC","iso3":"NCL"},{"arcs":[[710,-80,-87,-677,-341,-647,711]],"type":"Polygon","properties":{"name":"Niger","capital":"Niamey","languages":"fr-NE,ha,kr,dje","neighbours":"TD,BJ,DZ,LY,BF,NG,ML","tld":".ne","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":1267000},"id":"NE","fips":"NG","iso":"NE","iso3":"NER"},{"type":null,"properties":{"name":"Norfolk Island","capital":"Kingston","languages":"en-NF","neighbours":"","tld":".nf","currencyCode":"AUD","currencyName":"Dollar","continent":"OC","areaSqKm":34.6},"id":"NF","fips":"NF","iso":"NF","iso3":"NFK"},{"arcs":[[712,-285,713,-81,-711]],"type":"Polygon","properties":{"name":"Nigeria","capital":"Abuja","languages":"en-NG,ha,yo,ig,ff","neighbours":"TD,NE,BJ,CM","tld":".ng","currencyCode":"NGN","currencyName":"Naira","continent":"AF","areaSqKm":923768},"id":"NG","fips":"NI","iso":"NG","iso3":"NGA"},{"arcs":[[-308,714,-469,715]],"type":"Polygon","properties":{"name":"Nicaragua","capital":"Managua","languages":"es-NI,en","neighbours":"CR,HN","tld":".ni","currencyCode":"NIO","currencyName":"Cordoba","continent":"NA","areaSqKm":129494},"id":"NI","fips":"NU","iso":"NI","iso3":"NIC"},{"type":null,"properties":{"name":"Niue","capital":"Alofi","languages":"niu,en-NU","neighbours":"","tld":".nu","currencyCode":"NZD","currencyName":"Dollar","continent":"OC","areaSqKm":260},"id":"NU","fips":"NE","iso":"NU","iso3":"NIU"},{"arcs":[[[-75,716]],[[-324,717,-76,718]]],"type":"MultiPolygon","properties":{"name":"Netherlands","capital":"Amsterdam","languages":"nl-NL,fy-NL","neighbours":"DE,BE","tld":".nl","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":41526},"id":"NL","fips":"NL","iso":"NL","iso3":"NLD"},{"arcs":[[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726,-390,727,728]],[[729]],[[730]],[[731]],[[732]]],"type":"MultiPolygon","properties":{"name":"Norway","capital":"Oslo","languages":"no,nb,nn,se,fi","neighbours":"FI,RU,SE","tld":".no","currencyCode":"NOK","currencyName":"Krone","continent":"EU","areaSqKm":324220},"id":"NO","fips":"NO","iso":"NO","iso3":"NOR"},{"arcs":[[-264,-561]],"type":"Polygon","properties":{"name":"Nepal","capital":"Kathmandu","languages":"ne,en","neighbours":"CN,IN","tld":".np","currencyCode":"NPR","currencyName":"Rupee","continent":"AS","areaSqKm":140800},"id":"NP","fips":"NP","iso":"NP","iso3":"NPL"},{"arcs":[[[733]],[[734]],[[735]],[[736]]],"type":"MultiPolygon","properties":{"name":"New Zealand","capital":"Wellington","languages":"en-NZ,mi","neighbours":"","tld":".nz","currencyCode":"NZD","currencyName":"Dollar","continent":"OC","areaSqKm":268680},"id":"NZ","fips":"NZ","iso":"NZ","iso3":"NZL"},{"arcs":[[[737,738,-22,739]],[[-25,740]]],"type":"MultiPolygon","properties":{"name":"Oman","capital":"Muscat","languages":"ar-OM,en,bal,ur","neighbours":"SA,YE,AE","tld":".om","currencyCode":"OMR","currencyName":"Rial","continent":"AS","areaSqKm":212460},"id":"OM","fips":"MU","iso":"OM","iso3":"OMN"},{"arcs":[[-564,741,-572,-1,-267,-611]],"type":"Polygon","properties":{"name":"Pakistan","capital":"Islamabad","languages":"ur-PK,en-PK,pa,sd,ps,brh","neighbours":"CN,AF,IR,IN","tld":".pk","currencyCode":"PKR","currencyName":"Rupee","continent":"AS","areaSqKm":803940},"id":"PK","fips":"PK","iso":"PK","iso3":"PAK"},{"arcs":[[-300,742,-306,743]],"type":"Polygon","properties":{"name":"Panama","capital":"Panama City","languages":"es-PA,en","neighbours":"CR,CO","tld":".pa","currencyCode":"PAB","currencyName":"Balboa","continent":"NA","areaSqKm":78200},"id":"PA","fips":"PM","iso":"PA","iso3":"PAN"},{"type":null,"properties":{"name":"Pitcairn","capital":"Adamstown","languages":"en-PN","neighbours":"","tld":".pn","currencyCode":"NZD","currencyName":"Dollar","continent":"OC","areaSqKm":47},"id":"PN","fips":"PC","iso":"PN","iso3":"PCN"},{"arcs":[[-118,-250,744,-352,-297,-134]],"type":"Polygon","properties":{"name":"Peru","capital":"Lima","languages":"es-PE,qu,ay","neighbours":"EC,CL,BO,BR,CO","tld":".pe","currencyCode":"PEN","currencyName":"Sol","continent":"SA","areaSqKm":1285220},"id":"PE","fips":"PE","iso":"PE","iso3":"PER"},{"arcs":[[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]]],"type":"MultiPolygon","properties":{"name":"Philippines","capital":"Manila","languages":"tl,en-PH,fil,ceb,tgl,ilo,hil,war,pam,bik,bcl,pag,mrw,tsg,mdh,cbk,krj,sgd,msb,akl,ibg,yka,mta,abx","neighbours":"","tld":".ph","currencyCode":"PHP","currencyName":"Peso","continent":"AS","areaSqKm":300000},"id":"PH","fips":"RP","iso":"PH","iso3":"PHL"},{"type":null,"properties":{"name":"Palau","capital":"Melekeok","languages":"pau,sov,en-PW,tox,ja,fil,zh","neighbours":"","tld":".pw","currencyCode":"USD","currencyName":"Dollar","continent":"OC","areaSqKm":458},"id":"PW","fips":"PS","iso":"PW","iso3":"PLW"},{"arcs":[[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775,776]],[[777]],[[778]],[[779]],[[780]]],"type":"MultiPolygon","properties":{"name":"Papua New Guinea","capital":"Port Moresby","languages":"en-PG,ho,meu,tpi","neighbours":"ID","tld":".pg","currencyCode":"PGK","currencyName":"Kina","continent":"OC","areaSqKm":462840},"id":"PG","fips":"PP","iso":"PG","iso3":"PNG"},{"arcs":[[-655,-110,781,782,-317,-321,783,-318,784,785]],"type":"Polygon","properties":{"name":"Poland","capital":"Warsaw","languages":"pl","neighbours":"DE,LT,SK,CZ,BY,UA,RU","tld":".pl","currencyCode":"PLN","currencyName":"Zloty","continent":"EU","areaSqKm":312685},"id":"PL","fips":"PL","iso":"PL","iso3":"POL"},{"arcs":[[786]],"type":"Polygon","properties":{"name":"Puerto Rico","capital":"San Juan","languages":"en-PR,es-PR","neighbours":"","tld":".pr","currencyCode":"USD","currencyName":"Dollar","continent":"NA","areaSqKm":9104},"id":"PR","fips":"RQ","iso":"PR","iso3":"PRI"},{"arcs":[[787,788,-630,789,-254]],"type":"Polygon","properties":{"name":"Korea, Democratic People's Republic of","capital":"Pyongyang","languages":"ko-KP","neighbours":"CN,KR,RU","tld":".kp","currencyCode":"KPW","currencyName":"Won","continent":"AS","areaSqKm":120540},"id":"KP","fips":"KN","iso":"KP","iso3":"PRK"},{"arcs":[[[790]],[[791]],[[792]],[[-375,793]]],"type":"MultiPolygon","properties":{"name":"Portugal","capital":"Lisbon","languages":"pt-PT,mwl","neighbours":"ES","tld":".pt","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":92391},"id":"PT","fips":"PO","iso":"PT","iso3":"PRT"},{"arcs":[[-29,-120,-133]],"type":"Polygon","properties":{"name":"Paraguay","capital":"Asuncion","languages":"es-PY,gn","neighbours":"BO,BR,AR","tld":".py","currencyCode":"PYG","currencyName":"Guarani","continent":"SA","areaSqKm":406750},"id":"PY","fips":"PA","iso":"PY","iso3":"PRY"},{"arcs":[[[-359,794,-586]],[[-583,-596]]],"type":"MultiPolygon","properties":{"name":"Palestine, State of","color":"#98df8a"},"id":""},{"arcs":[[795]],"type":"Polygon","properties":{"name":"French Polynesia","capital":"Papeete","languages":"fr-PF,ty","neighbours":"","tld":".pf","currencyCode":"XPF","currencyName":"Franc","continent":"OC","areaSqKm":4167},"id":"PF","fips":"FP","iso":"PF","iso3":"PYF"},{"arcs":[[796,797]],"type":"Polygon","properties":{"name":"Qatar","capital":"Doha","languages":"ar-QA,es","neighbours":"SA","tld":".qa","currencyCode":"QAR","currencyName":"Rial","continent":"AS","areaSqKm":11437},"id":"QA","fips":"QA","iso":"QA","iso3":"QAT"},{"arcs":[[-96,798,-482,799,-666,800,801]],"type":"Polygon","properties":{"name":"Romania","capital":"Bucharest","languages":"ro,hu,rom","neighbours":"MD,HU,UA,BG,RS","tld":".ro","currencyCode":"RON","currencyName":"Leu","continent":"EU","areaSqKm":237500},"id":"RO","fips":"RO","iso":"RO","iso3":"ROU"},{"arcs":[[[802]],[[803]],[[804]],[[805]],[[806]],[[807]],[[808]],[[-656,-786,809,-653,810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[-788,-273,-684,-271,-616,833,-66,-423,834,835,-113,-660,-379,836,-387,-727,837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]]],"type":"MultiPolygon","properties":{"name":"Russian Federation","capital":"Moscow","languages":"ru,tt,xal,cau,ady,kv,ce,tyv,cv,udm,tut,mns,bua,myv,mdf,chm,ba,inh,tut,kbd,krc,av,sah,nog","neighbours":"GE,CN,BY,UA,KZ,LV,PL,EE,LT,FI,MN,NO,AZ,KP","tld":".ru","currencyCode":"RUB","currencyName":"Ruble","continent":"EU","areaSqKm":17100000},"id":"RU","fips":"RS","iso":"RU","iso3":"RUS"},{"arcs":[[-69,-288,853,854]],"type":"Polygon","properties":{"name":"Rwanda","capital":"Kigali","languages":"rw,en-RW,fr-RW,sw","neighbours":"TZ,CD,BI,UG","tld":".rw","currencyCode":"RWF","currencyName":"Franc","continent":"AF","areaSqKm":26338},"id":"RW","fips":"RW","iso":"RW","iso3":"RWA"},{"arcs":[[-663,-344,-695,855]],"type":"Polygon","properties":{"name":"Western Sahara","capital":"El-Aaiun","languages":"ar,mey","neighbours":"DZ,MR,MA","tld":".eh","currencyCode":"MAD","currencyName":"Dirham","continent":"AF","areaSqKm":266000},"id":"EH","fips":"WI","iso":"EH","iso3":"ESH"},{"arcs":[[-636,856,-797,857,-23,-739,858,859,-598,-577]],"type":"Polygon","properties":{"name":"Saudi Arabia","capital":"Riyadh","languages":"ar-SA","neighbours":"QA,OM,IQ,YE,JO,AE,KW","tld":".sa","currencyCode":"SAR","currencyName":"Rial","continent":"AS","areaSqKm":1960582},"id":"SA","fips":"SA","iso":"SA","iso3":"SAU"},{"arcs":[[-362,-386,860,-151,861,-645,-356,862]],"type":"Polygon","properties":{"name":"Sudan","capital":"Khartoum","languages":"ar-SD,en,fia","neighbours":"SS,TD,EG,ET,ER,LY,CF","tld":".sd","currencyCode":"SDG","currencyName":"Pound","continent":"AF","areaSqKm":1861484},"id":"SD","fips":"SU","iso":"SD","iso3":"SDN"},{"arcs":[[-385,-621,863,-293,-146,-861]],"type":"Polygon","properties":{"name":"South Sudan","capital":"Juba","languages":"en","neighbours":"CD,CF,ET,KE,SD,UG","tld":"","currencyCode":"SSP","currencyName":"Pound","continent":"AF","areaSqKm":644329},"id":"SS","fips":"OD","iso":"SS","iso3":"SSD"},{"arcs":[[-431,-435,864,-433,865,-693,-675]],"type":"Polygon","properties":{"name":"Senegal","capital":"Dakar","languages":"fr-SN,wo,fuc,mnk","neighbours":"GN,MR,GW,GM,ML","tld":".sn","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":196190},"id":"SN","fips":"SG","iso":"SN","iso3":"SEN"},{"arcs":[[866]],"type":"Polygon","properties":{"name":"Singapore","capital":"Singapore","languages":"cmn,en-SG,ms-SG,ta-SG,zh-SG","neighbours":"","tld":".sg","currencyCode":"SGD","currencyName":"Dollar","continent":"AS","areaSqKm":692.7},"id":"SG","fips":"SN","iso":"SG","iso3":"SGP"},{"type":null,"properties":{"name":"Saint Helena, Ascension and Tristan da Cunha","capital":"Jamestown","languages":"en-SH","neighbours":"","tld":".sh","currencyCode":"SHP","currencyName":"Pound","continent":"AF","areaSqKm":410},"id":"SH","fips":"SH","iso":"SH","iso3":"SHN"},{"arcs":[[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]]],"type":"MultiPolygon","properties":{"name":"Solomon Islands","capital":"Honiara","languages":"en-SB,tpi","neighbours":"","tld":".sb","currencyCode":"SBD","currencyName":"Dollar","continent":"OC","areaSqKm":28450},"id":"SB","fips":"BP","iso":"SB","iso3":"SLB"},{"arcs":[[-643,878,-428]],"type":"Polygon","properties":{"name":"Sierra Leone","capital":"Freetown","languages":"en-SL,men,tem","neighbours":"LR,GN","tld":".sl","currencyCode":"SLL","currencyName":"Leone","continent":"AF","areaSqKm":71740},"id":"SL","fips":"SL","iso":"SL","iso3":"SLE"},{"arcs":[[-461,-471,879]],"type":"Polygon","properties":{"name":"El Salvador","capital":"San Salvador","languages":"es-SV","neighbours":"GT,HN","tld":".sv","currencyCode":"USD","currencyName":"Dollar","continent":"NA","areaSqKm":21040},"id":"SV","fips":"ES","iso":"SV","iso3":"SLV"},{"type":null,"properties":{"name":"San Marino","capital":"San Marino","languages":"it-SM","neighbours":"IT","tld":".sm","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":61.2},"id":"SM","fips":"SM","iso":"SM","iso3":"SMR"},{"arcs":[[-382,-331,880,881]],"type":"Polygon","properties":{"name":"Somaliland","color":"#98df8a"},"id":""},{"arcs":[[-383,-882,882,-617]],"type":"Polygon","properties":{"name":"Somalia","capital":"Mogadishu","languages":"so-SO,ar-SO,it,en-SO","neighbours":"ET,KE,DJ","tld":".so","currencyCode":"SOS","currencyName":"Shilling","continent":"AF","areaSqKm":637657},"id":"SO","fips":"SO","iso":"SO","iso3":"SOM"},{"type":null,"properties":{"name":"Saint Pierre and Miquelon","capital":"Saint-Pierre","languages":"fr-PM","neighbours":"","tld":".pm","currencyCode":"EUR","currencyName":"Euro","continent":"NA","areaSqKm":242},"id":"PM","fips":"SB","iso":"PM","iso3":"SPM"},{"arcs":[[-799,-95,-674,-633,-683,-104,-476,-483]],"type":"Polygon","properties":{"name":"Serbia","capital":"Belgrade","languages":"sr,hu,bs,rom","neighbours":"AL,HU,MK,RO,HR,BA,BG,ME,XK","tld":".rs","currencyCode":"RSD","currencyName":"Dinar","continent":"EU","areaSqKm":88361},"id":"RS","fips":"RI","iso":"RS","iso3":"SRB"},{"arcs":[[883]],"type":"Polygon","properties":{"name":"Sao Tome and Principe","capital":"Sao Tome","languages":"pt-ST","neighbours":"","tld":".st","currencyCode":"STD","currencyName":"Dobra","continent":"AF","areaSqKm":1001},"id":"ST","fips":"TP","iso":"ST","iso3":"STP"},{"arcs":[[-129,-467,884,-406]],"type":"Polygon","properties":{"name":"Suriname","capital":"Paramaribo","languages":"nl-SR,en,srn,hns,jv","neighbours":"GY,BR,GF","tld":".sr","currencyCode":"SRD","currencyName":"Dollar","continent":"SA","areaSqKm":163270},"id":"SR","fips":"NS","iso":"SR","iso3":"SUR"},{"arcs":[[-485,-61,-315,-783,885]],"type":"Polygon","properties":{"name":"Slovakia","capital":"Bratislava","languages":"sk,hu","neighbours":"PL,HU,CZ,UA,AT","tld":".sk","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":48845},"id":"SK","fips":"LO","iso":"SK","iso3":"SVK"},{"arcs":[[-593,-54,-484,-478,886]],"type":"Polygon","properties":{"name":"Slovenia","capital":"Ljubljana","languages":"sl,sh","neighbours":"HU,IT,HR,AT","tld":".si","currencyCode":"EUR","currencyName":"Euro","continent":"EU","areaSqKm":20273},"id":"SI","fips":"SI","iso":"SI","iso3":"SVN"},{"arcs":[[[887]],[[888]],[[-728,-389,889]]],"type":"MultiPolygon","properties":{"name":"Sweden","capital":"Stockholm","languages":"sv-SE,se,sma,fi-SE","neighbours":"NO,FI","tld":".se","currencyCode":"SEK","currencyName":"Krona","continent":"EU","areaSqKm":449964},"id":"SE","fips":"SW","iso":"SE","iso3":"SWE"},{"arcs":[[890,-685]],"type":"Polygon","properties":{"name":"Swaziland","capital":"Mbabane","languages":"en-SZ,ss-SZ","neighbours":"ZA,MZ","tld":".sz","currencyCode":"SZL","currencyName":"Lilangeni","continent":"AF","areaSqKm":17363},"id":"SZ","fips":"WZ","iso":"SZ","iso3":"SWZ"},{"arcs":[[-661,891]],"type":"Polygon","properties":{"name":"Sint Maarten (Dutch part)","capital":"Philipsburg","languages":"nl,en","neighbours":"MF","tld":".sx","currencyCode":"ANG","currencyName":"Guilder","continent":"NA","areaSqKm":21},"id":"SX","fips":"NN","iso":"SX","iso3":"SXM"},{"type":null,"properties":{"name":"Seychelles","capital":"Victoria","languages":"en-SC,fr-SC","neighbours":"","tld":".sc","currencyCode":"SCR","currencyName":"Rupee","continent":"AF","areaSqKm":455},"id":"SC","fips":"SE","iso":"SC","iso3":"SYC"},{"arcs":[[-597,-589,-641,892,893,-579]],"type":"Polygon","properties":{"name":"Syrian Arab Republic","capital":"Damascus","languages":"ar-SY,ku,hy,arc,fr,en","neighbours":"IQ,JO,IL,TR,LB","tld":".sy","currencyCode":"SYP","currencyName":"Pound","continent":"AS","areaSqKm":185180},"id":"SY","fips":"SY","iso":"SY","iso3":"SYR"},{"type":null,"properties":{"name":"Turks and Caicos Islands","capital":"Cockburn Town","languages":"en-TC","neighbours":"","tld":".tc","currencyCode":"USD","currencyName":"Dollar","continent":"NA","areaSqKm":430},"id":"TC","fips":"TK","iso":"TC","iso3":"TCA"},{"arcs":[[-150,-286,-713,-712,-646,-862]],"type":"Polygon","properties":{"name":"Chad","capital":"N'Djamena","languages":"fr-TD,ar-TD,sre","neighbours":"NE,LY,CF,SD,CM,NG","tld":".td","currencyCode":"XAF","currencyName":"Franc","continent":"AF","areaSqKm":1284000},"id":"TD","fips":"CD","iso":"TD","iso3":"TCD"},{"arcs":[[-425,-83,-78,894]],"type":"Polygon","properties":{"name":"Togo","capital":"Lome","languages":"fr-TG,ee,hna,kbp,dag,ha","neighbours":"BJ,GH,BF","tld":".tg","currencyCode":"XOF","currencyName":"Franc","continent":"AF","areaSqKm":56785},"id":"TG","fips":"TO","iso":"TG","iso3":"TGO"},{"arcs":[[[895]],[[-638,-624,896,-701,897,-680]]],"type":"MultiPolygon","properties":{"name":"Thailand","capital":"Bangkok","languages":"th,en","neighbours":"LA,MM,KH,MY","tld":".th","currencyCode":"THB","currencyName":"Baht","continent":"AS","areaSqKm":514000},"id":"TH","fips":"TH","iso":"TH","iso3":"THA"},{"arcs":[[-622,-268,-5,898]],"type":"Polygon","properties":{"name":"Tajikistan","capital":"Dushanbe","languages":"tg,ru","neighbours":"CN,AF,KG,UZ","tld":".tj","currencyCode":"TJS","currencyName":"Somoni","continent":"AS","areaSqKm":143100},"id":"TJ","fips":"TI","iso":"TJ","iso3":"TJK"},{"arcs":[[-3,-570,899,-614,900]],"type":"Polygon","properties":{"name":"Turkmenistan","capital":"Ashgabat","languages":"tk,ru,uz","neighbours":"AF,IR,UZ,KZ","tld":".tm","currencyCode":"TMT","currencyName":"Manat","continent":"AS","areaSqKm":488100},"id":"TM","fips":"TX","iso":"TM","iso3":"TKM"},{"arcs":[[[-489,901]],[[-491,902]]],"type":"MultiPolygon","properties":{"name":"Timor-Leste","capital":"Dili","languages":"tet,pt-TL,id,en","neighbours":"ID","tld":".tl","currencyCode":"USD","currencyName":"Dollar","continent":"OC","areaSqKm":15007},"id":"TL","fips":"TT","iso":"TL","iso3":"TLS"},{"type":null,"properties":{"name":"Tonga","capital":"Nuku'alofa","languages":"to,en-TO","neighbours":"","tld":".to","currencyCode":"TOP","currencyName":"Pa'anga","continent":"OC","areaSqKm":748},"id":"TO","fips":"TN","iso":"TO","iso3":"TON"},{"arcs":[[903]],"type":"Polygon","properties":{"name":"Trinidad and Tobago","capital":"Port of Spain","languages":"en-TT,hns,fr,es,zh","neighbours":"","tld":".tt","currencyCode":"TTD","currencyName":"Dollar","continent":"NA","areaSqKm":5128},"id":"TT","fips":"TD","iso":"TT","iso3":"TTO"},{"arcs":[[[904]],[[-648,-347,905]]],"type":"MultiPolygon","properties":{"name":"Tunisia","capital":"Tunis","languages":"ar-TN,fr","neighbours":"DZ,LY","tld":".tn","currencyCode":"TND","currencyName":"Dinar","continent":"AF","areaSqKm":163610},"id":"TN","fips":"TS","iso":"TN","iso3":"TUN"},{"arcs":[[[-421,-37,-63,-575,-580,-894,906]],[[-449,-92,907]]],"type":"MultiPolygon","properties":{"name":"Turkey","capital":"Ankara","languages":"tr-TR,ku,diq,az,av","neighbours":"SY,GE,IQ,IR,GR,AM,AZ,BG","tld":".tr","currencyCode":"TRY","currencyName":"Lira","continent":"AS","areaSqKm":780580},"id":"TR","fips":"TU","iso":"TR","iso3":"TUR"},{"arcs":[[908]],"type":"Polygon","properties":{"name":"Taiwan, Province of China","capital":"Taipei","languages":"zh-TW,zh,nan,hak","neighbours":"","tld":".tw","currencyCode":"TWD","currencyName":"Dollar","continent":"AS","areaSqKm":35980},"id":"TW","fips":"TW","iso":"TW","iso3":"TWN"},{"arcs":[[[909]],[[910]],[[-619,911,-690,-698,912,-289,-70,-855,913]]],"type":"MultiPolygon","properties":{"name":"Tanzania, United Republic of","capital":"Dodoma","languages":"sw-TZ,en,ar","neighbours":"MZ,KE,CD,RW,ZM,BI,UG,MW","tld":".tz","currencyCode":"TZS","currencyName":"Shilling","continent":"AF","areaSqKm":945087},"id":"TZ","fips":"TZ","iso":"TZ","iso3":"TZA"},{"arcs":[[-854,-287,-864,-620,-914]],"type":"Polygon","properties":{"name":"Uganda","capital":"Kampala","languages":"en-UG,lg,sw,ar","neighbours":"TZ,KE,SS,CD,RW","tld":".ug","currencyCode":"UGX","currencyName":"Shilling","continent":"AF","areaSqKm":236040},"id":"UG","fips":"UG","iso":"UG","iso3":"UGA"},{"arcs":[[-801,-665,-800,-486,-886,-782,-109,-836]],"type":"Polygon","properties":{"name":"Ukraine","capital":"Kyiv","languages":"uk,ru-UA,rom,pl,hu","neighbours":"PL,MD,HU,SK,BY,RO,RU","tld":".ua","currencyCode":"UAH","currencyName":"Hryvnia","continent":"EU","areaSqKm":603700},"id":"UA","fips":"UP","iso":"UA","iso3":"UKR"},{"arcs":[[-31,-132,914]],"type":"Polygon","properties":{"name":"Uruguay","capital":"Montevideo","languages":"es-UY","neighbours":"BR,AR","tld":".uy","currencyCode":"UYU","currencyName":"Peso","continent":"SA","areaSqKm":176220},"id":"UY","fips":"UY","iso":"UY","iso3":"URY"},{"arcs":[[[915]],[[916]],[[917]],[[918]],[[919]],[[920]],[[-154,921,-672,922,-193]],[[923]],[[924]],[[925]],[[926]],[[927]],[[928]],[[929]],[[930]],[[931]],[[932]],[[933]],[[934]],[[935]],[[936]],[[937]],[[938]],[[939]],[[940]],[[941]],[[942]],[[943]],[[944]],[[-191,945,-167,946]]],"type":"MultiPolygon","properties":{"name":"United States","capital":"Washington","languages":"en-US,es-US,haw,fr","neighbours":"CA,MX,CU","tld":".us","currencyCode":"USD","currencyName":"Dollar","continent":"NA","areaSqKm":9629091},"id":"US","fips":"US","iso":"US","iso3":"USA"},{"arcs":[[-623,-899,-4,-901,-613]],"type":"Polygon","properties":{"name":"Uzbekistan","capital":"Tashkent","languages":"uz,ru,tg","neighbours":"TM,AF,KG,TJ,KZ","tld":".uz","currencyCode":"UZS","currencyName":"Som","continent":"AS","areaSqKm":447400},"id":"UZ","fips":"UZ","iso":"UZ","iso3":"UZB"},{"type":null,"properties":{"name":"Saint Vincent and the Grenadines","capital":"Kingstown","languages":"en-VC,fr","neighbours":"","tld":".vc","currencyCode":"XCD","currencyName":"Dollar","continent":"NA","areaSqKm":389},"id":"VC","fips":"VC","iso":"VC","iso3":"VCT"},{"arcs":[[[947]],[[948]],[[-465,-136,-296,949]]],"type":"MultiPolygon","properties":{"name":"Venezuela, Bolivarian Republic of","capital":"Caracas","languages":"es-VE","neighbours":"GY,BR,CO","tld":".ve","currencyCode":"VES","currencyName":"Bolivar Soberano","continent":"SA","areaSqKm":912050},"id":"VE","fips":"VE","iso":"VE","iso3":"VEN"},{"type":null,"properties":{"name":"Virgin Islands, British","capital":"Road Town","languages":"en-VG","neighbours":"","tld":".vg","currencyCode":"USD","currencyName":"Dollar","continent":"NA","areaSqKm":153},"id":"VG","fips":"VI","iso":"VG","iso3":"VGB"},{"type":null,"properties":{"name":"Virgin Islands, U.S.","capital":"Charlotte Amalie","languages":"en-VI","neighbours":"","tld":".vi","currencyCode":"USD","currencyName":"Dollar","continent":"NA","areaSqKm":352},"id":"VI","fips":"VQ","iso":"VI","iso3":"VIR"},{"arcs":[[-626,-640,-259,950]],"type":"Polygon","properties":{"name":"Viet Nam","capital":"Hanoi","languages":"vi,en,fr,zh,km","neighbours":"CN,LA,KH","tld":".vn","currencyCode":"VND","currencyName":"Dong","continent":"AS","areaSqKm":329560},"id":"VN","fips":"VM","iso":"VN","iso3":"VNM"},{"arcs":[[[951]],[[952]],[[953]],[[954]],[[955]],[[956]]],"type":"MultiPolygon","properties":{"name":"Vanuatu","capital":"Port Vila","languages":"bi,en-VU,fr-VU","neighbours":"","tld":".vu","currencyCode":"VUV","currencyName":"Vatu","continent":"OC","areaSqKm":12200},"id":"VU","fips":"NH","iso":"VU","iso3":"VUT"},{"type":null,"properties":{"name":"Wallis and Futuna","capital":"Mata Utu","languages":"wls,fud,fr-WF","neighbours":"","tld":".wf","currencyCode":"XPF","currencyName":"Franc","continent":"OC","areaSqKm":274},"id":"WF","fips":"WF","iso":"WF","iso3":"WLF"},{"arcs":[[[957]],[[958]]],"type":"MultiPolygon","properties":{"name":"Samoa","capital":"Apia","languages":"sm,en-WS","neighbours":"","tld":".ws","currencyCode":"WST","currencyName":"Tala","continent":"OC","areaSqKm":2944},"id":"WS","fips":"WS","iso":"WS","iso3":"WSM"},{"arcs":[[[959]],[[-859,-738,960]]],"type":"MultiPolygon","properties":{"name":"Yemen","capital":"Sanaa","languages":"ar-YE","neighbours":"SA,OM","tld":".ye","currencyCode":"YER","currencyName":"Rial","continent":"AS","areaSqKm":527970},"id":"YE","fips":"YM","iso":"YE","iso3":"YEM"},{"arcs":[[-686,-891,-692,961,-705,-143,962],[963]],"type":"Polygon","properties":{"name":"South Africa","capital":"Pretoria","languages":"zu,xh,af,nso,en-ZA,tn,st,ts,ss,ve,nr","neighbours":"ZW,SZ,MZ,BW,NA,LS","tld":".za","currencyCode":"ZAR","currencyName":"Rand","continent":"AF","areaSqKm":1219912},"id":"ZA","fips":"SF","iso":"ZA","iso3":"ZAF"},{"arcs":[[-688,964,-707,-7,-290,-913,-697]],"type":"Polygon","properties":{"name":"Zambia","capital":"Lusaka","languages":"en-ZM,bem,loz,lun,lue,ny,toi","neighbours":"ZW,TZ,MZ,CD,NA,MW,AO","tld":".zm","currencyCode":"ZMW","currencyName":"Kwacha","continent":"AF","areaSqKm":752614},"id":"ZM","fips":"ZA","iso":"ZM","iso3":"ZMB"},{"arcs":[[-145,-965,-687,-963]],"type":"Polygon","properties":{"name":"Zimbabwe","capital":"Harare","languages":"en-ZW,sn,nr,nd","neighbours":"ZA,MZ,BW,ZM","tld":".zw","currencyCode":"ZWL","currencyName":"Dollar","continent":"AF","areaSqKm":390580},"id":"ZW","fips":"ZI","iso":"ZW","iso3":"ZWE"}]}}}