├── .gitignore
├── LICENSE
├── README.md
├── app.js
├── package-lock.json
├── package.json
├── public
├── favicon.ico
├── globe.js
├── index.html
├── main.css
├── particles.js
├── planetaryjs.min.js
└── world-110m-withlakes.json
└── server.js
/.gitignore:
--------------------------------------------------------------------------------
1 | # Logs
2 | logs
3 | *.log
4 | npm-debug.log*
5 | yarn-debug.log*
6 | yarn-error.log*
7 | lerna-debug.log*
8 |
9 | # Diagnostic reports (https://nodejs.org/api/report.html)
10 | report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
11 |
12 | # Runtime data
13 | pids
14 | *.pid
15 | *.seed
16 | *.pid.lock
17 |
18 | # Directory for instrumented libs generated by jscoverage/JSCover
19 | lib-cov
20 |
21 | # Coverage directory used by tools like istanbul
22 | coverage
23 | *.lcov
24 |
25 | # nyc test coverage
26 | .nyc_output
27 |
28 | # Grunt intermediate storage (https://gruntjs.com/creating-plugins#storing-task-files)
29 | .grunt
30 |
31 | # Bower dependency directory (https://bower.io/)
32 | bower_components
33 |
34 | # node-waf configuration
35 | .lock-wscript
36 |
37 | # Compiled binary addons (https://nodejs.org/api/addons.html)
38 | build/Release
39 |
40 | # Dependency directories
41 | node_modules/
42 | jspm_packages/
43 |
44 | # TypeScript v1 declaration files
45 | typings/
46 |
47 | # TypeScript cache
48 | *.tsbuildinfo
49 |
50 | # Optional npm cache directory
51 | .npm
52 |
53 | # Optional eslint cache
54 | .eslintcache
55 |
56 | # Microbundle cache
57 | .rpt2_cache/
58 | .rts2_cache_cjs/
59 | .rts2_cache_es/
60 | .rts2_cache_umd/
61 |
62 | # Optional REPL history
63 | .node_repl_history
64 |
65 | # Output of 'npm pack'
66 | *.tgz
67 |
68 | # Yarn Integrity file
69 | .yarn-integrity
70 |
71 | # dotenv environment variables file
72 | .env
73 | .env.test
74 |
75 | # parcel-bundler cache (https://parceljs.org/)
76 | .cache
77 |
78 | # Next.js build output
79 | .next
80 |
81 | # Nuxt.js build / generate output
82 | .nuxt
83 | dist
84 |
85 | # Gatsby files
86 | .cache/
87 | # Comment in the public line in if your project uses Gatsby and *not* Next.js
88 | # https://nextjs.org/blog/next-9-1#public-directory-support
89 | # public
90 |
91 | # vuepress build output
92 | .vuepress/dist
93 |
94 | # Serverless directories
95 | .serverless/
96 |
97 | # FuseBox cache
98 | .fusebox/
99 |
100 | # DynamoDB Local files
101 | .dynamodb/
102 |
103 | # TernJS port file
104 | .tern-port
105 |
--------------------------------------------------------------------------------
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2021 Cyclic Software
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Cyclic - Express Hello World
2 |
3 | This is a basic starter Expressjs app with:
4 |
5 | - Static file hosting
6 | - Logging Middleware
7 | - Catch-all handler that echoes request info
8 |
9 | ## Local Quick Start
10 |
11 | - Clone to your local
12 | - Install dependencies `npm install`
13 | - Run locally `npm serve`
14 | - Make requests
15 | - Browser: `http://localhost:3000/some/path?q=query+one&q=second+query&single=value`
16 | - Command line: `curl -i -XGET "http://localhost:3000/cmd/line-curl"`
17 |
18 | ## Deploy in under 10 seconds
19 |
20 | [](https://deploy.cyclic.app/)
21 | - Sets up instant continuous deployment on `git push`
22 | - Realtime backend logs and API request monitoring
23 |
24 | ### Cyclic Runtime
25 |
26 | - Cyclic hosts your app on serverless infrastructure. That means there is no guarantee of memory or file system persistence between requests.
27 | - The runtime expects a nodejs entry point defined as:
28 | - package.json "main" field defines the entry point file (if missing uses index.js)
29 | - Entry point starts a server on `process.env.PORT`
30 |
31 | ## Say Hi
32 |
33 | Ask a question or give us a shout out:
34 |
35 | - 💌 hello@cyclic.sh
36 | - 🐣 https://twitter.com/cyclicsoftware
37 |
--------------------------------------------------------------------------------
/app.js:
--------------------------------------------------------------------------------
1 | const express = require('express')
2 | const path = require("path");
3 | const app = express()
4 |
5 | // #############################################################################
6 | // Logs all request paths and method
7 | app.use(function (req, res, next) {
8 | res.set('x-timestamp', Date.now())
9 | res.set('x-powered-by', 'cyclic.sh')
10 | console.log(`[${new Date().toISOString()}] ${req.ip} ${req.method} ${req.path}`);
11 | next();
12 | });
13 |
14 | // #############################################################################
15 | // This configures static hosting for files in /public that have the extensions
16 | // listed in the array.
17 | var options = {
18 | dotfiles: 'ignore',
19 | etag: false,
20 | extensions: ['htm', 'html','css','js','ico','jpg','jpeg','png','svg'],
21 | index: ['index.html'],
22 | maxAge: '1m',
23 | redirect: false
24 | }
25 | app.use(express.static('public', options))
26 |
27 | // #############################################################################
28 | // Catch all handler for all other request.
29 | app.use('*', (req,res) => {
30 | res.json({
31 | at: new Date().toISOString(),
32 | method: req.method,
33 | hostname: req.hostname,
34 | ip: req.ip,
35 | query: req.query,
36 | headers: req.headers,
37 | cookies: req.cookies,
38 | params: req.params
39 | })
40 | .end()
41 | })
42 |
43 | module.exports = app
44 |
--------------------------------------------------------------------------------
/package-lock.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "express-hello-world",
3 | "version": "1.0.0",
4 | "lockfileVersion": 2,
5 | "requires": true,
6 | "packages": {
7 | "": {
8 | "version": "1.0.0",
9 | "license": "MIT",
10 | "dependencies": {
11 | "express": "^4.18.2"
12 | },
13 | "devDependencies": {
14 | "nodemon": "^2.0.22"
15 | }
16 | },
17 | "node_modules/abbrev": {
18 | "version": "1.1.1",
19 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
20 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
21 | "dev": true
22 | },
23 | "node_modules/accepts": {
24 | "version": "1.3.8",
25 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
26 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
27 | "dependencies": {
28 | "mime-types": "~2.1.34",
29 | "negotiator": "0.6.3"
30 | },
31 | "engines": {
32 | "node": ">= 0.6"
33 | }
34 | },
35 | "node_modules/anymatch": {
36 | "version": "3.1.2",
37 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
38 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
39 | "dev": true,
40 | "dependencies": {
41 | "normalize-path": "^3.0.0",
42 | "picomatch": "^2.0.4"
43 | },
44 | "engines": {
45 | "node": ">= 8"
46 | }
47 | },
48 | "node_modules/array-flatten": {
49 | "version": "1.1.1",
50 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
51 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
52 | },
53 | "node_modules/balanced-match": {
54 | "version": "1.0.2",
55 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
56 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
57 | "dev": true
58 | },
59 | "node_modules/binary-extensions": {
60 | "version": "2.2.0",
61 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
62 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
63 | "dev": true,
64 | "engines": {
65 | "node": ">=8"
66 | }
67 | },
68 | "node_modules/body-parser": {
69 | "version": "1.20.1",
70 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
71 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
72 | "dependencies": {
73 | "bytes": "3.1.2",
74 | "content-type": "~1.0.4",
75 | "debug": "2.6.9",
76 | "depd": "2.0.0",
77 | "destroy": "1.2.0",
78 | "http-errors": "2.0.0",
79 | "iconv-lite": "0.4.24",
80 | "on-finished": "2.4.1",
81 | "qs": "6.11.0",
82 | "raw-body": "2.5.1",
83 | "type-is": "~1.6.18",
84 | "unpipe": "1.0.0"
85 | },
86 | "engines": {
87 | "node": ">= 0.8",
88 | "npm": "1.2.8000 || >= 1.4.16"
89 | }
90 | },
91 | "node_modules/brace-expansion": {
92 | "version": "1.1.11",
93 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
94 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
95 | "dev": true,
96 | "dependencies": {
97 | "balanced-match": "^1.0.0",
98 | "concat-map": "0.0.1"
99 | }
100 | },
101 | "node_modules/braces": {
102 | "version": "3.0.2",
103 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
104 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
105 | "dev": true,
106 | "dependencies": {
107 | "fill-range": "^7.0.1"
108 | },
109 | "engines": {
110 | "node": ">=8"
111 | }
112 | },
113 | "node_modules/bytes": {
114 | "version": "3.1.2",
115 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
116 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==",
117 | "engines": {
118 | "node": ">= 0.8"
119 | }
120 | },
121 | "node_modules/call-bind": {
122 | "version": "1.0.2",
123 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
124 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
125 | "dependencies": {
126 | "function-bind": "^1.1.1",
127 | "get-intrinsic": "^1.0.2"
128 | },
129 | "funding": {
130 | "url": "https://github.com/sponsors/ljharb"
131 | }
132 | },
133 | "node_modules/chokidar": {
134 | "version": "3.5.2",
135 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
136 | "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
137 | "dev": true,
138 | "dependencies": {
139 | "anymatch": "~3.1.2",
140 | "braces": "~3.0.2",
141 | "glob-parent": "~5.1.2",
142 | "is-binary-path": "~2.1.0",
143 | "is-glob": "~4.0.1",
144 | "normalize-path": "~3.0.0",
145 | "readdirp": "~3.6.0"
146 | },
147 | "engines": {
148 | "node": ">= 8.10.0"
149 | },
150 | "optionalDependencies": {
151 | "fsevents": "~2.3.2"
152 | }
153 | },
154 | "node_modules/concat-map": {
155 | "version": "0.0.1",
156 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
157 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
158 | "dev": true
159 | },
160 | "node_modules/content-disposition": {
161 | "version": "0.5.4",
162 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
163 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
164 | "dependencies": {
165 | "safe-buffer": "5.2.1"
166 | },
167 | "engines": {
168 | "node": ">= 0.6"
169 | }
170 | },
171 | "node_modules/content-type": {
172 | "version": "1.0.5",
173 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
174 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA==",
175 | "engines": {
176 | "node": ">= 0.6"
177 | }
178 | },
179 | "node_modules/cookie": {
180 | "version": "0.5.0",
181 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
182 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==",
183 | "engines": {
184 | "node": ">= 0.6"
185 | }
186 | },
187 | "node_modules/cookie-signature": {
188 | "version": "1.0.6",
189 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
190 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
191 | },
192 | "node_modules/debug": {
193 | "version": "2.6.9",
194 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
195 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
196 | "dependencies": {
197 | "ms": "2.0.0"
198 | }
199 | },
200 | "node_modules/depd": {
201 | "version": "2.0.0",
202 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
203 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==",
204 | "engines": {
205 | "node": ">= 0.8"
206 | }
207 | },
208 | "node_modules/destroy": {
209 | "version": "1.2.0",
210 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
211 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==",
212 | "engines": {
213 | "node": ">= 0.8",
214 | "npm": "1.2.8000 || >= 1.4.16"
215 | }
216 | },
217 | "node_modules/ee-first": {
218 | "version": "1.1.1",
219 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
220 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
221 | },
222 | "node_modules/encodeurl": {
223 | "version": "1.0.2",
224 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
225 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==",
226 | "engines": {
227 | "node": ">= 0.8"
228 | }
229 | },
230 | "node_modules/escape-html": {
231 | "version": "1.0.3",
232 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
233 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
234 | },
235 | "node_modules/etag": {
236 | "version": "1.8.1",
237 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
238 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==",
239 | "engines": {
240 | "node": ">= 0.6"
241 | }
242 | },
243 | "node_modules/express": {
244 | "version": "4.18.2",
245 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
246 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
247 | "dependencies": {
248 | "accepts": "~1.3.8",
249 | "array-flatten": "1.1.1",
250 | "body-parser": "1.20.1",
251 | "content-disposition": "0.5.4",
252 | "content-type": "~1.0.4",
253 | "cookie": "0.5.0",
254 | "cookie-signature": "1.0.6",
255 | "debug": "2.6.9",
256 | "depd": "2.0.0",
257 | "encodeurl": "~1.0.2",
258 | "escape-html": "~1.0.3",
259 | "etag": "~1.8.1",
260 | "finalhandler": "1.2.0",
261 | "fresh": "0.5.2",
262 | "http-errors": "2.0.0",
263 | "merge-descriptors": "1.0.1",
264 | "methods": "~1.1.2",
265 | "on-finished": "2.4.1",
266 | "parseurl": "~1.3.3",
267 | "path-to-regexp": "0.1.7",
268 | "proxy-addr": "~2.0.7",
269 | "qs": "6.11.0",
270 | "range-parser": "~1.2.1",
271 | "safe-buffer": "5.2.1",
272 | "send": "0.18.0",
273 | "serve-static": "1.15.0",
274 | "setprototypeof": "1.2.0",
275 | "statuses": "2.0.1",
276 | "type-is": "~1.6.18",
277 | "utils-merge": "1.0.1",
278 | "vary": "~1.1.2"
279 | },
280 | "engines": {
281 | "node": ">= 0.10.0"
282 | }
283 | },
284 | "node_modules/fill-range": {
285 | "version": "7.0.1",
286 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
287 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
288 | "dev": true,
289 | "dependencies": {
290 | "to-regex-range": "^5.0.1"
291 | },
292 | "engines": {
293 | "node": ">=8"
294 | }
295 | },
296 | "node_modules/finalhandler": {
297 | "version": "1.2.0",
298 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
299 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
300 | "dependencies": {
301 | "debug": "2.6.9",
302 | "encodeurl": "~1.0.2",
303 | "escape-html": "~1.0.3",
304 | "on-finished": "2.4.1",
305 | "parseurl": "~1.3.3",
306 | "statuses": "2.0.1",
307 | "unpipe": "~1.0.0"
308 | },
309 | "engines": {
310 | "node": ">= 0.8"
311 | }
312 | },
313 | "node_modules/forwarded": {
314 | "version": "0.2.0",
315 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
316 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==",
317 | "engines": {
318 | "node": ">= 0.6"
319 | }
320 | },
321 | "node_modules/fresh": {
322 | "version": "0.5.2",
323 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
324 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==",
325 | "engines": {
326 | "node": ">= 0.6"
327 | }
328 | },
329 | "node_modules/fsevents": {
330 | "version": "2.3.2",
331 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
332 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
333 | "dev": true,
334 | "hasInstallScript": true,
335 | "optional": true,
336 | "os": [
337 | "darwin"
338 | ],
339 | "engines": {
340 | "node": "^8.16.0 || ^10.6.0 || >=11.0.0"
341 | }
342 | },
343 | "node_modules/function-bind": {
344 | "version": "1.1.1",
345 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
346 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
347 | },
348 | "node_modules/get-intrinsic": {
349 | "version": "1.2.1",
350 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
351 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
352 | "dependencies": {
353 | "function-bind": "^1.1.1",
354 | "has": "^1.0.3",
355 | "has-proto": "^1.0.1",
356 | "has-symbols": "^1.0.3"
357 | },
358 | "funding": {
359 | "url": "https://github.com/sponsors/ljharb"
360 | }
361 | },
362 | "node_modules/glob-parent": {
363 | "version": "5.1.2",
364 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
365 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
366 | "dev": true,
367 | "dependencies": {
368 | "is-glob": "^4.0.1"
369 | },
370 | "engines": {
371 | "node": ">= 6"
372 | }
373 | },
374 | "node_modules/has": {
375 | "version": "1.0.3",
376 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
377 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
378 | "dependencies": {
379 | "function-bind": "^1.1.1"
380 | },
381 | "engines": {
382 | "node": ">= 0.4.0"
383 | }
384 | },
385 | "node_modules/has-flag": {
386 | "version": "3.0.0",
387 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
388 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
389 | "dev": true,
390 | "engines": {
391 | "node": ">=4"
392 | }
393 | },
394 | "node_modules/has-proto": {
395 | "version": "1.0.1",
396 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
397 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==",
398 | "engines": {
399 | "node": ">= 0.4"
400 | },
401 | "funding": {
402 | "url": "https://github.com/sponsors/ljharb"
403 | }
404 | },
405 | "node_modules/has-symbols": {
406 | "version": "1.0.3",
407 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
408 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==",
409 | "engines": {
410 | "node": ">= 0.4"
411 | },
412 | "funding": {
413 | "url": "https://github.com/sponsors/ljharb"
414 | }
415 | },
416 | "node_modules/http-errors": {
417 | "version": "2.0.0",
418 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
419 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
420 | "dependencies": {
421 | "depd": "2.0.0",
422 | "inherits": "2.0.4",
423 | "setprototypeof": "1.2.0",
424 | "statuses": "2.0.1",
425 | "toidentifier": "1.0.1"
426 | },
427 | "engines": {
428 | "node": ">= 0.8"
429 | }
430 | },
431 | "node_modules/iconv-lite": {
432 | "version": "0.4.24",
433 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
434 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
435 | "dependencies": {
436 | "safer-buffer": ">= 2.1.2 < 3"
437 | },
438 | "engines": {
439 | "node": ">=0.10.0"
440 | }
441 | },
442 | "node_modules/ignore-by-default": {
443 | "version": "1.0.1",
444 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
445 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=",
446 | "dev": true
447 | },
448 | "node_modules/inherits": {
449 | "version": "2.0.4",
450 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
451 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
452 | },
453 | "node_modules/ipaddr.js": {
454 | "version": "1.9.1",
455 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
456 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==",
457 | "engines": {
458 | "node": ">= 0.10"
459 | }
460 | },
461 | "node_modules/is-binary-path": {
462 | "version": "2.1.0",
463 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
464 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
465 | "dev": true,
466 | "dependencies": {
467 | "binary-extensions": "^2.0.0"
468 | },
469 | "engines": {
470 | "node": ">=8"
471 | }
472 | },
473 | "node_modules/is-extglob": {
474 | "version": "2.1.1",
475 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
476 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
477 | "dev": true,
478 | "engines": {
479 | "node": ">=0.10.0"
480 | }
481 | },
482 | "node_modules/is-glob": {
483 | "version": "4.0.1",
484 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
485 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
486 | "dev": true,
487 | "dependencies": {
488 | "is-extglob": "^2.1.1"
489 | },
490 | "engines": {
491 | "node": ">=0.10.0"
492 | }
493 | },
494 | "node_modules/is-number": {
495 | "version": "7.0.0",
496 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
497 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
498 | "dev": true,
499 | "engines": {
500 | "node": ">=0.12.0"
501 | }
502 | },
503 | "node_modules/media-typer": {
504 | "version": "0.3.0",
505 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
506 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==",
507 | "engines": {
508 | "node": ">= 0.6"
509 | }
510 | },
511 | "node_modules/merge-descriptors": {
512 | "version": "1.0.1",
513 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
514 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
515 | },
516 | "node_modules/methods": {
517 | "version": "1.1.2",
518 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
519 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=",
520 | "engines": {
521 | "node": ">= 0.6"
522 | }
523 | },
524 | "node_modules/mime": {
525 | "version": "1.6.0",
526 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
527 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==",
528 | "bin": {
529 | "mime": "cli.js"
530 | },
531 | "engines": {
532 | "node": ">=4"
533 | }
534 | },
535 | "node_modules/mime-db": {
536 | "version": "1.52.0",
537 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
538 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==",
539 | "engines": {
540 | "node": ">= 0.6"
541 | }
542 | },
543 | "node_modules/mime-types": {
544 | "version": "2.1.35",
545 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
546 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
547 | "dependencies": {
548 | "mime-db": "1.52.0"
549 | },
550 | "engines": {
551 | "node": ">= 0.6"
552 | }
553 | },
554 | "node_modules/minimatch": {
555 | "version": "3.1.2",
556 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
557 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
558 | "dev": true,
559 | "dependencies": {
560 | "brace-expansion": "^1.1.7"
561 | },
562 | "engines": {
563 | "node": "*"
564 | }
565 | },
566 | "node_modules/ms": {
567 | "version": "2.0.0",
568 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
569 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
570 | },
571 | "node_modules/negotiator": {
572 | "version": "0.6.3",
573 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
574 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==",
575 | "engines": {
576 | "node": ">= 0.6"
577 | }
578 | },
579 | "node_modules/nodemon": {
580 | "version": "2.0.22",
581 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.22.tgz",
582 | "integrity": "sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==",
583 | "dev": true,
584 | "dependencies": {
585 | "chokidar": "^3.5.2",
586 | "debug": "^3.2.7",
587 | "ignore-by-default": "^1.0.1",
588 | "minimatch": "^3.1.2",
589 | "pstree.remy": "^1.1.8",
590 | "semver": "^5.7.1",
591 | "simple-update-notifier": "^1.0.7",
592 | "supports-color": "^5.5.0",
593 | "touch": "^3.1.0",
594 | "undefsafe": "^2.0.5"
595 | },
596 | "bin": {
597 | "nodemon": "bin/nodemon.js"
598 | },
599 | "engines": {
600 | "node": ">=8.10.0"
601 | },
602 | "funding": {
603 | "type": "opencollective",
604 | "url": "https://opencollective.com/nodemon"
605 | }
606 | },
607 | "node_modules/nodemon/node_modules/debug": {
608 | "version": "3.2.7",
609 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
610 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
611 | "dev": true,
612 | "dependencies": {
613 | "ms": "^2.1.1"
614 | }
615 | },
616 | "node_modules/nodemon/node_modules/ms": {
617 | "version": "2.1.3",
618 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
619 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
620 | "dev": true
621 | },
622 | "node_modules/nopt": {
623 | "version": "1.0.10",
624 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
625 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=",
626 | "dev": true,
627 | "dependencies": {
628 | "abbrev": "1"
629 | },
630 | "bin": {
631 | "nopt": "bin/nopt.js"
632 | },
633 | "engines": {
634 | "node": "*"
635 | }
636 | },
637 | "node_modules/normalize-path": {
638 | "version": "3.0.0",
639 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
640 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
641 | "dev": true,
642 | "engines": {
643 | "node": ">=0.10.0"
644 | }
645 | },
646 | "node_modules/object-inspect": {
647 | "version": "1.12.3",
648 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
649 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==",
650 | "funding": {
651 | "url": "https://github.com/sponsors/ljharb"
652 | }
653 | },
654 | "node_modules/on-finished": {
655 | "version": "2.4.1",
656 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
657 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
658 | "dependencies": {
659 | "ee-first": "1.1.1"
660 | },
661 | "engines": {
662 | "node": ">= 0.8"
663 | }
664 | },
665 | "node_modules/parseurl": {
666 | "version": "1.3.3",
667 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
668 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==",
669 | "engines": {
670 | "node": ">= 0.8"
671 | }
672 | },
673 | "node_modules/path-to-regexp": {
674 | "version": "0.1.7",
675 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
676 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
677 | },
678 | "node_modules/picomatch": {
679 | "version": "2.3.0",
680 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
681 | "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",
682 | "dev": true,
683 | "engines": {
684 | "node": ">=8.6"
685 | },
686 | "funding": {
687 | "url": "https://github.com/sponsors/jonschlinkert"
688 | }
689 | },
690 | "node_modules/proxy-addr": {
691 | "version": "2.0.7",
692 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
693 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
694 | "dependencies": {
695 | "forwarded": "0.2.0",
696 | "ipaddr.js": "1.9.1"
697 | },
698 | "engines": {
699 | "node": ">= 0.10"
700 | }
701 | },
702 | "node_modules/pstree.remy": {
703 | "version": "1.1.8",
704 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
705 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
706 | "dev": true
707 | },
708 | "node_modules/qs": {
709 | "version": "6.11.0",
710 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
711 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
712 | "dependencies": {
713 | "side-channel": "^1.0.4"
714 | },
715 | "engines": {
716 | "node": ">=0.6"
717 | },
718 | "funding": {
719 | "url": "https://github.com/sponsors/ljharb"
720 | }
721 | },
722 | "node_modules/range-parser": {
723 | "version": "1.2.1",
724 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
725 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==",
726 | "engines": {
727 | "node": ">= 0.6"
728 | }
729 | },
730 | "node_modules/raw-body": {
731 | "version": "2.5.1",
732 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
733 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
734 | "dependencies": {
735 | "bytes": "3.1.2",
736 | "http-errors": "2.0.0",
737 | "iconv-lite": "0.4.24",
738 | "unpipe": "1.0.0"
739 | },
740 | "engines": {
741 | "node": ">= 0.8"
742 | }
743 | },
744 | "node_modules/readdirp": {
745 | "version": "3.6.0",
746 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
747 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
748 | "dev": true,
749 | "dependencies": {
750 | "picomatch": "^2.2.1"
751 | },
752 | "engines": {
753 | "node": ">=8.10.0"
754 | }
755 | },
756 | "node_modules/safe-buffer": {
757 | "version": "5.2.1",
758 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
759 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==",
760 | "funding": [
761 | {
762 | "type": "github",
763 | "url": "https://github.com/sponsors/feross"
764 | },
765 | {
766 | "type": "patreon",
767 | "url": "https://www.patreon.com/feross"
768 | },
769 | {
770 | "type": "consulting",
771 | "url": "https://feross.org/support"
772 | }
773 | ]
774 | },
775 | "node_modules/safer-buffer": {
776 | "version": "2.1.2",
777 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
778 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
779 | },
780 | "node_modules/semver": {
781 | "version": "5.7.1",
782 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
783 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
784 | "dev": true,
785 | "bin": {
786 | "semver": "bin/semver"
787 | }
788 | },
789 | "node_modules/send": {
790 | "version": "0.18.0",
791 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
792 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
793 | "dependencies": {
794 | "debug": "2.6.9",
795 | "depd": "2.0.0",
796 | "destroy": "1.2.0",
797 | "encodeurl": "~1.0.2",
798 | "escape-html": "~1.0.3",
799 | "etag": "~1.8.1",
800 | "fresh": "0.5.2",
801 | "http-errors": "2.0.0",
802 | "mime": "1.6.0",
803 | "ms": "2.1.3",
804 | "on-finished": "2.4.1",
805 | "range-parser": "~1.2.1",
806 | "statuses": "2.0.1"
807 | },
808 | "engines": {
809 | "node": ">= 0.8.0"
810 | }
811 | },
812 | "node_modules/send/node_modules/ms": {
813 | "version": "2.1.3",
814 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
815 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
816 | },
817 | "node_modules/serve-static": {
818 | "version": "1.15.0",
819 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
820 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
821 | "dependencies": {
822 | "encodeurl": "~1.0.2",
823 | "escape-html": "~1.0.3",
824 | "parseurl": "~1.3.3",
825 | "send": "0.18.0"
826 | },
827 | "engines": {
828 | "node": ">= 0.8.0"
829 | }
830 | },
831 | "node_modules/setprototypeof": {
832 | "version": "1.2.0",
833 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
834 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
835 | },
836 | "node_modules/side-channel": {
837 | "version": "1.0.4",
838 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
839 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
840 | "dependencies": {
841 | "call-bind": "^1.0.0",
842 | "get-intrinsic": "^1.0.2",
843 | "object-inspect": "^1.9.0"
844 | },
845 | "funding": {
846 | "url": "https://github.com/sponsors/ljharb"
847 | }
848 | },
849 | "node_modules/simple-update-notifier": {
850 | "version": "1.1.0",
851 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz",
852 | "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==",
853 | "dev": true,
854 | "dependencies": {
855 | "semver": "~7.0.0"
856 | },
857 | "engines": {
858 | "node": ">=8.10.0"
859 | }
860 | },
861 | "node_modules/simple-update-notifier/node_modules/semver": {
862 | "version": "7.0.0",
863 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
864 | "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
865 | "dev": true,
866 | "bin": {
867 | "semver": "bin/semver.js"
868 | }
869 | },
870 | "node_modules/statuses": {
871 | "version": "2.0.1",
872 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
873 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==",
874 | "engines": {
875 | "node": ">= 0.8"
876 | }
877 | },
878 | "node_modules/supports-color": {
879 | "version": "5.5.0",
880 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
881 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
882 | "dev": true,
883 | "dependencies": {
884 | "has-flag": "^3.0.0"
885 | },
886 | "engines": {
887 | "node": ">=4"
888 | }
889 | },
890 | "node_modules/to-regex-range": {
891 | "version": "5.0.1",
892 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
893 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
894 | "dev": true,
895 | "dependencies": {
896 | "is-number": "^7.0.0"
897 | },
898 | "engines": {
899 | "node": ">=8.0"
900 | }
901 | },
902 | "node_modules/toidentifier": {
903 | "version": "1.0.1",
904 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
905 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==",
906 | "engines": {
907 | "node": ">=0.6"
908 | }
909 | },
910 | "node_modules/touch": {
911 | "version": "3.1.0",
912 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz",
913 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==",
914 | "dev": true,
915 | "dependencies": {
916 | "nopt": "~1.0.10"
917 | },
918 | "bin": {
919 | "nodetouch": "bin/nodetouch.js"
920 | }
921 | },
922 | "node_modules/type-is": {
923 | "version": "1.6.18",
924 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
925 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
926 | "dependencies": {
927 | "media-typer": "0.3.0",
928 | "mime-types": "~2.1.24"
929 | },
930 | "engines": {
931 | "node": ">= 0.6"
932 | }
933 | },
934 | "node_modules/undefsafe": {
935 | "version": "2.0.5",
936 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
937 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
938 | "dev": true
939 | },
940 | "node_modules/unpipe": {
941 | "version": "1.0.0",
942 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
943 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==",
944 | "engines": {
945 | "node": ">= 0.8"
946 | }
947 | },
948 | "node_modules/utils-merge": {
949 | "version": "1.0.1",
950 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
951 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=",
952 | "engines": {
953 | "node": ">= 0.4.0"
954 | }
955 | },
956 | "node_modules/vary": {
957 | "version": "1.1.2",
958 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
959 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=",
960 | "engines": {
961 | "node": ">= 0.8"
962 | }
963 | }
964 | },
965 | "dependencies": {
966 | "abbrev": {
967 | "version": "1.1.1",
968 | "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz",
969 | "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==",
970 | "dev": true
971 | },
972 | "accepts": {
973 | "version": "1.3.8",
974 | "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz",
975 | "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==",
976 | "requires": {
977 | "mime-types": "~2.1.34",
978 | "negotiator": "0.6.3"
979 | }
980 | },
981 | "anymatch": {
982 | "version": "3.1.2",
983 | "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz",
984 | "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==",
985 | "dev": true,
986 | "requires": {
987 | "normalize-path": "^3.0.0",
988 | "picomatch": "^2.0.4"
989 | }
990 | },
991 | "array-flatten": {
992 | "version": "1.1.1",
993 | "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz",
994 | "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI="
995 | },
996 | "balanced-match": {
997 | "version": "1.0.2",
998 | "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz",
999 | "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==",
1000 | "dev": true
1001 | },
1002 | "binary-extensions": {
1003 | "version": "2.2.0",
1004 | "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz",
1005 | "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==",
1006 | "dev": true
1007 | },
1008 | "body-parser": {
1009 | "version": "1.20.1",
1010 | "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.1.tgz",
1011 | "integrity": "sha512-jWi7abTbYwajOytWCQc37VulmWiRae5RyTpaCyDcS5/lMdtwSz5lOpDE67srw/HYe35f1z3fDQw+3txg7gNtWw==",
1012 | "requires": {
1013 | "bytes": "3.1.2",
1014 | "content-type": "~1.0.4",
1015 | "debug": "2.6.9",
1016 | "depd": "2.0.0",
1017 | "destroy": "1.2.0",
1018 | "http-errors": "2.0.0",
1019 | "iconv-lite": "0.4.24",
1020 | "on-finished": "2.4.1",
1021 | "qs": "6.11.0",
1022 | "raw-body": "2.5.1",
1023 | "type-is": "~1.6.18",
1024 | "unpipe": "1.0.0"
1025 | }
1026 | },
1027 | "brace-expansion": {
1028 | "version": "1.1.11",
1029 | "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz",
1030 | "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==",
1031 | "dev": true,
1032 | "requires": {
1033 | "balanced-match": "^1.0.0",
1034 | "concat-map": "0.0.1"
1035 | }
1036 | },
1037 | "braces": {
1038 | "version": "3.0.2",
1039 | "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz",
1040 | "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==",
1041 | "dev": true,
1042 | "requires": {
1043 | "fill-range": "^7.0.1"
1044 | }
1045 | },
1046 | "bytes": {
1047 | "version": "3.1.2",
1048 | "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz",
1049 | "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg=="
1050 | },
1051 | "call-bind": {
1052 | "version": "1.0.2",
1053 | "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz",
1054 | "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==",
1055 | "requires": {
1056 | "function-bind": "^1.1.1",
1057 | "get-intrinsic": "^1.0.2"
1058 | }
1059 | },
1060 | "chokidar": {
1061 | "version": "3.5.2",
1062 | "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.2.tgz",
1063 | "integrity": "sha512-ekGhOnNVPgT77r4K/U3GDhu+FQ2S8TnK/s2KbIGXi0SZWuwkZ2QNyfWdZW+TVfn84DpEP7rLeCt2UI6bJ8GwbQ==",
1064 | "dev": true,
1065 | "requires": {
1066 | "anymatch": "~3.1.2",
1067 | "braces": "~3.0.2",
1068 | "fsevents": "~2.3.2",
1069 | "glob-parent": "~5.1.2",
1070 | "is-binary-path": "~2.1.0",
1071 | "is-glob": "~4.0.1",
1072 | "normalize-path": "~3.0.0",
1073 | "readdirp": "~3.6.0"
1074 | }
1075 | },
1076 | "concat-map": {
1077 | "version": "0.0.1",
1078 | "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz",
1079 | "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==",
1080 | "dev": true
1081 | },
1082 | "content-disposition": {
1083 | "version": "0.5.4",
1084 | "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz",
1085 | "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==",
1086 | "requires": {
1087 | "safe-buffer": "5.2.1"
1088 | }
1089 | },
1090 | "content-type": {
1091 | "version": "1.0.5",
1092 | "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.5.tgz",
1093 | "integrity": "sha512-nTjqfcBFEipKdXCv4YDQWCfmcLZKm81ldF0pAopTvyrFGVbcR6P/VAAd5G7N+0tTr8QqiU0tFadD6FK4NtJwOA=="
1094 | },
1095 | "cookie": {
1096 | "version": "0.5.0",
1097 | "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz",
1098 | "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw=="
1099 | },
1100 | "cookie-signature": {
1101 | "version": "1.0.6",
1102 | "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz",
1103 | "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw="
1104 | },
1105 | "debug": {
1106 | "version": "2.6.9",
1107 | "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz",
1108 | "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==",
1109 | "requires": {
1110 | "ms": "2.0.0"
1111 | }
1112 | },
1113 | "depd": {
1114 | "version": "2.0.0",
1115 | "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz",
1116 | "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw=="
1117 | },
1118 | "destroy": {
1119 | "version": "1.2.0",
1120 | "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz",
1121 | "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg=="
1122 | },
1123 | "ee-first": {
1124 | "version": "1.1.1",
1125 | "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz",
1126 | "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow=="
1127 | },
1128 | "encodeurl": {
1129 | "version": "1.0.2",
1130 | "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz",
1131 | "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w=="
1132 | },
1133 | "escape-html": {
1134 | "version": "1.0.3",
1135 | "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz",
1136 | "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow=="
1137 | },
1138 | "etag": {
1139 | "version": "1.8.1",
1140 | "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz",
1141 | "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg=="
1142 | },
1143 | "express": {
1144 | "version": "4.18.2",
1145 | "resolved": "https://registry.npmjs.org/express/-/express-4.18.2.tgz",
1146 | "integrity": "sha512-5/PsL6iGPdfQ/lKM1UuielYgv3BUoJfz1aUwU9vHZ+J7gyvwdQXFEBIEIaxeGf0GIcreATNyBExtalisDbuMqQ==",
1147 | "requires": {
1148 | "accepts": "~1.3.8",
1149 | "array-flatten": "1.1.1",
1150 | "body-parser": "1.20.1",
1151 | "content-disposition": "0.5.4",
1152 | "content-type": "~1.0.4",
1153 | "cookie": "0.5.0",
1154 | "cookie-signature": "1.0.6",
1155 | "debug": "2.6.9",
1156 | "depd": "2.0.0",
1157 | "encodeurl": "~1.0.2",
1158 | "escape-html": "~1.0.3",
1159 | "etag": "~1.8.1",
1160 | "finalhandler": "1.2.0",
1161 | "fresh": "0.5.2",
1162 | "http-errors": "2.0.0",
1163 | "merge-descriptors": "1.0.1",
1164 | "methods": "~1.1.2",
1165 | "on-finished": "2.4.1",
1166 | "parseurl": "~1.3.3",
1167 | "path-to-regexp": "0.1.7",
1168 | "proxy-addr": "~2.0.7",
1169 | "qs": "6.11.0",
1170 | "range-parser": "~1.2.1",
1171 | "safe-buffer": "5.2.1",
1172 | "send": "0.18.0",
1173 | "serve-static": "1.15.0",
1174 | "setprototypeof": "1.2.0",
1175 | "statuses": "2.0.1",
1176 | "type-is": "~1.6.18",
1177 | "utils-merge": "1.0.1",
1178 | "vary": "~1.1.2"
1179 | }
1180 | },
1181 | "fill-range": {
1182 | "version": "7.0.1",
1183 | "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz",
1184 | "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==",
1185 | "dev": true,
1186 | "requires": {
1187 | "to-regex-range": "^5.0.1"
1188 | }
1189 | },
1190 | "finalhandler": {
1191 | "version": "1.2.0",
1192 | "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz",
1193 | "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==",
1194 | "requires": {
1195 | "debug": "2.6.9",
1196 | "encodeurl": "~1.0.2",
1197 | "escape-html": "~1.0.3",
1198 | "on-finished": "2.4.1",
1199 | "parseurl": "~1.3.3",
1200 | "statuses": "2.0.1",
1201 | "unpipe": "~1.0.0"
1202 | }
1203 | },
1204 | "forwarded": {
1205 | "version": "0.2.0",
1206 | "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz",
1207 | "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow=="
1208 | },
1209 | "fresh": {
1210 | "version": "0.5.2",
1211 | "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz",
1212 | "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q=="
1213 | },
1214 | "fsevents": {
1215 | "version": "2.3.2",
1216 | "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz",
1217 | "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==",
1218 | "dev": true,
1219 | "optional": true
1220 | },
1221 | "function-bind": {
1222 | "version": "1.1.1",
1223 | "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz",
1224 | "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A=="
1225 | },
1226 | "get-intrinsic": {
1227 | "version": "1.2.1",
1228 | "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz",
1229 | "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==",
1230 | "requires": {
1231 | "function-bind": "^1.1.1",
1232 | "has": "^1.0.3",
1233 | "has-proto": "^1.0.1",
1234 | "has-symbols": "^1.0.3"
1235 | }
1236 | },
1237 | "glob-parent": {
1238 | "version": "5.1.2",
1239 | "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz",
1240 | "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==",
1241 | "dev": true,
1242 | "requires": {
1243 | "is-glob": "^4.0.1"
1244 | }
1245 | },
1246 | "has": {
1247 | "version": "1.0.3",
1248 | "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz",
1249 | "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==",
1250 | "requires": {
1251 | "function-bind": "^1.1.1"
1252 | }
1253 | },
1254 | "has-flag": {
1255 | "version": "3.0.0",
1256 | "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz",
1257 | "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=",
1258 | "dev": true
1259 | },
1260 | "has-proto": {
1261 | "version": "1.0.1",
1262 | "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz",
1263 | "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg=="
1264 | },
1265 | "has-symbols": {
1266 | "version": "1.0.3",
1267 | "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz",
1268 | "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A=="
1269 | },
1270 | "http-errors": {
1271 | "version": "2.0.0",
1272 | "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz",
1273 | "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==",
1274 | "requires": {
1275 | "depd": "2.0.0",
1276 | "inherits": "2.0.4",
1277 | "setprototypeof": "1.2.0",
1278 | "statuses": "2.0.1",
1279 | "toidentifier": "1.0.1"
1280 | }
1281 | },
1282 | "iconv-lite": {
1283 | "version": "0.4.24",
1284 | "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz",
1285 | "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==",
1286 | "requires": {
1287 | "safer-buffer": ">= 2.1.2 < 3"
1288 | }
1289 | },
1290 | "ignore-by-default": {
1291 | "version": "1.0.1",
1292 | "resolved": "https://registry.npmjs.org/ignore-by-default/-/ignore-by-default-1.0.1.tgz",
1293 | "integrity": "sha1-SMptcvbGo68Aqa1K5odr44ieKwk=",
1294 | "dev": true
1295 | },
1296 | "inherits": {
1297 | "version": "2.0.4",
1298 | "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz",
1299 | "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ=="
1300 | },
1301 | "ipaddr.js": {
1302 | "version": "1.9.1",
1303 | "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz",
1304 | "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g=="
1305 | },
1306 | "is-binary-path": {
1307 | "version": "2.1.0",
1308 | "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz",
1309 | "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==",
1310 | "dev": true,
1311 | "requires": {
1312 | "binary-extensions": "^2.0.0"
1313 | }
1314 | },
1315 | "is-extglob": {
1316 | "version": "2.1.1",
1317 | "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz",
1318 | "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=",
1319 | "dev": true
1320 | },
1321 | "is-glob": {
1322 | "version": "4.0.1",
1323 | "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz",
1324 | "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==",
1325 | "dev": true,
1326 | "requires": {
1327 | "is-extglob": "^2.1.1"
1328 | }
1329 | },
1330 | "is-number": {
1331 | "version": "7.0.0",
1332 | "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz",
1333 | "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==",
1334 | "dev": true
1335 | },
1336 | "media-typer": {
1337 | "version": "0.3.0",
1338 | "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz",
1339 | "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ=="
1340 | },
1341 | "merge-descriptors": {
1342 | "version": "1.0.1",
1343 | "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz",
1344 | "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E="
1345 | },
1346 | "methods": {
1347 | "version": "1.1.2",
1348 | "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz",
1349 | "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4="
1350 | },
1351 | "mime": {
1352 | "version": "1.6.0",
1353 | "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz",
1354 | "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg=="
1355 | },
1356 | "mime-db": {
1357 | "version": "1.52.0",
1358 | "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz",
1359 | "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg=="
1360 | },
1361 | "mime-types": {
1362 | "version": "2.1.35",
1363 | "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz",
1364 | "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==",
1365 | "requires": {
1366 | "mime-db": "1.52.0"
1367 | }
1368 | },
1369 | "minimatch": {
1370 | "version": "3.1.2",
1371 | "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz",
1372 | "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==",
1373 | "dev": true,
1374 | "requires": {
1375 | "brace-expansion": "^1.1.7"
1376 | }
1377 | },
1378 | "ms": {
1379 | "version": "2.0.0",
1380 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz",
1381 | "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g="
1382 | },
1383 | "negotiator": {
1384 | "version": "0.6.3",
1385 | "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz",
1386 | "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg=="
1387 | },
1388 | "nodemon": {
1389 | "version": "2.0.22",
1390 | "resolved": "https://registry.npmjs.org/nodemon/-/nodemon-2.0.22.tgz",
1391 | "integrity": "sha512-B8YqaKMmyuCO7BowF1Z1/mkPqLk6cs/l63Ojtd6otKjMx47Dq1utxfRxcavH1I7VSaL8n5BUaoutadnsX3AAVQ==",
1392 | "dev": true,
1393 | "requires": {
1394 | "chokidar": "^3.5.2",
1395 | "debug": "^3.2.7",
1396 | "ignore-by-default": "^1.0.1",
1397 | "minimatch": "^3.1.2",
1398 | "pstree.remy": "^1.1.8",
1399 | "semver": "^5.7.1",
1400 | "simple-update-notifier": "^1.0.7",
1401 | "supports-color": "^5.5.0",
1402 | "touch": "^3.1.0",
1403 | "undefsafe": "^2.0.5"
1404 | },
1405 | "dependencies": {
1406 | "debug": {
1407 | "version": "3.2.7",
1408 | "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz",
1409 | "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==",
1410 | "dev": true,
1411 | "requires": {
1412 | "ms": "^2.1.1"
1413 | }
1414 | },
1415 | "ms": {
1416 | "version": "2.1.3",
1417 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1418 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
1419 | "dev": true
1420 | }
1421 | }
1422 | },
1423 | "nopt": {
1424 | "version": "1.0.10",
1425 | "resolved": "https://registry.npmjs.org/nopt/-/nopt-1.0.10.tgz",
1426 | "integrity": "sha1-bd0hvSoxQXuScn3Vhfim83YI6+4=",
1427 | "dev": true,
1428 | "requires": {
1429 | "abbrev": "1"
1430 | }
1431 | },
1432 | "normalize-path": {
1433 | "version": "3.0.0",
1434 | "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz",
1435 | "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==",
1436 | "dev": true
1437 | },
1438 | "object-inspect": {
1439 | "version": "1.12.3",
1440 | "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz",
1441 | "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g=="
1442 | },
1443 | "on-finished": {
1444 | "version": "2.4.1",
1445 | "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz",
1446 | "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==",
1447 | "requires": {
1448 | "ee-first": "1.1.1"
1449 | }
1450 | },
1451 | "parseurl": {
1452 | "version": "1.3.3",
1453 | "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz",
1454 | "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ=="
1455 | },
1456 | "path-to-regexp": {
1457 | "version": "0.1.7",
1458 | "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz",
1459 | "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w="
1460 | },
1461 | "picomatch": {
1462 | "version": "2.3.0",
1463 | "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.0.tgz",
1464 | "integrity": "sha512-lY1Q/PiJGC2zOv/z391WOTD+Z02bCgsFfvxoXXf6h7kv9o+WmsmzYqrAwY63sNgOxE4xEdq0WyUnXfKeBrSvYw==",
1465 | "dev": true
1466 | },
1467 | "proxy-addr": {
1468 | "version": "2.0.7",
1469 | "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz",
1470 | "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==",
1471 | "requires": {
1472 | "forwarded": "0.2.0",
1473 | "ipaddr.js": "1.9.1"
1474 | }
1475 | },
1476 | "pstree.remy": {
1477 | "version": "1.1.8",
1478 | "resolved": "https://registry.npmjs.org/pstree.remy/-/pstree.remy-1.1.8.tgz",
1479 | "integrity": "sha512-77DZwxQmxKnu3aR542U+X8FypNzbfJ+C5XQDk3uWjWxn6151aIMGthWYRXTqT1E5oJvg+ljaa2OJi+VfvCOQ8w==",
1480 | "dev": true
1481 | },
1482 | "qs": {
1483 | "version": "6.11.0",
1484 | "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.0.tgz",
1485 | "integrity": "sha512-MvjoMCJwEarSbUYk5O+nmoSzSutSsTwF85zcHPQ9OrlFoZOYIjaqBAJIqIXjptyD5vThxGq52Xu/MaJzRkIk4Q==",
1486 | "requires": {
1487 | "side-channel": "^1.0.4"
1488 | }
1489 | },
1490 | "range-parser": {
1491 | "version": "1.2.1",
1492 | "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz",
1493 | "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg=="
1494 | },
1495 | "raw-body": {
1496 | "version": "2.5.1",
1497 | "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz",
1498 | "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==",
1499 | "requires": {
1500 | "bytes": "3.1.2",
1501 | "http-errors": "2.0.0",
1502 | "iconv-lite": "0.4.24",
1503 | "unpipe": "1.0.0"
1504 | }
1505 | },
1506 | "readdirp": {
1507 | "version": "3.6.0",
1508 | "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz",
1509 | "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==",
1510 | "dev": true,
1511 | "requires": {
1512 | "picomatch": "^2.2.1"
1513 | }
1514 | },
1515 | "safe-buffer": {
1516 | "version": "5.2.1",
1517 | "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz",
1518 | "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ=="
1519 | },
1520 | "safer-buffer": {
1521 | "version": "2.1.2",
1522 | "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz",
1523 | "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg=="
1524 | },
1525 | "semver": {
1526 | "version": "5.7.1",
1527 | "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz",
1528 | "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==",
1529 | "dev": true
1530 | },
1531 | "send": {
1532 | "version": "0.18.0",
1533 | "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz",
1534 | "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==",
1535 | "requires": {
1536 | "debug": "2.6.9",
1537 | "depd": "2.0.0",
1538 | "destroy": "1.2.0",
1539 | "encodeurl": "~1.0.2",
1540 | "escape-html": "~1.0.3",
1541 | "etag": "~1.8.1",
1542 | "fresh": "0.5.2",
1543 | "http-errors": "2.0.0",
1544 | "mime": "1.6.0",
1545 | "ms": "2.1.3",
1546 | "on-finished": "2.4.1",
1547 | "range-parser": "~1.2.1",
1548 | "statuses": "2.0.1"
1549 | },
1550 | "dependencies": {
1551 | "ms": {
1552 | "version": "2.1.3",
1553 | "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
1554 | "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA=="
1555 | }
1556 | }
1557 | },
1558 | "serve-static": {
1559 | "version": "1.15.0",
1560 | "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz",
1561 | "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==",
1562 | "requires": {
1563 | "encodeurl": "~1.0.2",
1564 | "escape-html": "~1.0.3",
1565 | "parseurl": "~1.3.3",
1566 | "send": "0.18.0"
1567 | }
1568 | },
1569 | "setprototypeof": {
1570 | "version": "1.2.0",
1571 | "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz",
1572 | "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw=="
1573 | },
1574 | "side-channel": {
1575 | "version": "1.0.4",
1576 | "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz",
1577 | "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==",
1578 | "requires": {
1579 | "call-bind": "^1.0.0",
1580 | "get-intrinsic": "^1.0.2",
1581 | "object-inspect": "^1.9.0"
1582 | }
1583 | },
1584 | "simple-update-notifier": {
1585 | "version": "1.1.0",
1586 | "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz",
1587 | "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==",
1588 | "dev": true,
1589 | "requires": {
1590 | "semver": "~7.0.0"
1591 | },
1592 | "dependencies": {
1593 | "semver": {
1594 | "version": "7.0.0",
1595 | "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz",
1596 | "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==",
1597 | "dev": true
1598 | }
1599 | }
1600 | },
1601 | "statuses": {
1602 | "version": "2.0.1",
1603 | "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz",
1604 | "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ=="
1605 | },
1606 | "supports-color": {
1607 | "version": "5.5.0",
1608 | "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz",
1609 | "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==",
1610 | "dev": true,
1611 | "requires": {
1612 | "has-flag": "^3.0.0"
1613 | }
1614 | },
1615 | "to-regex-range": {
1616 | "version": "5.0.1",
1617 | "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz",
1618 | "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==",
1619 | "dev": true,
1620 | "requires": {
1621 | "is-number": "^7.0.0"
1622 | }
1623 | },
1624 | "toidentifier": {
1625 | "version": "1.0.1",
1626 | "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz",
1627 | "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA=="
1628 | },
1629 | "touch": {
1630 | "version": "3.1.0",
1631 | "resolved": "https://registry.npmjs.org/touch/-/touch-3.1.0.tgz",
1632 | "integrity": "sha512-WBx8Uy5TLtOSRtIq+M03/sKDrXCLHxwDcquSP2c43Le03/9serjQBIztjRz6FkJez9D/hleyAXTBGLwwZUw9lA==",
1633 | "dev": true,
1634 | "requires": {
1635 | "nopt": "~1.0.10"
1636 | }
1637 | },
1638 | "type-is": {
1639 | "version": "1.6.18",
1640 | "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz",
1641 | "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==",
1642 | "requires": {
1643 | "media-typer": "0.3.0",
1644 | "mime-types": "~2.1.24"
1645 | }
1646 | },
1647 | "undefsafe": {
1648 | "version": "2.0.5",
1649 | "resolved": "https://registry.npmjs.org/undefsafe/-/undefsafe-2.0.5.tgz",
1650 | "integrity": "sha512-WxONCrssBM8TSPRqN5EmsjVrsv4A8X12J4ArBiiayv3DyyG3ZlIg6yysuuSYdZsVz3TKcTg2fd//Ujd4CHV1iA==",
1651 | "dev": true
1652 | },
1653 | "unpipe": {
1654 | "version": "1.0.0",
1655 | "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz",
1656 | "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ=="
1657 | },
1658 | "utils-merge": {
1659 | "version": "1.0.1",
1660 | "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz",
1661 | "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM="
1662 | },
1663 | "vary": {
1664 | "version": "1.1.2",
1665 | "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz",
1666 | "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw="
1667 | }
1668 | }
1669 | }
1670 |
--------------------------------------------------------------------------------
/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "express-hello-world",
3 | "version": "1.0.0",
4 | "description": "Expressjs Hello World example to provide faster start deploying on Cyclic platform",
5 | "main": "server.js",
6 | "scripts": {
7 | "serve": "nodemon --watch . server.js",
8 | "start": "node server.js",
9 | "test": "echo \"Error: no test specified\" && exit 1"
10 | },
11 | "repository": {
12 | "type": "git",
13 | "url": "git+https://github.com/cyclic-software/express-hello-world.git"
14 | },
15 | "author": "Cyclic Software",
16 | "license": "MIT",
17 | "bugs": {
18 | "url": "https://github.com/cyclic-software/express-hello-world/issues"
19 | },
20 | "homepage": "https://github.com/cyclic-software/express-hello-world#readme",
21 | "dependencies": {
22 | "express": "^4.18.2"
23 | },
24 | "devDependencies": {
25 | "nodemon": "^2.0.22"
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/public/favicon.ico:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/nitinrajputind/express-hello-world/f79368fd127d16b4dac904bc8248bb8309805fb1/public/favicon.ico
--------------------------------------------------------------------------------
/public/globe.js:
--------------------------------------------------------------------------------
1 | (function() {
2 | let globe = planetaryjs.planet();
3 | // This plugin will automatically rotate the globe around its vertical
4 | // axis a configured number of degrees every second.
5 | function autorotate(degPerSec) {
6 | // Planetary.js plugins are functions that take a `planet` instance
7 | // as an argument...
8 | return function(planet) {
9 | let lastTick = null;
10 | let paused = false;
11 | planet.plugins.autorotate = {
12 | pause: function() { paused = true; },
13 | resume: function() { paused = false; }
14 | };
15 | // ...and configure hooks into certain pieces of its lifecycle.
16 | planet.onDraw(function() {
17 | if (paused || !lastTick) {
18 | lastTick = new Date();
19 | } else {
20 | let now = new Date();
21 | let delta = now - lastTick;
22 | // This plugin uses the built-in projection (provided by D3)
23 | // to rotate the globe each time we draw it.
24 | let rotation = planet.projection.rotate();
25 | rotation[0] += degPerSec * delta / 1000;
26 | if (rotation[0] >= 180) rotation[0] -= 360;
27 | planet.projection.rotate(rotation);
28 | lastTick = now;
29 | }
30 | });
31 | };
32 | };
33 | // Load our custom `autorotate` plugin; see below.
34 | globe.loadPlugin(autorotate(10));
35 | // The `earth` plugin draws the oceans and the land; it's actually
36 | // a combination of several separate built-in plugins.
37 | //
38 | // Note that we're loading a special TopoJSON file
39 | // (world-110m-withlakes.json) so we can render lakes.
40 | globe.loadPlugin(planetaryjs.plugins.earth({
41 | topojson: { file: '/world-110m-withlakes.json' },
42 | oceans: { fill: 'rgba(50, 96, 143, .5)' },
43 | land: { fill: '#32608f' },
44 | borders: { stroke: '#cccccc' }
45 | }));
46 |
47 | // This plugin takes lake data from the special
48 | // TopoJSON we're loading and draws them on the map.
49 | function lakes(options) {
50 | options = options || {};
51 | let lakes = null;
52 |
53 | return function(planet) {
54 | planet.onInit(function() {
55 | // We can access the data loaded from the TopoJSON plugin
56 | // on its namespace on `planet.plugins`. We're loading a custom
57 | // TopoJSON file with an object called "ne_110m_lakes".
58 | let world = planet.plugins.topojson.world;
59 | lakes = topojson.feature(world, world.objects.ne_110m_lakes);
60 | });
61 |
62 | planet.onDraw(function() {
63 | planet.withSavedContext(function(context) {
64 | context.beginPath();
65 | planet.path.context(context)(lakes);
66 | context.fillStyle = options.fill || 'black';
67 | context.fill();
68 | });
69 | });
70 | };
71 | };
72 | // Load our custom `lakes` plugin to draw lakes; see below.
73 | globe.loadPlugin(lakes({
74 | fill: '#cccccc'
75 | }));
76 | // The `pings` plugin draws animated pings on the globe.
77 | globe.loadPlugin(planetaryjs.plugins.pings());
78 | globe.loadPlugin(planetaryjs.plugins.drag({
79 | // Dragging the globe should pause the
80 | // automatic rotation until we release the mouse.
81 | onDragStart: function() {
82 | this.plugins.autorotate.pause();
83 | },
84 | onDragEnd: function() {
85 | this.plugins.autorotate.resume();
86 | }
87 | }));
88 | // Set up the globe's initial scale, offset, and rotation.
89 | globe.projection.scale(175).translate([175, 175]).rotate([0, -10, 0]);
90 |
91 | let canvas = document.getElementById('rotatingGlobe');
92 | canvas.width = 350;
93 | canvas.height = 350;
94 | // Draw that globe!
95 | globe.draw(canvas);
96 |
97 | var locations = [
98 | {"location": "Ohio", "lat": "40.32497", "lng": "-82.83653"},
99 | {"location": "Virginia", "lat": "34.41222", "lng": "-78.47445"},
100 | {"location": "California", "lat": "36.48079", "lng": "-119.33910"},
101 | {"location": "Oregon", "lat": "43.81512", "lng": "-120.78339"},
102 | {"location": "Cape Town, South Africa", "lat": "-33.89178", "lng": "18.43676"},
103 | {"location": "Hong Kong, China", "lat": "22.30548", "lng": "114.17572"},
104 | {"location": "Mumbay, India", "lat": "19.07960", "lng": "72.87293"},
105 | {"location": "Osaka, Japan", "lat": "37.70725", "lng": "135.49608"},
106 | {"location": "Seoul, Korea", "lat": "37.55322", "lng": "126.99229"},
107 | {"location": "Singapore", "lat": "1.35724", "lng": "103.86827"},
108 | {"location": "Sydney", "lat": "-33.81413", "lng": "151.20285"},
109 | {"location": "Canada", "lat": "60.55165", "lng": "-111.21677"},
110 | {"location": "Frankfurt", "lat": "50.16668", "lng": "8.74766"},
111 | {"location": "Ireland", "lat": "53.15114", "lng": "-8.25418"},
112 | {"location": "London", "lat": "51.53359", "lng": "-0.02398"},
113 | {"location": "Milan", "lat": "45.48840", "lng": "9.21345"},
114 | {"location": "Paris", "lat": "48.85658", "lng": "2.35530"},
115 | {"location": "Stockholm", "lat": "59.32891", "lng": "18.06768"},
116 | {"location": "Bahrain", "lat": "35.20769", "lng": "72.54652"},
117 | {"location": "Sao Paulo", "lat": "-23.46811", "lng": "-46.57775"
118 | }
119 | ]
120 |
121 | locations.forEach(e => {
122 | setInterval(function() {
123 | globe.plugins.pings.add(e.lng, e.lat, { color: ['white'], ttl: 2000, angle: Math.random() * 4 });
124 | }, 150);
125 | });
126 |
127 | })();
128 |
--------------------------------------------------------------------------------
/public/index.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | Cyclic: Hello World
6 |
7 |
8 |
9 |
10 |
11 |
25 |
26 |
27 |
28 |
29 |
30 |
31 |
32 |
33 |
34 |
--------------------------------------------------------------------------------
/public/main.css:
--------------------------------------------------------------------------------
1 | @import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:wght@300;400;600&display=swap");
2 |
3 | body {
4 | background-color: #0f2c41;
5 | background-image: url("https://i.imgur.com/PFnfpkq.png");
6 | text-align: center;
7 | font-weight: 700;
8 | }
9 |
10 | #hello-wrapper {
11 | color: #fff;
12 | font-family: 'Source Sans Pro', sans-serif;
13 | }
14 |
15 | .typewriter {
16 | border-right: solid 5px transparent;
17 | white-space: nowrap;
18 | overflow: hidden;
19 | font-family: 'Source Sans Pro', sans-serif;
20 | font-size: 50px;
21 | animation:
22 | animated-text 1.2s steps(17, end) 1s 1 normal both
23 | }
24 |
25 | /* text animation */
26 | @keyframes animated-text {
27 | from {
28 | width: 0;
29 | }
30 | to {
31 | width: 100%;
32 | }
33 | }
34 |
35 | #particles-js {
36 | height: 100vh;
37 | }
38 |
--------------------------------------------------------------------------------
/public/particles.js:
--------------------------------------------------------------------------------
1 | //particles
2 | particlesJS("particles-js", {
3 | "particles": {
4 | "number": {
5 | "value": 355,
6 | "density": {
7 | "enable": true,
8 | "value_area": 789.1476416322727
9 | }
10 | },
11 | "color": {
12 | "value": "#ffffff"
13 | },
14 | "shape": {
15 | "type": "circle",
16 | "stroke": {
17 | "width": 0,
18 | "color": "#000000"
19 | },
20 | "polygon": {
21 | "nb_sides": 5
22 | },
23 | "image": {
24 | "src": "img/github.svg",
25 | "width": 100,
26 | "height": 100
27 | }
28 | },
29 | "opacity": {
30 | "value": 0.48927153781200905,
31 | "random": false,
32 | "anim": {
33 | "enable": true,
34 | "speed": 0.2,
35 | "opacity_min": 0,
36 | "sync": false
37 | }
38 | },
39 | "size": {
40 | "value": 2,
41 | "random": true,
42 | "anim": {
43 | "enable": true,
44 | "speed": 2,
45 | "size_min": 0,
46 | "sync": false
47 | }
48 | },
49 | "line_linked": {
50 | "enable": false,
51 | "distance": 150,
52 | "color": "#ffffff",
53 | "opacity": 0.4,
54 | "width": 1
55 | },
56 | "move": {
57 | "enable": true,
58 | "speed": 0.2,
59 | "direction": "none",
60 | "random": true,
61 | "straight": false,
62 | "out_mode": "out",
63 | "bounce": false,
64 | "attract": {
65 | "enable": false,
66 | "rotateX": 600,
67 | "rotateY": 1200
68 | }
69 | }
70 | },
71 | "interactivity": {
72 | "detect_on": "canvas",
73 | "events": {
74 | "onhover": {
75 | "enable": true,
76 | "mode": "bubble"
77 | },
78 | "onclick": {
79 | "enable": true,
80 | "mode": "push"
81 | },
82 | "resize": true
83 | },
84 | "modes": {
85 | "grab": {
86 | "distance": 400,
87 | "line_linked": {
88 | "opacity": 1
89 | }
90 | },
91 | "bubble": {
92 | "distance": 83.91608391608392,
93 | "size": 1,
94 | "duration": 3,
95 | "opacity": 1,
96 | "speed": 3
97 | },
98 | "repulse": {
99 | "distance": 200,
100 | "duration": 0.4
101 | },
102 | "push": {
103 | "particles_nb": 4
104 | },
105 | "remove": {
106 | "particles_nb": 2
107 | }
108 | }
109 | },
110 | "retina_detect": true
111 | });
--------------------------------------------------------------------------------
/public/planetaryjs.min.js:
--------------------------------------------------------------------------------
1 | /*! Planetary.js 1.1.2 | (c) 2013 Michelle Tilley | Released under MIT License */
2 | !function(n,t){"function"==typeof define&&define.amd?define(["d3","topojson"],function(o,i){return n.planetaryjs=t(o,i,n)}):"object"==typeof exports?module.exports=t(require("d3"),require("topojson")):n.planetaryjs=t(n.d3,n.topojson,n)}(this,function(n,t,o){"use strict";var i=null;o&&(i=o.planetaryjs);var e=[],r=function(t,o,i){n.timer(function(){if(t.stopped)return!0;t.context.clearRect(0,0,o.width,o.height);for(var n=0;n=0;o--)t.unshift(e[o]);for(0===t.length&&(c.plugins.earth&&n.loadPlugin(c.plugins.earth()),c.plugins.pings&&n.loadPlugin(c.plugins.pings())),o=0;o=o.onInit.length?r(n,t,o):e(l)};e(l)}else r(n,t,o)},u=function(n,t,o,i){n.canvas=t,n.context=t.getContext("2d"),n.stopped!==!0&&l(n,o),n.stopped=!1,a(n,t,i)},c={plugins:{},noConflict:function(){return o.planetaryjs=i,c},loadPlugin:function(n){e.push(n)},planet:function(){var t=[],o={onInit:[],onDraw:[],onStop:[]},i={plugins:{},draw:function(n){u(i,n,t,o)},onInit:function(n){o.onInit.push(n)},onDraw:function(n){o.onDraw.push(n)},onStop:function(n){o.onStop.push(n)},loadPlugin:function(n){t.push(n)},stop:function(){i.stopped=!0;for(var n=0;n90&&(e[1]=90),e[1]<-90&&(e[1]=-90),e[0]>=180&&(e[0]-=360),t.projection.rotate(e),l.call(t)});n.select(t.canvas).call(o)})}},c});
--------------------------------------------------------------------------------
/public/world-110m-withlakes.json:
--------------------------------------------------------------------------------
1 | {"type":"Topology","objects":{"land":{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7,8,9]],[[10,11,12,13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21,22]],[[23,-23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32,33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45,46]],[[47]],[[48]],[[49]],[[50,51,52,53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65,66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79,80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93,94]],[[95]],[[96]],[[97,98,99,100,101,102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110,111]],[[112]],[[113,114]],[[115,-115]],[[116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158]],[[159,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,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,-112],[292,293,294,295,296,297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]]]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":4,"arcs":[[312,313,314,315,316,317]]},{"type":"MultiPolygon","id":24,"arcs":[[[318,319,222,320]],[[224,321,322]]]},{"type":"Polygon","id":8,"arcs":[[323,263,324,325,326]]},{"type":"Polygon","id":784,"arcs":[[327,206,328,329,204]]},{"type":"MultiPolygon","id":32,"arcs":[[[330,13]],[[331,332,333,141,334,335]]]},{"type":"Polygon","id":51,"arcs":[[336,337,338,339,340]]},{"type":"MultiPolygon","id":10,"arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[341,342,9]]]},{"type":"Polygon","id":260,"arcs":[[15]]},{"type":"MultiPolygon","id":36,"arcs":[[[16]],[[27]]]},{"type":"Polygon","id":40,"arcs":[[343,344,345,346,347,348,349]]},{"type":"MultiPolygon","id":31,"arcs":[[[350,-338]],[[297,351,-341,352,353]]]},{"type":"Polygon","id":108,"arcs":[[354,355,356]]},{"type":"Polygon","id":56,"arcs":[[357,358,359,273,360]]},{"type":"Polygon","id":204,"arcs":[[361,362,363,230,364]]},{"type":"Polygon","id":854,"arcs":[[365,366,-362,367,368,369]]},{"type":"Polygon","id":50,"arcs":[[193,370,371]]},{"type":"Polygon","id":100,"arcs":[[260,372,373,374,375,376]]},{"type":"MultiPolygon","id":44,"arcs":[[[74]],[[76]],[[77]]]},{"type":"Polygon","id":70,"arcs":[[377,378,379]]},{"type":"Polygon","id":112,"arcs":[[380,381,382,383,384]]},{"type":"Polygon","id":84,"arcs":[[128,385,386]]},{"type":"Polygon","id":68,"arcs":[[387,388,389,390,-336]]},{"type":"Polygon","id":76,"arcs":[[391,-390,392,393,394,395,396,397,139,398,-333]]},{"type":"Polygon","id":96,"arcs":[[399,51]]},{"type":"Polygon","id":64,"arcs":[[400,401]]},{"type":"Polygon","id":72,"arcs":[[402,403,404,405]]},{"type":"Polygon","id":140,"arcs":[[406,407,408,409,410,411,412]]},{"type":"MultiPolygon","id":124,"arcs":[[[87]],[[88]],[[89]],[[90]],[[91]],[[104]],[[105]],[[107]],[[109]],[[112]],[[413,117,414,415,416,417,418,156,419,158]],[[159,420]],[[161]],[[162]],[[163]],[[164]],[[166]],[[167,421,169,422]],[[172]],[[174]],[[175]],[[177]],[[178]],[[298]],[[299]],[[301]],[[302]],[[303]],[[309]],[[310]]]},{"type":"Polygon","id":756,"arcs":[[423,424,425,-346]]},{"type":"MultiPolygon","id":152,"arcs":[[[10,426,12,-331]],[[-335,142,427,-388]]]},{"type":"MultiPolygon","id":156,"arcs":[[[67]],[[428,185,429,430,431,432,433,-401,434,435,436,437,-315,438,439,440,441,442,443]]]},{"type":"Polygon","id":384,"arcs":[[444,445,446,-370,447,233]]},{"type":"Polygon","id":120,"arcs":[[448,228,449,450,451,-412,452,453]]},{"type":"Polygon","id":180,"arcs":[[454,-357,455,456,-321,223,-323,457,-410,458,459]]},{"type":"Polygon","id":178,"arcs":[[225,460,-453,-411,-458,-322]]},{"type":"Polygon","id":170,"arcs":[[145,461,134,462,-394,463,464]]},{"type":"Polygon","id":188,"arcs":[[465,132,466,147]]},{"type":"Polygon","id":192,"arcs":[[73]]},{"type":"Polygon","id":-99,"arcs":[[467,80]]},{"type":"Polygon","id":196,"arcs":[[-468,79]]},{"type":"Polygon","id":203,"arcs":[[468,469,470,-348]]},{"type":"Polygon","id":276,"arcs":[[-469,-347,-426,471,472,-358,473,275,474,277,475]]},{"type":"Polygon","id":262,"arcs":[[476,477,478,214]]},{"type":"MultiPolygon","id":208,"arcs":[[[95]],[[-475,276]]]},{"type":"Polygon","id":214,"arcs":[[479,65]]},{"type":"Polygon","id":12,"arcs":[[480,481,482,483,246,484,485,486]]},{"type":"Polygon","id":218,"arcs":[[-465,487,144]]},{"type":"Polygon","id":818,"arcs":[[488,489,249,490,211]]},{"type":"Polygon","id":232,"arcs":[[491,213,-479,492]]},{"type":"Polygon","id":724,"arcs":[[493,269,494,271]]},{"type":"Polygon","id":233,"arcs":[[495,496,282]]},{"type":"Polygon","id":231,"arcs":[[-478,497,498,499,500,501,502,-493]]},{"type":"Polygon","id":246,"arcs":[[284,503,504,505]]},{"type":"MultiPolygon","id":242,"arcs":[[[20]],[[21,22]],[[23,-23]]]},{"type":"Polygon","id":238,"arcs":[[14]]},{"type":"MultiPolygon","id":250,"arcs":[[[506,507,508,138,-398]],[[85]],[[509,-472,-425,510,268,-494,272,-360]]]},{"type":"Polygon","id":266,"arcs":[[511,-454,-461,226]]},{"type":"MultiPolygon","id":826,"arcs":[[[512,93]],[[102,513,98,514,100,515]]]},{"type":"Polygon","id":268,"arcs":[[516,-353,-340,517,254]]},{"type":"Polygon","id":288,"arcs":[[-448,-369,518,232]]},{"type":"Polygon","id":324,"arcs":[[519,236,520,521,522,-446,523]]},{"type":"Polygon","id":270,"arcs":[[239,524]]},{"type":"Polygon","id":624,"arcs":[[525,-521,237]]},{"type":"Polygon","id":226,"arcs":[[-449,-512,227]]},{"type":"MultiPolygon","id":300,"arcs":[[[81]],[[262,-324,526,-374,527]]]},{"type":"Polygon","id":304,"arcs":[[311]]},{"type":"Polygon","id":320,"arcs":[[528,-386,129,529,530,151]]},{"type":"Polygon","id":328,"arcs":[[531,-396,532,136]]},{"type":"Polygon","id":340,"arcs":[[533,-530,130,534,149]]},{"type":"Polygon","id":191,"arcs":[[-379,535,265,536,537,538]]},{"type":"Polygon","id":332,"arcs":[[-480,66]]},{"type":"Polygon","id":348,"arcs":[[539,540,541,542,-538,543,-350]]},{"type":"MultiPolygon","id":360,"arcs":[[[29]],[[544,33]],[[34]],[[35]],[[38]],[[39]],[[42]],[[43]],[[545,46]],[[47]],[[48]],[[546,53]],[[49]]]},{"type":"Polygon","id":356,"arcs":[[547,-435,-402,-434,548,-371,194,549,196,550,-437]]},{"type":"Polygon","id":372,"arcs":[[-513,94]]},{"type":"Polygon","id":364,"arcs":[[-317,551,198,552,553,-351,-337,-352,292,554]]},{"type":"Polygon","id":368,"arcs":[[199,555,556,557,558,559,-553]]},{"type":"Polygon","id":352,"arcs":[[108]]},{"type":"Polygon","id":376,"arcs":[[560,-491,250,561,562,563,564]]},{"type":"MultiPolygon","id":380,"arcs":[[[82]],[[83]],[[565,267,-511,-424,-345]]]},{"type":"Polygon","id":388,"arcs":[[64]]},{"type":"Polygon","id":400,"arcs":[[-558,566,210,-561,567,-564,568]]},{"type":"MultiPolygon","id":392,"arcs":[[[78]],[[84]],[[86]]]},{"type":"Polygon","id":398,"arcs":[[569,570,295,571,572,573,-441,574,575,576,577]]},{"type":"Polygon","id":404,"arcs":[[217,578,579,580,581,-500,582]]},{"type":"Polygon","id":417,"arcs":[[-440,583,584,-575]]},{"type":"Polygon","id":116,"arcs":[[585,586,587,188]]},{"type":"Polygon","id":410,"arcs":[[588,183]]},{"type":"Polygon","id":-99,"arcs":[[-326,589,590,591]]},{"type":"Polygon","id":414,"arcs":[[592,-556,200]]},{"type":"Polygon","id":418,"arcs":[[593,-432,594,-587,595]]},{"type":"Polygon","id":422,"arcs":[[251,596,-562]]},{"type":"Polygon","id":430,"arcs":[[597,-524,-445,234]]},{"type":"Polygon","id":434,"arcs":[[-486,598,248,-490,599,600,601]]},{"type":"Polygon","id":144,"arcs":[[55]]},{"type":"Polygon","id":426,"arcs":[[602]]},{"type":"Polygon","id":440,"arcs":[[280,603,-385,604,605]]},{"type":"Polygon","id":442,"arcs":[[-510,-359,-473]]},{"type":"Polygon","id":428,"arcs":[[-497,606,-381,-604,281]]},{"type":"Polygon","id":504,"arcs":[[-484,607,243,608,245]]},{"type":"Polygon","id":498,"arcs":[[609,610]]},{"type":"Polygon","id":450,"arcs":[[26]]},{"type":"Polygon","id":484,"arcs":[[127,-387,-529,152,611,125,612]]},{"type":"Polygon","id":807,"arcs":[[613,-375,-527,-327,-592]]},{"type":"Polygon","id":466,"arcs":[[-481,614,-366,-447,-523,615,616]]},{"type":"Polygon","id":104,"arcs":[[192,-372,-549,-433,-594,617]]},{"type":"Polygon","id":499,"arcs":[[264,-536,-378,618,-590,-325]]},{"type":"Polygon","id":496,"arcs":[[-443,619]]},{"type":"Polygon","id":508,"arcs":[[219,620,621,622,623,624,625,626]]},{"type":"Polygon","id":478,"arcs":[[241,627,-482,-617,628]]},{"type":"Polygon","id":454,"arcs":[[629,630,-626]]},{"type":"MultiPolygon","id":458,"arcs":[[[190,631]],[[-547,50,-400,52]]]},{"type":"Polygon","id":516,"arcs":[[-320,632,-404,633,221]]},{"type":"Polygon","id":540,"arcs":[[19]]},{"type":"Polygon","id":562,"arcs":[[-615,-487,-602,634,-451,635,-363,-367]]},{"type":"Polygon","id":566,"arcs":[[-364,-636,-450,229]]},{"type":"Polygon","id":558,"arcs":[[-535,131,-466,148]]},{"type":"Polygon","id":528,"arcs":[[-474,-361,274]]},{"type":"MultiPolygon","id":578,"arcs":[[[636,-505,637,286]],[[300]],[[305]],[[306]]]},{"type":"Polygon","id":524,"arcs":[[-436,-548]]},{"type":"MultiPolygon","id":554,"arcs":[[[17]],[[18]]]},{"type":"MultiPolygon","id":512,"arcs":[[[638,639,-329,207]],[[-328,205]]]},{"type":"Polygon","id":586,"arcs":[[-551,197,-552,-316,-438]]},{"type":"Polygon","id":591,"arcs":[[133,-462,146,-467]]},{"type":"Polygon","id":604,"arcs":[[143,-488,-464,-393,-389,-428]]},{"type":"MultiPolygon","id":608,"arcs":[[[54]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]]]},{"type":"MultiPolygon","id":598,"arcs":[[[40]],[[41]],[[-546,45]],[[44]]]},{"type":"Polygon","id":616,"arcs":[[640,-605,-384,641,642,-470,-476,278]]},{"type":"Polygon","id":630,"arcs":[[63]]},{"type":"Polygon","id":408,"arcs":[[-589,184,-429,643,182]]},{"type":"Polygon","id":620,"arcs":[[270,-495]]},{"type":"Polygon","id":600,"arcs":[[-392,-332,-391]]},{"type":"Polygon","id":275,"arcs":[[-565,-568]]},{"type":"Polygon","id":634,"arcs":[[644,202]]},{"type":"Polygon","id":642,"arcs":[[-610,645,259,-377,646,-542,647]]},{"type":"MultiPolygon","id":643,"arcs":[[[92]],[[279,-606,-641]],[[110,111]],[[113,114]],[[115,-115]],[[165]],[[171]],[[173]],[[176]],[[179,648,181,-644,-444,-620,-442,-574,649,-572,296,-354,-517,255,650,-382,-607,-496,283,-506,-637,287,651,289,652,291,-112]],[[304]],[[307]],[[308]]]},{"type":"Polygon","id":646,"arcs":[[-355,-455,653,654]]},{"type":"Polygon","id":732,"arcs":[[-483,-628,242,-608]]},{"type":"Polygon","id":682,"arcs":[[-567,-557,-593,201,-645,203,-330,-640,655,209]]},{"type":"Polygon","id":729,"arcs":[[656,-600,-489,212,-492,-503,657,658,659,-407]]},{"type":"Polygon","id":728,"arcs":[[-582,660,-459,-409,661,-659,662,-501]]},{"type":"Polygon","id":686,"arcs":[[-629,-616,-522,-526,238,-525,240]]},{"type":"MultiPolygon","id":90,"arcs":[[[28]],[[30]],[[31]],[[36]],[[37]]]},{"type":"Polygon","id":694,"arcs":[[-520,-598,235]]},{"type":"Polygon","id":222,"arcs":[[-531,-534,150]]},{"type":"Polygon","id":-99,"arcs":[[-498,-477,215,663]]},{"type":"Polygon","id":706,"arcs":[[-583,-499,-664,216]]},{"type":"Polygon","id":688,"arcs":[[-376,-614,-591,-619,-380,-539,-543,-647]]},{"type":"Polygon","id":740,"arcs":[[-509,664,-507,-397,-532,137]]},{"type":"Polygon","id":703,"arcs":[[665,-540,-349,-471,-643]]},{"type":"Polygon","id":705,"arcs":[[-544,-537,266,-566,-344]]},{"type":"Polygon","id":752,"arcs":[[-638,-504,285]]},{"type":"Polygon","id":748,"arcs":[[-622,666]]},{"type":"Polygon","id":760,"arcs":[[-563,-597,252,667,-559,-569]]},{"type":"Polygon","id":148,"arcs":[[-601,-657,-413,-452,-635]]},{"type":"Polygon","id":768,"arcs":[[-368,-365,231,-519]]},{"type":"Polygon","id":764,"arcs":[[-632,191,-618,-596,-586,189]]},{"type":"Polygon","id":762,"arcs":[[-439,-314,668,-584]]},{"type":"Polygon","id":795,"arcs":[[293,-570,669,-318,-555]]},{"type":"Polygon","id":626,"arcs":[[-545,32]]},{"type":"Polygon","id":780,"arcs":[[56]]},{"type":"Polygon","id":788,"arcs":[[247,-599,-485]]},{"type":"MultiPolygon","id":792,"arcs":[[[-518,-339,-554,-560,-668,253]],[[-528,-373,261]]]},{"type":"Polygon","id":158,"arcs":[[75]]},{"type":"Polygon","id":834,"arcs":[[218,-627,-631,670,-456,-356,-655,671,672,-580,-579]]},{"type":"Polygon","id":800,"arcs":[[-654,-460,-661,-581,-673,-672]]},{"type":"Polygon","id":804,"arcs":[[256,673,258,-646,-611,-648,-541,-666,-642,-383,-651]]},{"type":"Polygon","id":858,"arcs":[[140,-334,-399]]},{"type":"MultiPolygon","id":840,"arcs":[[[68]],[[69]],[[70]],[[71]],[[72]],[[118,674,120,675,122,676,124,-612,153,677,155,-419,-418,-417,-416,-415]],[[96]],[[103]],[[106]],[[-420,157]]]},{"type":"Polygon","id":860,"arcs":[[-578,-577,-576,-585,-669,-313,-670]]},{"type":"Polygon","id":862,"arcs":[[-533,-395,-463,135]]},{"type":"Polygon","id":704,"arcs":[[-588,-595,-431,678,187]]},{"type":"MultiPolygon","id":548,"arcs":[[[24]],[[25]]]},{"type":"Polygon","id":887,"arcs":[[-656,-639,208]]},{"type":"Polygon","id":710,"arcs":[[-634,-403,679,-623,-667,-621,220],[-603]]},{"type":"Polygon","id":894,"arcs":[[-625,680,-405,-633,-319,-457,-671,-630]]},{"type":"Polygon","id":716,"arcs":[[-406,-681,-624,-680]]}]},"ne_110m_lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[681]]},{"type":"Polygon","arcs":[[682]]},{"type":"Polygon","arcs":[[683]]},{"type":"Polygon","arcs":[[684]]},{"type":"Polygon","arcs":[[685]]},{"type":"Polygon","arcs":[[686,687]]},{"type":"Polygon","arcs":[[688,689]]},{"type":"Polygon","arcs":[[690]]},{"type":"Polygon","arcs":[[691]]},{"type":"Polygon","arcs":[[692]]},{"type":"Polygon","arcs":[[693]]},{"type":"Polygon","arcs":[[694,695]]},{"type":"Polygon","arcs":[[696]]},{"type":"Polygon","arcs":[[697]]},{"type":"Polygon","arcs":[[698]]},{"type":"Polygon","arcs":[[699]]},{"type":"Polygon","arcs":[[700]]},{"type":"Polygon","arcs":[[701]]},{"type":"Polygon","arcs":[[702]]},{"type":"Polygon","arcs":[[703]]},{"type":"Polygon","arcs":[[704]]},{"type":"Polygon","arcs":[[705]]},{"type":"Polygon","arcs":[[706]]},{"type":"Polygon","arcs":[[707,708,709]]},{"type":"Polygon","arcs":[[-708,710]]}]}},"arcs":[[[3329,518],[-59,8],[-62,-3],[-34,19],[0,2],[-16,17],[63,-2],[60,-6],[20,24],[15,20],[29,-24],[-8,-29],[-8,-26]],[[524,597],[-36,20],[-17,20],[-1,4],[-18,16],[17,21],[52,-9],[28,-18],[21,-20],[7,-26],[-53,-8]],[[3597,517],[-66,3],[-36,19],[5,24],[59,16],[24,19],[18,25],[12,21],[17,21],[18,23],[14,0],[41,13],[42,-13],[35,-25],[12,-35],[3,-24],[1,-30],[-43,-18],[-45,-14],[-53,-14],[-58,-11]],[[1660,916],[-39,5],[-27,20],[6,19],[33,-10],[36,-9],[33,10],[-16,-20],[-26,-15]],[[1554,929],[-16,2],[-36,6],[-38,15],[20,13],[28,-14],[42,-22]],[[2327,1006],[-21,5],[-34,-2],[-34,2],[-38,-3],[-28,11],[-15,24],[18,10],[35,-8],[40,-5],[31,-8],[30,7],[16,-33]],[[3025,1007],[-36,2],[13,22],[-32,-8],[-31,-8],[-21,17],[-2,24],[30,23],[19,6],[33,-2],[8,29],[1,22],[0,46],[16,27],[25,9],[15,-21],[6,-22],[12,-26],[10,-25],[7,-25],[4,-26],[-5,-23],[-8,-21],[-33,-8],[-31,-12]],[[79,321],[8,5],[9,6],[9,5],[4,3]],[[109,340],[4,0],[3,-1]],[[116,339],[40,-24],[35,24],[6,3],[82,10],[26,-13],[14,-7],[41,-19],[79,-15],[63,-18],[107,-14],[80,16],[118,-11],[67,-18],[73,17],[78,15],[6,28],[-110,2],[-89,13],[-24,23],[-74,12],[5,26],[10,24],[10,21],[-5,24],[-47,16],[-21,20],[-43,18],[68,-3],[64,9],[40,-19],[50,17],[45,21],[23,19],[-10,24],[-36,16],[-41,17],[-57,3],[-50,8],[-54,6],[-18,21],[-36,18],[-21,20],[-9,66],[13,-6],[25,-18],[46,6],[44,8],[23,-25],[44,6],[37,12],[35,16],[32,19],[41,6],[-1,21],[-9,22],[8,20],[36,10],[16,-19],[42,11],[32,15],[40,1],[38,6],[37,13],[30,12],[34,13],[22,-4],[19,-4],[41,8],[37,-10],[38,1],[37,8],[37,-6],[41,-6],[39,3],[40,-1],[42,-2],[38,3],[28,17],[34,9],[35,-13],[33,10],[30,21],[18,-18],[9,-21],[18,-19],[29,17],[33,-21],[38,-7],[32,-16],[39,3],[36,11],[41,-3],[38,-8],[38,-10],[15,25],[-18,19],[-14,21],[-36,4],[-15,22],[-6,21],[-10,43],[21,-8],[36,-3],[36,3],[33,-9],[28,-17],[12,-20],[38,-4],[36,8],[38,12],[34,6],[28,-13],[37,4],[24,44],[22,-26],[33,-10],[34,6],[23,-23],[37,-2],[33,-7],[34,-12],[21,21],[11,21],[28,-23],[38,6],[28,-13],[19,-19],[37,6],[29,12],[29,15],[33,8],[39,6],[36,8],[27,13],[16,18],[7,25],[-3,23],[-9,23],[-10,22],[-9,23],[-7,20],[-1,23],[2,22],[13,22],[11,24],[5,22],[-6,25],[-3,23],[14,25],[15,17],[18,22],[19,18],[22,17],[11,25],[15,15],[18,15],[26,3],[18,19],[19,11],[23,7],[20,14],[16,18],[22,7],[16,-15],[-10,-19],[-29,-17],[-12,-12],[-20,9],[-23,-6],[-19,-13],[-20,-15],[-14,-17],[-4,-22],[2,-22],[13,-19],[-19,-14],[-26,-4],[-15,-19],[-17,-18],[-17,-25],[-4,-22],[9,-23],[15,-18],[23,-14],[21,-18],[12,-23],[6,-21],[8,-23],[13,-19],[8,-21],[4,-53],[8,-22],[2,-22],[9,-23],[-4,-30],[-15,-24],[-17,-19],[-37,-8],[-12,-20],[-17,-19],[-42,-22],[-37,-9],[-35,-12],[-37,-13],[-22,-23],[-45,-3],[-49,3],[-44,-5],[-47,0],[9,-22],[42,-11],[31,-15],[18,-21],[-31,-18],[-48,6],[-40,-15],[-2,-24],[-1,-22],[33,-19],[6,-22],[35,-21],[59,-9],[50,-16],[40,-18],[50,-18],[70,-9],[68,-16],[47,-17],[51,-19],[28,-27],[13,-22],[34,21],[46,17],[48,18],[58,14],[49,16],[69,1],[68,-8],[56,-13],[18,25],[39,17],[70,1],[55,12],[52,13],[58,7],[62,11],[43,14],[-20,21],[-12,20],[0,21],[-54,-2],[-57,-9],[-54,0],[-8,22],[4,42],[12,13],[40,13],[47,14],[34,17],[33,17],[25,22],[38,10],[38,8],[19,5],[43,2],[41,8],[34,11],[34,14],[30,13],[39,18],[24,20],[26,17],[8,22],[-29,14],[10,23],[18,18],[29,12],[31,13],[28,18],[22,23],[13,27],[20,16],[34,-4],[13,-19],[33,-2],[2,21],[14,23],[30,-6],[7,-21],[33,-3],[36,10],[35,6],[31,-3],[12,-24],[31,20],[28,10],[31,8],[31,7],[29,14],[31,9],[24,12],[17,21],[20,-15],[29,8],[20,-27],[16,-20],[31,11],[13,22],[28,16],[37,-3],[11,-22],[22,22],[30,7],[33,2],[29,-1],[31,-7],[30,-3],[13,-20],[18,-17],[31,11],[32,2],[32,0],[31,1],[28,8],[29,7],[25,15],[26,11],[28,5],[21,16],[15,32],[16,19],[29,-9],[11,-21],[24,-13],[29,4],[19,-20],[21,-15],[28,14],[10,25],[25,10],[29,19],[27,8],[33,11],[21,13],[23,13],[22,13],[26,-7],[25,20],[18,16],[26,-1],[23,13],[6,21],[23,16],[23,11],[28,9],[25,4],[25,-3],[26,-6],[22,-15],[3,-25],[24,-19],[17,-16],[33,-7],[19,-16],[23,-16],[26,-3],[23,11],[23,24],[27,-12],[27,-7],[26,-7],[27,-4],[28,0],[23,-60],[-1,-15],[-4,-26],[-26,-15],[-22,-21],[4,-23],[31,2],[-4,-23],[-14,-21],[-13,-24],[21,-18],[32,-6],[32,10],[15,23],[10,21],[15,18],[17,17],[7,21],[15,28],[17,5],[32,3],[28,6],[28,10],[14,22],[8,22],[19,21],[27,15],[23,11],[16,19],[15,10],[21,9],[27,-5],[25,5],[28,7],[30,-3],[20,15],[14,39],[11,-16],[13,-27],[23,-11],[27,-5],[26,7],[29,-5],[26,-1],[17,6],[24,-3],[21,-13],[25,8],[30,0],[25,8],[29,-8],[19,19],[14,19],[19,16],[35,43],[18,-8],[21,-16],[18,-20],[36,-35],[27,-1],[25,0],[30,7],[30,8],[23,15],[19,17],[31,3],[21,12],[22,-11],[14,-18],[19,-18],[31,2],[19,-15],[33,-14],[35,-6],[29,4],[21,18],[19,19],[25,4],[25,-8],[29,-6],[26,10],[25,0],[24,-6],[26,-6],[25,10],[30,9],[28,3],[32,0],[25,5],[25,5],[8,28],[1,24],[17,-16],[5,-26],[10,-24],[11,-19],[23,-10],[32,3],[36,1],[25,4],[37,0],[26,1],[36,-2],[31,-5],[20,-18],[-5,-21],[18,-17],[29,-14],[31,-14],[36,-11],[38,-9],[28,-9],[32,-1],[18,19],[24,-15],[21,-18],[25,-14],[34,-6],[32,-6],[13,-23],[32,-14],[21,-20],[31,-9],[32,1],[30,-3],[33,1],[33,-4],[31,-8],[29,-14],[29,-11],[20,-17],[-4,-23],[-14,-20],[-13,-26],[-10,-20],[-13,-24],[-36,-9],[-16,-20],[-36,-13],[-13,-22],[-19,-22],[-20,-18],[-11,-23],[-7,-22],[-3,-26],[0,-21],[16,-23],[6,-21],[13,-21],[52,-7],[11,-25],[-50,-9],[-43,-13],[-52,-2],[-24,-33],[-5,-27],[-12,-21],[-14,-22],[37,-19],[14,-24],[24,-21],[33,-19],[39,-18],[42,-18],[64,-18],[14,-29],[80,-12],[5,-4],[21,-17],[76,14],[64,-18],[-9951,-14],[1,0],[25,33],[50,-18],[3,2]],[[3140,2021],[-10,-23],[-23,-18]],[[3107,1980],[-30,7]],[[3077,1987],[-21,17],[-29,8],[-35,32],[-28,31],[-38,65],[23,-12],[39,-39],[36,-20],[15,26],[9,40],[25,23],[20,-6]],[[3093,2152],[11,-27],[14,-43],[36,-35],[39,-14],[-13,-29],[-26,-3],[-14,20]],[[3314,2171],[-14,26],[33,34],[24,-14],[16,23],[22,-26],[-8,-20],[-37,-17],[-13,20],[-23,-26]],[[6909,2316],[-1,31],[4,24],[2,11],[18,-18],[26,-7],[1,-11],[-8,-26],[-42,-4]],[[9079,2670],[-6,3],[-17,2],[-17,49],[-4,38],[-16,50],[1,27],[18,-6],[27,-19],[15,7],[21,12],[17,-4],[2,-69],[-9,-20],[-3,-46],[-10,16],[-19,-40]],[[9703,2497],[-26,1],[-18,19],[-30,4],[-5,21],[15,43],[35,57],[18,10],[20,22],[24,31],[16,29],[13,43],[10,15],[4,32],[20,27],[6,-25],[6,-24],[20,24],[8,-25],[0,-24],[-10,-26],[-18,-43],[-14,-23],[10,-28],[-22,-1],[-23,-21],[-8,-38],[-16,-58],[-21,-26],[-14,-16]],[[9867,2782],[-5,15],[-12,8],[16,48],[-9,31],[-30,23],[1,21],[20,20],[5,45],[-1,37],[-12,39],[1,10],[-13,23],[-22,51],[-12,41],[11,5],[15,-32],[21,-15],[8,-52],[20,-60],[1,39],[13,-16],[4,-43],[22,-19],[19,-4],[16,21],[14,-6],[-7,-51],[-8,-34],[-22,1],[-7,-17],[3,-25],[-5,-11],[-10,-31],[-14,-39],[-21,-23]],[[9631,3893],[-16,15],[-19,26],[-18,31],[-19,40],[-4,20],[12,-1],[16,-20],[12,-19],[9,-16],[23,-36],[14,-27],[-10,-13]],[[9942,4129],[-16,7],[-2,26],[10,20],[13,-8],[7,10],[9,-17],[-4,-30],[-17,-8]],[[0,4229],[9981,-14],[-17,-12],[-4,21],[14,12],[9,3],[-9983,18]],[[0,4257],[0,-28]],[[0,4257],[6,3],[-4,-28],[-2,-3]],[[9652,4227],[-9,25],[1,15],[17,-33],[-9,-7]],[[9645,4276],[-7,7],[-6,-3],[-4,16],[0,44],[13,-17],[4,-47]],[[6261,3708],[-16,15],[-22,21],[-8,30],[-2,51],[-10,46],[-2,41],[5,42],[13,10],[0,19],[13,44],[2,36],[-6,28],[-5,36],[-2,53],[9,32],[4,37],[14,2],[15,12],[11,10],[12,1],[16,33],[22,35],[9,29],[-4,25],[12,-7],[15,40],[1,34],[9,26],[10,-25],[7,-24],[7,-38],[4,-69],[7,-27],[-2,-28],[-5,-17],[-10,34],[-5,-17],[5,-43],[-2,-24],[-8,-14],[-1,-48],[-11,-67],[-14,-80],[-17,-109],[-11,-80],[-12,-67],[-23,-13],[-24,-25]],[[9063,2935],[-23,25],[-17,10],[5,30],[-15,-11],[-25,-41],[-24,15],[-16,9],[-15,5],[-27,16],[-18,36],[-5,43],[-7,29],[-13,24],[-27,7],[9,28],[-7,42],[-13,-39],[-25,-11],[14,32],[5,33],[10,28],[-2,43],[-22,-49],[-18,-20],[-10,-46],[-22,24],[1,31],[-18,41],[-14,22],[5,13],[-36,35],[-19,2],[-27,28],[-50,-6],[-36,-20],[-31,-19],[-27,3],[-29,-29],[-24,-13],[-6,-31],[-10,-23],[-23,-1],[-18,-6],[-24,11],[-20,-6],[-20,-3],[-16,-31],[-8,3],[-14,-16],[-13,-19],[-21,3],[-18,0],[-30,36],[-15,11],[1,33],[14,8],[4,13],[-1,21],[4,40],[-3,34],[-15,58],[-5,33],[2,33],[-11,37],[-1,17],[-12,23],[-4,45],[-16,46],[-4,25],[13,-25],[-10,53],[14,-17],[8,-22],[0,30],[-14,45],[-3,18],[-6,17],[3,34],[6,14],[3,29],[-3,33],[12,42],[2,-44],[12,39],[22,20],[14,24],[21,21],[13,5],[7,-7],[22,21],[17,7],[4,12],[8,5],[15,-1],[29,17],[15,26],[7,30],[17,30],[1,23],[1,31],[19,49],[12,-50],[12,12],[-10,27],[8,28],[13,-13],[3,44],[15,28],[7,23],[14,10],[0,16],[13,-7],[0,15],[12,8],[14,8],[20,-27],[16,-34],[17,0],[18,-6],[-6,32],[13,46],[13,15],[-5,15],[12,32],[17,21],[14,-7],[24,11],[-1,29],[-20,19],[15,9],[18,-15],[15,-23],[23,-15],[8,6],[17,-18],[17,17],[10,-5],[7,11],[12,-29],[-7,-31],[-11,-23],[-9,-2],[3,-23],[-8,-29],[-10,-28],[2,-16],[22,-32],[21,-18],[15,-20],[20,-34],[8,0],[14,-15],[4,-18],[27,-19],[18,19],[6,31],[5,26],[4,31],[8,46],[-4,28],[2,17],[-3,33],[4,43],[5,12],[-4,19],[6,30],[6,32],[0,17],[11,21],[8,-28],[2,-36],[6,-7],[2,-24],[10,-30],[2,-32],[-1,-21],[10,-45],[18,21],[9,-24],[13,-22],[-3,-26],[6,-49],[4,-29],[7,-7],[8,-49],[-3,-30],[9,-39],[30,-30],[20,-28],[19,-25],[-4,-14],[16,-36],[11,-62],[11,13],[11,-25],[7,8],[5,-61],[19,-35],[13,-22],[22,-47],[8,-46],[1,-33],[-2,-35],[13,-49],[-2,-51],[-5,-27],[-7,-51],[0,-33],[-5,-42],[-12,-52],[-21,-28],[-10,-45],[-9,-28],[-8,-50],[-11,-29],[-7,-43],[-4,-39],[2,-19],[-16,-20],[-31,-2],[-26,-23],[-13,-23],[-17,-24]],[[9510,4559],[-19,0],[-11,36],[17,-14],[5,-2],[8,-20]],[[8341,4592],[-37,40],[26,11],[14,-17],[10,-18],[-2,-15],[-11,-1]],[[9456,4613],[-17,5],[-6,9],[2,23],[19,-9],[9,-12],[4,-15],[-11,-1]],[[9486,4619],[-21,50],[-5,34],[9,0],[10,-46],[11,-27],[-4,-11]],[[8470,4670],[4,14],[24,13],[19,2],[9,7],[10,-7],[-10,-16],[-29,-25],[-23,-17]],[[8474,4641],[-18,-43],[-24,-12],[-3,7],[2,19],[12,35],[27,23]],[[8257,4662],[-15,0],[9,33],[16,1],[7,20],[10,-15],[17,5],[7,-25],[-32,-11],[-19,-8]],[[8367,4668],[-37,7],[0,21],[22,12],[18,-17],[18,4],[25,21],[-4,-32],[-42,-16]],[[9441,4691],[-22,24],[-15,21],[-10,19],[4,6],[13,-14],[22,-26],[7,-19],[1,-11]],[[9370,4756],[-13,13],[-11,24],[1,9],[17,-24],[11,-19],[-5,-3]],[[8181,4678],[-30,24],[-25,-2],[-29,4],[-26,11],[-32,22],[-21,5],[-11,-7],[-51,24],[-5,25],[-25,4],[19,55],[34,-4],[22,-22],[12,-4],[3,-21],[54,-6],[6,24],[51,-28],[10,-37],[42,-10],[34,-35],[-32,-22]],[[8727,4785],[-3,44],[5,20],[6,20],[7,-17],[-1,-27],[-14,-40]],[[9321,4784],[-12,22],[-12,37],[-6,43],[4,6],[3,-17],[8,-13],[14,-37],[13,-19],[-4,-16],[-8,-6]],[[9158,4819],[-23,16],[-16,16],[2,18],[25,-8],[15,4],[5,28],[4,1],[2,-30],[16,4],[8,20],[15,20],[-3,34],[17,2],[6,-10],[-1,-32],[-9,-35],[-15,-5],[-4,-16],[-15,-14],[-15,-13],[-14,0]],[[8523,4964],[-19,11],[-5,24],[28,3],[7,-19],[-11,-19]],[[8633,4960],[-23,24],[-23,5],[-16,-4],[-19,2],[6,32],[35,2],[30,-17],[10,-44]],[[9244,4908],[-5,34],[-6,22],[-13,19],[-16,25],[-20,17],[8,13],[15,-16],[9,-12],[12,-14],[11,-24],[11,-19],[3,-30],[-9,-15]],[[8916,5033],[48,-40],[51,-33],[19,-29],[16,-29],[4,-34],[46,-36],[7,-30],[-25,-7],[6,-38],[24,-38],[19,-61],[15,2],[-1,-25],[22,-10],[-9,-11],[30,-24],[-3,-17],[-19,-4],[-6,15],[-24,6],[-28,9],[-22,37],[-16,31],[-14,51],[-36,25],[-24,-16],[-17,-19],[4,-43],[-22,-20],[-16,10],[-28,2]],[[8917,4657],[-25,48],[-28,11],[-7,-16],[-35,-2],[12,47],[17,16],[-7,62],[-14,49],[-53,49],[-23,4],[-42,54],[-8,-28],[-11,-5],[-6,21],[0,25],[-22,28],[30,21],[20,-1],[-2,15],[-41,0],[-11,34],[-25,11],[-11,28],[37,14],[14,19],[45,-23],[4,-22],[8,-93],[29,-35],[23,62],[32,34],[25,0],[23,-20],[21,-20],[30,-11]],[[8327,4856],[-12,17],[8,53],[-4,55],[-12,1],[-9,39],[12,38],[4,46],[14,86],[5,24],[24,43],[22,-17],[35,-8],[32,2],[27,42],[5,-13],[-22,-57],[-21,-11],[-27,11],[-46,-3],[-24,-8],[-4,-43],[24,-52],[15,26],[52,20],[-2,-27],[-12,9],[-12,-34],[-25,-22],[27,-74],[-5,-20],[25,-66],[-1,-38],[-15,-17],[-10,20],[13,47],[-27,-22],[-7,16],[3,22],[-20,34],[2,56],[-18,-17],[2,-68],[1,-82],[-17,-8]],[[8557,5131],[-11,36],[-8,74],[6,46],[9,21],[2,-32],[16,-5],[3,-23],[-2,-51],[-14,6],[-4,-35],[11,-30],[-8,-7]],[[7908,4844],[-24,48],[-35,47],[-12,35],[-21,47],[-14,43],[-21,81],[-24,48],[-9,49],[-10,45],[-25,37],[-14,49],[-21,32],[-29,64],[-3,29],[18,-2],[43,-11],[25,-57],[21,-39],[16,-24],[26,-62],[28,-1],[23,-39],[16,-48],[22,-27],[-12,-47],[16,-20],[10,-1],[5,-40],[10,-32],[20,-5],[14,-37],[-7,-72],[-2,-89],[-30,-1]],[[8045,5298],[21,-20],[21,11],[6,49],[12,11],[33,12],[20,46],[13,36]],[[8171,5443],[11,22],[24,31]],[[8206,5496],[21,40],[14,45],[12,0],[14,-29],[1,-25],[19,-16],[23,-17],[-2,-23],[-19,-3],[5,-28],[-20,-19]],[[8274,5421],[-16,-52],[20,-55],[-5,-26],[32,-54],[-33,-6],[-10,-40],[2,-52],[-27,-39],[-1,-58],[-11,-88],[-4,21],[-31,-26],[-11,35],[-20,3],[-14,19],[-33,-21],[-10,28],[-18,-3],[-23,6],[-4,78],[-14,16],[-14,49],[-3,50],[3,54],[16,38]],[[8482,5504],[-32,33],[-8,42],[8,27],[-17,27],[-9,-23],[-13,2],[-21,-32],[-4,17],[11,48],[17,16],[15,22],[10,-26],[21,16],[5,25],[19,2],[-1,44],[22,-27],[3,-29],[2,-21],[2,-38],[2,-33],[-9,-52],[-11,58],[-13,-29],[9,-42],[-8,-27]],[[7231,5526],[-13,46],[-5,83],[13,93],[19,-32],[13,-40],[13,-60],[-4,-60],[-12,-17],[-24,-13]],[[3284,5758],[-5,5],[8,16],[-1,23],[16,7],[6,-2],[-1,-42],[-23,-7]],[[8416,5702],[-17,40],[5,15],[7,16],[3,36],[16,3],[-5,-38],[21,55],[-3,-55],[-10,-19],[-9,-36],[-8,-17]],[[8254,5664],[14,40],[20,36],[16,40],[15,57],[5,-47],[-19,-32],[-14,-39],[-37,-55]],[[8388,5784],[-1,26],[2,30],[-4,27],[16,-18],[18,0],[0,-24],[-13,-24],[-18,-17]],[[8466,5766],[-1,40],[-9,3],[-4,35],[16,-4],[0,22],[-17,44],[27,-2],[7,-21],[8,-65],[-21,16],[0,-20],[7,-35],[-13,-13]],[[8368,5885],[-12,29],[-15,44],[24,-2],[10,-21],[-7,-50]],[[8446,5904],[-22,29],[-10,30],[-7,-21],[-18,34],[-25,-8],[-14,12],[1,24],[9,15],[-8,13],[-4,-21],[-14,33],[-4,26],[-1,55],[11,-19],[3,90],[9,52],[17,0],[17,-16],[9,15],[2,-15],[-4,-24],[9,-41],[-7,-48],[-16,-19],[-5,-47],[6,-46],[15,-6],[12,7],[35,-32],[-2,-31],[9,-14],[-3,-27]],[[3133,6216],[-1,24],[4,9],[22,0],[15,-6],[5,-11],[-7,-14],[-21,0],[-17,-2]],[[2855,6202],[-15,9],[-16,21],[3,13],[12,4],[6,-2],[19,-5],[14,-14],[5,-16],[-20,-1],[-8,-9]],[[3008,6318],[3,9],[22,0],[16,-15],[8,2],[5,-21],[15,2],[-1,-18],[12,-2],[14,-21],[-10,-23],[-14,12],[-12,-2],[-9,3],[-5,-11],[-11,-3],[-4,14],[-10,-9],[-11,-39],[-7,9],[-1,17]],[[3008,6222],[-19,9],[-13,-4],[-17,4],[-13,-10],[-15,18],[3,18],[25,-8],[21,-4],[10,12],[-12,25],[0,22],[-18,9],[7,16],[17,-2],[24,-9]],[[8040,6230],[-23,18],[0,50],[13,26],[31,16],[16,-1],[6,-22],[-12,-26],[-7,-33],[-24,-28]],[[675,6272],[-7,8],[1,16],[-4,21],[1,6],[5,10],[-2,11],[1,5],[3,-1],[10,-9],[5,-5],[5,-8],[7,-20],[-1,-3],[-11,-13],[-9,-9],[-4,-9]],[[655,6367],[-5,12],[-3,5],[0,3],[3,5],[9,-5],[8,-9],[-3,-7],[-9,-4]],[[645,6396],[-15,1],[2,7],[13,-2],[0,-6]],[[619,6407],[-2,1],[-10,2],[-3,13],[-1,2],[7,8],[3,-4],[8,-19],[-2,-3]],[[570,6443],[-9,10],[1,4],[5,6],[6,-1],[1,-14],[-4,-5]],[[2840,6326],[18,32],[-11,15],[-18,4],[-9,16],[-7,33],[-16,-2],[-26,15],[-8,12],[-36,9],[-10,12],[11,14],[-28,3],[-20,-30],[-11,-1],[-4,-14],[-14,-6],[-12,5],[15,18],[6,21],[12,13],[15,11],[21,5],[6,7],[24,-4],[22,-1],[26,-20],[11,-21],[26,7],[10,-14],[24,-35],[17,-26],[9,0],[17,-11],[-2,-17],[20,-2],[21,-24],[-3,-13],[-19,-7],[-18,-3],[-19,4],[-40,-5]],[[2839,6548],[-7,33],[-10,17],[6,36],[8,-2],[10,-48],[0,-33],[-7,-3]],[[8353,6448],[-14,48],[-4,43],[17,56],[22,44],[13,-17],[-5,-35],[-17,-92],[-12,-47]],[[2808,6704],[-2,21],[13,5],[18,-2],[1,-15],[-30,-9]],[[2856,6673],[-5,7],[0,30],[-12,23],[0,6],[22,-25],[-5,-41]],[[8694,7066],[-18,16],[0,27],[15,35],[16,-7],[12,24],[20,-12],[4,-20],[-16,-35],[-11,19],[-15,-14],[-7,-33]],[[5943,7201],[1,-4],[-29,-24],[-13,8],[-7,23],[14,2]],[[5909,7206],[2,0],[4,14],[20,-1],[25,17],[-19,-24],[2,-11]],[[5686,7193],[0,10],[-33,11],[5,24],[15,-19],[21,3],[21,-4],[-1,-10],[16,7],[-4,-17],[-40,-5]],[[5419,7291],[-21,22],[-14,6],[-39,29],[4,30],[32,-5],[28,6],[22,5],[-10,-45],[4,-18],[-6,-30]],[[5244,7423],[-10,15],[-2,70],[-6,32],[15,-2],[14,17],[17,-40],[-4,-77],[-13,4],[-11,-19]],[[8629,6969],[-13,23],[7,51],[-18,17],[-11,40],[26,17],[15,37],[28,29],[20,40],[55,17],[30,-12],[29,103],[19,-28],[40,58],[16,22],[17,70],[-4,65],[11,37],[30,10],[15,-80],[-1,-46],[-25,-58],[0,-60],[-10,-46],[4,-29],[-14,-40],[-35,-27],[-49,-4],[-40,-66],[-19,23],[-1,43],[-48,-13],[-33,-27],[-32,-1],[28,-43],[-19,-98],[-18,-24]],[[5256,7565],[-13,12],[-6,39],[5,21],[18,22],[5,-49],[-9,-45]],[[8887,7576],[-4,57],[14,45],[29,3],[8,80],[9,44],[32,-59],[22,-20],[19,-12],[20,24],[6,-64],[-41,-16],[-25,-57],[-43,39],[-15,-63],[-31,-1]],[[3253,7829],[-35,25],[-7,19],[10,18],[10,-28],[20,-8],[26,2],[-14,-24],[-10,-4]],[[3269,8009],[-36,18],[-26,27],[10,5],[37,-14],[28,-24],[1,-11],[-14,-1]],[[1555,7968],[-46,26],[-8,20],[-25,20],[-5,17],[-28,10],[-11,32],[2,13],[29,-13],[17,-8],[27,-6],[9,-20],[14,-28],[27,-23],[12,-32],[-14,-8]],[[3513,7867],[-18,11],[6,47],[-8,7],[-32,-50],[-17,2],[20,27],[-27,14],[-30,-3],[-54,2],[-4,17],[17,20],[-12,15],[24,35],[28,92],[17,33],[25,20],[12,-3],[-5,-16],[-15,-36],[-18,-50],[18,19],[19,-12],[-10,-20],[25,-16],[12,14],[28,-18],[-8,-42],[19,10],[3,-31],[9,-35],[-12,-51],[-12,-2]],[[1356,8187],[-11,0],[-17,27],[-10,26],[-14,18],[-5,25],[1,19],[13,-8],[27,5],[-8,-66],[24,-46]],[[8946,7829],[-5,49],[3,56],[-3,62],[6,43],[1,77],[-16,57],[3,79],[25,26],[-11,27],[13,8],[7,-38],[9,-56],[0,-56],[11,-58],[28,-102],[-41,19],[-17,-84],[27,-59],[-1,-40],[-21,35],[-18,-45]],[[4789,8357],[23,2],[30,-35],[-15,-40]],[[4827,8284],[5,-41],[-21,-51],[-49,-34],[-40,8],[23,61],[-15,58],[38,45],[21,27]],[[5335,8338],[-29,32],[-4,24],[41,19],[9,-28],[-17,-47]],[[722,8449],[-14,15],[-5,27],[26,21],[15,8],[18,-3],[12,-18],[-24,-28],[-28,-22]],[[4905,8144],[-44,9]],[[4861,8153],[-8,23],[29,18],[-15,31],[5,38],[42,-5],[4,33]],[[4918,8291],[-19,36]],[[4899,8327],[-34,10],[-7,16],[10,26],[-9,16],[-15,-28],[-1,56],[-14,29],[10,60],[21,47],[22,-5],[34,5],[-30,-62],[29,7],[30,0],[-7,-47],[-25,-51],[29,-4]],[[4942,8402],[26,-74]],[[4968,8328],[19,-9],[18,-66],[8,-23],[33,-11],[-3,-37],[-14,-16],[11,-30],[-25,-30],[-37,0],[-48,-16],[-13,12],[-18,-27],[-26,6],[-19,-22],[-15,12],[41,60],[25,13]],[[383,8623],[-18,11],[-17,16],[28,10],[22,-6],[2,-22],[-17,-9]],[[2787,8731],[-12,5],[-8,18],[2,4],[10,17],[12,-1],[7,-12],[-11,-31]],[[2692,8762],[-19,1],[-6,16],[20,26],[38,0],[0,-11],[-33,-32]],[[291,8809],[-21,12],[-11,11],[-24,-4],[-7,6],[2,21],[17,-11],[17,6],[22,-15],[28,-8],[-2,-6],[-21,-12]],[[2624,8813],[-10,34],[-37,-6],[24,29],[4,45],[9,53],[20,-5],[5,-25],[14,9],[17,-15],[30,-20],[32,-18],[2,-27],[21,4],[20,-19],[-25,-18],[-43,14],[-16,26],[-27,-31],[-40,-30]],[[4481,8839],[-36,8],[-78,18],[28,26],[-61,28],[49,11],[-1,17],[-58,13],[19,38],[42,8],[43,-39],[42,32],[35,-17],[45,31],[46,-4],[-6,-37],[31,-39],[-36,-44],[-80,-40],[-24,-10]],[[2861,9046],[-7,28],[12,33],[25,8],[22,-16],[0,-25],[-3,-8],[-18,-17],[-31,-3]],[[0,9154],[68,-44],[73,-58],[-3,-35],[19,-15],[-6,42],[75,-9],[54,-53],[-27,-26],[-46,-6],[0,-56],[-11,-12],[-26,2],[-22,20],[-37,17],[-6,25],[-28,9],[-32,-7],[-15,20],[6,21],[-33,-13],[13,-27],[-16,-25]],[[0,8924],[0,230]],[[2326,9142],[-38,17],[-23,-6],[-37,26],[24,18],[19,24],[30,-16],[17,-10],[8,-11],[17,-22],[-17,-20]],[[0,9261],[9969,-3],[-5,18],[-9964,24]],[[0,9300],[0,-39]],[[0,9300],[3,3],[24,0],[40,-17],[-2,-8],[-29,-13],[-36,-4]],[[3245,7816],[46,9],[28,64]],[[3319,7889],[2,-42],[17,-20],[-34,-38],[-61,-34],[-28,-24],[-31,-41],[-21,4],[-1,49],[48,47],[-44,-1],[-31,-7]],[[3135,7782],[5,-19],[-30,-28],[-29,-20],[-29,-17]],[[3052,7698],[-16,-38],[-3,-9]],[[3033,7651],[-1,-31],[9,-30],[12,-2],[-3,21],[8,-13],[-2,-16],[-19,-9],[-13,1],[-20,-10],[-13,-3],[-16,-3],[-23,-17],[41,11],[8,-11],[-39,-17],[-17,0],[0,7],[-8,-16],[8,-3],[-6,-41],[-20,-44],[-2,14],[-6,3],[-9,15],[5,-31],[7,-10],[1,-22],[-9,-23],[-16,-46],[-2,3],[8,39],[-14,22],[-3,48],[-6,-25],[6,-37]],[[2879,7375],[-17,9],[18,-18]],[[2880,7366],[1,-55],[8,-4],[3,-20],[4,-57],[-18,-43],[-28,-17],[-19,-34],[-13,-4],[-14,-21],[-4,-19],[-31,-38],[-16,-27],[-13,-34],[-4,-41],[5,-40],[9,-49],[13,-41],[0,-25],[13,-67],[-1,-39],[-1,-22],[-7,-35],[-8,-7],[-14,7],[-4,25],[-11,13],[-15,50],[-13,44],[-4,22],[6,38],[-8,32],[-22,48],[-10,9],[-28,-26],[-5,3],[-14,27],[-17,14],[-32,-7],[-24,6],[-22,-4]],[[2522,6928],[-11,-8],[5,-16]],[[2516,6904],[0,-24],[5,-11],[-5,-8],[-10,9],[-11,-11],[-20,2],[-21,30],[-24,-7],[-20,13],[-17,-4],[-24,-13],[-25,-43],[-27,-25],[-16,-27],[-6,-26],[0,-40],[1,-27],[5,-20]],[[2301,6672],[-10,-50],[-5,-42],[-2,-77],[-3,-28],[5,-32],[8,-28],[6,-44],[18,-43],[7,-33],[11,-28],[29,-16],[12,-24],[24,16],[21,6]],[[2422,6249],[21,11],[18,9]],[[2461,6269],[17,24],[7,33],[2,49],[5,17],[19,15],[29,13],[25,-2],[17,5],[6,-12],[-1,-28],[-15,-34],[-6,-35],[5,-10],[-4,-25],[-7,-45],[-7,15],[-6,-1]],[[2547,6248],[0,-9],[5,0],[0,-16],[-5,-25],[3,-8],[-3,-21],[2,-6],[-4,-29],[-5,-15],[-5,-2],[-6,-20]],[[2529,6097],[9,-10],[3,8],[8,-7]],[[2549,6088],[3,-2],[6,10],[8,1],[2,-5],[5,3],[13,-5],[13,1],[8,7],[4,6],[9,-3],[6,-4],[7,2],[6,5],[13,-8],[4,-2],[9,-11],[8,-12],[10,-9],[7,-16]],[[2690,6046],[-2,-6],[-2,-12],[3,-22],[-6,-19],[-3,-23],[-1,-26],[1,-15],[1,-25],[-4,-6],[-3,-25],[2,-15],[-6,-15],[2,-15],[4,-10]],[[2676,5812],[7,-31],[11,-23],[13,-25]],[[2707,5733],[10,-20],[-1,-13],[11,-2],[3,4],[7,-14],[14,4],[12,15],[17,12],[9,17],[16,-4],[-1,-5],[15,-2],[12,-10],[10,-17],[10,-16]],[[2851,5682],[14,-2],[21,40],[12,6],[0,19],[5,49],[16,27],[17,1],[3,12],[21,-5],[22,29],[11,13],[14,28],[9,-4],[8,-15],[-6,-19]],[[3018,5861],[-1,-14],[-16,-7],[9,-26],[0,-30],[-12,-34],[10,-45],[12,4],[6,41],[-8,20],[-2,44],[35,23],[-4,28],[10,18],[10,-41],[19,-1],[18,-32],[1,-19],[25,0],[30,6],[16,-26],[21,-7],[16,18],[0,14],[34,4],[34,0],[-24,-17],[10,-27],[22,-4],[21,-28],[4,-47],[15,2],[11,-14]],[[3340,5664],[18,-21],[17,-38],[1,-29],[10,-2],[15,-28],[11,-20]],[[3412,5526],[33,-11],[3,10],[23,4],[30,-15]],[[3501,5514],[9,-6],[21,-14],[29,-49],[5,-23]],[[3565,5422],[9,3],[7,-32],[16,-101],[14,-10],[1,-39],[-21,-48],[9,-17],[49,-9],[1,-58],[21,38],[35,-21],[46,-35],[14,-34],[-5,-32],[32,18],[55,-30],[41,2],[41,-48],[36,-64],[21,-17],[24,-2],[10,-18],[9,-74],[5,-34],[-11,-96],[-14,-37],[-40,-80],[-17,-65],[-21,-50],[-7,-1],[-7,-43],[1,-108],[-7,-88],[-3,-38],[-9,-23],[-5,-77],[-28,-75],[-5,-60],[-22,-25],[-7,-34],[-30,0],[-44,-22],[-19,-26],[-31,-17],[-33,-46],[-24,-57],[-4,-43],[5,-31],[-5,-59],[-6,-28],[-20,-31],[-31,-102],[-24,-45],[-19,-27],[-13,-55],[-18,-33]],[[3517,3238],[-12,-36],[-31,-32],[-21,11],[-15,-6],[-26,25],[-18,-2],[-17,32]],[[3377,3230],[-2,-30],[35,-50],[-4,-39],[18,-25],[-2,-28],[-27,-74],[-41,-31],[-55,-12],[-31,6],[6,-35],[-6,-43],[5,-29],[-16,-20],[-29,-8],[-26,21],[-11,-15],[4,-57],[18,-18],[16,18],[8,-29],[-26,-18],[-22,-36],[-4,-58],[-7,-31],[-26,0],[-22,-30],[-8,-43],[28,-42],[26,-12],[-9,-51],[-33,-33],[-18,-67],[-25,-23],[-12,-27],[9,-60],[19,-33],[-12,3]],[[3095,2171],[-25,0],[-13,-14],[-25,-21],[-5,-53],[-11,-2],[-32,19],[-32,40],[-34,33],[-9,36],[8,34],[-14,38],[-4,99],[12,55],[30,44],[-43,17],[27,51],[9,96],[31,-20],[15,119],[-19,15],[-9,-72],[-17,8],[9,83],[9,106],[13,40],[-8,56],[-2,65],[11,2],[17,93],[20,92],[11,86],[-6,86],[8,47],[-3,71],[16,71],[5,111],[9,120],[9,129],[-2,94],[-6,81]],[[3045,4126],[-28,33],[-2,24],[-55,57],[-50,63],[-22,36],[-11,47],[4,17],[-23,76],[-28,106],[-26,114],[-11,27],[-9,42],[-21,38],[-20,23],[9,26],[-14,55],[9,40],[22,36]],[[2769,4986],[15,43],[-6,26],[-11,-27],[-16,25],[5,16],[-4,53],[9,8],[5,36],[11,37],[-2,24],[15,12],[19,23]],[[2809,5262],[-4,18],[11,4],[-1,29],[6,21],[14,4],[12,36],[10,30],[-10,14],[5,33],[-6,53],[6,15],[-4,49],[-12,30]],[[2836,5598],[-9,17],[-6,31],[7,15],[-7,4],[-5,19],[-14,16],[-12,-3],[-6,-20],[-11,-15],[-6,-2],[-3,-12],[13,-31],[-7,-7],[-4,-9],[-13,-3],[-5,35],[-4,-10],[-9,3],[-5,23],[-12,4],[-7,7],[-12,0],[-1,-13],[-3,9]],[[2695,5656],[-15,13],[-6,12],[4,10],[-1,13],[-8,13],[-11,12],[-10,7],[-1,17],[-8,10],[2,-17],[-6,-13],[-6,16],[-9,5],[-4,12],[1,18],[3,18],[-8,8],[7,11]],[[2619,5821],[-10,18],[-13,23],[-6,20],[-12,18],[-14,26],[4,9],[4,-9],[2,4]],[[2574,5930],[-5,18],[-8,5]],[[2561,5953],[-3,-13],[-16,0],[-10,6],[-12,11],[-15,4],[-8,12]],[[2497,5973],[-14,10],[-18,1],[-12,12],[-15,24]],[[2438,6020],[-32,62],[-14,18],[-23,15],[-15,-4],[-22,-22],[-14,-5],[-20,15],[-21,11],[-26,26],[-21,8],[-31,27],[-23,28],[-7,15],[-16,4],[-28,18],[-12,26],[-30,33],[-14,36],[-6,28],[9,6],[-3,16],[7,15],[0,20],[-10,26],[-2,23],[-9,29],[-25,57],[-28,45],[-13,36],[-24,23],[-5,14],[4,36],[-14,13],[-17,28],[-7,41],[-15,4],[-16,31],[-13,28],[-1,18],[-15,43],[-10,44],[1,22],[-20,23],[-10,-2],[-15,16],[-5,-24],[5,-28],[2,-43],[10,-23],[21,-40],[4,-14],[4,-4],[4,-20],[5,1],[6,-37],[8,-15],[6,-20],[17,-29],[10,-54],[8,-25],[8,-27],[1,-30],[13,-2],[12,-26],[10,-26],[-1,-10],[-12,-22],[-5,1],[-7,35],[-18,33],[-20,27],[-14,15],[1,42],[-5,31],[-13,18],[-19,26],[-4,-8],[-7,15],[-17,14],[-16,34],[2,4],[11,-3],[11,21],[1,26],[-22,41],[-16,16],[-10,36],[-11,38],[-12,46],[-12,52]],[[1746,7056],[-4,29],[-18,33],[-13,7],[-3,17],[-16,3],[-10,15],[-26,6],[-7,9],[-3,32],[-27,58],[-23,80],[1,13],[-13,19],[-21,48],[-4,47],[-15,32],[6,48],[-1,49],[-8,44],[10,54]],[[1551,7699],[7,105]],[[1558,7804],[-5,77],[-9,49],[-8,27],[4,11],[40,-19],[15,-55],[6,16],[-4,47],[-9,47]],[[1588,8004],[-4,0],[-54,57],[-20,25],[-50,23],[-16,51],[4,36],[-35,24],[-5,47],[-34,41],[0,30]],[[1374,8338],[-15,22],[-25,18],[-8,50],[-36,47],[-15,54],[-26,4],[-44,1],[-33,17],[-57,60],[-27,11],[-49,20],[-38,-5],[-55,27],[-33,24],[-30,-12],[5,-40],[-15,-4],[-32,-12],[-25,-19],[-30,-12],[-4,34],[12,56],[30,18],[-8,14],[-35,-32],[-19,-38],[-40,-41],[20,-28],[-26,-41],[-30,-24],[-28,-18],[-7,-25],[-43,-30],[-9,-27],[-33,-25],[-19,5],[-26,-17],[-28,-19],[-23,-19],[-47,-17],[-5,10],[31,27],[27,18],[29,31],[35,7],[13,23],[39,35],[6,11],[21,20],[4,44],[15,34],[-32,-17],[-9,10],[-15,-21],[-19,29],[-7,-21],[-10,29],[-28,-23],[-17,0],[-3,34],[5,21],[-17,21],[-37,-11],[-23,27],[-19,14],[0,32],[-22,25],[11,33],[23,32],[10,30],[22,4],[19,-9],[23,27],[20,-5],[21,18],[-5,27],[-16,10],[21,22],[-17,-1],[-30,-12],[-8,-13],[-22,13],[-39,-7],[-41,14],[-12,23],[-35,34],[39,24],[62,28],[23,0],[-4,-29],[59,3],[-23,35],[-34,22],[-20,29],[-26,24],[-38,19],[15,30],[49,2],[35,26],[7,28],[28,27],[27,7],[53,26],[26,-4],[42,30],[42,-12],[21,-26],[12,11],[47,-3],[-2,-13],[43,-10],[28,6],[59,-18],[53,-6],[21,-7],[37,9],[42,-17],[31,-8]],[[1084,9197],[51,-14],[44,-28],[29,-5],[24,24],[34,18],[41,-7],[42,25],[45,14],[19,-24],[21,14],[6,27],[20,-6],[47,-52],[37,39],[3,-43],[34,9],[11,17],[34,-3],[42,-25],[65,-21],[38,-10],[27,4],[38,-29],[-39,-29],[50,-12],[75,7],[24,10],[29,-35],[31,30],[-29,24],[18,20],[34,2],[22,6],[23,-14],[28,-31],[31,5],[49,-26],[43,9],[40,-2],[-3,36],[25,10],[43,-19],[0,-55],[17,46],[23,-1],[12,58],[-30,35],[-32,23],[2,64],[33,42],[37,-9],[28,-26],[37,-65],[-24,-28],[51,-12],[0,-59],[37,46],[34,-38],[-9,-42],[27,-39],[29,42],[21,49],[1,63],[40,-4],[41,-8],[37,-29],[2,-29],[-21,-30],[19,-31],[-3,-28],[-54,-40],[-39,-9],[-29,17],[-8,-29],[-27,-48],[-8,-26],[-32,-39],[-40,-3],[-22,-25],[-2,-37],[-32,-7],[-34,-47],[-30,-65],[-11,-45],[-1,-67],[40,-10],[13,-54],[13,-43],[39,11],[51,-25],[28,-22],[20,-27],[35,-16],[29,-24],[46,-3],[30,-6],[-4,-50],[8,-58],[21,-64],[41,-55],[21,19],[15,59],[-14,91],[-20,30],[45,27],[31,41],[16,40],[-3,38],[-19,49],[-33,44],[32,60],[-12,52],[-9,90],[19,13],[48,-15],[29,-6],[23,15],[25,-19],[35,-34],[8,-22],[50,-4],[-1,-49],[9,-73],[25,-9],[21,-34],[40,32],[26,64],[19,27],[21,-52],[36,-73],[31,-69],[-11,-36],[37,-33],[25,-33],[44,-15],[18,-18],[11,-49],[22,-7],[11,-22],[2,-65],[-20,-21],[-20,-21],[-46,-20],[-35,-47],[-47,-10],[-59,12],[-42,1],[-29,-4],[-23,-42],[-35,-25],[-40,-76],[-32,-53],[23,9],[45,76],[58,48],[42,5],[24,-28],[-26,-39],[9,-62],[9,-43],[36,-29]],[[1852,9129],[-15,27],[-38,16],[-24,-7],[-35,46],[19,6],[43,10],[39,-3],[36,10],[-54,14],[-59,-5],[-39,1],[-15,22],[64,23],[-42,-1],[-49,15],[23,43],[20,23],[74,35],[28,-11],[-13,-27],[61,17],[39,-29],[31,30],[26,-19],[23,-57],[14,24],[-20,59],[24,9],[28,-10],[31,-23],[17,-56],[9,-41],[47,-28],[50,-27],[-3,-26],[-46,-4],[18,-22],[-10,-22],[-50,9],[-48,16],[-32,-4],[-52,-19]],[[1972,9143],[-82,-10],[-38,-4]],[[2073,9372],[-44,40],[10,9],[37,2],[21,-13],[-24,-38]],[[2792,9371],[-8,4],[-31,30],[1,21],[14,4],[63,-6],[48,-32],[3,-16],[-30,2],[-30,1],[-30,-8]],[[3162,8749],[-76,23],[-59,33],[-34,28],[10,16],[-42,30],[-40,28],[0,-17],[-80,-9],[-23,20],[18,42],[52,1],[57,7],[-9,21],[10,29],[36,56],[-8,25],[-11,20],[-42,28],[-57,20],[18,14],[-29,36],[-25,3],[-22,20],[-14,-17],[-51,-8],[-101,13],[-59,17],[-45,9],[-23,20],[29,26],[-39,1],[-9,58],[21,51],[29,24],[72,15],[-21,-37],[22,-36],[26,47],[70,23],[48,-59],[-4,-38],[55,17],[26,23],[62,-30],[38,-27],[3,-25],[52,13],[29,-37],[67,-23],[24,-23],[26,-54],[-51,-26],[66,-38],[44,-13],[40,-53],[44,-4],[-9,-40],[-49,-67],[-34,25],[-44,55],[-36,-7],[-3,-33],[29,-33],[38,-27],[11,-15],[18,-57],[-9,-42],[-35,16],[-70,46],[39,-49],[29,-35],[5,-20]],[[2267,9287],[-26,4],[-19,22],[-69,45],[0,18],[57,-7],[-31,38],[33,28],[33,-13],[50,8],[7,-17],[-26,-28],[42,-24],[-5,-52],[-46,-22]],[[8946,9398],[-57,6],[-5,3],[26,23],[35,5],[40,-22],[3,-15],[-42,0]],[[2381,9330],[-32,2],[-17,51],[1,28],[14,25],[28,15],[57,-2],[54,-14],[-42,-51],[-33,-11],[-30,-43]],[[1581,9265],[-15,25],[-64,31]],[[1502,9321],[9,19],[22,47]],[[1533,9387],[24,38],[-27,35],[94,9],[39,-12],[71,-3],[27,-16],[30,-25],[-35,-14],[-68,-41],[-34,-40]],[[1654,9318],[0,-24],[-73,-29]],[[9154,9483],[-45,5],[-51,23],[7,19],[51,-9],[70,-15],[-32,-23]],[[2384,9478],[-40,4],[-34,15],[15,26],[40,15],[24,-20],[10,-18],[-15,-22]],[[8859,9479],[-55,37],[15,40],[37,11],[73,-3],[100,-30],[-22,-43],[-102,1],[-46,-13]],[[2227,9495],[-30,9],[1,34],[-46,-4],[-1,44],[30,-2],[41,20],[39,-3],[3,7],[21,-26],[1,-30],[-13,-43],[-46,-6]],[[1840,9466],[-3,19],[57,26],[-125,-7],[-39,10],[38,56],[26,16],[78,-19],[50,-34],[48,-5],[-40,55],[26,21],[29,-6],[9,-28],[11,-20],[25,9],[29,-2],[5,-28],[-17,-28],[-94,-8],[-71,-25],[-42,-2]],[[6581,9250],[-91,7],[-7,26],[-50,15],[-4,31],[28,13],[-1,31],[55,49],[-25,7],[66,51],[-7,26],[62,30],[91,37],[93,11],[47,21],[54,8],[20,-23],[-19,-18],[-98,-28],[-85,-28],[-86,-55],[-42,-56],[-43,-55],[5,-48],[54,-47],[-17,-5]],[[2551,9466],[-45,7],[-74,19],[-9,31],[-4,29],[-27,25],[-58,7],[-32,18],[10,24],[58,-4],[30,-19],[55,1],[24,-19],[-6,-22],[32,-13],[17,-14],[38,-2],[40,-5],[44,12],[57,5],[45,-4],[30,-21],[6,-24],[-17,-16],[-42,-12],[-35,7],[-80,-9],[-57,-1]],[[1625,9553],[-38,12],[47,44],[57,37],[43,-1],[38,8],[-4,-44],[-21,-20],[-26,-3],[-52,-24],[-44,-9]],[[0,8924],[9963,-26],[-36,5],[25,-31],[17,-47],[13,-16],[3,-24],[-7,-15],[-52,13],[-78,-44],[-25,-6],[-42,-41],[-40,-35],[-11,-26],[-39,39],[-73,-45],[-12,22],[-27,-25],[-37,8],[-9,-38],[-34,-56],[1,-23],[32,-13],[-4,-84],[-25,-2],[-12,-48],[11,-25],[-48,-29],[-10,-66],[-41,-14],[-9,-59],[-40,-53],[-10,39],[-12,84],[-15,128],[13,80],[23,35],[2,27],[43,12],[50,73],[47,59],[50,46],[23,81],[-34,-5],[-17,-47],[-70,-63],[-23,71],[-72,-20]],[[9352,8720],[-69,-96],[23,-36]],[[9306,8588],[-62,-15],[-43,-6],[2,42],[-43,9],[-35,-29],[-85,10],[-91,-17],[-90,-112],[-106,-136],[43,-7],[14,-36],[27,-13],[18,29],[30,-4],[40,-64],[1,-49],[-22,-57],[-2,-69],[-12,-92],[-42,-83],[-9,-40],[-38,-67],[-38,-67],[-18,-34],[-37,-33],[-17,-1],[-17,28],[-38,-42],[-4,-19]],[[8632,7614],[-11,3],[-12,-19],[-8,-20],[1,-41],[-14,-13],[-5,-10],[-11,-17],[-18,-10],[-12,-15],[-1,-25],[-3,-7],[11,-9],[15,-25]],[[8564,7406],[24,-68],[7,-37],[0,-67],[-10,-31],[-25,-11],[-22,-24],[-25,-5],[-3,31],[5,43],[-13,60],[21,10],[-19,49]],[[8504,7356],[-14,11],[-3,-11],[-8,-4],[-1,10],[-7,6],[-8,9],[8,25],[7,7],[-3,10],[7,32],[-2,9],[-16,6],[-13,16]],[[8451,7482],[-39,-17],[-20,-27],[-30,-16],[15,27],[-6,22],[22,39],[-15,30],[-24,-20],[-32,-40],[-17,-37],[-27,-3],[-14,-27],[15,-39],[22,-9],[1,-26],[22,-17],[31,41],[25,-22],[18,-2],[4,-30],[-39,-16],[-13,-31],[-27,-29],[-14,-40],[30,-32],[11,-57],[17,-52],[18,-45],[0,-42],[-17,-16],[6,-31],[17,-18],[-5,-47],[-7,-45],[-15,-5],[-21,-63],[-22,-75],[-26,-69],[-38,-53],[-39,-49],[-31,-6],[-17,-26],[-10,19],[-15,-29],[-39,-29],[-30,-8],[-9,-61],[-15,-4],[-8,42],[7,22],[-37,19]],[[8014,6433],[-13,-9],[-38,-50]],[[7963,6374],[-23,-54],[-6,-40],[21,-61],[26,-75],[26,-36],[16,-46],[13,-106],[-4,-102],[-23,-38],[-32,-37],[-22,-48],[-35,-53],[-10,37],[8,39],[-21,32]],[[7897,5786],[-23,9],[-11,30],[-14,59]],[[7849,5884],[-25,27],[-24,-1],[4,45],[-24,-1],[-3,-63],[-14,-84],[-10,-51],[2,-42],[18,-1],[12,-53],[5,-50],[15,-33],[17,-6],[14,-30]],[[7836,5541],[7,-6],[16,-34],[12,-39],[1,-39],[-3,-26],[3,-20],[2,-34],[10,-16],[11,-51],[-1,-19],[-19,-4],[-27,43],[-32,45],[-4,30],[-16,38],[-4,48],[-10,31],[3,42],[-6,25]],[[7779,5555],[-11,22],[-4,28],[-15,33],[-14,27],[-4,-34],[-5,32],[3,36],[8,55]],[[7737,5754],[-3,43],[9,44],[-10,34],[3,63],[-12,30],[-9,69],[-5,73],[-12,47],[-18,-29],[-32,-41],[-15,5],[-17,14],[9,71],[-6,54],[-21,67],[3,20],[-16,8],[-20,47]],[[7565,6373],[-8,30],[-2,29],[-5,28],[-11,33],[-26,3],[3,-24],[-9,-32],[-12,12],[-4,-11],[-8,6],[-11,5]],[[7472,6452],[-4,-21],[-19,1],[-34,-12],[2,-43],[-15,-34],[-40,-39],[-31,-68],[-21,-36],[-28,-38],[0,-26],[-14,-14],[-25,-21],[-13,-3],[-8,-44],[6,-75],[1,-48],[-11,-54],[0,-98],[-15,-3],[-13,-44],[9,-19],[-25,-16],[-10,-39],[-11,-17],[-26,54],[-13,80],[-11,59],[-9,27],[-15,55],[-7,72],[-5,36],[-25,79],[-12,112]],[[7030,6215],[-8,74],[0,69]],[[7022,6358],[-5,54],[-41,-34],[-19,7],[-37,69],[14,21],[-8,23],[-33,49]],[[6893,6547],[-20,14],[-9,42],[-21,44],[-51,-11],[-45,-1],[-40,-8]],[[6707,6627],[-52,17],[-30,13],[-31,8],[-12,70],[-13,10],[-22,-10],[-28,-28],[-34,19],[-28,45],[-27,16],[-18,55],[-21,76],[-15,-9],[-17,19],[-11,-22]],[[6348,6906],[-16,2]],[[6332,6908],[6,-25],[-3,-13],[9,-44]],[[6344,6826],[11,-49],[14,-13],[5,-21],[18,-24],[2,-24],[-3,-19],[4,-19],[8,-16],[4,-19],[4,-14]],[[6411,6608],[-2,42],[7,30],[8,6],[8,-18],[1,-34],[-6,-33]],[[6427,6601],[5,-22]],[[6432,6579],[5,2],[1,-15],[22,9],[23,-2],[17,-2],[19,39],[20,37],[18,36]],[[6557,6683],[8,19],[3,-5],[-2,-23],[-4,-11]],[[6562,6663],[4,-45]],[[6566,6618],[12,-40],[16,-21],[20,-7],[17,-11],[12,-33],[8,-19],[10,-7],[0,-13],[-10,-34],[-5,-16],[-12,-19],[-10,-39],[-13,3],[-5,-14],[-5,-29],[4,-39],[-3,-7],[-13,1],[-17,-22],[-3,-28],[-6,-12],[-18,0],[-10,-14],[0,-24],[-14,-16],[-15,6],[-19,-20],[-12,-3]],[[6475,6141],[-21,-15],[-5,-26],[-1,-19],[-27,-25],[-45,-27],[-24,-40],[-13,-3],[-8,3],[-16,-24],[-18,-11],[-23,-3],[-7,-3],[-6,-15],[-8,-5],[-4,-14],[-14,1],[-9,-8],[-19,3],[-7,34],[1,31],[-5,17],[-5,43],[-8,23],[5,3],[-2,27],[3,11],[-1,25]],[[6188,6124],[-4,24],[-8,18],[-2,23],[-15,20],[-15,49],[-7,47],[-20,39],[-12,10],[-18,54],[-4,41],[2,34],[-16,64],[-13,22],[-15,12],[-10,33],[2,13],[-8,30],[-8,13],[-11,42],[-17,47],[-14,39],[-14,0],[5,32],[1,20],[3,23]],[[5970,6873],[-1,8]],[[5969,6881],[-7,-23],[-6,-43],[-8,-30],[-6,-11],[-10,19],[-12,26],[-20,82],[-3,-5],[12,-61],[17,-58],[21,-89],[10,-31],[9,-33],[25,-64],[-6,-10],[1,-37],[33,-52],[4,-12]],[[6023,6449],[9,-56],[-6,-11],[4,-59],[11,-69],[10,-14],[15,-21]],[[6066,6219],[16,-67],[8,-53],[15,-28],[38,-54],[16,-33],[15,-33],[8,-20],[14,-17]],[[6196,5914],[7,-18],[-1,-24],[-16,-14],[12,-16]],[[6198,5842],[9,-10],[5,-24],[13,-24],[14,0],[26,14],[30,7],[24,18],[14,4],[10,10],[16,2]],[[6359,5839],[9,2],[13,8],[14,6],[14,20],[10,0],[1,-16],[-3,-34],[0,-30],[-6,-21],[-7,-62],[-14,-64],[-17,-74],[-24,-84],[-24,-65],[-32,-78],[-28,-47],[-42,-57],[-25,-44],[-31,-70],[-6,-30],[-7,-14]],[[6154,5085],[-19,-22],[-7,-25],[-10,-4],[-4,-40],[-9,-24],[-6,-38],[-11,-19]],[[6088,4913],[-13,-71],[2,-32],[18,-21],[1,-15],[-8,-35],[2,-18],[-2,-27],[10,-36],[11,-57],[10,-13]],[[6119,4588],[5,-26],[-1,-57],[3,-50],[1,-90],[5,-29],[-8,-41],[-11,-40],[-18,-35],[-25,-22],[-31,-28],[-32,-62],[-11,-11],[-19,-40],[-11,-14],[-3,-41],[13,-43],[6,-34],[0,-17],[5,2],[-1,-56],[-4,-27],[6,-10],[-4,-24],[-11,-20],[-23,-20],[-34,-31],[-12,-21],[3,-24],[7,-4],[-3,-31]],[[5911,3642],[-7,-41],[-3,-48],[-7,-26],[-19,-29],[-6,-9],[-11,-29],[-8,-30],[-16,-41],[-31,-59],[-20,-35],[-21,-26],[-29,-22],[-14,-3],[-4,-16],[-16,8],[-14,-11],[-30,11],[-17,-7],[-12,3],[-28,-22],[-24,-9],[-17,-22],[-13,-2],[-11,21],[-10,1],[-12,26],[-1,-8],[-4,15],[0,34],[-9,39],[9,10],[0,44],[-19,54],[-14,49],[-20,75]],[[5453,3537],[-20,43],[-11,42],[-6,56],[-7,42],[-9,89],[-1,69],[-4,31],[-10,24],[-15,48],[-14,69],[-6,36],[-23,56],[-2,44]],[[5325,4186],[-2,36],[4,51],[9,53],[2,24],[9,52],[6,24],[16,38],[9,25],[3,43],[-1,32],[-9,21],[-7,35],[-7,35],[2,11],[8,23],[-8,56],[-6,39],[-14,36],[3,11]],[[5342,4831],[-4,18]],[[5338,4849],[-8,43]],[[5330,4892],[-22,61]],[[5308,4953],[-29,58],[-18,48],[-17,59],[1,20],[6,18],[7,42],[5,43]],[[5263,5241],[-5,8],[9,65]],[[5267,5314],[5,45],[-11,38],[-13,10],[-6,26],[-7,8],[1,16]],[[5236,5457],[-29,-20],[-11,3],[-10,-13],[-23,1],[-15,36],[-9,42],[-19,38],[-21,-1],[-25,0]],[[5074,5543],[-23,-7]],[[5051,5536],[-22,-12]],[[5029,5524],[-44,-34],[-15,-20],[-25,-16],[-25,16]],[[4920,5470],[-13,-1],[-19,12],[-18,-1],[-33,-10],[-19,-17],[-27,-21],[-6,2]],[[4785,5434],[-7,-1],[-29,28],[-25,44],[-24,31],[-18,37]],[[4682,5573],[-8,4],[-20,24],[-14,30],[-5,21],[-4,43]],[[4631,5695],[-12,34],[-10,23],[-8,7],[-7,12],[-3,25],[-4,13],[-8,9]],[[4579,5818],[-15,24],[-11,4],[-7,16],[0,9],[-8,12],[-2,13]],[[4536,5896],[-4,44]],[[4532,5940],[3,25]],[[4535,5965],[-11,45],[-14,21],[12,11],[14,40],[6,30]],[[4542,6112],[-2,31],[7,28],[4,54],[-3,57],[-3,29],[2,28],[-7,28],[-15,25]],[[4525,6392],[2,24]],[[4527,6416],[1,27],[11,15],[9,30],[-2,20],[9,41],[16,36],[9,9],[8,34],[0,31],[10,35],[19,21],[17,59]],[[4634,6774],[15,23]],[[4649,6797],[26,6],[22,40],[14,15],[23,48],[-7,72],[10,49],[4,31],[18,38],[28,27],[20,24],[19,59],[9,36],[20,-1],[17,-24],[26,4],[29,-13],[12,0]],[[4939,7208],[27,31],[30,10],[17,24],[27,17],[47,11],[46,4],[14,-8],[26,22],[30,1],[11,-14],[19,4]],[[5233,7310],[31,23],[19,-7],[-1,-29],[24,21],[2,-11],[-14,-28],[0,-27],[9,-14],[-3,-50],[-19,-29],[6,-31],[14,-1],[7,-27],[11,-9]],[[5319,7091],[32,-20],[12,5],[23,-10],[37,-26],[13,-51],[25,-11],[39,-24],[30,-29],[13,15],[13,27],[-6,44],[9,28],[20,27],[19,8],[37,-12],[10,-26],[10,0],[9,-10],[28,-7],[6,-19]],[[5698,7000],[37,1],[27,-15],[28,-17],[12,-9],[22,18],[11,17],[25,4],[20,-7],[7,-28],[7,18],[22,-13],[21,-3],[14,14]],[[5951,6980],[8,19],[-2,3],[8,27],[5,44],[4,14],[1,1]],[[5975,7088],[10,47],[14,40],[0,2]],[[5999,7177],[-2,44],[7,24]],[[6004,7245],[-11,26],[11,22],[-17,-5],[-23,13],[-19,-33],[-43,-6],[-22,31],[-30,1],[-6,-23],[-20,-7],[-27,30],[-30,-1],[-16,58],[-21,32],[14,44],[-18,28],[31,55],[43,2],[12,44],[53,-8],[33,38],[32,16],[46,1],[49,-40],[40,-23],[32,9],[24,-5],[33,30]],[[6154,7574],[4,25],[-7,39],[-16,21],[-16,7],[-10,18]],[[6109,7684],[-35,48],[-32,22],[-24,34],[20,9],[23,48],[-15,23],[41,23],[-1,13],[-25,-9]],[[6061,7895],[-22,-5],[-19,-19],[-26,-3],[-23,-21],[1,-36],[14,-14],[28,4],[-5,-21],[-31,-10],[-37,-33],[-16,12],[6,27],[-30,16]],[[5901,7792],[5,12],[26,19]],[[5932,7823],[-8,13],[-43,14],[-2,22],[-26,-7],[-10,-32],[-21,-43]],[[5822,7790],[0,-14],[-13,-13],[-9,6],[-7,-70]],[[5793,7699],[-15,-24],[-10,-41],[9,-33]],[[5777,7601],[3,-22],[25,-18],[-5,-14],[-33,-4],[-12,-17],[-23,-31],[-9,26],[0,12]],[[5723,7533],[-17,2],[-14,5],[-34,-15],[19,-32],[-14,-9],[-15,0],[-15,29],[-5,-12],[6,-35],[14,-27],[-11,-13],[16,-26],[14,-17],[0,-32],[-26,15],[9,-29],[-18,-6],[11,-51],[-19,-1],[-23,25],[-10,46],[-5,38],[-11,27],[-14,33],[-2,16]],[[5559,7464],[-5,4],[0,13],[-15,19],[-3,28],[2,39],[4,18],[-4,9]],[[5538,7594],[-6,4],[-8,19],[-12,12]],[[5512,7629],[-26,21],[-16,21],[-26,17],[-23,42],[6,4],[-13,25],[-1,19],[-17,9],[-9,-25],[-8,19],[0,20],[1,1]],[[5380,7802],[7,6]],[[5387,7808],[-23,8],[-22,-20],[1,-29],[-3,-16],[9,-30],[26,-29],[14,-47],[31,-47],[22,1],[7,-13],[-8,-11],[25,-21],[20,-18],[24,-30],[3,-11],[-5,-20],[-16,27],[-24,9],[-12,-37],[20,-21],[-3,-30],[-11,-4],[-15,-49],[-12,-5],[0,18],[6,31],[6,12],[-11,34],[-8,29],[-12,7],[-8,25],[-18,10],[-12,23],[-21,4],[-21,26],[-26,37],[-19,34],[-8,57],[-14,6],[-23,19],[-12,-8],[-16,-26],[-12,-5]],[[5206,7698],[-25,-32],[-55,16],[-40,-19],[-4,-35]],[[5082,7628],[2,-33],[-26,-39],[-36,-12],[-3,-19],[-17,-32],[-10,-47],[11,-33],[-17,-26],[-6,-37],[-21,-11],[-19,-45],[-35,-1],[-27,1],[-17,-20],[-11,-22],[-14,5],[-10,20],[-8,33],[-26,9]],[[4792,7319],[-11,-15],[-14,8],[-15,-7],[5,46],[-3,35],[-13,5],[-6,22],[2,38],[11,21],[2,23],[6,35],[-1,24],[-5,21],[-2,19]],[[4748,7594],[2,41],[-11,25],[39,42],[34,-11],[37,1],[30,-10],[23,3],[45,-2]],[[4947,7683],[14,34],[5,115],[-28,60],[-21,30],[-42,22],[-3,42],[36,12],[47,-15],[-9,66],[26,-25],[65,45],[8,47],[24,12]],[[5069,8128],[23,11]],[[5092,8139],[14,16],[24,85],[38,24],[23,-2]],[[5191,8262],[6,12],[23,3],[5,-12],[19,28],[-6,22],[-2,32]],[[5236,8347],[-11,32],[-1,59],[5,16],[8,17],[24,4],[10,15],[22,17],[-1,-30],[-8,-19],[4,-16],[15,-9],[-7,-21],[-8,6],[-20,-41],[7,-28]],[[5275,8349],[1,-23],[28,-13],[-1,-21],[29,11],[15,16],[32,-23],[13,-18]],[[5392,8278],[19,17],[43,26],[35,20],[28,-10],[2,-14],[27,-1]],[[5546,8316],[6,26],[38,18]],[[5590,8360],[-6,49]],[[5584,8409],[1,43],[14,36],[26,20],[22,-43],[22,1],[6,44]],[[5675,8510],[3,34],[-10,-7],[-18,21],[-2,33],[35,16],[35,8],[30,-9],[29,1]],[[5777,8607],[31,32],[-29,27]],[[5779,8666],[-50,-4],[-49,-21],[-45,-12],[-16,31],[-27,19],[6,57],[-14,52],[14,33],[25,36],[63,63],[19,12],[-3,24],[-39,27]],[[5663,8983],[-47,-16],[-27,-40],[4,-36],[-44,-46],[-54,-49],[-20,-81],[20,-41],[26,-32],[-25,-65],[-29,-13],[-11,-97],[-15,-54],[-34,6],[-16,-46],[-32,-3],[-9,55],[-23,65],[-21,82]],[[5306,8572],[-19,35],[-55,-67],[-37,-13],[-38,29],[-10,62],[-9,133],[26,37],[73,48],[55,60],[51,80],[66,111],[47,43],[76,73],[61,25],[46,-3],[42,48],[51,-3],[50,11],[87,-42],[-36,-15],[30,-36]],[[5863,9188],[29,20],[46,-35],[76,-14],[105,-65],[21,-27],[2,-39],[-31,-30],[-45,-15],[-124,44],[-21,-8],[45,-42]],[[5966,8977],[4,-85]],[[5970,8892],[36,-18],[21,-15],[4,28]],[[6031,8887],[-17,26],[18,21]],[[6032,8934],[67,-36],[24,14],[-19,42],[65,56],[25,-3],[26,-20],[16,39],[-23,35],[14,34],[-21,36],[78,-19],[16,-32],[-35,-7],[0,-32],[22,-20],[43,13],[7,37],[58,27],[96,49],[21,-2],[-27,-35],[35,-6],[19,19],[52,2],[42,24],[31,-35],[32,38],[-29,34],[14,19],[82,-18],[39,-18],[100,-66],[19,30],[-28,31],[-1,12],[-34,6],[10,27],[-15,45],[-1,18],[51,53],[18,52],[21,11],[74,-15],[5,-32],[-26,-47],[17,-18],[9,-40],[-6,-79],[31,-35],[-12,-39],[-55,-82],[32,-8],[11,21],[31,14],[7,29],[24,27],[-16,33],[13,38],[-31,5],[-6,32],[22,58],[-36,47],[50,38],[-7,41],[14,2],[15,-32],[-11,-56],[29,-10],[-12,41],[46,23],[58,3],[51,-33],[-25,48],[-2,61],[48,12],[67,-3],[60,8],[-23,30],[33,38],[31,1],[54,29],[74,8],[9,15],[73,6],[23,-13],[62,30],[51,0],[8,24],[26,25],[66,24],[47,-19],[-37,-14],[63,-9],[7,-29],[25,14],[82,0],[62,-28],[23,-22],[-7,-30],[-31,-17],[-73,-32],[-21,-17],[34,-8],[42,-15],[25,11],[14,-37],[12,15],[44,9],[89,-9],[7,-27],[116,-9],[2,44],[59,-10],[44,1],[45,-31],[13,-37],[-17,-24],[35,-45],[44,-23],[27,60],[44,-26],[48,16],[53,-18],[21,16],[45,-8],[-20,53],[37,25],[251,-37],[23,-34],[73,-44],[112,11],[56,-10],[23,-24],[-4,-42],[35,-16],[37,12],[49,1],[52,-11],[53,6],[48,-51],[35,18],[-23,37],[13,26],[88,-16],[58,3],[80,-27],[-9960,-25]],[[6357,7389],[9,-42],[26,-12],[20,-29],[39,-10],[43,15],[3,13]],[[6497,7324],[-5,41],[4,60],[-22,20],[7,39],[-18,4],[6,48],[26,-14],[25,19],[-20,34],[-8,33],[-23,-15],[-3,-42],[-8,37]],[[6458,7588],[-2,15],[7,23]],[[6463,7626],[-5,21],[-32,19],[-13,52],[-15,14],[-1,19],[27,-5],[1,42],[23,9],[25,-8],[5,56],[-5,35],[-28,-2],[-24,14],[-32,-26],[-26,-12]],[[6363,7854],[-12,-34],[-27,-9],[-28,-60],[25,-54],[-2,-39],[30,-68]],[[6349,7590],[15,-30],[14,-41],[13,-3],[8,-15],[-23,-5],[-5,-45],[-4,-20],[-11,-13],[1,-29]],[[2380,9645],[-52,3],[-7,16],[56,0],[19,-11],[-3,-7],[-13,-1]],[[1887,9640],[-41,18],[23,19],[40,6],[39,-9],[-9,-18],[-52,-16]],[[5624,9642],[-49,13],[19,15],[-17,19],[58,11],[11,-22],[40,-13],[-62,-23]],[[1874,9697],[0,9],[29,17],[14,-3],[37,-11],[-34,-12],[-46,0]],[[2297,9665],[-23,14],[-12,21],[-2,24],[36,-2],[16,-4],[33,-20],[-7,-21],[-41,-12]],[[2231,9669],[-45,6],[-46,19],[-62,2],[27,17],[-34,14],[-2,22],[55,-8],[75,-21],[21,-27],[11,-24]],[[7761,9669],[51,76],[23,6],[21,-3],[70,-33],[-8,-23],[-157,-23]],[[5441,9603],[-59,35],[25,21],[-42,16],[-54,49],[-21,45],[75,21],[16,-20],[39,0],[11,20],[40,2],[35,-20],[92,-43],[-70,-23],[-15,-42],[-25,-11],[-13,-48],[-34,-2]],[[5639,9755],[-82,9],[-5,16],[-40,1],[-30,26],[86,17],[40,-14],[28,17],[70,-14],[55,-21],[-42,-31],[-80,-6]],[[6321,9790],[-30,13],[16,18],[-62,2],[54,11],[43,0],[5,-15],[16,14],[26,9],[42,-13],[-11,-8],[-38,-8],[-24,-4],[-4,-10],[-33,-9]],[[7715,9717],[-78,17],[-46,22],[-21,41],[-38,12],[72,39],[60,13],[54,-29],[64,-56],[-7,-51],[-60,-8]],[[2477,9686],[-57,8],[-30,23],[0,21],[22,15],[-50,0],[-31,19],[-18,26],[20,26],[19,17],[28,4],[-12,14],[65,2],[35,-30],[47,-13],[46,-10],[21,-38],[34,-19],[-38,-17],[-52,-44],[-49,-4]],[[2762,9569],[-73,16],[-81,-9],[-42,7],[-52,3],[-4,28],[52,13],[-14,41],[17,4],[74,-25],[-38,37],[-45,11],[23,23],[49,13],[8,20],[-39,23],[-12,30],[76,-3],[22,-6],[43,21],[-62,6],[-98,-3],[-49,19],[-23,24],[-32,17],[-6,19],[41,11],[32,2],[55,9],[41,22],[34,-3],[30,-16],[21,31],[37,9],[50,6],[85,3],[14,-6],[81,9],[60,-3],[60,-4],[74,-5],[60,-7],[51,-16],[-2,-15],[-67,-25],[-68,-12],[-25,-12],[61,0],[-66,-35],[-45,-16],[-48,-47],[-57,-10],[-18,-12],[-84,-6],[39,-7],[-20,-10],[23,-29],[-26,-20],[-43,-16],[-13,-22],[-39,-18],[4,-13],[47,3],[1,-14],[-74,-35]],[[3755,8640],[-41,47],[-55,0],[-27,31],[-19,57],[-48,71],[-14,38],[-4,51],[-38,54],[10,42],[-19,20],[28,68],[42,21],[11,24],[5,45],[-31,-20],[-15,-9],[-25,-8],[-34,19],[-2,39],[11,31],[25,0],[57,-15],[-48,37],[-25,19],[-27,-8],[-23,14],[31,54],[-17,22],[-22,39],[-34,61],[-35,23],[0,24],[-74,34],[-59,4],[-74,-3],[-68,-4],[-32,19],[-49,36],[73,18],[56,3],[-119,15],[-62,23],[3,23],[106,28],[101,27],[11,21],[-75,21],[24,23],[97,40],[40,6],[-12,26],[66,15],[85,9],[86,1],[30,-18],[74,32],[66,-22],[39,-5],[58,-18],[-66,31],[4,24],[93,35],[97,-3],[36,21],[98,6],[222,-7],[174,-46],[-52,-22],[-106,-3],[-150,-5],[14,-10],[99,6],[83,-20],[54,18],[23,-21],[-30,-34],[71,22],[134,22],[84,-11],[15,-25],[-113,-41],[-16,-13],[-88,-10],[64,-2],[-33,-42],[-22,-38],[1,-64],[33,-38],[-43,-2],[-46,-18],[52,-31],[6,-49],[-30,-5],[36,-49],[-61,-5],[32,-23],[-9,-20],[-39,-9],[-39,0],[35,-39],[0,-26],[-55,24],[-14,-16],[37,-14],[37,-35],[10,-47],[-49,-11],[-22,23],[-34,33],[10,-39],[-33,-31],[73,-2],[39,-3],[-75,-50],[-75,-46],[-81,-20],[-31,0],[-29,-22],[-38,-61],[-60,-40],[-19,-3],[-37,-14],[-40,-13],[-24,-36],[-1,-40],[-14,-38],[-45,-46],[11,-45],[-12,-48],[-14,-56],[-40,-3]],[[6847,7334],[15,0],[21,-13]],[[6883,7321],[9,-7],[20,19],[9,-11],[9,26],[17,-1],[4,8],[3,24],[12,20],[15,-14],[-3,-17],[9,-3],[-3,-48],[11,-19],[10,12],[12,6],[17,26],[19,-5],[29,0]],[[7082,7337],[5,-16]],[[7087,7321],[-16,-7],[-14,-10],[-32,-7],[-30,-12],[-16,-25],[6,-25],[3,-28],[-13,-25],[1,-22],[-8,-20],[-26,1],[11,-38],[-18,-14],[-12,-35],[2,-35],[-11,-16],[-10,6],[-22,-8],[-3,-16],[-20,0],[-16,-33],[-1,-49],[-36,-24],[-19,6],[-6,-13],[-16,7],[-28,-8],[-47,29]],[[6690,6900],[25,52],[-2,37],[-21,10],[-2,37],[-9,46],[12,31],[-12,9],[7,42],[12,71]],[[6700,7235],[28,-22],[21,8],[6,26],[22,9],[15,17],[6,46],[23,12],[4,20],[14,-15],[8,-2]],[[5664,4553],[3,-18],[-4,-28],[5,-27],[-4,-21],[2,-20],[-57,1],[-2,-184],[19,-47],[18,-36]],[[5644,4173],[-51,-23],[-67,8],[-19,28],[-113,-3],[-4,-4],[-17,26],[-18,2],[-16,-10],[-14,-11]],[[5342,4831],[11,8],[8,-1],[10,7],[82,-1],[7,-43],[8,-34],[6,-19],[11,-30],[18,4],[9,9],[16,-9],[4,15],[7,33],[17,3],[1,10],[15,0],[-3,-21],[34,1],[0,-37],[6,-22],[-4,-35],[2,-35],[9,-21],[-1,-69],[7,5],[12,-1],[17,9],[13,-4]],[[5330,4892],[12,25],[8,10],[10,-20]],[[5360,4907],[-10,-12],[-4,-15],[-1,-25],[-7,-6]],[[5583,7534],[0,-15],[-9,-8],[-2,-19],[-13,-28]],[[5538,7594],[-2,18],[12,29],[1,-11],[8,5]],[[5557,7635],[6,-16],[6,-6],[2,-20]],[[5571,7593],[-3,-20],[4,-25],[11,-14]],[[6557,6683],[5,-20]],[[6566,6618],[-14,-1],[-3,-37],[5,-8],[-12,-11],[0,-24],[-8,-24],[-1,-23]],[[6533,6490],[-6,-12],[-83,29],[-11,58],[-1,14]],[[3140,2021],[-17,2],[-30,0],[0,129]],[[3258,3901],[51,-94],[23,-8],[34,-43],[29,-23],[4,-25],[-28,-87],[28,-16],[31,-9],[22,9],[26,44],[4,51]],[[3482,3700],[14,11],[14,-33],[-1,-46],[-23,-32],[-19,-23],[-31,-56],[-37,-79]],[[3399,3442],[-7,-46],[-8,-59],[1,-57],[-6,-13],[-2,-37]],[[3095,2171],[-26,9],[-67,8],[-11,33],[0,43],[-18,-3],[-10,20],[-3,61],[22,26],[8,36],[-3,29],[15,50],[10,76],[-3,34],[12,11],[-3,21],[-13,12],[10,24],[-13,22],[-6,66],[11,12],[-5,70],[7,59],[7,52],[17,20],[-9,57],[0,53],[21,37],[-1,48],[16,56],[0,53],[-7,11],[-13,99],[17,60],[-2,55],[10,53],[18,54],[20,35],[-9,23],[6,19],[-1,96],[30,28],[10,60],[-3,14]],[[3136,3873],[23,52],[36,-14],[16,-41],[11,46],[32,-2],[4,-13]],[[6291,7415],[-10,-2]],[[6281,7413],[-11,34],[0,8],[-12,0],[-9,16],[-5,-2]],[[6244,7469],[-11,17],[-21,14],[3,28],[-5,21]],[[6210,7549],[39,9]],[[6249,7558],[5,-15],[11,-10],[-6,-15],[15,-20],[-8,-18],[12,-16],[13,-9],[0,-40]],[[79,321],[30,19]],[[109,340],[3,-1],[4,0]],[[5450,7880],[-6,-9],[-24,-2],[-14,-13],[-23,5]],[[5383,7861],[-40,14],[-6,20],[-27,-10],[-4,-11],[-16,9]],[[5290,7883],[-15,1],[-12,11],[4,14],[-1,10]],[[5266,7919],[8,3],[14,-16],[4,15],[25,-2],[20,10],[13,-2],[9,-11],[2,9],[-4,38],[10,7],[10,27]],[[5377,7997],[21,-19],[15,24],[10,4],[22,-17],[13,3],[13,-11]],[[5471,7981],[-3,-8],[3,-20]],[[5471,7953],[-2,-23],[-16,0],[6,-13],[-9,-37]],[[6281,7413],[-19,8],[-14,27],[-4,21]],[[6357,7389],[-7,-3],[-17,30],[10,29],[-9,17],[-10,-5],[-33,-42]],[[6249,7558],[6,9],[21,-17],[15,-3],[4,7],[-14,31],[7,8]],[[6288,7593],[8,-2],[19,-35],[13,-4],[4,15],[17,23]],[[5806,5019],[16,-5],[9,33],[15,-4]],[[5846,5043],[1,-22],[6,-13],[1,-19],[-7,-12],[-11,-30],[-10,-21],[-12,-3]],[[5814,4923],[-1,70],[-7,26]],[[5170,8108],[-3,-39]],[[5167,8069],[-7,-2],[-3,-33]],[[5157,8034],[-24,27],[-14,-5],[-20,27],[-13,23],[-13,1],[-4,21]],[[5092,8139],[20,-4],[26,11],[17,-25],[15,-13]],[[5024,5816],[10,6],[6,25],[13,6],[6,17]],[[5059,5870],[10,17],[10,0],[21,-33]],[[5100,5854],[-1,-19],[6,-34],[-6,-24],[3,-15],[-13,-36],[-9,-17],[-5,-37],[1,-36],[-2,-93]],[[5051,5536],[-7,40],[2,132],[-6,12],[-1,28],[-10,20],[-8,17],[3,31]],[[4849,5780],[-2,33],[8,24],[-1,20],[22,48],[5,39],[7,14],[14,-8],[11,12],[4,15],[22,26],[5,18],[26,24],[15,8],[7,-11],[18,0]],[[5010,6042],[-2,-28],[3,-26],[16,-38],[1,-28],[32,-13],[-1,-39]],[[5024,5816],[-24,1]],[[5000,5817],[-13,4],[-9,-9],[-12,4],[-48,-2],[-1,-33],[4,-43]],[[4921,5738],[-19,14],[-13,-2],[-10,-14],[-12,12],[-5,19],[-13,13]],[[7472,6452],[-4,48],[-10,43],[5,35],[-17,15],[6,21],[18,22],[-21,30],[10,39],[22,-25],[14,-2],[2,-40],[26,-8],[26,1],[16,-10],[-13,-49],[-12,-3],[-9,-33],[16,-30],[4,37],[8,0],[14,-91]],[[7573,6452],[0,-42],[-10,9],[2,-46]],[[5777,7601],[-24,8],[-28,-18]],[[5725,7591],[0,-29],[-26,-5],[-19,20],[-23,-16],[-20,2]],[[5637,7563],[-2,38],[-14,18]],[[5621,7619],[5,9],[-3,6],[4,19],[11,18],[-14,25],[-2,21],[7,13]],[[5629,7730],[8,-24],[10,4],[22,-9],[41,-3],[13,15],[33,13],[20,-21],[17,-6]],[[5533,7689],[-5,-6],[-9,-13],[-4,-32]],[[5515,7638],[-25,22],[-10,24],[-11,13],[-12,21],[-6,18],[-14,27],[6,24],[10,-13],[6,12],[13,1],[24,-10],[19,1],[12,-12]],[[5527,7766],[10,0],[-7,-26],[14,-22],[-4,-27],[-7,-2]],[[5735,8385],[17,10],[30,22]],[[5782,8417],[29,-15],[4,-14],[15,7],[27,-14],[3,-27],[-6,-15],[17,-38],[11,-11],[-1,-10],[18,-10],[8,-15],[-10,-13],[-23,2],[-5,-5],[6,-20],[7,-36]],[[5882,8183],[-24,-4],[-8,-12],[-2,-29],[-11,5],[-25,-3],[-7,14],[-11,-10],[-10,8],[-22,1],[-31,14],[-28,5],[-22,-2],[-15,-15],[-13,-3]],[[5653,8152],[-1,26],[-8,27],[16,12],[1,22],[-8,22],[-1,26]],[[5652,8287],[27,-1],[30,22],[6,33],[23,18],[-3,26]],[[2529,6097],[-8,0],[2,65],[0,46]],[[2523,6208],[0,8],[4,3],[5,-7],[10,35],[5,1]],[[3136,3873],[-20,-8],[-11,80],[-15,64],[8,56],[-14,24],[-4,42],[-13,39]],[[3067,4170],[17,62],[-12,49],[7,19],[-5,21],[10,29],[1,49],[1,41],[6,19],[-24,93]],[[3068,4552],[21,-5],[14,1],[6,18],[25,23],[14,22],[37,9],[-3,-43],[3,-22],[-2,-39],[30,-51],[31,-10],[11,-21],[19,-12],[11,-16],[18,0],[16,-17],[1,-33],[6,-17],[0,-25],[-8,-1],[11,-67],[53,-2],[-4,-33],[3,-23],[15,-16],[6,-36],[-5,-45],[-7,-26],[3,-33],[-9,-11]],[[3384,4021],[-1,17],[-26,30],[-25,1],[-49,-17],[-13,-51],[-1,-31],[-11,-69]],[[3482,3700],[6,33],[3,35],[0,31],[-10,11],[-10,-10],[-10,3],[-4,22],[-2,53],[-5,17],[-19,16],[-11,-12],[-30,11],[2,79],[-8,32]],[[3068,4552],[-15,-10],[-13,6],[2,88],[-23,-34],[-24,1],[-11,31],[-18,4],[5,24],[-15,35],[-12,52],[8,11],[0,24],[17,17],[-3,31],[7,20],[2,27],[32,39],[22,11],[4,9],[25,-3]],[[3058,4935],[13,158],[0,25],[-4,33],[-12,21],[0,42],[15,9],[6,-6],[1,22],[-16,6],[-1,36],[54,-1],[10,20],[7,-19],[6,-33],[5,7]],[[3142,5255],[15,-31],[22,4],[5,18],[21,13],[11,9],[4,25],[19,16],[-1,12],[-24,5],[-3,36],[1,39],[-13,15],[5,5],[21,-7],[22,-14],[8,13],[20,9],[31,22],[10,22],[-3,16]],[[3313,5482],[14,2],[6,-13],[-3,-25],[9,-9],[7,-27],[-8,-20],[-4,-49],[7,-29],[2,-27],[17,-27],[13,-3],[4,12],[8,2],[13,10],[9,16],[15,-5],[7,2]],[[3429,5292],[15,-5],[3,12],[-5,11],[3,17],[11,-5],[13,6],[16,-12]],[[3485,5316],[12,-12],[9,15],[6,-2],[4,-16],[13,4],[11,22],[8,42],[17,53]],[[3517,3238],[-8,33],[13,27],[-17,39],[-21,32],[-29,37],[-10,-2],[-28,45],[-18,-7]],[[8206,5496],[-1,-28],[-2,-37],[-13,2],[-6,-20],[-13,30]],[[7466,6754],[19,43],[15,15],[20,-14],[14,-1],[12,-15]],[[7546,6782],[12,-19],[-2,-35],[-23,-2],[-23,4],[-18,-9],[-25,22],[-1,11]],[[5817,3910],[-39,-42],[-25,-43],[-10,-38],[-8,-22],[-15,-5],[-5,-27],[-3,-18],[-18,-14],[-22,3],[-13,16],[-12,7],[-14,-13],[-6,-28],[-14,-17],[-13,-26],[-20,-5],[-7,20],[3,35],[-16,55],[-8,8]],[[5552,3756],[0,168],[27,2],[1,205],[21,2],[43,20],[10,-23],[18,22],[8,0],[16,13]],[[5696,4165],[5,-4]],[[5701,4161],[11,-46],[5,-10],[9,-34],[32,-63],[11,-6],[1,-20],[8,-37],[21,-9],[18,-26]],[[5634,5824],[4,-25],[16,-36],[0,-23],[-5,-24],[2,-18],[10,-17]],[[5661,5681],[21,-25]],[[5682,5656],[15,-23],[0,-19],[19,-30],[11,-25],[8,-34],[20,-23],[5,-18]],[[5760,5484],[-9,-6],[-18,1],[-21,6],[-10,-5],[-5,-14],[-9,-2],[-11,13],[-31,-29],[-12,6],[-4,-5],[-8,-35],[-21,12],[-20,5],[-18,22],[-23,19],[-15,-18],[-10,-30],[-3,-40]],[[5512,5384],[-18,3],[-19,10],[-16,-30],[-15,-54]],[[5444,5313],[-3,17],[-1,26],[-13,19],[-10,29],[-2,21],[-13,30],[2,17],[-3,24],[2,45],[7,10],[14,59]],[[5424,5610],[23,4],[5,15],[5,-1],[7,-13],[34,22],[12,22],[15,20],[-3,21],[8,5],[27,-4],[26,27],[20,63],[14,23],[17,10]],[[3245,7816],[46,8],[28,65]],[[3135,7782],[-18,32],[0,79],[-13,16],[-18,-10],[-10,16],[-21,-44],[-8,-45],[-10,-26],[-12,-9],[-9,-3],[-3,-14],[-51,0],[-42,0],[-13,-11],[-29,-41],[-3,-5],[-9,-22],[-26,0],[-27,0],[-13,-10],[5,-11],[2,-17],[0,-6],[-36,-29],[-29,-9],[-32,-31],[-7,0],[-10,9],[-3,9],[1,6]],[[2691,7606],[6,20],[13,31],[8,34],[-5,50],[-6,53],[-29,27],[3,10],[-4,7],[-8,0],[-5,9],[-2,14],[-5,-6]],[[2657,7855],[-7,2]],[[2650,7857],[1,5],[-6,6],[-3,15],[-22,18],[-22,20],[-27,22],[-26,21],[-25,-16],[-9,-1]],[[2511,7947],[-34,15],[-23,-8],[-27,18],[-28,9],[-20,4],[-8,10],[-5,31],[-10,0],[0,-22],[-57,0],[-95,0],[-94,0],[-84,0],[-83,0],[-82,0],[-85,0],[-27,0],[-83,0],[-78,0]],[[1374,8338],[15,28],[-1,36],[-47,37],[-28,66],[-18,41],[-25,26],[-19,23],[-14,30],[-28,-18],[-27,-33],[-25,38],[-19,25],[-27,16],[-28,2],[0,328],[1,214]],[[1972,9143],[-70,-9],[-50,-5]],[[1502,9321],[12,24],[19,42]],[[1654,9318],[0,-25],[-73,-28]],[[5290,7883],[-3,-24],[-12,-10],[-20,8],[-6,-24],[-14,-2],[-5,10],[-15,-20],[-14,-3],[-11,13]],[[5190,7831],[-10,25],[-13,-9],[0,26],[20,32],[0,15],[12,-5],[8,10]],[[5207,7925],[23,-1],[6,13],[30,-18]],[[3107,1980],[-14,2],[-16,5]],[[3045,4126],[14,15],[8,29]],[[8628,7624],[-18,34],[-11,-33],[-43,-24],[4,-31],[-24,2],[-13,18],[-19,-40],[-30,-31],[-23,-37]],[[8014,6433],[-13,-10]],[[8001,6423],[-28,15],[-14,24],[5,33],[-26,11],[-13,21],[-24,-31],[-27,-6],[-22,0],[-15,-14]],[[7837,6476],[-14,-8],[4,-66],[-15,1],[-2,14]],[[7810,6417],[-1,24],[-21,-17],[-11,10],[-21,22],[8,48],[-18,11],[-6,53],[-30,-9],[4,68],[26,48],[1,47],[-1,44],[-12,14],[-9,34],[-16,-4]],[[7703,6810],[-30,8],[9,25],[-13,35],[-20,-24],[-23,14],[-32,-36],[-25,-43],[-23,-7]],[[7466,6754],[-2,46],[-17,-12]],[[7447,6788],[-32,5],[-32,13],[-22,26],[-22,11],[-9,28],[-16,8],[-28,38],[-22,17],[-12,-14]],[[7252,6920],[-38,41],[-28,36],[-7,64],[20,-8],[0,29],[-11,30],[3,47],[-30,67]],[[7161,7226],[-45,24],[-9,44],[-20,27]],[[7082,7337],[-4,33],[1,22],[-17,14],[-9,-6],[-7,53]],[[7046,7453],[8,13],[-4,14],[26,27],[20,11],[29,-8],[10,37],[36,7],[10,23],[44,31],[4,13]],[[7229,7621],[-3,33],[20,15],[-25,100],[55,23],[14,13],[20,103],[55,-19],[15,26],[2,58],[23,5],[21,38]],[[7426,8016],[11,5]],[[7437,8021],[7,-40],[23,-31],[40,-21],[19,-47],[-11,-67],[10,-25],[33,-10],[38,-8],[33,-36],[18,-6],[12,-53],[17,-34],[30,1],[58,-13],[36,8],[28,-8],[41,-35],[34,0],[12,-18],[32,31],[45,20],[42,2],[32,20],[20,31],[19,19],[-4,19],[-9,22],[15,37],[15,-5],[29,-11],[28,30],[42,22],[20,39],[20,16],[40,8],[22,-7],[3,21],[-25,40],[-22,18],[-22,-21],[-27,9],[-16,-7],[-7,23],[20,58],[13,43]],[[8240,8055],[34,-22],[39,37],[-1,25],[26,61],[15,19],[0,31],[-16,14],[23,29],[35,10],[37,2],[41,-17],[25,-22],[17,-58],[10,-24],[10,-36],[10,-56],[48,-19],[33,-41],[12,-54],[42,0],[24,23],[46,17],[-15,-52],[-11,-21],[-9,-63],[-19,-56],[-33,10],[-24,-20],[7,-49],[-4,-69],[-14,-1],[0,-29]],[[4785,5434],[2,47],[3,7],[-1,23],[-12,24],[-8,4],[-9,16],[7,25],[-3,28],[1,17]],[[4765,5625],[4,0],[2,25],[-2,11],[3,8],[10,7],[-7,46],[-6,24],[2,20],[5,4]],[[4776,5770],[4,5],[8,-8],[21,-1],[5,17],[5,-1],[8,6],[4,-24],[7,7],[11,9]],[[4921,5738],[7,-82],[-11,-49],[-8,-65],[12,-49],[-1,-23]],[[5313,5313],[-46,1]],[[5236,5457],[7,41],[13,56],[8,0],[17,34],[10,1],[16,-24],[19,19],[2,24],[7,24],[4,29],[15,23],[5,41],[6,13],[4,29],[7,37],[24,45],[1,19],[3,10],[-11,23]],[[5393,5901],[1,19],[8,3]],[[5402,5923],[11,-37],[2,-38],[-1,-38],[15,-53],[-15,1],[-8,-4],[-13,5],[-6,-27],[16,-33],[13,-10],[3,-24],[9,-40],[-4,-15]],[[5444,5313],[-2,-31],[-22,14],[-22,15],[-35,2]],[[5363,5313],[-4,3],[-16,-7],[-17,7],[-13,-3]],[[5821,5105],[-8,-16],[-1,-34],[-4,-5],[-2,-31]],[[5814,4923],[5,-53],[-2,-30],[5,-33],[16,-32],[15,-73]],[[5853,4702],[-11,6],[-37,-10],[-7,-7],[-8,-36],[6,-26],[-5,-68],[-4,-58],[8,-10],[19,-22],[8,10],[2,-62],[-21,1],[-11,31],[-11,25],[-21,8],[-6,30],[-17,-18],[-22,8],[-10,26],[-17,5],[-13,-1],[-2,18],[-9,1]],[[5360,4907],[8,-6],[9,22],[15,0],[2,-17],[11,-10],[16,36],[16,28],[7,19],[-1,47],[12,56],[13,30],[18,28],[3,18],[1,21],[5,20],[-2,33],[4,51],[5,36],[8,30],[2,35]],[[5760,5484],[17,-48],[12,-7],[7,10],[13,-4],[16,12],[6,-24],[25,-38]],[[5856,5385],[-2,-68],[11,-8],[-9,-20],[-10,-15],[-11,-30],[-6,-27],[-1,-46],[-7,-22],[0,-44]],[[5308,4953],[21,32],[-11,38],[10,15],[19,7],[2,25],[15,-27],[24,-3],[9,27],[3,39],[-3,45],[-13,34],[12,66],[-7,12],[-21,-5],[-7,30],[2,25]],[[2836,5598],[4,28],[9,-4],[5,17],[-6,34],[3,9]],[[3018,5861],[-18,-10],[-7,-29],[-10,-16],[-8,-22],[-4,-41],[-8,-34],[15,-3],[3,-27],[6,-13],[3,-23],[-4,-21],[1,-12],[7,-5],[7,-20],[35,6],[17,-8],[19,-49],[11,6],[20,-3],[16,6],[10,-10],[-5,-31],[-6,-19],[-2,-41],[5,-38],[8,-18],[1,-12],[-14,-29],[10,-13],[8,-20],[8,-57]],[[3058,4935],[-14,31],[-8,1],[18,58],[-21,27],[-17,-4],[-10,9],[-15,-15],[-21,7],[-16,61],[-13,15],[-9,27],[-19,27],[-7,-5]],[[2906,5174],[-12,13],[-14,19],[-7,-9],[-24,8],[-7,25],[-5,-1],[-28,33]],[[2619,5821],[4,7],[18,-15],[7,8],[8,-5],[5,-12],[8,-4],[7,12]],[[2707,5733],[-11,-5],[0,-23],[6,-9],[-4,-6],[1,-11],[-2,-12],[-2,-11]],[[5943,7201],[-3,2],[-5,-4],[-4,1],[-2,-2],[0,6],[-2,3],[-6,1],[-7,-5],[-5,3]],[[5377,7997],[-16,25],[-14,13],[-3,25],[-5,17],[21,12],[10,15],[20,11],[7,11],[7,-7],[13,6]],[[5417,8125],[13,-18],[21,-5],[-2,-16],[15,-12],[4,15],[19,-7],[3,-18],[20,-3],[13,-28]],[[5523,8033],[-8,-1],[-4,-10],[-7,-2],[-2,-14],[-5,-2],[-1,-6],[-9,-6],[-12,1],[-4,-12]],[[5207,7925],[3,41],[14,39],[-40,11],[-13,15]],[[5171,8031],[2,25],[-6,13]],[[5170,8108],[-4,60],[16,0],[8,22],[6,53],[-5,19]],[[5236,8347],[21,-7],[18,9]],[[5392,8278],[6,-29],[-8,-16],[10,-20],[7,-31],[-2,-20],[12,-37]],[[6198,5842],[-10,-30]],[[6188,5812],[-7,10],[-6,-4],[-16,1],[0,17],[-2,16],[9,27],[10,26]],[[6176,5905],[12,-5],[8,14]],[[3008,6222],[0,15],[-7,17],[7,10],[2,22],[-2,32]],[[5118,6285],[-31,-5],[0,36],[-13,10],[-17,16],[-7,27],[-94,126],[-93,126]],[[4863,6621],[-105,139]],[[4758,6760],[1,11],[0,4]],[[4759,6775],[0,68],[44,43],[28,8],[23,16],[10,29],[33,23],[1,42],[16,5],[13,21],[36,10],[5,23],[-7,12],[-10,61],[-1,35],[-11,37]],[[5233,7310],[-5,-30],[4,-55],[-6,-47],[-18,-32],[3,-44],[23,-34],[0,-14],[17,-23],[12,-103]],[[5263,6928],[9,-51],[1,-27],[-5,-47],[2,-26],[-3,-32],[2,-36],[-11,-24],[17,-42],[1,-25],[10,-32],[13,11],[22,-27],[12,-36]],[[5333,6534],[-95,-110],[-81,-113],[-39,-26]],[[2906,5174],[4,-44],[-9,-37],[-30,-61],[-33,-23],[-18,-50],[-5,-38],[-15,-24],[-12,29],[-11,6],[-12,-4],[-1,21],[8,13],[-3,24]],[[6023,6449],[-110,0],[-108,0],[-111,0]],[[5694,6449],[0,212],[0,205],[-9,46],[8,36],[-5,25],[10,27]],[[5951,6980],[18,-99]],[[6011,6013],[-3,23],[12,85],[3,38],[9,17],[20,10],[14,33]],[[6176,5905],[-10,18],[-11,34],[-12,19],[-8,19],[-24,23],[-19,1],[-7,12],[-16,-13],[-17,26],[-8,-43],[-33,12]],[[4947,7683],[11,-23],[51,-26],[10,13],[31,-26],[32,7]],[[4792,7319],[-2,19],[10,21],[4,16],[-9,17],[7,38],[-11,34],[12,5],[1,27],[5,9],[0,45],[13,15],[-8,29],[-16,2],[-5,-7],[-16,0],[-7,28],[-11,-8],[-11,-15]],[[5777,8607],[4,-10],[-20,-33],[8,-54],[-12,-18]],[[5757,8492],[-23,0],[-23,21],[-13,8],[-23,-11]],[[6188,5812],[-6,-21],[10,-32],[10,-27],[11,-21],[90,-68],[24,0]],[[6327,5643],[-79,-173],[-36,-2],[-25,-41],[-17,-1],[-8,-18]],[[6162,5408],[-19,0],[-11,20],[-26,-24],[-8,-24],[-18,4],[-6,7],[-7,-2],[-9,1],[-35,49],[-19,0],[-10,19],[0,32],[-14,10]],[[5980,5500],[-17,62],[-12,13],[-5,23],[-14,29],[-17,4],[9,32],[15,2],[4,17]],[[5943,5682],[0,52]],[[5943,5734],[8,60],[13,17],[3,23],[12,44],[17,29],[11,56],[4,50]],[[5663,8983],[-9,23],[-1,88],[-43,40],[-37,28]],[[5573,9162],[16,15],[31,-30],[37,2],[29,-14],[27,26],[14,42],[43,20],[35,-23],[-11,-41]],[[5794,9159],[-4,-40],[42,-38],[-26,-44],[33,-65],[-19,-50],[25,-42],[-11,-38],[41,-39],[-11,-30],[-25,-33],[-60,-74]],[[3485,5316],[7,24]],[[3492,5340],[2,26],[5,25]],[[3499,5391],[-11,34],[-2,39],[15,50]],[[5157,8034],[6,-5],[8,2]],[[5190,7831],[-2,-17],[9,-21],[-10,-18],[7,-44],[15,-8],[-3,-25]],[[5263,5241],[10,3],[40,-1],[0,70]],[[4827,8284],[-21,12],[-17,-1],[6,31],[-6,31]],[[4905,8144],[-1,0],[-43,9]],[[4918,8291],[-19,35],[0,1]],[[4942,8402],[2,-6],[24,-68]],[[6109,7684],[4,6],[23,-9],[41,-10],[38,-27],[5,-11],[16,9],[26,-12],[9,-24],[17,-13]],[[6210,7549],[-27,28],[-29,-3]],[[5000,5817],[-2,-18],[12,-30],[0,-42],[2,-45],[7,-21],[-6,-52],[2,-28],[8,-37],[6,-20]],[[4715,5666],[-7,-3],[0,21],[-5,15],[1,17],[-6,24],[-7,21],[-23,0],[-6,-11],[-8,-1],[-4,-13],[-4,-16],[-15,-25]],[[4579,5818],[13,28],[8,-1],[7,10],[6,0],[5,8],[-3,19],[3,6],[1,19]],[[4619,5907],[13,0],[20,-14],[6,1],[2,6],[16,-4],[4,3]],[[4680,5899],[1,-21],[5,0],[7,8],[4,-2],[8,-15],[12,-5],[8,13],[9,8],[6,8],[6,-2],[6,-13],[3,-15],[12,-25],[-6,-14],[-1,-19],[6,6],[3,-7],[-1,-17],[8,-17]],[[4765,5625],[-8,1],[-5,-23],[-8,1],[-6,12],[2,23],[-12,35],[-7,-6],[-6,-2]],[[4535,5965],[30,2],[7,14],[9,0],[10,-14],[9,0],[9,10],[6,-17],[-12,-13],[-12,1],[-12,12],[-10,-13],[-5,0],[-7,-9],[-25,2]],[[4536,5896],[15,9],[9,-2],[8,7],[51,-3]],[[5583,7534],[18,5],[11,13],[15,-1],[5,10],[5,2]],[[5725,7591],[13,-15],[-8,-36],[-7,-7]],[[2438,6020],[0,16],[4,14],[-4,11],[13,47],[36,0],[0,19],[-4,4],[-3,12],[-10,14],[-11,19],[13,0],[0,32],[26,1],[25,-1]],[[2549,6088],[-13,-22],[-13,-16],[-2,-11],[2,-11],[-5,-15]],[[2518,6013],[-7,-4],[2,-6],[-6,-7],[-9,-14],[-1,-9]],[[3412,5526],[-4,-51],[-17,-15],[1,-14],[-5,-30],[13,-42],[8,0],[4,-32],[17,-50]],[[3313,5482],[-19,44],[7,15],[0,27],[17,9],[7,11],[-10,21],[3,21],[22,34]],[[2561,5953],[2,23],[-4,6],[-6,5],[-12,-7],[-1,7],[-8,10],[-6,11],[-8,5]],[[2690,6046],[-9,1],[-4,-8],[-10,-7],[-7,0],[-6,-8],[-6,3],[-4,9],[-3,-2],[-4,-14],[-3,1],[0,-12],[-10,-16],[-5,-7],[-3,-7],[-8,12],[-6,-16],[-6,1],[-6,-2],[0,-28],[-4,0],[-3,-14],[-9,-2]],[[5515,7638],[-3,-9]],[[5380,7802],[20,-2],[5,10],[9,-9],[11,-1],[0,16],[10,6],[2,23],[23,15]],[[5460,7860],[8,-7],[21,-25],[23,-11],[10,9]],[[5522,7826],[7,-22],[9,-17],[-11,-21]],[[5471,7953],[14,-14],[10,-7],[24,8],[2,11],[11,2],[14,9],[3,-4],[13,7],[6,14],[9,3],[30,-17],[6,6]],[[5613,7971],[15,-16],[2,-15]],[[5630,7940],[-17,-13],[-13,-39],[-17,-39],[-22,-10]],[[5561,7839],[-17,2],[-22,-15]],[[5460,7860],[-6,20],[-4,0]],[[8470,4670],[3,-11],[1,-18]],[[8916,5033],[0,-188],[1,-188]],[[8045,5298],[5,-39],[19,-32],[18,12],[18,-4],[16,29],[13,5],[26,-16],[23,12],[14,80],[11,20],[10,65],[32,0],[24,-9]],[[7252,6920],[-17,-26],[-11,-54],[27,-21],[26,-29],[36,-32],[38,-7],[16,-30],[22,-5],[33,-14],[23,1],[4,23],[-4,37],[2,25]],[[7703,6810],[2,-22],[-10,-11],[2,-35],[-19,10],[-36,-39],[0,-33],[-15,-49],[-1,-28],[-13,-47],[-21,13],[-1,-60],[-7,-19],[3,-25],[-14,-13]],[[7030,6215],[-8,73],[0,70]],[[6893,6547],[19,38],[61,0],[-6,49],[-15,30],[-4,44],[-18,26],[31,60],[32,-4],[29,60],[18,59],[26,57],[0,41],[24,34],[-23,28],[-9,39],[-10,51],[13,24],[43,-14],[31,9],[26,48]],[[6690,6900],[14,-30],[11,-35],[27,-25],[0,-51],[14,-9],[2,-27],[-40,-30],[-11,-66]],[[6348,6906],[-15,30],[0,31],[-9,0],[4,41],[-14,44],[-34,32],[-19,54],[6,45],[14,20],[-2,34],[-18,17],[-18,69]],[[6243,7323],[-15,46],[5,18],[-8,66],[19,16]],[[6497,7324],[25,12],[19,33],[19,-2],[12,11],[20,-6],[31,-29],[22,-6],[31,-51],[21,-2],[3,-49]],[[6332,6908],[-19,5],[-20,-55]],[[6293,6858],[-52,5],[-78,115],[-41,41],[-34,15]],[[6088,7034],[-11,70]],[[6077,7104],[61,60],[11,70],[-3,42],[15,14],[15,36]],[[6176,7326],[12,9],[32,-7],[10,-15],[13,10]],[[5983,6996],[0,-23],[-14,-92]],[[5975,7088],[9,0],[3,10],[7,1]],[[5994,7099],[1,-24],[-4,-9],[1,0]],[[5992,7066],[-5,-18]],[[5987,7048],[-10,8],[-6,-39],[7,-6],[-7,-8],[-1,-15],[13,8]],[[5383,7861],[-3,-29],[7,-24]],[[6088,7034],[-5,-8],[-56,-29],[28,-58],[-9,-10],[-5,-19],[-21,-8],[-7,-21],[-12,-17],[-31,9]],[[5983,6996],[4,17],[0,35]],[[5992,7066],[31,-23],[54,61]],[[6554,7561],[-14,-3],[-20,45],[-18,17],[-32,-12],[-12,-20]],[[6458,7588],[-2,14],[7,24]],[[6363,7854],[-14,9],[3,30],[-18,39],[-20,-2],[-24,39],[16,44],[-8,11],[22,64],[29,-34],[3,42],[58,63],[43,2],[61,-40],[33,-24]],[[6547,8097],[29,25],[45,1]],[[6621,8123],[35,-30],[8,17],[39,-2],[7,27],[-45,39],[27,28],[-6,16],[27,15],[-20,40],[13,19],[104,20],[13,15],[70,21],[25,24],[50,-13],[8,-59],[29,14],[36,-20],[-2,-31],[26,3],[70,54],[-10,-18],[35,-44],[62,-147],[15,30],[39,-33],[39,15],[16,-10],[13,-34],[20,-11],[11,-24],[36,8],[15,-36]],[[7229,7621],[-17,9],[-14,20],[-42,6],[-46,2],[-10,-7],[-39,25],[-16,-12],[-4,-34],[-46,20],[-18,-9],[-7,-25]],[[6970,7616],[-16,-10],[-36,-41],[-12,-41],[-11,0],[-7,27],[-36,2],[-5,47],[-14,1],[2,57],[-33,42],[-48,-4],[-32,-8],[-27,51],[-22,22]],[[6673,7761],[-43,41]],[[6630,7802],[-6,5],[-71,-34],[1,-212]],[[6088,4913],[-40,58],[-1,33],[-101,117]],[[5946,5121],[-5,7]],[[5941,5128],[0,61],[8,23],[13,38],[11,42],[-13,66],[-3,29],[-13,40]],[[5944,5427],[17,35],[19,38]],[[6162,5408],[-24,-65],[0,-210],[16,-48]],[[7046,7453],[-53,-9],[-34,19],[-30,-4],[2,33],[31,-10],[10,18]],[[6972,7500],[21,-6],[36,42],[-33,30],[-20,-14],[-21,21],[24,38],[-9,5]],[[7849,5884],[-7,70],[18,48],[36,11],[26,-9]],[[7922,6004],[23,-22],[12,39],[25,-21]],[[7982,6000],[6,-38],[-3,-69],[-47,-45],[13,-34],[-30,-5],[-24,-23]],[[8504,7356],[2,5],[12,-2],[11,26],[20,3],[11,4],[4,14]],[[5557,7635],[5,13]],[[5562,7648],[7,4],[4,19],[5,3],[3,-8],[6,-4],[3,-9],[5,-2],[5,-11],[4,0],[-3,-14],[-3,-7],[1,-4]],[[5599,7615],[-7,-2],[-16,-9],[-1,-12],[-4,1]],[[6344,6826],[-19,-1],[-7,27],[-25,6]],[[7780,6358],[6,21],[24,38]],[[7837,6476],[16,-45],[13,-53],[34,0],[11,-50],[-18,-16],[-8,-20],[33,-35],[24,-68],[17,-50],[21,-41],[7,-40],[-5,-58]],[[7922,6004],[9,26],[1,49],[-22,50],[-2,57],[-21,47],[-21,4],[-6,-20],[-16,-2],[-8,10],[-30,-34],[0,51],[7,61],[-19,3],[-2,34],[-12,18]],[[5999,7177],[13,-3],[4,-22],[-15,-22],[-7,-31]],[[4682,5573],[6,19],[2,16],[12,32],[13,26]],[[5263,6928],[13,13],[3,24],[-3,24],[19,22],[8,19],[14,16],[2,45]],[[5694,6449],[0,-115],[-32,0],[0,-24]],[[5662,6310],[-111,110],[-111,110],[-28,-31]],[[5412,6499],[-20,-21],[-15,31],[-44,25]],[[5770,3418],[-21,44],[15,36],[15,23],[13,12],[12,-18],[10,-17],[-9,-28],[-4,-19],[-16,-9],[-5,-19],[-10,-5]],[[5584,8409],[32,18],[47,-4],[27,6],[4,-12],[15,-4],[26,-28]],[[5652,8287],[-7,18],[-14,6]],[[5631,8311],[-2,14],[3,16],[-13,9],[-29,10]],[[5757,8492],[14,-13],[2,-28],[9,-34]],[[4759,6775],[-4,0],[0,-31],[-17,-2],[-9,-13],[-13,0],[-10,8],[-23,-7],[-9,-44],[-9,-5],[-13,-72],[-38,-62],[-10,-80],[-11,-26],[-3,-20],[-63,-5]],[[4634,6774],[1,1],[14,22]],[[5784,7802],[-5,26],[3,25],[-1,25],[-16,34],[-9,24],[-9,17],[-8,6]],[[5739,7959],[6,9],[19,5],[20,-18],[12,-2],[12,-15],[-2,-20],[10,-9],[4,-24],[10,-15],[-2,-9],[5,-5],[-7,-5],[-16,2],[-3,8],[-6,-5],[2,-10],[-8,-18],[-4,-20],[-7,-6]],[[1746,7056],[32,4],[35,7],[-3,-12],[42,-28],[64,-40],[55,0],[22,0],[0,24],[48,0],[10,-21],[15,-18],[16,-25],[9,-30],[7,-32],[15,-17],[23,-17],[17,45],[23,1],[19,-23],[14,-39],[10,-34],[16,-33],[6,-40],[8,-27],[22,-18],[20,-13],[10,2]],[[2422,6249],[21,10],[18,10]],[[5599,7615],[9,3],[13,1]],[[5118,6285],[0,-132],[-15,-39],[-2,-35],[-25,-9],[-38,-5],[-10,-21],[-18,-2]],[[4680,5899],[1,18],[-2,22],[-11,16],[-5,33],[-2,36]],[[4661,6024],[10,11],[4,34],[9,1],[20,-16],[15,11],[11,-4],[4,13],[112,1],[6,40],[-5,7],[-13,249],[-14,249],[43,1]],[[7780,6358],[-16,-13],[-16,-25],[-20,-3],[-12,-62],[-12,-10],[14,-51],[17,-42],[12,-38],[-11,-50],[-9,-11],[6,-29],[19,-45],[3,-33],[0,-26],[11,-53],[-16,-53],[-13,-60]],[[5533,7689],[8,-10],[4,-8],[9,-6],[10,-12],[-2,-5]],[[7437,8021],[29,10],[53,50],[42,27],[24,-18],[29,-1],[19,-27],[28,-2],[40,-14],[27,40],[-11,34],[28,59],[31,-23],[26,-7],[32,-15],[6,-43],[39,-24],[26,10],[35,8],[28,-8],[27,-27],[17,-30],[26,1],[35,-10],[26,15],[36,9],[41,41],[17,-6],[14,-20],[33,5]],[[5911,3642],[-21,1]],[[5890,3643],[-2,25],[-4,26]],[[5884,3694],[-3,21],[5,64],[-7,41],[-13,81]],[[5866,3901],[29,65],[7,42],[5,5],[3,34],[-5,17],[1,43],[6,40],[0,73],[-15,19],[-13,4],[-6,14],[-13,12],[-23,-1],[-2,21]],[[5840,4289],[-2,41],[84,48]],[[5922,4378],[16,-28],[8,6],[11,-15],[1,-23],[-6,-27],[2,-40],[19,-36],[8,40],[12,12],[-2,74],[-12,42],[-10,18],[-10,-1],[-7,75],[7,44]],[[5959,4519],[21,5],[34,-17],[7,8],[19,1],[10,17],[17,0],[30,22],[22,33]],[[4525,6392],[7,19],[108,0],[-5,83],[7,29],[26,5],[-1,148],[91,-3],[0,87]],[[4661,6024],[-18,40],[-17,42],[-18,15],[-13,17],[-16,0],[-14,-13],[-13,5],[-10,-18]],[[5922,4378],[-15,15],[9,53],[9,20],[-6,48],[6,47],[4,15],[-7,49],[-13,26]],[[5909,4651],[28,-11],[5,-16],[10,-27],[7,-78]],[[7779,5555],[5,10],[23,-25],[2,-30],[18,7],[9,24]],[[5644,4173],[23,13],[18,-3],[11,-13],[0,-5]],[[5552,3756],[0,-212],[-25,-30],[-15,-4],[-17,11],[-13,4],[-4,25],[-11,15],[-14,-28]],[[5412,6499],[7,-90],[10,-15],[1,-18],[11,-20],[-6,-24],[-11,-117],[-1,-75],[-35,-54],[-12,-76],[11,-22],[0,-37],[18,-1],[-3,-27]],[[5393,5901],[-5,-1],[-19,63],[-6,2],[-22,-32],[-21,17],[-15,3],[-8,-8],[-17,2],[-16,-25],[-14,-1],[-34,30],[-13,-14],[-14,1],[-11,21],[-27,22],[-30,-7],[-7,-12],[-4,-34],[-8,-23],[-2,-51]],[[5863,9188],[-47,-23],[-22,-6]],[[5573,9162],[-17,-3],[-4,-38],[-53,10],[-7,-32],[-27,0],[-18,-41],[-28,-64],[-43,-81],[10,-20],[-10,-22],[-27,1],[-18,-54],[2,-77],[17,-29],[-9,-68],[-23,-39],[-12,-33]],[[6475,6141],[-9,40],[-22,96]],[[6444,6277],[83,57],[19,115],[-13,41]],[[5546,8316],[34,-6],[51,1]],[[5653,8152],[14,-50],[-3,-16],[-14,-7],[-25,-48],[7,-25],[-6,3]],[[5626,8009],[-26,22],[-20,-8],[-14,6],[-16,-13],[-14,21],[-11,-8],[-2,4]],[[8628,7624],[4,-10]],[[6427,6601],[-8,-5],[-8,12]],[[5784,7802],[12,-11],[13,9],[13,-10]],[[5629,7730],[-5,10],[6,9],[-7,8],[-9,-13],[-16,16],[-2,24],[-17,14],[-3,18],[-15,23]],[[5630,7940],[12,12],[17,-6],[18,-1],[13,-14],[10,9],[20,6],[7,13],[12,0]],[[9352,8720],[-69,-97],[23,-35]],[[6621,8123],[-44,-1],[-30,-25]],[[6061,7895],[1,25],[14,16],[27,5],[5,19],[-7,32],[12,30],[-1,17],[-41,18],[-16,0],[-17,27],[-21,-9],[-36,20],[1,11],[-10,25],[-22,3],[-2,18],[7,11],[-18,33],[-29,-6],[-8,3],[-7,-13],[-11,3]],[[5966,8977],[2,-27],[2,-58]],[[6031,8887],[-17,25],[18,22]],[[5821,5105],[7,-6],[16,18]],[[5844,5117],[11,-32],[-1,-34],[-8,-8]],[[6444,6277],[-80,-23],[-26,-25],[-20,-61],[-13,-10],[-7,20],[-11,-3],[-27,6],[-5,5],[-32,-1],[-7,-5],[-12,15],[-7,-29],[3,-24],[-12,-18]],[[5634,5824],[1,14],[-10,17],[-1,33],[-6,23],[-9,-4],[2,21],[8,24],[-3,24],[9,18],[-6,13],[7,36],[13,42],[24,-4],[-1,229]],[[5943,5734],[0,-7]],[[5943,5727],[-4,2],[0,28],[-3,20],[-14,23],[-4,41],[4,43],[-13,4],[-2,-13],[-17,-3],[7,-17],[2,-35],[-15,-31],[-14,-42],[-14,-6],[-23,34],[-11,-12],[-3,-17],[-14,-11],[-1,-11],[-28,0],[-4,11],[-20,2],[-10,-9],[-7,4],[-14,34],[-5,16],[-20,-8],[-8,-27],[-7,-51],[-10,-11],[-8,-6]],[[5663,5679],[-2,2]],[[5944,5427],[-17,-26],[-20,0],[-22,-14],[-18,13],[-11,-15]],[[5682,5656],[-19,23]],[[5943,5727],[0,-45]],[[6359,5839],[0,-24],[0,-58],[0,-30],[-13,-36],[-19,-48]],[[3499,5391],[-4,-25],[-3,-26]],[[5626,8009],[-8,-15],[-5,-23]],[[5890,3643],[-5,-26],[-17,-6],[-16,31],[-1,20],[8,22],[3,17],[8,4],[14,-11]],[[6004,7245],[7,13],[7,12],[2,32],[9,-11],[31,16],[14,-11],[23,1],[32,21],[15,-1],[32,9]],[[6883,7321],[16,59],[-6,43],[-20,13],[7,26],[23,-3],[13,32],[9,37],[37,13],[-6,-27],[4,-16],[12,2]],[[6554,7561],[31,1],[-4,29],[24,20],[23,33],[37,-30],[3,-46],[11,-12],[30,3],[9,-11],[14,-59],[32,-40],[18,-27],[29,-28],[37,-25],[-1,-35]],[[5909,4651],[-15,17],[-18,10],[-11,9],[-12,15]],[[5844,5117],[10,7],[31,-1]],[[5885,5123],[56,5]],[[5901,7792],[5,11],[26,20]],[[3052,7698],[-15,-34],[-4,-13]],[[2879,7375],[-18,9],[19,-18]],[[2522,6928],[-11,-9],[5,-15]],[[1551,7699],[4,53],[3,52]],[[8001,6423],[-38,-49]],[[5817,3910],[11,0],[14,-10],[9,7],[15,-6]],[[5840,4289],[-21,-7],[-16,-23],[-3,-20],[-10,-5],[-24,-47],[-15,-37],[-10,-2],[-9,7],[-31,6]],[[7959,8223],[0,8],[15,14],[6,11],[8,9],[13,19],[9,23],[19,44],[4,29],[8,11],[12,0],[-7,-43],[0,-15],[-6,-21],[-4,-31],[-3,-11],[-6,9],[-11,-19],[5,-4],[-1,-10],[-8,-4],[-7,-19],[-12,-13],[-13,-9],[-19,-6],[-15,-16],[-9,-16],[-15,-14],[-11,-3],[-15,2],[-15,6],[-4,8],[7,7],[15,0],[19,8],[11,16],[14,14],[8,6],[8,10]],[[2251,8288],[28,23],[4,-16],[5,-36],[34,-117],[4,-41],[-13,-13],[-6,17],[-8,43],[-27,40],[-29,59],[8,41]],[[1806,8751],[-23,33],[-7,13],[6,-1],[39,-19],[30,-22],[44,23],[20,28],[24,9],[22,-12],[8,-4],[0,-6],[-28,-11],[-32,-9],[-38,-46],[-28,-27],[-47,-12],[-31,-1],[-45,26],[-8,3],[0,9],[5,2],[38,-13],[32,21],[19,16]],[[2804,7673],[-9,-3],[-11,5],[9,20],[8,7],[20,9],[23,7],[13,-10],[7,12],[9,8],[6,-4],[3,-9],[1,-22],[-20,-20],[-23,5],[-22,2],[-14,-7]],[[2691,7606],[15,-4],[21,18],[12,16],[8,3],[15,-6],[8,9],[14,7],[24,8],[0,-6],[-24,-35],[-21,-16],[-14,-8],[-16,-16],[-21,-7],[-13,3],[-18,12],[10,22]],[[2511,7947],[11,23],[16,9],[6,14],[7,7],[25,-11],[19,-1],[7,-8],[9,-33],[32,-9],[-6,-16],[12,-17],[-5,-22],[12,-7],[-6,-19]],[[2650,7857],[-9,2],[-6,16],[-27,-5],[-25,-13],[-19,22],[-16,8],[9,30],[-25,-19],[-22,-19],[-21,-15],[-17,20],[-28,-12],[0,9],[19,24],[20,23],[28,19]],[[5946,5121],[-14,-25],[-9,-26],[11,-20],[-16,-14],[-3,6],[-17,-3],[-12,-13],[-7,22],[5,41],[1,34]],[[5885,5123],[-2,22],[13,34],[17,8],[12,14],[15,-11],[7,-26],[-1,-43]],[[5828,8708],[29,32],[46,-38],[12,-28],[-4,-9],[-6,3],[-1,-18],[-24,1],[-5,-18],[-12,0],[1,13],[-16,28],[-1,12],[-19,22]],[[7194,7875],[7,-7],[-10,-16],[-12,-3],[-35,5],[-44,7],[-4,9],[-2,-11],[-14,-4],[-4,-18],[-14,-5],[-4,-59],[-19,36],[1,11],[7,12],[-1,10],[9,1],[2,13],[24,22],[35,-2],[27,-8],[19,1],[12,-11],[3,11],[17,6]],[[5855,4689],[-9,4],[3,22],[-9,15],[-3,32],[-17,31],[-10,42],[6,24],[-8,32],[5,92],[10,-55],[-2,-27],[6,-9],[-1,-25],[5,-22],[-6,-22],[23,-39],[1,-36],[17,-68],[-5,-3],[-6,12]],[[5979,4360],[-1,-7],[-10,22],[-4,-14],[-5,13],[0,21],[-6,17],[0,25],[-8,42],[8,33],[-2,69],[-10,37],[2,18],[15,-31],[3,-61],[9,-22],[-7,-55],[5,-74],[5,-2],[6,-31]],[[6630,7802],[2,23],[12,3],[9,-14],[1,35],[6,-3],[10,-9],[0,-12],[-6,-5],[-2,-16],[8,3],[3,-46]],[[6673,7761],[-5,-30],[-8,-6],[-20,12],[8,37],[0,11],[-11,10],[-1,-15],[0,-21],[-11,-31],[-7,15],[0,25],[12,34]],[[5388,8592],[0,-7],[-2,-11],[-17,-17],[-13,-5],[-10,0],[2,15],[-1,6],[5,4],[9,2],[5,8],[11,12],[11,-7]],[[2758,6725],[-6,2],[0,14],[6,-2],[0,-14]],[[2643,5824],[-13,2],[-13,19],[-3,23],[9,2],[14,-24],[6,-22]],[[6031,5865],[-3,10],[6,12],[7,-4],[0,-20],[-4,-6],[-6,8]],[[3072,4254],[-9,11],[-7,11],[3,4],[0,7],[-1,12],[9,-4],[17,-27],[0,-2],[6,-25],[-4,-9],[-3,-2],[-3,5],[-2,3],[-2,10],[-4,6]],[[2239,8241],[-5,0],[-6,1],[-18,9],[-5,14],[8,12],[-3,10],[1,2],[2,8],[2,8],[7,-1],[-1,-6],[-4,-10],[9,0],[-2,-6],[-3,-22],[11,-8],[7,-2],[0,-9]],[[5992,8769],[9,-33],[9,-25],[-8,-15],[-21,-4],[-13,10],[9,0],[11,-2],[-12,18],[-8,9],[-11,18],[-6,20],[1,5],[10,-4],[-1,13],[6,-9],[7,-9],[3,3],[8,4],[-10,13],[-14,15],[10,0],[7,-4],[14,-23]],[[1884,7563],[1,-12],[-1,-16],[-14,16],[-1,2],[-5,27],[8,-11],[5,-6],[6,5],[1,-5]],[[1729,8996],[-6,-21],[-4,-5],[-45,-2],[0,-5],[2,-7],[-1,-10],[-46,-27],[0,6],[11,22],[-3,4],[-42,-24],[-18,9],[1,8],[24,27],[-1,6],[-72,9],[1,6],[151,47],[3,-6],[-23,-23],[72,5],[0,-8],[-4,-11]],[[1954,8582],[-40,-28],[-3,8],[1,4],[57,46],[71,-14],[0,-1],[-86,-15]],[[2170,8523],[9,-8],[-12,-30],[1,-7],[-35,-51],[-2,4],[3,17],[2,0],[2,-8],[13,21],[-7,20],[0,10],[19,32],[7,0]],[[2641,7819],[4,8]],[[2645,7827],[2,0],[24,5],[-14,23]],[[2657,7855],[5,8],[5,-13],[21,-7],[22,0],[22,-6],[25,-11],[9,-18],[18,-45],[-9,-18],[-23,7],[-13,36],[3,-36],[-13,-32],[1,-27],[-2,-17],[-18,-18],[-1,23],[-6,33],[-9,6],[-18,-25],[-5,0],[-2,15],[15,23],[3,26],[-3,26],[-20,23],[-23,11]],[[2641,7819],[-4,-22],[-7,-6],[-4,-28],[-3,19],[-11,-13],[-7,-20],[-7,-28],[-2,-24],[9,-36],[0,-38],[-11,-28],[-6,-8],[-7,-6],[-10,-1],[-3,4],[-7,30],[-1,15],[2,15],[-4,28],[5,32],[7,41],[14,44],[-4,-1],[-21,-37],[-3,7],[10,21],[17,37],[19,6],[22,11],[21,-6]]],"transform":{"scale":[0.036003600360036005,0.0173662496249625],"translate":[-180,-90]}}
--------------------------------------------------------------------------------
/server.js:
--------------------------------------------------------------------------------
1 | const app = require('./app')
2 |
3 | const port = process.env.PORT || 3000
4 |
5 | app.listen(port, () => {
6 | console.log(`Example app listening at http://localhost:${port}`)
7 | })
8 |
--------------------------------------------------------------------------------