From cf405839891f98a7b1fe8a295c16ee50ede546be Mon Sep 17 00:00:00 2001 From: Alfred Melch Date: Sun, 14 Jul 2019 20:37:26 +0200 Subject: [PATCH] initial commit --- .gitignore | 3 + benchmarking/.babelrc | 3 + benchmarking/.prettierrc | 4 + benchmarking/package-lock.json | 9878 +++++++++++++++++ benchmarking/package.json | 45 + benchmarking/public/index.html | 23 + benchmarking/public/style.css | 53 + benchmarking/src/benchmarkCases/Case.js | 12 + benchmarking/src/benchmarkCases/index.js | 43 + benchmarking/src/benchmarkCases/simplifyJS.js | 33 + .../src/benchmarkCases/simplifyWasm.js | 59 + benchmarking/src/benchmarkCases/transforms.js | 47 + benchmarking/src/benchmarks/Benchmark.js | 31 + .../src/benchmarks/BenchmarkJSBenchmark.js | 40 + benchmarking/src/benchmarks/BenchmarkSuite.js | 48 + .../src/benchmarks/IterationBenchmark.js | 17 + .../src/benchmarks/OpsPerTimeBenchmark.js | 19 + benchmarking/src/benchmarks/index.js | 9 + .../src/benchmarks/initBenchmarkJS.js | 6 + benchmarking/src/components/chart.js | 104 + benchmarking/src/components/form.js | 145 + benchmarking/src/components/progress.js | 14 + benchmarking/src/index.js | 102 + benchmarking/webpack.config.js | 40 + data/large.js | 1 + data/small.js | 1 + lib/psimpl/LICENSE.txt | 470 + lib/psimpl/README.txt | 97 + lib/psimpl/demo/DPWorker.cpp | 782 ++ lib/psimpl/demo/DPWorker.h | 101 + lib/psimpl/demo/MainWindow.cpp | 256 + lib/psimpl/demo/MainWindow.h | 106 + lib/psimpl/demo/MainWindow.ui | 855 ++ lib/psimpl/demo/QTRules.rules | 41 + lib/psimpl/demo/RenderArea.cpp | 123 + lib/psimpl/demo/RenderArea.h | 76 + lib/psimpl/demo/main.cpp | 43 + lib/psimpl/demo/psimpl.pro | 22 + lib/psimpl/demo/psimpl.vcproj | 304 + lib/psimpl/demo/psimpl_reference.h | 238 + lib/psimpl/demo/resource.rc | 34 + lib/psimpl/psimpl.h | 1890 ++++ lib/simplify-js-alternative/Makefile | 2 + lib/simplify-js-alternative/README.md | 1 + lib/simplify-js-alternative/simplify.diff | 42 + lib/simplify-js-alternative/simplify.js | 102 + lib/simplify-js/.gitignore | 28 + lib/simplify-js/LICENSE | 22 + lib/simplify-js/README.md | 19 + lib/simplify-js/bench/bench.js | 19 + lib/simplify-js/index.d.ts | 9 + lib/simplify-js/package.json | 38 + lib/simplify-js/simplify.js | 123 + lib/simplify-js/test/fixtures/1k.json | 1 + lib/simplify-js/test/test.js | 60 + lib/simplify-wasm/Makefile | 13 + lib/simplify-wasm/example.html | 32 + lib/simplify-wasm/index.js | 31 + lib/simplify-wasm/simplify.c | 122 + lib/simplify-wasm/simplify.js | 31 + lib/simplify-wasm/simplify.wasm | Bin 0 -> 9398 bytes lib/turf-simplify/LICENSE | 20 + lib/turf-simplify/README.md | 87 + lib/turf-simplify/bench.js | 67 + lib/turf-simplify/index.d.ts | 13 + lib/turf-simplify/index.js | 175 + lib/turf-simplify/lib/simplify.js | 111 + lib/turf-simplify/package.json | 63 + lib/turf-simplify/test.js | 86 + lib/turf-simplify/test/in/argentina.geojson | 455 + .../test/in/featurecollection.geojson | 388 + lib/turf-simplify/test/in/fiji-hiQ.geojson | 258 + .../test/in/geometrycollection.geojson | 364 + lib/turf-simplify/test/in/issue-#1144.geojson | 91 + lib/turf-simplify/test/in/linestring.geojson | 329 + .../test/in/multilinestring.geojson | 413 + lib/turf-simplify/test/in/multipoint.geojson | 11 + .../test/in/multipolygon.geojson | 4504 ++++++++ lib/turf-simplify/test/in/point.geojson | 11 + .../test/in/poly-issue#555-5.geojson | 183 + lib/turf-simplify/test/in/polygon.geojson | 734 ++ .../test/in/simple-polygon.geojson | 325 + lib/turf-simplify/test/out/argentina.geojson | 419 + .../test/out/featurecollection.geojson | 136 + lib/turf-simplify/test/out/fiji-hiQ.geojson | 70 + .../test/out/geometrycollection.geojson | 109 + .../test/out/issue-#1144.geojson | 43 + lib/turf-simplify/test/out/linestring.geojson | 105 + .../test/out/multilinestring.geojson | 169 + lib/turf-simplify/test/out/multipoint.geojson | 17 + .../test/out/multipolygon.geojson | 88 + lib/turf-simplify/test/out/point.geojson | 11 + .../test/out/poly-issue#555-5.geojson | 59 + lib/turf-simplify/test/out/polygon.geojson | 30 + .../test/out/simple-polygon.geojson | 29 + lib/turf-simplify/types.ts | 11 + lib/wasm-util/README.md | 1 + lib/wasm-util/coordinates.js | 62 + lib/wasm-util/initEmscripten.js | 28 + scripts/bundle-size.sh | 26 + thesis/chapters/chapter01.tex | 13 + thesis/chapters/chapter02.tex | 4 + thesis/chapters/chapter03.tex | 27 + thesis/chapters/chapter04.tex | 50 + thesis/chapters/chapter05.tex | 39 + thesis/chapters/chapter06.tex | 11 + thesis/chapters/conclusion.tex | 1 + thesis/chapters/introduction.tex | 36 + thesis/chapters/results.tex | 3 + thesis/custom-listing.tex | 140 + thesis/images/uni-augsburg.jpeg | Bin 0 -> 25122 bytes thesis/main.aux | 83 + thesis/main.log | 645 ++ thesis/main.lol | 2 + thesis/main.pdf | Bin 0 -> 134931 bytes thesis/main.synctex.gz | Bin 0 -> 77485 bytes thesis/main.tex | 112 + thesis/main.toc | 48 + 118 files changed, 28228 insertions(+) create mode 100644 .gitignore create mode 100644 benchmarking/.babelrc create mode 100644 benchmarking/.prettierrc create mode 100644 benchmarking/package-lock.json create mode 100644 benchmarking/package.json create mode 100644 benchmarking/public/index.html create mode 100644 benchmarking/public/style.css create mode 100644 benchmarking/src/benchmarkCases/Case.js create mode 100644 benchmarking/src/benchmarkCases/index.js create mode 100644 benchmarking/src/benchmarkCases/simplifyJS.js create mode 100644 benchmarking/src/benchmarkCases/simplifyWasm.js create mode 100644 benchmarking/src/benchmarkCases/transforms.js create mode 100644 benchmarking/src/benchmarks/Benchmark.js create mode 100644 benchmarking/src/benchmarks/BenchmarkJSBenchmark.js create mode 100644 benchmarking/src/benchmarks/BenchmarkSuite.js create mode 100644 benchmarking/src/benchmarks/IterationBenchmark.js create mode 100644 benchmarking/src/benchmarks/OpsPerTimeBenchmark.js create mode 100644 benchmarking/src/benchmarks/index.js create mode 100644 benchmarking/src/benchmarks/initBenchmarkJS.js create mode 100644 benchmarking/src/components/chart.js create mode 100644 benchmarking/src/components/form.js create mode 100644 benchmarking/src/components/progress.js create mode 100644 benchmarking/src/index.js create mode 100644 benchmarking/webpack.config.js create mode 100644 data/large.js create mode 100644 data/small.js create mode 100644 lib/psimpl/LICENSE.txt create mode 100644 lib/psimpl/README.txt create mode 100644 lib/psimpl/demo/DPWorker.cpp create mode 100644 lib/psimpl/demo/DPWorker.h create mode 100644 lib/psimpl/demo/MainWindow.cpp create mode 100644 lib/psimpl/demo/MainWindow.h create mode 100644 lib/psimpl/demo/MainWindow.ui create mode 100644 lib/psimpl/demo/QTRules.rules create mode 100644 lib/psimpl/demo/RenderArea.cpp create mode 100644 lib/psimpl/demo/RenderArea.h create mode 100644 lib/psimpl/demo/main.cpp create mode 100644 lib/psimpl/demo/psimpl.pro create mode 100644 lib/psimpl/demo/psimpl.vcproj create mode 100644 lib/psimpl/demo/psimpl_reference.h create mode 100644 lib/psimpl/demo/resource.rc create mode 100644 lib/psimpl/psimpl.h create mode 100644 lib/simplify-js-alternative/Makefile create mode 100644 lib/simplify-js-alternative/README.md create mode 100644 lib/simplify-js-alternative/simplify.diff create mode 100644 lib/simplify-js-alternative/simplify.js create mode 100644 lib/simplify-js/.gitignore create mode 100644 lib/simplify-js/LICENSE create mode 100644 lib/simplify-js/README.md create mode 100644 lib/simplify-js/bench/bench.js create mode 100644 lib/simplify-js/index.d.ts create mode 100644 lib/simplify-js/package.json create mode 100644 lib/simplify-js/simplify.js create mode 100644 lib/simplify-js/test/fixtures/1k.json create mode 100644 lib/simplify-js/test/test.js create mode 100644 lib/simplify-wasm/Makefile create mode 100644 lib/simplify-wasm/example.html create mode 100644 lib/simplify-wasm/index.js create mode 100644 lib/simplify-wasm/simplify.c create mode 100644 lib/simplify-wasm/simplify.js create mode 100644 lib/simplify-wasm/simplify.wasm create mode 100644 lib/turf-simplify/LICENSE create mode 100644 lib/turf-simplify/README.md create mode 100644 lib/turf-simplify/bench.js create mode 100644 lib/turf-simplify/index.d.ts create mode 100644 lib/turf-simplify/index.js create mode 100644 lib/turf-simplify/lib/simplify.js create mode 100644 lib/turf-simplify/package.json create mode 100644 lib/turf-simplify/test.js create mode 100644 lib/turf-simplify/test/in/argentina.geojson create mode 100644 lib/turf-simplify/test/in/featurecollection.geojson create mode 100644 lib/turf-simplify/test/in/fiji-hiQ.geojson create mode 100644 lib/turf-simplify/test/in/geometrycollection.geojson create mode 100644 lib/turf-simplify/test/in/issue-#1144.geojson create mode 100644 lib/turf-simplify/test/in/linestring.geojson create mode 100644 lib/turf-simplify/test/in/multilinestring.geojson create mode 100644 lib/turf-simplify/test/in/multipoint.geojson create mode 100644 lib/turf-simplify/test/in/multipolygon.geojson create mode 100644 lib/turf-simplify/test/in/point.geojson create mode 100644 lib/turf-simplify/test/in/poly-issue#555-5.geojson create mode 100644 lib/turf-simplify/test/in/polygon.geojson create mode 100644 lib/turf-simplify/test/in/simple-polygon.geojson create mode 100644 lib/turf-simplify/test/out/argentina.geojson create mode 100644 lib/turf-simplify/test/out/featurecollection.geojson create mode 100644 lib/turf-simplify/test/out/fiji-hiQ.geojson create mode 100644 lib/turf-simplify/test/out/geometrycollection.geojson create mode 100644 lib/turf-simplify/test/out/issue-#1144.geojson create mode 100644 lib/turf-simplify/test/out/linestring.geojson create mode 100644 lib/turf-simplify/test/out/multilinestring.geojson create mode 100644 lib/turf-simplify/test/out/multipoint.geojson create mode 100644 lib/turf-simplify/test/out/multipolygon.geojson create mode 100644 lib/turf-simplify/test/out/point.geojson create mode 100644 lib/turf-simplify/test/out/poly-issue#555-5.geojson create mode 100644 lib/turf-simplify/test/out/polygon.geojson create mode 100644 lib/turf-simplify/test/out/simple-polygon.geojson create mode 100644 lib/turf-simplify/types.ts create mode 100644 lib/wasm-util/README.md create mode 100644 lib/wasm-util/coordinates.js create mode 100644 lib/wasm-util/initEmscripten.js create mode 100755 scripts/bundle-size.sh create mode 100644 thesis/chapters/chapter01.tex create mode 100644 thesis/chapters/chapter02.tex create mode 100644 thesis/chapters/chapter03.tex create mode 100644 thesis/chapters/chapter04.tex create mode 100644 thesis/chapters/chapter05.tex create mode 100644 thesis/chapters/chapter06.tex create mode 100644 thesis/chapters/conclusion.tex create mode 100644 thesis/chapters/introduction.tex create mode 100644 thesis/chapters/results.tex create mode 100644 thesis/custom-listing.tex create mode 100644 thesis/images/uni-augsburg.jpeg create mode 100644 thesis/main.aux create mode 100644 thesis/main.log create mode 100644 thesis/main.lol create mode 100644 thesis/main.pdf create mode 100644 thesis/main.synctex.gz create mode 100644 thesis/main.tex create mode 100644 thesis/main.toc diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..bde2b17 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +.vscode/ +node_modules/ +*.wat diff --git a/benchmarking/.babelrc b/benchmarking/.babelrc new file mode 100644 index 0000000..85b2513 --- /dev/null +++ b/benchmarking/.babelrc @@ -0,0 +1,3 @@ +{ + "presets": ["@babel/preset-react"] +} \ No newline at end of file diff --git a/benchmarking/.prettierrc b/benchmarking/.prettierrc new file mode 100644 index 0000000..b2095be --- /dev/null +++ b/benchmarking/.prettierrc @@ -0,0 +1,4 @@ +{ + "semi": false, + "singleQuote": true +} diff --git a/benchmarking/package-lock.json b/benchmarking/package-lock.json new file mode 100644 index 0000000..c144389 --- /dev/null +++ b/benchmarking/package-lock.json @@ -0,0 +1,9878 @@ +{ + "name": "linestring-simplification", + "version": "0.1.0", + "lockfileVersion": 1, + "requires": true, + "dependencies": { + "@babel/code-frame": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.0.0.tgz", + "integrity": "sha512-OfC2uemaknXr87bdLUkWog7nYuliM9Ij5HUcajsVcMCpQrcLmtxRbVFTIqmcSkSeYRBFBRxs2FiUqFJDLdiebA==", + "dev": true, + "requires": { + "@babel/highlight": "7.0.0" + } + }, + "@babel/core": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.4.5.tgz", + "integrity": "sha512-OvjIh6aqXtlsA8ujtGKfC7LYWksYSX8yQcM8Ay3LuvVeQ63lcOKgoZWVqcpFwkd29aYU9rVx7jxhfhiEDV9MZA==", + "dev": true, + "requires": { + "@babel/code-frame": "7.0.0", + "@babel/generator": "7.4.4", + "@babel/helpers": "7.4.4", + "@babel/parser": "7.4.5", + "@babel/template": "7.4.4", + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4", + "convert-source-map": "1.6.0", + "debug": "4.1.1", + "json5": "2.1.0", + "lodash": "4.17.11", + "resolve": "1.11.0", + "semver": "5.7.0", + "source-map": "0.5.7" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "json5": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.1.0.tgz", + "integrity": "sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ==", + "dev": true, + "requires": { + "minimist": "1.2.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@babel/generator": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.4.4.tgz", + "integrity": "sha512-53UOLK6TVNqKxf7RUh8NE851EHRxOOeVXKbK2bivdb+iziMyk03Sr4eaE9OELCbyZAAafAKPDwF2TPUES5QbxQ==", + "dev": true, + "requires": { + "@babel/types": "7.4.4", + "jsesc": "2.5.2", + "lodash": "4.17.11", + "source-map": "0.5.7", + "trim-right": "1.0.1" + } + }, + "@babel/helper-annotate-as-pure": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.0.0.tgz", + "integrity": "sha512-3UYcJUj9kvSLbLbUIfQTqzcy5VX7GRZ/CCDrnOaZorFFM01aXp1+GJwuFGV4NDDoAS+mOUyHcO6UD/RfqOks3Q==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.1.0.tgz", + "integrity": "sha512-qNSR4jrmJ8M1VMM9tibvyRAHXQs2PmaksQF7c1CGJNipfe3D8p+wgNwgso/P2A2r2mdgBWAXljNWR0QRZAMW8w==", + "dev": true, + "requires": { + "@babel/helper-explode-assignable-expression": "7.1.0", + "@babel/types": "7.4.4" + } + }, + "@babel/helper-builder-react-jsx": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-react-jsx/-/helper-builder-react-jsx-7.3.0.tgz", + "integrity": "sha512-MjA9KgwCuPEkQd9ncSXvSyJ5y+j2sICHyrI0M3L+6fnS4wMSNDc1ARXsbTfbb2cXHn17VisSnU/sHFTCxVxSMw==", + "dev": true, + "requires": { + "@babel/types": "7.4.4", + "esutils": "2.0.2" + } + }, + "@babel/helper-call-delegate": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-call-delegate/-/helper-call-delegate-7.4.4.tgz", + "integrity": "sha512-l79boDFJ8S1c5hvQvG+rc+wHw6IuH7YldmRKsYtpbawsxURu/paVy57FZMomGK22/JckepaikOkY0MoAmdyOlQ==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "7.4.4", + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@babel/helper-create-class-features-plugin": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.4.4.tgz", + "integrity": "sha512-UbBHIa2qeAGgyiNR9RszVF7bUHEdgS4JAUNT8SiqrAN6YJVxlOxeLr5pBzb5kan302dejJ9nla4RyKcR1XT6XA==", + "dev": true, + "requires": { + "@babel/helper-function-name": "7.1.0", + "@babel/helper-member-expression-to-functions": "7.0.0", + "@babel/helper-optimise-call-expression": "7.0.0", + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-replace-supers": "7.4.4", + "@babel/helper-split-export-declaration": "7.4.4" + } + }, + "@babel/helper-define-map": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-map/-/helper-define-map-7.4.4.tgz", + "integrity": "sha512-IX3Ln8gLhZpSuqHJSnTNBWGDE9kdkTEWl21A/K7PQ00tseBwbqCHTvNLHSBd9M0R5rER4h5Rsvj9vw0R5SieBg==", + "dev": true, + "requires": { + "@babel/helper-function-name": "7.1.0", + "@babel/types": "7.4.4", + "lodash": "4.17.11" + } + }, + "@babel/helper-explode-assignable-expression": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.1.0.tgz", + "integrity": "sha512-NRQpfHrJ1msCHtKjbzs9YcMmJZOg6mQMmGRB+hbamEdG5PNpaSm95275VD92DvJKuyl0s2sFiDmMZ+EnnvufqA==", + "dev": true, + "requires": { + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@babel/helper-function-name": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz", + "integrity": "sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw==", + "dev": true, + "requires": { + "@babel/helper-get-function-arity": "7.0.0", + "@babel/template": "7.4.4", + "@babel/types": "7.4.4" + } + }, + "@babel/helper-get-function-arity": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz", + "integrity": "sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@babel/helper-hoist-variables": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.4.4.tgz", + "integrity": "sha512-VYk2/H/BnYbZDDg39hr3t2kKyifAm1W6zHRfhx8jGjIHpQEBv9dry7oQ2f3+J703TLu69nYdxsovl0XYfcnK4w==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@babel/helper-member-expression-to-functions": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.0.0.tgz", + "integrity": "sha512-avo+lm/QmZlv27Zsi0xEor2fKcqWG56D5ae9dzklpIaY7cQMK5N8VSpaNVPPagiqmy7LrEjK1IWdGMOqPu5csg==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@babel/helper-module-imports": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.0.0.tgz", + "integrity": "sha512-aP/hlLq01DWNEiDg4Jn23i+CXxW/owM4WpDLFUbpjxe4NS3BhLVZQ5i7E0ZrxuQ/vwekIeciyamgB1UIYxxM6A==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@babel/helper-module-transforms": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.4.4.tgz", + "integrity": "sha512-3Z1yp8TVQf+B4ynN7WoHPKS8EkdTbgAEy0nU0rs/1Kw4pDgmvYH3rz3aI11KgxKCba2cn7N+tqzV1mY2HMN96w==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "7.0.0", + "@babel/helper-simple-access": "7.1.0", + "@babel/helper-split-export-declaration": "7.4.4", + "@babel/template": "7.4.4", + "@babel/types": "7.4.4", + "lodash": "4.17.11" + } + }, + "@babel/helper-optimise-call-expression": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz", + "integrity": "sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@babel/helper-plugin-utils": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz", + "integrity": "sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA==", + "dev": true + }, + "@babel/helper-regex": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-regex/-/helper-regex-7.4.4.tgz", + "integrity": "sha512-Y5nuB/kESmR3tKjU8Nkn1wMGEx1tjJX076HBMeL3XLQCu6vA/YRzuTW0bbb+qRnXvQGn+d6Rx953yffl8vEy7Q==", + "dev": true, + "requires": { + "lodash": "4.17.11" + } + }, + "@babel/helper-remap-async-to-generator": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.1.0.tgz", + "integrity": "sha512-3fOK0L+Fdlg8S5al8u/hWE6vhufGSn0bN09xm2LXMy//REAF8kDCrYoOBKYmA8m5Nom+sV9LyLCwrFynA8/slg==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "7.0.0", + "@babel/helper-wrap-function": "7.2.0", + "@babel/template": "7.4.4", + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@babel/helper-replace-supers": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.4.4.tgz", + "integrity": "sha512-04xGEnd+s01nY1l15EuMS1rfKktNF+1CkKmHoErDppjAAZL+IUBZpzT748x262HF7fibaQPhbvWUl5HeSt1EXg==", + "dev": true, + "requires": { + "@babel/helper-member-expression-to-functions": "7.0.0", + "@babel/helper-optimise-call-expression": "7.0.0", + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@babel/helper-simple-access": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.1.0.tgz", + "integrity": "sha512-Vk+78hNjRbsiu49zAPALxTb+JUQCz1aolpd8osOF16BGnLtseD21nbHgLPGUwrXEurZgiCOUmvs3ExTu4F5x6w==", + "dev": true, + "requires": { + "@babel/template": "7.4.4", + "@babel/types": "7.4.4" + } + }, + "@babel/helper-split-export-declaration": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz", + "integrity": "sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@babel/helper-wrap-function": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.2.0.tgz", + "integrity": "sha512-o9fP1BZLLSrYlxYEYyl2aS+Flun5gtjTIG8iln+XuEzQTs0PLagAGSXUcqruJwD5fM48jzIEggCKpIfWTcR7pQ==", + "dev": true, + "requires": { + "@babel/helper-function-name": "7.1.0", + "@babel/template": "7.4.4", + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@babel/helpers": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.4.4.tgz", + "integrity": "sha512-igczbR/0SeuPR8RFfC7tGrbdTbFL3QTvH6D+Z6zNxnTe//GyqmtHmDkzrqDmyZ3eSwPqB/LhyKoU5DXsp+Vp2A==", + "dev": true, + "requires": { + "@babel/template": "7.4.4", + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@babel/highlight": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.0.0.tgz", + "integrity": "sha512-UFMC4ZeFC48Tpvj7C8UgLvtkaUuovQX+5xNWrsIoMG8o2z+XFKjKaN9iVmS84dPwVN00W4wPmqvYoZF3EGAsfw==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "esutils": "2.0.2", + "js-tokens": "4.0.0" + } + }, + "@babel/parser": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.4.5.tgz", + "integrity": "sha512-9mUqkL1FF5T7f0WDFfAoDdiMVPWsdD1gZYzSnaXsxUCUqzuch/8of9G3VUSNiZmMBoRxT3neyVsqeiL/ZPcjew==", + "dev": true + }, + "@babel/plugin-proposal-async-generator-functions": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.2.0.tgz", + "integrity": "sha512-+Dfo/SCQqrwx48ptLVGLdE39YtWRuKc/Y9I5Fy0P1DDBB9lsAHpjcEJQt+4IifuSOSTLBKJObJqMvaO1pIE8LQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-remap-async-to-generator": "7.1.0", + "@babel/plugin-syntax-async-generators": "7.2.0" + } + }, + "@babel/plugin-proposal-class-properties": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.4.4.tgz", + "integrity": "sha512-WjKTI8g8d5w1Bc9zgwSz2nfrsNQsXcCf9J9cdCvrJV6RF56yztwm4TmJC0MgJ9tvwO9gUA/mcYe89bLdGfiXFg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "7.4.4", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-proposal-json-strings": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.2.0.tgz", + "integrity": "sha512-MAFV1CA/YVmYwZG0fBQyXhmj0BHCB5egZHCKWIFVv/XCxAeVGIHfos3SwDck4LvCllENIAg7xMKOG5kH0dzyUg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-json-strings": "7.2.0" + } + }, + "@babel/plugin-proposal-object-rest-spread": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.4.4.tgz", + "integrity": "sha512-dMBG6cSPBbHeEBdFXeQ2QLc5gUpg4Vkaz8octD4aoW/ISO+jBOcsuxYL7bsb5WSu8RLP6boxrBIALEHgoHtO9g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-object-rest-spread": "7.2.0" + } + }, + "@babel/plugin-proposal-optional-catch-binding": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.2.0.tgz", + "integrity": "sha512-mgYj3jCcxug6KUcX4OBoOJz3CMrwRfQELPQ5560F70YQUBZB7uac9fqaWamKR1iWUzGiK2t0ygzjTScZnVz75g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-optional-catch-binding": "7.2.0" + } + }, + "@babel/plugin-proposal-unicode-property-regex": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.4.4.tgz", + "integrity": "sha512-j1NwnOqMG9mFUOH58JTFsA/+ZYzQLUZ/drqWUqxCYLGeu2JFZL8YrNC9hBxKmWtAuOCHPcRpgv7fhap09Fb4kA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-regex": "7.4.4", + "regexpu-core": "4.5.4" + } + }, + "@babel/plugin-syntax-async-generators": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.2.0.tgz", + "integrity": "sha512-1ZrIRBv2t0GSlcwVoQ6VgSLpLgiN/FVQUzt9znxo7v2Ov4jJrs8RY8tv0wvDmFN3qIdMKWrmMMW6yZ0G19MfGg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-syntax-flow": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.2.0.tgz", + "integrity": "sha512-r6YMuZDWLtLlu0kqIim5o/3TNRAlWb073HwT3e2nKf9I8IIvOggPrnILYPsrrKilmn/mYEMCf/Z07w3yQJF6dg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-syntax-json-strings": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.2.0.tgz", + "integrity": "sha512-5UGYnMSLRE1dqqZwug+1LISpA403HzlSfsg6P9VXU6TBjcSHeNlw4DxDx7LgpF+iKZoOG/+uzqoRHTdcUpiZNg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-syntax-jsx": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.2.0.tgz", + "integrity": "sha512-VyN4QANJkRW6lDBmENzRszvZf3/4AXaj9YR7GwrWeeN9tEBPuXbmDYVU9bYBN0D70zCWVwUy0HWq2553VCb6Hw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-syntax-object-rest-spread": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.2.0.tgz", + "integrity": "sha512-t0JKGgqk2We+9may3t0xDdmneaXmyxq0xieYcKHxIsrJO64n1OiMWNUtc5gQK1PA0NpdCRrtZp4z+IUaKugrSA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-syntax-optional-catch-binding": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.2.0.tgz", + "integrity": "sha512-bDe4xKNhb0LI7IvZHiA13kff0KEfaGX/Hv4lMA9+7TEc63hMNvfKo6ZFpXhKuEp+II/q35Gc4NoMeDZyaUbj9w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-syntax-typescript": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.3.3.tgz", + "integrity": "sha512-dGwbSMA1YhVS8+31CnPR7LB4pcbrzcV99wQzby4uAfrkZPYZlQ7ImwdpzLqi6Z6IL02b8IAL379CaMwo0x5Lag==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-arrow-functions": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.2.0.tgz", + "integrity": "sha512-ER77Cax1+8/8jCB9fo4Ud161OZzWN5qawi4GusDuRLcDbDG+bIGYY20zb2dfAFdTRGzrfq2xZPvF0R64EHnimg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-async-to-generator": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.4.4.tgz", + "integrity": "sha512-YiqW2Li8TXmzgbXw+STsSqPBPFnGviiaSp6CYOq55X8GQ2SGVLrXB6pNid8HkqkZAzOH6knbai3snhP7v0fNwA==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "7.0.0", + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-remap-async-to-generator": "7.1.0" + } + }, + "@babel/plugin-transform-block-scoped-functions": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.2.0.tgz", + "integrity": "sha512-ntQPR6q1/NKuphly49+QiQiTN0O63uOwjdD6dhIjSWBI5xlrbUFh720TIpzBhpnrLfv2tNH/BXvLIab1+BAI0w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-block-scoping": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.4.4.tgz", + "integrity": "sha512-jkTUyWZcTrwxu5DD4rWz6rDB5Cjdmgz6z7M7RLXOJyCUkFBawssDGcGh8M/0FTSB87avyJI1HsTwUXp9nKA1PA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "lodash": "4.17.11" + } + }, + "@babel/plugin-transform-classes": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.4.4.tgz", + "integrity": "sha512-/e44eFLImEGIpL9qPxSRat13I5QNRgBLu2hOQJCF7VLy/otSM/sypV1+XaIw5+502RX/+6YaSAPmldk+nhHDPw==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "7.0.0", + "@babel/helper-define-map": "7.4.4", + "@babel/helper-function-name": "7.1.0", + "@babel/helper-optimise-call-expression": "7.0.0", + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-replace-supers": "7.4.4", + "@babel/helper-split-export-declaration": "7.4.4", + "globals": "11.12.0" + } + }, + "@babel/plugin-transform-computed-properties": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.2.0.tgz", + "integrity": "sha512-kP/drqTxY6Xt3NNpKiMomfgkNn4o7+vKxK2DDKcBG9sHj51vHqMBGy8wbDS/J4lMxnqs153/T3+DmCEAkC5cpA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-destructuring": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.4.4.tgz", + "integrity": "sha512-/aOx+nW0w8eHiEHm+BTERB2oJn5D127iye/SUQl7NjHy0lf+j7h4MKMMSOwdazGq9OxgiNADncE+SRJkCxjZpQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-dotall-regex": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.4.4.tgz", + "integrity": "sha512-P05YEhRc2h53lZDjRPk/OektxCVevFzZs2Gfjd545Wde3k+yFDbXORgl2e0xpbq8mLcKJ7Idss4fAg0zORN/zg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-regex": "7.4.4", + "regexpu-core": "4.5.4" + } + }, + "@babel/plugin-transform-duplicate-keys": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.2.0.tgz", + "integrity": "sha512-q+yuxW4DsTjNceUiTzK0L+AfQ0zD9rWaTLiUqHA8p0gxx7lu1EylenfzjeIWNkPy6e/0VG/Wjw9uf9LueQwLOw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-exponentiation-operator": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.2.0.tgz", + "integrity": "sha512-umh4hR6N7mu4Elq9GG8TOu9M0bakvlsREEC+ialrQN6ABS4oDQ69qJv1VtR3uxlKMCQMCvzk7vr17RHKcjx68A==", + "dev": true, + "requires": { + "@babel/helper-builder-binary-assignment-operator-visitor": "7.1.0", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-flow-strip-types": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.4.4.tgz", + "integrity": "sha512-WyVedfeEIILYEaWGAUWzVNyqG4sfsNooMhXWsu/YzOvVGcsnPb5PguysjJqI3t3qiaYj0BR8T2f5njdjTGe44Q==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-flow": "7.2.0" + } + }, + "@babel/plugin-transform-for-of": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.4.4.tgz", + "integrity": "sha512-9T/5Dlr14Z9TIEXLXkt8T1DU7F24cbhwhMNUziN3hB1AXoZcdzPcTiKGRn/6iOymDqtTKWnr/BtRKN9JwbKtdQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-function-name": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.4.4.tgz", + "integrity": "sha512-iU9pv7U+2jC9ANQkKeNF6DrPy4GBa4NWQtl6dHB4Pb3izX2JOEvDTFarlNsBj/63ZEzNNIAMs3Qw4fNCcSOXJA==", + "dev": true, + "requires": { + "@babel/helper-function-name": "7.1.0", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-literals": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.2.0.tgz", + "integrity": "sha512-2ThDhm4lI4oV7fVQ6pNNK+sx+c/GM5/SaML0w/r4ZB7sAneD/piDJtwdKlNckXeyGK7wlwg2E2w33C/Hh+VFCg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-member-expression-literals": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.2.0.tgz", + "integrity": "sha512-HiU3zKkSU6scTidmnFJ0bMX8hz5ixC93b4MHMiYebmk2lUVNGOboPsqQvx5LzooihijUoLR/v7Nc1rbBtnc7FA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-modules-amd": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.2.0.tgz", + "integrity": "sha512-mK2A8ucqz1qhrdqjS9VMIDfIvvT2thrEsIQzbaTdc5QFzhDjQv2CkJJ5f6BXIkgbmaoax3zBr2RyvV/8zeoUZw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "7.4.4", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-modules-commonjs": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.4.4.tgz", + "integrity": "sha512-4sfBOJt58sEo9a2BQXnZq+Q3ZTSAUXyK3E30o36BOGnJ+tvJ6YSxF0PG6kERvbeISgProodWuI9UVG3/FMY6iw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "7.4.4", + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-simple-access": "7.1.0" + } + }, + "@babel/plugin-transform-modules-systemjs": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.4.4.tgz", + "integrity": "sha512-MSiModfILQc3/oqnG7NrP1jHaSPryO6tA2kOMmAQApz5dayPxWiHqmq4sWH2xF5LcQK56LlbKByCd8Aah/OIkQ==", + "dev": true, + "requires": { + "@babel/helper-hoist-variables": "7.4.4", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-modules-umd": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.2.0.tgz", + "integrity": "sha512-BV3bw6MyUH1iIsGhXlOK6sXhmSarZjtJ/vMiD9dNmpY8QXFFQTj+6v92pcfy1iqa8DeAfJFwoxcrS/TUZda6sw==", + "dev": true, + "requires": { + "@babel/helper-module-transforms": "7.4.4", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.4.5.tgz", + "integrity": "sha512-z7+2IsWafTBbjNsOxU/Iv5CvTJlr5w4+HGu1HovKYTtgJ362f7kBcQglkfmlspKKZ3bgrbSGvLfNx++ZJgCWsg==", + "dev": true, + "requires": { + "regexp-tree": "0.1.10" + } + }, + "@babel/plugin-transform-new-target": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.4.4.tgz", + "integrity": "sha512-r1z3T2DNGQwwe2vPGZMBNjioT2scgWzK9BCnDEh+46z8EEwXBq24uRzd65I7pjtugzPSj921aM15RpESgzsSuA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-object-super": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.2.0.tgz", + "integrity": "sha512-VMyhPYZISFZAqAPVkiYb7dUe2AsVi2/wCT5+wZdsNO31FojQJa9ns40hzZ6U9f50Jlq4w6qwzdBB2uwqZ00ebg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-replace-supers": "7.4.4" + } + }, + "@babel/plugin-transform-parameters": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.4.4.tgz", + "integrity": "sha512-oMh5DUO1V63nZcu/ZVLQFqiihBGo4OpxJxR1otF50GMeCLiRx5nUdtokd+u9SuVJrvvuIh9OosRFPP4pIPnwmw==", + "dev": true, + "requires": { + "@babel/helper-call-delegate": "7.4.4", + "@babel/helper-get-function-arity": "7.0.0", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-property-literals": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.2.0.tgz", + "integrity": "sha512-9q7Dbk4RhgcLp8ebduOpCbtjh7C0itoLYHXd9ueASKAG/is5PQtMR5VJGka9NKqGhYEGn5ITahd4h9QeBMylWQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-react-display-name": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.2.0.tgz", + "integrity": "sha512-Htf/tPa5haZvRMiNSQSFifK12gtr/8vwfr+A9y69uF0QcU77AVu4K7MiHEkTxF7lQoHOL0F9ErqgfNEAKgXj7A==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-react-jsx": { + "version": "7.3.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.3.0.tgz", + "integrity": "sha512-a/+aRb7R06WcKvQLOu4/TpjKOdvVEKRLWFpKcNuHhiREPgGRB4TQJxq07+EZLS8LFVYpfq1a5lDUnuMdcCpBKg==", + "dev": true, + "requires": { + "@babel/helper-builder-react-jsx": "7.3.0", + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-jsx": "7.2.0" + } + }, + "@babel/plugin-transform-react-jsx-self": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-self/-/plugin-transform-react-jsx-self-7.2.0.tgz", + "integrity": "sha512-v6S5L/myicZEy+jr6ielB0OR8h+EH/1QFx/YJ7c7Ua+7lqsjj/vW6fD5FR9hB/6y7mGbfT4vAURn3xqBxsUcdg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-jsx": "7.2.0" + } + }, + "@babel/plugin-transform-react-jsx-source": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-source/-/plugin-transform-react-jsx-source-7.2.0.tgz", + "integrity": "sha512-A32OkKTp4i5U6aE88GwwcuV4HAprUgHcTq0sSafLxjr6AW0QahrCRCjxogkbbcdtpbXkuTOlgpjophCxb6sh5g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-jsx": "7.2.0" + } + }, + "@babel/plugin-transform-regenerator": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.4.5.tgz", + "integrity": "sha512-gBKRh5qAaCWntnd09S8QC7r3auLCqq5DI6O0DlfoyDjslSBVqBibrMdsqO+Uhmx3+BlOmE/Kw1HFxmGbv0N9dA==", + "dev": true, + "requires": { + "regenerator-transform": "0.14.0" + } + }, + "@babel/plugin-transform-reserved-words": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.2.0.tgz", + "integrity": "sha512-fz43fqW8E1tAB3DKF19/vxbpib1fuyCwSPE418ge5ZxILnBhWyhtPgz8eh1RCGGJlwvksHkyxMxh0eenFi+kFw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-shorthand-properties": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.2.0.tgz", + "integrity": "sha512-QP4eUM83ha9zmYtpbnyjTLAGKQritA5XW/iG9cjtuOI8s1RuL/3V6a3DeSHfKutJQ+ayUfeZJPcnCYEQzaPQqg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-spread": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.2.2.tgz", + "integrity": "sha512-KWfky/58vubwtS0hLqEnrWJjsMGaOeSBn90Ezn5Jeg9Z8KKHmELbP1yGylMlm5N6TPKeY9A2+UaSYLdxahg01w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-sticky-regex": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.2.0.tgz", + "integrity": "sha512-KKYCoGaRAf+ckH8gEL3JHUaFVyNHKe3ASNsZ+AlktgHevvxGigoIttrEJb8iKN03Q7Eazlv1s6cx2B2cQ3Jabw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-regex": "7.4.4" + } + }, + "@babel/plugin-transform-template-literals": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.4.4.tgz", + "integrity": "sha512-mQrEC4TWkhLN0z8ygIvEL9ZEToPhG5K7KDW3pzGqOfIGZ28Jb0POUkeWcoz8HnHvhFy6dwAT1j8OzqN8s804+g==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "7.0.0", + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-typeof-symbol": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.2.0.tgz", + "integrity": "sha512-2LNhETWYxiYysBtrBTqL8+La0jIoQQnIScUJc74OYvUGRmkskNY4EzLCnjHBzdmb38wqtTaixpo1NctEcvMDZw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0" + } + }, + "@babel/plugin-transform-typescript": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.4.5.tgz", + "integrity": "sha512-RPB/YeGr4ZrFKNwfuQRlMf2lxoCUaU01MTw39/OFE/RiL8HDjtn68BwEPft1P7JN4akyEmjGWAMNldOV7o9V2g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-syntax-typescript": "7.3.3" + } + }, + "@babel/plugin-transform-unicode-regex": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.4.4.tgz", + "integrity": "sha512-il+/XdNw01i93+M9J9u4T7/e/Ue/vWfNZE4IRUQjplu2Mqb/AFTDimkw2tdEdSH50wuQXZAbXSql0UphQke+vA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/helper-regex": "7.4.4", + "regexpu-core": "4.5.4" + } + }, + "@babel/preset-env": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.4.5.tgz", + "integrity": "sha512-f2yNVXM+FsR5V8UwcFeIHzHWgnhXg3NpRmy0ADvALpnhB0SLbCvrCRr4BLOUYbQNLS+Z0Yer46x9dJXpXewI7w==", + "dev": true, + "requires": { + "@babel/helper-module-imports": "7.0.0", + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-proposal-async-generator-functions": "7.2.0", + "@babel/plugin-proposal-json-strings": "7.2.0", + "@babel/plugin-proposal-object-rest-spread": "7.4.4", + "@babel/plugin-proposal-optional-catch-binding": "7.2.0", + "@babel/plugin-proposal-unicode-property-regex": "7.4.4", + "@babel/plugin-syntax-async-generators": "7.2.0", + "@babel/plugin-syntax-json-strings": "7.2.0", + "@babel/plugin-syntax-object-rest-spread": "7.2.0", + "@babel/plugin-syntax-optional-catch-binding": "7.2.0", + "@babel/plugin-transform-arrow-functions": "7.2.0", + "@babel/plugin-transform-async-to-generator": "7.4.4", + "@babel/plugin-transform-block-scoped-functions": "7.2.0", + "@babel/plugin-transform-block-scoping": "7.4.4", + "@babel/plugin-transform-classes": "7.4.4", + "@babel/plugin-transform-computed-properties": "7.2.0", + "@babel/plugin-transform-destructuring": "7.4.4", + "@babel/plugin-transform-dotall-regex": "7.4.4", + "@babel/plugin-transform-duplicate-keys": "7.2.0", + "@babel/plugin-transform-exponentiation-operator": "7.2.0", + "@babel/plugin-transform-for-of": "7.4.4", + "@babel/plugin-transform-function-name": "7.4.4", + "@babel/plugin-transform-literals": "7.2.0", + "@babel/plugin-transform-member-expression-literals": "7.2.0", + "@babel/plugin-transform-modules-amd": "7.2.0", + "@babel/plugin-transform-modules-commonjs": "7.4.4", + "@babel/plugin-transform-modules-systemjs": "7.4.4", + "@babel/plugin-transform-modules-umd": "7.2.0", + "@babel/plugin-transform-named-capturing-groups-regex": "7.4.5", + "@babel/plugin-transform-new-target": "7.4.4", + "@babel/plugin-transform-object-super": "7.2.0", + "@babel/plugin-transform-parameters": "7.4.4", + "@babel/plugin-transform-property-literals": "7.2.0", + "@babel/plugin-transform-regenerator": "7.4.5", + "@babel/plugin-transform-reserved-words": "7.2.0", + "@babel/plugin-transform-shorthand-properties": "7.2.0", + "@babel/plugin-transform-spread": "7.2.2", + "@babel/plugin-transform-sticky-regex": "7.2.0", + "@babel/plugin-transform-template-literals": "7.4.4", + "@babel/plugin-transform-typeof-symbol": "7.2.0", + "@babel/plugin-transform-unicode-regex": "7.4.4", + "@babel/types": "7.4.4", + "browserslist": "4.6.2", + "core-js-compat": "3.1.4", + "invariant": "2.2.4", + "js-levenshtein": "1.1.6", + "semver": "5.7.0" + } + }, + "@babel/preset-flow": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.0.0.tgz", + "integrity": "sha512-bJOHrYOPqJZCkPVbG1Lot2r5OSsB+iUOaxiHdlOeB1yPWS6evswVHwvkDLZ54WTaTRIk89ds0iHmGZSnxlPejQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-transform-flow-strip-types": "7.4.4" + } + }, + "@babel/preset-react": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.0.0.tgz", + "integrity": "sha512-oayxyPS4Zj+hF6Et11BwuBkmpgT/zMxyuZgFrMeZID6Hdh3dGlk4sHCAhdBCpuCKW2ppBfl2uCCetlrUIJRY3w==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-transform-react-display-name": "7.2.0", + "@babel/plugin-transform-react-jsx": "7.3.0", + "@babel/plugin-transform-react-jsx-self": "7.2.0", + "@babel/plugin-transform-react-jsx-source": "7.2.0" + } + }, + "@babel/preset-typescript": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.3.3.tgz", + "integrity": "sha512-mzMVuIP4lqtn4du2ynEfdO0+RYcslwrZiJHXu4MGaC1ctJiW2fyaeDrtjJGs7R/KebZ1sgowcIoWf4uRpEfKEg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "7.0.0", + "@babel/plugin-transform-typescript": "7.4.5" + } + }, + "@babel/register": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.4.4.tgz", + "integrity": "sha512-sn51H88GRa00+ZoMqCVgOphmswG4b7mhf9VOB0LUBAieykq2GnRFerlN+JQkO/ntT7wz4jaHNSRPg9IdMPEUkA==", + "dev": true, + "requires": { + "core-js": "3.1.4", + "find-cache-dir": "2.1.0", + "lodash": "4.17.11", + "mkdirp": "0.5.1", + "pirates": "4.0.1", + "source-map-support": "0.5.12" + } + }, + "@babel/template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.4.4.tgz", + "integrity": "sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw==", + "dev": true, + "requires": { + "@babel/code-frame": "7.0.0", + "@babel/parser": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@babel/traverse": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.4.5.tgz", + "integrity": "sha512-Vc+qjynwkjRmIFGxy0KYoPj4FdVDxLej89kMHFsWScq999uX+pwcX4v9mWRjW0KcAYTPAuVQl2LKP1wEVLsp+A==", + "dev": true, + "requires": { + "@babel/code-frame": "7.0.0", + "@babel/generator": "7.4.4", + "@babel/helper-function-name": "7.1.0", + "@babel/helper-split-export-declaration": "7.4.4", + "@babel/parser": "7.4.5", + "@babel/types": "7.4.4", + "debug": "4.1.1", + "globals": "11.12.0", + "lodash": "4.17.11" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "@babel/types": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.4.4.tgz", + "integrity": "sha512-dOllgYdnEFOebhkKCjzSVFqw/PmmB8pH6RGOWkY4GsboQNd47b1fBThBSwlHAq9alF9vc1M3+6oqR47R50L0tQ==", + "dev": true, + "requires": { + "esutils": "2.0.2", + "lodash": "4.17.11", + "to-fast-properties": "2.0.0" + } + }, + "@cnakazawa/watch": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@cnakazawa/watch/-/watch-1.0.3.tgz", + "integrity": "sha512-r5160ogAvGyHsal38Kux7YYtodEKOj89RGb28ht1jh3SJb08VwRwAKKJL0bGb04Zd/3r9FL3BFIc3bBidYffCA==", + "dev": true, + "requires": { + "exec-sh": "0.3.2", + "minimist": "1.2.0" + } + }, + "@jest/console": { + "version": "24.7.1", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-24.7.1.tgz", + "integrity": "sha512-iNhtIy2M8bXlAOULWVTUxmnelTLFneTNEkHCgPmgd+zNwy9zVddJ6oS5rZ9iwoscNdT5mMwUd0C51v/fSlzItg==", + "dev": true, + "requires": { + "@jest/source-map": "24.3.0", + "chalk": "2.4.2", + "slash": "2.0.0" + } + }, + "@jest/core": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-24.8.0.tgz", + "integrity": "sha512-R9rhAJwCBQzaRnrRgAdVfnglUuATXdwTRsYqs6NMdVcAl5euG8LtWDe+fVkN27YfKVBW61IojVsXKaOmSnqd/A==", + "dev": true, + "requires": { + "@jest/console": "24.7.1", + "@jest/reporters": "24.8.0", + "@jest/test-result": "24.8.0", + "@jest/transform": "24.8.0", + "@jest/types": "24.8.0", + "ansi-escapes": "3.2.0", + "chalk": "2.4.2", + "exit": "0.1.2", + "graceful-fs": "4.1.15", + "jest-changed-files": "24.8.0", + "jest-config": "24.8.0", + "jest-haste-map": "24.8.1", + "jest-message-util": "24.8.0", + "jest-regex-util": "24.3.0", + "jest-resolve-dependencies": "24.8.0", + "jest-runner": "24.8.0", + "jest-runtime": "24.8.0", + "jest-snapshot": "24.8.0", + "jest-util": "24.8.0", + "jest-validate": "24.8.0", + "jest-watcher": "24.8.0", + "micromatch": "3.1.10", + "p-each-series": "1.0.0", + "pirates": "4.0.1", + "realpath-native": "1.1.0", + "rimraf": "2.6.3", + "strip-ansi": "5.2.0" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "4.1.0" + } + } + } + }, + "@jest/environment": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-24.8.0.tgz", + "integrity": "sha512-vlGt2HLg7qM+vtBrSkjDxk9K0YtRBi7HfRFaDxoRtyi+DyVChzhF20duvpdAnKVBV6W5tym8jm0U9EfXbDk1tw==", + "dev": true, + "requires": { + "@jest/fake-timers": "24.8.0", + "@jest/transform": "24.8.0", + "@jest/types": "24.8.0", + "jest-mock": "24.8.0" + } + }, + "@jest/fake-timers": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-24.8.0.tgz", + "integrity": "sha512-2M4d5MufVXwi6VzZhJ9f5S/wU4ud2ck0kxPof1Iz3zWx6Y+V2eJrES9jEktB6O3o/oEyk+il/uNu9PvASjWXQw==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "jest-message-util": "24.8.0", + "jest-mock": "24.8.0" + } + }, + "@jest/reporters": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-24.8.0.tgz", + "integrity": "sha512-eZ9TyUYpyIIXfYCrw0UHUWUvE35vx5I92HGMgS93Pv7du+GHIzl+/vh8Qj9MCWFK/4TqyttVBPakWMOfZRIfxw==", + "dev": true, + "requires": { + "@jest/environment": "24.8.0", + "@jest/test-result": "24.8.0", + "@jest/transform": "24.8.0", + "@jest/types": "24.8.0", + "chalk": "2.4.2", + "exit": "0.1.2", + "glob": "7.1.4", + "istanbul-lib-coverage": "2.0.5", + "istanbul-lib-instrument": "3.3.0", + "istanbul-lib-report": "2.0.8", + "istanbul-lib-source-maps": "3.0.6", + "istanbul-reports": "2.2.6", + "jest-haste-map": "24.8.1", + "jest-resolve": "24.8.0", + "jest-runtime": "24.8.0", + "jest-util": "24.8.0", + "jest-worker": "24.6.0", + "node-notifier": "5.4.0", + "slash": "2.0.0", + "source-map": "0.6.1", + "string-length": "2.0.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@jest/source-map": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-24.3.0.tgz", + "integrity": "sha512-zALZt1t2ou8le/crCeeiRYzvdnTzaIlpOWaet45lNSqNJUnXbppUUFR4ZUAlzgDmKee4Q5P/tKXypI1RiHwgag==", + "dev": true, + "requires": { + "callsites": "3.1.0", + "graceful-fs": "4.1.15", + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@jest/test-result": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-24.8.0.tgz", + "integrity": "sha512-+YdLlxwizlfqkFDh7Mc7ONPQAhA4YylU1s529vVM1rsf67vGZH/2GGm5uO8QzPeVyaVMobCQ7FTxl38QrKRlng==", + "dev": true, + "requires": { + "@jest/console": "24.7.1", + "@jest/types": "24.8.0", + "@types/istanbul-lib-coverage": "2.0.1" + } + }, + "@jest/test-sequencer": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-24.8.0.tgz", + "integrity": "sha512-OzL/2yHyPdCHXEzhoBuq37CE99nkme15eHkAzXRVqthreWZamEMA0WoetwstsQBCXABhczpK03JNbc4L01vvLg==", + "dev": true, + "requires": { + "@jest/test-result": "24.8.0", + "jest-haste-map": "24.8.1", + "jest-runner": "24.8.0", + "jest-runtime": "24.8.0" + } + }, + "@jest/transform": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-24.8.0.tgz", + "integrity": "sha512-xBMfFUP7TortCs0O+Xtez2W7Zu1PLH9bvJgtraN1CDST6LBM/eTOZ9SfwS/lvV8yOfcDpFmwf9bq5cYbXvqsvA==", + "dev": true, + "requires": { + "@babel/core": "7.4.5", + "@jest/types": "24.8.0", + "babel-plugin-istanbul": "5.1.4", + "chalk": "2.4.2", + "convert-source-map": "1.6.0", + "fast-json-stable-stringify": "2.0.0", + "graceful-fs": "4.1.15", + "jest-haste-map": "24.8.1", + "jest-regex-util": "24.3.0", + "jest-util": "24.8.0", + "micromatch": "3.1.10", + "realpath-native": "1.1.0", + "slash": "2.0.0", + "source-map": "0.6.1", + "write-file-atomic": "2.4.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@jest/types": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-24.8.0.tgz", + "integrity": "sha512-g17UxVr2YfBtaMUxn9u/4+siG1ptg9IGYAYwvpwn61nBg779RXnjE/m7CxYcIzEt0AbHZZAHSEZNhkE2WxURVg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "2.0.1", + "@types/istanbul-reports": "1.1.1", + "@types/yargs": "12.0.12" + } + }, + "@mrmlnc/readdir-enhanced": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@mrmlnc/readdir-enhanced/-/readdir-enhanced-2.2.1.tgz", + "integrity": "sha512-bPHp6Ji8b41szTOcaP63VlnbbO5Ny6dwAATtY6JTjh5N2OLrb5Qk/Th5cRkRQhkWCt+EJsYrNB0MiL+Gpn6e3g==", + "dev": true, + "requires": { + "call-me-maybe": "1.0.1", + "glob-to-regexp": "0.3.0" + } + }, + "@nodelib/fs.stat": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-1.1.3.tgz", + "integrity": "sha512-shAmDyaQC4H92APFoIaVDHCx5bStIocgvbwQyxPRrbUY20V1EYTbSDchWbuwlMG3V17cprZhA6+78JfB+3DTPw==", + "dev": true + }, + "@sindresorhus/is": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-0.7.0.tgz", + "integrity": "sha512-ONhaKPIufzzrlNbqtWFFd+jlnemX6lJAgq9ZeiZtS7I1PIf/la7CW4m83rTXRnVnsMbW2k56pGYu7AUFJD9Pow==", + "dev": true + }, + "@types/anymatch": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@types/anymatch/-/anymatch-1.3.1.tgz", + "integrity": "sha512-/+CRPXpBDpo2RK9C68N3b2cOvO0Cf5B9aPijHsoDQTHivnGSObdOF2BRQOYjojWTDy6nQvMjmqRXIxH55VjxxA==", + "dev": true + }, + "@types/babel__core": { + "version": "7.1.2", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.1.2.tgz", + "integrity": "sha512-cfCCrFmiGY/yq0NuKNxIQvZFy9kY/1immpSpTngOnyIbD4+eJOG5mxphhHDv3CHL9GltO4GcKr54kGBg3RNdbg==", + "dev": true, + "requires": { + "@babel/parser": "7.4.5", + "@babel/types": "7.4.4", + "@types/babel__generator": "7.0.2", + "@types/babel__template": "7.0.2", + "@types/babel__traverse": "7.0.7" + } + }, + "@types/babel__generator": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.0.2.tgz", + "integrity": "sha512-NHcOfab3Zw4q5sEE2COkpfXjoE7o+PmqD9DQW4koUT3roNxwziUdXGnRndMat/LJNUtePwn1TlP4do3uoe3KZQ==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@types/babel__template": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.0.2.tgz", + "integrity": "sha512-/K6zCpeW7Imzgab2bLkLEbz0+1JlFSrUMdw7KoIIu+IUdu51GWaBZpd3y1VXGVXzynvGa4DaIaxNZHiON3GXUg==", + "dev": true, + "requires": { + "@babel/parser": "7.4.5", + "@babel/types": "7.4.4" + } + }, + "@types/babel__traverse": { + "version": "7.0.7", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.0.7.tgz", + "integrity": "sha512-CeBpmX1J8kWLcDEnI3Cl2Eo6RfbGvzUctA+CjZUhOKDFbLfcr7fc4usEqLNWetrlJd7RhAkyYe2czXop4fICpw==", + "dev": true, + "requires": { + "@babel/types": "7.4.4" + } + }, + "@types/events": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", + "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", + "dev": true + }, + "@types/glob": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", + "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", + "dev": true, + "requires": { + "@types/events": "3.0.0", + "@types/minimatch": "3.0.3", + "@types/node": "12.0.8" + } + }, + "@types/istanbul-lib-coverage": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.1.tgz", + "integrity": "sha512-hRJD2ahnnpLgsj6KWMYSrmXkM3rm2Dl1qkx6IOFD5FnuNPXJIG5L0dhgKXCYTRMGzU4n0wImQ/xfmRc4POUFlg==", + "dev": true + }, + "@types/istanbul-lib-report": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-1.1.1.tgz", + "integrity": "sha512-3BUTyMzbZa2DtDI2BkERNC6jJw2Mr2Y0oGI7mRxYNBPxppbtEK1F66u3bKwU2g+wxwWI7PAoRpJnOY1grJqzHg==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "2.0.1" + } + }, + "@types/istanbul-reports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-1.1.1.tgz", + "integrity": "sha512-UpYjBi8xefVChsCoBpKShdxTllC9pwISirfoZsUa2AAdQg/Jd2KQGtSbw+ya7GPo7x/wAPlH6JBhKhAsXUEZNA==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "2.0.1", + "@types/istanbul-lib-report": "1.1.1" + } + }, + "@types/minimatch": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", + "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", + "dev": true + }, + "@types/node": { + "version": "12.0.8", + "resolved": "https://registry.npmjs.org/@types/node/-/node-12.0.8.tgz", + "integrity": "sha512-b8bbUOTwzIY3V5vDTY1fIJ+ePKDUBqt2hC2woVGotdQQhG/2Sh62HOKHrT7ab+VerXAcPyAiTEipPu/FsreUtg==", + "dev": true + }, + "@types/stack-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-1.0.1.tgz", + "integrity": "sha512-l42BggppR6zLmpfU6fq9HEa2oGPEI8yrSPL3GITjfRInppYFahObbIQOQK3UGxEnyQpltZLaPe75046NOZQikw==", + "dev": true + }, + "@types/tapable": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.4.tgz", + "integrity": "sha512-78AdXtlhpCHT0K3EytMpn4JNxaf5tbqbLcbIRoQIHzpTIyjpxLQKRoxU55ujBXAtg3Nl2h/XWvfDa9dsMOd0pQ==", + "dev": true + }, + "@types/uglify-js": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.0.4.tgz", + "integrity": "sha512-SudIN9TRJ+v8g5pTG8RRCqfqTMNqgWCKKd3vtynhGzkIIjxaicNAMuY5TRadJ6tzDu3Dotf3ngaMILtmOdmWEQ==", + "dev": true, + "requires": { + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/webpack": { + "version": "4.4.32", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.4.32.tgz", + "integrity": "sha512-mNARoaSJTzbiHxtZbf9NULFilu2frqD+g9Iyl9V2jPYJWXi+AC3Hz8lQWPZ5LLtgUm7iF4SDDMB/1bPrbRQgFw==", + "dev": true, + "requires": { + "@types/anymatch": "1.3.1", + "@types/node": "12.0.8", + "@types/tapable": "1.0.4", + "@types/uglify-js": "3.0.4", + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "@types/yargs": { + "version": "12.0.12", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-12.0.12.tgz", + "integrity": "sha512-SOhuU4wNBxhhTHxYaiG5NY4HBhDIDnJF60GU+2LqHAdKKer86//e4yg69aENCtQ04n0ovz+tq2YPME5t5yp4pw==", + "dev": true + }, + "@webassemblyjs/ast": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.8.5.tgz", + "integrity": "sha512-aJMfngIZ65+t71C3y2nBBg5FFG0Okt9m0XEgWZ7Ywgn1oMAT8cNwx00Uv1cQyHtidq0Xn94R4TAywO+LCQ+ZAQ==", + "dev": true, + "requires": { + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5" + } + }, + "@webassemblyjs/floating-point-hex-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.8.5.tgz", + "integrity": "sha512-9p+79WHru1oqBh9ewP9zW95E3XAo+90oth7S5Re3eQnECGq59ly1Ri5tsIipKGpiStHsUYmY3zMLqtk3gTcOtQ==", + "dev": true + }, + "@webassemblyjs/helper-api-error": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.8.5.tgz", + "integrity": "sha512-Za/tnzsvnqdaSPOUXHyKJ2XI7PDX64kWtURyGiJJZKVEdFOsdKUCPTNEVFZq3zJ2R0G5wc2PZ5gvdTRFgm81zA==", + "dev": true + }, + "@webassemblyjs/helper-buffer": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.8.5.tgz", + "integrity": "sha512-Ri2R8nOS0U6G49Q86goFIPNgjyl6+oE1abW1pS84BuhP1Qcr5JqMwRFT3Ah3ADDDYGEgGs1iyb1DGX+kAi/c/Q==", + "dev": true + }, + "@webassemblyjs/helper-code-frame": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.8.5.tgz", + "integrity": "sha512-VQAadSubZIhNpH46IR3yWO4kZZjMxN1opDrzePLdVKAZ+DFjkGD/rf4v1jap744uPVU6yjL/smZbRIIJTOUnKQ==", + "dev": true, + "requires": { + "@webassemblyjs/wast-printer": "1.8.5" + } + }, + "@webassemblyjs/helper-fsm": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.8.5.tgz", + "integrity": "sha512-kRuX/saORcg8se/ft6Q2UbRpZwP4y7YrWsLXPbbmtepKr22i8Z4O3V5QE9DbZK908dh5Xya4Un57SDIKwB9eow==", + "dev": true + }, + "@webassemblyjs/helper-module-context": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.8.5.tgz", + "integrity": "sha512-/O1B236mN7UNEU4t9X7Pj38i4VoU8CcMHyy3l2cV/kIF4U5KoHXDVqcDuOs1ltkac90IM4vZdHc52t1x8Yfs3g==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "mamacro": "0.0.3" + } + }, + "@webassemblyjs/helper-wasm-bytecode": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.8.5.tgz", + "integrity": "sha512-Cu4YMYG3Ddl72CbmpjU/wbP6SACcOPVbHN1dI4VJNJVgFwaKf1ppeFJrwydOG3NDHxVGuCfPlLZNyEdIYlQ6QQ==", + "dev": true + }, + "@webassemblyjs/helper-wasm-section": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.8.5.tgz", + "integrity": "sha512-VV083zwR+VTrIWWtgIUpqfvVdK4ff38loRmrdDBgBT8ADXYsEZ5mPQ4Nde90N3UYatHdYoDIFb7oHzMncI02tA==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5" + } + }, + "@webassemblyjs/ieee754": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.8.5.tgz", + "integrity": "sha512-aaCvQYrvKbY/n6wKHb/ylAJr27GglahUO89CcGXMItrOBqRarUMxWLJgxm9PJNuKULwN5n1csT9bYoMeZOGF3g==", + "dev": true, + "requires": { + "@xtuc/ieee754": "1.2.0" + } + }, + "@webassemblyjs/leb128": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.8.5.tgz", + "integrity": "sha512-plYUuUwleLIziknvlP8VpTgO4kqNaH57Y3JnNa6DLpu/sGcP6hbVdfdX5aHAV716pQBKrfuU26BJK29qY37J7A==", + "dev": true, + "requires": { + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/utf8": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.8.5.tgz", + "integrity": "sha512-U7zgftmQriw37tfD934UNInokz6yTmn29inT2cAetAsaU9YeVCveWEwhKL1Mg4yS7q//NGdzy79nlXh3bT8Kjw==", + "dev": true + }, + "@webassemblyjs/wasm-edit": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.8.5.tgz", + "integrity": "sha512-A41EMy8MWw5yvqj7MQzkDjU29K7UJq1VrX2vWLzfpRHt3ISftOXqrtojn7nlPsZ9Ijhp5NwuODuycSvfAO/26Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/helper-wasm-section": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-opt": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "@webassemblyjs/wast-printer": "1.8.5" + } + }, + "@webassemblyjs/wasm-gen": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.8.5.tgz", + "integrity": "sha512-BCZBT0LURC0CXDzj5FXSc2FPTsxwp3nWcqXQdOZE4U7h7i8FqtFK5Egia6f9raQLpEKT1VL7zr4r3+QX6zArWg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" + } + }, + "@webassemblyjs/wasm-opt": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.8.5.tgz", + "integrity": "sha512-HKo2mO/Uh9A6ojzu7cjslGaHaUU14LdLbGEKqTR7PBKwT6LdPtLLh9fPY33rmr5wcOMrsWDbbdCHq4hQUdd37Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-buffer": "1.8.5", + "@webassemblyjs/wasm-gen": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5" + } + }, + "@webassemblyjs/wasm-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.8.5.tgz", + "integrity": "sha512-pi0SYE9T6tfcMkthwcgCpL0cM9nRYr6/6fjgDtL6q/ZqKHdMWvxitRi5JcZ7RI4SNJJYnYNaWy5UUrHQy998lw==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-wasm-bytecode": "1.8.5", + "@webassemblyjs/ieee754": "1.8.5", + "@webassemblyjs/leb128": "1.8.5", + "@webassemblyjs/utf8": "1.8.5" + } + }, + "@webassemblyjs/wast-parser": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.8.5.tgz", + "integrity": "sha512-daXC1FyKWHF1i11obK086QRlsMsY4+tIOKgBqI1lxAnkp9xe9YMcgOxm9kLe+ttjs5aWV2KKE1TWJCN57/Btsg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/floating-point-hex-parser": "1.8.5", + "@webassemblyjs/helper-api-error": "1.8.5", + "@webassemblyjs/helper-code-frame": "1.8.5", + "@webassemblyjs/helper-fsm": "1.8.5", + "@xtuc/long": "4.2.2" + } + }, + "@webassemblyjs/wast-printer": { + "version": "1.8.5", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.8.5.tgz", + "integrity": "sha512-w0U0pD4EhlnvRyeJzBqaVSJAo9w/ce7/WPogeXLzGkO6hzhr4GnQIZ4W4uUt5b9ooAaXPtnXlj0gzsXEOUNYMg==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/wast-parser": "1.8.5", + "@xtuc/long": "4.2.2" + } + }, + "@webpack-cli/serve": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-0.1.8.tgz", + "integrity": "sha512-gZUEX/12h3DL0+FAxkCbuVCK3LH0+p7jmpu2MFCi2g4FZWs37ZrBEtG06h5OZpx3yAaKzOtBe6vYP+0D7b3tlA==", + "dev": true, + "requires": { + "@webpack-cli/utils": "0.2.2", + "@webpack-cli/webpack-scaffold": "0.1.8", + "chalk": "2.4.2", + "cross-spawn": "6.0.5", + "inquirer": "6.3.1" + } + }, + "@webpack-cli/utils": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/@webpack-cli/utils/-/utils-0.2.2.tgz", + "integrity": "sha512-tzyRLHdZIO0GfTz8/LHUv5PBaYbaT3ekKG2nzXkiNnkLWBo9JYBhR6N94+9ahqSCGwZ+Q+3igM/frdesQP43Sg==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "cross-spawn": "6.0.5", + "findup-sync": "3.0.0", + "global-modules": "1.0.0", + "got": "8.3.2", + "jest": "24.8.0", + "jscodeshift": "0.6.4", + "log-symbols": "2.2.0", + "p-each-series": "1.0.0", + "prettier": "1.18.2", + "yeoman-environment": "2.3.4", + "yeoman-generator": "3.2.0" + }, + "dependencies": { + "findup-sync": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-3.0.0.tgz", + "integrity": "sha512-YbffarhcicEhOrm4CtrwdKBdCuz576RLdhJDsIfvNtxUuhdRet1qZcsMjqbePtAseKdAnDyM/IyXbu7PRPRLYg==", + "dev": true, + "requires": { + "detect-file": "1.0.0", + "is-glob": "4.0.1", + "micromatch": "3.1.10", + "resolve-dir": "1.0.1" + } + } + } + }, + "@webpack-cli/webpack-scaffold": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/@webpack-cli/webpack-scaffold/-/webpack-scaffold-0.1.8.tgz", + "integrity": "sha512-sXL7VC7HQwaa0ppVT272kk060IqjrQxMge5WVo+Ls7F8cRklTdjkxPXhgWG0Q72/xeLOlu7hgCh5v2p86ULTng==", + "dev": true, + "requires": { + "jscodeshift": "0.6.4" + } + }, + "@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "abab": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.0.tgz", + "integrity": "sha512-sY5AXXVZv4Y1VACTtR11UJCPHHudgY5i26Qj5TypE6DKlIApbwb5uqhXcJ5UUGbvZNRh7EeIoW+LrJumBsKp7w==", + "dev": true + }, + "accepts": { + "version": "1.3.7", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", + "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", + "dev": true, + "requires": { + "mime-types": "2.1.24", + "negotiator": "0.6.2" + } + }, + "acorn": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.1.1.tgz", + "integrity": "sha512-jPTiwtOxaHNaAPg/dmrJ/beuzLRnXtB0kQPQ8JpotKJgTB6rX6c8mlf315941pyjBSaPg8NHXS9fhP4u17DpGA==", + "dev": true + }, + "acorn-dynamic-import": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-4.0.0.tgz", + "integrity": "sha512-d3OEjQV4ROpoflsnUA8HozoIR504TFxNivYEUi6uwz0IYhBkTDXGuWlNdMtybRt3nqVx/L6XqMt0FxkXuWKZhw==", + "dev": true + }, + "acorn-globals": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-4.3.2.tgz", + "integrity": "sha512-BbzvZhVtZP+Bs1J1HcwrQe8ycfO0wStkSGxuul3He3GkHOIZ6eTqOkPuw9IP1X3+IkOo4wiJmwkobzXYz4wewQ==", + "dev": true, + "requires": { + "acorn": "6.1.1", + "acorn-walk": "6.1.1" + } + }, + "acorn-walk": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-6.1.1.tgz", + "integrity": "sha512-OtUw6JUTgxA2QoqqmrmQ7F2NYqiBPi/L2jqHyFtllhOUvXYQXf0Z1CYUinIfyT4bTCGmrA7gX9FvHA81uzCoVw==", + "dev": true + }, + "ajv": { + "version": "6.10.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.0.tgz", + "integrity": "sha512-nffhOpkymDECQyR0mnsUtoCE8RlX38G0rYP+wgLWFyZuUyuuojSSvi/+euOiQBIn63whYwYVIIH1TvE3tu4OEg==", + "dev": true, + "requires": { + "fast-deep-equal": "2.0.1", + "fast-json-stable-stringify": "2.0.0", + "json-schema-traverse": "0.4.1", + "uri-js": "4.2.2" + } + }, + "ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "dev": true + }, + "ajv-keywords": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.0.tgz", + "integrity": "sha512-aUjdRFISbuFOl0EIZc+9e4FfZp0bDZgAdOOf30bJmw8VM9v84SHyVyxDfbWxpGYbdZD/9XoKxfHVNmxPkhwyGw==", + "dev": true + }, + "ansi-colors": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-3.2.4.tgz", + "integrity": "sha512-hHUXGagefjN2iRrID63xckIvotOXOojhQKWIPUZ4mNUZ9nLZW+7FMNoE1lOkEhNWYsx/7ysGIuJYCiMAA9FnrA==", + "dev": true + }, + "ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true + }, + "ansi-html": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", + "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", + "dev": true + }, + "ansi-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.0.tgz", + "integrity": "sha1-7QMXwyIGT3lGbAKWa922Bas32Zg=", + "dev": true + }, + "ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "requires": { + "color-convert": "1.9.3" + } + }, + "anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "dev": true, + "requires": { + "micromatch": "3.1.10", + "normalize-path": "2.1.1" + }, + "dependencies": { + "normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", + "dev": true, + "requires": { + "remove-trailing-separator": "1.1.0" + } + } + } + }, + "aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", + "dev": true + }, + "arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", + "dev": true + }, + "arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "dev": true + }, + "arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", + "dev": true + }, + "array-differ": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-differ/-/array-differ-1.0.0.tgz", + "integrity": "sha1-7/UuN1gknTO+QCuLuOVkuytdQDE=", + "dev": true + }, + "array-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-equal/-/array-equal-1.0.0.tgz", + "integrity": "sha1-jCpe8kcv2ep0KwTHenUJO6J1fJM=", + "dev": true + }, + "array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "dev": true + }, + "array-union": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-1.0.2.tgz", + "integrity": "sha1-mjRBDk9OPaI96jdb5b5w8kd47Dk=", + "dev": true, + "requires": { + "array-uniq": "1.0.3" + } + }, + "array-uniq": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/array-uniq/-/array-uniq-1.0.3.tgz", + "integrity": "sha1-r2rId6Jcx/dOBYiUdThY39sk/bY=", + "dev": true + }, + "array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", + "dev": true + }, + "arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha1-iYUI2iIm84DfkEcoRWhJwVAaSw0=", + "dev": true + }, + "asn1": { + "version": "0.2.4", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", + "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", + "dev": true, + "requires": { + "safer-buffer": "2.1.2" + } + }, + "asn1.js": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", + "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "inherits": "2.0.3", + "minimalistic-assert": "1.0.1" + } + }, + "assert": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", + "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", + "dev": true, + "requires": { + "object-assign": "4.1.1", + "util": "0.10.3" + }, + "dependencies": { + "inherits": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", + "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", + "dev": true + }, + "util": { + "version": "0.10.3", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", + "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", + "dev": true, + "requires": { + "inherits": "2.0.1" + } + } + } + }, + "assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", + "dev": true + }, + "assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", + "dev": true + }, + "ast-types": { + "version": "0.11.7", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.11.7.tgz", + "integrity": "sha512-2mP3TwtkY/aTv5X3ZsMpNAbOnyoC/aMJwJSoaELPkHId0nSQgFcnU4dRW3isxiz7+zBexk0ym3WNVjMiQBnJSw==", + "dev": true + }, + "astral-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-1.0.0.tgz", + "integrity": "sha512-+Ryf6g3BKoRc7jfp7ad8tM4TtMiaWvbF/1/sQcZPkkS7ag3D5nMBCe2UfOTONtAkaG0tO0ij3C5Lwmf1EiyjHg==", + "dev": true + }, + "async": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/async/-/async-1.5.2.tgz", + "integrity": "sha1-7GphrlZIDAw8skHJVhjiCJL5Zyo=", + "dev": true + }, + "async-each": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", + "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", + "dev": true + }, + "async-limiter": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.0.tgz", + "integrity": "sha512-jp/uFnooOiO+L211eZOoSyzpOITMXx1rBITauYykG3BRYPu8h0UcxsPNB04RR5vo4Tyz3+ay17tR6JVf9qzYWg==", + "dev": true + }, + "asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", + "dev": true + }, + "atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "dev": true + }, + "aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", + "dev": true + }, + "aws4": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", + "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", + "dev": true + }, + "babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "dev": true + }, + "babel-jest": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-24.8.0.tgz", + "integrity": "sha512-+5/kaZt4I9efoXzPlZASyK/lN9qdRKmmUav9smVc0ruPQD7IsfucQ87gpOE8mn2jbDuS6M/YOW6n3v9ZoIfgnw==", + "dev": true, + "requires": { + "@jest/transform": "24.8.0", + "@jest/types": "24.8.0", + "@types/babel__core": "7.1.2", + "babel-plugin-istanbul": "5.1.4", + "babel-preset-jest": "24.6.0", + "chalk": "2.4.2", + "slash": "2.0.0" + } + }, + "babel-loader": { + "version": "8.0.6", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.0.6.tgz", + "integrity": "sha512-4BmWKtBOBm13uoUwd08UwjZlaw3O9GWf456R9j+5YykFZ6LUIjIKLc0zEZf+hauxPOJs96C8k6FvYD09vWzhYw==", + "dev": true, + "requires": { + "find-cache-dir": "2.1.0", + "loader-utils": "1.2.3", + "mkdirp": "0.5.1", + "pify": "4.0.1" + } + }, + "babel-plugin-istanbul": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-5.1.4.tgz", + "integrity": "sha512-dySz4VJMH+dpndj0wjJ8JPs/7i1TdSPb1nRrn56/92pKOF9VKC1FMFJmMXjzlGGusnCAqujP6PBCiKq0sVA+YQ==", + "dev": true, + "requires": { + "find-up": "3.0.0", + "istanbul-lib-instrument": "3.3.0", + "test-exclude": "5.2.3" + } + }, + "babel-plugin-jest-hoist": { + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-24.6.0.tgz", + "integrity": "sha512-3pKNH6hMt9SbOv0F3WVmy5CWQ4uogS3k0GY5XLyQHJ9EGpAT9XWkFd2ZiXXtkwFHdAHa5j7w7kfxSP5lAIwu7w==", + "dev": true, + "requires": { + "@types/babel__traverse": "7.0.7" + } + }, + "babel-preset-jest": { + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-24.6.0.tgz", + "integrity": "sha512-pdZqLEdmy1ZK5kyRUfvBb2IfTPb2BUvIJczlPspS8fWmBQslNNDBqVfh7BW5leOVJMDZKzjD8XEyABTk6gQ5yw==", + "dev": true, + "requires": { + "@babel/plugin-syntax-object-rest-spread": "7.2.0", + "babel-plugin-jest-hoist": "24.6.0" + } + }, + "balanced-match": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", + "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", + "dev": true + }, + "base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dev": true, + "requires": { + "cache-base": "1.0.1", + "class-utils": "0.3.6", + "component-emitter": "1.3.0", + "define-property": "1.0.0", + "isobject": "3.0.1", + "mixin-deep": "1.3.1", + "pascalcase": "0.1.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "1.0.2" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "1.0.0", + "is-data-descriptor": "1.0.0", + "kind-of": "6.0.2" + } + } + } + }, + "base64-js": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.0.tgz", + "integrity": "sha512-ccav/yGvoa80BQDljCxsmmQ3Xvx60/UpBIij5QN21W3wBi/hhIC9OoO+KLpu9IJTS9j4DRVJ3aDDF9cMSoa2lw==", + "dev": true + }, + "batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", + "dev": true + }, + "bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", + "dev": true, + "requires": { + "tweetnacl": "0.14.5" + } + }, + "benchmark": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/benchmark/-/benchmark-2.1.4.tgz", + "integrity": "sha1-CfPeMckWQl1JjMLuVloOvzwqVik=", + "requires": { + "lodash": "4.17.11", + "platform": "1.3.5" + } + }, + "big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "dev": true + }, + "binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "dev": true + }, + "binaryextensions": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/binaryextensions/-/binaryextensions-2.1.2.tgz", + "integrity": "sha512-xVNN69YGDghOqCCtA6FI7avYrr02mTJjOgB0/f1VPD3pJC8QEvjTKWc4epDx8AqxxA75NI0QpVM2gPJXUbE4Tg==", + "dev": true + }, + "bluebird": { + "version": "3.5.5", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.5.5.tgz", + "integrity": "sha512-5am6HnnfN+urzt4yfg7IgTbotDjIT/u8AJpEt0sIU9FtXfVeezXAPKswrG+xKUCOYAINpSdgZVDU6QFh+cuH3w==", + "dev": true + }, + "bn.js": { + "version": "4.11.8", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", + "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", + "dev": true + }, + "body-parser": { + "version": "1.19.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", + "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "content-type": "1.0.4", + "debug": "2.6.9", + "depd": "1.1.2", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "on-finished": "2.3.0", + "qs": "6.7.0", + "raw-body": "2.4.0", + "type-is": "1.6.18" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + } + } + }, + "bonjour": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/bonjour/-/bonjour-3.5.0.tgz", + "integrity": "sha1-jokKGD2O6aI5OzhExpGkK897yfU=", + "dev": true, + "requires": { + "array-flatten": "2.1.2", + "deep-equal": "1.0.1", + "dns-equal": "1.0.0", + "dns-txt": "2.0.2", + "multicast-dns": "6.2.3", + "multicast-dns-service-types": "1.1.0" + } + }, + "brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "requires": { + "balanced-match": "1.0.0", + "concat-map": "0.0.1" + } + }, + "braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dev": true, + "requires": { + "arr-flatten": "1.1.0", + "array-unique": "0.3.2", + "extend-shallow": "2.0.1", + "fill-range": "4.0.0", + "isobject": "3.0.1", + "repeat-element": "1.1.3", + "snapdragon": "0.8.2", + "snapdragon-node": "2.1.1", + "split-string": "3.1.0", + "to-regex": "3.0.2" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", + "dev": true + }, + "browser-process-hrtime": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-0.1.3.tgz", + "integrity": "sha512-bRFnI4NnjO6cnyLmOV/7PVoDEMJChlcfN0z4s1YMBY989/SvlfMI1lgCnkFUs53e9gQF+w7qu7XdllSTiSl8Aw==", + "dev": true + }, + "browser-resolve": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/browser-resolve/-/browser-resolve-1.11.3.tgz", + "integrity": "sha512-exDi1BYWB/6raKHmDTCicQfTkqwN5fioMFV4j8BsfMU4R2DK/QfZfK7kOVkmWCNANf0snkBzqGqAJBao9gZMdQ==", + "dev": true, + "requires": { + "resolve": "1.1.7" + }, + "dependencies": { + "resolve": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.1.7.tgz", + "integrity": "sha1-IDEU2CrSxe2ejgQRs5ModeiJ6Xs=", + "dev": true + } + } + }, + "browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dev": true, + "requires": { + "buffer-xor": "1.0.3", + "cipher-base": "1.0.4", + "create-hash": "1.2.0", + "evp_bytestokey": "1.0.3", + "inherits": "2.0.3", + "safe-buffer": "5.1.2" + } + }, + "browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dev": true, + "requires": { + "browserify-aes": "1.2.0", + "browserify-des": "1.0.2", + "evp_bytestokey": "1.0.3" + } + }, + "browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dev": true, + "requires": { + "cipher-base": "1.0.4", + "des.js": "1.0.0", + "inherits": "2.0.3", + "safe-buffer": "5.1.2" + } + }, + "browserify-rsa": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", + "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "randombytes": "2.1.0" + } + }, + "browserify-sign": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", + "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "browserify-rsa": "4.0.1", + "create-hash": "1.2.0", + "create-hmac": "1.1.7", + "elliptic": "6.4.1", + "inherits": "2.0.3", + "parse-asn1": "5.1.4" + } + }, + "browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dev": true, + "requires": { + "pako": "1.0.10" + } + }, + "browserslist": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.6.2.tgz", + "integrity": "sha512-2neU/V0giQy9h3XMPwLhEY3+Ao0uHSwHvU8Q1Ea6AgLVL1sXbX3dzPrJ8NWe5Hi4PoTkCYXOtVR9rfRLI0J/8Q==", + "dev": true, + "requires": { + "caniuse-lite": "1.0.30000974", + "electron-to-chromium": "1.3.161", + "node-releases": "1.1.23" + } + }, + "bser": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.0.0.tgz", + "integrity": "sha1-mseNPtXZFYBP2HrLFYvHlxR6Fxk=", + "dev": true, + "requires": { + "node-int64": "0.4.0" + } + }, + "buffer": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", + "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", + "dev": true, + "requires": { + "base64-js": "1.3.0", + "ieee754": "1.1.13", + "isarray": "1.0.0" + } + }, + "buffer-alloc": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", + "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", + "dev": true, + "requires": { + "buffer-alloc-unsafe": "1.1.0", + "buffer-fill": "1.0.0" + } + }, + "buffer-alloc-unsafe": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", + "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", + "dev": true + }, + "buffer-fill": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", + "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", + "dev": true + }, + "buffer-from": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", + "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", + "dev": true + }, + "buffer-indexof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/buffer-indexof/-/buffer-indexof-1.1.1.tgz", + "integrity": "sha512-4/rOEg86jivtPTeOUUT61jJO1Ya1TrR/OkqCSZDyq84WJh3LuuiphBYJN+fm5xufIk4XAFcEwte/8WzC8If/1g==", + "dev": true + }, + "buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", + "dev": true + }, + "builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", + "dev": true + }, + "bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", + "dev": true + }, + "cacache": { + "version": "11.3.2", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-11.3.2.tgz", + "integrity": "sha512-E0zP4EPGDOaT2chM08Als91eYnf8Z+eH1awwwVsngUmgppfM5jjJ8l3z5vO5p5w/I3LsiXawb1sW0VY65pQABg==", + "dev": true, + "requires": { + "bluebird": "3.5.5", + "chownr": "1.1.1", + "figgy-pudding": "3.5.1", + "glob": "7.1.4", + "graceful-fs": "4.1.15", + "lru-cache": "5.1.1", + "mississippi": "3.0.0", + "mkdirp": "0.5.1", + "move-concurrently": "1.0.1", + "promise-inflight": "1.0.1", + "rimraf": "2.6.3", + "ssri": "6.0.1", + "unique-filename": "1.1.1", + "y18n": "4.0.0" + } + }, + "cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dev": true, + "requires": { + "collection-visit": "1.0.0", + "component-emitter": "1.3.0", + "get-value": "2.0.6", + "has-value": "1.0.0", + "isobject": "3.0.1", + "set-value": "2.0.0", + "to-object-path": "0.3.0", + "union-value": "1.0.0", + "unset-value": "1.0.0" + } + }, + "cacheable-request": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-2.1.4.tgz", + "integrity": "sha1-DYCIAbY0KtM8kd+dC0TcCbkeXD0=", + "dev": true, + "requires": { + "clone-response": "1.0.2", + "get-stream": "3.0.0", + "http-cache-semantics": "3.8.1", + "keyv": "3.0.0", + "lowercase-keys": "1.0.0", + "normalize-url": "2.0.1", + "responselike": "1.0.2" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "lowercase-keys": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.0.tgz", + "integrity": "sha1-TjNms55/VFfjXxMkvfb4jQv8cwY=", + "dev": true + } + } + }, + "call-me-maybe": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/call-me-maybe/-/call-me-maybe-1.0.1.tgz", + "integrity": "sha1-JtII6onje1y95gJQoV8DHBak1ms=", + "dev": true + }, + "callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true + }, + "camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true + }, + "caniuse-lite": { + "version": "1.0.30000974", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30000974.tgz", + "integrity": "sha512-xc3rkNS/Zc3CmpMKuczWEdY2sZgx09BkAxfvkxlAEBTqcMHeL8QnPqhKse+5sRTi3nrw2pJwToD2WvKn1Uhvww==", + "dev": true + }, + "capture-exit": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/capture-exit/-/capture-exit-2.0.0.tgz", + "integrity": "sha512-PiT/hQmTonHhl/HFGN+Lx3JJUznrVYJ3+AQsnthneZbvW7x+f08Tk7yLJTLEOUvBTbduLeeBkxEaYXUOUrRq6g==", + "dev": true, + "requires": { + "rsvp": "4.8.5" + } + }, + "caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", + "dev": true + }, + "chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "requires": { + "ansi-styles": "3.2.1", + "escape-string-regexp": "1.0.5", + "supports-color": "5.5.0" + } + }, + "chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true + }, + "chart.js": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-2.8.0.tgz", + "integrity": "sha512-Di3wUL4BFvqI5FB5K26aQ+hvWh8wnP9A3DWGvXHVkO13D3DSnaSsdZx29cXlEsYKVkn1E2az+ZYFS4t0zi8x0w==", + "requires": { + "chartjs-color": "2.3.0", + "moment": "2.24.0" + } + }, + "chartjs-color": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/chartjs-color/-/chartjs-color-2.3.0.tgz", + "integrity": "sha512-hEvVheqczsoHD+fZ+tfPUE+1+RbV6b+eksp2LwAhwRTVXEjCSEavvk+Hg3H6SZfGlPh/UfmWKGIvZbtobOEm3g==", + "requires": { + "chartjs-color-string": "0.6.0", + "color-convert": "0.5.3" + }, + "dependencies": { + "color-convert": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-0.5.3.tgz", + "integrity": "sha1-vbbGnOZg+t/+CwAHzER+G59ygr0=" + } + } + }, + "chartjs-color-string": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/chartjs-color-string/-/chartjs-color-string-0.6.0.tgz", + "integrity": "sha512-TIB5OKn1hPJvO7JcteW4WY/63v6KwEdt6udfnDE9iCAZgy+V4SrbSxoIbTw/xkUIapjEI4ExGtD0+6D3KyFd7A==", + "requires": { + "color-name": "1.1.3" + } + }, + "chokidar": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.6.tgz", + "integrity": "sha512-V2jUo67OKkc6ySiRpJrjlpJKl9kDuG+Xb8VgsGzb+aEouhgS1D0weyPU4lEzdAcsCAvrih2J2BqyXqHWvVLw5g==", + "dev": true, + "requires": { + "anymatch": "2.0.0", + "async-each": "1.0.3", + "braces": "2.3.2", + "glob-parent": "3.1.0", + "inherits": "2.0.3", + "is-binary-path": "1.0.1", + "is-glob": "4.0.1", + "normalize-path": "3.0.0", + "path-is-absolute": "1.0.1", + "readdirp": "2.2.1", + "upath": "1.1.2" + } + }, + "chownr": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.1.tgz", + "integrity": "sha512-j38EvO5+LHX84jlo6h4UzmOwi0UgW61WRyPtJz4qaadK5eY3BTS5TY/S1Stc3Uk2lIM6TPevAlULiEJwie860g==", + "dev": true + }, + "chrome-trace-event": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.2.tgz", + "integrity": "sha512-9e/zx1jw7B4CO+c/RXoCsfg/x1AfUBioy4owYH0bJprEYAx5hRFLRhWBqHAG57D0ZM4H7vxbP7bPe0VwhQRYDQ==", + "dev": true, + "requires": { + "tslib": "1.10.0" + } + }, + "ci-info": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-2.0.0.tgz", + "integrity": "sha512-5tK7EtrZ0N+OLFMthtqOj4fI2Jeb88C4CAZPu25LDVUgXJ0A3Js4PMGqrn0JU1W0Mh1/Z8wZzYPxqUrXeBboCQ==", + "dev": true + }, + "cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "safe-buffer": "5.1.2" + } + }, + "class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dev": true, + "requires": { + "arr-union": "3.1.0", + "define-property": "0.2.5", + "isobject": "3.0.1", + "static-extend": "0.1.2" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "0.1.6" + } + } + } + }, + "clean-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clean-webpack-plugin/-/clean-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-MciirUH5r+cYLGCOL5JX/ZLzOZbVr1ot3Fw+KcvbhUb6PM+yycqd9ZhIlcigQ5gl+XhppNmw3bEFuaaMNyLj3A==", + "dev": true, + "requires": { + "@types/webpack": "4.4.32", + "del": "4.1.1" + } + }, + "cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha1-s12sN2R5+sw+lHR9QdDQ9SOP/LU=", + "dev": true, + "requires": { + "restore-cursor": "2.0.0" + } + }, + "cli-table": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cli-table/-/cli-table-0.3.1.tgz", + "integrity": "sha1-9TsFJmqLGguTSz0IIebi3FkUriM=", + "dev": true, + "requires": { + "colors": "1.0.3" + }, + "dependencies": { + "colors": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.0.3.tgz", + "integrity": "sha1-BDP0TYCWgP3rYO0mDxsMJi6CpAs=", + "dev": true + } + } + }, + "cli-width": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.0.tgz", + "integrity": "sha1-/xnt6Kml5XkyQUewwR8PvLq+1jk=", + "dev": true + }, + "cliui": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-4.1.0.tgz", + "integrity": "sha512-4FG+RSG9DL7uEwRUZXZn3SS34DiDPfzP0VOiEwtUWlE+AR2EIg+hSyvrIgUUfhdgR/UkAeW2QHgeP+hWrXs7jQ==", + "dev": true, + "requires": { + "string-width": "2.1.1", + "strip-ansi": "4.0.0", + "wrap-ansi": "2.1.0" + } + }, + "clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", + "dev": true + }, + "clone-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-buffer/-/clone-buffer-1.0.0.tgz", + "integrity": "sha1-4+JbIHrE5wGvch4staFnksrD3Fg=", + "dev": true + }, + "clone-response": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/clone-response/-/clone-response-1.0.2.tgz", + "integrity": "sha1-0dyXOSAxTfZ/vrlCI7TuNQI56Ws=", + "dev": true, + "requires": { + "mimic-response": "1.0.1" + } + }, + "clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha1-uI+UqCzzi4eR1YBG6kAprYjKmdE=", + "dev": true + }, + "cloneable-readable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cloneable-readable/-/cloneable-readable-1.1.3.tgz", + "integrity": "sha512-2EF8zTQOxYq70Y4XKtorQupqF0m49MBz2/yf5Bj+MHjvpG3Hy7sImifnqD6UA+TKYxeSV+u6qqQPawN5UvnpKQ==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "process-nextick-args": "2.0.0", + "readable-stream": "2.3.6" + } + }, + "co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", + "dev": true + }, + "code-point-at": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", + "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", + "dev": true + }, + "collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", + "dev": true, + "requires": { + "map-visit": "1.0.0", + "object-visit": "1.0.1" + } + }, + "color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "requires": { + "color-name": "1.1.3" + } + }, + "color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=" + }, + "colors": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/colors/-/colors-1.3.3.tgz", + "integrity": "sha512-mmGt/1pZqYRjMxB1axhTo16/snVZ5krrKkcmMeVKxzECMMXoCgnvTPp10QgHfcbQZw8Dq2jMNG6je4JlWU0gWg==", + "dev": true + }, + "combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", + "dev": true, + "requires": { + "delayed-stream": "1.0.0" + } + }, + "commander": { + "version": "2.20.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.0.tgz", + "integrity": "sha512-7j2y+40w61zy6YC2iRNpUe/NwhNyoXrYpHMrSunaMG64nRnaf96zO/KMQR4OyN/UnE5KLyEBnKHd4aG3rskjpQ==", + "dev": true + }, + "commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha1-3dgA2gxmEnOTzKWVDqloo6rxJTs=", + "dev": true + }, + "component-emitter": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", + "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", + "dev": true + }, + "compressible": { + "version": "2.0.17", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz", + "integrity": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==", + "dev": true, + "requires": { + "mime-db": "1.40.0" + } + }, + "compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dev": true, + "requires": { + "accepts": "1.3.7", + "bytes": "3.0.0", + "compressible": "2.0.17", + "debug": "2.6.9", + "on-headers": "1.0.2", + "safe-buffer": "5.1.2", + "vary": "1.1.2" + } + }, + "concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", + "dev": true + }, + "concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "dev": true, + "requires": { + "buffer-from": "1.1.1", + "inherits": "2.0.3", + "readable-stream": "2.3.6", + "typedarray": "0.0.6" + } + }, + "connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "dev": true + }, + "console-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", + "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", + "dev": true, + "requires": { + "date-now": "0.1.4" + } + }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", + "dev": true + }, + "content-disposition": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", + "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "dev": true + }, + "convert-source-map": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.6.0.tgz", + "integrity": "sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "cookie": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", + "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", + "dev": true + }, + "cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", + "dev": true + }, + "copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dev": true, + "requires": { + "aproba": "1.2.0", + "fs-write-stream-atomic": "1.0.10", + "iferr": "0.1.5", + "mkdirp": "0.5.1", + "rimraf": "2.6.3", + "run-queue": "1.0.3" + } + }, + "copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", + "dev": true + }, + "copy-webpack-plugin": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/copy-webpack-plugin/-/copy-webpack-plugin-5.0.3.tgz", + "integrity": "sha512-PlZRs9CUMnAVylZq+vg2Juew662jWtwOXOqH4lbQD9ZFhRG9R7tVStOgHt21CBGVq7k5yIJaz8TXDLSjV+Lj8Q==", + "dev": true, + "requires": { + "cacache": "11.3.2", + "find-cache-dir": "2.1.0", + "glob-parent": "3.1.0", + "globby": "7.1.1", + "is-glob": "4.0.1", + "loader-utils": "1.2.3", + "minimatch": "3.0.4", + "normalize-path": "3.0.0", + "p-limit": "2.2.0", + "schema-utils": "1.0.0", + "serialize-javascript": "1.7.0", + "webpack-log": "2.0.0" + }, + "dependencies": { + "globby": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-7.1.1.tgz", + "integrity": "sha1-+yzP+UAfhgCUXfral0QMypcrhoA=", + "dev": true, + "requires": { + "array-union": "1.0.2", + "dir-glob": "2.0.0", + "glob": "7.1.4", + "ignore": "3.3.10", + "pify": "3.0.0", + "slash": "1.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + } + } + }, + "core-js": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.1.4.tgz", + "integrity": "sha512-YNZN8lt82XIMLnLirj9MhKDFZHalwzzrL9YLt6eb0T5D0EDl4IQ90IGkua8mHbnxNrkj1d8hbdizMc0Qmg1WnQ==", + "dev": true + }, + "core-js-compat": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.1.4.tgz", + "integrity": "sha512-Z5zbO9f1d0YrJdoaQhphVAnKPimX92D6z8lCGphH89MNRxlL1prI9ExJPqVwP0/kgkQCv8c4GJGT8X16yUncOg==", + "dev": true, + "requires": { + "browserslist": "4.6.2", + "core-js-pure": "3.1.4", + "semver": "6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", + "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", + "dev": true + } + } + }, + "core-js-pure": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.1.4.tgz", + "integrity": "sha512-uJ4Z7iPNwiu1foygbcZYJsJs1jiXrTTCvxfLDXNhI/I+NHbSIEyr548y4fcsCEyWY0XgfAG/qqaunJ1SThHenA==", + "dev": true + }, + "core-util-is": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", + "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", + "dev": true + }, + "create-ecdh": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", + "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "elliptic": "6.4.1" + } + }, + "create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dev": true, + "requires": { + "cipher-base": "1.0.4", + "inherits": "2.0.3", + "md5.js": "1.3.5", + "ripemd160": "2.0.2", + "sha.js": "2.4.11" + } + }, + "create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dev": true, + "requires": { + "cipher-base": "1.0.4", + "create-hash": "1.2.0", + "inherits": "2.0.3", + "ripemd160": "2.0.2", + "safe-buffer": "5.1.2", + "sha.js": "2.4.11" + } + }, + "cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "requires": { + "nice-try": "1.0.5", + "path-key": "2.0.1", + "semver": "5.7.0", + "shebang-command": "1.2.0", + "which": "1.3.1" + } + }, + "crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dev": true, + "requires": { + "browserify-cipher": "1.0.1", + "browserify-sign": "4.0.4", + "create-ecdh": "4.0.3", + "create-hash": "1.2.0", + "create-hmac": "1.1.7", + "diffie-hellman": "5.0.3", + "inherits": "2.0.3", + "pbkdf2": "3.0.17", + "public-encrypt": "4.0.3", + "randombytes": "2.1.0", + "randomfill": "1.0.4" + } + }, + "cssom": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.6.tgz", + "integrity": "sha512-DtUeseGk9/GBW0hl0vVPpU22iHL6YB5BUX7ml1hB+GMpo0NX5G4voX3kdWiMSEguFtcW3Vh3djqNF4aIe6ne0A==", + "dev": true + }, + "cssstyle": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-1.2.2.tgz", + "integrity": "sha512-43wY3kl1CVQSvL7wUY1qXkxVGkStjpkDmVjiIKX8R97uhajy8Bybay78uOtqvh7Q5GK75dNPfW0geWjE6qQQow==", + "dev": true, + "requires": { + "cssom": "0.3.6" + } + }, + "cyclist": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-0.2.2.tgz", + "integrity": "sha1-GzN5LhHpFKL9bW7WRHRkRE5fpkA=", + "dev": true + }, + "dargs": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/dargs/-/dargs-6.1.0.tgz", + "integrity": "sha512-5dVBvpBLBnPwSsYXqfybFyehMmC/EenKEcf23AhCTgTf48JFBbmJKqoZBsERDnjL0FyiVTYWdFsRfTLHxLyKdQ==", + "dev": true + }, + "dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "data-urls": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-1.1.0.tgz", + "integrity": "sha512-YTWYI9se1P55u58gL5GkQHW4P6VJBJ5iBT+B5a7i2Tjadhv52paJG0qHX4A0OR6/t52odI64KP2YvFpkDOi3eQ==", + "dev": true, + "requires": { + "abab": "2.0.0", + "whatwg-mimetype": "2.3.0", + "whatwg-url": "7.0.0" + }, + "dependencies": { + "whatwg-url": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-7.0.0.tgz", + "integrity": "sha512-37GeVSIJ3kn1JgKyjiYNmSLP1yzbpb29jdmwBSgkD9h40/hyrR/OifpVUndji3tmwGgD8qpw7iQu3RSbCrBpsQ==", + "dev": true, + "requires": { + "lodash.sortby": "4.7.0", + "tr46": "1.0.1", + "webidl-conversions": "4.0.2" + } + } + } + }, + "date-now": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", + "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", + "dev": true + }, + "dateformat": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/dateformat/-/dateformat-3.0.3.tgz", + "integrity": "sha512-jyCETtSl3VMZMWeRo7iY1FL19ges1t55hMo5yaam4Jrsm5EPL89UQkoQRyiI+Yf4k8r2ZpdngkV8hr1lIdjb3Q==", + "dev": true + }, + "debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, + "requires": { + "ms": "2.0.0" + } + }, + "decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", + "dev": true + }, + "decode-uri-component": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", + "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", + "dev": true + }, + "decompress-response": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-3.3.0.tgz", + "integrity": "sha1-gKTdMjdIOEv6JICDYirt7Jgq3/M=", + "dev": true, + "requires": { + "mimic-response": "1.0.1" + } + }, + "deep-equal": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-1.0.1.tgz", + "integrity": "sha1-9dJgKStmDghO/0zbyfCK0yR0SLU=", + "dev": true + }, + "deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "dev": true + }, + "deep-is": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.3.tgz", + "integrity": "sha1-s2nW+128E+7PUk+RsHD+7cNXzzQ=", + "dev": true + }, + "default-gateway": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-4.2.0.tgz", + "integrity": "sha512-h6sMrVB1VMWVrW13mSc6ia/DwYYw5MN6+exNu1OaJeFac5aSAvwM7lZ0NVfTABuSkQelr4h5oebg3KB1XPdjgA==", + "dev": true, + "requires": { + "execa": "1.0.0", + "ip-regex": "2.1.0" + } + }, + "define-properties": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.1.3.tgz", + "integrity": "sha512-3MqfYKj2lLzdMSf8ZIZE/V+Zuy+BgD6f164e8K2w7dgnpKArBDerGYpM46IYYcjnkdPNMjPk9A6VFB8+3SKlXQ==", + "dev": true, + "requires": { + "object-keys": "1.1.1" + } + }, + "define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dev": true, + "requires": { + "is-descriptor": "1.0.2", + "isobject": "3.0.1" + }, + "dependencies": { + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "1.0.0", + "is-data-descriptor": "1.0.0", + "kind-of": "6.0.2" + } + } + } + }, + "del": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-4.1.1.tgz", + "integrity": "sha512-QwGuEUouP2kVwQenAsOof5Fv8K9t3D8Ca8NxcXKrIpEHjTXK5J2nXLdP+ALI1cgv8wj7KuwBhTwBkOZSJKM5XQ==", + "dev": true, + "requires": { + "@types/glob": "7.1.1", + "globby": "6.1.0", + "is-path-cwd": "2.1.0", + "is-path-in-cwd": "2.1.0", + "p-map": "2.1.0", + "pify": "4.0.1", + "rimraf": "2.6.3" + } + }, + "delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", + "dev": true + }, + "depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", + "dev": true + }, + "des.js": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", + "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "minimalistic-assert": "1.0.1" + } + }, + "destroy": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", + "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", + "dev": true + }, + "detect-conflict": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/detect-conflict/-/detect-conflict-1.0.1.tgz", + "integrity": "sha1-CIZXpmqWHAUBnbfEIwiDsca0F24=", + "dev": true + }, + "detect-file": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/detect-file/-/detect-file-1.0.0.tgz", + "integrity": "sha1-8NZtA2cqglyxtzvbP+YjEMjlUrc=", + "dev": true + }, + "detect-newline": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-2.1.0.tgz", + "integrity": "sha1-9B8cEL5LAOh7XxPaaAdZ8sW/0+I=", + "dev": true + }, + "detect-node": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", + "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", + "dev": true + }, + "diff": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", + "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", + "dev": true + }, + "diff-sequences": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-24.3.0.tgz", + "integrity": "sha512-xLqpez+Zj9GKSnPWS0WZw1igGocZ+uua8+y+5dDNTT934N3QuY1sp2LkHzwiaYQGz60hMq0pjAshdeXm5VUOEw==", + "dev": true + }, + "diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "miller-rabin": "4.0.1", + "randombytes": "2.1.0" + } + }, + "dir-glob": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-2.0.0.tgz", + "integrity": "sha512-37qirFDz8cA5fimp9feo43fSuRo2gHwaIn6dXL8Ber1dGwUosDrGZeCCXq57WnIqE4aQ+u3eQZzsk1yOzhdwag==", + "dev": true, + "requires": { + "arrify": "1.0.1", + "path-type": "3.0.0" + } + }, + "dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=", + "dev": true + }, + "dns-packet": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", + "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "dev": true, + "requires": { + "ip": "1.1.5", + "safe-buffer": "5.1.2" + } + }, + "dns-txt": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/dns-txt/-/dns-txt-2.0.2.tgz", + "integrity": "sha1-uR2Ab10nGI5Ks+fRB9iBocxGQrY=", + "dev": true, + "requires": { + "buffer-indexof": "1.1.1" + } + }, + "dom-walk": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/dom-walk/-/dom-walk-0.1.1.tgz", + "integrity": "sha1-ZyIm3HTI95mtNTB9+TaroRrNYBg=", + "dev": true + }, + "domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "dev": true + }, + "domexception": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-1.0.1.tgz", + "integrity": "sha512-raigMkn7CJNNo6Ihro1fzG7wr3fHuYVytzquZKX5n0yizGsTcYgzdIUwj1X9pK0VvjeihV+XiclP+DjwbsSKug==", + "dev": true, + "requires": { + "webidl-conversions": "4.0.2" + } + }, + "duplexer3": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/duplexer3/-/duplexer3-0.1.4.tgz", + "integrity": "sha1-7gHdHKwO08vH/b6jfcCo8c4ALOI=", + "dev": true + }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "1.4.1", + "inherits": "2.0.3", + "readable-stream": "2.3.6", + "stream-shift": "1.0.0" + } + }, + "ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", + "dev": true, + "requires": { + "jsbn": "0.1.1", + "safer-buffer": "2.1.2" + } + }, + "editions": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/editions/-/editions-2.1.3.tgz", + "integrity": "sha512-xDZyVm0A4nLgMNWVVLJvcwMjI80ShiH/27RyLiCnW1L273TcJIA25C4pwJ33AWV01OX6UriP35Xu+lH4S7HWQw==", + "dev": true, + "requires": { + "errlop": "1.1.1", + "semver": "5.7.0" + } + }, + "ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", + "dev": true + }, + "ejs": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-2.6.1.tgz", + "integrity": "sha512-0xy4A/twfrRCnkhfk8ErDi5DqdAsAqeGxht4xkCUrsvhhbQNs7E+4jV0CN7+NKIY0aHE72+XvqtBIXzD31ZbXQ==", + "dev": true + }, + "electron-to-chromium": { + "version": "1.3.161", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.161.tgz", + "integrity": "sha512-i8cuS1zf7TW2t/NrfiaF8amTggCH4yLRe7Pirdf6gVDESP146jXO9NXttM8bJk1aupwA1NVMoaikBSbnTHgZGA==", + "dev": true + }, + "elliptic": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", + "integrity": "sha512-BsXLz5sqX8OHcsh7CqBMztyXARmGQ3LWPtGjJi6DiJHq5C/qvi9P3OqgswKSDftbu8+IoI/QDTAm2fFnQ9SZSQ==", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "brorand": "1.1.0", + "hash.js": "1.1.7", + "hmac-drbg": "1.0.1", + "inherits": "2.0.3", + "minimalistic-assert": "1.0.1", + "minimalistic-crypto-utils": "1.0.1" + } + }, + "emojis-list": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", + "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", + "dev": true + }, + "encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", + "dev": true + }, + "end-of-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.1.tgz", + "integrity": "sha512-1MkrZNvWTKCaigbn+W15elq2BB/L22nqrSY5DKlo3X6+vclJm8Bb5djXJBmEX6fS3+zCh/F4VBK5Z2KxJt4s2Q==", + "dev": true, + "requires": { + "once": "1.4.0" + } + }, + "enhanced-resolve": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.0.tgz", + "integrity": "sha512-F/7vkyTtyc/llOIn8oWclcB25KdRaiPBpZYDgJHgh/UHtpgT2p2eldQgtQnLtUvfMKPKxbRaQM/hHkvLHt1Vng==", + "dev": true, + "requires": { + "graceful-fs": "4.1.15", + "memory-fs": "0.4.1", + "tapable": "1.1.3" + } + }, + "errlop": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/errlop/-/errlop-1.1.1.tgz", + "integrity": "sha512-WX7QjiPHhsny7/PQvrhS5VMizXXKoKCS3udaBp8gjlARdbn+XmK300eKBAAN0hGyRaTCtRpOaxK+xFVPUJ3zkw==", + "dev": true, + "requires": { + "editions": "2.1.3" + } + }, + "errno": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", + "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", + "dev": true, + "requires": { + "prr": "1.0.1" + } + }, + "error": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/error/-/error-7.0.2.tgz", + "integrity": "sha1-pfdf/02ZJhJt2sDqXcOOaJFTywI=", + "dev": true, + "requires": { + "string-template": "0.2.1", + "xtend": "4.0.1" + } + }, + "error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "requires": { + "is-arrayish": "0.2.1" + } + }, + "es-abstract": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.13.0.tgz", + "integrity": "sha512-vDZfg/ykNxQVwup/8E1BZhVzFfBxs9NqMzGcvIJrqg5k2/5Za2bWo40dK2J1pgLngZ7c+Shh8lwYtLGyrwPutg==", + "dev": true, + "requires": { + "es-to-primitive": "1.2.0", + "function-bind": "1.1.1", + "has": "1.0.3", + "is-callable": "1.1.4", + "is-regex": "1.0.4", + "object-keys": "1.1.1" + } + }, + "es-to-primitive": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.0.tgz", + "integrity": "sha512-qZryBOJjV//LaxLTV6UC//WewneB3LcXOL9NP++ozKVXsIIIpm/2c13UDiD9Jp2eThsecw9m3jPqDwTyobcdbg==", + "dev": true, + "requires": { + "is-callable": "1.1.4", + "is-date-object": "1.0.1", + "is-symbol": "1.0.2" + } + }, + "escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", + "dev": true + }, + "escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", + "dev": true + }, + "escodegen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-1.11.1.tgz", + "integrity": "sha512-JwiqFD9KdGVVpeuRa68yU3zZnBEOcPs0nKW7wZzXky8Z7tffdYUHbe11bPCV5jYlK6DVdKLWLm0f5I/QlL0Kmw==", + "dev": true, + "requires": { + "esprima": "3.1.3", + "estraverse": "4.2.0", + "esutils": "2.0.2", + "optionator": "0.8.2", + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } + } + }, + "eslint-plugin-standard": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-standard/-/eslint-plugin-standard-4.0.0.tgz", + "integrity": "sha512-OwxJkR6TQiYMmt1EsNRMe5qG3GsbjlcOhbGUBY4LtavF9DsLaTcoR+j2Tdjqi23oUwKNUqX7qcn5fPStafMdlA==" + }, + "eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dev": true, + "requires": { + "esrecurse": "4.2.1", + "estraverse": "4.2.0" + } + }, + "esprima": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", + "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", + "dev": true + }, + "esrecurse": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.2.1.tgz", + "integrity": "sha512-64RBB++fIOAXPw3P9cy89qfMlvZEXZkqqJkjqqXIvzP5ezRZjW+lPWjw35UX/3EhUPFYbg5ER4JYgDw4007/DQ==", + "dev": true, + "requires": { + "estraverse": "4.2.0" + } + }, + "estraverse": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.2.0.tgz", + "integrity": "sha1-De4/7TH81GlhjOc0IJn8GvoL2xM=", + "dev": true + }, + "esutils": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.2.tgz", + "integrity": "sha1-Cr9PHKpbyx96nYrMbepPqqBLrJs=", + "dev": true + }, + "etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", + "dev": true + }, + "eventemitter3": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-3.1.2.tgz", + "integrity": "sha512-tvtQIeLVHjDkJYnzf2dgVMxfuSGJeM/7UCG17TT4EumTfNtF+0nebF/4zWOIkCreAbtNqhGEboB6BWrwqNaw4Q==", + "dev": true + }, + "events": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", + "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", + "dev": true + }, + "eventsource": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-1.0.7.tgz", + "integrity": "sha512-4Ln17+vVT0k8aWq+t/bF5arcS3EpT9gYtW66EPacdj/mAFevznsnyoHLPy2BA8gbIQeIHoPsvwmfBftfcG//BQ==", + "dev": true, + "requires": { + "original": "1.0.2" + } + }, + "evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dev": true, + "requires": { + "md5.js": "1.3.5", + "safe-buffer": "5.1.2" + } + }, + "exec-sh": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.2.tgz", + "integrity": "sha512-9sLAvzhI5nc8TpuQUh4ahMdCrWT00wPWz7j47/emR5+2qEfoZP5zzUXvx+vdx+H6ohhnsYC31iX04QLYJK8zTg==", + "dev": true + }, + "execa": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-1.0.0.tgz", + "integrity": "sha512-adbxcyWV46qiHyvSp50TKt05tB4tK3HcmF7/nxfAdhnox83seTDbwnaqKO4sXRy7roHAIFqJP/Rw/AuEbX61LA==", + "dev": true, + "requires": { + "cross-spawn": "6.0.5", + "get-stream": "4.1.0", + "is-stream": "1.1.0", + "npm-run-path": "2.0.2", + "p-finally": "1.0.0", + "signal-exit": "3.0.2", + "strip-eof": "1.0.0" + } + }, + "exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", + "dev": true + }, + "expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", + "dev": true, + "requires": { + "debug": "2.6.9", + "define-property": "0.2.5", + "extend-shallow": "2.0.1", + "posix-character-classes": "0.1.1", + "regex-not": "1.0.2", + "snapdragon": "0.8.2", + "to-regex": "3.0.2" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "0.1.6" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "expand-tilde": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/expand-tilde/-/expand-tilde-2.0.2.tgz", + "integrity": "sha1-l+gBqgUt8CRU3kawK/YhZCzchQI=", + "dev": true, + "requires": { + "homedir-polyfill": "1.0.3" + } + }, + "expect": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-24.8.0.tgz", + "integrity": "sha512-/zYvP8iMDrzaaxHVa724eJBCKqSHmO0FA7EDkBiRHxg6OipmMn1fN+C8T9L9K8yr7UONkOifu6+LLH+z76CnaA==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "ansi-styles": "3.2.1", + "jest-get-type": "24.8.0", + "jest-matcher-utils": "24.8.0", + "jest-message-util": "24.8.0", + "jest-regex-util": "24.3.0" + } + }, + "express": { + "version": "4.17.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", + "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", + "dev": true, + "requires": { + "accepts": "1.3.7", + "array-flatten": "1.1.1", + "body-parser": "1.19.0", + "content-disposition": "0.5.3", + "content-type": "1.0.4", + "cookie": "0.4.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "1.1.2", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "finalhandler": "1.1.2", + "fresh": "0.5.2", + "merge-descriptors": "1.0.1", + "methods": "1.1.2", + "on-finished": "2.3.0", + "parseurl": "1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "2.0.5", + "qs": "6.7.0", + "range-parser": "1.2.1", + "safe-buffer": "5.1.2", + "send": "0.17.1", + "serve-static": "1.14.1", + "setprototypeof": "1.1.1", + "statuses": "1.5.0", + "type-is": "1.6.18", + "utils-merge": "1.0.1", + "vary": "1.1.2" + }, + "dependencies": { + "array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", + "dev": true + } + } + }, + "extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", + "dev": true + }, + "extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", + "dev": true, + "requires": { + "assign-symbols": "1.0.0", + "is-extendable": "1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "2.0.4" + } + } + } + }, + "external-editor": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.0.3.tgz", + "integrity": "sha512-bn71H9+qWoOQKyZDo25mOMVpSmXROAsTJVVVYzrrtol3d4y+AsKjf4Iwl2Q+IuT0kFSQ1qo166UuIwqYq7mGnA==", + "dev": true, + "requires": { + "chardet": "0.7.0", + "iconv-lite": "0.4.24", + "tmp": "0.0.33" + } + }, + "extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dev": true, + "requires": { + "array-unique": "0.3.2", + "define-property": "1.0.0", + "expand-brackets": "2.1.4", + "extend-shallow": "2.0.1", + "fragment-cache": "0.2.1", + "regex-not": "1.0.2", + "snapdragon": "0.8.2", + "to-regex": "3.0.2" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "1.0.2" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "1.0.0", + "is-data-descriptor": "1.0.0", + "kind-of": "6.0.2" + } + } + } + }, + "extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", + "dev": true + }, + "fast-deep-equal": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", + "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", + "dev": true + }, + "fast-glob": { + "version": "2.2.7", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-2.2.7.tgz", + "integrity": "sha512-g1KuQwHOZAmOZMuBtHdxDtju+T2RT8jgCC9aANsbpdiDDTSnjgfuVsIBNKbUeJI3oKMRExcfNDtJl4OhbffMsw==", + "dev": true, + "requires": { + "@mrmlnc/readdir-enhanced": "2.2.1", + "@nodelib/fs.stat": "1.1.3", + "glob-parent": "3.1.0", + "is-glob": "4.0.1", + "merge2": "1.2.3", + "micromatch": "3.1.10" + } + }, + "fast-json-stable-stringify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", + "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", + "dev": true + }, + "fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha1-PYpcZog6FqMMqGQ+hR8Zuqd5eRc=", + "dev": true + }, + "faye-websocket": { + "version": "0.10.0", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", + "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", + "dev": true, + "requires": { + "websocket-driver": "0.7.3" + } + }, + "fb-watchman": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.0.tgz", + "integrity": "sha1-VOmr99+i8mzZsWNsWIwa/AXeXVg=", + "dev": true, + "requires": { + "bser": "2.0.0" + } + }, + "figgy-pudding": { + "version": "3.5.1", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.1.tgz", + "integrity": "sha512-vNKxJHTEKNThjfrdJwHc7brvM6eVevuO5nTj6ez8ZQ1qbXTvGthucRF7S4vf2cr71QVnT70V34v0S1DyQsti0w==", + "dev": true + }, + "figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha1-OrGi0qYsi/tDGgyUy3l6L84nyWI=", + "dev": true, + "requires": { + "escape-string-regexp": "1.0.5" + } + }, + "file-loader": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-4.0.0.tgz", + "integrity": "sha512-roAbL6IdSGczwfXxhMi6Zq+jD4IfUpL0jWHD7fvmjdOVb7xBfdRUHe4LpBgO23VtVK5AW1OlWZo0p34Jvx3iWg==", + "dev": true, + "requires": { + "loader-utils": "1.2.3", + "schema-utils": "1.0.0" + } + }, + "fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", + "dev": true, + "requires": { + "extend-shallow": "2.0.1", + "is-number": "3.0.0", + "repeat-string": "1.6.1", + "to-regex-range": "2.1.1" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dev": true, + "requires": { + "debug": "2.6.9", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "on-finished": "2.3.0", + "parseurl": "1.3.3", + "statuses": "1.5.0", + "unpipe": "1.0.0" + } + }, + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "1.0.1", + "make-dir": "2.1.0", + "pkg-dir": "3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "3.0.0" + } + }, + "findup-sync": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/findup-sync/-/findup-sync-2.0.0.tgz", + "integrity": "sha1-kyaxSIwi0aYIhlCoaQGy2akKLLw=", + "dev": true, + "requires": { + "detect-file": "1.0.0", + "is-glob": "3.1.0", + "micromatch": "3.1.10", + "resolve-dir": "1.0.1" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "2.1.1" + } + } + } + }, + "first-chunk-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-2.0.0.tgz", + "integrity": "sha1-G97NuOCDwGZLkZRVgVd6Q6nzHXA=", + "dev": true, + "requires": { + "readable-stream": "2.3.6" + } + }, + "flow-parser": { + "version": "0.101.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.101.0.tgz", + "integrity": "sha512-Goi71MNzZkL530ZEEpedxLlFFiCA/M4J+nJA8zHSTSpHnDCL3WYpr2NYFHmUczpG80Hq9xTYdQYfGQEk7Dl5Ww==", + "dev": true + }, + "flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.6" + } + }, + "follow-redirects": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.7.0.tgz", + "integrity": "sha512-m/pZQy4Gj287eNy94nivy5wchN3Kp+Q5WgUPNy5lJSZ3sgkVKSYV/ZChMAQVIgx1SqfZ2zBZtPA2YlXIWxxJOQ==", + "dev": true, + "requires": { + "debug": "3.2.6" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", + "dev": true + }, + "forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", + "dev": true + }, + "form-data": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", + "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", + "dev": true, + "requires": { + "asynckit": "0.4.0", + "combined-stream": "1.0.8", + "mime-types": "2.1.24" + } + }, + "forwarded": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", + "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", + "dev": true + }, + "fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", + "dev": true, + "requires": { + "map-cache": "0.2.2" + } + }, + "fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", + "dev": true + }, + "from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha1-i/tVAr3kpNNs/e6gB/zKIdfjgq8=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.6" + } + }, + "fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha1-tH31NJPvkR33VzHnCp3tAYnbQMk=", + "dev": true, + "requires": { + "graceful-fs": "4.1.15", + "iferr": "0.1.5", + "imurmurhash": "0.1.4", + "readable-stream": "2.3.6" + } + }, + "fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", + "dev": true + }, + "function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "get-caller-file": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", + "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", + "dev": true + }, + "get-stream": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-4.1.0.tgz", + "integrity": "sha512-GMat4EJ5161kIy2HevLlr4luNjBgvmj413KaQA7jt4V8B4RDsfpHk7WQ9GVqfYyyx8OS/L66Kox+rJRNklLK7w==", + "dev": true, + "requires": { + "pump": "3.0.0" + } + }, + "get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", + "dev": true + }, + "getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", + "dev": true, + "requires": { + "assert-plus": "1.0.0" + } + }, + "gh-got": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gh-got/-/gh-got-6.0.0.tgz", + "integrity": "sha512-F/mS+fsWQMo1zfgG9MD8KWvTWPPzzhuVwY++fhQ5Ggd+0P+CAMHtzMZhNxG+TqGfHDChJKsbh6otfMGqO2AKBw==", + "dev": true, + "requires": { + "got": "7.1.0", + "is-plain-obj": "1.1.0" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "got": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/got/-/got-7.1.0.tgz", + "integrity": "sha512-Y5WMo7xKKq1muPsxD+KmrR8DH5auG7fBdDVueZwETwV6VytKyU9OX/ddpq2/1hp1vIPvVb4T81dKQz3BivkNLw==", + "dev": true, + "requires": { + "decompress-response": "3.3.0", + "duplexer3": "0.1.4", + "get-stream": "3.0.0", + "is-plain-obj": "1.1.0", + "is-retry-allowed": "1.1.0", + "is-stream": "1.1.0", + "isurl": "1.0.0", + "lowercase-keys": "1.0.1", + "p-cancelable": "0.3.0", + "p-timeout": "1.2.1", + "safe-buffer": "5.1.2", + "timed-out": "4.0.1", + "url-parse-lax": "1.0.0", + "url-to-options": "1.0.1" + } + }, + "p-cancelable": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.3.0.tgz", + "integrity": "sha512-RVbZPLso8+jFeq1MfNvgXtCRED2raz/dKpacfTNxsx6pLEpEomM7gah6VeHSYV3+vo0OAi4MkArtQcWWXuQoyw==", + "dev": true + }, + "p-timeout": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-1.2.1.tgz", + "integrity": "sha1-XrOzU7f86Z8QGhA4iAuwVOu+o4Y=", + "dev": true, + "requires": { + "p-finally": "1.0.0" + } + }, + "prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", + "dev": true + }, + "url-parse-lax": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-1.0.0.tgz", + "integrity": "sha1-evjzA2Rem9eaJy56FKxovAYJ2nM=", + "dev": true, + "requires": { + "prepend-http": "1.0.4" + } + } + } + }, + "github-username": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/github-username/-/github-username-4.1.0.tgz", + "integrity": "sha1-y+KABBiDIG2kISrp5LXxacML9Bc=", + "dev": true, + "requires": { + "gh-got": "6.0.0" + } + }, + "glob": { + "version": "7.1.4", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", + "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", + "dev": true, + "requires": { + "fs.realpath": "1.0.0", + "inflight": "1.0.6", + "inherits": "2.0.3", + "minimatch": "3.0.4", + "once": "1.4.0", + "path-is-absolute": "1.0.1" + } + }, + "glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", + "dev": true, + "requires": { + "is-glob": "3.1.0", + "path-dirname": "1.0.2" + }, + "dependencies": { + "is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", + "dev": true, + "requires": { + "is-extglob": "2.1.1" + } + } + } + }, + "glob-to-regexp": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.3.0.tgz", + "integrity": "sha1-jFoUlNIGbFcMw7/kSWF1rMTVAqs=", + "dev": true + }, + "global": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/global/-/global-4.4.0.tgz", + "integrity": "sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==", + "dev": true, + "requires": { + "min-document": "2.19.0", + "process": "0.11.10" + } + }, + "global-modules": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/global-modules/-/global-modules-1.0.0.tgz", + "integrity": "sha512-sKzpEkf11GpOFuw0Zzjzmt4B4UZwjOcG757PPvrfhxcLFbq0wpsgpOqxpxtxFiCG4DtG93M6XRVbF2oGdev7bg==", + "dev": true, + "requires": { + "global-prefix": "1.0.2", + "is-windows": "1.0.2", + "resolve-dir": "1.0.1" + } + }, + "global-prefix": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/global-prefix/-/global-prefix-1.0.2.tgz", + "integrity": "sha1-2/dDxsFJklk8ZVVoy2btMsASLr4=", + "dev": true, + "requires": { + "expand-tilde": "2.0.2", + "homedir-polyfill": "1.0.3", + "ini": "1.3.5", + "is-windows": "1.0.2", + "which": "1.3.1" + } + }, + "globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true + }, + "globby": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-6.1.0.tgz", + "integrity": "sha1-9abXDoOV4hyFj7BInWTfAkJNUGw=", + "dev": true, + "requires": { + "array-union": "1.0.2", + "glob": "7.1.4", + "object-assign": "4.1.1", + "pify": "2.3.0", + "pinkie-promise": "2.0.1" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + } + } + }, + "got": { + "version": "8.3.2", + "resolved": "https://registry.npmjs.org/got/-/got-8.3.2.tgz", + "integrity": "sha512-qjUJ5U/hawxosMryILofZCkm3C84PLJS/0grRIpjAwu+Lkxxj5cxeCU25BG0/3mDSpXKTyZr8oh8wIgLaH0QCw==", + "dev": true, + "requires": { + "@sindresorhus/is": "0.7.0", + "cacheable-request": "2.1.4", + "decompress-response": "3.3.0", + "duplexer3": "0.1.4", + "get-stream": "3.0.0", + "into-stream": "3.1.0", + "is-retry-allowed": "1.1.0", + "isurl": "1.0.0", + "lowercase-keys": "1.0.1", + "mimic-response": "1.0.1", + "p-cancelable": "0.4.1", + "p-timeout": "2.0.1", + "pify": "3.0.0", + "safe-buffer": "5.1.2", + "timed-out": "4.0.1", + "url-parse-lax": "3.0.0", + "url-to-options": "1.0.1" + }, + "dependencies": { + "get-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-3.0.0.tgz", + "integrity": "sha1-jpQ9E1jcN1VQVOy+LtsFqhdO3hQ=", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "graceful-fs": { + "version": "4.1.15", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.1.15.tgz", + "integrity": "sha512-6uHUhOPEBgQ24HM+r6b/QwWfZq+yiFcipKFrOFiBEnWdy5sdzYoi+pJeQaPI5qOLRFqWmAXUPQNsielzdLoecA==", + "dev": true + }, + "grouped-queue": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/grouped-queue/-/grouped-queue-0.3.3.tgz", + "integrity": "sha1-wWfSpTGcWg4JZO9qJbfC34mWyFw=", + "dev": true, + "requires": { + "lodash": "4.17.11" + } + }, + "growly": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/growly/-/growly-1.3.0.tgz", + "integrity": "sha1-8QdIy+dq+WS3yWyTxrzCivEgwIE=", + "dev": true + }, + "handle-thing": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.0.tgz", + "integrity": "sha512-d4sze1JNC454Wdo2fkuyzCr6aHcbL6PGGuFAz0Li/NcOm1tCHGnWDRmJP85dh9IhQErTc2svWFEX5xHIOo//kQ==", + "dev": true + }, + "handlebars": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.1.2.tgz", + "integrity": "sha512-nvfrjqvt9xQ8Z/w0ijewdD/vvWDTOweBUm96NTr66Wfvo1mJenBLwcYmPs3TIBP5ruzYGD7Hx/DaM9RmhroGPw==", + "dev": true, + "requires": { + "neo-async": "2.6.1", + "optimist": "0.6.1", + "source-map": "0.6.1", + "uglify-js": "3.4.10" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", + "dev": true + }, + "har-validator": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", + "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", + "dev": true, + "requires": { + "ajv": "6.10.0", + "har-schema": "2.0.0" + } + }, + "has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "requires": { + "function-bind": "1.1.1" + } + }, + "has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", + "dev": true + }, + "has-symbol-support-x": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/has-symbol-support-x/-/has-symbol-support-x-1.4.2.tgz", + "integrity": "sha512-3ToOva++HaW+eCpgqZrCfN51IPB+7bJNVT6CUATzueB5Heb8o6Nam0V3HG5dlDvZU1Gn5QLcbahiKw/XVk5JJw==", + "dev": true + }, + "has-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.0.tgz", + "integrity": "sha1-uhqPGvKg/DllD1yFA2dwQSIGO0Q=", + "dev": true + }, + "has-to-string-tag-x": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/has-to-string-tag-x/-/has-to-string-tag-x-1.4.1.tgz", + "integrity": "sha512-vdbKfmw+3LoOYVr+mtxHaX5a96+0f3DljYd8JOqvOLsf5mw2Otda2qCDT9qRqLAhrjyQ0h7ual5nOiASpsGNFw==", + "dev": true, + "requires": { + "has-symbol-support-x": "1.4.2" + } + }, + "has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", + "dev": true, + "requires": { + "get-value": "2.0.6", + "has-values": "1.0.0", + "isobject": "3.0.1" + } + }, + "has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", + "dev": true, + "requires": { + "is-number": "3.0.0", + "kind-of": "4.0.0" + }, + "dependencies": { + "kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "hash-base": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", + "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "safe-buffer": "5.1.2" + } + }, + "hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "minimalistic-assert": "1.0.1" + } + }, + "hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", + "dev": true, + "requires": { + "hash.js": "1.1.7", + "minimalistic-assert": "1.0.1", + "minimalistic-crypto-utils": "1.0.1" + } + }, + "hoist-non-react-statics": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/hoist-non-react-statics/-/hoist-non-react-statics-3.3.0.tgz", + "integrity": "sha512-0XsbTXxgiaCDYDIWFcwkmerZPSwywfUqYmwT4jzewKTQSWoE6FCMoUVOeBJWK3E/CrWbxRG3m5GzY4lnIwGRBA==", + "dev": true, + "requires": { + "react-is": "16.8.6" + } + }, + "homedir-polyfill": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/homedir-polyfill/-/homedir-polyfill-1.0.3.tgz", + "integrity": "sha512-eSmmWE5bZTK2Nou4g0AI3zZ9rswp7GRKoKXS1BLUkvPviOqs4YTN1djQIqrXy9k5gEtdLPy86JjRwsNM9tnDcA==", + "dev": true, + "requires": { + "parse-passwd": "1.0.0" + } + }, + "hosted-git-info": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.7.1.tgz", + "integrity": "sha512-7T/BxH19zbcCTa8XkMlbK5lTo1WtgkFi3GvdWEyNuc4Vex7/9Dqbnpsf4JMydcfj9HCg4zUWFTL3Za6lapg5/w==", + "dev": true + }, + "hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", + "dev": true, + "requires": { + "inherits": "2.0.3", + "obuf": "1.1.2", + "readable-stream": "2.3.6", + "wbuf": "1.7.3" + } + }, + "html-encoding-sniffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-1.0.2.tgz", + "integrity": "sha512-71lZziiDnsuabfdYiUeWdCVyKuqwWi23L8YeIgV9jSSZHCtb6wB1BKWooH7L3tn4/FuZJMVWyNaIDr4RGmaSYw==", + "dev": true, + "requires": { + "whatwg-encoding": "1.0.5" + } + }, + "html-entities": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", + "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=", + "dev": true + }, + "http-cache-semantics": { + "version": "3.8.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-3.8.1.tgz", + "integrity": "sha512-5ai2iksyV8ZXmnZhHH4rWPoxxistEexSi5936zIQ1bnNTW5VnA85B6P/VpXiRM017IgRvb2kKo1a//y+0wSp3w==", + "dev": true + }, + "http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", + "dev": true + }, + "http-errors": { + "version": "1.7.2", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", + "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", + "dev": true, + "requires": { + "depd": "1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.1", + "statuses": "1.5.0", + "toidentifier": "1.0.0" + } + }, + "http-parser-js": { + "version": "0.4.10", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz", + "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=", + "dev": true + }, + "http-proxy": { + "version": "1.17.0", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.17.0.tgz", + "integrity": "sha512-Taqn+3nNvYRfJ3bGvKfBSRwy1v6eePlm3oc/aWVxZp57DQr5Eq3xhKJi7Z4hZpS8PC3H4qI+Yly5EmFacGuA/g==", + "dev": true, + "requires": { + "eventemitter3": "3.1.2", + "follow-redirects": "1.7.0", + "requires-port": "1.0.0" + } + }, + "http-proxy-middleware": { + "version": "0.19.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.19.1.tgz", + "integrity": "sha512-yHYTgWMQO8VvwNS22eLLloAkvungsKdKTLO8AJlftYIKNfJr3GK3zK0ZCfzDDGUBttdGc8xFy1mCitvNKQtC3Q==", + "dev": true, + "requires": { + "http-proxy": "1.17.0", + "is-glob": "4.0.1", + "lodash": "4.17.11", + "micromatch": "3.1.10" + } + }, + "http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "jsprim": "1.4.1", + "sshpk": "1.16.1" + } + }, + "https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", + "dev": true + }, + "iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "requires": { + "safer-buffer": "2.1.2" + } + }, + "ieee754": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", + "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", + "dev": true + }, + "iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha1-xg7taebY/bazEEofy8ocGS3FtQE=", + "dev": true + }, + "ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, + "import-local": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-2.0.0.tgz", + "integrity": "sha512-b6s04m3O+s3CGSbqDIyP4R6aAwAeYlVq9+WUWep6iHa8ETRf9yei1U48C5MmfJmV9AiLYYBKPMq/W+/WRpQmCQ==", + "dev": true, + "requires": { + "pkg-dir": "3.0.0", + "resolve-cwd": "2.0.0" + } + }, + "imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha1-khi5srkoojixPcT7a21XbyMUU+o=", + "dev": true + }, + "inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", + "dev": true, + "requires": { + "once": "1.4.0", + "wrappy": "1.0.2" + } + }, + "inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", + "dev": true + }, + "ini": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.5.tgz", + "integrity": "sha512-RZY5huIKCMRWDUqZlEi72f/lmXKMvuszcMBduliQ3nnWbx9X/ZBQO7DijMEYS9EhHBb2qacRUMtC7svLwe0lcw==", + "dev": true + }, + "inquirer": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-6.3.1.tgz", + "integrity": "sha512-MmL624rfkFt4TG9y/Jvmt8vdmOo836U7Y0Hxr2aFk3RelZEGX4Igk0KabWrcaaZaTv9uzglOqWh1Vly+FAWAXA==", + "dev": true, + "requires": { + "ansi-escapes": "3.2.0", + "chalk": "2.4.2", + "cli-cursor": "2.1.0", + "cli-width": "2.2.0", + "external-editor": "3.0.3", + "figures": "2.0.0", + "lodash": "4.17.11", + "mute-stream": "0.0.7", + "run-async": "2.3.0", + "rxjs": "6.5.2", + "string-width": "2.1.1", + "strip-ansi": "5.2.0", + "through": "2.3.8" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + }, + "strip-ansi": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-5.2.0.tgz", + "integrity": "sha512-DuRs1gKbBqsMKIZlrffwlug8MHkcnpjs5VPmL1PAh+mA30U0DTotfDZ0d2UUsXpPmPmMMJ6W773MaA3J+lbiWA==", + "dev": true, + "requires": { + "ansi-regex": "4.1.0" + } + } + } + }, + "internal-ip": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/internal-ip/-/internal-ip-4.3.0.tgz", + "integrity": "sha512-S1zBo1D6zcsyuC6PMmY5+55YMILQ9av8lotMx447Bq6SAgo/sDK6y6uUKmuYhW7eacnIhFfsPmCNYdDzsnnDCg==", + "dev": true, + "requires": { + "default-gateway": "4.2.0", + "ipaddr.js": "1.9.0" + } + }, + "interpret": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz", + "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==", + "dev": true + }, + "into-stream": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/into-stream/-/into-stream-3.1.0.tgz", + "integrity": "sha1-lvsKk2wSur1v8XUqF9BWFqvQlMY=", + "dev": true, + "requires": { + "from2": "2.3.0", + "p-is-promise": "1.1.0" + }, + "dependencies": { + "p-is-promise": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-1.1.0.tgz", + "integrity": "sha1-nJRWmJ6fZYgBewQ01WCXZ1w9oF4=", + "dev": true + } + } + }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "1.4.0" + } + }, + "invert-kv": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-2.0.0.tgz", + "integrity": "sha512-wPVv/y/QQ/Uiirj/vh3oP+1Ww+AWehmi1g5fFWGPF6IpCBCDVrhgHRMvrLfdYcwDh3QJbGXDW4JAuzxElLSqKA==", + "dev": true + }, + "ip": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.5.tgz", + "integrity": "sha1-vd7XARQpCCjAoDnnLvJfWq7ENUo=", + "dev": true + }, + "ip-regex": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/ip-regex/-/ip-regex-2.1.0.tgz", + "integrity": "sha1-+ni/XS5pE8kRzp+BnuUUa7bYROk=", + "dev": true + }, + "ipaddr.js": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", + "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==", + "dev": true + }, + "is-accessor-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", + "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", + "dev": true + }, + "is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", + "dev": true, + "requires": { + "binary-extensions": "1.13.1" + } + }, + "is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", + "dev": true + }, + "is-callable": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.1.4.tgz", + "integrity": "sha512-r5p9sxJjYnArLjObpjA4xu5EKI3CuKHkJXMhT7kwbpUyIFD1n5PMAsoPvWnvtZiNz7LjkYDRZhd7FlI0eMijEA==", + "dev": true + }, + "is-ci": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-2.0.0.tgz", + "integrity": "sha512-YfJT7rkpQB0updsdHLGWrvhBJfcfzNNawYDNIyQXJz0IViGf75O8EBPKSdvw2rF+LGCsX4FZ8tcr3b19LcZq4w==", + "dev": true, + "requires": { + "ci-info": "2.0.0" + } + }, + "is-data-descriptor": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", + "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "is-date-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.1.tgz", + "integrity": "sha1-mqIOtq7rv/d/vTPnTKAbM1gdOhY=", + "dev": true + }, + "is-descriptor": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", + "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "0.1.6", + "is-data-descriptor": "0.1.4", + "kind-of": "5.1.0" + }, + "dependencies": { + "kind-of": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", + "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", + "dev": true + } + } + }, + "is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", + "dev": true + }, + "is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha1-o7MKXE8ZkYMWeqq5O+764937ZU8=", + "dev": true + }, + "is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true + }, + "is-glob": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", + "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", + "dev": true, + "requires": { + "is-extglob": "2.1.1" + } + }, + "is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "is-object": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-object/-/is-object-1.0.1.tgz", + "integrity": "sha1-iVJojF7C/9awPsyF52ngKQMINHA=", + "dev": true + }, + "is-path-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.1.0.tgz", + "integrity": "sha512-Sc5j3/YnM8tDeyCsVeKlm/0p95075DyLmDEIkSgQ7mXkrOX+uTCtmQFm0CYzVyJwcCCmO3k8qfJt17SxQwB5Zw==", + "dev": true + }, + "is-path-in-cwd": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-in-cwd/-/is-path-in-cwd-2.1.0.tgz", + "integrity": "sha512-rNocXHgipO+rvnP6dk3zI20RpOtrAM/kzbB258Uw5BWr3TpXi861yzjo16Dn4hUox07iw5AyeMLHWsujkjzvRQ==", + "dev": true, + "requires": { + "is-path-inside": "2.1.0" + } + }, + "is-path-inside": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-2.1.0.tgz", + "integrity": "sha512-wiyhTzfDWsvwAW53OBWF5zuvaOGlZ6PwYxAbPVDhpm+gM09xKQGjBq/8uYN12aDvMxnAnq3dxTyoSoRNmg5YFg==", + "dev": true, + "requires": { + "path-is-inside": "1.0.2" + } + }, + "is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", + "dev": true + }, + "is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dev": true, + "requires": { + "isobject": "3.0.1" + } + }, + "is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-2.1.0.tgz", + "integrity": "sha1-eaKp7OfwlugPNtKy87wWwf9L8/o=", + "dev": true + }, + "is-regex": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.0.4.tgz", + "integrity": "sha1-VRdIm1RwkbCTDglWVM7SXul+lJE=", + "dev": true, + "requires": { + "has": "1.0.3" + } + }, + "is-retry-allowed": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-1.1.0.tgz", + "integrity": "sha1-EaBgVotnM5REAz0BJaYaINVk+zQ=", + "dev": true + }, + "is-scoped": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-scoped/-/is-scoped-1.0.0.tgz", + "integrity": "sha1-RJypgpnnEwOCViieyytUDcQ3yzA=", + "dev": true, + "requires": { + "scoped-regex": "1.0.0" + } + }, + "is-stream": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-1.1.0.tgz", + "integrity": "sha1-EtSj3U5o4Lec6428hBc66A2RykQ=", + "dev": true + }, + "is-symbol": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.2.tgz", + "integrity": "sha512-HS8bZ9ox60yCJLH9snBpIwv9pYUAkcuLhSA1oero1UB5y9aiQpRA8y2ex945AOtCZL1lJDeIk3G5LthswI46Lw==", + "dev": true, + "requires": { + "has-symbols": "1.0.0" + } + }, + "is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", + "dev": true + }, + "is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", + "dev": true + }, + "is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "dev": true + }, + "is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha1-HxbkqiKwTRM2tmGIpmrzxgDDpm0=", + "dev": true + }, + "isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", + "dev": true + }, + "isbinaryfile": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", + "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", + "dev": true, + "requires": { + "buffer-alloc": "1.2.0" + } + }, + "isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", + "dev": true + }, + "isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", + "dev": true + }, + "isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", + "dev": true + }, + "istanbul-lib-coverage": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.5.tgz", + "integrity": "sha512-8aXznuEPCJvGnMSRft4udDRDtb1V3pkQkMMI5LI+6HuQz5oQ4J2UFn1H82raA3qJtyOLkkwVqICBQkjnGtn5mA==", + "dev": true + }, + "istanbul-lib-instrument": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-3.3.0.tgz", + "integrity": "sha512-5nnIN4vo5xQZHdXno/YDXJ0G+I3dAm4XgzfSVTPLQpj/zAV2dV6Juy0yaf10/zrJOJeHoN3fraFe+XRq2bFVZA==", + "dev": true, + "requires": { + "@babel/generator": "7.4.4", + "@babel/parser": "7.4.5", + "@babel/template": "7.4.4", + "@babel/traverse": "7.4.5", + "@babel/types": "7.4.4", + "istanbul-lib-coverage": "2.0.5", + "semver": "6.1.1" + }, + "dependencies": { + "semver": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", + "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", + "dev": true + } + } + }, + "istanbul-lib-report": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-2.0.8.tgz", + "integrity": "sha512-fHBeG573EIihhAblwgxrSenp0Dby6tJMFR/HvlerBsrCTD5bkUuoNtn3gVh29ZCS824cGGBPn7Sg7cNk+2xUsQ==", + "dev": true, + "requires": { + "istanbul-lib-coverage": "2.0.5", + "make-dir": "2.1.0", + "supports-color": "6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "3.0.0" + } + } + } + }, + "istanbul-lib-source-maps": { + "version": "3.0.6", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-3.0.6.tgz", + "integrity": "sha512-R47KzMtDJH6X4/YW9XTx+jrLnZnscW4VpNN+1PViSYTejLVPWv7oov+Duf8YQSPyVRUvueQqz1TcsC6mooZTXw==", + "dev": true, + "requires": { + "debug": "4.1.1", + "istanbul-lib-coverage": "2.0.5", + "make-dir": "2.1.0", + "rimraf": "2.6.3", + "source-map": "0.6.1" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "istanbul-reports": { + "version": "2.2.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-2.2.6.tgz", + "integrity": "sha512-SKi4rnMyLBKe0Jy2uUdx28h8oG7ph2PPuQPvIAh31d+Ci+lSiEu4C+h3oBPuJ9+mPKhOyW0M8gY4U5NM1WLeXA==", + "dev": true, + "requires": { + "handlebars": "4.1.2" + } + }, + "istextorbinary": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/istextorbinary/-/istextorbinary-2.5.1.tgz", + "integrity": "sha512-pv/JNPWnfpwGjPx7JrtWTwsWsxkrK3fNzcEVnt92YKEIErps4Fsk49+qzCe9iQF2hjqK8Naqf8P9kzoeCuQI1g==", + "dev": true, + "requires": { + "binaryextensions": "2.1.2", + "editions": "2.1.3", + "textextensions": "2.4.0" + } + }, + "isurl": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isurl/-/isurl-1.0.0.tgz", + "integrity": "sha512-1P/yWsxPlDtn7QeRD+ULKQPaIaN6yF368GZ2vDfv0AL0NwpStafjWCDDdn0k8wgFMWpVAqG7oJhxHnlud42i9w==", + "dev": true, + "requires": { + "has-to-string-tag-x": "1.4.1", + "is-object": "1.0.1" + } + }, + "jest": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-24.8.0.tgz", + "integrity": "sha512-o0HM90RKFRNWmAWvlyV8i5jGZ97pFwkeVoGvPW1EtLTgJc2+jcuqcbbqcSZLE/3f2S5pt0y2ZBETuhpWNl1Reg==", + "dev": true, + "requires": { + "import-local": "2.0.0", + "jest-cli": "24.8.0" + }, + "dependencies": { + "jest-cli": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-24.8.0.tgz", + "integrity": "sha512-+p6J00jSMPQ116ZLlHJJvdf8wbjNbZdeSX9ptfHX06/MSNaXmKihQzx5vQcw0q2G6JsdVkUIdWbOWtSnaYs3yA==", + "dev": true, + "requires": { + "@jest/core": "24.8.0", + "@jest/test-result": "24.8.0", + "@jest/types": "24.8.0", + "chalk": "2.4.2", + "exit": "0.1.2", + "import-local": "2.0.0", + "is-ci": "2.0.0", + "jest-config": "24.8.0", + "jest-util": "24.8.0", + "jest-validate": "24.8.0", + "prompts": "2.1.0", + "realpath-native": "1.1.0", + "yargs": "12.0.5" + } + } + } + }, + "jest-changed-files": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-24.8.0.tgz", + "integrity": "sha512-qgANC1Yrivsq+UrLXsvJefBKVoCsKB0Hv+mBb6NMjjZ90wwxCDmU3hsCXBya30cH+LnPYjwgcU65i6yJ5Nfuug==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "execa": "1.0.0", + "throat": "4.1.0" + } + }, + "jest-config": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-24.8.0.tgz", + "integrity": "sha512-Czl3Nn2uEzVGsOeaewGWoDPD8GStxCpAe0zOYs2x2l0fZAgPbCr3uwUkgNKV3LwE13VXythM946cd5rdGkkBZw==", + "dev": true, + "requires": { + "@babel/core": "7.4.5", + "@jest/test-sequencer": "24.8.0", + "@jest/types": "24.8.0", + "babel-jest": "24.8.0", + "chalk": "2.4.2", + "glob": "7.1.4", + "jest-environment-jsdom": "24.8.0", + "jest-environment-node": "24.8.0", + "jest-get-type": "24.8.0", + "jest-jasmine2": "24.8.0", + "jest-regex-util": "24.3.0", + "jest-resolve": "24.8.0", + "jest-util": "24.8.0", + "jest-validate": "24.8.0", + "micromatch": "3.1.10", + "pretty-format": "24.8.0", + "realpath-native": "1.1.0" + } + }, + "jest-diff": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-24.8.0.tgz", + "integrity": "sha512-wxetCEl49zUpJ/bvUmIFjd/o52J+yWcoc5ZyPq4/W1LUKGEhRYDIbP1KcF6t+PvqNrGAFk4/JhtxDq/Nnzs66g==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "diff-sequences": "24.3.0", + "jest-get-type": "24.8.0", + "pretty-format": "24.8.0" + } + }, + "jest-docblock": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-24.3.0.tgz", + "integrity": "sha512-nlANmF9Yq1dufhFlKG9rasfQlrY7wINJbo3q01tu56Jv5eBU5jirylhF2O5ZBnLxzOVBGRDz/9NAwNyBtG4Nyg==", + "dev": true, + "requires": { + "detect-newline": "2.1.0" + } + }, + "jest-each": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-24.8.0.tgz", + "integrity": "sha512-NrwK9gaL5+XgrgoCsd9svsoWdVkK4gnvyhcpzd6m487tXHqIdYeykgq3MKI1u4I+5Zf0tofr70at9dWJDeb+BA==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "chalk": "2.4.2", + "jest-get-type": "24.8.0", + "jest-util": "24.8.0", + "pretty-format": "24.8.0" + } + }, + "jest-environment-jsdom": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-24.8.0.tgz", + "integrity": "sha512-qbvgLmR7PpwjoFjM/sbuqHJt/NCkviuq9vus9NBn/76hhSidO+Z6Bn9tU8friecegbJL8gzZQEMZBQlFWDCwAQ==", + "dev": true, + "requires": { + "@jest/environment": "24.8.0", + "@jest/fake-timers": "24.8.0", + "@jest/types": "24.8.0", + "jest-mock": "24.8.0", + "jest-util": "24.8.0", + "jsdom": "11.12.0" + } + }, + "jest-environment-node": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-24.8.0.tgz", + "integrity": "sha512-vIGUEScd1cdDgR6sqn2M08sJTRLQp6Dk/eIkCeO4PFHxZMOgy+uYLPMC4ix3PEfM5Au/x3uQ/5Tl0DpXXZsJ/Q==", + "dev": true, + "requires": { + "@jest/environment": "24.8.0", + "@jest/fake-timers": "24.8.0", + "@jest/types": "24.8.0", + "jest-mock": "24.8.0", + "jest-util": "24.8.0" + } + }, + "jest-get-type": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-24.8.0.tgz", + "integrity": "sha512-RR4fo8jEmMD9zSz2nLbs2j0zvPpk/KCEz3a62jJWbd2ayNo0cb+KFRxPHVhE4ZmgGJEQp0fosmNz84IfqM8cMQ==", + "dev": true + }, + "jest-haste-map": { + "version": "24.8.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-24.8.1.tgz", + "integrity": "sha512-SwaxMGVdAZk3ernAx2Uv2sorA7jm3Kx+lR0grp6rMmnY06Kn/urtKx1LPN2mGTea4fCT38impYT28FfcLUhX0g==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "anymatch": "2.0.0", + "fb-watchman": "2.0.0", + "graceful-fs": "4.1.15", + "invariant": "2.2.4", + "jest-serializer": "24.4.0", + "jest-util": "24.8.0", + "jest-worker": "24.6.0", + "micromatch": "3.1.10", + "sane": "4.1.0", + "walker": "1.0.7" + } + }, + "jest-jasmine2": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-24.8.0.tgz", + "integrity": "sha512-cEky88npEE5LKd5jPpTdDCLvKkdyklnaRycBXL6GNmpxe41F0WN44+i7lpQKa/hcbXaQ+rc9RMaM4dsebrYong==", + "dev": true, + "requires": { + "@babel/traverse": "7.4.5", + "@jest/environment": "24.8.0", + "@jest/test-result": "24.8.0", + "@jest/types": "24.8.0", + "chalk": "2.4.2", + "co": "4.6.0", + "expect": "24.8.0", + "is-generator-fn": "2.1.0", + "jest-each": "24.8.0", + "jest-matcher-utils": "24.8.0", + "jest-message-util": "24.8.0", + "jest-runtime": "24.8.0", + "jest-snapshot": "24.8.0", + "jest-util": "24.8.0", + "pretty-format": "24.8.0", + "throat": "4.1.0" + } + }, + "jest-leak-detector": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-24.8.0.tgz", + "integrity": "sha512-cG0yRSK8A831LN8lIHxI3AblB40uhv0z+SsQdW3GoMMVcK+sJwrIIyax5tu3eHHNJ8Fu6IMDpnLda2jhn2pD/g==", + "dev": true, + "requires": { + "pretty-format": "24.8.0" + } + }, + "jest-matcher-utils": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-24.8.0.tgz", + "integrity": "sha512-lex1yASY51FvUuHgm0GOVj7DCYEouWSlIYmCW7APSqB9v8mXmKSn5+sWVF0MhuASG0bnYY106/49JU1FZNl5hw==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "jest-diff": "24.8.0", + "jest-get-type": "24.8.0", + "pretty-format": "24.8.0" + } + }, + "jest-message-util": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-24.8.0.tgz", + "integrity": "sha512-p2k71rf/b6ns8btdB0uVdljWo9h0ovpnEe05ZKWceQGfXYr4KkzgKo3PBi8wdnd9OtNh46VpNIJynUn/3MKm1g==", + "dev": true, + "requires": { + "@babel/code-frame": "7.0.0", + "@jest/test-result": "24.8.0", + "@jest/types": "24.8.0", + "@types/stack-utils": "1.0.1", + "chalk": "2.4.2", + "micromatch": "3.1.10", + "slash": "2.0.0", + "stack-utils": "1.0.2" + } + }, + "jest-mock": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-24.8.0.tgz", + "integrity": "sha512-6kWugwjGjJw+ZkK4mDa0Df3sDlUTsV47MSrT0nGQ0RBWJbpODDQ8MHDVtGtUYBne3IwZUhtB7elxHspU79WH3A==", + "dev": true, + "requires": { + "@jest/types": "24.8.0" + } + }, + "jest-pnp-resolver": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.1.tgz", + "integrity": "sha512-pgFw2tm54fzgYvc/OHrnysABEObZCUNFnhjoRjaVOCN8NYc032/gVjPaHD4Aq6ApkSieWtfKAFQtmDKAmhupnQ==", + "dev": true + }, + "jest-regex-util": { + "version": "24.3.0", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-24.3.0.tgz", + "integrity": "sha512-tXQR1NEOyGlfylyEjg1ImtScwMq8Oh3iJbGTjN7p0J23EuVX1MA8rwU69K4sLbCmwzgCUbVkm0FkSF9TdzOhtg==", + "dev": true + }, + "jest-resolve": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-24.8.0.tgz", + "integrity": "sha512-+hjSzi1PoRvnuOICoYd5V/KpIQmkAsfjFO71458hQ2Whi/yf1GDeBOFj8Gxw4LrApHsVJvn5fmjcPdmoUHaVKw==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "browser-resolve": "1.11.3", + "chalk": "2.4.2", + "jest-pnp-resolver": "1.2.1", + "realpath-native": "1.1.0" + } + }, + "jest-resolve-dependencies": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-24.8.0.tgz", + "integrity": "sha512-hyK1qfIf/krV+fSNyhyJeq3elVMhK9Eijlwy+j5jqmZ9QsxwKBiP6qukQxaHtK8k6zql/KYWwCTQ+fDGTIJauw==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "jest-regex-util": "24.3.0", + "jest-snapshot": "24.8.0" + } + }, + "jest-runner": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-24.8.0.tgz", + "integrity": "sha512-utFqC5BaA3JmznbissSs95X1ZF+d+4WuOWwpM9+Ak356YtMhHE/GXUondZdcyAAOTBEsRGAgH/0TwLzfI9h7ow==", + "dev": true, + "requires": { + "@jest/console": "24.7.1", + "@jest/environment": "24.8.0", + "@jest/test-result": "24.8.0", + "@jest/types": "24.8.0", + "chalk": "2.4.2", + "exit": "0.1.2", + "graceful-fs": "4.1.15", + "jest-config": "24.8.0", + "jest-docblock": "24.3.0", + "jest-haste-map": "24.8.1", + "jest-jasmine2": "24.8.0", + "jest-leak-detector": "24.8.0", + "jest-message-util": "24.8.0", + "jest-resolve": "24.8.0", + "jest-runtime": "24.8.0", + "jest-util": "24.8.0", + "jest-worker": "24.6.0", + "source-map-support": "0.5.12", + "throat": "4.1.0" + } + }, + "jest-runtime": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-24.8.0.tgz", + "integrity": "sha512-Mq0aIXhvO/3bX44ccT+czU1/57IgOMyy80oM0XR/nyD5zgBcesF84BPabZi39pJVA6UXw+fY2Q1N+4BiVUBWOA==", + "dev": true, + "requires": { + "@jest/console": "24.7.1", + "@jest/environment": "24.8.0", + "@jest/source-map": "24.3.0", + "@jest/transform": "24.8.0", + "@jest/types": "24.8.0", + "@types/yargs": "12.0.12", + "chalk": "2.4.2", + "exit": "0.1.2", + "glob": "7.1.4", + "graceful-fs": "4.1.15", + "jest-config": "24.8.0", + "jest-haste-map": "24.8.1", + "jest-message-util": "24.8.0", + "jest-mock": "24.8.0", + "jest-regex-util": "24.3.0", + "jest-resolve": "24.8.0", + "jest-snapshot": "24.8.0", + "jest-util": "24.8.0", + "jest-validate": "24.8.0", + "realpath-native": "1.1.0", + "slash": "2.0.0", + "strip-bom": "3.0.0", + "yargs": "12.0.5" + } + }, + "jest-serializer": { + "version": "24.4.0", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-24.4.0.tgz", + "integrity": "sha512-k//0DtglVstc1fv+GY/VHDIjrtNjdYvYjMlbLUed4kxrE92sIUewOi5Hj3vrpB8CXfkJntRPDRjCrCvUhBdL8Q==", + "dev": true + }, + "jest-snapshot": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-24.8.0.tgz", + "integrity": "sha512-5ehtWoc8oU9/cAPe6fez6QofVJLBKyqkY2+TlKTOf0VllBB/mqUNdARdcjlZrs9F1Cv+/HKoCS/BknT0+tmfPg==", + "dev": true, + "requires": { + "@babel/types": "7.4.4", + "@jest/types": "24.8.0", + "chalk": "2.4.2", + "expect": "24.8.0", + "jest-diff": "24.8.0", + "jest-matcher-utils": "24.8.0", + "jest-message-util": "24.8.0", + "jest-resolve": "24.8.0", + "mkdirp": "0.5.1", + "natural-compare": "1.4.0", + "pretty-format": "24.8.0", + "semver": "5.7.0" + } + }, + "jest-util": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-24.8.0.tgz", + "integrity": "sha512-DYZeE+XyAnbNt0BG1OQqKy/4GVLPtzwGx5tsnDrFcax36rVE3lTA5fbvgmbVPUZf9w77AJ8otqR4VBbfFJkUZA==", + "dev": true, + "requires": { + "@jest/console": "24.7.1", + "@jest/fake-timers": "24.8.0", + "@jest/source-map": "24.3.0", + "@jest/test-result": "24.8.0", + "@jest/types": "24.8.0", + "callsites": "3.1.0", + "chalk": "2.4.2", + "graceful-fs": "4.1.15", + "is-ci": "2.0.0", + "mkdirp": "0.5.1", + "slash": "2.0.0", + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "jest-validate": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-24.8.0.tgz", + "integrity": "sha512-+/N7VOEMW1Vzsrk3UWBDYTExTPwf68tavEPKDnJzrC6UlHtUDU/fuEdXqFoHzv9XnQ+zW6X3qMZhJ3YexfeLDA==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "camelcase": "5.3.1", + "chalk": "2.4.2", + "jest-get-type": "24.8.0", + "leven": "2.1.0", + "pretty-format": "24.8.0" + } + }, + "jest-watcher": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-24.8.0.tgz", + "integrity": "sha512-SBjwHt5NedQoVu54M5GEx7cl7IGEFFznvd/HNT8ier7cCAx/Qgu9ZMlaTQkvK22G1YOpcWBLQPFSImmxdn3DAw==", + "dev": true, + "requires": { + "@jest/test-result": "24.8.0", + "@jest/types": "24.8.0", + "@types/yargs": "12.0.12", + "ansi-escapes": "3.2.0", + "chalk": "2.4.2", + "jest-util": "24.8.0", + "string-length": "2.0.0" + } + }, + "jest-worker": { + "version": "24.6.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-24.6.0.tgz", + "integrity": "sha512-jDwgW5W9qGNvpI1tNnvajh0a5IE/PuGLFmHk6aR/BZFz8tSgGw17GsDPXAJ6p91IvYDjOw8GpFbvvZGAK+DPQQ==", + "dev": true, + "requires": { + "merge-stream": "1.0.1", + "supports-color": "6.1.0" + }, + "dependencies": { + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "3.0.0" + } + } + } + }, + "js-levenshtein": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/js-levenshtein/-/js-levenshtein-1.1.6.tgz", + "integrity": "sha512-X2BB11YZtrRqY4EnQcLX5Rh373zbK4alC1FW7D7MBhL2gtcC17cTnr6DmfHZeS0s2rTHjUTMMHfG7gO8SSdw+g==", + "dev": true + }, + "js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", + "dev": true + }, + "jscodeshift": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.6.4.tgz", + "integrity": "sha512-+NF/tlNbc2WEhXUuc4WEJLsJumF84tnaMUZW2hyJw3jThKKRvsPX4sPJVgO1lPE28z0gNL+gwniLG9d8mYvQCQ==", + "dev": true, + "requires": { + "@babel/core": "7.4.5", + "@babel/parser": "7.4.5", + "@babel/plugin-proposal-class-properties": "7.4.4", + "@babel/plugin-proposal-object-rest-spread": "7.4.4", + "@babel/preset-env": "7.4.5", + "@babel/preset-flow": "7.0.0", + "@babel/preset-typescript": "7.3.3", + "@babel/register": "7.4.4", + "babel-core": "7.0.0-bridge.0", + "colors": "1.3.3", + "flow-parser": "0.101.0", + "graceful-fs": "4.1.15", + "micromatch": "3.1.10", + "neo-async": "2.6.1", + "node-dir": "0.1.17", + "recast": "0.16.2", + "temp": "0.8.3", + "write-file-atomic": "2.4.1" + } + }, + "jsdom": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-11.12.0.tgz", + "integrity": "sha512-y8Px43oyiBM13Zc1z780FrfNLJCXTL40EWlty/LXUtcjykRBNgLlCjWXpfSPBl2iv+N7koQN+dvqszHZgT/Fjw==", + "dev": true, + "requires": { + "abab": "2.0.0", + "acorn": "5.7.3", + "acorn-globals": "4.3.2", + "array-equal": "1.0.0", + "cssom": "0.3.6", + "cssstyle": "1.2.2", + "data-urls": "1.1.0", + "domexception": "1.0.1", + "escodegen": "1.11.1", + "html-encoding-sniffer": "1.0.2", + "left-pad": "1.3.0", + "nwsapi": "2.1.4", + "parse5": "4.0.0", + "pn": "1.1.0", + "request": "2.88.0", + "request-promise-native": "1.0.7", + "sax": "1.2.4", + "symbol-tree": "3.2.4", + "tough-cookie": "2.5.0", + "w3c-hr-time": "1.0.1", + "webidl-conversions": "4.0.2", + "whatwg-encoding": "1.0.5", + "whatwg-mimetype": "2.3.0", + "whatwg-url": "6.5.0", + "ws": "5.2.2", + "xml-name-validator": "3.0.0" + }, + "dependencies": { + "acorn": { + "version": "5.7.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.3.tgz", + "integrity": "sha512-T/zvzYRfbVojPWahDsE5evJdHb3oJoQfFbsrKM7w5Zcs++Tr257tia3BmMP8XYVjp1S9RZXQMh7gao96BlqZOw==", + "dev": true + } + } + }, + "jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true + }, + "json-buffer": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.0.tgz", + "integrity": "sha1-Wx85evx11ne96Lz8Dkfh+aPZqJg=", + "dev": true + }, + "json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "json-schema": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", + "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", + "dev": true + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", + "dev": true + }, + "json3": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.3.tgz", + "integrity": "sha512-c7/8mbUsKigAbLkD5B010BK4D9LZm7A1pNItkEwiUZRpIN66exu/e7YQWysGun+TRKaJp8MhemM+VkfWv42aCA==", + "dev": true + }, + "json5": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", + "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", + "dev": true, + "requires": { + "minimist": "1.2.0" + } + }, + "jsprim": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", + "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.2.3", + "verror": "1.10.0" + } + }, + "keyv": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-3.0.0.tgz", + "integrity": "sha512-eguHnq22OE3uVoSYG0LVWNP+4ppamWr9+zWBe1bsNcovIMy6huUJFPgy4mGwCd/rnl3vOLGW1MTlu4c57CT1xA==", + "dev": true, + "requires": { + "json-buffer": "3.0.0" + } + }, + "killable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/killable/-/killable-1.0.1.tgz", + "integrity": "sha512-LzqtLKlUwirEUyl/nicirVmNiPvYs7l5n8wOPP7fyJVpUPkvCnW/vuiXGpylGUlnPDnB7311rARzAt3Mhswpjg==", + "dev": true + }, + "kind-of": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", + "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", + "dev": true + }, + "kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true + }, + "lcid": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/lcid/-/lcid-2.0.0.tgz", + "integrity": "sha512-avPEb8P8EGnwXKClwsNUgryVjllcRqtMYa49NTsbQagYuT1DcXnl1915oxWjoyGrXR6zH/Y0Zc96xWsPcoDKeA==", + "dev": true, + "requires": { + "invert-kv": "2.0.0" + } + }, + "left-pad": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/left-pad/-/left-pad-1.3.0.tgz", + "integrity": "sha512-XI5MPzVNApjAyhQzphX8BkmKsKUxD4LdyK24iZeQGinBN9yTQT3bFlCBy/aVx2HrNcqQGsdot8ghrjyrvMCoEA==", + "dev": true + }, + "leven": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-2.1.0.tgz", + "integrity": "sha1-wuep93IJTe6dNCAq6KzORoeHVYA=", + "dev": true + }, + "levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha1-OwmSTt+fCDwEkP3UwLxEIeBHZO4=", + "dev": true, + "requires": { + "prelude-ls": "1.1.2", + "type-check": "0.3.2" + } + }, + "load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha1-L19Fq5HjMhYjT9U62rZo607AmTs=", + "dev": true, + "requires": { + "graceful-fs": "4.1.15", + "parse-json": "4.0.0", + "pify": "3.0.0", + "strip-bom": "3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "dev": true + }, + "loader-utils": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", + "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", + "dev": true, + "requires": { + "big.js": "5.2.2", + "emojis-list": "2.1.0", + "json5": "1.0.1" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "3.0.0", + "path-exists": "3.0.0" + } + }, + "lodash": { + "version": "4.17.11", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.11.tgz", + "integrity": "sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==" + }, + "lodash.sortby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.sortby/-/lodash.sortby-4.7.0.tgz", + "integrity": "sha1-7dFMgk4sycHgsKG0K7UhBRakJDg=", + "dev": true + }, + "log-symbols": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-2.2.0.tgz", + "integrity": "sha512-VeIAFslyIerEJLXHziedo2basKbMKtTw3vfn5IzG0XTjhAVEJyNHnL2p7vc+wBDSdQuUpNw3M2u6xb9QsAY5Eg==", + "dev": true, + "requires": { + "chalk": "2.4.2" + } + }, + "loglevel": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.6.3.tgz", + "integrity": "sha512-LoEDv5pgpvWgPF4kNYuIp0qqSJVWak/dML0RY74xlzMZiT9w77teNAwKYKWBTYjlokMirg+o3jBwp+vlLrcfAA==", + "dev": true + }, + "loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "requires": { + "js-tokens": "4.0.0" + } + }, + "lowercase-keys": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-1.0.1.tgz", + "integrity": "sha512-G2Lj61tXDnVFFOi8VZds+SoQjtQC3dgokKdDG2mTm1tx4m50NUHBOZSBwQQHyy0V12A0JTG4icfZQH+xPyh8VA==", + "dev": true + }, + "lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "requires": { + "yallist": "3.0.3" + } + }, + "make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "requires": { + "pify": "4.0.1", + "semver": "5.7.0" + } + }, + "makeerror": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.11.tgz", + "integrity": "sha1-4BpckQnyr3lmDk6LlYd5AYT1qWw=", + "dev": true, + "requires": { + "tmpl": "1.0.4" + } + }, + "mamacro": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/mamacro/-/mamacro-0.0.3.tgz", + "integrity": "sha512-qMEwh+UujcQ+kbz3T6V+wAmO2U8veoq2w+3wY8MquqwVA3jChfwY+Tk52GZKDfACEPjuZ7r2oJLejwpt8jtwTA==", + "dev": true + }, + "map-age-cleaner": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/map-age-cleaner/-/map-age-cleaner-0.1.3.tgz", + "integrity": "sha512-bJzx6nMoP6PDLPBFmg7+xRKeFZvFboMrGlxmNj9ClvX53KrmvM5bXFXEWjbz4cz1AFn+jWJ9z/DJSz7hrs0w3w==", + "dev": true, + "requires": { + "p-defer": "1.0.0" + } + }, + "map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", + "dev": true + }, + "map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", + "dev": true, + "requires": { + "object-visit": "1.0.1" + } + }, + "md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dev": true, + "requires": { + "hash-base": "3.0.4", + "inherits": "2.0.3", + "safe-buffer": "5.1.2" + } + }, + "media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", + "dev": true + }, + "mem": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/mem/-/mem-4.3.0.tgz", + "integrity": "sha512-qX2bG48pTqYRVmDB37rn/6PT7LcR8T7oAX3bf99u1Tt1nzxYfxkgqDwUwolPlXweM0XzBOBFzSx4kfp7KP1s/w==", + "dev": true, + "requires": { + "map-age-cleaner": "0.1.3", + "mimic-fn": "2.1.0", + "p-is-promise": "2.1.0" + } + }, + "mem-fs": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/mem-fs/-/mem-fs-1.1.3.tgz", + "integrity": "sha1-uK6NLj/Lb10/kWXBLUVRoGXZicw=", + "dev": true, + "requires": { + "through2": "2.0.5", + "vinyl": "1.2.0", + "vinyl-file": "2.0.0" + } + }, + "mem-fs-editor": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/mem-fs-editor/-/mem-fs-editor-5.1.0.tgz", + "integrity": "sha512-2Yt2GCYEbcotYbIJagmow4gEtHDqzpq5XN94+yAx/NT5+bGqIjkXnm3KCUQfE6kRfScGp9IZknScoGRKu8L78w==", + "dev": true, + "requires": { + "commondir": "1.0.1", + "deep-extend": "0.6.0", + "ejs": "2.6.1", + "glob": "7.1.4", + "globby": "8.0.2", + "isbinaryfile": "3.0.3", + "mkdirp": "0.5.1", + "multimatch": "2.1.0", + "rimraf": "2.6.3", + "through2": "2.0.5", + "vinyl": "2.2.0" + }, + "dependencies": { + "clone": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/clone/-/clone-2.1.2.tgz", + "integrity": "sha1-G39Ln1kfHo+DZwQBYANFoCiHQ18=", + "dev": true + }, + "clone-stats": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-1.0.0.tgz", + "integrity": "sha1-s3gt/4u1R04Yuba/D9/ngvh3doA=", + "dev": true + }, + "globby": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "dev": true, + "requires": { + "array-union": "1.0.2", + "dir-glob": "2.0.0", + "fast-glob": "2.2.7", + "glob": "7.1.4", + "ignore": "3.3.10", + "pify": "3.0.0", + "slash": "1.0.0" + } + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "replace-ext": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-1.0.0.tgz", + "integrity": "sha1-3mMSg3P8v3w8z6TeWkgMRaZ5WOs=", + "dev": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + }, + "vinyl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-2.2.0.tgz", + "integrity": "sha512-MBH+yP0kC/GQ5GwBqrTPTzEfiiLjta7hTtvQtbxBgTeSXsmKQRQecjibMbxIXzVT3Y9KJK+drOz1/k+vsu8Nkg==", + "dev": true, + "requires": { + "clone": "2.1.2", + "clone-buffer": "1.0.0", + "clone-stats": "1.0.0", + "cloneable-readable": "1.1.3", + "remove-trailing-separator": "1.1.0", + "replace-ext": "1.0.0" + } + } + } + }, + "memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", + "dev": true, + "requires": { + "errno": "0.1.7", + "readable-stream": "2.3.6" + } + }, + "merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", + "dev": true + }, + "merge-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-1.0.1.tgz", + "integrity": "sha1-QEEgLVCKNCugAXQAjfDCUbjBNeE=", + "dev": true, + "requires": { + "readable-stream": "2.3.6" + } + }, + "merge2": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.2.3.tgz", + "integrity": "sha512-gdUU1Fwj5ep4kplwcmftruWofEFt6lfpkkr3h860CXbAB9c3hGb55EOL2ali0Td5oebvW0E1+3Sr+Ur7XfKpRA==", + "dev": true + }, + "methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", + "dev": true + }, + "micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dev": true, + "requires": { + "arr-diff": "4.0.0", + "array-unique": "0.3.2", + "braces": "2.3.2", + "define-property": "2.0.2", + "extend-shallow": "3.0.2", + "extglob": "2.0.4", + "fragment-cache": "0.2.1", + "kind-of": "6.0.2", + "nanomatch": "1.2.13", + "object.pick": "1.3.0", + "regex-not": "1.0.2", + "snapdragon": "0.8.2", + "to-regex": "3.0.2" + } + }, + "miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "brorand": "1.1.0" + } + }, + "mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true + }, + "mime-db": { + "version": "1.40.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", + "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==", + "dev": true + }, + "mime-types": { + "version": "2.1.24", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", + "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", + "dev": true, + "requires": { + "mime-db": "1.40.0" + } + }, + "mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true + }, + "mimic-response": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-1.0.1.tgz", + "integrity": "sha512-j5EctnkH7amfV/q5Hgmoal1g2QHFJRraOtmx0JpIqkxhBhI/lJSl1nMpQ45hVarwNETOoWEimndZ4QK0RHxuxQ==", + "dev": true + }, + "min-document": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/min-document/-/min-document-2.19.0.tgz", + "integrity": "sha1-e9KC4/WELtKVu3SM3Z8f+iyCRoU=", + "dev": true, + "requires": { + "dom-walk": "0.1.1" + } + }, + "minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", + "dev": true + }, + "minimatch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", + "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", + "dev": true, + "requires": { + "brace-expansion": "1.1.11" + } + }, + "minimist": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", + "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", + "dev": true + }, + "mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dev": true, + "requires": { + "concat-stream": "1.6.2", + "duplexify": "3.7.1", + "end-of-stream": "1.4.1", + "flush-write-stream": "1.1.1", + "from2": "2.3.0", + "parallel-transform": "1.1.0", + "pump": "3.0.0", + "pumpify": "1.5.1", + "stream-each": "1.2.3", + "through2": "2.0.5" + } + }, + "mixin-deep": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.1.tgz", + "integrity": "sha512-8ZItLHeEgaqEvd5lYBXfm4EZSFCX29Jb9K+lAHhDKzReKBQKj3R+7NOF6tjqYi9t4oI8VUfaWITJQm86wnXGNQ==", + "dev": true, + "requires": { + "for-in": "1.0.2", + "is-extendable": "1.0.1" + }, + "dependencies": { + "is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dev": true, + "requires": { + "is-plain-object": "2.0.4" + } + } + } + }, + "mkdirp": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", + "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", + "dev": true, + "requires": { + "minimist": "0.0.8" + }, + "dependencies": { + "minimist": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", + "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", + "dev": true + } + } + }, + "moment": { + "version": "2.24.0", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.24.0.tgz", + "integrity": "sha512-bV7f+6l2QigeBBZSM/6yTNq4P2fNpSWj/0e7jQcy87A8e7o2nAfP/34/2ky5Vw4B9S446EtIhodAzkFCcR4dQg==" + }, + "move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha1-viwAX9oy4LKa8fBdfEszIUxwH5I=", + "dev": true, + "requires": { + "aproba": "1.2.0", + "copy-concurrently": "1.0.5", + "fs-write-stream-atomic": "1.0.10", + "mkdirp": "0.5.1", + "rimraf": "2.6.3", + "run-queue": "1.0.3" + } + }, + "ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", + "dev": true + }, + "multicast-dns": { + "version": "6.2.3", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-6.2.3.tgz", + "integrity": "sha512-ji6J5enbMyGRHIAkAOu3WdV8nggqviKCEKtXcOqfphZZtQrmHKycfynJ2V7eVPUA4NhJ6V7Wf4TmGbTwKE9B6g==", + "dev": true, + "requires": { + "dns-packet": "1.3.1", + "thunky": "1.0.3" + } + }, + "multicast-dns-service-types": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/multicast-dns-service-types/-/multicast-dns-service-types-1.1.0.tgz", + "integrity": "sha1-iZ8R2WhuXgXLkbNdXw5jt3PPyQE=", + "dev": true + }, + "multimatch": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/multimatch/-/multimatch-2.1.0.tgz", + "integrity": "sha1-nHkGoi+0wCkZ4vX3UWG0zb1LKis=", + "dev": true, + "requires": { + "array-differ": "1.0.0", + "array-union": "1.0.2", + "arrify": "1.0.1", + "minimatch": "3.0.4" + } + }, + "mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha1-MHXOk7whuPq0PhvE2n6BFe0ee6s=", + "dev": true + }, + "nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dev": true, + "requires": { + "arr-diff": "4.0.0", + "array-unique": "0.3.2", + "define-property": "2.0.2", + "extend-shallow": "3.0.2", + "fragment-cache": "0.2.1", + "is-windows": "1.0.2", + "kind-of": "6.0.2", + "object.pick": "1.3.0", + "regex-not": "1.0.2", + "snapdragon": "0.8.2", + "to-regex": "3.0.2" + } + }, + "natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha1-Sr6/7tdUHywnrPspvbvRXI1bpPc=", + "dev": true + }, + "negotiator": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", + "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", + "dev": true + }, + "neo-async": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", + "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", + "dev": true + }, + "nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha1-X1Zl2TNRM1yqvvjxxVRRbPXx5OU=", + "dev": true, + "requires": { + "minimatch": "3.0.4" + } + }, + "node-forge": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-0.7.5.tgz", + "integrity": "sha512-MmbQJ2MTESTjt3Gi/3yG1wGpIMhUfcIypUCGtTizFR9IiccFwxSpfp0vtIZlkFclEqERemxfnSdZEMR9VqqEFQ==", + "dev": true + }, + "node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha1-h6kGXNs1XTGC2PlM4RGIuCXGijs=", + "dev": true + }, + "node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dev": true, + "requires": { + "assert": "1.5.0", + "browserify-zlib": "0.2.0", + "buffer": "4.9.1", + "console-browserify": "1.1.0", + "constants-browserify": "1.0.0", + "crypto-browserify": "3.12.0", + "domain-browser": "1.2.0", + "events": "3.0.0", + "https-browserify": "1.0.0", + "os-browserify": "0.3.0", + "path-browserify": "0.0.1", + "process": "0.11.10", + "punycode": "1.4.1", + "querystring-es3": "0.2.1", + "readable-stream": "2.3.6", + "stream-browserify": "2.0.2", + "stream-http": "2.8.3", + "string_decoder": "1.1.1", + "timers-browserify": "2.0.10", + "tty-browserify": "0.0.0", + "url": "0.11.0", + "util": "0.11.1", + "vm-browserify": "1.1.0" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + } + } + }, + "node-modules-regexp": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-modules-regexp/-/node-modules-regexp-1.0.0.tgz", + "integrity": "sha1-jZ2+KJZKSsVxLpExZCEHxx6Q7EA=", + "dev": true + }, + "node-notifier": { + "version": "5.4.0", + "resolved": "https://registry.npmjs.org/node-notifier/-/node-notifier-5.4.0.tgz", + "integrity": "sha512-SUDEb+o71XR5lXSTyivXd9J7fCloE3SyP4lSgt3lU2oSANiox+SxlNRGPjDKrwU1YN3ix2KN/VGGCg0t01rttQ==", + "dev": true, + "requires": { + "growly": "1.3.0", + "is-wsl": "1.1.0", + "semver": "5.7.0", + "shellwords": "0.1.1", + "which": "1.3.1" + } + }, + "node-releases": { + "version": "1.1.23", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-1.1.23.tgz", + "integrity": "sha512-uq1iL79YjfYC0WXoHbC/z28q/9pOl8kSHaXdWmAAc8No+bDwqkZbzIJz55g/MUsPgSGm9LZ7QSUbzTcH5tz47w==", + "dev": true, + "requires": { + "semver": "5.7.0" + } + }, + "normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "requires": { + "hosted-git-info": "2.7.1", + "resolve": "1.11.0", + "semver": "5.7.0", + "validate-npm-package-license": "3.0.4" + } + }, + "normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true + }, + "normalize-url": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-2.0.1.tgz", + "integrity": "sha512-D6MUW4K/VzoJ4rJ01JFKxDrtY1v9wrgzCX5f2qj/lzH1m/lW6MhUZFKerVsnyjOhOsYzI9Kqqak+10l4LvLpMw==", + "dev": true, + "requires": { + "prepend-http": "2.0.0", + "query-string": "5.1.1", + "sort-keys": "2.0.0" + } + }, + "npm-run-path": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-2.0.2.tgz", + "integrity": "sha1-NakjLfo11wZ7TLLd8jV7GHFTbF8=", + "dev": true, + "requires": { + "path-key": "2.0.1" + } + }, + "number-is-nan": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", + "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", + "dev": true + }, + "nwsapi": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.1.4.tgz", + "integrity": "sha512-iGfd9Y6SFdTNldEy2L0GUhcarIutFmk+MPWIn9dmj8NMIup03G08uUF2KGbbmv/Ux4RT0VZJoP/sVbWA6d/VIw==", + "dev": true + }, + "oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "dev": true + }, + "object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=" + }, + "object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", + "dev": true, + "requires": { + "copy-descriptor": "0.1.1", + "define-property": "0.2.5", + "kind-of": "3.2.2" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "0.1.6" + } + }, + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true + }, + "object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", + "dev": true, + "requires": { + "isobject": "3.0.1" + } + }, + "object.getownpropertydescriptors": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.0.3.tgz", + "integrity": "sha1-h1jIRvW0B62rDyNuCYbxSwUcqhY=", + "dev": true, + "requires": { + "define-properties": "1.1.3", + "es-abstract": "1.13.0" + } + }, + "object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", + "dev": true, + "requires": { + "isobject": "3.0.1" + } + }, + "obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", + "dev": true, + "requires": { + "ee-first": "1.1.1" + } + }, + "on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true + }, + "once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", + "dev": true, + "requires": { + "wrappy": "1.0.2" + } + }, + "onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha1-BnQoIw/WdEOyeUsiu6UotoZ5YtQ=", + "dev": true, + "requires": { + "mimic-fn": "1.2.0" + }, + "dependencies": { + "mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "dev": true + } + } + }, + "opn": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/opn/-/opn-5.5.0.tgz", + "integrity": "sha512-PqHpggC9bLV0VeWcdKhkpxY+3JTzetLSqTCWL/z/tFIbI6G8JCjondXklT1JinczLz2Xib62sSp0T/gKT4KksA==", + "dev": true, + "requires": { + "is-wsl": "1.1.0" + } + }, + "optimist": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", + "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", + "dev": true, + "requires": { + "minimist": "0.0.10", + "wordwrap": "0.0.3" + }, + "dependencies": { + "minimist": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", + "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", + "dev": true + } + } + }, + "optionator": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.2.tgz", + "integrity": "sha1-NkxeQJ0/TWMB1sC0wFu6UBgK62Q=", + "dev": true, + "requires": { + "deep-is": "0.1.3", + "fast-levenshtein": "2.0.6", + "levn": "0.3.0", + "prelude-ls": "1.1.2", + "type-check": "0.3.2", + "wordwrap": "1.0.0" + }, + "dependencies": { + "wordwrap": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-1.0.0.tgz", + "integrity": "sha1-J1hIEIkUVqQXHI0CJkQa3pDLyus=", + "dev": true + } + } + }, + "original": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", + "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", + "dev": true, + "requires": { + "url-parse": "1.4.7" + } + }, + "os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", + "dev": true + }, + "os-locale": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-3.1.0.tgz", + "integrity": "sha512-Z8l3R4wYWM40/52Z+S265okfFj8Kt2cC2MKY+xNi3kFs+XGI7WXu/I309QQQYbRW4ijiZ+yxs9pqEhJh0DqW3Q==", + "dev": true, + "requires": { + "execa": "1.0.0", + "lcid": "2.0.0", + "mem": "4.3.0" + } + }, + "os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", + "dev": true + }, + "p-cancelable": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-0.4.1.tgz", + "integrity": "sha512-HNa1A8LvB1kie7cERyy21VNeHb2CWJJYqyyC2o3klWFfMGlFmWv2Z7sFgZH8ZiaYL95ydToKTFVXgMV/Os0bBQ==", + "dev": true + }, + "p-defer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-defer/-/p-defer-1.0.0.tgz", + "integrity": "sha1-n26xgvbJqozXQwBKfU+WsZaw+ww=", + "dev": true + }, + "p-each-series": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-each-series/-/p-each-series-1.0.0.tgz", + "integrity": "sha1-kw89Et0fUOdDRFeiLNbwSsatf3E=", + "dev": true, + "requires": { + "p-reduce": "1.0.0" + } + }, + "p-finally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-finally/-/p-finally-1.0.0.tgz", + "integrity": "sha1-P7z7FbiZpEEjs0ttzBi3JDNqLK4=", + "dev": true + }, + "p-is-promise": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-is-promise/-/p-is-promise-2.1.0.tgz", + "integrity": "sha512-Y3W0wlRPK8ZMRbNq97l4M5otioeA5lm1z7bkNkxCka8HSPjR0xRWmpCmc9utiaLP9Jb1eD8BgeIxTW4AIF45Pg==", + "dev": true + }, + "p-limit": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.2.0.tgz", + "integrity": "sha512-pZbTJpoUsCzV48Mc9Nh51VbwO0X9cuPFE8gYwx9BTCt9SF8/b7Zljd2fVgOxhIF/HDTKgpVzs+GPhyKfjLLFRQ==", + "dev": true, + "requires": { + "p-try": "2.2.0" + } + }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "2.2.0" + } + }, + "p-map": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-2.1.0.tgz", + "integrity": "sha512-y3b8Kpd8OAN444hxfBbFfj1FY/RjtTd8tzYwhUqNYXx0fXx2iX4maP4Qr6qhIKbQXI02wTLAda4fYUbDagTUFw==", + "dev": true + }, + "p-reduce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/p-reduce/-/p-reduce-1.0.0.tgz", + "integrity": "sha1-GMKw3ZNqRpClKfgjH1ig/bakffo=", + "dev": true + }, + "p-retry": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-3.0.1.tgz", + "integrity": "sha512-XE6G4+YTTkT2a0UWb2kjZe8xNwf8bIbnqpc/IS/idOBVhyves0mK5OJgeocjx7q5pvX/6m23xuzVPYT1uGM73w==", + "dev": true, + "requires": { + "retry": "0.12.0" + } + }, + "p-timeout": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/p-timeout/-/p-timeout-2.0.1.tgz", + "integrity": "sha512-88em58dDVB/KzPEx1X0N3LwFfYZPyDc4B6eF38M1rk9VTZMbxXXgjugz8mmwpS9Ox4BDZ+t6t3QP5+/gazweIA==", + "dev": true, + "requires": { + "p-finally": "1.0.0" + } + }, + "p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true + }, + "pako": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", + "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", + "dev": true + }, + "parallel-transform": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.1.0.tgz", + "integrity": "sha1-1BDwZbBdojCB/NEPKIVMKb2jOwY=", + "dev": true, + "requires": { + "cyclist": "0.2.2", + "inherits": "2.0.3", + "readable-stream": "2.3.6" + } + }, + "parse-asn1": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.4.tgz", + "integrity": "sha512-Qs5duJcuvNExRfFZ99HDD3z4mAi3r9Wl/FOjEOijlxwCZs7E7mW2vjTpgQ4J8LpTF8x5v+1Vn5UQFejmWT11aw==", + "dev": true, + "requires": { + "asn1.js": "4.10.1", + "browserify-aes": "1.2.0", + "create-hash": "1.2.0", + "evp_bytestokey": "1.0.3", + "pbkdf2": "3.0.17", + "safe-buffer": "5.1.2" + } + }, + "parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha1-vjX1Qlvh9/bHRxhPmKeIy5lHfuA=", + "dev": true, + "requires": { + "error-ex": "1.3.2", + "json-parse-better-errors": "1.0.2" + } + }, + "parse-passwd": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/parse-passwd/-/parse-passwd-1.0.0.tgz", + "integrity": "sha1-bVuTSkVpk7I9N/QKOC1vFmao5cY=", + "dev": true + }, + "parse5": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-4.0.0.tgz", + "integrity": "sha512-VrZ7eOd3T1Fk4XWNXMgiGBK/z0MG48BWG2uQNU4I72fkQuKUTZpl+u9k+CxEG0twMVzSmXEEz12z5Fnw1jIQFA==", + "dev": true + }, + "parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true + }, + "pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", + "dev": true + }, + "path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", + "dev": true + }, + "path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", + "dev": true + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha1-zg6+ql94yxiSXqfYENe1mwEP1RU=", + "dev": true + }, + "path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", + "dev": true + }, + "path-is-inside": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha1-NlQX3t5EQw0cEa9hAn+s8HS9/FM=", + "dev": true + }, + "path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha1-QRyttXTFoUDTpLGRDUDYDMn0C0A=", + "dev": true + }, + "path-parse": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", + "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", + "dev": true + }, + "path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", + "dev": true + }, + "path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "requires": { + "pify": "3.0.0" + }, + "dependencies": { + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + } + } + }, + "pbkdf2": { + "version": "3.0.17", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", + "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", + "dev": true, + "requires": { + "create-hash": "1.2.0", + "create-hmac": "1.1.7", + "ripemd160": "2.0.2", + "safe-buffer": "5.1.2", + "sha.js": "2.4.11" + } + }, + "performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", + "dev": true + }, + "pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true + }, + "pinkie": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", + "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", + "dev": true + }, + "pinkie-promise": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", + "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", + "dev": true, + "requires": { + "pinkie": "2.0.4" + } + }, + "pirates": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.1.tgz", + "integrity": "sha512-WuNqLTbMI3tmfef2TKxlQmAiLHKtFhlsCZnPIpuv2Ow0RDVO8lfy1Opf4NUzlMXLjPl+Men7AuVdX6TA+s+uGA==", + "dev": true, + "requires": { + "node-modules-regexp": "1.0.0" + } + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "3.0.0" + } + }, + "platform": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/platform/-/platform-1.3.5.tgz", + "integrity": "sha512-TuvHS8AOIZNAlE77WUDiR4rySV/VMptyMfcfeoMgs4P8apaZM3JrnbzBiixKUv+XR6i+BXrQh8WAnjaSPFO65Q==" + }, + "pn": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pn/-/pn-1.1.0.tgz", + "integrity": "sha512-2qHaIQr2VLRFoxe2nASzsV6ef4yOOH+Fi9FBOVH6cqeSgUnoyySPZkxzLuzd+RYOQTRpROA0ztTMqxROKSb/nA==", + "dev": true + }, + "portfinder": { + "version": "1.0.20", + "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.20.tgz", + "integrity": "sha512-Yxe4mTyDzTd59PZJY4ojZR8F+E5e97iq2ZOHPz3HDgSvYC5siNad2tLooQ5y5QHyQhc3xVqvyk/eNA3wuoa7Sw==", + "dev": true, + "requires": { + "async": "1.5.2", + "debug": "2.6.9", + "mkdirp": "0.5.1" + } + }, + "posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", + "dev": true + }, + "prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha1-IZMqVJ9eUv/ZqCf1cOBL5iqX2lQ=", + "dev": true + }, + "prepend-http": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-2.0.0.tgz", + "integrity": "sha1-6SQ0v6XqjBn0HN/UAddBo8gZ2Jc=", + "dev": true + }, + "prettier": { + "version": "1.18.2", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.18.2.tgz", + "integrity": "sha512-OeHeMc0JhFE9idD4ZdtNibzY0+TPHSpSSb9h8FqtP+YnoZZ1sl8Vc9b1sasjfymH3SonAF4QcA2+mzHPhMvIiw==", + "dev": true + }, + "pretty-bytes": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.2.0.tgz", + "integrity": "sha512-ujANBhiUsl9AhREUDUEY1GPOharMGm8x8juS7qOHybcLi7XsKfrYQ88hSly1l2i0klXHTDYrlL8ihMCG55Dc3w==", + "dev": true + }, + "pretty-format": { + "version": "24.8.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-24.8.0.tgz", + "integrity": "sha512-P952T7dkrDEplsR+TuY7q3VXDae5Sr7zmQb12JU/NDQa/3CH7/QW0yvqLcGN6jL+zQFKaoJcPc+yJxMTGmosqw==", + "dev": true, + "requires": { + "@jest/types": "24.8.0", + "ansi-regex": "4.1.0", + "ansi-styles": "3.2.1", + "react-is": "16.8.6" + }, + "dependencies": { + "ansi-regex": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-4.1.0.tgz", + "integrity": "sha512-1apePfXM1UOSqw0o9IiFAovVz9M5S1Dg+4TrDwfMewQ6p/rmMueb7tWZjQ1rx4Loy1ArBggoqGpfqqdI4rondg==", + "dev": true + } + } + }, + "private": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", + "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", + "dev": true + }, + "process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", + "dev": true + }, + "process-nextick-args": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.0.tgz", + "integrity": "sha512-MtEC1TqN0EU5nephaJ4rAtThHtC86dNN9qCuEhtshvpVBkAW5ZO7BASN9REnF9eoXGcRub+pFuKEpOHE+HbEMw==", + "dev": true + }, + "promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha1-mEcocL8igTL8vdhoEputEsPAKeM=", + "dev": true + }, + "prompts": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.1.0.tgz", + "integrity": "sha512-+x5TozgqYdOwWsQFZizE/Tra3fKvAoy037kOyU6cgz84n8f6zxngLOV4O32kTwt9FcLCxAqw0P/c8rOr9y+Gfg==", + "dev": true, + "requires": { + "kleur": "3.0.3", + "sisteransi": "1.0.0" + } + }, + "prop-types": { + "version": "15.7.2", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.7.2.tgz", + "integrity": "sha512-8QQikdH7//R2vurIJSutZ1smHYTcLpRWEOlHnzcWHmBYrOGUysKwSsrC89BCiFj3CbrfJ/nXFdJepOVrY1GCHQ==", + "requires": { + "loose-envify": "1.4.0", + "object-assign": "4.1.1", + "react-is": "16.8.6" + } + }, + "proxy-addr": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", + "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", + "dev": true, + "requires": { + "forwarded": "0.1.2", + "ipaddr.js": "1.9.0" + } + }, + "prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", + "dev": true + }, + "psl": { + "version": "1.1.32", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.1.32.tgz", + "integrity": "sha512-MHACAkHpihU/REGGPLj4sEfc/XKW2bheigvHO1dUqjaKigMp1C8+WLQYRGgeKFMsw5PMfegZcaN8IDXK/cD0+g==", + "dev": true + }, + "public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dev": true, + "requires": { + "bn.js": "4.11.8", + "browserify-rsa": "4.0.1", + "create-hash": "1.2.0", + "parse-asn1": "5.1.4", + "randombytes": "2.1.0", + "safe-buffer": "5.1.2" + } + }, + "pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dev": true, + "requires": { + "end-of-stream": "1.4.1", + "once": "1.4.0" + } + }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "3.7.1", + "inherits": "2.0.3", + "pump": "2.0.1" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "1.4.1", + "once": "1.4.0" + } + } + } + }, + "punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", + "dev": true + }, + "qs": { + "version": "6.7.0", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", + "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", + "dev": true + }, + "query-string": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-5.1.1.tgz", + "integrity": "sha512-gjWOsm2SoGlgLEdAGt7a6slVOk9mGiXmPFMqrEhLQ68rhQuBnpfs3+EmlvqKyxnCo9/PPlF+9MtY02S1aFg+Jw==", + "dev": true, + "requires": { + "decode-uri-component": "0.2.0", + "object-assign": "4.1.1", + "strict-uri-encode": "1.1.0" + } + }, + "querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", + "dev": true + }, + "querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", + "dev": true + }, + "querystringify": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz", + "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==", + "dev": true + }, + "randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dev": true, + "requires": { + "randombytes": "2.1.0", + "safe-buffer": "5.1.2" + } + }, + "range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true + }, + "raw-body": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", + "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", + "dev": true, + "requires": { + "bytes": "3.1.0", + "http-errors": "1.7.2", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "dependencies": { + "bytes": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", + "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", + "dev": true + } + } + }, + "react": { + "version": "16.8.6", + "resolved": "https://registry.npmjs.org/react/-/react-16.8.6.tgz", + "integrity": "sha512-pC0uMkhLaHm11ZSJULfOBqV4tIZkx87ZLvbbQYunNixAAvjnC+snJCg0XQXn9VIsttVsbZP/H/ewzgsd5fxKXw==", + "requires": { + "loose-envify": "1.4.0", + "object-assign": "4.1.1", + "prop-types": "15.7.2", + "scheduler": "0.13.6" + } + }, + "react-chartjs-2": { + "version": "2.7.6", + "resolved": "https://registry.npmjs.org/react-chartjs-2/-/react-chartjs-2-2.7.6.tgz", + "integrity": "sha512-xDr0jhgt/o26atftXxTVsepz+QYZI2GNKBYpxtLvYgwffLUm18a9n562reUJAHvuwKsy2v+qMlK5HyjFtSW0mg==", + "requires": { + "lodash": "4.17.11", + "prop-types": "15.7.2" + } + }, + "react-dom": { + "version": "16.8.6", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-16.8.6.tgz", + "integrity": "sha512-1nL7PIq9LTL3fthPqwkvr2zY7phIPjYrT0jp4HjyEQrEROnw4dG41VVwi/wfoCneoleqrNX7iAD+pXebJZwrwA==", + "requires": { + "loose-envify": "1.4.0", + "object-assign": "4.1.1", + "prop-types": "15.7.2", + "scheduler": "0.13.6" + } + }, + "react-hot-loader": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/react-hot-loader/-/react-hot-loader-4.12.0.tgz", + "integrity": "sha512-N+8ct1euiQnwqqDyX+SrxsgZ13ax4e8JiHbSAPf7xAshPxF3iTqVJQUxOLH90RXOFaT8LLynq0VPz3rCK7AW1A==", + "dev": true, + "requires": { + "fast-levenshtein": "2.0.6", + "global": "4.4.0", + "hoist-non-react-statics": "3.3.0", + "loader-utils": "1.2.3", + "lodash": "4.17.11", + "prop-types": "15.7.2", + "react-lifecycles-compat": "3.0.4", + "shallowequal": "1.1.0", + "source-map": "0.7.3" + }, + "dependencies": { + "source-map": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.3.tgz", + "integrity": "sha512-CkCj6giN3S+n9qrYiBTX5gystlENnRW5jZeNLHpe6aue+SrHcG5VYwujhW9s4dY31mEGsxBDrHR6oI69fTXsaQ==", + "dev": true + } + } + }, + "react-is": { + "version": "16.8.6", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.8.6.tgz", + "integrity": "sha512-aUk3bHfZ2bRSVFFbbeVS4i+lNPZr3/WM5jT2J5omUVV1zzcs1nAaf3l51ctA5FFvCRbhrH0bdAsRRQddFJZPtA==" + }, + "react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==", + "dev": true + }, + "read-chunk": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/read-chunk/-/read-chunk-3.2.0.tgz", + "integrity": "sha512-CEjy9LCzhmD7nUpJ1oVOE6s/hBkejlcJEgLQHVnQznOSilOPb+kpKktlLfFDK3/WP43+F80xkUTM2VOkYoSYvQ==", + "dev": true, + "requires": { + "pify": "4.0.1", + "with-open-file": "0.1.6" + } + }, + "read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha1-nLxoaXj+5l0WwA4rGcI3/Pbjg4k=", + "dev": true, + "requires": { + "load-json-file": "4.0.0", + "normalize-package-data": "2.5.0", + "path-type": "3.0.0" + } + }, + "read-pkg-up": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-4.0.0.tgz", + "integrity": "sha512-6etQSH7nJGsK0RbG/2TeDzZFa8shjQ1um+SwQQ5cwKy0dhSXdOncEhb1CPpvQG4h7FyOV6EB6YlV0yJvZQNAkA==", + "dev": true, + "requires": { + "find-up": "3.0.0", + "read-pkg": "3.0.0" + } + }, + "readable-stream": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", + "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", + "dev": true, + "requires": { + "core-util-is": "1.0.2", + "inherits": "2.0.3", + "isarray": "1.0.0", + "process-nextick-args": "2.0.0", + "safe-buffer": "5.1.2", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + }, + "readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "dev": true, + "requires": { + "graceful-fs": "4.1.15", + "micromatch": "3.1.10", + "readable-stream": "2.3.6" + } + }, + "realpath-native": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/realpath-native/-/realpath-native-1.1.0.tgz", + "integrity": "sha512-wlgPA6cCIIg9gKz0fgAPjnzh4yR/LnXovwuo9hvyGvx3h8nX4+/iLZplfUWasXpqD8BdnGnP5njOFjkUwPzvjA==", + "dev": true, + "requires": { + "util.promisify": "1.0.0" + } + }, + "recast": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.16.2.tgz", + "integrity": "sha512-O/7qXi51DPjRVdbrpNzoBQH5dnAPQNbfoOFyRiUwreTMJfIHYOEBzwuH+c0+/BTSJ3CQyKs6ILSWXhESH6Op3A==", + "dev": true, + "requires": { + "ast-types": "0.11.7", + "esprima": "4.0.1", + "private": "0.1.8", + "source-map": "0.6.1" + }, + "dependencies": { + "esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "rechoir": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", + "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", + "dev": true, + "requires": { + "resolve": "1.11.0" + } + }, + "regenerate": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", + "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", + "dev": true + }, + "regenerate-unicode-properties": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-8.1.0.tgz", + "integrity": "sha512-LGZzkgtLY79GeXLm8Dp0BVLdQlWICzBnJz/ipWUgo59qBaZ+BHtq51P2q1uVZlppMuUAT37SDk39qUbjTWB7bA==", + "dev": true, + "requires": { + "regenerate": "1.4.0" + } + }, + "regenerator-transform": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.14.0.tgz", + "integrity": "sha512-rtOelq4Cawlbmq9xuMR5gdFmv7ku/sFoB7sRiywx7aq53bc52b4j6zvH7Te1Vt/X2YveDKnCGUbioieU7FEL3w==", + "dev": true, + "requires": { + "private": "0.1.8" + } + }, + "regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dev": true, + "requires": { + "extend-shallow": "3.0.2", + "safe-regex": "1.1.0" + } + }, + "regexp-tree": { + "version": "0.1.10", + "resolved": "https://registry.npmjs.org/regexp-tree/-/regexp-tree-0.1.10.tgz", + "integrity": "sha512-K1qVSbcedffwuIslMwpe6vGlj+ZXRnGkvjAtFHfDZZZuEdA/h0dxljAPu9vhUo6Rrx2U2AwJ+nSQ6hK+lrP5MQ==", + "dev": true + }, + "regexpu-core": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-4.5.4.tgz", + "integrity": "sha512-BtizvGtFQKGPUcTy56o3nk1bGRp4SZOTYrDtGNlqCQufptV5IkkLN6Emw+yunAJjzf+C9FQFtvq7IoA3+oMYHQ==", + "dev": true, + "requires": { + "regenerate": "1.4.0", + "regenerate-unicode-properties": "8.1.0", + "regjsgen": "0.5.0", + "regjsparser": "0.6.0", + "unicode-match-property-ecmascript": "1.0.4", + "unicode-match-property-value-ecmascript": "1.1.0" + } + }, + "regjsgen": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.5.0.tgz", + "integrity": "sha512-RnIrLhrXCX5ow/E5/Mh2O4e/oa1/jW0eaBKTSy3LaCj+M3Bqvm97GWDp2yUtzIs4LEn65zR2yiYGFqb2ApnzDA==", + "dev": true + }, + "regjsparser": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.6.0.tgz", + "integrity": "sha512-RQ7YyokLiQBomUJuUG8iGVvkgOLxwyZM8k6d3q5SAXpg4r5TZJZigKFvC6PpD+qQ98bCDC5YelPeA3EucDoNeQ==", + "dev": true, + "requires": { + "jsesc": "0.5.0" + }, + "dependencies": { + "jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", + "dev": true + } + } + }, + "remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", + "dev": true + }, + "repeat-element": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", + "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", + "dev": true + }, + "repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", + "dev": true + }, + "replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha1-KbvZIHinOfC8zitO5B6DeVNSKSQ=", + "dev": true + }, + "request": { + "version": "2.88.0", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", + "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", + "dev": true, + "requires": { + "aws-sign2": "0.7.0", + "aws4": "1.8.0", + "caseless": "0.12.0", + "combined-stream": "1.0.8", + "extend": "3.0.2", + "forever-agent": "0.6.1", + "form-data": "2.3.3", + "har-validator": "5.1.3", + "http-signature": "1.2.0", + "is-typedarray": "1.0.0", + "isstream": "0.1.2", + "json-stringify-safe": "5.0.1", + "mime-types": "2.1.24", + "oauth-sign": "0.9.0", + "performance-now": "2.1.0", + "qs": "6.5.2", + "safe-buffer": "5.1.2", + "tough-cookie": "2.4.3", + "tunnel-agent": "0.6.0", + "uuid": "3.3.2" + }, + "dependencies": { + "punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", + "dev": true + }, + "qs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", + "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", + "dev": true + }, + "tough-cookie": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", + "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", + "dev": true, + "requires": { + "psl": "1.1.32", + "punycode": "1.4.1" + } + } + } + }, + "request-promise-core": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/request-promise-core/-/request-promise-core-1.1.2.tgz", + "integrity": "sha512-UHYyq1MO8GsefGEt7EprS8UrXsm1TxEvFUX1IMTuSLU2Rh7fTIdFtl8xD7JiEYiWU2dl+NYAjCTksTehQUxPag==", + "dev": true, + "requires": { + "lodash": "4.17.11" + } + }, + "request-promise-native": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/request-promise-native/-/request-promise-native-1.0.7.tgz", + "integrity": "sha512-rIMnbBdgNViL37nZ1b3L/VfPOpSi0TqVDQPAvO6U14lMzOLrt5nilxCQqtDKhZeDiW0/hkCXGoQjhgJd/tCh6w==", + "dev": true, + "requires": { + "request-promise-core": "1.1.2", + "stealthy-require": "1.1.1", + "tough-cookie": "2.5.0" + } + }, + "require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", + "dev": true + }, + "require-main-filename": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", + "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", + "dev": true + }, + "requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", + "dev": true + }, + "resolve": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.11.0.tgz", + "integrity": "sha512-WL2pBDjqT6pGUNSUzMw00o4T7If+z4H2x3Gz893WoUQ5KW8Vr9txp00ykiP16VBaZF5+j/OcXJHZ9+PCvdiDKw==", + "dev": true, + "requires": { + "path-parse": "1.0.6" + } + }, + "resolve-cwd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-2.0.0.tgz", + "integrity": "sha1-AKn3OHVW4nA46uIyyqNypqWbZlo=", + "dev": true, + "requires": { + "resolve-from": "3.0.0" + } + }, + "resolve-dir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/resolve-dir/-/resolve-dir-1.0.1.tgz", + "integrity": "sha1-eaQGRMNivoLybv/nOcm7U4IEb0M=", + "dev": true, + "requires": { + "expand-tilde": "2.0.2", + "global-modules": "1.0.0" + } + }, + "resolve-from": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-3.0.0.tgz", + "integrity": "sha1-six699nWiBvItuZTM17rywoYh0g=", + "dev": true + }, + "resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", + "dev": true + }, + "responselike": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/responselike/-/responselike-1.0.2.tgz", + "integrity": "sha1-kYcg7ztjHFZCvgaPFa3lpG9Loec=", + "dev": true, + "requires": { + "lowercase-keys": "1.0.1" + } + }, + "restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha1-n37ih/gv0ybU/RYpI9YhKe7g368=", + "dev": true, + "requires": { + "onetime": "2.0.1", + "signal-exit": "3.0.2" + } + }, + "ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "dev": true + }, + "retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha1-G0KmJmoh8HQh0bC1S33BZ7AcATs=", + "dev": true + }, + "rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", + "dev": true, + "requires": { + "glob": "7.1.4" + } + }, + "ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dev": true, + "requires": { + "hash-base": "3.0.4", + "inherits": "2.0.3" + } + }, + "rsvp": { + "version": "4.8.5", + "resolved": "https://registry.npmjs.org/rsvp/-/rsvp-4.8.5.tgz", + "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", + "dev": true + }, + "run-async": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.3.0.tgz", + "integrity": "sha1-A3GrSuC91yDUFm19/aZP96RFpsA=", + "dev": true, + "requires": { + "is-promise": "2.1.0" + } + }, + "run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha1-6Eg5bwV9Ij8kOGkkYY4laUFh7Ec=", + "dev": true, + "requires": { + "aproba": "1.2.0" + } + }, + "rxjs": { + "version": "6.5.2", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.5.2.tgz", + "integrity": "sha512-HUb7j3kvb7p7eCUHE3FqjoDsC1xfZQ4AHFWfTKSpZ+sAhhz5X1WX0ZuUqWbzB2QhSLp3DoLUG+hMdEDKqWo2Zg==", + "dev": true, + "requires": { + "tslib": "1.10.0" + } + }, + "safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", + "dev": true, + "requires": { + "ret": "0.1.15" + } + }, + "safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "sane": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/sane/-/sane-4.1.0.tgz", + "integrity": "sha512-hhbzAgTIX8O7SHfp2c8/kREfEn4qO/9q8C9beyY6+tvZ87EpoZ3i1RIEvp27YBswnNbY9mWd6paKVmKbAgLfZA==", + "dev": true, + "requires": { + "@cnakazawa/watch": "1.0.3", + "anymatch": "2.0.0", + "capture-exit": "2.0.0", + "exec-sh": "0.3.2", + "execa": "1.0.0", + "fb-watchman": "2.0.0", + "micromatch": "3.1.10", + "minimist": "1.2.0", + "walker": "1.0.7" + } + }, + "sax": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", + "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", + "dev": true + }, + "scheduler": { + "version": "0.13.6", + "resolved": "https://registry.npmjs.org/scheduler/-/scheduler-0.13.6.tgz", + "integrity": "sha512-IWnObHt413ucAYKsD9J1QShUKkbKLQQHdxRyw73sw4FN26iWr3DY/H34xGPe4nmL1DwXyWmSWmMrA9TfQbE/XQ==", + "requires": { + "loose-envify": "1.4.0", + "object-assign": "4.1.1" + } + }, + "schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dev": true, + "requires": { + "ajv": "6.10.0", + "ajv-errors": "1.0.1", + "ajv-keywords": "3.4.0" + } + }, + "scoped-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/scoped-regex/-/scoped-regex-1.0.0.tgz", + "integrity": "sha1-o0a7Gs1CB65wvXwMfKnlZra63bg=", + "dev": true + }, + "select-hose": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", + "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", + "dev": true + }, + "selfsigned": { + "version": "1.10.4", + "resolved": "https://registry.npmjs.org/selfsigned/-/selfsigned-1.10.4.tgz", + "integrity": "sha512-9AukTiDmHXGXWtWjembZ5NDmVvP2695EtpgbCsxCa68w3c88B+alqbmZ4O3hZ4VWGXeGWzEVdvqgAJD8DQPCDw==", + "dev": true, + "requires": { + "node-forge": "0.7.5" + } + }, + "semver": { + "version": "5.7.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.0.tgz", + "integrity": "sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA==", + "dev": true + }, + "send": { + "version": "0.17.1", + "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", + "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", + "dev": true, + "requires": { + "debug": "2.6.9", + "depd": "1.1.2", + "destroy": "1.0.4", + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "etag": "1.8.1", + "fresh": "0.5.2", + "http-errors": "1.7.2", + "mime": "1.6.0", + "ms": "2.1.1", + "on-finished": "2.3.0", + "range-parser": "1.2.1", + "statuses": "1.5.0" + }, + "dependencies": { + "ms": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", + "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", + "dev": true + } + } + }, + "serialize-javascript": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-1.7.0.tgz", + "integrity": "sha512-ke8UG8ulpFOxO8f8gRYabHQe/ZntKlcig2Mp+8+URDP1D8vJZ0KUt7LYo07q25Z/+JVSgpr/cui9PIp5H6/+nA==", + "dev": true + }, + "serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", + "dev": true, + "requires": { + "accepts": "1.3.7", + "batch": "0.6.1", + "debug": "2.6.9", + "escape-html": "1.0.3", + "http-errors": "1.6.3", + "mime-types": "2.1.24", + "parseurl": "1.3.3" + }, + "dependencies": { + "http-errors": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", + "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", + "dev": true, + "requires": { + "depd": "1.1.2", + "inherits": "2.0.3", + "setprototypeof": "1.1.0", + "statuses": "1.5.0" + } + }, + "setprototypeof": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", + "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", + "dev": true + } + } + }, + "serve-static": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", + "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", + "dev": true, + "requires": { + "encodeurl": "1.0.2", + "escape-html": "1.0.3", + "parseurl": "1.3.3", + "send": "0.17.1" + } + }, + "set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", + "dev": true + }, + "set-value": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.0.tgz", + "integrity": "sha512-hw0yxk9GT/Hr5yJEYnHNKYXkIA8mVJgd9ditYZCe16ZczcaELYYcfvaXesNACk2O8O0nTiPQcQhGUQj8JLzeeg==", + "dev": true, + "requires": { + "extend-shallow": "2.0.1", + "is-extendable": "0.1.1", + "is-plain-object": "2.0.4", + "split-string": "3.1.0" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", + "dev": true + }, + "setprototypeof": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", + "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", + "dev": true + }, + "sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "safe-buffer": "5.1.2" + } + }, + "shallowequal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/shallowequal/-/shallowequal-1.1.0.tgz", + "integrity": "sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==", + "dev": true + }, + "shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha1-RKrGW2lbAzmJaMOfNj/uXer98eo=", + "dev": true, + "requires": { + "shebang-regex": "1.0.0" + } + }, + "shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha1-2kL0l0DAtC2yypcoVxyxkMmO/qM=", + "dev": true + }, + "shelljs": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.3.tgz", + "integrity": "sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==", + "dev": true, + "requires": { + "glob": "7.1.4", + "interpret": "1.2.0", + "rechoir": "0.6.2" + } + }, + "shellwords": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/shellwords/-/shellwords-0.1.1.tgz", + "integrity": "sha512-vFwSUfQvqybiICwZY5+DAWIPLKsWO31Q91JSKl3UYv+K5c2QRPzn0qzec6QPu1Qc9eHYItiP3NdJqNVqetYAww==", + "dev": true + }, + "signal-exit": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", + "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", + "dev": true + }, + "sisteransi": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.0.tgz", + "integrity": "sha512-N+z4pHB4AmUv0SjveWRd6q1Nj5w62m5jodv+GD8lvmbY/83T/rpbJGZOnK5T149OldDj4Db07BSv9xY4K6NTPQ==", + "dev": true + }, + "slash": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-2.0.0.tgz", + "integrity": "sha512-ZYKh3Wh2z1PpEXWr0MpSBZ0V6mZHAQfYevttO11c51CaWjGTaadiKZ+wVt1PbMlDV5qhMFslpZCemhwOK7C89A==", + "dev": true + }, + "snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dev": true, + "requires": { + "base": "0.11.2", + "debug": "2.6.9", + "define-property": "0.2.5", + "extend-shallow": "2.0.1", + "map-cache": "0.2.2", + "source-map": "0.5.7", + "source-map-resolve": "0.5.2", + "use": "3.1.1" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "0.1.6" + } + }, + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + } + } + }, + "snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dev": true, + "requires": { + "define-property": "1.0.0", + "isobject": "3.0.1", + "snapdragon-util": "3.0.1" + }, + "dependencies": { + "define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", + "dev": true, + "requires": { + "is-descriptor": "1.0.2" + } + }, + "is-accessor-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", + "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-data-descriptor": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", + "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", + "dev": true, + "requires": { + "kind-of": "6.0.2" + } + }, + "is-descriptor": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", + "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", + "dev": true, + "requires": { + "is-accessor-descriptor": "1.0.0", + "is-data-descriptor": "1.0.0", + "kind-of": "6.0.2" + } + } + } + }, + "snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "sockjs": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.19.tgz", + "integrity": "sha512-V48klKZl8T6MzatbLlzzRNhMepEys9Y4oGFpypBFFn1gLI/QQ9HtLLyWJNbPlwGLelOVOEijUbTTJeLLI59jLw==", + "dev": true, + "requires": { + "faye-websocket": "0.10.0", + "uuid": "3.3.2" + } + }, + "sockjs-client": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.3.0.tgz", + "integrity": "sha512-R9jxEzhnnrdxLCNln0xg5uGHqMnkhPSTzUZH2eXcR03S/On9Yvoq2wyUZILRUhZCNVu2PmwWVoyuiPz8th8zbg==", + "dev": true, + "requires": { + "debug": "3.2.6", + "eventsource": "1.0.7", + "faye-websocket": "0.11.3", + "inherits": "2.0.3", + "json3": "3.3.3", + "url-parse": "1.4.7" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "faye-websocket": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", + "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", + "dev": true, + "requires": { + "websocket-driver": "0.7.3" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha1-ZYU1WEhh7JfXMNbPQYIuH1ZoQSg=", + "dev": true, + "requires": { + "is-plain-obj": "1.1.0" + } + }, + "source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==", + "dev": true + }, + "source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", + "dev": true + }, + "source-map-resolve": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", + "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", + "dev": true, + "requires": { + "atob": "2.1.2", + "decode-uri-component": "0.2.0", + "resolve-url": "0.2.1", + "source-map-url": "0.4.0", + "urix": "0.1.0" + } + }, + "source-map-support": { + "version": "0.5.12", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.12.tgz", + "integrity": "sha512-4h2Pbvyy15EE02G+JOZpUCmqWJuqrs+sEkzewTm++BPi7Hvn/HwcqLAcNxYAyI0x13CpPPn+kMjl+hplXMHITQ==", + "dev": true, + "requires": { + "buffer-from": "1.1.1", + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "source-map-url": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", + "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", + "dev": true + }, + "spdx-correct": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", + "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", + "dev": true, + "requires": { + "spdx-expression-parse": "3.0.0", + "spdx-license-ids": "3.0.4" + } + }, + "spdx-exceptions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", + "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", + "dev": true + }, + "spdx-expression-parse": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", + "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", + "dev": true, + "requires": { + "spdx-exceptions": "2.2.0", + "spdx-license-ids": "3.0.4" + } + }, + "spdx-license-ids": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.4.tgz", + "integrity": "sha512-7j8LYJLeY/Yb6ACbQ7F76qy5jHkp0U6jgBfJsk97bwWlVUnUWsAgpyaCvo17h0/RQGnQ036tVDomiwoI4pDkQA==", + "dev": true + }, + "spdy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/spdy/-/spdy-4.0.0.tgz", + "integrity": "sha512-ot0oEGT/PGUpzf/6uk4AWLqkq+irlqHXkrdbk51oWONh3bxQmBuljxPNl66zlRRcIJStWq0QkLUCPOPjgjvU0Q==", + "dev": true, + "requires": { + "debug": "4.1.1", + "handle-thing": "2.0.0", + "http-deceiver": "1.2.7", + "select-hose": "2.0.0", + "spdy-transport": "3.0.0" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + } + } + }, + "spdy-transport": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-3.0.0.tgz", + "integrity": "sha512-hsLVFE5SjA6TCisWeJXFKniGGOpBgMLmerfO2aCyCU5s7nJ/rpAepqmFifv/GCbSbueEeAJJnmSQ2rKC/g8Fcw==", + "dev": true, + "requires": { + "debug": "4.1.1", + "detect-node": "2.0.4", + "hpack.js": "2.1.6", + "obuf": "1.1.2", + "readable-stream": "3.4.0", + "wbuf": "1.7.3" + }, + "dependencies": { + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "readable-stream": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.4.0.tgz", + "integrity": "sha512-jItXPLmrSR8jmTRmRWJXCnGJsfy85mB3Wd/uINMXA65yrnFo0cPClFIUWzo2najVNSl+mx7/4W8ttlLWJe99pQ==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "string_decoder": "1.1.1", + "util-deprecate": "1.0.2" + } + } + } + }, + "split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dev": true, + "requires": { + "extend-shallow": "3.0.2" + } + }, + "sshpk": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", + "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", + "dev": true, + "requires": { + "asn1": "0.2.4", + "assert-plus": "1.0.0", + "bcrypt-pbkdf": "1.0.2", + "dashdash": "1.14.1", + "ecc-jsbn": "0.1.2", + "getpass": "0.1.7", + "jsbn": "0.1.1", + "safer-buffer": "2.1.2", + "tweetnacl": "0.14.5" + } + }, + "ssri": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.1.tgz", + "integrity": "sha512-3Wge10hNcT1Kur4PDFwEieXSCMCJs/7WvSACcrMYrNp+b8kDL1/0wJch5Ni2WrtwEa2IO8OsVfeKIciKCDx/QA==", + "dev": true, + "requires": { + "figgy-pudding": "3.5.1" + } + }, + "stack-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-1.0.2.tgz", + "integrity": "sha512-MTX+MeG5U994cazkjd/9KNAapsHnibjMLnfXodlkXw76JEea0UiNzrqidzo1emMwk7w5Qhc9jd4Bn9TBb1MFwA==", + "dev": true + }, + "static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", + "dev": true, + "requires": { + "define-property": "0.2.5", + "object-copy": "0.1.0" + }, + "dependencies": { + "define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", + "dev": true, + "requires": { + "is-descriptor": "0.1.6" + } + } + } + }, + "statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", + "dev": true + }, + "stealthy-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/stealthy-require/-/stealthy-require-1.1.1.tgz", + "integrity": "sha1-NbCYdbT/SfJqd35QmzCQoyJr8ks=", + "dev": true + }, + "stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dev": true, + "requires": { + "inherits": "2.0.3", + "readable-stream": "2.3.6" + } + }, + "stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dev": true, + "requires": { + "end-of-stream": "1.4.1", + "stream-shift": "1.0.0" + } + }, + "stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dev": true, + "requires": { + "builtin-status-codes": "3.0.0", + "inherits": "2.0.3", + "readable-stream": "2.3.6", + "to-arraybuffer": "1.0.1", + "xtend": "4.0.1" + } + }, + "stream-shift": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.0.tgz", + "integrity": "sha1-1cdSgl5TZ+eG944Y5EXqIjoVWVI=", + "dev": true + }, + "strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", + "dev": true + }, + "string-length": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-2.0.0.tgz", + "integrity": "sha1-1A27aGo6zpYMHP/KVivyxF+DY+0=", + "dev": true, + "requires": { + "astral-regex": "1.0.0", + "strip-ansi": "4.0.0" + } + }, + "string-template": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/string-template/-/string-template-0.2.1.tgz", + "integrity": "sha1-QpMuWYo1LQH8IuwzZ9nYTuxsmt0=", + "dev": true + }, + "string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "dev": true, + "requires": { + "is-fullwidth-code-point": "2.0.0", + "strip-ansi": "4.0.0" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, + "requires": { + "ansi-regex": "3.0.0" + } + }, + "strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha1-IzTBjpx1n3vdVv3vfprj1YjmjtM=", + "dev": true + }, + "strip-bom-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom-stream/-/strip-bom-stream-2.0.0.tgz", + "integrity": "sha1-+H217yYT9paKpUWr/h7HKLaoKco=", + "dev": true, + "requires": { + "first-chunk-stream": "2.0.0", + "strip-bom": "2.0.0" + }, + "dependencies": { + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "0.2.1" + } + } + } + }, + "strip-eof": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/strip-eof/-/strip-eof-1.0.0.tgz", + "integrity": "sha1-u0P/VZim6wXYm1n80SnJgzE2Br8=", + "dev": true + }, + "supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "requires": { + "has-flag": "3.0.0" + } + }, + "symbol-tree": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", + "integrity": "sha512-9QNk5KwDF+Bvz+PyObkmSYjI5ksVUYtjW7AU22r2NKcfLJcXp96hkDWU3+XndOsUb+AQ9QhfzfCT2O+CNWT5Tw==", + "dev": true + }, + "tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "dev": true + }, + "temp": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/temp/-/temp-0.8.3.tgz", + "integrity": "sha1-4Ma8TSa5AxJEEOT+2BEDAU38H1k=", + "dev": true, + "requires": { + "os-tmpdir": "1.0.2", + "rimraf": "2.2.8" + }, + "dependencies": { + "rimraf": { + "version": "2.2.8", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.2.8.tgz", + "integrity": "sha1-5Dm+Kq7jJzIZUnMPmaiSnk/FBYI=", + "dev": true + } + } + }, + "terser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.0.0.tgz", + "integrity": "sha512-dOapGTU0hETFl1tCo4t56FN+2jffoKyER9qBGoUFyZ6y7WLoKT0bF+lAYi6B6YsILcGF3q1C2FBh8QcKSCgkgA==", + "dev": true, + "requires": { + "commander": "2.20.0", + "source-map": "0.6.1", + "source-map-support": "0.5.12" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "terser-webpack-plugin": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.3.0.tgz", + "integrity": "sha512-W2YWmxPjjkUcOWa4pBEv4OP4er1aeQJlSo2UhtCFQCuRXEHjOFscO8VyWHj9JLlA0RzQb8Y2/Ta78XZvT54uGg==", + "dev": true, + "requires": { + "cacache": "11.3.2", + "find-cache-dir": "2.1.0", + "is-wsl": "1.1.0", + "loader-utils": "1.2.3", + "schema-utils": "1.0.0", + "serialize-javascript": "1.7.0", + "source-map": "0.6.1", + "terser": "4.0.0", + "webpack-sources": "1.3.0", + "worker-farm": "1.7.0" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "test-exclude": { + "version": "5.2.3", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-5.2.3.tgz", + "integrity": "sha512-M+oxtseCFO3EDtAaGH7iiej3CBkzXqFMbzqYAACdzKui4eZA+pq3tZEwChvOdNfa7xxy8BfbmgJSIr43cC/+2g==", + "dev": true, + "requires": { + "glob": "7.1.4", + "minimatch": "3.0.4", + "read-pkg-up": "4.0.0", + "require-main-filename": "2.0.0" + }, + "dependencies": { + "require-main-filename": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-2.0.0.tgz", + "integrity": "sha512-NKN5kMDylKuldxYLSUfrbo5Tuzh4hd+2E8NPPX02mZtn1VuREQToYe/ZdlJy+J3uCpfaiGF05e7B8W0iXbQHmg==", + "dev": true + } + } + }, + "text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha1-f17oI66AUgfACvLfSoTsP8+lcLQ=", + "dev": true + }, + "textextensions": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/textextensions/-/textextensions-2.4.0.tgz", + "integrity": "sha512-qftQXnX1DzpSV8EddtHIT0eDDEiBF8ywhFYR2lI9xrGtxqKN+CvLXhACeCIGbCpQfxxERbrkZEFb8cZcDKbVZA==", + "dev": true + }, + "throat": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/throat/-/throat-4.1.0.tgz", + "integrity": "sha1-iQN8vJLFarGJJua6TLsgDhVnKmo=", + "dev": true + }, + "through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", + "dev": true + }, + "through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dev": true, + "requires": { + "readable-stream": "2.3.6", + "xtend": "4.0.1" + } + }, + "thunky": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/thunky/-/thunky-1.0.3.tgz", + "integrity": "sha512-YwT8pjmNcAXBZqrubu22P4FYsh2D4dxRmnWBOL8Jk8bUcRUtc5326kx32tuTmFDAZtLOGEVNl8POAR8j896Iow==", + "dev": true + }, + "timed-out": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/timed-out/-/timed-out-4.0.1.tgz", + "integrity": "sha1-8y6srFoXW+ol1/q1Zas+2HQe9W8=", + "dev": true + }, + "timers-browserify": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.10.tgz", + "integrity": "sha512-YvC1SV1XdOUaL6gx5CoGroT3Gu49pK9+TZ38ErPldOWW4j49GI1HKs9DV+KGq/w6y+LZ72W1c8cKz2vzY+qpzg==", + "dev": true, + "requires": { + "setimmediate": "1.0.5" + } + }, + "tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dev": true, + "requires": { + "os-tmpdir": "1.0.2" + } + }, + "tmpl": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.4.tgz", + "integrity": "sha1-I2QN17QtAEM5ERQIIOXPRA5SHdE=", + "dev": true + }, + "to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", + "dev": true + }, + "to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4=", + "dev": true + }, + "to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", + "dev": true, + "requires": { + "kind-of": "3.2.2" + }, + "dependencies": { + "kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", + "dev": true, + "requires": { + "is-buffer": "1.1.6" + } + } + } + }, + "to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dev": true, + "requires": { + "define-property": "2.0.2", + "extend-shallow": "3.0.2", + "regex-not": "1.0.2", + "safe-regex": "1.1.0" + } + }, + "to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", + "dev": true, + "requires": { + "is-number": "3.0.0", + "repeat-string": "1.6.1" + } + }, + "toidentifier": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", + "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", + "dev": true + }, + "tough-cookie": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.5.0.tgz", + "integrity": "sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g==", + "dev": true, + "requires": { + "psl": "1.1.32", + "punycode": "2.1.1" + } + }, + "tr46": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-1.0.1.tgz", + "integrity": "sha1-qLE/1r/SSJUZZ0zN5VujaTtwbQk=", + "dev": true, + "requires": { + "punycode": "2.1.1" + } + }, + "trim-right": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/trim-right/-/trim-right-1.0.1.tgz", + "integrity": "sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM=", + "dev": true + }, + "tslib": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.10.0.tgz", + "integrity": "sha512-qOebF53frne81cf0S9B41ByenJ3/IuH8yJKngAX35CmiZySA0khhkovshKK+jGCaMnVomla7gVlIcc3EvKPbTQ==", + "dev": true + }, + "tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", + "dev": true + }, + "tunnel-agent": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", + "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", + "dev": true, + "requires": { + "safe-buffer": "5.1.2" + } + }, + "tweetnacl": { + "version": "0.14.5", + "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", + "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", + "dev": true + }, + "type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, + "requires": { + "prelude-ls": "1.1.2" + } + }, + "type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "requires": { + "media-typer": "0.3.0", + "mime-types": "2.1.24" + } + }, + "typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c=", + "dev": true + }, + "uglify-js": { + "version": "3.4.10", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", + "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", + "dev": true, + "optional": true, + "requires": { + "commander": "2.19.0", + "source-map": "0.6.1" + }, + "dependencies": { + "commander": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", + "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", + "dev": true, + "optional": true + }, + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "optional": true + } + } + }, + "unicode-canonical-property-names-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-1.0.4.tgz", + "integrity": "sha512-jDrNnXWHd4oHiTZnx/ZG7gtUTVp+gCcTTKr8L0HjlwphROEW3+Him+IpvC+xcJEFegapiMZyZe02CyuOnRmbnQ==", + "dev": true + }, + "unicode-match-property-ecmascript": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-1.0.4.tgz", + "integrity": "sha512-L4Qoh15vTfntsn4P1zqnHulG0LdXgjSO035fEpdtp6YxXhMT51Q6vgM5lYdG/5X3MjS+k/Y9Xw4SFCY9IkR0rg==", + "dev": true, + "requires": { + "unicode-canonical-property-names-ecmascript": "1.0.4", + "unicode-property-aliases-ecmascript": "1.0.5" + } + }, + "unicode-match-property-value-ecmascript": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-1.1.0.tgz", + "integrity": "sha512-hDTHvaBk3RmFzvSl0UVrUmC3PuW9wKVnpoUDYH0JDkSIovzw+J5viQmeYHxVSBptubnr7PbH2e0fnpDRQnQl5g==", + "dev": true + }, + "unicode-property-aliases-ecmascript": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-1.0.5.tgz", + "integrity": "sha512-L5RAqCfXqAwR3RriF8pM0lU0w4Ryf/GgzONwi6KnL1taJQa7x1TCxdJnILX59WIGOwR57IVxn7Nej0fz1Ny6fw==", + "dev": true + }, + "union-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.0.tgz", + "integrity": "sha1-XHHDTLW61dzr4+oM0IIHulqhrqQ=", + "dev": true, + "requires": { + "arr-union": "3.1.0", + "get-value": "2.0.6", + "is-extendable": "0.1.1", + "set-value": "0.4.3" + }, + "dependencies": { + "extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", + "dev": true, + "requires": { + "is-extendable": "0.1.1" + } + }, + "set-value": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-0.4.3.tgz", + "integrity": "sha1-fbCPnT0i3H945Trzw79GZuzfzPE=", + "dev": true, + "requires": { + "extend-shallow": "2.0.1", + "is-extendable": "0.1.1", + "is-plain-object": "2.0.4", + "to-object-path": "0.3.0" + } + } + } + }, + "unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "requires": { + "unique-slug": "2.0.2" + } + }, + "unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "requires": { + "imurmurhash": "0.1.4" + } + }, + "unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", + "dev": true + }, + "unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", + "dev": true, + "requires": { + "has-value": "0.3.1", + "isobject": "3.0.1" + }, + "dependencies": { + "has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", + "dev": true, + "requires": { + "get-value": "2.0.6", + "has-values": "0.1.4", + "isobject": "2.1.0" + }, + "dependencies": { + "isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", + "dev": true, + "requires": { + "isarray": "1.0.0" + } + } + } + }, + "has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", + "dev": true + } + } + }, + "untildify": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-3.0.3.tgz", + "integrity": "sha512-iSk/J8efr8uPT/Z4eSUywnqyrQU7DSdMfdqK4iWEaUVVmcP5JcnpRqmVMwcwcnmI1ATFNgC5V90u09tBynNFKA==", + "dev": true + }, + "upath": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.1.2.tgz", + "integrity": "sha512-kXpym8nmDmlCBr7nKdIx8P2jNBa+pBpIUFRnKJ4dr8htyYGJFokkr2ZvERRtUN+9SY+JqXouNgUPtv6JQva/2Q==", + "dev": true + }, + "uri-js": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", + "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", + "dev": true, + "requires": { + "punycode": "2.1.1" + } + }, + "urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", + "dev": true + }, + "url": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", + "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", + "dev": true, + "requires": { + "punycode": "1.3.2", + "querystring": "0.2.0" + }, + "dependencies": { + "punycode": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", + "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", + "dev": true + } + } + }, + "url-parse": { + "version": "1.4.7", + "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", + "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", + "dev": true, + "requires": { + "querystringify": "2.1.1", + "requires-port": "1.0.0" + } + }, + "url-parse-lax": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/url-parse-lax/-/url-parse-lax-3.0.0.tgz", + "integrity": "sha1-FrXK/Afb42dsGxmZF3gj1lA6yww=", + "dev": true, + "requires": { + "prepend-http": "2.0.0" + } + }, + "url-to-options": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/url-to-options/-/url-to-options-1.0.1.tgz", + "integrity": "sha1-FQWgOiiaSMvXpDTvuu7FBV9WM6k=", + "dev": true + }, + "use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "dev": true + }, + "util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dev": true, + "requires": { + "inherits": "2.0.3" + } + }, + "util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", + "dev": true + }, + "util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dev": true, + "requires": { + "define-properties": "1.1.3", + "object.getownpropertydescriptors": "2.0.3" + } + }, + "utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", + "dev": true + }, + "uuid": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.2.tgz", + "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", + "dev": true + }, + "v8-compile-cache": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/v8-compile-cache/-/v8-compile-cache-2.0.3.tgz", + "integrity": "sha512-CNmdbwQMBjwr9Gsmohvm0pbL954tJrNzf6gWL3K+QMQf00PF7ERGrEiLgjuU3mKreLC2MeGhUsNV9ybTbLgd3w==", + "dev": true + }, + "validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "requires": { + "spdx-correct": "3.1.0", + "spdx-expression-parse": "3.0.0" + } + }, + "vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", + "dev": true + }, + "verror": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", + "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", + "dev": true, + "requires": { + "assert-plus": "1.0.0", + "core-util-is": "1.0.2", + "extsprintf": "1.3.0" + } + }, + "vinyl": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/vinyl/-/vinyl-1.2.0.tgz", + "integrity": "sha1-XIgDbPVl5d8FVYv8kR+GVt8hiIQ=", + "dev": true, + "requires": { + "clone": "1.0.4", + "clone-stats": "0.0.1", + "replace-ext": "0.0.1" + } + }, + "vinyl-file": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/vinyl-file/-/vinyl-file-2.0.0.tgz", + "integrity": "sha1-p+v1/779obfRjRQPyweyI++2dRo=", + "dev": true, + "requires": { + "graceful-fs": "4.1.15", + "pify": "2.3.0", + "pinkie-promise": "2.0.1", + "strip-bom": "2.0.0", + "strip-bom-stream": "2.0.0", + "vinyl": "1.2.0" + }, + "dependencies": { + "pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", + "dev": true + }, + "strip-bom": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", + "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", + "dev": true, + "requires": { + "is-utf8": "0.2.1" + } + } + } + }, + "vm-browserify": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", + "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==", + "dev": true + }, + "w3c-hr-time": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/w3c-hr-time/-/w3c-hr-time-1.0.1.tgz", + "integrity": "sha1-gqwr/2PZUOqeMYmlimViX+3xkEU=", + "dev": true, + "requires": { + "browser-process-hrtime": "0.1.3" + } + }, + "walker": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.7.tgz", + "integrity": "sha1-L3+bj9ENZ3JisYqITijRlhjgKPs=", + "dev": true, + "requires": { + "makeerror": "1.0.11" + } + }, + "watchpack": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", + "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", + "dev": true, + "requires": { + "chokidar": "2.1.6", + "graceful-fs": "4.1.15", + "neo-async": "2.6.1" + } + }, + "wbuf": { + "version": "1.7.3", + "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", + "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", + "dev": true, + "requires": { + "minimalistic-assert": "1.0.1" + } + }, + "webidl-conversions": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-4.0.2.tgz", + "integrity": "sha512-YQ+BmxuTgd6UXZW3+ICGfyqRyHXVlD5GtQr5+qjiNW7bF0cqrzX500HVXPBOvgXb5YnzDd+h0zqyv61KUD7+Sg==", + "dev": true + }, + "webpack": { + "version": "4.34.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.34.0.tgz", + "integrity": "sha512-ry2IQy1wJjOefLe1uJLzn5tG/DdIKzQqNlIAd2L84kcaADqNvQDTBlo8UcCNyDaT5FiaB+16jhAkb63YeG3H8Q==", + "dev": true, + "requires": { + "@webassemblyjs/ast": "1.8.5", + "@webassemblyjs/helper-module-context": "1.8.5", + "@webassemblyjs/wasm-edit": "1.8.5", + "@webassemblyjs/wasm-parser": "1.8.5", + "acorn": "6.1.1", + "acorn-dynamic-import": "4.0.0", + "ajv": "6.10.0", + "ajv-keywords": "3.4.0", + "chrome-trace-event": "1.0.2", + "enhanced-resolve": "4.1.0", + "eslint-scope": "4.0.3", + "json-parse-better-errors": "1.0.2", + "loader-runner": "2.4.0", + "loader-utils": "1.2.3", + "memory-fs": "0.4.1", + "micromatch": "3.1.10", + "mkdirp": "0.5.1", + "neo-async": "2.6.1", + "node-libs-browser": "2.2.1", + "schema-utils": "1.0.0", + "tapable": "1.1.3", + "terser-webpack-plugin": "1.3.0", + "watchpack": "1.6.0", + "webpack-sources": "1.3.0" + } + }, + "webpack-cli": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/webpack-cli/-/webpack-cli-3.3.4.tgz", + "integrity": "sha512-ubJGQEKMtBSpT+LiL5hXvn2GIOWiRWItR1DGUqJRhwRBeGhpRXjvF5f0erqdRJLErkfqS5/Ldkkedh4AL5Q1ZQ==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "cross-spawn": "6.0.5", + "enhanced-resolve": "4.1.0", + "findup-sync": "2.0.0", + "global-modules": "1.0.0", + "import-local": "2.0.0", + "interpret": "1.2.0", + "loader-utils": "1.2.3", + "prettier": "1.18.2", + "supports-color": "5.5.0", + "v8-compile-cache": "2.0.3", + "yargs": "12.0.5" + } + }, + "webpack-dev-middleware": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-3.7.0.tgz", + "integrity": "sha512-qvDesR1QZRIAZHOE3iQ4CXLZZSQ1lAUsSpnQmlB1PBfoN/xdRjmge3Dok0W4IdaVLJOGJy3sGI4sZHwjRU0PCA==", + "dev": true, + "requires": { + "memory-fs": "0.4.1", + "mime": "2.4.4", + "range-parser": "1.2.1", + "webpack-log": "2.0.0" + }, + "dependencies": { + "mime": { + "version": "2.4.4", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.4.4.tgz", + "integrity": "sha512-LRxmNwziLPT828z+4YkNzloCFC2YM4wrB99k+AV5ZbEyfGNWfG8SO1FUXLmLDBSo89NrJZ4DIWeLjy1CHGhMGA==", + "dev": true + } + } + }, + "webpack-dev-server": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-3.7.1.tgz", + "integrity": "sha512-GSBjjDMQ+uJI/Rcw/NfXDq5QpfE4HviafCy2SdbJ8Q22MwsnyoHd5TbWRfxgkbklsMx+ZNgWIKK+cB28ynjiDQ==", + "dev": true, + "requires": { + "ansi-html": "0.0.7", + "bonjour": "3.5.0", + "chokidar": "2.1.6", + "compression": "1.7.4", + "connect-history-api-fallback": "1.6.0", + "debug": "4.1.1", + "del": "4.1.1", + "express": "4.17.1", + "html-entities": "1.2.1", + "http-proxy-middleware": "0.19.1", + "import-local": "2.0.0", + "internal-ip": "4.3.0", + "ip": "1.1.5", + "killable": "1.0.1", + "loglevel": "1.6.3", + "opn": "5.5.0", + "p-retry": "3.0.1", + "portfinder": "1.0.20", + "schema-utils": "1.0.0", + "selfsigned": "1.10.4", + "semver": "6.1.1", + "serve-index": "1.9.1", + "sockjs": "0.3.19", + "sockjs-client": "1.3.0", + "spdy": "4.0.0", + "strip-ansi": "3.0.1", + "supports-color": "6.1.0", + "url": "0.11.0", + "webpack-dev-middleware": "3.7.0", + "webpack-log": "2.0.0", + "yargs": "12.0.5" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "semver": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.1.1.tgz", + "integrity": "sha512-rWYq2e5iYW+fFe/oPPtYJxYgjBm8sC4rmoGdUOgBB7VnwKt6HrL793l2voH1UlsyYZpJ4g0wfjnTEO1s1NP2eQ==", + "dev": true + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + }, + "supports-color": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-6.1.0.tgz", + "integrity": "sha512-qe1jfm1Mg7Nq/NSh6XE24gPXROEVsWHxC1LIx//XNlD9iw7YZQGjZNjYN7xGaEG6iKdA8EtNFW6R0gjnVXp+wQ==", + "dev": true, + "requires": { + "has-flag": "3.0.0" + } + } + } + }, + "webpack-log": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/webpack-log/-/webpack-log-2.0.0.tgz", + "integrity": "sha512-cX8G2vR/85UYG59FgkoMamwHUIkSSlV3bBMRsbxVXVUk2j6NleCKjQ/WE9eYg9WY4w25O9w8wKP4rzNZFmUcUg==", + "dev": true, + "requires": { + "ansi-colors": "3.2.4", + "uuid": "3.3.2" + } + }, + "webpack-sources": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.3.0.tgz", + "integrity": "sha512-OiVgSrbGu7NEnEvQJJgdSFPl2qWKkWq5lHMhgiToIiN9w34EBnjYzSYs+VbL5KoYiLNtFFa7BZIKxRED3I32pA==", + "dev": true, + "requires": { + "source-list-map": "2.0.1", + "source-map": "0.6.1" + }, + "dependencies": { + "source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true + } + } + }, + "websocket-driver": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz", + "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==", + "dev": true, + "requires": { + "http-parser-js": "0.4.10", + "safe-buffer": "5.1.2", + "websocket-extensions": "0.1.3" + } + }, + "websocket-extensions": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz", + "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==", + "dev": true + }, + "whatwg-encoding": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/whatwg-encoding/-/whatwg-encoding-1.0.5.tgz", + "integrity": "sha512-b5lim54JOPN9HtzvK9HFXvBma/rnfFeqsic0hSpjtDbVxR3dJKLc+KB4V6GgiGOvl7CY/KNh8rxSo9DKQrnUEw==", + "dev": true, + "requires": { + "iconv-lite": "0.4.24" + } + }, + "whatwg-mimetype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/whatwg-mimetype/-/whatwg-mimetype-2.3.0.tgz", + "integrity": "sha512-M4yMwr6mAnQz76TbJm914+gPpB/nCwvZbJU28cUD6dR004SAxDLOOSUaB1JDRqLtaOV/vi0IC5lEAGFgrjGv/g==", + "dev": true + }, + "whatwg-url": { + "version": "6.5.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-6.5.0.tgz", + "integrity": "sha512-rhRZRqx/TLJQWUpQ6bmrt2UV4f0HCQ463yQuONJqC6fO2VoEb1pTYddbe59SkYq87aoM5A3bdhMZiUiVws+fzQ==", + "dev": true, + "requires": { + "lodash.sortby": "4.7.0", + "tr46": "1.0.1", + "webidl-conversions": "4.0.2" + } + }, + "which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "requires": { + "isexe": "2.0.0" + } + }, + "which-module": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/which-module/-/which-module-2.0.0.tgz", + "integrity": "sha1-2e8H3Od7mQK4o6j6SzHD4/fm6Ho=", + "dev": true + }, + "with-open-file": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/with-open-file/-/with-open-file-0.1.6.tgz", + "integrity": "sha512-SQS05JekbtwQSgCYlBsZn/+m2gpn4zWsqpCYIrCHva0+ojXcnmUEPsBN6Ipoz3vmY/81k5PvYEWSxER2g4BTqA==", + "dev": true, + "requires": { + "p-finally": "1.0.0", + "p-try": "2.2.0", + "pify": "4.0.1" + } + }, + "wordwrap": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", + "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", + "dev": true + }, + "worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dev": true, + "requires": { + "errno": "0.1.7" + } + }, + "wrap-ansi": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", + "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", + "dev": true, + "requires": { + "string-width": "1.0.2", + "strip-ansi": "3.0.1" + }, + "dependencies": { + "ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", + "dev": true + }, + "is-fullwidth-code-point": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", + "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", + "dev": true, + "requires": { + "number-is-nan": "1.0.1" + } + }, + "string-width": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", + "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", + "dev": true, + "requires": { + "code-point-at": "1.1.0", + "is-fullwidth-code-point": "1.0.0", + "strip-ansi": "3.0.1" + } + }, + "strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "dev": true, + "requires": { + "ansi-regex": "2.1.1" + } + } + } + }, + "wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", + "dev": true + }, + "write-file-atomic": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.1.tgz", + "integrity": "sha512-TGHFeZEZMnv+gBFRfjAcxL5bPHrsGKtnb4qsFAws7/vlh+QfwAaySIw4AXP9ZskTTh5GWu3FLuJhsWVdiJPGvg==", + "dev": true, + "requires": { + "graceful-fs": "4.1.15", + "imurmurhash": "0.1.4", + "signal-exit": "3.0.2" + } + }, + "ws": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-5.2.2.tgz", + "integrity": "sha512-jaHFD6PFv6UgoIVda6qZllptQsMlDEJkTQcybzzXDYM1XO9Y8em691FGMPmM46WGyLU4z9KMgQN+qrux/nhlHA==", + "dev": true, + "requires": { + "async-limiter": "1.0.0" + } + }, + "xml-name-validator": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-3.0.0.tgz", + "integrity": "sha512-A5CUptxDsvxKJEU3yO6DuWBSJz/qizqzJKOMIfUJHETbBw/sFaDxgd6fxm1ewUaM0jZ444Fc5vC5ROYurg/4Pw==", + "dev": true + }, + "xtend": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.1.tgz", + "integrity": "sha1-pcbVMr5lbiPbgg77lDofBJmNY68=", + "dev": true + }, + "y18n": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.0.tgz", + "integrity": "sha512-r9S/ZyXu/Xu9q1tYlpsLIsa3EeLXXk0VwlxqTcFRfg9EhMW+17kbt9G0NrgCmhGb5vT2hyhJZLfDGx+7+5Uj/w==", + "dev": true + }, + "yallist": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.0.3.tgz", + "integrity": "sha512-S+Zk8DEWE6oKpV+vI3qWkaK+jSbIK86pCwe2IF/xwIpQ8jEuxpw9NyaGjmp9+BoJv5FV2piqCDcoCtStppiq2A==", + "dev": true + }, + "yargs": { + "version": "12.0.5", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-12.0.5.tgz", + "integrity": "sha512-Lhz8TLaYnxq/2ObqHDql8dX8CJi97oHxrjUcYtzKbbykPtVW9WB+poxI+NM2UIzsMgNCZTIf0AQwsjK5yMAqZw==", + "dev": true, + "requires": { + "cliui": "4.1.0", + "decamelize": "1.2.0", + "find-up": "3.0.0", + "get-caller-file": "1.0.3", + "os-locale": "3.1.0", + "require-directory": "2.1.1", + "require-main-filename": "1.0.1", + "set-blocking": "2.0.0", + "string-width": "2.1.1", + "which-module": "2.0.0", + "y18n": "4.0.0", + "yargs-parser": "11.1.1" + } + }, + "yargs-parser": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-11.1.1.tgz", + "integrity": "sha512-C6kB/WJDiaxONLJQnF8ccx9SEeoTTLek8RVbaOIsrAUS8VrBEXfmeSnCZxygc+XC2sNMBIwOOnfcxiynjHsVSQ==", + "dev": true, + "requires": { + "camelcase": "5.3.1", + "decamelize": "1.2.0" + } + }, + "yeoman-environment": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yeoman-environment/-/yeoman-environment-2.3.4.tgz", + "integrity": "sha512-KLxE5ft/74Qj7h3AsQZv8G6MEEHYJwmD5F99nfOVaep3rBzCtbrJKkdqWc7bDV141Nr8UZZsIXmzc3IcCm6E2w==", + "dev": true, + "requires": { + "chalk": "2.4.2", + "cross-spawn": "6.0.5", + "debug": "3.2.6", + "diff": "3.5.0", + "escape-string-regexp": "1.0.5", + "globby": "8.0.2", + "grouped-queue": "0.3.3", + "inquirer": "6.3.1", + "is-scoped": "1.0.0", + "lodash": "4.17.11", + "log-symbols": "2.2.0", + "mem-fs": "1.1.3", + "strip-ansi": "4.0.0", + "text-table": "0.2.0", + "untildify": "3.0.3" + }, + "dependencies": { + "debug": { + "version": "3.2.6", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", + "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "globby": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-8.0.2.tgz", + "integrity": "sha512-yTzMmKygLp8RUpG1Ymu2VXPSJQZjNAZPD4ywgYEaG7e4tBJeUQBO8OpXrf1RCNcEs5alsoJYPAMiIHP0cmeC7w==", + "dev": true, + "requires": { + "array-union": "1.0.2", + "dir-glob": "2.0.0", + "fast-glob": "2.2.7", + "glob": "7.1.4", + "ignore": "3.3.10", + "pify": "3.0.0", + "slash": "1.0.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "slash": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-1.0.0.tgz", + "integrity": "sha1-xB8vbDn8FtHNF61LXYlhFK5HDVU=", + "dev": true + } + } + }, + "yeoman-generator": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/yeoman-generator/-/yeoman-generator-3.2.0.tgz", + "integrity": "sha512-iR/qb2je3GdXtSfxgvOXxUW0Cp8+C6LaZaNlK2BAICzFNzwHtM10t/QBwz5Ea9nk6xVDQNj4Q889TjCXGuIv8w==", + "dev": true, + "requires": { + "async": "2.6.2", + "chalk": "2.4.2", + "cli-table": "0.3.1", + "cross-spawn": "6.0.5", + "dargs": "6.1.0", + "dateformat": "3.0.3", + "debug": "4.1.1", + "detect-conflict": "1.0.1", + "error": "7.0.2", + "find-up": "3.0.0", + "github-username": "4.1.0", + "istextorbinary": "2.5.1", + "lodash": "4.17.11", + "make-dir": "1.3.0", + "mem-fs-editor": "5.1.0", + "minimist": "1.2.0", + "pretty-bytes": "5.2.0", + "read-chunk": "3.2.0", + "read-pkg-up": "4.0.0", + "rimraf": "2.6.3", + "run-async": "2.3.0", + "shelljs": "0.8.3", + "text-table": "0.2.0", + "through2": "3.0.1", + "yeoman-environment": "2.3.4" + }, + "dependencies": { + "async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/async/-/async-2.6.2.tgz", + "integrity": "sha512-H1qVYh1MYhEEFLsP97cVKqCGo7KfCyTt6uEWqsTBr9SO84oK9Uwbyd/yCW+6rKJLHksBNUVWZDAjfS+Ccx0Bbg==", + "dev": true, + "requires": { + "lodash": "4.17.11" + } + }, + "debug": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz", + "integrity": "sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw==", + "dev": true, + "requires": { + "ms": "2.1.2" + } + }, + "make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dev": true, + "requires": { + "pify": "3.0.0" + } + }, + "ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", + "dev": true + }, + "through2": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/through2/-/through2-3.0.1.tgz", + "integrity": "sha512-M96dvTalPT3YbYLaKaCuwu+j06D/8Jfib0o/PxbVt6Amhv3dUAtW6rTV1jPgJSBG83I/e04Y6xkVdVhSRhi0ww==", + "dev": true, + "requires": { + "readable-stream": "2.3.6" + } + } + } + } + } +} diff --git a/benchmarking/package.json b/benchmarking/package.json new file mode 100644 index 0000000..f18756d --- /dev/null +++ b/benchmarking/package.json @@ -0,0 +1,45 @@ +{ + "name": "linestring-simplification", + "version": "0.1.0", + "description": "", + "main": "index.js", + "directories": { + "lib": "lib" + }, + "scripts": { + "build": "webpack --mode development", + "serve": "webpack serve", + "test": "echo \"Error: no test specified\" && exit 1", + "lint": "prettier --check '**/*.js'", + "format": "prettier --write '**/*.js'" + }, + "repository": { + "type": "git", + "url": "git@qgit.de:melch/linestring-simplification.git" + }, + "author": "Alfred Melch (code@melch.pro)", + "license": "ISC", + "dependencies": { + "benchmark": "^2.1.4", + "chart.js": "^2.8.0", + "eslint-plugin-standard": "^4.0.0", + "lodash": "^4.17.11", + "react": "^16.8.6", + "react-chartjs-2": "^2.7.6", + "react-dom": "^16.8.6" + }, + "devDependencies": { + "@babel/core": "^7.4.5", + "@babel/preset-react": "^7.0.0", + "@webpack-cli/serve": "^0.1.8", + "babel-loader": "^8.0.6", + "clean-webpack-plugin": "^3.0.0", + "copy-webpack-plugin": "^5.0.3", + "file-loader": "^4.0.0", + "prettier": "^1.18.2", + "react-hot-loader": "^4.12.0", + "webpack": "^4.34.0", + "webpack-cli": "^3.3.4", + "webpack-dev-server": "^3.7.1" + } +} diff --git a/benchmarking/public/index.html b/benchmarking/public/index.html new file mode 100644 index 0000000..70e1074 --- /dev/null +++ b/benchmarking/public/index.html @@ -0,0 +1,23 @@ + + + + + + + Document + + + + +
+

Benchmarking

+
+
+
+
+ + + + + + \ No newline at end of file diff --git a/benchmarking/public/style.css b/benchmarking/public/style.css new file mode 100644 index 0000000..8f1ac74 --- /dev/null +++ b/benchmarking/public/style.css @@ -0,0 +1,53 @@ +html, +body { + font-family: Arial, Helvetica, sans-serif; + margin: 0; + padding: 0; +} +main { + width: 80%; + margin: 0 auto; +} +#status { + background-color: bisque; +} +form { + display: grid; + grid-template-columns: auto auto; + grid-gap: 10px; + align-items: center; + margin-top: 20px; +} +input[type="submit"] { + grid-column: 1 / -1; +} + +#app { + display: flex; + flex-wrap: wrap; + border: 1px solid black; + justify-content: space-around; +} + +#app > div { + margin: 10px 6px; + border: 1px solid red; +} + +#form-component { + white-space: normal; +} + +#chart-component { + width: 600px; +} + +@media screen and (max-width: 800px) { + #app { + display: block; + } + + #chart-component { + width: auto; + } +} diff --git a/benchmarking/src/benchmarkCases/Case.js b/benchmarking/src/benchmarkCases/Case.js new file mode 100644 index 0000000..8429de4 --- /dev/null +++ b/benchmarking/src/benchmarkCases/Case.js @@ -0,0 +1,12 @@ +export class Case { + constructor(params) { + this.parameters = params + } + + async fn() { + throw Error('No function to benchmark not implemented') + } + + async setup() {} + async tearDown() {} +} diff --git a/benchmarking/src/benchmarkCases/index.js b/benchmarking/src/benchmarkCases/index.js new file mode 100644 index 0000000..9e0322d --- /dev/null +++ b/benchmarking/src/benchmarkCases/index.js @@ -0,0 +1,43 @@ +import { simplifyJSCase, origSimplifyJSCase } from './simplifyJS.js' +import { + transformToArrayFormCase, + transformToObjectFormCase, + origSimplifyWithTransformCase +} from './transforms.js' +import { + simplifyWASMCase, + storeCoordsCase, + loadResultCase +} from './simplifyWasm.js' + +export const chartDependencies = { + wasmStack: [storeCoordsCase, loadResultCase, simplifyWASMCase], + simplifyJSStack: [ + origSimplifyWithTransformCase, + transformToArrayFormCase, + transformToObjectFormCase + ], + wasmVsJs: [origSimplifyJSCase, simplifyWASMCase, simplifyJSCase] +} + +const uniqueFilter = (val, idx, self) => self.indexOf(val) === idx + +export function getChartDependencies(chartNames) { + return chartNames + .map(name => chartDependencies[name]) + .flat() + .filter(uniqueFilter) +} + +export function generateCases(data, formState) { + const cases = [] + const { tolRange, highQual, chart } = formState + let params = { data, highQuality: highQual } + for (let tol of tolRange) { + params = { ...params, tol } + for (let BenchCaseClass of chartDependencies[chart]) { + cases.push(new BenchCaseClass(params)) + } + } + return cases +} diff --git a/benchmarking/src/benchmarkCases/simplifyJS.js b/benchmarking/src/benchmarkCases/simplifyJS.js new file mode 100644 index 0000000..9e5b08f --- /dev/null +++ b/benchmarking/src/benchmarkCases/simplifyJS.js @@ -0,0 +1,33 @@ +import { Case } from './Case.js' + +import simplifyJS from '../../../lib/simplify-js-alternative/simplify.js' +import origSimplifyJS from '../../../lib/turf-simplify/lib/simplify.js' + +function arrayToObjectFormat(coords) { + return coords.map(coord => { + return { x: coord[0], y: coord[1] } + }) +} + +export class simplifyJSCase extends Case { + get name() { + return 'simplifyJS' + } + async fn() { + const { data, tol, highQuality } = this.parameters + simplifyJS(data, tol, highQuality) + } +} + +export class origSimplifyJSCase extends Case { + get name() { + return 'origSimplifyJS' + } + async setup() { + this.parameters.dataObjectForm = arrayToObjectFormat(this.parameters.data) + } + async fn() { + const { dataObjectForm, tol, highQuality } = this.parameters + origSimplifyJS(dataObjectForm, tol, highQuality) + } +} diff --git a/benchmarking/src/benchmarkCases/simplifyWasm.js b/benchmarking/src/benchmarkCases/simplifyWasm.js new file mode 100644 index 0000000..f10ca66 --- /dev/null +++ b/benchmarking/src/benchmarkCases/simplifyWasm.js @@ -0,0 +1,59 @@ +import { + loadResult, + loadResultAndFreeMemory, + storeCoords +} from '../../../lib/wasm-util/coordinates.js' +import { simplifyWasm, getModule } from '../../../lib/simplify-wasm/index.js' + +import { Case } from './Case.js' + +export class simplifyWASMCase extends Case { + get name() { + return 'simplifyWASM' + } + async setup() { + this.parameters.module = await getModule() + } + async fn() { + const { data, tol, highQuality } = this.parameters + await simplifyWasm(data, tol, highQuality) + } +} + +export class storeCoordsCase extends Case { + get name() { + return 'storeCoords' + } + async setup() { + this.parameters.module = await getModule() + } + async fn() { + const { module, data } = this.parameters + const buffer = storeCoords(module, data) + module._free(buffer) + } +} + +export class loadResultCase extends Case { + get name() { + return 'loadResult' + } + async setup() { + const { data, tol, highQual } = this.parameters + + const module = await getModule() + const buffer = storeCoords(module, data) + const result = module._simplify(buffer, data.length * 2, tol, highQual) + module._free(buffer) + + this.parameters = { ...this.parameters, module, result } + } + async fn() { + const { module, result } = this.parameters + loadResult(module, result) + } + async tearDown() { + const { module, result } = this.parameters + loadResultAndFreeMemory(module, result) + } +} diff --git a/benchmarking/src/benchmarkCases/transforms.js b/benchmarking/src/benchmarkCases/transforms.js new file mode 100644 index 0000000..f5ab689 --- /dev/null +++ b/benchmarking/src/benchmarkCases/transforms.js @@ -0,0 +1,47 @@ +import origSimplifyJS from '../../../lib/simplify-js/simplify.js' +import { Case } from './Case.js' + +function arrayToObjectFormat(coords) { + return coords.map(coord => { + return { x: coord[0], y: coord[1] } + }) +} + +function objectToArrayFormat(coords) { + return coords.map(coord => [coord.x, coord.y]) +} + +export class transformToObjectFormCase extends Case { + get name() { + return 'transformToObjectFormCase' + } + async fn() { + arrayToObjectFormat(this.parameters.data) + } +} + +export class transformToArrayFormCase extends Case { + get name() { + return 'transformToArrayFormCase' + } + async setup() { + const { data, tol, highQuality } = this.parameters + const transformed = arrayToObjectFormat(data) + this.parameters.simplified = origSimplifyJS(transformed, tol, highQuality) + } + async fn() { + objectToArrayFormat(this.parameters.simplified) + } +} + +export class origSimplifyWithTransformCase extends Case { + get name() { + return 'origSimplifyWithTransformCase' + } + async fn() { + const { data, tol, highQuality } = this.parameters + const transformed = arrayToObjectFormat(data) + const simplified = origSimplifyJS(transformed, tol, highQuality) + objectToArrayFormat(simplified) + } +} diff --git a/benchmarking/src/benchmarks/Benchmark.js b/benchmarking/src/benchmarks/Benchmark.js new file mode 100644 index 0000000..24af00f --- /dev/null +++ b/benchmarking/src/benchmarks/Benchmark.js @@ -0,0 +1,31 @@ +export class BenchmarkType { + /** + * Superclass for benchmarking a Case + * @param {object} parameters - Parameters for use in fn + * @param {object} functions - setup, fn and tearDown methods + */ + constructor() { + this.stats = {} + } + + setCase(benchmarkCase) { + this.case = benchmarkCase + } + + /** Returns the mean time in milliseconds */ + async run() { + let mean + if (typeof this.case === 'undefined') { + throw Error('no Benchmarking case set') + } + await this.case.setup() + mean = await this.measure() + await this.case.tearDown() + return mean + } + + /** Implementation of the benchmarking procedure */ + async measure() { + throw new Error('Method "measure" not implemented!') + } +} diff --git a/benchmarking/src/benchmarks/BenchmarkJSBenchmark.js b/benchmarking/src/benchmarks/BenchmarkJSBenchmark.js new file mode 100644 index 0000000..a0a767e --- /dev/null +++ b/benchmarking/src/benchmarks/BenchmarkJSBenchmark.js @@ -0,0 +1,40 @@ +import { Benchmark as BenchmarkJS } from './initBenchmarkJS.js' +import { BenchmarkType } from './Benchmark.js' + +export class BenchmarkJSBenchmark extends BenchmarkType { + async measure() { + this.constructSuite() + await this.runSuite() + return this.mean + } + + constructSuite() { + this.suite = new BenchmarkJS.Suite() + this.suite.add(this.case.name, { + defer: true, + fn: this.resolvingFn.bind(this) + }) + this.suite.on('cycle', this.onCycle.bind(this)) + } + + async resolvingFn(deferred) { + await this.case.fn() + deferred.resolve() + } + + onCycle(ev) { + this.mean = ev.target.stats.mean * 1000 + } + + async runSuite() { + const suitePromise = this.promisifySuite() + this.suite.run({ async: true }) + await suitePromise + } + + promisifySuite() { + return new Promise(resolve => { + this.suite.on('complete', resolve) + }) + } +} diff --git a/benchmarking/src/benchmarks/BenchmarkSuite.js b/benchmarking/src/benchmarks/BenchmarkSuite.js new file mode 100644 index 0000000..89850ce --- /dev/null +++ b/benchmarking/src/benchmarks/BenchmarkSuite.js @@ -0,0 +1,48 @@ +export class BenchmarkSuite { + constructor() { + this.reset() + } + + reset() { + this.cases = [] + this.stats = {} + } + + setBenchmarkType(benchmarktype) { + this.benchmarktype = benchmarktype + } + + setCases(cases) { + this.stats = {} + this.cases = cases + for (let c of this.cases) { + this.stats[c.name] = [] + } + } + + onCycle(i, count, stats) {} + + async run(callback) { + let mean + let i = 0 + const count = this.cases.length + this.onCycle(i, count, this.stats) + for (const benchCase of this.cases) { + this.benchmarktype.setCase(benchCase) + mean = await this.benchmarktype.run() + this.stats[benchCase.name] = [...this.stats[benchCase.name], mean] + i++ + this.onCycle(i, count, this.stats) + await this.freeEventLoop() + } + } + + /** + * Promise that uses setTimeout to resolve. + * This is a hack to free the eventloop from microtasks. + * Without this rendering blocks during benchmarks. + */ + async freeEventLoop() { + return new Promise(resolve => setTimeout(resolve, 0)) + } +} diff --git a/benchmarking/src/benchmarks/IterationBenchmark.js b/benchmarking/src/benchmarks/IterationBenchmark.js new file mode 100644 index 0000000..740f78c --- /dev/null +++ b/benchmarking/src/benchmarks/IterationBenchmark.js @@ -0,0 +1,17 @@ +import { BenchmarkType } from './Benchmark.js' + +export class IterationsBenchmark extends BenchmarkType { + constructor(iterations) { + super() + this.iterations = iterations + } + + async measure() { + let start = performance.now() + for (let i = 0; i < this.iterations; i++) { + await this.case.fn() + } + let stop = performance.now() + return (stop - start) / this.iterations + } +} diff --git a/benchmarking/src/benchmarks/OpsPerTimeBenchmark.js b/benchmarking/src/benchmarks/OpsPerTimeBenchmark.js new file mode 100644 index 0000000..5da879c --- /dev/null +++ b/benchmarking/src/benchmarks/OpsPerTimeBenchmark.js @@ -0,0 +1,19 @@ +import { BenchmarkType } from './Benchmark.js' + +export class OpsPerTimeBenchmark extends BenchmarkType { + constructor(timeToRun) { + super() + this.timeToRun = timeToRun + } + + async measure() { + let start = performance.now() + let iterations = 0 + while (performance.now() - start < this.timeToRun) { + iterations++ + await this.case.fn() + } + let stop = performance.now() + return (stop - start) / iterations + } +} diff --git a/benchmarking/src/benchmarks/index.js b/benchmarking/src/benchmarks/index.js new file mode 100644 index 0000000..2c4dc4a --- /dev/null +++ b/benchmarking/src/benchmarks/index.js @@ -0,0 +1,9 @@ +import { IterationsBenchmark } from './IterationBenchmark' +import { OpsPerTimeBenchmark } from './OpsPerTimeBenchmark' +import { BenchmarkJSBenchmark } from './BenchmarkJSBenchmark' + +export const benchmarkTypes = { + benchmarkJS: BenchmarkJSBenchmark, + iteration: IterationsBenchmark, + opsPerTime: OpsPerTimeBenchmark +} diff --git a/benchmarking/src/benchmarks/initBenchmarkJS.js b/benchmarking/src/benchmarks/initBenchmarkJS.js new file mode 100644 index 0000000..270ed3a --- /dev/null +++ b/benchmarking/src/benchmarks/initBenchmarkJS.js @@ -0,0 +1,6 @@ +import _ from 'lodash' +import process from 'process' + +const benchmark = require('benchmark') +export const Benchmark = benchmark.runInContext({ _, process }) +window.Benchmark = Benchmark diff --git a/benchmarking/src/components/chart.js b/benchmarking/src/components/chart.js new file mode 100644 index 0000000..f31d4e2 --- /dev/null +++ b/benchmarking/src/components/chart.js @@ -0,0 +1,104 @@ +import React, { Component } from 'react' +import { Line } from 'react-chartjs-2' + +import { data } from '../../../data/large.js' +import simplifyJS from '../../../lib/simplify-js-alternative/simplify.js' + +export function simplifyMapper(labels, highQual) { + // console.log(labels, highQual) + // console.log(labels.map(tol => simplifyJS(data, tol, highQual))) + return labels.map(tol => simplifyJS(data, tol, highQual).length) +} + +export class Chart extends Component { + constructor(props) { + super(props) + this.state = { + data: chartData, + options: chartOptions + } + } + + render() { + let labels = this.props.labels.map(x => x.toFixed(3)) + const data = { ...chartData, labels } + data.datasets[0].data = this.props.data['simplifyWASM'] || [] + data.datasets[1].data = this.props.data['simplifyJS'] || [] + data.datasets[2].data = this.props.data['origSimplifyJS'] || [] + data.datasets[3].data = simplifyMapper( + this.props.labels, + this.props.highQual + ) + return ( +
+

Chart

+ +
+ ) + } +} + +const chartData = { + datasets: [ + { + label: 'simplifyWASM', + backgroundColor: 'red', + borderColor: 'red', + fill: false + }, + { + label: 'simplifyJS', + backgroundColor: 'blue', + borderColor: 'blue', + fill: false + }, + { + label: 'origSimplifyJS', + backgroundColor: 'green', + borderColor: 'green', + fill: false + }, + { + label: 'numberOfNodes', + fill: false, + yAxisID: 'nodes', + data: [1, 2, 3] + } + ] +} + +const chartOptions = { + title: { + display: true, + text: 'simplifyWasm VS simplifyJS' + }, + tooltips: { + mode: 'index', + intersect: false + }, + hover: { + mode: 'nearest', + intersect: false + }, + scales: { + yAxes: [ + { + id: 'performance', + type: 'linear' + }, + { + id: 'nodes', + position: 'right', + type: 'linear', + gridLines: { + drawOnChartArea: false + } + } + ] + } +} diff --git a/benchmarking/src/components/form.js b/benchmarking/src/components/form.js new file mode 100644 index 0000000..106818b --- /dev/null +++ b/benchmarking/src/components/form.js @@ -0,0 +1,145 @@ +import React, { Component } from 'react' + +export class Form extends Component { + constructor(props) { + super(props) + this.state = { + tolStart: 0.1, + tolStep: 0.1, + tolEnd: 1, + highQual: true, + chart: 'wasmVsJs', + benchMethod: 'iteration', + iterations: 10, + timeToRun: 200 + } + + this.handleInputChange = this.handleInputChange.bind(this) + this.handleSubmit = this.handleSubmit.bind(this) + this.props.onFormChange(this.state) + } + + handleSubmit(event) { + event.preventDefault() + this.props.onFormSubmit() + } + + handleInputChange(event) { + let name, value + const target = event.target + value = target.type === 'checkbox' ? target.checked : target.value + value = target.type === 'number' ? Number(value) : value + value = target.type === 'range' ? Number(value) : value + name = target.name + this.setState({ [name]: value }) + this.props.onFormChange({ ...this.state, [name]: value }) + } + + render() { + return ( +
+

Settings

+
+ + + + + + + + + + + + + + + + + + {this.state.benchMethod === 'iteration' && ( + + )} + {this.state.benchMethod === 'iteration' && ( + + )} + {this.state.benchMethod === 'opsPerTime' && ( + + )} + {this.state.benchMethod === 'opsPerTime' && ( + + )} + + +
+
+ ) + } +} diff --git a/benchmarking/src/components/progress.js b/benchmarking/src/components/progress.js new file mode 100644 index 0000000..081e9c5 --- /dev/null +++ b/benchmarking/src/components/progress.js @@ -0,0 +1,14 @@ +import React from 'react' + +export const Progress = props => { + const { totalCount, finishedCount } = props + let percentage = totalCount === 0 ? 0 : (finishedCount * 100) / totalCount + percentage = percentage.toFixed(2) + let text = `${percentage}% of benchmarks completed (${finishedCount}/${totalCount})` + return ( +
+

Status

+ {text} +
+ ) +} diff --git a/benchmarking/src/index.js b/benchmarking/src/index.js new file mode 100644 index 0000000..3c2e199 --- /dev/null +++ b/benchmarking/src/index.js @@ -0,0 +1,102 @@ +import React, { Component } from 'react' +import ReactDOM from 'react-dom' + +import { data } from '../../data/large.js' + +import { Form } from './components/form.js' +import { Chart } from './components/chart.js' +import { Progress } from './components/progress.js' + +import { BenchmarkSuite } from './benchmarks/BenchmarkSuite.js' +import { generateCases } from './benchmarkCases/index.js' +import { IterationsBenchmark } from './benchmarks/IterationBenchmark.js' +import { BenchmarkJSBenchmark } from './benchmarks/BenchmarkJSBenchmark.js' +import { OpsPerTimeBenchmark } from './benchmarks/OpsPerTimeBenchmark.js' + +class App extends Component { + constructor(props) { + super(props) + this.handleformChange = this.handleformChange.bind(this) + this.handleFormSubmit = this.handleFormSubmit.bind(this) + + this.state = { + stats: {}, + formState: { tolRange: [] }, + totalCount: 0, + finishedCount: 0 + } + + this.suite = new BenchmarkSuite(new IterationsBenchmark(10)) + this.suite.onCycle = (i, count, stats) => { + this.setState({ + finishedCount: i, + totalCount: count, + stats: stats + }) + } + } + + async handleFormSubmit() { + this.runBenchmarks() + } + + handleformChange(formState) { + const { tolStart, tolEnd, tolStep } = formState + const tolRange = [] + for (let i = tolStart; i < tolEnd; i += tolStep) { + tolRange.push(i) + } + this.setState({ formState: { ...formState, tolRange } }) + } + + async runBenchmarks() { + this.suite.reset() + let benchtype + console.log(this.state.formState.benchMethod) + switch (this.state.formState.benchMethod) { + case 'benchmarkJS': + benchtype = new BenchmarkJSBenchmark() + break + case 'iteration': + benchtype = new IterationsBenchmark(this.state.formState.iterations) + break + case 'opsPerTime': + benchtype = new OpsPerTimeBenchmark(this.state.formState.timeToRun) + break + default: + console.warn('benchmark type "' + this.state.benchtype + '" not known') + benchtype = new IterationsBenchmark(10) + } + this.suite.setBenchmarkType(benchtype) + this.suite.setCases(generateCases(data, this.state.formState)) + updateStatus('Running') + await this.suite.run() + updateStatus('Finished') + } + + render() { + return ( +
+
+ + +
+ ) + } +} + +ReactDOM.render(, document.getElementsByTagName('main')[0]) + +const updateStatus = status => { + console.log(status) +} diff --git a/benchmarking/webpack.config.js b/benchmarking/webpack.config.js new file mode 100644 index 0000000..e721f97 --- /dev/null +++ b/benchmarking/webpack.config.js @@ -0,0 +1,40 @@ +const { CleanWebpackPlugin } = require('clean-webpack-plugin') +const CopyPlugin = require('copy-webpack-plugin') +const path = require('path') + +module.exports = { + entry: './src/index.js', + output: { + path: path.resolve(__dirname, 'dist'), + filename: 'bundle.js' + }, + module: { + // Suppress warnings and errors logged by benchmark.js when bundled using webpack. + noParse: [path.resolve(__dirname, './node_modules/benchmark/benchmark.js')], + rules: [ + { + test: /\.js$/, + loaders: ['babel-loader'], + exclude: [/node_modules/, /data/] + }, + { + test: /\.wasm$/, + type: 'javascript/auto', + loader: 'file-loader', + options: { + name: '[name].[hash:5].[ext]' + } + } + ] + }, + plugins: [new CleanWebpackPlugin(), new CopyPlugin([{ from: 'public' }])], + devtool: 'source-map', + // to make webpack work with emscripten js files + target: 'web', + node: { + __dirname: false, + fs: 'empty', + Buffer: false, + process: false + } +} diff --git a/data/large.js b/data/large.js new file mode 100644 index 0000000..d2e1ab2 --- /dev/null +++ b/data/large.js @@ -0,0 +1 @@ +export const data = [[224.55,250.15],[224.55,250.14],[224.53,250.14],[224.53,250.15],[224.53,250.16],[224.53,250.16],[224.53,250.17],[224.53,250.17],[224.53,250.18],[224.53,250.18],[224.52,250.18],[224.52,250.18],[224.52,250.18],[224.52,250.18],[224.51,250.18],[224.51,250.18],[224.51,250.17],[224.51,250.17],[224.5,250.17],[224.5,250.17],[224.5,250.17],[224.5,250.17],[224.5,250.17],[224.5,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.17],[224.49,250.18],[224.49,250.18],[224.49,250.18],[224.49,250.18],[224.49,250.19],[224.48,250.2],[224.48,250.21],[224.48,250.21],[224.48,250.21],[224.48,250.21],[224.49,250.22],[224.49,250.22],[224.49,250.23],[224.5,250.25],[224.51,250.26],[224.51,250.27],[224.52,250.28],[224.52,250.28],[224.52,250.28],[224.52,250.29],[224.52,250.29],[224.52,250.29],[224.52,250.3],[224.52,250.3],[224.52,250.31],[224.52,250.31],[224.52,250.31],[224.52,250.32],[224.52,250.32],[224.52,250.32],[224.52,250.33],[224.53,250.33],[224.53,250.35],[224.54,250.35],[224.54,250.36],[224.55,250.36],[224.55,250.37],[224.55,250.38],[224.55,250.38],[224.55,250.39],[224.56,250.39],[224.56,250.4],[224.57,250.4],[224.57,250.41],[224.58,250.41],[224.58,250.42],[224.59,250.42],[224.59,250.43],[224.59,250.44],[224.6,250.46],[224.6,250.46],[224.6,250.47],[224.6,250.47],[224.61,250.48],[224.62,250.49],[224.63,250.5],[224.63,250.5],[224.64,250.51],[224.65,250.53],[224.66,250.54],[224.67,250.56],[224.67,250.57],[224.68,250.58],[224.68,250.59],[224.69,250.6],[224.69,250.6],[224.69,250.6],[224.69,250.6],[224.69,250.61],[224.69,250.61],[224.69,250.61],[224.69,250.61],[224.69,250.61],[224.68,250.6],[224.68,250.6],[224.69,250.59],[224.69,250.59],[224.69,250.58],[224.69,250.57],[224.69,250.56],[224.69,250.56],[224.69,250.55],[224.69,250.55],[224.69,250.54],[224.69,250.54],[224.7,250.53],[224.7,250.53],[224.7,250.52],[224.71,250.52],[224.71,250.51],[224.72,250.5],[224.72,250.5],[224.72,250.49],[224.73,250.49],[224.73,250.49],[224.74,250.48],[224.74,250.48],[224.75,250.47],[224.76,250.46],[224.78,250.45],[224.79,250.44],[224.81,250.43],[224.82,250.42],[224.82,250.42],[224.83,250.42],[224.83,250.41],[224.84,250.4],[224.85,250.39],[224.86,250.38],[224.86,250.38],[224.87,250.37],[224.88,250.36],[224.88,250.36],[224.89,250.35],[224.9,250.34],[224.91,250.34],[224.92,250.33],[224.92,250.33],[224.92,250.33],[224.93,250.33],[224.93,250.32],[224.93,250.31],[224.94,250.31],[224.94,250.3],[224.94,250.3],[224.95,250.29],[224.95,250.28],[224.95,250.28],[224.96,250.27],[224.96,250.26],[224.97,250.26],[224.98,250.25],[224.98,250.25],[224.99,250.24],[224.99,250.23],[225,250.22],[225,250.21],[225.01,250.21],[225.01,250.2],[225.02,250.19],[225.02,250.18],[225.03,250.17],[225.04,250.17],[225.04,250.16],[225.05,250.15],[225.06,250.14],[225.06,250.13],[225.07,250.12],[225.07,250.11],[225.08,250.1],[225.09,250.09],[225.09,250.08],[225.1,250.07],[225.1,250.06],[225.11,250.05],[225.12,250.05],[225.12,250.04],[225.12,250.04],[225.13,250.03],[225.13,250.02],[225.13,250.02],[225.14,250.02],[225.14,250.02],[225.14,250.01],[225.14,250.01],[225.14,250],[225.14,249.99],[225.15,249.98],[225.15,249.97],[225.15,249.96],[225.15,249.95],[225.15,249.95],[225.15,249.94],[225.15,249.93],[225.14,249.92],[225.14,249.91],[225.14,249.9],[225.14,249.89],[225.14,249.89],[225.14,249.89],[225.14,249.88],[225.14,249.87],[225.14,249.86],[225.14,249.85],[225.14,249.85],[225.15,249.84],[225.15,249.84],[225.15,249.83],[225.15,249.82],[225.15,249.82],[225.15,249.81],[225.15,249.81],[225.15,249.81],[225.15,249.8],[225.15,249.8],[225.15,249.8],[225.15,249.8],[225.14,249.79],[225.14,249.79],[225.13,249.79],[225.13,249.79],[225.13,249.78],[225.12,249.77],[225.11,249.77],[225.11,249.77],[225.11,249.76],[225.11,249.76],[225.1,249.77],[225.1,249.77],[225.09,249.77],[225.08,249.76],[225.06,249.76],[225.04,249.75],[225,249.74],[224.99,249.73],[224.96,249.72],[224.95,249.71],[224.94,249.71],[224.93,249.71],[224.91,249.71],[224.9,249.71],[224.89,249.7],[224.87,249.7],[224.86,249.7],[224.85,249.69],[224.82,249.67],[224.79,249.66],[224.77,249.64],[224.76,249.63],[224.74,249.61],[224.7,249.58],[224.67,249.55],[224.64,249.52],[224.6,249.48],[224.57,249.45],[224.53,249.42],[224.5,249.39],[224.46,249.35],[224.43,249.32],[224.42,249.31],[224.41,249.3],[224.4,249.3],[224.39,249.29],[224.38,249.29],[224.37,249.28],[224.37,249.28],[224.36,249.28],[224.35,249.27],[224.34,249.27],[224.32,249.27],[224.31,249.27],[224.3,249.27],[224.29,249.27],[224.28,249.26],[224.27,249.26],[224.26,249.26],[224.25,249.26],[224.24,249.26],[224.23,249.26],[224.22,249.26],[224.2,249.27],[224.2,249.27],[224.19,249.27],[224.19,249.27],[224.18,249.26],[224.18,249.26],[224.17,249.26],[224.17,249.25],[224.17,249.25],[224.16,249.25],[224.16,249.25],[224.16,249.24],[224.16,249.24],[224.16,249.24],[224.16,249.23],[224.15,249.23],[224.15,249.23],[224.15,249.23],[224.15,249.23],[224.16,249.22],[224.16,249.21],[224.16,249.21],[224.16,249.21],[224.16,249.2],[224.18,249.17],[224.19,249.15],[224.19,249.14],[224.21,249.11],[224.21,249.1],[224.22,249.09],[224.22,249.09],[224.22,249.07],[224.22,249.05],[224.23,249.05],[224.24,249],[224.24,248.99],[224.24,248.98],[224.25,248.94],[224.26,248.9],[224.26,248.89],[224.26,248.88],[224.26,248.87],[224.27,248.86],[224.27,248.86],[224.28,248.83],[224.28,248.83],[224.29,248.81],[224.29,248.81],[224.3,248.81],[224.3,248.8],[224.3,248.79],[224.31,248.78],[224.32,248.77],[224.32,248.76],[224.33,248.75],[224.33,248.74],[224.33,248.73],[224.33,248.73],[224.34,248.71],[224.34,248.7],[224.35,248.7],[224.35,248.69],[224.35,248.69],[224.36,248.68],[224.36,248.68],[224.37,248.67],[224.38,248.67],[224.39,248.66],[224.4,248.66],[224.4,248.65],[224.41,248.64],[224.41,248.64],[224.42,248.62],[224.43,248.6],[224.44,248.59],[224.44,248.58],[224.44,248.58],[224.45,248.56],[224.46,248.55],[224.47,248.54],[224.48,248.54],[224.48,248.53],[224.49,248.53],[224.5,248.52],[224.51,248.51],[224.51,248.5],[224.52,248.49],[224.52,248.48],[224.52,248.48],[224.53,248.46],[224.54,248.44],[224.55,248.43],[224.55,248.42],[224.55,248.42],[224.56,248.41],[224.56,248.41],[224.57,248.4],[224.58,248.39],[224.58,248.39],[224.58,248.39],[224.62,248.36],[224.65,248.33],[224.66,248.32],[224.66,248.32],[224.68,248.31],[224.68,248.31],[224.69,248.3],[224.7,248.28],[224.72,248.27],[224.72,248.26],[224.73,248.25],[224.73,248.25],[224.73,248.24],[224.74,248.23],[224.74,248.22],[224.75,248.21],[224.75,248.21],[224.75,248.2],[224.76,248.2],[224.77,248.19],[224.77,248.18],[224.77,248.18],[224.78,248.17],[224.79,248.14],[224.8,248.14],[224.8,248.13],[224.8,248.13],[224.81,248.12],[224.82,248.11],[224.82,248.1],[224.82,248.1],[224.83,248.1],[224.83,248.09],[224.84,248.08],[224.84,248.07],[224.84,248.06],[224.84,248.06],[224.84,248.05],[224.84,248.04],[224.84,248.03],[224.84,248.03],[224.85,248.02],[224.85,248.02],[224.85,248.01],[224.86,248.01],[224.86,248],[224.87,248],[224.87,248],[224.88,247.99],[224.88,247.99],[224.88,247.98],[224.88,247.97],[224.89,247.97],[224.89,247.96],[224.89,247.95],[224.89,247.94],[224.89,247.94],[224.9,247.93],[224.9,247.93],[224.9,247.92],[224.9,247.92],[224.9,247.92],[224.91,247.92],[224.91,247.91],[224.92,247.91],[224.92,247.9],[224.93,247.89],[224.94,247.85],[224.95,247.83],[224.97,247.79],[224.97,247.77],[224.98,247.75],[224.98,247.74],[224.98,247.72],[224.99,247.7],[224.99,247.68],[224.99,247.64],[224.99,247.63],[224.99,247.61],[224.99,247.6],[224.99,247.6],[224.99,247.59],[224.99,247.58],[224.99,247.57],[225,247.56],[225,247.56],[225,247.55],[225,247.54],[225.01,247.52],[225.01,247.51],[225.02,247.5],[225.02,247.5],[225.02,247.48],[225.02,247.48],[225.02,247.47],[225.03,247.47],[225.03,247.46],[225.03,247.45],[225.04,247.44],[225.04,247.44],[225.05,247.43],[225.05,247.42],[225.07,247.4],[225.08,247.39],[225.09,247.38],[225.09,247.36],[225.1,247.35],[225.1,247.34],[225.11,247.34],[225.11,247.33],[225.12,247.32],[225.12,247.32],[225.13,247.31],[225.13,247.3],[225.13,247.29],[225.13,247.29],[225.13,247.28],[225.13,247.27],[225.13,247.26],[225.14,247.25],[225.14,247.24],[225.14,247.22],[225.15,247.22],[225.15,247.21],[225.16,247.2],[225.16,247.2],[225.17,247.19],[225.17,247.19],[225.17,247.18],[225.18,247.17],[225.18,247.16],[225.18,247.16],[225.18,247.14],[225.18,247.12],[225.19,247.12],[225.19,247.1],[225.19,247.1],[225.19,247.08],[225.2,247.07],[225.2,247.07],[225.2,247.06],[225.2,247.05],[225.2,247.04],[225.2,247.04],[225.2,247.03],[225.19,247.02],[225.19,247.01],[225.18,247],[225.18,247],[225.18,246.99],[225.18,246.98],[225.18,246.96],[225.17,246.95],[225.18,246.94],[225.18,246.93],[225.18,246.92],[225.18,246.91],[225.18,246.9],[225.19,246.89],[225.2,246.89],[225.2,246.88],[225.21,246.88],[225.22,246.88],[225.23,246.87],[225.24,246.87],[225.25,246.86],[225.26,246.85],[225.26,246.85],[225.27,246.84],[225.28,246.84],[225.28,246.84],[225.29,246.84],[225.29,246.83],[225.3,246.82],[225.31,246.82],[225.31,246.82],[225.31,246.81],[225.32,246.81],[225.32,246.8],[225.33,246.8],[225.33,246.79],[225.34,246.79],[225.35,246.78],[225.36,246.77],[225.37,246.76],[225.38,246.75],[225.38,246.74],[225.38,246.74],[225.39,246.73],[225.39,246.73],[225.4,246.72],[225.41,246.7],[225.41,246.69],[225.42,246.69],[225.42,246.69],[225.42,246.69],[225.44,246.67],[225.44,246.67],[225.44,246.67],[225.44,246.66],[225.45,246.66],[225.45,246.66],[225.45,246.65],[225.46,246.64],[225.47,246.63],[225.47,246.62],[225.48,246.61],[225.49,246.6],[225.5,246.6],[225.51,246.59],[225.52,246.58],[225.52,246.58],[225.53,246.57],[225.54,246.57],[225.55,246.56],[225.56,246.55],[225.57,246.54],[225.58,246.53],[225.59,246.52],[225.59,246.51],[225.61,246.5],[225.62,246.5],[225.63,246.49],[225.64,246.48],[225.65,246.47],[225.66,246.46],[225.67,246.45],[225.68,246.44],[225.69,246.43],[225.71,246.42],[225.72,246.41],[225.73,246.4],[225.74,246.4],[225.75,246.39],[225.76,246.38],[225.77,246.36],[225.79,246.34],[225.8,246.33],[225.8,246.32],[225.81,246.31],[225.82,246.3],[225.83,246.29],[225.84,246.28],[225.85,246.28],[225.86,246.27],[225.88,246.26],[225.89,246.25],[225.89,246.25],[225.89,246.25],[225.9,246.25],[225.93,246.24],[225.95,246.23],[225.96,246.22],[225.98,246.22],[225.98,246.21],[225.99,246.21],[226.01,246.19],[226.01,246.19],[226.02,246.18],[226.04,246.17],[226.05,246.16],[226.06,246.14],[226.07,246.13],[226.08,246.12],[226.09,246.11],[226.1,246.09],[226.11,246.08],[226.11,246.06],[226.12,246.04],[226.13,246.02],[226.13,246],[226.14,245.99],[226.15,245.98],[226.16,245.97],[226.17,245.97],[226.17,245.96],[226.19,245.95],[226.2,245.95],[226.22,245.94],[226.23,245.94],[226.24,245.93],[226.25,245.93],[226.26,245.92],[226.26,245.91],[226.27,245.9],[226.28,245.89],[226.29,245.85],[226.3,245.83],[226.31,245.82],[226.31,245.8],[226.31,245.8],[226.32,245.8],[226.32,245.8],[226.32,245.79],[226.33,245.77],[226.35,245.76],[226.36,245.74],[226.37,245.74],[226.37,245.74],[226.37,245.73],[226.38,245.73],[226.38,245.73],[226.39,245.72],[226.4,245.72],[226.41,245.71],[226.41,245.71],[226.42,245.71],[226.42,245.7],[226.44,245.7],[226.45,245.69],[226.46,245.69],[226.47,245.68],[226.47,245.68],[226.48,245.68],[226.48,245.68],[226.49,245.67],[226.5,245.67],[226.5,245.66],[226.51,245.66],[226.52,245.66],[226.52,245.66],[226.53,245.65],[226.53,245.65],[226.53,245.65],[226.54,245.64],[226.54,245.64],[226.55,245.63],[226.55,245.63],[226.55,245.63],[226.55,245.62],[226.56,245.62],[226.56,245.61],[226.56,245.6],[226.56,245.58],[226.57,245.57],[226.57,245.56],[226.57,245.56],[226.57,245.55],[226.58,245.54],[226.58,245.54],[226.58,245.53],[226.59,245.52],[226.59,245.52],[226.6,245.51],[226.61,245.5],[226.62,245.49],[226.62,245.48],[226.63,245.47],[226.64,245.46],[226.64,245.45],[226.64,245.44],[226.65,245.43],[226.66,245.42],[226.68,245.4],[226.68,245.39],[226.69,245.38],[226.7,245.38],[226.7,245.37],[226.71,245.36],[226.71,245.35],[226.72,245.33],[226.72,245.33],[226.75,245.29],[226.75,245.28],[226.76,245.27],[226.76,245.27],[226.76,245.26],[226.76,245.26],[226.76,245.25],[226.77,245.25],[226.77,245.24],[226.77,245.21],[226.77,245.21],[226.77,245.2],[226.77,245.19],[226.78,245.18],[226.78,245.18],[226.78,245.17],[226.79,245.16],[226.79,245.15],[226.8,245.15],[226.8,245.14],[226.81,245.13],[226.82,245.12],[226.83,245.11],[226.84,245.11],[226.84,245.1],[226.85,245.09],[226.86,245.08],[226.86,245.07],[226.87,245.07],[226.87,245.06],[226.88,245.06],[226.89,245.05],[226.89,245.05],[226.9,245.04],[226.9,245.04],[226.9,245.03],[226.91,245.02],[226.91,245.02],[226.91,245.01],[226.91,245],[226.91,244.98],[226.91,244.97],[226.91,244.94],[226.91,244.93],[226.9,244.93],[226.9,244.92],[226.9,244.91],[226.89,244.9],[226.89,244.89],[226.87,244.86],[226.87,244.85],[226.86,244.84],[226.86,244.84],[226.86,244.84],[226.86,244.83],[226.85,244.82],[226.85,244.81],[226.85,244.81],[226.85,244.8],[226.85,244.8],[226.85,244.79],[226.85,244.79],[226.85,244.77],[226.86,244.75],[226.86,244.74],[226.86,244.73],[226.86,244.72],[226.87,244.71],[226.87,244.7],[226.87,244.7],[226.87,244.69],[226.87,244.68],[226.87,244.67],[226.88,244.65],[226.89,244.63],[226.89,244.62],[226.89,244.61],[226.9,244.59],[226.9,244.58],[226.9,244.57],[226.91,244.56],[226.91,244.55],[226.92,244.54],[226.92,244.53],[226.92,244.52],[226.92,244.51],[226.92,244.51],[226.92,244.5],[226.92,244.49],[226.92,244.49],[226.92,244.48],[226.92,244.47],[226.91,244.46],[226.91,244.44],[226.9,244.43],[226.9,244.42],[226.9,244.41],[226.9,244.4],[226.9,244.39],[226.9,244.38],[226.9,244.37],[226.9,244.36],[226.9,244.35],[226.9,244.34],[226.9,244.33],[226.91,244.31],[226.91,244.28],[226.91,244.27],[226.91,244.26],[226.91,244.25],[226.91,244.24],[226.91,244.24],[226.91,244.23],[226.91,244.22],[226.91,244.22],[226.91,244.21],[226.9,244.21],[226.9,244.2],[226.9,244.2],[226.91,244.2],[226.91,244.2],[226.91,244.19],[226.92,244.19],[226.93,244.18],[226.93,244.18],[226.94,244.18],[226.95,244.18],[226.96,244.18],[226.97,244.18],[226.98,244.18],[227,244.19],[227.01,244.19],[227.01,244.19],[227.1,244.23],[227.11,244.24],[227.11,244.24],[227.12,244.24],[227.13,244.24],[227.14,244.24],[227.15,244.24],[227.18,244.23],[227.19,244.23],[227.2,244.23],[227.21,244.24],[227.22,244.24],[227.34,244.29],[227.34,244.29],[227.35,244.29],[227.35,244.29],[227.36,244.29],[227.39,244.29],[227.4,244.29],[227.41,244.29],[227.44,244.29],[227.44,244.29],[227.45,244.29],[227.46,244.29],[227.46,244.29],[227.47,244.29],[227.48,244.28],[227.5,244.28],[227.51,244.27],[227.54,244.26],[227.55,244.26],[227.56,244.26],[227.56,244.26],[227.58,244.26],[227.59,244.26],[227.6,244.26],[227.6,244.26],[227.61,244.26],[227.63,244.25],[227.64,244.25],[227.65,244.24],[227.65,244.24],[227.66,244.24],[227.67,244.24],[227.68,244.24],[227.68,244.24],[227.69,244.24],[227.7,244.22],[227.72,244.21],[227.72,244.21],[227.75,244.18],[227.76,244.18],[227.76,244.18],[227.76,244.17],[227.78,244.15],[227.79,244.14],[227.79,244.14],[227.8,244.14],[227.81,244.13],[227.84,244.12],[227.85,244.12],[227.86,244.12],[227.87,244.11],[227.88,244.11],[227.89,244.11],[227.89,244.11],[227.9,244.11],[227.91,244.11],[227.92,244.11],[227.94,244.11],[227.95,244.11],[227.96,244.11],[227.96,244.11],[227.96,244.11],[227.97,244.11],[227.97,244.11],[227.98,244.1],[227.99,244.1],[227.99,244.1],[228,244.1],[228.01,244.1],[228.06,244.11],[228.07,244.11],[228.07,244.11],[228.12,244.13],[228.12,244.13],[228.13,244.14],[228.14,244.14],[228.15,244.14],[228.22,244.13],[228.23,244.12],[228.24,244.12],[228.25,244.12],[228.26,244.12],[228.27,244.13],[228.27,244.13],[228.28,244.13],[228.3,244.13],[228.32,244.13],[228.33,244.13],[228.36,244.14],[228.37,244.14],[228.38,244.15],[228.38,244.14],[228.41,244.14],[228.42,244.14],[228.43,244.13],[228.44,244.14],[228.45,244.14],[228.46,244.14],[228.46,244.14],[228.48,244.15],[228.48,244.15],[228.48,244.16],[228.49,244.16],[228.5,244.16],[228.51,244.17],[228.52,244.17],[228.53,244.16],[228.53,244.16],[228.56,244.16],[228.57,244.15],[228.58,244.15],[228.58,244.15],[228.59,244.15],[228.6,244.15],[228.61,244.15],[228.62,244.15],[228.63,244.14],[228.64,244.14],[228.64,244.14],[228.64,244.14],[228.65,244.14],[228.66,244.13],[228.66,244.13],[228.67,244.12],[228.68,244.12],[228.69,244.12],[228.7,244.11],[228.71,244.11],[228.72,244.1],[228.73,244.1],[228.74,244.1],[228.76,244.09],[228.77,244.09],[228.78,244.09],[228.79,244.09],[228.8,244.09],[228.81,244.1],[228.83,244.11],[228.84,244.11],[228.85,244.12],[228.85,244.12],[228.88,244.13],[228.89,244.13],[228.9,244.13],[228.9,244.13],[228.91,244.13],[228.94,244.13],[228.96,244.13],[228.97,244.13],[228.98,244.13],[228.99,244.13],[229,244.13],[229.01,244.13],[229.02,244.14],[229.03,244.14],[229.03,244.14],[229.05,244.14],[229.06,244.14],[229.07,244.15],[229.11,244.16],[229.12,244.17],[229.13,244.17],[229.14,244.17],[229.15,244.17],[229.17,244.18],[229.18,244.18],[229.19,244.18],[229.19,244.18],[229.19,244.18],[229.2,244.18],[229.21,244.17],[229.21,244.17],[229.22,244.16],[229.23,244.15],[229.24,244.14],[229.25,244.13],[229.27,244.11],[229.31,244.08],[229.32,244.08],[229.33,244.08],[229.34,244.08],[229.42,244.07],[229.43,244.07],[229.44,244.07],[229.44,244.07],[229.45,244.07],[229.46,244.07],[229.46,244.08],[229.46,244.08],[229.51,244.12],[229.54,244.14],[229.54,244.14],[229.55,244.14],[229.56,244.14],[229.57,244.14],[229.58,244.14],[229.58,244.14],[229.6,244.14],[229.62,244.13],[229.62,244.13],[229.63,244.13],[229.64,244.13],[229.66,244.14],[229.67,244.14],[229.68,244.14],[229.73,244.14],[229.74,244.13],[229.75,244.13],[229.76,244.14],[229.77,244.14],[229.78,244.14],[229.79,244.14],[229.79,244.13],[229.8,244.13],[229.81,244.12],[229.83,244.1],[229.83,244.09],[229.84,244.09],[229.85,244.08],[229.85,244.08],[229.86,244.08],[229.87,244.08],[229.9,244.08],[229.91,244.09],[229.92,244.08],[229.92,244.08],[229.93,244.08],[229.94,244.07],[229.96,244.07],[229.96,244.07],[229.97,244.06],[229.98,244.06],[229.99,244.06],[230,244.06],[230.05,244.06],[230.06,244.06],[230.07,244.07],[230.08,244.07],[230.09,244.08],[230.1,244.08],[230.11,244.09],[230.12,244.09],[230.12,244.09],[230.14,244.09],[230.14,244.09],[230.14,244.09],[230.15,244.09],[230.16,244.08],[230.17,244.08],[230.2,244.07],[230.22,244.06],[230.23,244.05],[230.31,244.03],[230.32,244.02],[230.33,244.02],[230.34,244.01],[230.34,244.01],[230.38,243.97],[230.38,243.96],[230.39,243.96],[230.39,243.95],[230.4,243.94],[230.43,243.91],[230.44,243.91],[230.45,243.9],[230.46,243.9],[230.47,243.89],[230.48,243.89],[230.49,243.89],[230.5,243.89],[230.51,243.89],[230.52,243.89],[230.53,243.89],[230.54,243.89],[230.55,243.88],[230.56,243.88],[230.57,243.87],[230.57,243.87],[230.58,243.87],[230.6,243.87],[230.61,243.87],[230.62,243.86],[230.63,243.86],[230.64,243.85],[230.64,243.85],[230.65,243.84],[230.66,243.84],[230.67,243.84],[230.69,243.84],[230.69,243.84],[230.7,243.84],[230.71,243.84],[230.72,243.83],[230.73,243.82],[230.74,243.82],[230.75,243.82],[230.75,243.81],[230.76,243.81],[230.77,243.81],[230.78,243.81],[230.79,243.81],[230.79,243.81],[230.8,243.8],[230.81,243.8],[230.82,243.8],[230.83,243.79],[230.83,243.79],[230.84,243.78],[230.85,243.78],[230.86,243.77],[230.88,243.77],[230.89,243.77],[230.9,243.77],[230.91,243.76],[230.92,243.76],[230.94,243.77],[230.95,243.77],[230.96,243.77],[231.03,243.79],[231.03,243.79],[231.03,243.79],[231.04,243.79],[231.05,243.79],[231.05,243.79],[231.06,243.78],[231.07,243.78],[231.08,243.77],[231.1,243.74],[231.11,243.74],[231.12,243.73],[231.13,243.73],[231.17,243.71],[231.18,243.71],[231.18,243.7],[231.19,243.7],[231.2,243.71],[231.23,243.72],[231.23,243.72],[231.23,243.72],[231.24,243.72],[231.25,243.72],[231.25,243.72],[231.26,243.71],[231.26,243.71],[231.27,243.71],[231.28,243.7],[231.29,243.69],[231.3,243.69],[231.3,243.69],[231.3,243.68],[231.31,243.68],[231.31,243.68],[231.32,243.68],[231.32,243.68],[231.32,243.68],[231.33,243.68],[231.34,243.68],[231.34,243.68],[231.35,243.67],[231.36,243.66],[231.37,243.66],[231.38,243.66],[231.39,243.65],[231.4,243.65],[231.41,243.65],[231.42,243.66],[231.44,243.66],[231.45,243.66],[231.46,243.66],[231.47,243.67],[231.5,243.67],[231.52,243.67],[231.53,243.67],[231.54,243.66],[231.58,243.65],[231.59,243.64],[231.59,243.64],[231.6,243.63],[231.6,243.63],[231.61,243.62],[231.63,243.59],[231.64,243.56],[231.65,243.56],[231.65,243.55],[231.66,243.55],[231.68,243.54],[231.69,243.54],[231.69,243.53],[231.7,243.53],[231.7,243.52],[231.71,243.51],[231.71,243.5],[231.72,243.5],[231.72,243.5],[231.73,243.48],[231.73,243.48],[231.74,243.47],[231.74,243.47],[231.75,243.46],[231.75,243.45],[231.75,243.42],[231.75,243.41],[231.75,243.4],[231.75,243.4],[231.76,243.39],[231.76,243.39],[231.77,243.38],[231.78,243.37],[231.78,243.37],[231.79,243.36],[231.79,243.35],[231.79,243.35],[231.79,243.35],[231.8,243.34],[231.84,243.28],[231.84,243.27],[231.84,243.26],[231.85,243.22],[231.85,243.21],[231.85,243.2],[231.87,243.16],[231.88,243.15],[231.88,243.15],[231.88,243.14],[231.88,243.13],[231.88,243.12],[231.88,243.1],[231.88,243.1],[231.88,243.1],[231.88,243.09],[231.88,243.09],[231.88,243.08],[231.89,243.07],[231.89,243.07],[231.9,243.06],[231.9,243.06],[231.9,243.05],[231.9,243.05],[231.91,243.04],[231.92,243.04],[231.92,243.03],[231.93,243.03],[231.93,243.02],[231.93,243.02],[231.94,243.01],[231.94,243.01],[231.94,243],[231.94,242.99],[231.94,242.99],[231.95,242.98],[231.95,242.96],[231.95,242.95],[231.95,242.95],[231.95,242.94],[231.95,242.93],[231.95,242.93],[231.96,242.92],[231.97,242.9],[231.97,242.9],[231.98,242.89],[231.98,242.88],[231.98,242.87],[231.98,242.87],[231.98,242.81],[231.98,242.81],[231.98,242.8],[231.98,242.79],[231.98,242.78],[231.99,242.78],[231.99,242.77],[231.99,242.77],[232,242.76],[232,242.76],[232.01,242.75],[232.01,242.75],[232.01,242.75],[232.02,242.74],[232.03,242.74],[232.04,242.74],[232.08,242.72],[232.09,242.72],[232.09,242.72],[232.1,242.71],[232.1,242.71],[232.11,242.7],[232.11,242.7],[232.11,242.69],[232.11,242.68],[232.11,242.67],[232.11,242.67],[232.11,242.66],[232.11,242.65],[232.11,242.64],[232.11,242.63],[232.11,242.62],[232.11,242.62],[232.11,242.61],[232.12,242.61],[232.12,242.61],[232.12,242.6],[232.12,242.6],[232.12,242.6],[232.13,242.6],[232.13,242.6],[232.13,242.59],[232.13,242.59],[232.14,242.59],[232.14,242.59],[232.14,242.59],[232.15,242.59],[232.16,242.6],[232.17,242.6],[232.18,242.6],[232.19,242.6],[232.19,242.6],[232.2,242.6],[232.2,242.59],[232.21,242.59],[232.21,242.59],[232.21,242.58],[232.21,242.58],[232.22,242.58],[232.22,242.57],[232.22,242.57],[232.22,242.57],[232.22,242.56],[232.22,242.55],[232.22,242.53],[232.22,242.53],[232.22,242.53],[232.22,242.52],[232.22,242.51],[232.22,242.5],[232.23,242.49],[232.23,242.49],[232.23,242.48],[232.24,242.46],[232.25,242.45],[232.25,242.45],[232.25,242.44],[232.26,242.42],[232.26,242.41],[232.26,242.4],[232.27,242.39],[232.27,242.39],[232.28,242.38],[232.31,242.34],[232.32,242.33],[232.32,242.32],[232.33,242.32],[232.34,242.32],[232.41,242.31],[232.42,242.3],[232.43,242.3],[232.44,242.3],[232.55,242.24],[232.55,242.24],[232.56,242.23],[232.57,242.22],[232.57,242.22],[232.57,242.22],[232.61,242.17],[232.62,242.17],[232.62,242.16],[232.63,242.16],[232.63,242.15],[232.64,242.15],[232.65,242.15],[232.65,242.15],[232.66,242.15],[232.67,242.14],[232.68,242.14],[232.69,242.14],[232.7,242.13],[232.71,242.13],[232.72,242.12],[232.73,242.12],[232.73,242.11],[232.75,242.1],[232.76,242.1],[232.76,242.09],[232.77,242.08],[232.78,242.08],[232.79,242.06],[232.8,242.05],[232.8,242.04],[232.81,242.04],[232.82,242.03],[232.82,242.03],[232.83,242.02],[232.83,242.01],[232.84,242],[232.85,241.99],[232.85,241.98],[232.86,241.98],[232.86,241.97],[232.87,241.96],[232.89,241.95],[232.91,241.94],[232.92,241.93],[232.92,241.93],[232.93,241.92],[232.93,241.92],[232.93,241.92],[232.94,241.91],[232.94,241.91],[232.94,241.91],[232.95,241.9],[232.96,241.89],[232.96,241.89],[232.97,241.88],[232.97,241.87],[232.98,241.86],[232.98,241.85],[232.99,241.84],[232.99,241.82],[233,241.81],[233.01,241.79],[233.03,241.75],[233.04,241.72],[233.05,241.71],[233.06,241.7],[233.08,241.68],[233.12,241.63],[233.14,241.62],[233.16,241.59],[233.17,241.58],[233.17,241.57],[233.18,241.57],[233.18,241.56],[233.19,241.55],[233.2,241.53],[233.21,241.52],[233.21,241.51],[233.22,241.5],[233.23,241.5],[233.23,241.49],[233.24,241.49],[233.25,241.48],[233.26,241.48],[233.28,241.47],[233.28,241.47],[233.29,241.46],[233.3,241.46],[233.3,241.46],[233.31,241.45],[233.31,241.45],[233.31,241.44],[233.31,241.44],[233.32,241.43],[233.32,241.42],[233.33,241.39],[233.34,241.36],[233.35,241.33],[233.37,241.28],[233.39,241.24],[233.39,241.23],[233.4,241.22],[233.4,241.21],[233.4,241.17],[233.41,241.15],[233.42,241.08],[233.43,241.07],[233.43,241.06],[233.43,241.05],[233.46,241.01],[233.46,241],[233.46,240.99],[233.46,240.98],[233.46,240.97],[233.46,240.96],[233.46,240.94],[233.46,240.94],[233.46,240.93],[233.46,240.93],[233.47,240.93],[233.47,240.92],[233.47,240.92],[233.47,240.91],[233.47,240.91],[233.48,240.9],[233.48,240.9],[233.49,240.89],[233.5,240.88],[233.5,240.88],[233.51,240.87],[233.53,240.82],[233.53,240.81],[233.58,240.74],[233.58,240.73],[233.58,240.72],[233.58,240.71],[233.59,240.66],[233.59,240.65],[233.59,240.65],[233.59,240.64],[233.58,240.63],[233.58,240.62],[233.57,240.59],[233.57,240.59],[233.57,240.58],[233.57,240.49],[233.56,240.45],[233.56,240.45],[233.56,240.44],[233.56,240.43],[233.56,240.43],[233.56,240.43],[233.56,240.42],[233.56,240.41],[233.55,240.38],[233.55,240.37],[233.55,240.37],[233.55,240.36],[233.54,240.31],[233.54,240.3],[233.54,240.28],[233.54,240.28],[233.53,240.25],[233.53,240.24],[233.52,240.23],[233.52,240.23],[233.52,240.22],[233.52,240.21],[233.53,240.18],[233.53,240.17],[233.53,240.16],[233.53,240.15],[233.52,240.14],[233.52,240.13],[233.52,240.12],[233.52,240.11],[233.52,240.1],[233.51,240.1],[233.51,240.08],[233.51,240.06],[233.51,240.05],[233.51,240.02],[233.5,240.01],[233.5,240.01],[233.5,240],[233.5,240],[233.5,239.99],[233.49,239.99],[233.48,239.96],[233.47,239.95],[233.47,239.94],[233.47,239.94],[233.47,239.93],[233.46,239.86],[233.46,239.85],[233.45,239.84],[233.44,239.81],[233.44,239.8],[233.44,239.79],[233.44,239.79],[233.44,239.78],[233.45,239.77],[233.46,239.76],[233.46,239.76],[233.46,239.75],[233.47,239.75],[233.47,239.74],[233.5,239.73],[233.5,239.73],[233.51,239.72],[233.51,239.71],[233.51,239.71],[233.51,239.7],[233.51,239.69],[233.5,239.68],[233.49,239.67],[233.48,239.67],[233.48,239.66],[233.48,239.66],[233.48,239.65],[233.48,239.64],[233.48,239.64],[233.49,239.63],[233.49,239.62],[233.5,239.61],[233.5,239.61],[233.5,239.59],[233.5,239.59],[233.5,239.58],[233.51,239.58],[233.51,239.57],[233.51,239.56],[233.51,239.56],[233.51,239.54],[233.5,239.52],[233.47,239.46],[233.47,239.45],[233.46,239.44],[233.46,239.43],[233.46,239.41],[233.46,239.41],[233.46,239.4],[233.45,239.37],[233.45,239.37],[233.45,239.36],[233.45,239.36],[233.45,239.35],[233.45,239.35],[233.45,239.34],[233.45,239.34],[233.45,239.33],[233.45,239.32],[233.45,239.32],[233.45,239.32],[233.45,239.31],[233.45,239.3],[233.45,239.3],[233.46,239.29],[233.46,239.28],[233.46,239.27],[233.45,239.26],[233.44,239.23],[233.44,239.22],[233.44,239.21],[233.42,239.18],[233.42,239.17],[233.41,239.16],[233.41,239.15],[233.42,239.09],[233.42,239.09],[233.42,239.08],[233.42,239.07],[233.42,239.06],[233.43,239.03],[233.44,239.02],[233.44,239.02],[233.44,239.01],[233.44,239.01],[233.44,239],[233.44,239],[233.45,238.99],[233.45,238.98],[233.44,238.97],[233.44,238.96],[233.44,238.96],[233.44,238.95],[233.43,238.94],[233.43,238.93],[233.42,238.93],[233.42,238.92],[233.4,238.91],[233.39,238.9],[233.39,238.89],[233.39,238.89],[233.39,238.88],[233.39,238.87],[233.39,238.86],[233.39,238.85],[233.4,238.85],[233.4,238.84],[233.4,238.83],[233.4,238.82],[233.4,238.81],[233.4,238.8],[233.4,238.8],[233.39,238.79],[233.39,238.78],[233.38,238.78],[233.38,238.77],[233.38,238.76],[233.38,238.75],[233.38,238.74],[233.38,238.74],[233.38,238.73],[233.38,238.72],[233.38,238.71],[233.38,238.7],[233.38,238.69],[233.38,238.68],[233.38,238.67],[233.38,238.66],[233.39,238.66],[233.39,238.65],[233.39,238.64],[233.39,238.64],[233.4,238.64],[233.41,238.62],[233.41,238.61],[233.42,238.6],[233.42,238.59],[233.43,238.59],[233.43,238.56],[233.44,238.56],[233.44,238.55],[233.45,238.54],[233.45,238.54],[233.46,238.53],[233.47,238.53],[233.48,238.52],[233.48,238.52],[233.51,238.51],[233.52,238.51],[233.53,238.51],[233.54,238.51],[233.55,238.5],[233.55,238.5],[233.56,238.49],[233.57,238.49],[233.58,238.48],[233.59,238.48],[233.6,238.47],[233.6,238.47],[233.61,238.46],[233.61,238.45],[233.62,238.45],[233.67,238.39],[233.68,238.38],[233.68,238.37],[233.68,238.37],[233.7,238.36],[233.7,238.36],[233.71,238.35],[233.78,238.32],[233.79,238.31],[233.8,238.31],[233.81,238.3],[233.81,238.3],[233.82,238.29],[233.83,238.28],[233.89,238.2],[233.9,238.19],[233.91,238.18],[233.92,238.17],[233.96,238.15],[233.97,238.15],[233.98,238.14],[233.98,238.14],[233.99,238.13],[233.99,238.12],[234,238.12],[234,238.11],[234,238.1],[234,238.09],[234,238.08],[234,238.07],[234,238.06],[234,238.04],[234,238.03],[234,238.02],[234,238.01],[234,238],[234,238],[234,237.99],[234.01,237.98],[234.02,237.97],[234.02,237.96],[234.03,237.96],[234.03,237.95],[234.04,237.95],[234.04,237.95],[234.05,237.95],[234.05,237.94],[234.06,237.94],[234.07,237.94],[234.08,237.93],[234.08,237.93],[234.12,237.91],[234.13,237.9],[234.14,237.9],[234.17,237.87],[234.18,237.86],[234.19,237.85],[234.2,237.85],[234.25,237.82],[234.25,237.82],[234.25,237.81],[234.27,237.81],[234.28,237.8],[234.29,237.8],[234.29,237.79],[234.3,237.78],[234.31,237.78],[234.31,237.78],[234.32,237.77],[234.32,237.77],[234.32,237.76],[234.32,237.75],[234.33,237.75],[234.33,237.74],[234.33,237.73],[234.33,237.71],[234.33,237.7],[234.34,237.69],[234.34,237.67],[234.34,237.67],[234.34,237.66],[234.35,237.65],[234.35,237.64],[234.35,237.64],[234.35,237.63],[234.35,237.63],[234.36,237.62],[234.36,237.62],[234.37,237.59],[234.37,237.58],[234.38,237.56],[234.38,237.55],[234.39,237.54],[234.39,237.54],[234.39,237.53],[234.4,237.52],[234.4,237.52],[234.4,237.51],[234.41,237.49],[234.43,237.46],[234.43,237.46],[234.43,237.45],[234.43,237.44],[234.43,237.44],[234.43,237.42],[234.43,237.41],[234.43,237.41],[234.44,237.4],[234.44,237.4],[234.44,237.39],[234.44,237.39],[234.45,237.39],[234.45,237.38],[234.45,237.38],[234.46,237.38],[234.47,237.37],[234.48,237.37],[234.48,237.36],[234.49,237.36],[234.49,237.36],[234.5,237.35],[234.5,237.35],[234.5,237.34],[234.51,237.34],[234.51,237.33],[234.51,237.32],[234.52,237.31],[234.52,237.31],[234.52,237.29],[234.52,237.28],[234.53,237.28],[234.53,237.27],[234.53,237.26],[234.54,237.26],[234.54,237.25],[234.54,237.24],[234.55,237.23],[234.55,237.22],[234.55,237.22],[234.55,237.21],[234.56,237.2],[234.56,237.2],[234.56,237.19],[234.57,237.19],[234.57,237.18],[234.57,237.18],[234.58,237.17],[234.58,237.16],[234.58,237.16],[234.58,237.15],[234.58,237.15],[234.58,237.14],[234.58,237.14],[234.58,237.13],[234.58,237.13],[234.58,237.12],[234.58,237.12],[234.59,237.11],[234.59,237.11],[234.59,237.11],[234.6,237.1],[234.6,237.1],[234.61,237.1],[234.61,237.09],[234.62,237.09],[234.62,237.09],[234.63,237.08],[234.63,237.08],[234.63,237.07],[234.63,237.07],[234.64,237.07],[234.64,237.06],[234.64,237.04],[234.65,237.03],[234.65,237.02],[234.65,237.02],[234.65,237.01],[234.65,237.01],[234.66,237.01],[234.66,237],[234.66,237],[234.66,236.99],[234.67,236.98],[234.67,236.98],[234.67,236.97],[234.67,236.95],[234.67,236.94],[234.67,236.94],[234.67,236.93],[234.67,236.93],[234.67,236.92],[234.68,236.91],[234.68,236.9],[234.69,236.9],[234.69,236.89],[234.69,236.89],[234.69,236.88],[234.69,236.87],[234.69,236.87],[234.69,236.85],[234.69,236.85],[234.69,236.84],[234.69,236.83],[234.7,236.82],[234.7,236.82],[234.7,236.81],[234.71,236.79],[234.72,236.78],[234.72,236.78],[234.72,236.77],[234.72,236.77],[234.73,236.75],[234.73,236.74],[234.73,236.73],[234.74,236.72],[234.74,236.72],[234.74,236.71],[234.76,236.69],[234.76,236.69],[234.77,236.68],[234.77,236.67],[234.77,236.66],[234.77,236.66],[234.77,236.65],[234.78,236.65],[234.8,236.61],[234.8,236.61],[234.8,236.6],[234.8,236.59],[234.8,236.59],[234.81,236.58],[234.81,236.58],[234.81,236.58],[234.81,236.57],[234.82,236.57],[234.82,236.57],[234.82,236.56],[234.83,236.56],[234.83,236.56],[234.83,236.55],[234.83,236.55],[234.84,236.54],[234.84,236.54],[234.84,236.53],[234.84,236.53],[234.84,236.53],[234.85,236.52],[234.85,236.5],[234.85,236.5],[234.85,236.49],[234.86,236.48],[234.86,236.47],[234.86,236.47],[234.86,236.46],[234.86,236.46],[234.87,236.46],[234.87,236.45],[234.87,236.45],[234.88,236.44],[234.88,236.44],[234.88,236.44],[234.88,236.44],[234.89,236.43],[234.89,236.43],[234.9,236.42],[234.9,236.42],[234.91,236.41],[234.92,236.39],[234.93,236.38],[234.93,236.37],[234.94,236.37],[234.94,236.36],[234.94,236.35],[234.94,236.35],[234.94,236.32],[234.94,236.32],[234.94,236.31],[234.94,236.3],[234.94,236.3],[234.95,236.29],[234.95,236.28],[234.95,236.27],[234.95,236.27],[234.95,236.26],[234.95,236.26],[234.95,236.25],[234.95,236.25],[234.95,236.24],[234.94,236.23],[234.94,236.23],[234.94,236.22],[234.94,236.22],[234.94,236.21],[234.94,236.21],[234.94,236.2],[234.94,236.2],[234.94,236.19],[234.94,236.18],[234.95,236.18],[234.95,236.17],[234.95,236.17],[234.94,236.16],[234.94,236.16],[234.94,236.15],[234.94,236.15],[234.94,236.14],[234.94,236.14],[234.94,236.13],[234.94,236.13],[234.94,236.13],[234.94,236.12],[234.94,236.12],[234.94,236.11],[234.94,236.11],[234.94,236.1],[234.95,236.1],[234.95,236.09],[234.95,236.09],[234.95,236.09],[234.96,236.08],[234.97,236.07],[234.98,236.07],[234.98,236.06],[234.99,236.06],[235,236.06],[235,236.06],[235.05,236.05],[235.06,236.05],[235.06,236.05],[235.07,236.05],[235.07,236.05],[235.08,236.04],[235.08,236.04],[235.09,236.04],[235.09,236.03],[235.1,236.03],[235.1,236.03],[235.13,236.02],[235.14,236.02],[235.14,236.02],[235.15,236.02],[235.15,236.02],[235.16,236.01],[235.17,236.01],[235.18,236.01],[235.18,236],[235.19,236],[235.27,235.99],[235.28,235.99],[235.29,235.99],[235.29,235.99],[235.29,235.98],[235.3,235.98],[235.35,235.94],[235.35,235.94],[235.35,235.93],[235.37,235.92],[235.38,235.91],[235.38,235.91],[235.38,235.91],[235.39,235.9],[235.39,235.9],[235.4,235.9],[235.41,235.9],[235.41,235.89],[235.42,235.89],[235.42,235.89],[235.42,235.88],[235.43,235.87],[235.43,235.86],[235.44,235.86],[235.44,235.86],[235.45,235.85],[235.45,235.85],[235.46,235.85],[235.47,235.85],[235.52,235.85],[235.53,235.85],[235.53,235.85],[235.54,235.85],[235.55,235.85],[235.58,235.84],[235.58,235.84],[235.59,235.84],[235.59,235.84],[235.6,235.84],[235.64,235.84],[235.64,235.85],[235.65,235.85],[235.65,235.85],[235.66,235.85],[235.67,235.84],[235.67,235.84],[235.68,235.84],[235.73,235.82],[235.73,235.82],[235.74,235.82],[235.75,235.81],[235.75,235.81],[235.75,235.81],[235.76,235.81],[235.76,235.81],[235.77,235.82],[235.79,235.82],[235.79,235.82],[235.81,235.82],[235.9,235.83],[235.91,235.83],[235.91,235.83],[235.92,235.83],[235.92,235.83],[235.95,235.82],[235.96,235.82],[235.96,235.82],[235.97,235.82],[235.97,235.82],[235.98,235.82],[236,235.82],[236.02,235.82],[236.02,235.82],[236.03,235.82],[236.04,235.82],[236.04,235.82],[236.05,235.82],[236.06,235.82],[236.06,235.82],[236.07,235.82],[236.08,235.81],[236.08,235.81],[236.08,235.81],[236.09,235.81],[236.09,235.8],[236.12,235.78],[236.12,235.78],[236.13,235.78],[236.14,235.78],[236.14,235.78],[236.15,235.78],[236.15,235.78],[236.16,235.78],[236.16,235.78],[236.22,235.79],[236.23,235.79],[236.23,235.79],[236.26,235.8],[236.27,235.8],[236.27,235.8],[236.28,235.8],[236.29,235.8],[236.29,235.8],[236.29,235.8],[236.3,235.8],[236.31,235.81],[236.35,235.82],[236.36,235.82],[236.36,235.82],[236.37,235.82],[236.38,235.82],[236.41,235.82],[236.42,235.82],[236.47,235.82],[236.48,235.82],[236.49,235.82],[236.49,235.82],[236.5,235.82],[236.5,235.82],[236.51,235.81],[236.52,235.8],[236.52,235.8],[236.53,235.8],[236.54,235.8],[236.54,235.8],[236.56,235.8],[236.57,235.8],[236.57,235.8],[236.58,235.8],[236.58,235.8],[236.61,235.78],[236.62,235.78],[236.62,235.78],[236.65,235.77],[236.67,235.77],[236.67,235.77],[236.68,235.77],[236.72,235.77],[236.72,235.77],[236.73,235.77],[236.73,235.77],[236.74,235.77],[236.75,235.76],[236.75,235.76],[236.76,235.76],[236.77,235.76],[236.77,235.76],[236.78,235.76],[236.79,235.76],[236.8,235.76],[236.8,235.76],[236.81,235.76],[236.81,235.76],[236.81,235.76],[236.82,235.76],[236.82,235.75],[236.83,235.75],[236.84,235.75],[236.84,235.74],[236.85,235.74],[236.85,235.74],[236.98,235.72],[237,235.72],[237,235.72],[237.02,235.72],[237.04,235.72],[237.05,235.71],[237.06,235.71],[237.07,235.71],[237.07,235.71],[237.07,235.71],[237.08,235.71],[237.08,235.71],[237.08,235.71],[237.08,235.71],[237.09,235.71],[237.09,235.72],[237.1,235.72],[237.11,235.72],[237.11,235.72],[237.11,235.72],[237.11,235.72],[237.11,235.72],[237.12,235.73],[237.13,235.74],[237.13,235.74],[237.13,235.74],[237.13,235.74],[237.14,235.74],[237.14,235.75],[237.14,235.75],[237.14,235.75],[237.14,235.75],[237.14,235.75],[237.14,235.75],[237.14,235.75],[237.14,235.76],[237.14,235.76],[237.14,235.76],[237.14,235.76],[237.14,235.76],[237.15,235.77],[237.15,235.77],[237.15,235.77],[237.15,235.77],[237.15,235.77],[237.15,235.77],[237.15,235.77],[237.15,235.78],[237.15,235.78],[237.15,235.78],[237.15,235.78],[237.15,235.78],[237.15,235.78],[237.15,235.78],[237.15,235.79],[237.15,235.79],[237.15,235.79],[237.16,235.79],[237.16,235.79],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.16,235.8],[237.17,235.8],[237.17,235.81],[237.17,235.81],[237.17,235.81],[237.18,235.81],[237.18,235.81],[237.18,235.81],[237.18,235.82],[237.19,235.82],[237.19,235.82],[237.19,235.82],[237.19,235.82],[237.19,235.82],[237.19,235.82],[237.19,235.82],[237.19,235.82],[237.2,235.83],[237.2,235.83],[237.21,235.84],[237.21,235.84],[237.21,235.84],[237.21,235.84],[237.22,235.85],[237.22,235.85],[237.23,235.86],[237.23,235.86],[237.23,235.86],[237.23,235.86],[237.24,235.87],[237.24,235.88],[237.25,235.88],[237.25,235.89],[237.26,235.9],[237.26,235.9],[237.26,235.9],[237.27,235.91],[237.27,235.91],[237.27,235.91],[237.28,235.91],[237.28,235.91],[237.29,235.91],[237.29,235.91],[237.29,235.91],[237.29,235.91],[237.3,235.91],[237.3,235.91],[237.31,235.91],[237.32,235.91],[237.32,235.91],[237.33,235.91],[237.33,235.91],[237.33,235.91],[237.34,235.91],[237.34,235.91],[237.35,235.92],[237.36,235.92],[237.37,235.92],[237.4,235.93],[237.4,235.93],[237.41,235.93],[237.42,235.93],[237.42,235.94],[237.43,235.94],[237.43,235.94],[237.43,235.94],[237.43,235.94],[237.44,235.94],[237.44,235.94],[237.44,235.95],[237.45,235.95],[237.45,235.95],[237.46,235.95],[237.46,235.95],[237.47,235.95],[237.47,235.95],[237.47,235.95],[237.49,235.95],[237.51,235.95],[237.52,235.95],[237.54,235.95],[237.55,235.95],[237.56,235.95],[237.57,235.95],[237.58,235.95],[237.59,235.95],[237.59,235.95],[237.6,235.95],[237.61,235.95],[237.62,235.95],[237.62,235.95],[237.63,235.95],[237.64,235.94],[237.65,235.94],[237.66,235.94],[237.68,235.94],[237.69,235.94],[237.71,235.93],[237.72,235.93],[237.73,235.93],[237.73,235.93],[237.73,235.93],[237.74,235.93],[237.75,235.93],[237.78,235.93],[237.8,235.93],[237.8,235.93],[237.81,235.93],[237.82,235.93],[237.82,235.93],[237.83,235.93],[237.83,235.93],[237.84,235.93],[237.84,235.93],[237.85,235.93],[237.85,235.93],[237.86,235.93],[237.86,235.93],[237.86,235.93],[237.86,235.93],[237.87,235.92],[237.87,235.92],[237.88,235.92],[237.89,235.92],[237.89,235.91],[237.9,235.91],[237.9,235.91],[237.9,235.91],[237.91,235.91],[237.91,235.91],[237.91,235.91],[237.92,235.91],[237.92,235.91],[237.93,235.91],[237.93,235.91],[237.94,235.91],[237.94,235.91],[237.95,235.91],[237.96,235.91],[237.97,235.92],[237.99,235.92],[237.99,235.92],[238,235.92],[238.01,235.93],[238.01,235.93],[238.02,235.93],[238.03,235.93],[238.04,235.93],[238.05,235.93],[238.05,235.93],[238.06,235.93],[238.07,235.93],[238.08,235.93],[238.09,235.92],[238.11,235.92],[238.12,235.92],[238.14,235.92],[238.15,235.91],[238.18,235.91],[238.18,235.91],[238.21,235.9],[238.24,235.9],[238.25,235.9],[238.25,235.9],[238.26,235.9],[238.26,235.89],[238.27,235.89],[238.28,235.89],[238.29,235.89],[238.31,235.89],[238.32,235.89],[238.33,235.89],[238.34,235.89],[238.34,235.89],[238.35,235.9],[238.35,235.9],[238.35,235.9],[238.35,235.9],[238.36,235.9],[238.36,235.9],[238.36,235.9],[238.37,235.9],[238.37,235.9],[238.37,235.9],[238.38,235.91],[238.4,235.92],[238.4,235.92],[238.4,235.92],[238.41,235.93],[238.41,235.93],[238.41,235.93],[238.42,235.93],[238.42,235.94],[238.42,235.94],[238.42,235.94],[238.43,235.95],[238.43,235.95],[238.43,235.95],[238.44,235.96],[238.44,235.96],[238.44,235.96],[238.45,235.96],[238.45,235.97],[238.45,235.97],[238.46,235.97],[238.46,235.97],[238.48,235.98],[238.5,235.98],[238.54,235.99],[238.56,236],[238.58,236.01],[238.61,236.01],[238.62,236.02],[238.63,236.02],[238.64,236.02],[238.64,236.02],[238.64,236.02],[238.65,236.02],[238.65,236.02],[238.65,236.02],[238.66,236.02],[238.66,236.02],[238.66,236.02],[238.67,236.02],[238.67,236.02],[238.69,236.01],[238.7,236.01],[238.72,236],[238.73,236],[238.75,235.99],[238.78,235.98],[238.79,235.98],[238.79,235.98],[238.79,235.98],[238.8,235.98],[238.8,235.98],[238.8,235.97],[238.81,235.97],[238.81,235.97],[238.82,235.96],[238.84,235.95],[238.86,235.94],[238.87,235.93],[238.87,235.93],[238.88,235.93],[238.88,235.92],[238.89,235.91],[238.91,235.9],[238.92,235.9],[238.92,235.89],[238.93,235.88],[238.93,235.88],[238.93,235.88],[238.93,235.88],[238.93,235.88],[238.93,235.87],[238.94,235.87],[238.94,235.87],[238.94,235.87],[238.94,235.86],[238.94,235.86],[238.94,235.85],[238.95,235.85],[238.95,235.84],[238.95,235.84],[238.95,235.84],[238.95,235.83],[238.95,235.83],[238.95,235.82],[238.95,235.82],[238.95,235.82],[238.95,235.81],[238.95,235.81],[238.95,235.81],[238.95,235.8],[238.95,235.79],[238.95,235.78],[238.94,235.77],[238.94,235.76],[238.94,235.76],[238.94,235.76],[238.94,235.75],[238.94,235.75],[238.94,235.75],[238.94,235.74],[238.95,235.74],[238.95,235.74],[238.95,235.73],[238.95,235.73],[238.95,235.73],[238.95,235.73],[238.95,235.72],[238.96,235.72],[238.96,235.72],[238.96,235.71],[238.96,235.71],[238.97,235.71],[238.97,235.7],[238.97,235.7],[238.97,235.7],[238.98,235.69],[238.98,235.69],[238.98,235.69],[238.99,235.69],[238.99,235.68],[238.99,235.68],[239,235.68],[239,235.68],[239.01,235.68],[239.01,235.67],[239.02,235.67],[239.02,235.67],[239.02,235.67],[239.02,235.67],[239.03,235.66],[239.03,235.66],[239.03,235.66],[239.03,235.65],[239.03,235.65],[239.04,235.65],[239.04,235.64],[239.04,235.64],[239.04,235.63],[239.04,235.63],[239.04,235.63],[239.04,235.62],[239.05,235.62],[239.05,235.62],[239.05,235.61],[239.05,235.61],[239.06,235.61],[239.06,235.6],[239.06,235.6],[239.07,235.6],[239.07,235.6],[239.07,235.59],[239.08,235.59],[239.08,235.59],[239.08,235.59],[239.09,235.59],[239.1,235.59],[239.11,235.58],[239.12,235.58],[239.12,235.58],[239.12,235.58],[239.13,235.58],[239.13,235.58],[239.13,235.58],[239.14,235.57],[239.14,235.57],[239.14,235.57],[239.15,235.56],[239.16,235.55],[239.18,235.54],[239.19,235.53],[239.2,235.53],[239.2,235.52],[239.2,235.52],[239.21,235.52],[239.21,235.51],[239.21,235.51],[239.22,235.51],[239.23,235.5],[239.24,235.5],[239.24,235.5],[239.25,235.49],[239.25,235.49],[239.25,235.49],[239.25,235.49],[239.26,235.49],[239.26,235.48],[239.26,235.48],[239.26,235.48],[239.27,235.47],[239.27,235.47],[239.27,235.47],[239.28,235.46],[239.28,235.46],[239.28,235.46],[239.28,235.46],[239.29,235.46],[239.29,235.45],[239.29,235.45],[239.3,235.45],[239.3,235.45],[239.3,235.45],[239.31,235.44],[239.31,235.44],[239.32,235.44],[239.32,235.44],[239.33,235.44],[239.33,235.44],[239.34,235.44],[239.34,235.44],[239.34,235.43],[239.34,235.43],[239.35,235.43],[239.35,235.43],[239.35,235.43],[239.35,235.42],[239.35,235.42],[239.36,235.42],[239.36,235.42],[239.36,235.41],[239.36,235.41],[239.37,235.4],[239.38,235.39],[239.38,235.38],[239.4,235.35],[239.4,235.34],[239.41,235.34],[239.41,235.34],[239.41,235.33],[239.41,235.33],[239.41,235.32],[239.42,235.32],[239.42,235.31],[239.42,235.31],[239.42,235.3],[239.42,235.3],[239.42,235.29],[239.43,235.28],[239.43,235.27],[239.43,235.26],[239.43,235.26],[239.43,235.25],[239.44,235.25],[239.44,235.24],[239.44,235.24],[239.44,235.23],[239.44,235.22],[239.45,235.21],[239.45,235.21],[239.46,235.2],[239.47,235.18],[239.48,235.17],[239.48,235.17],[239.49,235.16],[239.49,235.15],[239.49,235.15],[239.49,235.15],[239.5,235.15],[239.5,235.14],[239.5,235.14],[239.5,235.14],[239.51,235.14],[239.51,235.13],[239.51,235.13],[239.52,235.13],[239.52,235.12],[239.53,235.12],[239.53,235.12],[239.53,235.12],[239.54,235.12],[239.54,235.12],[239.54,235.11],[239.55,235.11],[239.55,235.11],[239.56,235.11],[239.57,235.11],[239.58,235.11],[239.58,235.11],[239.59,235.1],[239.59,235.1],[239.6,235.1],[239.6,235.1],[239.6,235.1],[239.6,235.1],[239.61,235.09],[239.61,235.09],[239.61,235.09],[239.62,235.08],[239.62,235.08],[239.62,235.08],[239.62,235.07],[239.63,235.07],[239.63,235.06],[239.64,235.04],[239.65,235.02],[239.66,235],[239.66,234.99],[239.66,234.99],[239.66,234.98],[239.66,234.98],[239.67,234.98],[239.67,234.97],[239.67,234.97],[239.67,234.97],[239.68,234.97],[239.69,234.95],[239.73,234.91],[239.75,234.9],[239.75,234.9],[239.77,234.87],[239.8,234.85],[239.83,234.82],[239.85,234.8],[239.87,234.78],[239.88,234.78],[239.88,234.77],[239.88,234.77],[239.89,234.77],[239.89,234.76],[239.9,234.76],[239.9,234.76],[239.9,234.76],[239.91,234.76],[239.91,234.75],[239.92,234.75],[239.93,234.75],[239.93,234.75],[239.94,234.75],[239.94,234.75],[239.95,234.74],[239.95,234.74],[239.95,234.74],[239.96,234.74],[239.96,234.73],[239.97,234.73],[239.97,234.72],[239.98,234.71],[240.01,234.69],[240.04,234.67],[240.07,234.65],[240.09,234.63],[240.11,234.62],[240.12,234.61],[240.12,234.61],[240.13,234.6],[240.13,234.6],[240.14,234.6],[240.14,234.6],[240.15,234.59],[240.15,234.59],[240.15,234.59],[240.16,234.59],[240.16,234.59],[240.17,234.59],[240.17,234.59],[240.18,234.59],[240.19,234.58],[240.2,234.58],[240.2,234.58],[240.21,234.58],[240.21,234.58],[240.22,234.58],[240.22,234.57],[240.23,234.57],[240.23,234.57],[240.24,234.57],[240.24,234.57],[240.25,234.56],[240.25,234.56],[240.26,234.56],[240.26,234.56],[240.27,234.55],[240.27,234.55],[240.27,234.55],[240.29,234.54],[240.3,234.53],[240.3,234.53],[240.31,234.52],[240.32,234.52],[240.32,234.52],[240.33,234.52],[240.33,234.51],[240.34,234.51],[240.35,234.51],[240.36,234.5],[240.36,234.5],[240.37,234.5],[240.38,234.5],[240.38,234.5],[240.4,234.49],[240.41,234.49],[240.42,234.49],[240.42,234.49],[240.43,234.49],[240.43,234.49],[240.44,234.48],[240.45,234.48],[240.46,234.48],[240.46,234.47],[240.47,234.47],[240.48,234.47],[240.48,234.46],[240.5,234.45],[240.5,234.45],[240.5,234.45],[240.51,234.45],[240.51,234.45],[240.52,234.44],[240.52,234.44],[240.53,234.44],[240.54,234.43],[240.54,234.43],[240.55,234.43],[240.56,234.43],[240.56,234.43],[240.57,234.43],[240.58,234.42],[240.58,234.42],[240.59,234.42],[240.6,234.42],[240.61,234.42],[240.61,234.41],[240.62,234.41],[240.62,234.41],[240.63,234.41],[240.64,234.4],[240.64,234.4],[240.65,234.4],[240.65,234.39],[240.65,234.39],[240.66,234.39],[240.66,234.38],[240.67,234.38],[240.67,234.37],[240.68,234.37],[240.69,234.36],[240.69,234.36],[240.7,234.35],[240.71,234.35],[240.71,234.34],[240.71,234.34],[240.72,234.33],[240.73,234.33],[240.74,234.33],[240.74,234.32],[240.74,234.32],[240.75,234.32],[240.75,234.32],[240.76,234.32],[240.77,234.31],[240.77,234.31],[240.78,234.31],[240.79,234.31],[240.8,234.31],[240.82,234.3],[240.83,234.3],[240.86,234.29],[240.88,234.29],[240.89,234.29],[240.91,234.29],[240.91,234.29],[240.92,234.29],[240.93,234.29],[240.94,234.29],[240.95,234.29],[240.97,234.29],[240.97,234.29],[240.98,234.29],[240.99,234.29],[241,234.29],[241.01,234.29],[241.01,234.29],[241.02,234.29],[241.02,234.28],[241.03,234.28],[241.03,234.28],[241.04,234.28],[241.04,234.28],[241.05,234.27],[241.05,234.27],[241.07,234.27],[241.08,234.26],[241.09,234.25],[241.11,234.25],[241.13,234.24],[241.14,234.23],[241.15,234.23],[241.16,234.22],[241.16,234.22],[241.16,234.22],[241.17,234.22],[241.17,234.21],[241.18,234.21],[241.18,234.21],[241.19,234.2],[241.21,234.19],[241.22,234.18],[241.23,234.17],[241.25,234.16],[241.27,234.14],[241.3,234.12],[241.3,234.12],[241.3,234.12],[241.31,234.11],[241.32,234.11],[241.32,234.1],[241.33,234.1],[241.34,234.09],[241.35,234.09],[241.37,234.08],[241.39,234.07],[241.43,234.05],[241.46,234.03],[241.48,234.02],[241.5,234.01],[241.51,234.01],[241.51,234],[241.52,234],[241.52,234],[241.53,234],[241.53,234],[241.54,234],[241.54,234],[241.55,234],[241.55,234],[241.56,234],[241.56,234],[241.56,234],[241.57,234],[241.57,233.99],[241.58,233.99],[241.58,233.99],[241.58,233.99],[241.59,233.99],[241.59,233.99],[241.59,233.98],[241.6,233.98],[241.6,233.98],[241.6,233.98],[241.61,233.97],[241.61,233.97],[241.61,233.96],[241.62,233.96],[241.62,233.95],[241.63,233.95],[241.63,233.95],[241.64,233.94],[241.65,233.94],[241.66,233.93],[241.67,233.93],[241.69,233.92],[241.72,233.91],[241.74,233.9],[241.77,233.89],[241.77,233.88],[241.79,233.88],[241.81,233.87],[241.83,233.86],[241.83,233.86],[241.86,233.84],[241.88,233.83],[241.91,233.82],[241.91,233.82],[241.95,233.8],[241.96,233.8],[241.97,233.79],[241.98,233.78],[241.99,233.78],[242,233.77],[242.01,233.77],[242.01,233.76],[242.03,233.75],[242.03,233.75],[242.04,233.75],[242.05,233.74],[242.06,233.74],[242.07,233.73],[242.07,233.73],[242.09,233.72],[242.12,233.71],[242.14,233.7],[242.2,233.68],[242.29,233.64],[242.31,233.64],[242.33,233.63],[242.36,233.61],[242.38,233.61],[242.39,233.6],[242.41,233.59],[242.42,233.59],[242.42,233.59],[242.44,233.58],[242.47,233.57],[242.48,233.57],[242.49,233.56],[242.49,233.56],[242.5,233.56],[242.5,233.56],[242.51,233.56],[242.51,233.55],[242.51,233.55],[242.52,233.55],[242.52,233.55],[242.53,233.55],[242.54,233.55],[242.55,233.55],[242.56,233.55],[242.56,233.55],[242.57,233.55],[242.57,233.55],[242.58,233.55],[242.58,233.55],[242.58,233.55],[242.59,233.55],[242.6,233.54],[242.6,233.54],[242.6,233.54],[242.61,233.54],[242.61,233.53],[242.62,233.53],[242.62,233.53],[242.62,233.52],[242.63,233.52],[242.63,233.52],[242.64,233.51],[242.64,233.51],[242.64,233.5],[242.65,233.5],[242.65,233.5],[242.65,233.49],[242.66,233.49],[242.66,233.49],[242.66,233.48],[242.67,233.48],[242.67,233.48],[242.67,233.48],[242.68,233.48],[242.68,233.47],[242.69,233.47],[242.72,233.45],[242.75,233.44],[242.79,233.42],[242.82,233.41],[242.82,233.41],[242.84,233.4],[242.85,233.39],[242.87,233.39],[242.88,233.38],[242.9,233.38],[242.91,233.37],[242.95,233.36],[242.95,233.36],[242.96,233.36],[242.98,233.35],[243.02,233.34],[243.03,233.33],[243.03,233.33],[243.04,233.33],[243.04,233.33],[243.04,233.33],[243.05,233.33],[243.05,233.33],[243.06,233.33],[243.06,233.33],[243.07,233.33],[243.07,233.33],[243.08,233.33],[243.08,233.33],[243.09,233.33],[243.09,233.33],[243.1,233.33],[243.1,233.33],[243.11,233.33],[243.11,233.33],[243.11,233.33],[243.12,233.33],[243.12,233.33],[243.13,233.33],[243.13,233.32],[243.14,233.32],[243.14,233.32],[243.15,233.31],[243.15,233.31],[243.15,233.31],[243.16,233.31],[243.16,233.3],[243.16,233.29],[243.17,233.29],[243.17,233.29],[243.17,233.28],[243.17,233.28],[243.18,233.28],[243.18,233.27],[243.18,233.27],[243.19,233.26],[243.19,233.26],[243.2,233.25],[243.2,233.25],[243.21,233.25],[243.21,233.25],[243.21,233.25],[243.22,233.24],[243.22,233.24],[243.23,233.24],[243.23,233.24],[243.23,233.24],[243.24,233.24],[243.24,233.24],[243.25,233.24],[243.25,233.24],[243.26,233.24],[243.26,233.24],[243.26,233.24],[243.27,233.24],[243.27,233.24],[243.28,233.24],[243.28,233.24],[243.28,233.24],[243.29,233.24],[243.29,233.24],[243.3,233.24],[243.3,233.24],[243.3,233.24],[243.31,233.24],[243.31,233.24],[243.32,233.24],[243.32,233.24],[243.32,233.23],[243.33,233.23],[243.33,233.23],[243.34,233.23],[243.34,233.23],[243.34,233.22],[243.35,233.22],[243.35,233.22],[243.35,233.21],[243.37,233.2],[243.37,233.2],[243.37,233.2],[243.38,233.2],[243.38,233.19],[243.39,233.19],[243.39,233.19],[243.4,233.18],[243.4,233.18],[243.41,233.18],[243.42,233.18],[243.42,233.18],[243.42,233.18],[243.43,233.17],[243.44,233.17],[243.45,233.17],[243.45,233.17],[243.46,233.17],[243.46,233.17],[243.47,233.17],[243.47,233.17],[243.48,233.18],[243.48,233.18],[243.49,233.18],[243.49,233.18],[243.49,233.18],[243.5,233.18],[243.5,233.18],[243.51,233.18],[243.51,233.18],[243.51,233.18],[243.52,233.18],[243.52,233.18],[243.52,233.18],[243.52,233.18],[243.53,233.18],[243.53,233.17],[243.54,233.17],[243.54,233.17],[243.54,233.16],[243.54,233.16],[243.55,233.15],[243.56,233.15],[243.56,233.14],[243.56,233.14],[243.57,233.13],[243.57,233.13],[243.57,233.13],[243.57,233.12],[243.57,233.12],[243.57,233.11],[243.58,233.1],[243.58,233.1],[243.58,233.09],[243.58,233.09],[243.58,233.09],[243.59,233.08],[243.59,233.08],[243.59,233.08],[243.6,233.07],[243.6,233.06],[243.6,233.06],[243.61,233.05],[243.61,233.05],[243.61,233.04],[243.61,233.04],[243.62,233.02],[243.63,233],[243.63,233],[243.63,232.99],[243.64,232.98],[243.64,232.98],[243.64,232.98],[243.64,232.97],[243.64,232.97],[243.65,232.96],[243.65,232.96],[243.65,232.96],[243.66,232.95],[243.66,232.95],[243.67,232.94],[243.67,232.94],[243.68,232.93],[243.68,232.93],[243.68,232.93],[243.69,232.92],[243.69,232.92],[243.69,232.91],[243.7,232.91],[243.7,232.9],[243.7,232.9],[243.7,232.89],[243.71,232.89],[243.71,232.89],[243.71,232.88],[243.71,232.88],[243.72,232.88],[243.72,232.87],[243.73,232.87],[243.73,232.87],[243.74,232.87],[243.75,232.86],[243.76,232.86],[243.77,232.86],[243.79,232.85],[243.79,232.85],[243.79,232.85],[243.8,232.85],[243.8,232.85],[243.81,232.85],[243.82,232.85],[243.82,232.85],[243.82,232.85],[243.82,232.85],[243.84,232.85],[243.84,232.85],[243.85,232.85],[243.85,232.84],[243.86,232.84],[243.86,232.85],[243.87,232.85],[243.87,232.85],[243.89,232.85],[243.9,232.85],[243.9,232.85],[243.91,232.85],[243.91,232.85],[243.91,232.85],[243.92,232.85],[243.93,232.85],[243.96,232.85],[243.97,232.85],[243.98,232.85],[243.98,232.85],[244,232.85],[244.02,232.84],[244.02,232.84],[244.03,232.84],[244.04,232.84],[244.04,232.84],[244.05,232.84],[244.05,232.84],[244.05,232.84],[244.06,232.83],[244.06,232.83],[244.07,232.83],[244.08,232.82],[244.1,232.82],[244.12,232.8],[244.15,232.79],[244.16,232.79],[244.17,232.78],[244.17,232.78],[244.18,232.78],[244.18,232.78],[244.19,232.77],[244.19,232.77],[244.2,232.76],[244.21,232.76],[244.21,232.75],[244.22,232.75],[244.22,232.75],[244.22,232.74],[244.23,232.73],[244.23,232.73],[244.24,232.72],[244.25,232.71],[244.25,232.69],[244.26,232.68],[244.26,232.67],[244.27,232.67],[244.27,232.66],[244.28,232.65],[244.28,232.65],[244.29,232.64],[244.29,232.63],[244.3,232.63],[244.3,232.62],[244.31,232.61],[244.32,232.61],[244.33,232.6],[244.33,232.6],[244.33,232.59],[244.34,232.59],[244.34,232.59],[244.34,232.58],[244.35,232.58],[244.35,232.57],[244.36,232.56],[244.36,232.56],[244.36,232.55],[244.37,232.54],[244.37,232.54],[244.37,232.53],[244.38,232.52],[244.38,232.52],[244.38,232.51],[244.38,232.51],[244.39,232.5],[244.39,232.5],[244.39,232.5],[244.39,232.49],[244.4,232.49],[244.4,232.48],[244.41,232.47],[244.41,232.47],[244.42,232.46],[244.42,232.46],[244.43,232.45],[244.44,232.44],[244.45,232.44],[244.45,232.43],[244.45,232.43],[244.46,232.43],[244.46,232.42],[244.46,232.42],[244.47,232.41],[244.47,232.41],[244.48,232.4],[244.48,232.4],[244.48,232.4],[244.49,232.39],[244.49,232.38],[244.5,232.37],[244.5,232.37],[244.5,232.36],[244.5,232.36],[244.51,232.36],[244.51,232.35],[244.51,232.35],[244.52,232.34],[244.52,232.34],[244.53,232.34],[244.53,232.33],[244.53,232.33],[244.53,232.33],[244.54,232.33],[244.54,232.32],[244.55,232.32],[244.55,232.32],[244.55,232.32],[244.55,232.32],[244.56,232.31],[244.56,232.31],[244.57,232.31],[244.58,232.31],[244.59,232.3],[244.6,232.3],[244.61,232.29],[244.62,232.29],[244.62,232.29],[244.63,232.29],[244.63,232.28],[244.64,232.28],[244.64,232.28],[244.65,232.28],[244.65,232.27],[244.65,232.27],[244.65,232.27],[244.66,232.27],[244.66,232.26],[244.66,232.26],[244.67,232.26],[244.67,232.25],[244.67,232.25],[244.67,232.24],[244.68,232.24],[244.68,232.23],[244.68,232.23],[244.68,232.23],[244.68,232.22],[244.68,232.22],[244.69,232.21],[244.69,232.2],[244.69,232.19],[244.69,232.18],[244.69,232.17],[244.69,232.16],[244.7,232.15],[244.7,232.15],[244.7,232.14],[244.7,232.14],[244.7,232.13],[244.7,232.13],[244.71,232.12],[244.71,232.11],[244.71,232.11],[244.72,232.1],[244.72,232.09],[244.73,232.08],[244.74,232.06],[244.75,232.06],[244.75,232.05],[244.75,232.05],[244.75,232.04],[244.76,232.04],[244.76,232.03],[244.76,232.03],[244.76,232.02],[244.76,232.02],[244.77,232.02],[244.77,232.01],[244.77,232.01],[244.77,232],[244.77,232],[244.77,231.99],[244.77,231.99],[244.77,231.99],[244.77,231.98],[244.77,231.98],[244.77,231.97],[244.77,231.96],[244.77,231.96],[244.77,231.95],[244.77,231.95],[244.77,231.94],[244.77,231.93],[244.77,231.91],[244.77,231.9],[244.77,231.89],[244.77,231.89],[244.77,231.88],[244.77,231.87],[244.77,231.87],[244.77,231.86],[244.77,231.86],[244.77,231.85],[244.77,231.84],[244.78,231.84],[244.78,231.83],[244.78,231.83],[244.78,231.82],[244.78,231.82],[244.78,231.82],[244.79,231.81],[244.79,231.81],[244.79,231.8],[244.8,231.79],[244.8,231.79],[244.81,231.79],[244.81,231.78],[244.82,231.78],[244.82,231.77],[244.82,231.77],[244.83,231.77],[244.83,231.77],[244.84,231.76],[244.84,231.76],[244.85,231.75],[244.86,231.75],[244.87,231.74],[244.88,231.74],[244.89,231.73],[244.9,231.73],[244.91,231.72],[244.92,231.72],[244.93,231.71],[244.93,231.71],[244.94,231.71],[244.94,231.71],[244.95,231.7],[244.95,231.7],[244.96,231.69],[244.96,231.69],[244.97,231.68],[244.98,231.67],[244.99,231.67],[244.99,231.66],[245,231.66],[245,231.65],[245.01,231.65],[245.01,231.65],[245.02,231.64],[245.02,231.64],[245.02,231.64],[245.03,231.64],[245.03,231.63],[245.04,231.63],[245.04,231.63],[245.04,231.63],[245.05,231.63],[245.06,231.63],[245.06,231.62],[245.07,231.62],[245.07,231.62],[245.08,231.62],[245.08,231.62],[245.09,231.62],[245.1,231.62],[245.11,231.62],[245.12,231.62],[245.13,231.62],[245.13,231.62],[245.14,231.62],[245.15,231.62],[245.15,231.62],[245.16,231.61],[245.16,231.61],[245.17,231.61],[245.18,231.61],[245.19,231.61],[245.19,231.61],[245.2,231.6],[245.21,231.6],[245.22,231.6],[245.23,231.6],[245.23,231.6],[245.24,231.6],[245.25,231.59],[245.25,231.59],[245.26,231.59],[245.27,231.6],[245.28,231.6],[245.29,231.6],[245.29,231.6],[245.3,231.6],[245.31,231.6],[245.32,231.6],[245.32,231.6],[245.33,231.6],[245.33,231.6],[245.34,231.6],[245.34,231.6],[245.35,231.59],[245.36,231.59],[245.36,231.59],[245.37,231.59],[245.37,231.59],[245.37,231.59],[245.38,231.58],[245.38,231.58],[245.39,231.58],[245.39,231.58],[245.39,231.57],[245.4,231.57],[245.4,231.57],[245.4,231.56],[245.41,231.56],[245.41,231.56],[245.41,231.55],[245.42,231.55],[245.42,231.54],[245.43,231.54],[245.43,231.53],[245.43,231.53],[245.44,231.52],[245.44,231.51],[245.45,231.51],[245.45,231.51],[245.45,231.51],[245.45,231.5],[245.46,231.5],[245.47,231.49],[245.47,231.49],[245.48,231.48],[245.48,231.48],[245.49,231.47],[245.49,231.47],[245.49,231.47],[245.5,231.46],[245.5,231.46],[245.5,231.46],[245.51,231.45],[245.51,231.44],[245.52,231.43],[245.52,231.42],[245.53,231.42],[245.53,231.41],[245.53,231.41],[245.54,231.41],[245.54,231.4],[245.54,231.4],[245.55,231.4],[245.55,231.39],[245.56,231.39],[245.56,231.39],[245.56,231.38],[245.57,231.38],[245.57,231.37],[245.58,231.37],[245.58,231.37],[245.59,231.36],[245.61,231.35],[245.62,231.34],[245.64,231.32],[245.65,231.32],[245.66,231.31],[245.67,231.3],[245.68,231.3],[245.68,231.29],[245.69,231.29],[245.69,231.28],[245.7,231.28],[245.7,231.28],[245.7,231.28],[245.7,231.27],[245.71,231.27],[245.71,231.27],[245.71,231.26],[245.71,231.26],[245.72,231.25],[245.72,231.25],[245.72,231.25],[245.72,231.24],[245.72,231.24],[245.73,231.24],[245.73,231.23],[245.73,231.22],[245.73,231.22],[245.73,231.21],[245.74,231.2],[245.74,231.19],[245.74,231.18],[245.74,231.18],[245.75,231.16],[245.75,231.15],[245.75,231.14],[245.75,231.14],[245.76,231.13],[245.76,231.13],[245.76,231.12],[245.76,231.12],[245.77,231.12],[245.77,231.11],[245.77,231.11],[245.77,231.1],[245.78,231.1],[245.78,231.09],[245.79,231.09],[245.79,231.09],[245.79,231.08],[245.8,231.08],[245.8,231.07],[245.81,231.07],[245.82,231.06],[245.82,231.06],[245.83,231.05],[245.84,231.04],[245.84,231.04],[245.85,231.03],[245.87,231],[245.88,230.98],[245.89,230.97],[245.89,230.97],[245.9,230.96],[245.9,230.96],[245.9,230.96],[245.9,230.96],[245.91,230.95],[245.91,230.95],[245.92,230.94],[245.92,230.94],[245.93,230.94],[245.93,230.93],[245.94,230.93],[245.95,230.92],[245.96,230.92],[245.97,230.91],[245.97,230.91],[245.98,230.91],[245.98,230.91],[245.98,230.9],[245.99,230.9],[245.99,230.9],[245.99,230.89],[246,230.89],[246,230.89],[246,230.88],[246.01,230.88],[246.01,230.87],[246.02,230.86],[246.03,230.85],[246.03,230.85],[246.03,230.85],[246.04,230.84],[246.04,230.84],[246.04,230.84],[246.05,230.83],[246.06,230.83],[246.06,230.82],[246.07,230.82],[246.07,230.81],[246.07,230.81],[246.08,230.81],[246.08,230.8],[246.08,230.8],[246.09,230.8],[246.09,230.79],[246.1,230.78],[246.1,230.77],[246.1,230.77],[246.11,230.76],[246.11,230.76],[246.12,230.75],[246.12,230.75],[246.12,230.74],[246.13,230.74],[246.14,230.73],[246.14,230.73],[246.15,230.72],[246.15,230.72],[246.16,230.71],[246.16,230.71],[246.16,230.7],[246.17,230.7],[246.18,230.69],[246.19,230.67],[246.2,230.66],[246.21,230.65],[246.22,230.63],[246.23,230.62],[246.23,230.61],[246.23,230.61],[246.24,230.6],[246.24,230.59],[246.24,230.59],[246.24,230.59],[246.24,230.58],[246.24,230.58],[246.25,230.58],[246.25,230.57],[246.25,230.56],[246.25,230.56],[246.25,230.55],[246.26,230.54],[246.26,230.53],[246.26,230.53],[246.26,230.53],[246.26,230.52],[246.26,230.52],[246.26,230.52],[246.27,230.51],[246.27,230.51],[246.27,230.51],[246.28,230.5],[246.28,230.49],[246.29,230.48],[246.3,230.47],[246.3,230.47],[246.31,230.47],[246.31,230.46],[246.31,230.46],[246.32,230.46],[246.32,230.45],[246.33,230.45],[246.33,230.45],[246.33,230.44],[246.34,230.44],[246.34,230.44],[246.35,230.44],[246.35,230.44],[246.36,230.43],[246.37,230.43],[246.37,230.43],[246.39,230.43],[246.39,230.42],[246.4,230.42],[246.4,230.42],[246.41,230.42],[246.41,230.41],[246.41,230.41],[246.42,230.41],[246.42,230.41],[246.42,230.4],[246.43,230.4],[246.43,230.4],[246.43,230.39],[246.44,230.39],[246.44,230.39],[246.44,230.39],[246.44,230.38],[246.45,230.38],[246.45,230.37],[246.45,230.37],[246.46,230.36],[246.47,230.33],[246.48,230.32],[246.48,230.31],[246.49,230.3],[246.49,230.29],[246.49,230.29],[246.5,230.28],[246.5,230.28],[246.51,230.27],[246.51,230.27],[246.51,230.27],[246.52,230.26],[246.53,230.26],[246.53,230.25],[246.54,230.25],[246.55,230.24],[246.55,230.23],[246.56,230.23],[246.57,230.22],[246.57,230.21],[246.58,230.21],[246.58,230.2],[246.58,230.2],[246.58,230.19],[246.59,230.19],[246.59,230.18],[246.59,230.18],[246.59,230.17],[246.59,230.17],[246.6,230.16],[246.6,230.14],[246.6,230.13],[246.6,230.12],[246.6,230.12],[246.61,230.11],[246.61,230.1],[246.61,230.1],[246.61,230.1],[246.61,230.09],[246.61,230.09],[246.61,230.08],[246.62,230.08],[246.62,230.07],[246.62,230.06],[246.63,230.06],[246.63,230.05],[246.64,230.04],[246.65,230.03],[246.65,230.02],[246.66,230],[246.68,229.98],[246.69,229.96],[246.7,229.95],[246.71,229.94],[246.71,229.93],[246.72,229.92],[246.72,229.91],[246.73,229.91],[246.73,229.9],[246.73,229.89],[246.74,229.88],[246.74,229.87],[246.75,229.86],[246.75,229.85],[246.75,229.84],[246.76,229.83],[246.76,229.82],[246.76,229.81],[246.77,229.81],[246.77,229.8],[246.77,229.8],[246.77,229.79],[246.78,229.79],[246.78,229.78],[246.78,229.78],[246.78,229.77],[246.79,229.76],[246.79,229.76],[246.8,229.75],[246.81,229.74],[246.81,229.74],[246.81,229.73],[246.82,229.73],[246.82,229.73],[246.83,229.72],[246.83,229.71],[246.84,229.71],[246.85,229.7],[246.87,229.68],[246.88,229.67],[246.88,229.67],[246.91,229.64],[246.93,229.62],[246.94,229.61],[246.95,229.6],[246.97,229.59],[246.99,229.57],[246.99,229.57],[247,229.56],[247.01,229.56],[247.01,229.55],[247.01,229.55],[247.01,229.54],[247.02,229.54],[247.02,229.53],[247.02,229.53],[247.03,229.53],[247.03,229.52],[247.03,229.52],[247.03,229.51],[247.04,229.51],[247.04,229.5],[247.04,229.5],[247.04,229.49],[247.04,229.49],[247.04,229.48],[247.05,229.48],[247.05,229.47],[247.05,229.46],[247.05,229.46],[247.05,229.45],[247.05,229.44],[247.06,229.44],[247.06,229.43],[247.06,229.43],[247.06,229.43],[247.06,229.43],[247.06,229.42],[247.07,229.42],[247.07,229.42],[247.07,229.42],[247.07,229.41],[247.08,229.41],[247.08,229.4],[247.09,229.39],[247.1,229.38],[247.11,229.38],[247.13,229.36],[247.14,229.35],[247.14,229.34],[247.15,229.34],[247.17,229.32],[247.18,229.31],[247.19,229.3],[247.25,229.26],[247.27,229.24],[247.29,229.23],[247.29,229.22],[247.31,229.21],[247.32,229.2],[247.32,229.2],[247.33,229.19],[247.33,229.19],[247.34,229.19],[247.34,229.19],[247.35,229.18],[247.36,229.18],[247.37,229.18],[247.37,229.17],[247.38,229.17],[247.39,229.17],[247.4,229.16],[247.4,229.16],[247.4,229.16],[247.41,229.16],[247.41,229.15],[247.41,229.15],[247.42,229.15],[247.42,229.15],[247.42,229.14],[247.42,229.14],[247.42,229.14],[247.42,229.14],[247.43,229.13],[247.43,229.13],[247.43,229.13],[247.43,229.13],[247.43,229.12],[247.43,229.12],[247.43,229.12],[247.43,229.11],[247.43,229.1],[247.43,229.1],[247.43,229.09],[247.43,229.08],[247.43,229.08],[247.43,229.07],[247.43,229.06],[247.43,229.05],[247.44,229.04],[247.44,229.03],[247.44,229.03],[247.44,229.03],[247.44,229.02],[247.44,229.02],[247.44,229.01],[247.44,229.01],[247.44,229.01],[247.44,229.01],[247.44,229],[247.45,229],[247.45,228.99],[247.45,228.99],[247.46,228.99],[247.46,228.98],[247.46,228.98],[247.46,228.98],[247.46,228.98],[247.46,228.98],[247.47,228.98],[247.47,228.98],[247.47,228.97],[247.47,228.97],[247.48,228.97],[247.48,228.97],[247.49,228.97],[247.5,228.97],[247.51,228.96],[247.51,228.96],[247.52,228.96],[247.52,228.96],[247.52,228.96],[247.53,228.96],[247.54,228.96],[247.54,228.96],[247.55,228.96],[247.56,228.97],[247.58,228.97],[247.59,228.98],[247.59,228.98],[247.6,228.99],[247.6,228.99],[247.61,228.99],[247.61,228.99],[247.61,229],[247.62,229],[247.62,229.01],[247.62,229.01],[247.63,229.01],[247.63,229.01],[247.63,229.01],[247.63,229.01],[247.64,229.02],[247.64,229.02],[247.64,229.02],[247.65,229.02],[247.65,229.02],[247.66,229.02],[247.67,229.02],[247.67,229.02],[247.67,229.02],[247.68,229.02],[247.69,229.02],[247.69,229.02],[247.7,229.01],[247.72,229.01],[247.73,229.01],[247.74,229],[247.75,229],[247.77,228.99],[247.78,228.99],[247.79,228.99],[247.8,228.99],[247.81,228.98],[247.81,228.98],[247.82,228.98],[247.83,228.97],[247.84,228.97],[247.85,228.96],[247.85,228.96],[247.85,228.95],[247.86,228.95],[247.89,228.93],[247.91,228.92],[247.96,228.9],[247.99,228.88],[248,228.87],[248.01,228.87],[248.03,228.86],[248.05,228.85],[248.06,228.84],[248.08,228.83],[248.08,228.83],[248.09,228.83],[248.09,228.83],[248.1,228.82],[248.11,228.81],[248.12,228.8],[248.14,228.77],[248.18,228.74],[248.21,228.7],[248.23,228.68],[248.24,228.68],[248.24,228.67],[248.26,228.65],[248.27,228.64],[248.28,228.62],[248.29,228.62],[248.29,228.62],[248.3,228.61],[248.3,228.61],[248.31,228.6],[248.31,228.6],[248.33,228.59],[248.34,228.57],[248.36,228.55],[248.37,228.55],[248.38,228.53],[248.39,228.53],[248.4,228.52],[248.4,228.51],[248.41,228.5],[248.42,228.49],[248.42,228.49],[248.43,228.48],[248.43,228.48],[248.43,228.48],[248.44,228.47],[248.44,228.47],[248.44,228.47],[248.45,228.47],[248.45,228.46],[248.46,228.46],[248.46,228.45],[248.47,228.45],[248.47,228.45],[248.47,228.45],[248.47,228.44],[248.48,228.44],[248.48,228.44],[248.48,228.43],[248.49,228.43],[248.5,228.42],[248.5,228.41],[248.5,228.41],[248.5,228.41],[248.5,228.41],[248.51,228.4],[248.51,228.4],[248.51,228.4],[248.51,228.39],[248.51,228.39],[248.51,228.38],[248.51,228.38],[248.51,228.38],[248.51,228.38],[248.51,228.38],[248.52,228.37],[248.52,228.37],[248.52,228.37],[248.52,228.37],[248.52,228.37],[248.52,228.36],[248.53,228.36],[248.53,228.36],[248.53,228.36],[248.53,228.35],[248.54,228.35],[248.54,228.35],[248.54,228.35],[248.56,228.33],[248.57,228.32],[248.57,228.32],[248.58,228.32],[248.59,228.31],[248.59,228.31],[248.61,228.29],[248.62,228.28],[248.63,228.27],[248.64,228.26],[248.65,228.26],[248.66,228.25],[248.66,228.25],[248.67,228.24],[248.67,228.24],[248.68,228.23],[248.7,228.22],[248.71,228.22],[248.72,228.21],[248.72,228.21],[248.73,228.2],[248.73,228.2],[248.73,228.2],[248.74,228.19],[248.74,228.19],[248.74,228.19],[248.74,228.19],[248.74,228.18],[248.75,228.18],[248.75,228.18],[248.75,228.17],[248.75,228.16],[248.75,228.16],[248.75,228.15],[248.75,228.15],[248.75,228.15],[248.75,228.14],[248.75,228.14],[248.76,228.14],[248.76,228.14],[248.76,228.13],[248.76,228.13],[248.76,228.13],[248.76,228.13],[248.76,228.12],[248.76,228.12],[248.76,228.12],[248.77,228.12],[248.77,228.12],[248.77,228.11],[248.78,228.1],[248.78,228.1],[248.79,228.09],[248.79,228.09],[248.8,228.09],[248.81,228.08],[248.81,228.08],[248.81,228.08],[248.81,228.08],[248.81,228.07],[248.82,228.07],[248.82,228.07],[248.82,228.07],[248.82,228.06],[248.82,228.06],[248.82,228.06],[248.83,228.05],[248.83,228.04],[248.83,228.03],[248.83,228.03],[248.84,228.02],[248.84,228.02],[248.84,228.01],[248.85,228.01],[248.85,228],[248.85,228],[248.85,228],[248.86,228],[248.86,227.99],[248.86,227.99],[248.87,227.99],[248.87,227.98],[248.87,227.98],[248.87,227.98],[248.88,227.97],[248.88,227.97],[248.88,227.97],[248.88,227.96],[248.88,227.96],[248.88,227.96],[248.89,227.95],[248.89,227.95],[248.89,227.95],[248.89,227.94],[248.89,227.94],[248.89,227.93],[248.89,227.93],[248.89,227.93],[248.89,227.93],[248.89,227.92],[248.89,227.92],[248.89,227.92],[248.89,227.91],[248.89,227.91],[248.89,227.9],[248.89,227.9],[248.89,227.9],[248.89,227.9],[248.89,227.9],[248.89,227.89],[248.89,227.89],[248.89,227.89],[248.9,227.89],[248.9,227.89],[248.9,227.88],[248.9,227.88],[248.9,227.88],[248.91,227.87],[248.91,227.86],[248.91,227.85],[248.91,227.85],[248.92,227.85],[248.92,227.85],[248.92,227.84],[248.92,227.83],[248.92,227.83],[248.92,227.83],[248.92,227.82],[248.92,227.82],[248.92,227.81],[248.92,227.81],[248.92,227.8],[248.92,227.8],[248.91,227.79],[248.91,227.79],[248.91,227.78],[248.91,227.78],[248.91,227.78],[248.91,227.78],[248.91,227.77],[248.91,227.77],[248.91,227.77],[248.91,227.77],[248.91,227.76],[248.91,227.76],[248.91,227.76],[248.91,227.75],[248.91,227.75],[248.92,227.75],[248.92,227.75],[248.92,227.74],[248.92,227.74],[248.92,227.74],[248.93,227.73],[248.93,227.73],[248.93,227.73],[248.93,227.73],[248.93,227.73],[248.94,227.73],[248.94,227.72],[248.94,227.72],[248.95,227.72],[248.95,227.72],[248.95,227.72],[248.96,227.72],[248.96,227.72],[248.96,227.72],[248.97,227.72],[248.97,227.72],[248.98,227.73],[248.98,227.73],[248.98,227.73],[248.99,227.73],[248.99,227.73],[249,227.73],[249,227.73],[249.01,227.73],[249.01,227.72],[249.01,227.72],[249.02,227.72],[249.02,227.72],[249.02,227.72],[249.03,227.71],[249.03,227.71],[249.03,227.71],[249.04,227.71],[249.04,227.7],[249.05,227.7],[249.05,227.69],[249.06,227.69],[249.06,227.68],[249.07,227.68],[249.08,227.68],[249.08,227.67],[249.08,227.67],[249.09,227.67],[249.09,227.66],[249.09,227.66],[249.09,227.66],[249.09,227.66],[249.1,227.65],[249.1,227.65],[249.1,227.65],[249.1,227.64],[249.11,227.63],[249.11,227.63],[249.11,227.63],[249.11,227.62],[249.11,227.62],[249.12,227.62],[249.12,227.61],[249.12,227.61],[249.12,227.61],[249.12,227.6],[249.13,227.6],[249.13,227.59],[249.13,227.59],[249.14,227.59],[249.14,227.58],[249.14,227.58],[249.15,227.57],[249.15,227.57],[249.16,227.56],[249.16,227.56],[249.16,227.56],[249.17,227.55],[249.17,227.55],[249.17,227.55],[249.18,227.54],[249.18,227.54],[249.18,227.54],[249.18,227.54],[249.19,227.53],[249.19,227.53],[249.19,227.53],[249.2,227.53],[249.2,227.53],[249.2,227.52],[249.2,227.52],[249.2,227.52],[249.21,227.51],[249.21,227.51],[249.21,227.51],[249.21,227.51],[249.21,227.51],[249.21,227.5],[249.21,227.5],[249.21,227.5],[249.21,227.49],[249.22,227.49],[249.22,227.49],[249.22,227.49],[249.22,227.48],[249.22,227.48],[249.23,227.48],[249.23,227.47],[249.23,227.47],[249.24,227.46],[249.24,227.46],[249.25,227.45],[249.26,227.44],[249.26,227.44],[249.27,227.43],[249.27,227.43],[249.27,227.43],[249.27,227.42],[249.28,227.42],[249.28,227.41],[249.29,227.4],[249.3,227.39],[249.3,227.39],[249.31,227.38],[249.31,227.38],[249.31,227.37],[249.32,227.37],[249.32,227.36],[249.32,227.36],[249.33,227.36],[249.33,227.35],[249.33,227.35],[249.34,227.35],[249.34,227.34],[249.34,227.34],[249.35,227.34],[249.35,227.34],[249.35,227.34],[249.36,227.33],[249.36,227.33],[249.37,227.32],[249.37,227.32],[249.38,227.32],[249.38,227.32],[249.38,227.32],[249.38,227.32],[249.39,227.31],[249.39,227.31],[249.39,227.31],[249.39,227.31],[249.39,227.31],[249.4,227.3],[249.4,227.29],[249.41,227.29],[249.41,227.28],[249.41,227.28],[249.42,227.28],[249.42,227.28],[249.42,227.27],[249.42,227.27],[249.43,227.27],[249.43,227.26],[249.44,227.25],[249.45,227.25],[249.45,227.25],[249.46,227.24],[249.46,227.23],[249.47,227.23],[249.47,227.23],[249.48,227.22],[249.48,227.22],[249.48,227.22],[249.48,227.22],[249.49,227.21],[249.49,227.21],[249.5,227.21],[249.5,227.2],[249.51,227.2],[249.51,227.2],[249.52,227.19],[249.52,227.19],[249.53,227.19],[249.53,227.18],[249.54,227.18],[249.54,227.17],[249.55,227.17],[249.56,227.17],[249.56,227.16],[249.57,227.15],[249.58,227.15],[249.59,227.14],[249.6,227.14],[249.6,227.13],[249.61,227.13],[249.61,227.13],[249.62,227.12],[249.62,227.12],[249.62,227.12],[249.63,227.12],[249.63,227.11],[249.63,227.11],[249.63,227.11],[249.64,227.11],[249.64,227.11],[249.64,227.1],[249.64,227.1],[249.64,227.1],[249.65,227.09],[249.65,227.09],[249.65,227.09],[249.65,227.08],[249.66,227.08],[249.66,227.07],[249.66,227.07],[249.67,227.06],[249.67,227.05],[249.68,227.04],[249.69,227.03],[249.7,227.02],[249.7,227.01],[249.7,227],[249.71,227],[249.71,226.99],[249.72,226.98],[249.72,226.98],[249.73,226.97],[249.73,226.96],[249.74,226.96],[249.74,226.95],[249.74,226.95],[249.74,226.94],[249.75,226.93],[249.75,226.93],[249.75,226.92],[249.76,226.92],[249.76,226.91],[249.77,226.9],[249.77,226.9],[249.78,226.89],[249.78,226.88],[249.78,226.88],[249.78,226.88],[249.78,226.88],[249.79,226.87],[249.79,226.87],[249.79,226.86],[249.8,226.86],[249.81,226.85],[249.82,226.84],[249.82,226.83],[249.83,226.83],[249.84,226.82],[249.84,226.82],[249.85,226.81],[249.85,226.81],[249.86,226.8],[249.87,226.79],[249.87,226.78],[249.88,226.78],[249.89,226.77],[249.89,226.77],[249.89,226.76],[249.9,226.76],[249.9,226.75],[249.9,226.75],[249.91,226.75],[249.91,226.74],[249.91,226.74],[249.92,226.73],[249.92,226.72],[249.92,226.72],[249.92,226.72],[249.92,226.72],[249.93,226.71],[249.93,226.71],[249.93,226.7],[249.93,226.7],[249.93,226.69],[249.93,226.69],[249.93,226.69],[249.93,226.68],[249.94,226.68],[249.94,226.67],[249.94,226.67],[249.94,226.66],[249.94,226.66],[249.94,226.65],[249.94,226.65],[249.94,226.65],[249.94,226.65],[249.94,226.64],[249.95,226.64],[249.95,226.64],[249.95,226.63],[249.96,226.62],[249.96,226.62],[249.96,226.61],[249.96,226.61],[249.96,226.6],[249.96,226.6],[249.97,226.6],[249.97,226.59],[249.97,226.59],[249.97,226.58],[249.98,226.58],[249.98,226.57],[249.98,226.57],[249.98,226.56],[249.99,226.56],[249.99,226.55],[249.99,226.55],[250,226.54],[250,226.53],[250,226.52],[250.01,226.52],[250.01,226.51],[250.01,226.51],[250.01,226.5],[250.02,226.5],[250.02,226.49],[250.02,226.49],[250.02,226.49],[250.03,226.48],[250.03,226.48],[250.04,226.46],[250.04,226.46],[250.05,226.45],[250.05,226.44],[250.06,226.43],[250.06,226.42],[250.06,226.42],[250.07,226.4],[250.08,226.39],[250.08,226.39],[250.08,226.39],[250.08,226.38],[250.08,226.38],[250.08,226.38],[250.08,226.37],[250.08,226.37],[250.08,226.37],[250.08,226.37],[250.08,226.36],[250.09,226.36],[250.09,226.36],[250.09,226.36],[250.09,226.36],[250.09,226.36],[250.09,226.35],[250.09,226.35],[250.09,226.35],[250.1,226.35],[250.1,226.35],[250.1,226.35],[250.1,226.35],[250.1,226.35],[250.1,226.35],[250.11,226.35],[250.11,226.34],[250.11,226.34],[250.11,226.34],[250.11,226.34],[250.11,226.34],[250.12,226.34],[250.12,226.34],[250.12,226.33],[250.12,226.33],[250.12,226.33],[250.12,226.33],[250.12,226.33],[250.13,226.32],[250.13,226.32],[250.13,226.32],[250.13,226.31],[250.13,226.31],[250.13,226.31],[250.13,226.31],[250.14,226.3],[250.14,226.29],[250.14,226.29],[250.14,226.28],[250.15,226.28],[250.15,226.27],[250.15,226.27],[250.15,226.26],[250.15,226.26],[250.16,226.26],[250.16,226.25],[250.16,226.25],[250.16,226.25],[250.16,226.24],[250.16,226.24],[250.16,226.24],[250.17,226.23],[250.17,226.23],[250.17,226.23],[250.17,226.23],[250.17,226.23],[250.17,226.22],[250.17,226.22],[250.17,226.22],[250.17,226.22],[250.17,226.22],[250.17,226.21],[250.17,226.21],[250.17,226.21],[250.17,226.2],[250.17,226.2],[250.17,226.2],[250.17,226.2],[250.17,226.2],[250.17,226.19],[250.17,226.19],[250.17,226.19],[250.17,226.19],[250.17,226.18],[250.17,226.18],[250.17,226.18],[250.17,226.18],[250.17,226.18],[250.17,226.17],[250.18,226.17],[250.18,226.17],[250.18,226.17],[250.18,226.16],[250.18,226.16],[250.18,226.16],[250.18,226.16],[250.19,226.16],[250.19,226.15],[250.19,226.15],[250.2,226.14],[250.2,226.14],[250.2,226.13],[250.21,226.13],[250.21,226.13],[250.21,226.12],[250.22,226.12],[250.22,226.12],[250.22,226.12],[250.22,226.11],[250.22,226.11],[250.22,226.11],[250.23,226.11],[250.23,226.11],[250.23,226.1],[250.23,226.1],[250.23,226.1],[250.23,226.1],[250.23,226.1],[250.23,226.1],[250.24,226.1],[250.24,226.1],[250.24,226.09],[250.24,226.09],[250.24,226.09],[250.25,226.09],[250.25,226.09],[250.25,226.09],[250.25,226.09],[250.25,226.08],[250.26,226.08],[250.26,226.08],[250.26,226.08],[250.26,226.08],[250.26,226.08],[250.26,226.07],[250.26,226.07],[250.26,226.07],[250.27,226.06],[250.27,226.06],[250.27,226.06],[250.27,226.06],[250.27,226.05],[250.27,226.05],[250.27,226.05],[250.28,226.04],[250.28,226.04],[250.29,226.03],[250.29,226.03],[250.29,226.03],[250.29,226.02],[250.3,226.02],[250.3,226.02],[250.3,226.02],[250.3,226.02],[250.3,226.02],[250.3,226.01],[250.3,226.01],[250.3,226.01],[250.3,226],[250.3,226],[250.31,226],[250.31,225.99],[250.31,225.99],[250.31,225.99],[250.31,225.98],[250.31,225.98],[250.31,225.98],[250.32,225.97],[250.32,225.97],[250.32,225.96],[250.32,225.96],[250.32,225.95],[250.32,225.95],[250.33,225.94],[250.33,225.94],[250.33,225.93],[250.33,225.92],[250.33,225.92],[250.34,225.92],[250.34,225.91],[250.34,225.91],[250.34,225.9],[250.34,225.9],[250.34,225.89],[250.35,225.89],[250.35,225.89],[250.35,225.89],[250.35,225.88],[250.35,225.88],[250.35,225.88],[250.35,225.87],[250.35,225.87],[250.35,225.87],[250.35,225.87],[250.35,225.86],[250.35,225.86],[250.36,225.86],[250.36,225.86],[250.36,225.86],[250.36,225.85],[250.36,225.85],[250.36,225.85],[250.37,225.85],[250.37,225.85],[250.37,225.84],[250.37,225.84],[250.37,225.84],[250.37,225.84],[250.38,225.84],[250.38,225.84],[250.38,225.83],[250.38,225.83],[250.39,225.83],[250.39,225.83],[250.39,225.83],[250.39,225.82],[250.39,225.82],[250.4,225.82],[250.4,225.82],[250.4,225.82],[250.4,225.81],[250.4,225.81],[250.4,225.81],[250.4,225.81],[250.41,225.8],[250.41,225.8],[250.41,225.8],[250.41,225.8],[250.41,225.79],[250.41,225.79],[250.41,225.79],[250.41,225.79],[250.41,225.78],[250.41,225.78],[250.41,225.78],[250.41,225.77],[250.41,225.77],[250.41,225.77],[250.41,225.77],[250.41,225.76],[250.42,225.76],[250.42,225.76],[250.42,225.76],[250.42,225.75],[250.42,225.75],[250.42,225.75],[250.42,225.75],[250.43,225.74],[250.43,225.74],[250.43,225.74],[250.43,225.74],[250.43,225.74],[250.43,225.73],[250.44,225.73],[250.44,225.73],[250.44,225.73],[250.44,225.73],[250.44,225.73],[250.45,225.72],[250.45,225.72],[250.46,225.72],[250.46,225.72],[250.46,225.72],[250.46,225.72],[250.46,225.71],[250.47,225.71],[250.47,225.71],[250.47,225.71],[250.48,225.7],[250.48,225.7],[250.49,225.7],[250.49,225.69],[250.49,225.69],[250.5,225.69],[250.5,225.69],[250.5,225.69],[250.5,225.69],[250.51,225.68],[250.51,225.68],[250.51,225.68],[250.52,225.68],[250.53,225.67],[250.54,225.67],[250.54,225.67],[250.55,225.66],[250.55,225.66],[250.56,225.66],[250.56,225.66],[250.56,225.65],[250.57,225.65],[250.57,225.65],[250.58,225.65],[250.58,225.64],[250.59,225.64],[250.59,225.64],[250.59,225.63],[250.6,225.63],[250.61,225.62],[250.61,225.62],[250.61,225.62],[250.61,225.62],[250.62,225.61],[250.62,225.61],[250.62,225.61],[250.62,225.61],[250.62,225.6],[250.63,225.6],[250.63,225.6],[250.63,225.6],[250.63,225.59],[250.63,225.59],[250.63,225.58],[250.64,225.58],[250.64,225.58],[250.64,225.57],[250.64,225.56],[250.64,225.56],[250.64,225.55],[250.64,225.55],[250.64,225.54],[250.64,225.54],[250.64,225.53],[250.64,225.53],[250.64,225.53],[250.64,225.52],[250.65,225.52],[250.65,225.52],[250.65,225.51],[250.65,225.51],[250.65,225.51],[250.65,225.5],[250.65,225.5],[250.65,225.5],[250.65,225.49],[250.65,225.49],[250.66,225.49],[250.66,225.49],[250.66,225.48],[250.66,225.48],[250.66,225.48],[250.66,225.48],[250.66,225.47],[250.67,225.47],[250.67,225.47],[250.67,225.47],[250.67,225.47],[250.67,225.46],[250.68,225.46],[250.68,225.46],[250.68,225.45],[250.68,225.45],[250.69,225.45],[250.69,225.45],[250.7,225.44],[250.7,225.44],[250.7,225.44],[250.71,225.44],[250.71,225.44],[250.71,225.44],[250.72,225.43],[250.72,225.43],[250.73,225.43],[250.73,225.43],[250.74,225.42],[250.74,225.42],[250.74,225.42],[250.74,225.42],[250.74,225.42],[250.75,225.42],[250.75,225.42],[250.75,225.41],[250.76,225.41],[250.76,225.41],[250.76,225.41],[250.77,225.4],[250.77,225.4],[250.77,225.39],[250.78,225.39],[250.78,225.39],[250.78,225.38],[250.78,225.38],[250.78,225.38],[250.78,225.38],[250.79,225.38],[250.79,225.37],[250.79,225.37],[250.79,225.37],[250.8,225.36],[250.8,225.36],[250.8,225.36],[250.8,225.36],[250.81,225.36],[250.81,225.35],[250.81,225.35],[250.81,225.35],[250.81,225.35],[250.82,225.35],[250.82,225.35],[250.82,225.35],[250.82,225.35],[250.83,225.35],[250.83,225.35],[250.83,225.35],[250.83,225.34],[250.84,225.34],[250.84,225.34],[250.84,225.34],[250.84,225.34],[250.85,225.34],[250.85,225.34],[250.86,225.34],[250.86,225.34],[250.87,225.34],[250.87,225.34],[250.88,225.34],[250.88,225.34],[250.88,225.34],[250.89,225.34],[250.89,225.34],[250.89,225.34],[250.9,225.34],[250.9,225.34],[250.9,225.34],[250.91,225.34],[250.91,225.33],[250.92,225.33],[250.94,225.32],[250.94,225.32],[250.95,225.32],[250.96,225.32],[250.96,225.31],[250.97,225.31],[250.97,225.31],[250.98,225.31],[250.98,225.3],[250.99,225.3],[251,225.3],[251,225.29],[251,225.29],[251.01,225.29],[251.01,225.29],[251.02,225.29],[251.02,225.28],[251.03,225.28],[251.04,225.28],[251.04,225.28],[251.04,225.27],[251.05,225.27],[251.05,225.27],[251.06,225.27],[251.06,225.26],[251.07,225.26],[251.07,225.26],[251.07,225.26],[251.08,225.26],[251.08,225.25],[251.09,225.25],[251.09,225.25],[251.1,225.25],[251.1,225.25],[251.1,225.24],[251.11,225.24],[251.11,225.24],[251.12,225.24],[251.12,225.24],[251.13,225.23],[251.13,225.23],[251.13,225.23],[251.14,225.22],[251.15,225.22],[251.15,225.22],[251.16,225.22],[251.16,225.21],[251.17,225.21],[251.17,225.21],[251.17,225.21],[251.17,225.21],[251.18,225.2],[251.18,225.2],[251.19,225.19],[251.19,225.19],[251.2,225.19],[251.2,225.18],[251.21,225.18],[251.22,225.17],[251.23,225.17],[251.23,225.16],[251.24,225.16],[251.24,225.16],[251.25,225.16],[251.25,225.15],[251.26,225.15],[251.26,225.14],[251.27,225.14],[251.27,225.14],[251.27,225.14],[251.28,225.13],[251.28,225.13],[251.28,225.13],[251.29,225.13],[251.29,225.12],[251.29,225.12],[251.3,225.12],[251.3,225.12],[251.3,225.11],[251.31,225.11],[251.31,225.11],[251.31,225.11],[251.32,225.11],[251.32,225.1],[251.32,225.1],[251.32,225.1],[251.33,225.1],[251.33,225.09],[251.34,225.09],[251.34,225.08],[251.34,225.08],[251.35,225.08],[251.35,225.07],[251.35,225.07],[251.36,225.06],[251.36,225.06],[251.36,225.06],[251.37,225.06],[251.37,225.06],[251.37,225.05],[251.37,225.05],[251.37,225.05],[251.37,225.05],[251.38,225.05],[251.38,225.05],[251.38,225.05],[251.39,225.04],[251.39,225.04],[251.39,225.04],[251.39,225.04],[251.4,225.04],[251.4,225.04],[251.4,225.04],[251.4,225.04],[251.4,225.04],[251.41,225.03],[251.41,225.03],[251.41,225.03],[251.41,225.03],[251.42,225.03],[251.42,225.03],[251.44,225.03],[251.45,225.03],[251.46,225.03],[251.47,225.03],[251.47,225.03],[251.48,225.03],[251.48,225.03],[251.49,225.03],[251.49,225.03],[251.49,225.03],[251.5,225.03],[251.5,225.03],[251.51,225.03],[251.51,225.03],[251.51,225.02],[251.52,225.02],[251.52,225.02],[251.52,225.02],[251.52,225.02],[251.53,225.02],[251.54,225.01],[251.55,225.01],[251.56,225.01],[251.56,225],[251.57,225],[251.57,225],[251.58,224.99],[251.59,224.99],[251.59,224.99],[251.6,224.98],[251.61,224.98],[251.61,224.98],[251.62,224.98],[251.63,224.97],[251.63,224.97],[251.64,224.97],[251.64,224.97],[251.64,224.96],[251.65,224.96],[251.65,224.96],[251.65,224.96],[251.66,224.96],[251.66,224.96],[251.67,224.96],[251.67,224.96],[251.68,224.95],[251.69,224.95],[251.7,224.95],[251.7,224.95],[251.71,224.95],[251.72,224.94],[251.72,224.94],[251.73,224.94],[251.73,224.94],[251.74,224.94],[251.74,224.94],[251.74,224.94],[251.74,224.94],[251.75,224.93],[251.75,224.93],[251.75,224.93],[251.75,224.93],[251.75,224.93],[251.76,224.93],[251.76,224.92],[251.76,224.92],[251.76,224.92],[251.76,224.92],[251.77,224.92],[251.77,224.91],[251.77,224.91],[251.77,224.91],[251.78,224.9],[251.78,224.9],[251.78,224.9],[251.78,224.89],[251.78,224.89],[251.78,224.89],[251.79,224.89],[251.79,224.89],[251.79,224.89],[251.79,224.88],[251.8,224.88],[251.8,224.88],[251.8,224.87],[251.81,224.87],[251.81,224.87],[251.82,224.86],[251.82,224.86],[251.82,224.86],[251.82,224.86],[251.82,224.86],[251.83,224.86],[251.83,224.85],[251.83,224.85],[251.83,224.85],[251.83,224.85],[251.84,224.85],[251.84,224.85],[251.84,224.85],[251.84,224.84],[251.84,224.84],[251.85,224.84],[251.85,224.84],[251.86,224.84],[251.86,224.83],[251.87,224.83],[251.87,224.83],[251.88,224.83],[251.88,224.82],[251.89,224.82],[251.89,224.82],[251.89,224.82],[251.89,224.82],[251.89,224.82],[251.89,224.82],[251.9,224.81],[251.9,224.81],[251.9,224.81],[251.9,224.81],[251.9,224.81],[251.9,224.8],[251.91,224.8],[251.91,224.79],[251.91,224.79],[251.92,224.79],[251.92,224.78],[251.92,224.78],[251.92,224.78],[251.93,224.77],[251.93,224.77],[251.93,224.77],[251.93,224.77],[251.93,224.77],[251.94,224.77],[251.94,224.76],[251.94,224.76],[251.95,224.76],[251.95,224.75],[251.95,224.75],[251.95,224.75],[251.95,224.75],[251.96,224.75],[251.96,224.74],[251.96,224.74],[251.97,224.74],[251.98,224.73],[251.98,224.73],[251.98,224.73],[251.99,224.72],[251.99,224.72],[251.99,224.72],[252,224.72],[252,224.72],[252,224.72],[252,224.71],[252.01,224.71],[252.01,224.71],[252.01,224.7],[252.01,224.7],[252.02,224.7],[252.02,224.7],[252.02,224.69],[252.03,224.69],[252.03,224.69],[252.03,224.68],[252.03,224.68],[252.03,224.68],[252.03,224.68],[252.03,224.68],[252.04,224.67],[252.04,224.67],[252.04,224.67],[252.04,224.66],[252.04,224.66],[252.04,224.66],[252.04,224.66],[252.04,224.65],[252.05,224.65],[252.05,224.64],[252.05,224.64],[252.05,224.64],[252.05,224.63],[252.05,224.63],[252.05,224.63],[252.05,224.63],[252.05,224.62],[252.05,224.62],[252.05,224.62],[252.05,224.61],[252.05,224.6],[252.05,224.6],[252.05,224.59],[252.05,224.58],[252.05,224.57],[252.05,224.57],[252.05,224.57],[252.05,224.56],[252.05,224.56],[252.05,224.56],[252.05,224.56],[252.05,224.56],[252.05,224.55],[252.05,224.55],[252.06,224.55],[252.06,224.55],[252.06,224.55],[252.06,224.54],[252.06,224.54],[252.06,224.54],[252.06,224.54],[252.07,224.54],[252.07,224.53],[252.07,224.53],[252.07,224.53],[252.07,224.53],[252.08,224.53],[252.08,224.52],[252.08,224.52],[252.08,224.52],[252.08,224.52],[252.08,224.52],[252.08,224.52],[252.09,224.51],[252.09,224.51],[252.09,224.51],[252.09,224.51],[252.09,224.5],[252.09,224.5],[252.1,224.5],[252.1,224.5],[252.1,224.5],[252.1,224.5],[252.1,224.5],[252.1,224.5],[252.11,224.49],[252.12,224.49],[252.13,224.48],[252.14,224.48],[252.15,224.47],[252.15,224.47],[252.16,224.47],[252.16,224.47],[252.17,224.46],[252.17,224.46],[252.19,224.45],[252.2,224.45],[252.2,224.45],[252.21,224.44],[252.21,224.44],[252.22,224.44],[252.22,224.43],[252.23,224.43],[252.24,224.43],[252.24,224.43],[252.24,224.43],[252.24,224.43],[252.24,224.42],[252.24,224.42],[252.25,224.42],[252.25,224.42],[252.25,224.42],[252.25,224.42],[252.26,224.42],[252.26,224.41],[252.26,224.41],[252.26,224.41],[252.26,224.41],[252.27,224.41],[252.27,224.41],[252.27,224.41],[252.28,224.41],[252.28,224.41],[252.28,224.41],[252.28,224.4],[252.29,224.4],[252.29,224.4],[252.29,224.4],[252.29,224.4],[252.3,224.4],[252.3,224.4],[252.3,224.39],[252.3,224.39],[252.3,224.39],[252.31,224.39],[252.31,224.39],[252.31,224.39],[252.31,224.38],[252.31,224.38],[252.31,224.38],[252.32,224.38],[252.32,224.37],[252.32,224.37],[252.32,224.37],[252.32,224.37],[252.32,224.37],[252.33,224.36],[252.33,224.36],[252.33,224.36],[252.33,224.36],[252.33,224.36],[252.33,224.36],[252.34,224.36],[252.34,224.36],[252.34,224.36],[252.34,224.36],[252.35,224.36],[252.35,224.36],[252.36,224.35],[252.36,224.35],[252.36,224.35],[252.36,224.35],[252.37,224.35],[252.37,224.35],[252.37,224.35],[252.38,224.35],[252.38,224.35],[252.38,224.34],[252.38,224.34],[252.38,224.34],[252.38,224.34],[252.38,224.34],[252.39,224.34],[252.39,224.33],[252.39,224.33],[252.39,224.33],[252.39,224.33],[252.4,224.33],[252.4,224.32],[252.41,224.32],[252.41,224.32],[252.44,224.3],[252.44,224.3],[252.45,224.3],[252.46,224.29],[252.46,224.29],[252.47,224.29],[252.47,224.28],[252.48,224.28],[252.48,224.28],[252.48,224.28],[252.49,224.27],[252.5,224.27],[252.51,224.26],[252.51,224.26],[252.52,224.26],[252.55,224.23],[252.57,224.23],[252.57,224.22],[252.58,224.22],[252.59,224.21],[252.59,224.21],[252.6,224.2],[252.61,224.2],[252.61,224.2],[252.62,224.19],[252.62,224.19],[252.62,224.19],[252.63,224.19],[252.63,224.18],[252.63,224.18],[252.63,224.18],[252.63,224.18],[252.63,224.18],[252.64,224.18],[252.64,224.17],[252.64,224.17],[252.64,224.17],[252.64,224.17],[252.65,224.16],[252.65,224.16],[252.65,224.15],[252.65,224.15],[252.66,224.15],[252.66,224.14],[252.66,224.14],[252.66,224.14],[252.66,224.14],[252.66,224.14],[252.66,224.14],[252.66,224.14],[252.66,224.13],[252.67,224.13],[252.67,224.13],[252.67,224.13],[252.67,224.13],[252.67,224.13],[252.67,224.13],[252.68,224.12],[252.68,224.12],[252.68,224.12],[252.68,224.12],[252.68,224.12],[252.69,224.12],[252.69,224.12],[252.69,224.11],[252.69,224.11],[252.7,224.11],[252.7,224.11],[252.71,224.11],[252.71,224.1],[252.72,224.1],[252.72,224.1],[252.73,224.1],[252.73,224.1],[252.73,224.09],[252.73,224.09],[252.74,224.09],[252.74,224.09],[252.74,224.09],[252.75,224.08],[252.75,224.08],[252.75,224.08],[252.75,224.08],[252.76,224.08],[252.76,224.08],[252.76,224.07],[252.76,224.07],[252.76,224.07],[252.77,224.07],[252.77,224.07],[252.77,224.06],[252.78,224.06],[252.78,224.06],[252.78,224.05],[252.78,224.05],[252.79,224.04],[252.79,224.04],[252.79,224.03],[252.8,224.03],[252.8,224.03],[252.8,224.02],[252.8,224.02],[252.81,224.02],[252.81,224.02],[252.81,224.01],[252.81,224.01],[252.81,224.01],[252.81,224],[252.82,224],[252.82,224],[252.82,223.99],[252.82,223.99],[252.82,223.98],[252.82,223.98],[252.82,223.98],[252.83,223.98],[252.83,223.98],[252.83,223.97],[252.83,223.97],[252.83,223.97],[252.83,223.97],[252.83,223.97],[252.83,223.96],[252.83,223.96],[252.84,223.96],[252.84,223.96],[252.84,223.96],[252.84,223.95],[252.84,223.95],[252.84,223.95],[252.84,223.95],[252.85,223.95],[252.85,223.94],[252.85,223.94],[252.85,223.94],[252.85,223.94],[252.86,223.94],[252.86,223.94],[252.86,223.93],[252.86,223.93],[252.86,223.93],[252.87,223.93],[252.87,223.93],[252.87,223.92],[252.87,223.92],[252.88,223.92],[252.88,223.92],[252.88,223.92],[252.88,223.92],[252.89,223.92],[252.89,223.91],[252.89,223.91],[252.89,223.91],[252.9,223.91],[252.9,223.91],[252.9,223.91],[252.91,223.91],[252.91,223.9],[252.91,223.9],[252.92,223.9],[252.92,223.9],[252.92,223.9],[252.93,223.9],[252.93,223.89],[252.93,223.89],[252.94,223.89],[252.94,223.89],[252.94,223.89],[252.95,223.88],[252.95,223.88],[252.95,223.88],[252.96,223.88],[252.96,223.87],[252.96,223.87],[252.97,223.87],[252.97,223.86],[252.98,223.86],[252.98,223.86],[252.98,223.85],[252.99,223.85],[253,223.85],[253,223.84],[253.01,223.84],[253.01,223.83],[253.02,223.83],[253.02,223.83],[253.02,223.82],[253.03,223.82],[253.03,223.82],[253.03,223.81],[253.04,223.81],[253.04,223.81],[253.04,223.81],[253.04,223.8],[253.05,223.8],[253.05,223.8],[253.05,223.8],[253.05,223.8],[253.06,223.79],[253.06,223.79],[253.06,223.78],[253.07,223.78],[253.07,223.77],[253.08,223.76],[253.09,223.76],[253.09,223.75],[253.1,223.74],[253.1,223.74],[253.11,223.73],[253.11,223.73],[253.12,223.72],[253.12,223.72],[253.12,223.71],[253.13,223.71],[253.13,223.71],[253.13,223.71],[253.13,223.7],[253.14,223.7],[253.14,223.7],[253.14,223.69],[253.14,223.69],[253.15,223.69],[253.15,223.69],[253.15,223.68],[253.16,223.68],[253.16,223.68],[253.18,223.66],[253.18,223.65],[253.19,223.64],[253.19,223.64],[253.19,223.63],[253.2,223.63],[253.2,223.63],[253.2,223.63],[253.2,223.62],[253.2,223.62],[253.2,223.62],[253.2,223.62],[253.21,223.62],[253.21,223.61],[253.21,223.61],[253.21,223.61],[253.21,223.61],[253.21,223.6],[253.21,223.6],[253.21,223.6],[253.21,223.59],[253.21,223.59],[253.21,223.59],[253.21,223.58],[253.21,223.58],[253.21,223.58],[253.21,223.58],[253.21,223.58],[253.22,223.57],[253.22,223.57],[253.22,223.57],[253.22,223.57],[253.22,223.56],[253.22,223.56],[253.22,223.56],[253.22,223.56],[253.22,223.56],[253.23,223.55],[253.23,223.55],[253.23,223.55],[253.23,223.55],[253.23,223.55],[253.23,223.55],[253.23,223.54],[253.24,223.54],[253.24,223.54],[253.24,223.54],[253.24,223.54],[253.25,223.53],[253.25,223.53],[253.26,223.52],[253.26,223.52],[253.26,223.52],[253.27,223.51],[253.27,223.51],[253.28,223.5],[253.29,223.5],[253.29,223.49],[253.3,223.49],[253.3,223.49],[253.3,223.48],[253.31,223.48],[253.32,223.47],[253.32,223.47],[253.33,223.46],[253.33,223.46],[253.34,223.45],[253.35,223.44],[253.36,223.43],[253.37,223.43],[253.37,223.42],[253.37,223.42],[253.38,223.42],[253.38,223.41],[253.39,223.41],[253.39,223.4],[253.4,223.4],[253.4,223.39],[253.41,223.39],[253.41,223.39],[253.42,223.38],[253.42,223.38],[253.43,223.38],[253.43,223.37],[253.43,223.37],[253.44,223.37],[253.44,223.36],[253.45,223.36],[253.45,223.36],[253.45,223.35],[253.46,223.35],[253.46,223.35],[253.47,223.34],[253.47,223.34],[253.48,223.34],[253.48,223.33],[253.49,223.33],[253.49,223.33],[253.5,223.32],[253.5,223.32],[253.5,223.32],[253.51,223.32],[253.51,223.31],[253.52,223.3],[253.52,223.3],[253.54,223.29],[253.54,223.29],[253.54,223.29],[253.54,223.29],[253.55,223.28],[253.55,223.28],[253.55,223.28],[253.56,223.27],[253.56,223.27],[253.56,223.27],[253.56,223.27],[253.56,223.27],[253.57,223.26],[253.57,223.26],[253.57,223.25],[253.57,223.25],[253.58,223.25],[253.58,223.25],[253.58,223.24],[253.58,223.24],[253.58,223.24],[253.59,223.24],[253.59,223.24],[253.59,223.23],[253.59,223.23],[253.6,223.23],[253.6,223.23],[253.6,223.23],[253.61,223.22],[253.61,223.22],[253.61,223.22],[253.61,223.22],[253.62,223.22],[253.62,223.22],[253.62,223.22],[253.62,223.22],[253.63,223.22],[253.63,223.21],[253.64,223.21],[253.64,223.21],[253.64,223.21],[253.64,223.21],[253.65,223.21],[253.65,223.21],[253.66,223.21],[253.66,223.21],[253.66,223.21],[253.67,223.21],[253.67,223.21],[253.67,223.21],[253.68,223.21],[253.68,223.2],[253.69,223.2],[253.69,223.2],[253.7,223.2],[253.7,223.19],[253.71,223.19],[253.72,223.19],[253.73,223.18],[253.74,223.18],[253.75,223.17],[253.76,223.17],[253.76,223.17],[253.77,223.17],[253.77,223.17],[253.77,223.16],[253.78,223.16],[253.78,223.16],[253.79,223.16],[253.79,223.16],[253.79,223.16],[253.8,223.16],[253.8,223.16],[253.81,223.16],[253.81,223.16],[253.81,223.16],[253.82,223.16],[253.82,223.16],[253.82,223.15],[253.83,223.15],[253.83,223.15],[253.83,223.15],[253.84,223.15],[253.84,223.15],[253.84,223.15],[253.84,223.15],[253.84,223.15],[253.85,223.15],[253.85,223.14],[253.85,223.14],[253.85,223.14],[253.86,223.14],[253.86,223.14],[253.86,223.13],[253.86,223.13],[253.86,223.13],[253.87,223.13],[253.87,223.13],[253.87,223.13],[253.87,223.12],[253.87,223.12],[253.88,223.12],[253.88,223.12],[253.88,223.12],[253.88,223.12],[253.89,223.12],[253.89,223.12],[253.89,223.11],[253.9,223.11],[253.9,223.11],[253.91,223.11],[253.91,223.11],[253.92,223.11],[253.93,223.1],[253.93,223.1],[253.94,223.1],[253.94,223.1],[253.95,223.1],[253.95,223.1],[253.96,223.1],[253.96,223.09],[253.96,223.09],[253.97,223.09],[253.97,223.09],[253.98,223.09],[253.98,223.09],[253.98,223.09],[253.98,223.08],[253.99,223.08],[253.99,223.08],[254,223.07],[254.01,223.07],[254.02,223.06],[254.03,223.06],[254.03,223.06],[254.04,223.05],[254.04,223.05],[254.05,223.04],[254.06,223.03],[254.07,223.03],[254.08,223.02],[254.08,223.02],[254.09,223.02],[254.09,223.01],[254.1,223.01],[254.12,222.99],[254.13,222.99],[254.13,222.99],[254.14,222.98],[254.14,222.98],[254.15,222.98],[254.15,222.97],[254.16,222.97],[254.17,222.96],[254.18,222.96],[254.18,222.95],[254.19,222.95],[254.19,222.94],[254.2,222.94],[254.2,222.93],[254.2,222.93],[254.2,222.93],[254.21,222.93],[254.21,222.93],[254.21,222.93],[254.21,222.93],[254.21,222.93],[254.21,222.93],[254.22,222.93],[254.22,222.93],[254.22,222.93],[254.22,222.93],[254.23,222.92],[254.23,222.92],[254.23,222.92],[254.23,222.92],[254.23,222.92],[254.24,222.92],[254.24,222.92],[254.24,222.92],[254.24,222.92],[254.24,222.92],[254.24,222.92],[254.24,222.92],[254.24,222.92],[254.25,222.91],[254.25,222.91],[254.25,222.91],[254.25,222.91],[254.25,222.91],[254.25,222.91],[254.25,222.91],[254.25,222.9],[254.25,222.9],[254.25,222.9],[254.25,222.9],[254.25,222.89],[254.25,222.89],[254.26,222.89],[254.26,222.89],[254.26,222.89],[254.26,222.89],[254.26,222.89],[254.26,222.88],[254.26,222.88],[254.26,222.88],[254.26,222.88],[254.27,222.88],[254.27,222.88],[254.27,222.88],[254.27,222.87],[254.27,222.87],[254.27,222.87],[254.28,222.87],[254.28,222.87],[254.28,222.87],[254.28,222.87],[254.28,222.87],[254.29,222.87],[254.29,222.87],[254.29,222.87],[254.29,222.87],[254.29,222.87],[254.3,222.87],[254.3,222.87],[254.3,222.87],[254.3,222.87],[254.3,222.87],[254.3,222.87],[254.31,222.87],[254.31,222.87],[254.31,222.88],[254.32,222.88],[254.32,222.88],[254.32,222.88],[254.33,222.88],[254.33,222.88],[254.34,222.88],[254.34,222.89],[254.35,222.89],[254.35,222.89],[254.36,222.89],[254.37,222.89],[254.37,222.89],[254.38,222.89],[254.38,222.89],[254.39,222.89],[254.39,222.89],[254.4,222.89],[254.41,222.9],[254.41,222.9],[254.42,222.9],[254.42,222.9],[254.43,222.9],[254.43,222.9],[254.44,222.9],[254.44,222.9],[254.45,222.9],[254.45,222.9],[254.46,222.9],[254.47,222.9],[254.47,222.9],[254.48,222.91],[254.48,222.91],[254.49,222.91],[254.49,222.91],[254.5,222.91],[254.51,222.91],[254.51,222.91],[254.52,222.91],[254.54,222.92],[254.54,222.92],[254.55,222.92],[254.56,222.92],[254.57,222.92],[254.57,222.92],[254.57,222.92],[254.58,222.92],[254.59,222.92],[254.6,222.92],[254.6,222.92],[254.61,222.92],[254.61,222.92],[254.62,222.92],[254.63,222.92],[254.63,222.92],[254.64,222.92],[254.64,222.92],[254.65,222.92],[254.65,222.92],[254.66,222.92],[254.67,222.92],[254.68,222.92],[254.68,222.92],[254.7,222.91],[254.71,222.91],[254.72,222.91],[254.73,222.91],[254.73,222.9],[254.73,222.9],[254.74,222.9],[254.75,222.9],[254.75,222.9],[254.76,222.9],[254.77,222.89],[254.77,222.89],[254.78,222.89],[254.78,222.89],[254.79,222.89],[254.79,222.89],[254.8,222.89],[254.81,222.89],[254.81,222.88],[254.82,222.88],[254.83,222.88],[254.83,222.88],[254.84,222.88],[254.85,222.88],[254.85,222.87],[254.86,222.87],[254.86,222.87],[254.87,222.87],[254.87,222.87],[254.88,222.87],[254.88,222.86],[254.89,222.86],[254.9,222.86],[254.9,222.86],[254.9,222.85],[254.9,222.85],[254.9,222.85],[254.91,222.85],[254.91,222.85],[254.91,222.85],[254.92,222.84],[254.92,222.84],[254.92,222.84],[254.92,222.83],[254.92,222.83],[254.92,222.83],[254.93,222.83],[254.93,222.83],[254.93,222.83],[254.93,222.83],[254.93,222.83],[254.94,222.83],[254.94,222.83],[254.94,222.83],[254.95,222.83],[254.95,222.83],[254.95,222.83],[254.96,222.83],[254.96,222.83],[254.96,222.83],[254.96,222.83],[254.97,222.82],[254.97,222.82],[254.97,222.82],[254.98,222.82],[254.98,222.82],[254.98,222.81],[254.98,222.81],[254.98,222.81],[254.99,222.81],[254.99,222.81],[254.99,222.8],[254.99,222.8],[255,222.79],[255,222.79],[255,222.78],[255,222.78],[255,222.78],[255.01,222.78],[255.01,222.78],[255.01,222.77],[255.01,222.77],[255.01,222.77],[255.02,222.77],[255.02,222.77],[255.02,222.76],[255.02,222.76],[255.02,222.76],[255.03,222.76],[255.03,222.76],[255.03,222.76],[255.03,222.76],[255.04,222.76],[255.04,222.76],[255.04,222.76],[255.04,222.75],[255.05,222.75],[255.05,222.75],[255.06,222.75],[255.06,222.75],[255.06,222.75],[255.07,222.75],[255.07,222.75],[255.07,222.75],[255.08,222.75],[255.08,222.75],[255.09,222.75],[255.09,222.75],[255.09,222.75],[255.1,222.75],[255.1,222.75],[255.1,222.75],[255.11,222.75],[255.12,222.75],[255.13,222.75],[255.13,222.76],[255.14,222.76],[255.14,222.76],[255.14,222.76],[255.14,222.76],[255.14,222.76],[255.15,222.76],[255.15,222.76],[255.15,222.76],[255.16,222.76],[255.16,222.76],[255.16,222.76],[255.16,222.76],[255.16,222.76],[255.17,222.76],[255.17,222.76],[255.17,222.76],[255.18,222.75],[255.18,222.75],[255.18,222.75],[255.18,222.75],[255.18,222.75],[255.19,222.75],[255.19,222.75],[255.2,222.74],[255.2,222.74],[255.21,222.74],[255.21,222.73],[255.21,222.73],[255.22,222.73],[255.22,222.73],[255.22,222.73],[255.23,222.73],[255.23,222.72],[255.23,222.72],[255.23,222.72],[255.24,222.72],[255.24,222.72],[255.25,222.72],[255.25,222.72],[255.25,222.72],[255.26,222.72],[255.26,222.72],[255.27,222.72],[255.27,222.72],[255.28,222.72],[255.28,222.72],[255.29,222.72],[255.29,222.72],[255.3,222.72],[255.3,222.71],[255.31,222.71],[255.31,222.71],[255.32,222.71],[255.32,222.71],[255.32,222.71],[255.32,222.71],[255.33,222.71],[255.33,222.71],[255.33,222.71],[255.34,222.71],[255.34,222.71],[255.35,222.71],[255.35,222.7],[255.36,222.7],[255.36,222.7],[255.36,222.7],[255.36,222.7],[255.36,222.7],[255.37,222.7],[255.37,222.69],[255.38,222.69],[255.38,222.69],[255.39,222.68],[255.39,222.68],[255.4,222.68],[255.4,222.68],[255.41,222.67],[255.42,222.67],[255.42,222.67],[255.42,222.67],[255.42,222.67],[255.43,222.66],[255.43,222.66],[255.44,222.66],[255.44,222.66],[255.44,222.66],[255.45,222.66],[255.45,222.65],[255.45,222.65],[255.46,222.65],[255.46,222.65],[255.46,222.64],[255.47,222.64],[255.47,222.64],[255.47,222.63],[255.47,222.63],[255.48,222.63],[255.48,222.62],[255.48,222.62],[255.48,222.62],[255.49,222.62],[255.49,222.61],[255.49,222.61],[255.49,222.61],[255.49,222.61],[255.49,222.6],[255.49,222.6],[255.5,222.6],[255.5,222.59],[255.5,222.59],[255.5,222.59],[255.5,222.58],[255.5,222.58],[255.5,222.58],[255.5,222.57],[255.5,222.56],[255.5,222.55],[255.5,222.55],[255.5,222.55],[255.51,222.55],[255.51,222.54],[255.51,222.54],[255.51,222.54],[255.51,222.54],[255.51,222.53],[255.51,222.53],[255.51,222.53],[255.51,222.53],[255.51,222.53],[255.51,222.52],[255.52,222.52],[255.52,222.52],[255.52,222.51],[255.53,222.51],[255.53,222.51],[255.53,222.51],[255.53,222.5],[255.54,222.5],[255.54,222.5],[255.54,222.49],[255.55,222.49],[255.55,222.49],[255.55,222.49],[255.55,222.48],[255.56,222.48],[255.56,222.48],[255.56,222.47],[255.56,222.47],[255.57,222.47],[255.57,222.46],[255.57,222.46],[255.57,222.46],[255.57,222.45],[255.57,222.45],[255.57,222.45],[255.58,222.44],[255.58,222.44],[255.58,222.44],[255.58,222.44],[255.58,222.43],[255.58,222.43],[255.58,222.43],[255.58,222.42],[255.58,222.42],[255.58,222.41],[255.58,222.41],[255.58,222.4],[255.58,222.4],[255.59,222.4],[255.59,222.39],[255.59,222.39],[255.59,222.39],[255.59,222.39],[255.59,222.38],[255.59,222.38],[255.59,222.38],[255.59,222.37],[255.6,222.37],[255.6,222.36],[255.6,222.36],[255.61,222.36],[255.61,222.35],[255.61,222.35],[255.61,222.35],[255.61,222.35],[255.61,222.34],[255.62,222.34],[255.62,222.34],[255.62,222.33],[255.62,222.33],[255.62,222.33],[255.62,222.33],[255.62,222.33],[255.62,222.32],[255.62,222.32],[255.62,222.32],[255.62,222.31],[255.62,222.31],[255.62,222.3],[255.62,222.3],[255.62,222.3],[255.62,222.3],[255.62,222.3],[255.62,222.29],[255.62,222.29],[255.62,222.29],[255.63,222.28],[255.63,222.28],[255.63,222.28],[255.63,222.28],[255.63,222.28],[255.63,222.27],[255.63,222.27],[255.63,222.27],[255.64,222.27],[255.64,222.27],[255.64,222.26],[255.64,222.26],[255.65,222.26],[255.65,222.26],[255.65,222.25],[255.65,222.25],[255.66,222.25],[255.66,222.25],[255.66,222.25],[255.67,222.24],[255.67,222.24],[255.68,222.24],[255.68,222.24],[255.68,222.24],[255.68,222.23],[255.69,222.23],[255.69,222.23],[255.69,222.23],[255.69,222.22],[255.7,222.22],[255.7,222.22],[255.7,222.21],[255.7,222.21],[255.71,222.21],[255.71,222.2],[255.71,222.2],[255.72,222.2],[255.72,222.19],[255.72,222.19],[255.72,222.19],[255.73,222.18],[255.73,222.18],[255.73,222.18],[255.74,222.18],[255.74,222.18],[255.74,222.17],[255.74,222.17],[255.75,222.17],[255.75,222.16],[255.76,222.16],[255.76,222.16],[255.76,222.16],[255.77,222.16],[255.77,222.16],[255.77,222.16],[255.78,222.15],[255.78,222.15],[255.78,222.15],[255.79,222.15],[255.79,222.15],[255.79,222.15],[255.79,222.15],[255.8,222.15],[255.8,222.15],[255.81,222.15],[255.81,222.15],[255.82,222.15],[255.82,222.15],[255.82,222.15],[255.83,222.14],[255.83,222.14],[255.83,222.14],[255.84,222.14],[255.84,222.14],[255.84,222.14],[255.84,222.14],[255.85,222.14],[255.85,222.14],[255.85,222.13],[255.86,222.13],[255.86,222.13],[255.86,222.13],[255.86,222.13],[255.86,222.12],[255.87,222.12],[255.87,222.12],[255.87,222.11],[255.88,222.11],[255.88,222.11],[255.88,222.11],[255.88,222.1],[255.89,222.1],[255.89,222.1],[255.89,222.1],[255.9,222.09],[255.9,222.09],[255.91,222.08],[255.92,222.08],[255.93,222.07],[255.93,222.07],[255.93,222.07],[255.94,222.07],[255.94,222.06],[255.95,222.06],[255.95,222.06],[255.96,222.05],[255.96,222.05],[255.96,222.05],[255.96,222.05],[255.97,222.04],[255.97,222.04],[255.97,222.03],[255.97,222.03],[255.98,222.03],[255.98,222.02],[255.98,222.02],[255.98,222.02],[255.98,222.01],[255.99,222.01],[255.99,222.01],[255.99,222.01],[255.99,222.01],[255.99,222],[256,222],[256,222],[256,222],[256.01,222],[256.01,222],[256.01,221.99],[256.01,221.99],[256.02,221.99],[256.02,221.99],[256.02,221.99],[256.03,221.99],[256.03,221.99],[256.04,221.99],[256.04,221.99],[256.04,221.99],[256.05,221.98],[256.05,221.98],[256.05,221.98],[256.05,221.98],[256.06,221.98],[256.06,221.98],[256.06,221.98],[256.07,221.97],[256.07,221.97],[256.07,221.97],[256.07,221.97],[256.08,221.97],[256.08,221.96],[256.08,221.96],[256.08,221.96],[256.08,221.96],[256.08,221.95],[256.09,221.95],[256.09,221.95],[256.09,221.94],[256.09,221.94],[256.09,221.94],[256.09,221.94],[256.09,221.93],[256.09,221.93],[256.09,221.93],[256.09,221.92],[256.1,221.92],[256.1,221.91],[256.1,221.91],[256.1,221.91],[256.1,221.91],[256.1,221.9],[256.1,221.9],[256.1,221.9],[256.1,221.9],[256.11,221.89],[256.11,221.89],[256.11,221.89],[256.11,221.89],[256.11,221.89],[256.11,221.88],[256.12,221.88],[256.12,221.88],[256.13,221.87],[256.13,221.87],[256.13,221.86],[256.14,221.86],[256.14,221.86],[256.14,221.85],[256.15,221.85],[256.15,221.84],[256.16,221.84],[256.16,221.83],[256.16,221.83],[256.17,221.83],[256.17,221.83],[256.17,221.83],[256.17,221.83],[256.17,221.82],[256.17,221.82],[256.18,221.82],[256.18,221.82],[256.18,221.82],[256.19,221.82],[256.19,221.81],[256.2,221.81],[256.2,221.81],[256.2,221.81],[256.2,221.81],[256.21,221.81],[256.21,221.8],[256.21,221.8],[256.21,221.8],[256.22,221.79],[256.22,221.79],[256.22,221.79],[256.23,221.79],[256.23,221.79],[256.23,221.78],[256.23,221.78],[256.24,221.78],[256.24,221.78],[256.24,221.78],[256.25,221.78],[256.25,221.78],[256.26,221.78],[256.26,221.78],[256.26,221.78],[256.26,221.78],[256.27,221.78],[256.27,221.78],[256.28,221.78],[256.28,221.78],[256.29,221.78],[256.29,221.78],[256.29,221.78],[256.3,221.78],[256.3,221.77],[256.3,221.77],[256.31,221.77],[256.31,221.77],[256.31,221.77],[256.32,221.77],[256.32,221.77],[256.32,221.76],[256.33,221.76],[256.33,221.76],[256.34,221.75],[256.34,221.75],[256.34,221.75],[256.35,221.74],[256.35,221.74],[256.35,221.74],[256.35,221.73],[256.36,221.73],[256.36,221.73],[256.36,221.72],[256.36,221.72],[256.37,221.72],[256.37,221.71],[256.37,221.71],[256.37,221.71],[256.37,221.7],[256.37,221.7],[256.37,221.69],[256.38,221.69],[256.38,221.69],[256.38,221.68],[256.38,221.68],[256.38,221.68],[256.38,221.67],[256.38,221.67],[256.38,221.67],[256.38,221.66],[256.38,221.66],[256.39,221.66],[256.39,221.66],[256.39,221.66],[256.39,221.65],[256.39,221.65],[256.39,221.65],[256.4,221.64],[256.4,221.64],[256.4,221.64],[256.4,221.63],[256.41,221.63],[256.41,221.63],[256.41,221.63],[256.42,221.62],[256.42,221.62],[256.42,221.62],[256.42,221.62],[256.43,221.62],[256.43,221.61],[256.43,221.61],[256.44,221.61],[256.44,221.61],[256.44,221.61],[256.44,221.61],[256.45,221.6],[256.45,221.6],[256.45,221.6],[256.46,221.6],[256.46,221.59],[256.46,221.59],[256.47,221.59],[256.47,221.59],[256.47,221.58],[256.47,221.58],[256.47,221.58],[256.48,221.58],[256.48,221.58],[256.48,221.58],[256.48,221.58],[256.48,221.57],[256.49,221.57],[256.49,221.57],[256.49,221.57],[256.5,221.57],[256.5,221.57],[256.5,221.57],[256.5,221.57],[256.51,221.57],[256.51,221.57],[256.52,221.57],[256.52,221.57],[256.52,221.56],[256.53,221.56],[256.53,221.56],[256.53,221.56],[256.53,221.56],[256.54,221.56],[256.54,221.56],[256.55,221.55],[256.56,221.55],[256.56,221.55],[256.56,221.55],[256.57,221.55],[256.57,221.54],[256.58,221.54],[256.58,221.54],[256.58,221.54],[256.58,221.54],[256.59,221.54],[256.59,221.54],[256.59,221.54],[256.6,221.54],[256.6,221.54],[256.61,221.54],[256.62,221.54],[256.63,221.54],[256.63,221.54],[256.64,221.54],[256.64,221.54],[256.65,221.54],[256.65,221.54],[256.66,221.53],[256.66,221.53],[256.66,221.53],[256.67,221.53],[256.67,221.53],[256.68,221.53],[256.68,221.53],[256.69,221.53],[256.69,221.52],[256.7,221.52],[256.7,221.52],[256.71,221.52],[256.71,221.52],[256.72,221.52],[256.73,221.51],[256.73,221.51],[256.74,221.51],[256.74,221.5],[256.75,221.5],[256.75,221.5],[256.76,221.49],[256.76,221.49],[256.77,221.49],[256.78,221.48],[256.78,221.48],[256.79,221.48],[256.79,221.47],[256.8,221.47],[256.8,221.46],[256.81,221.46],[256.82,221.45],[256.82,221.45],[256.83,221.45],[256.83,221.44],[256.83,221.44],[256.83,221.44],[256.84,221.44],[256.84,221.44],[256.84,221.44],[256.85,221.43],[256.85,221.43],[256.85,221.43],[256.86,221.43],[256.87,221.43],[256.87,221.43],[256.88,221.43],[256.88,221.42],[256.88,221.42],[256.88,221.42],[256.89,221.42],[256.89,221.42],[256.89,221.42],[256.9,221.42],[256.9,221.42],[256.9,221.41],[256.9,221.41],[256.91,221.41],[256.91,221.41],[256.91,221.41],[256.91,221.41],[256.92,221.4],[256.92,221.4],[256.92,221.4],[256.92,221.4],[256.92,221.4],[256.93,221.39],[256.93,221.39],[256.93,221.39],[256.93,221.38],[256.94,221.38],[256.94,221.38],[256.94,221.37],[256.94,221.37],[256.95,221.37],[256.95,221.36],[256.95,221.36],[256.95,221.35],[256.95,221.35],[256.96,221.34],[256.96,221.34],[256.96,221.34],[256.96,221.33],[256.97,221.32],[256.97,221.31],[256.97,221.31],[256.97,221.31],[256.98,221.3],[256.98,221.3],[256.98,221.29],[256.98,221.29],[256.98,221.28],[256.99,221.28],[256.99,221.28],[256.99,221.27],[256.99,221.27],[256.99,221.27],[256.99,221.26],[257,221.26],[257,221.25],[257,221.25],[257,221.25],[257.01,221.24],[257.01,221.24],[257.01,221.23],[257.02,221.23],[257.02,221.22],[257.02,221.22],[257.02,221.22],[257.03,221.21],[257.03,221.21],[257.03,221.2],[257.04,221.2],[257.04,221.2],[257.04,221.19],[257.05,221.19],[257.05,221.19],[257.05,221.19],[257.05,221.18],[257.06,221.18],[257.06,221.18],[257.06,221.18],[257.07,221.18],[257.07,221.17],[257.07,221.17],[257.08,221.17],[257.08,221.17],[257.08,221.17],[257.08,221.17],[257.08,221.17],[257.09,221.17],[257.09,221.17],[257.1,221.17],[257.1,221.17],[257.1,221.16],[257.1,221.16],[257.11,221.16],[257.11,221.16],[257.11,221.16],[257.12,221.16],[257.12,221.16],[257.13,221.16],[257.13,221.16],[257.13,221.16],[257.13,221.16],[257.14,221.16],[257.14,221.16],[257.14,221.16],[257.15,221.16],[257.15,221.15],[257.15,221.15],[257.16,221.15],[257.16,221.15],[257.16,221.15],[257.16,221.14],[257.17,221.14],[257.17,221.14],[257.18,221.13],[257.18,221.13],[257.18,221.13],[257.18,221.12],[257.19,221.12],[257.19,221.12],[257.2,221.11],[257.2,221.11],[257.21,221.11],[257.21,221.11],[257.21,221.1],[257.22,221.1],[257.23,221.1],[257.23,221.09],[257.24,221.09],[257.25,221.09],[257.25,221.08],[257.25,221.08],[257.26,221.08],[257.26,221.08],[257.26,221.07],[257.27,221.07],[257.27,221.07],[257.28,221.06],[257.28,221.06],[257.28,221.05],[257.29,221.05],[257.29,221.05],[257.29,221.04],[257.3,221.04],[257.3,221.03],[257.3,221.03],[257.31,221.03],[257.31,221.02],[257.31,221.02],[257.31,221.01],[257.32,221.01],[257.32,221.01],[257.32,221],[257.32,221],[257.33,221],[257.33,221],[257.33,220.99],[257.33,220.99],[257.33,220.99],[257.34,220.99],[257.34,220.98],[257.34,220.98],[257.35,220.98],[257.35,220.98],[257.35,220.97],[257.35,220.97],[257.36,220.97],[257.36,220.96],[257.37,220.96],[257.37,220.96],[257.38,220.95],[257.38,220.95],[257.38,220.95],[257.39,220.95],[257.39,220.94],[257.39,220.94],[257.4,220.94],[257.4,220.93],[257.41,220.93],[257.41,220.92],[257.41,220.92],[257.42,220.92],[257.42,220.91],[257.42,220.91],[257.42,220.9],[257.43,220.9],[257.43,220.89],[257.43,220.89],[257.44,220.88],[257.44,220.88],[257.45,220.87],[257.45,220.86],[257.45,220.86],[257.45,220.86],[257.46,220.85],[257.46,220.85],[257.46,220.85],[257.46,220.84],[257.47,220.84],[257.47,220.84],[257.47,220.83],[257.48,220.83],[257.48,220.82],[257.48,220.82],[257.48,220.81],[257.49,220.81],[257.49,220.81],[257.5,220.8],[257.5,220.8],[257.5,220.79],[257.51,220.79],[257.51,220.79],[257.52,220.78],[257.52,220.78],[257.52,220.77],[257.53,220.77],[257.53,220.77],[257.54,220.77],[257.54,220.76],[257.55,220.76],[257.55,220.76],[257.55,220.75],[257.57,220.74],[257.57,220.74],[257.58,220.73],[257.59,220.73],[257.59,220.72],[257.6,220.72],[257.6,220.72],[257.61,220.71],[257.61,220.71],[257.61,220.71],[257.62,220.7],[257.62,220.7],[257.62,220.7],[257.62,220.7],[257.63,220.69],[257.63,220.69],[257.63,220.69],[257.63,220.68],[257.63,220.68],[257.64,220.68],[257.64,220.67],[257.64,220.67],[257.64,220.66],[257.65,220.66],[257.65,220.65],[257.65,220.65],[257.65,220.65],[257.65,220.65],[257.65,220.65],[257.65,220.65],[257.66,220.64],[257.66,220.64],[257.66,220.64],[257.66,220.64],[257.66,220.64],[257.66,220.63],[257.67,220.63],[257.67,220.63],[257.67,220.63],[257.67,220.63],[257.68,220.62],[257.68,220.62],[257.68,220.62],[257.68,220.62],[257.69,220.62],[257.69,220.62],[257.69,220.61],[257.69,220.61],[257.7,220.61],[257.7,220.61],[257.71,220.61],[257.72,220.6],[257.72,220.6],[257.73,220.6],[257.73,220.6],[257.73,220.59],[257.74,220.59],[257.74,220.59],[257.74,220.59],[257.75,220.58],[257.75,220.58],[257.75,220.58],[257.75,220.58],[257.76,220.57],[257.76,220.57],[257.76,220.57],[257.76,220.57],[257.77,220.56],[257.77,220.56],[257.77,220.56],[257.77,220.56],[257.78,220.55],[257.78,220.55],[257.78,220.54],[257.79,220.54],[257.79,220.54],[257.79,220.54],[257.79,220.53],[257.79,220.53],[257.8,220.53],[257.8,220.53],[257.8,220.53],[257.8,220.53],[257.8,220.52],[257.8,220.52],[257.81,220.52],[257.81,220.52],[257.81,220.52],[257.81,220.52],[257.81,220.52],[257.82,220.52],[257.82,220.52],[257.82,220.52],[257.83,220.51],[257.83,220.51],[257.84,220.51],[257.84,220.51],[257.85,220.51],[257.85,220.5],[257.86,220.5],[257.86,220.5],[257.86,220.5],[257.87,220.5],[257.88,220.49],[257.88,220.49],[257.89,220.48],[257.89,220.48],[257.9,220.48],[257.9,220.48],[257.9,220.48],[257.9,220.48],[257.91,220.48],[257.91,220.47],[257.91,220.47],[257.92,220.47],[257.92,220.47],[257.92,220.47],[257.93,220.47],[257.93,220.47],[257.93,220.47],[257.94,220.47],[257.94,220.47],[257.94,220.46],[257.95,220.46],[257.95,220.46],[257.95,220.46],[257.96,220.46],[257.96,220.46],[257.98,220.46],[257.98,220.46],[257.98,220.46],[257.99,220.46],[258,220.46],[258,220.46],[258,220.46],[258.01,220.46],[258.01,220.46],[258.01,220.46],[258.02,220.46],[258.02,220.45],[258.03,220.45],[258.04,220.45],[258.04,220.45],[258.04,220.45],[258.05,220.45],[258.05,220.45],[258.05,220.45],[258.05,220.45],[258.05,220.45],[258.06,220.45],[258.06,220.44],[258.06,220.44],[258.06,220.44],[258.07,220.44],[258.07,220.45],[258.07,220.45],[258.07,220.45],[258.08,220.45],[258.08,220.45],[258.08,220.45],[258.09,220.45],[258.09,220.45],[258.1,220.45],[258.1,220.45],[258.1,220.45],[258.11,220.45],[258.11,220.45],[258.11,220.46],[258.12,220.46],[258.12,220.46],[258.12,220.46],[258.13,220.46],[258.13,220.46],[258.14,220.46],[258.14,220.46],[258.14,220.45],[258.15,220.45],[258.15,220.45],[258.15,220.46],[258.16,220.46],[258.16,220.46],[258.16,220.46],[258.16,220.46],[258.17,220.46],[258.18,220.46],[258.18,220.46],[258.19,220.46],[258.19,220.47],[258.2,220.47],[258.2,220.47],[258.2,220.47],[258.21,220.47],[258.21,220.47],[258.21,220.47],[258.22,220.47],[258.22,220.47],[258.23,220.47],[258.23,220.47],[258.24,220.47],[258.24,220.47],[258.25,220.47],[258.25,220.47],[258.26,220.47],[258.26,220.47],[258.26,220.47],[258.27,220.47],[258.27,220.47],[258.27,220.47],[258.28,220.46],[258.28,220.46],[258.28,220.46],[258.28,220.46],[258.28,220.46],[258.29,220.46],[258.29,220.46],[258.29,220.45],[258.3,220.45],[258.3,220.45],[258.3,220.45],[258.3,220.44],[258.3,220.44],[258.31,220.44],[258.31,220.44],[258.31,220.43],[258.31,220.43],[258.31,220.43],[258.31,220.43],[258.31,220.42],[258.31,220.42],[258.31,220.41],[258.31,220.41],[258.31,220.41],[258.31,220.4],[258.31,220.4],[258.31,220.39],[258.31,220.39],[258.32,220.38],[258.32,220.38],[258.32,220.37],[258.32,220.36],[258.32,220.36],[258.32,220.36],[258.33,220.35],[258.33,220.35],[258.33,220.35],[258.33,220.35],[258.34,220.34],[258.34,220.34],[258.34,220.34],[258.35,220.34],[258.35,220.34],[258.36,220.34],[258.36,220.34],[258.37,220.34],[258.37,220.34],[258.37,220.34],[258.37,220.33],[258.39,220.32],[258.39,220.32],[258.4,220.31],[258.4,220.31],[258.4,220.3],[258.41,220.3],[258.41,220.3],[258.41,220.3],[258.41,220.3],[258.41,220.29],[258.42,220.29],[258.42,220.29],[258.42,220.29],[258.43,220.29],[258.43,220.29],[258.44,220.29],[258.44,220.29],[258.44,220.29],[258.45,220.29],[258.45,220.29],[258.46,220.29],[258.46,220.29],[258.46,220.28],[258.47,220.28],[258.47,220.28],[258.47,220.27],[258.47,220.27],[258.47,220.26],[258.48,220.26],[258.48,220.26],[258.48,220.25],[258.49,220.25],[258.49,220.25],[258.49,220.25],[258.49,220.25],[258.5,220.25],[258.5,220.25],[258.51,220.25],[258.51,220.25],[258.51,220.25],[258.52,220.25],[258.52,220.24],[258.53,220.24],[258.53,220.24],[258.54,220.24],[258.54,220.24],[258.55,220.24],[258.55,220.24],[258.56,220.24],[258.56,220.24],[258.56,220.23],[258.57,220.23],[258.57,220.23],[258.57,220.23],[258.57,220.23],[258.58,220.23],[258.58,220.22],[258.59,220.22],[258.59,220.22],[258.6,220.21],[258.6,220.21],[258.6,220.21],[258.61,220.21],[258.62,220.21],[258.62,220.21],[258.63,220.21],[258.63,220.21],[258.64,220.2],[258.64,220.2],[258.65,220.2],[258.65,220.2],[258.66,220.19],[258.66,220.19],[258.67,220.19],[258.67,220.19],[258.68,220.19],[258.68,220.19],[258.69,220.19],[258.69,220.18],[258.7,220.18],[258.7,220.18],[258.71,220.18],[258.71,220.18],[258.71,220.18],[258.72,220.18],[258.72,220.17],[258.72,220.17],[258.72,220.17],[258.73,220.17],[258.73,220.16],[258.73,220.16],[258.74,220.16],[258.74,220.16],[258.74,220.15],[258.74,220.15],[258.75,220.15],[258.75,220.14],[258.75,220.14],[258.75,220.13],[258.75,220.13],[258.75,220.12],[258.75,220.11],[258.76,220.11],[258.76,220.1],[258.76,220.1],[258.76,220.1],[258.77,220.09],[258.77,220.09],[258.77,220.08],[258.78,220.08],[258.78,220.08],[258.79,220.08],[258.79,220.07],[258.8,220.07],[258.8,220.07],[258.81,220.06],[258.81,220.06],[258.82,220.06],[258.82,220.05],[258.83,220.05],[258.84,220.05],[258.84,220.04],[258.85,220.03],[258.85,220.03],[258.86,220.03],[258.86,220.02],[258.87,220.02],[258.87,220.01],[258.88,220.01],[258.89,220],[258.9,220],[258.9,219.99],[258.91,219.98],[258.92,219.98],[258.93,219.97],[258.94,219.97],[258.95,219.96],[258.96,219.96],[258.96,219.95],[258.97,219.95],[258.98,219.94],[258.99,219.93],[259,219.92],[259.01,219.92],[259.02,219.91],[259.03,219.91],[259.03,219.9],[259.04,219.89],[259.05,219.89],[259.06,219.88],[259.07,219.87],[259.07,219.87],[259.07,219.87],[259.08,219.87],[259.08,219.86],[259.09,219.86],[259.09,219.86],[259.09,219.86],[259.1,219.85],[259.1,219.85],[259.1,219.85],[259.11,219.85],[259.11,219.85],[259.11,219.85],[259.12,219.85],[259.12,219.84],[259.12,219.84],[259.13,219.84],[259.13,219.84],[259.14,219.84],[259.14,219.84],[259.15,219.84],[259.16,219.83],[259.16,219.83],[259.17,219.83],[259.18,219.83],[259.19,219.83],[259.2,219.83],[259.21,219.83],[259.21,219.83],[259.22,219.83],[259.23,219.83],[259.24,219.83],[259.25,219.83],[259.25,219.83],[259.26,219.83],[259.26,219.83],[259.28,219.83],[259.29,219.83],[259.3,219.83],[259.31,219.83],[259.31,219.83],[259.32,219.83],[259.33,219.83],[259.34,219.83],[259.35,219.83],[259.35,219.83],[259.36,219.83],[259.37,219.83],[259.37,219.83],[259.38,219.84],[259.38,219.84],[259.39,219.84],[259.4,219.84],[259.4,219.84],[259.41,219.84],[259.41,219.84],[259.42,219.84],[259.42,219.84],[259.43,219.83],[259.43,219.83],[259.43,219.83],[259.44,219.83],[259.44,219.83],[259.45,219.83],[259.45,219.83],[259.46,219.83],[259.46,219.83],[259.47,219.82],[259.48,219.82],[259.48,219.82],[259.49,219.82],[259.5,219.82],[259.5,219.81],[259.51,219.81],[259.51,219.81],[259.51,219.81],[259.52,219.81],[259.53,219.81],[259.54,219.8],[259.55,219.8],[259.56,219.8],[259.57,219.8],[259.58,219.81],[259.6,219.81],[259.6,219.81],[259.61,219.81],[259.61,219.81],[259.62,219.81],[259.63,219.81],[259.64,219.81],[259.64,219.81],[259.65,219.81],[259.66,219.8],[259.66,219.8],[259.67,219.79],[259.67,219.79],[259.68,219.78],[259.68,219.77],[259.69,219.76],[259.69,219.75],[259.69,219.75],[259.69,219.74],[259.69,219.73],[259.69,219.73],[259.69,219.72],[259.69,219.69],[259.69,219.68],[259.69,219.68],[259.69,219.68],[259.68,219.66],[259.68,219.65],[259.68,219.64],[259.68,219.64],[259.67,219.63],[259.67,219.63],[259.67,219.63],[259.67,219.62],[259.67,219.62],[259.67,219.62],[259.67,219.61],[259.67,219.6],[259.67,219.6],[259.67,219.59],[259.67,219.59],[259.68,219.58],[259.68,219.57],[259.68,219.57],[259.69,219.55],[259.7,219.54],[259.72,219.54],[259.73,219.53],[259.74,219.52],[259.79,219.5],[259.8,219.5],[259.82,219.49],[259.85,219.48],[259.86,219.47],[259.86,219.47],[259.87,219.46],[259.88,219.46],[259.88,219.46],[259.89,219.45],[259.9,219.44],[259.91,219.44],[259.92,219.43],[259.93,219.42],[259.93,219.41],[259.94,219.41],[259.94,219.39],[259.94,219.39],[259.94,219.38],[259.94,219.37],[259.95,219.37],[259.95,219.36],[259.94,219.34],[259.94,219.34],[259.94,219.31],[259.94,219.3],[259.94,219.27],[259.94,219.26],[259.94,219.24],[259.94,219.23],[259.94,219.22],[259.94,219.21],[259.94,219.18],[259.94,219.16],[259.95,219.15],[259.95,219.13],[259.96,219.12],[259.96,219.11],[259.96,219.1],[259.97,219.1],[259.98,219.09],[259.99,219.08],[260,219.07],[260.01,219.06],[260.02,219.05],[260.03,219.05],[260.04,219.04],[260.06,219.03],[260.07,219.03],[260.08,219.02],[260.09,219.01],[260.09,219],[260.1,219],[260.11,218.99],[260.11,218.99],[260.13,218.98],[260.16,218.96],[260.22,218.92],[260.25,218.9],[260.26,218.89],[260.28,218.88],[260.29,218.87],[260.3,218.87],[260.31,218.86],[260.32,218.85],[260.33,218.84],[260.33,218.83],[260.34,218.82],[260.34,218.81],[260.34,218.8],[260.35,218.79],[260.35,218.78],[260.35,218.77],[260.35,218.76],[260.35,218.75],[260.35,218.75],[260.35,218.74],[260.35,218.73],[260.36,218.73],[260.37,218.71],[260.37,218.7],[260.37,218.7],[260.37,218.69],[260.37,218.69],[260.37,218.68],[260.37,218.68],[260.38,218.67],[260.38,218.67],[260.38,218.67],[260.38,218.66],[260.39,218.65],[260.39,218.64],[260.4,218.64],[260.41,218.62],[260.41,218.62],[260.42,218.61],[260.43,218.6],[260.44,218.59],[260.45,218.59],[260.46,218.58],[260.47,218.57],[260.49,218.57],[260.5,218.56],[260.51,218.55],[260.52,218.55],[260.52,218.54],[260.54,218.51],[260.55,218.51],[260.55,218.5],[260.55,218.5],[260.56,218.49],[260.57,218.49],[260.57,218.48],[260.58,218.48],[260.58,218.48],[260.59,218.47],[260.6,218.47],[260.61,218.47],[260.62,218.46],[260.63,218.46],[260.64,218.47],[260.65,218.47],[260.66,218.47],[260.66,218.47],[260.67,218.47],[260.67,218.47],[260.67,218.47],[260.67,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.68,218.47],[260.67,218.47],[260.67,218.47],[260.67,218.47],[260.67,218.47],[260.67,218.46],[260.67,218.46],[260.67,218.46],[260.67,218.45],[260.67,218.45],[260.66,218.44],[260.66,218.44],[260.66,218.43],[260.66,218.43],[260.66,218.41],[260.65,218.41],[260.65,218.4],[260.65,218.4],[260.65,218.39],[260.65,218.39],[260.64,218.38],[260.64,218.38],[260.64,218.37],[260.64,218.37],[260.63,218.36],[260.63,218.36],[260.62,218.35],[260.62,218.34],[260.61,218.33],[260.6,218.32],[260.6,218.31],[260.59,218.3],[260.59,218.3],[260.59,218.3],[260.59,218.29],[260.59,218.29],[260.59,218.29],[260.59,218.28],[260.59,218.28],[260.59,218.28],[260.59,218.28],[260.59,218.28],[260.59,218.28],[260.59,218.27],[260.6,218.27],[260.6,218.27],[260.6,218.26],[260.6,218.26],[260.61,218.26],[260.61,218.26],[260.61,218.26],[260.61,218.25],[260.61,218.25],[260.62,218.25],[260.62,218.24],[260.62,218.24],[260.62,218.23],[260.63,218.23],[260.63,218.22],[260.63,218.22],[260.64,218.21],[260.64,218.21],[260.65,218.2],[260.66,218.2],[260.66,218.19],[260.67,218.19],[260.68,218.18],[260.68,218.18],[260.69,218.18],[260.69,218.18],[260.7,218.18],[260.71,218.18],[260.72,218.18],[260.75,218.17],[260.76,218.17],[260.78,218.17],[260.79,218.17],[260.8,218.17],[260.83,218.16],[260.85,218.15],[260.87,218.14],[260.9,218.13],[260.91,218.13],[260.92,218.12],[260.93,218.12],[260.94,218.12],[260.95,218.11],[260.96,218.11],[260.97,218.1],[260.98,218.1],[260.98,218.09],[260.99,218.09],[260.99,218.08],[261,218.08],[261,218.07],[261.01,218.06],[261.02,218.05],[261.02,218.04],[261.02,218.04],[261.03,218.01],[261.03,217.99],[261.04,217.98],[261.04,217.95],[261.05,217.93],[261.06,217.91],[261.07,217.89],[261.09,217.88],[261.12,217.86],[261.13,217.85],[261.14,217.84],[261.14,217.84],[261.15,217.83],[261.17,217.79],[261.32,217.61],[261.32,217.6],[261.33,217.6],[261.34,217.58],[261.35,217.57],[261.35,217.56],[261.36,217.53],[261.37,217.52],[261.38,217.5],[261.4,217.49],[261.42,217.47],[261.44,217.47],[261.45,217.46],[261.46,217.45],[261.47,217.43],[261.48,217.42],[261.49,217.41],[261.51,217.4],[261.52,217.4],[261.53,217.4],[261.54,217.4],[261.56,217.41],[261.57,217.41],[261.58,217.41],[261.58,217.41],[261.58,217.41],[261.59,217.4],[261.6,217.4],[261.6,217.4],[261.6,217.39],[261.61,217.39],[261.61,217.39],[261.62,217.38],[261.62,217.38],[261.62,217.37],[261.63,217.37],[261.63,217.36],[261.64,217.36],[261.64,217.36],[261.64,217.36],[261.65,217.35],[261.65,217.35],[261.65,217.35],[261.65,217.35],[261.65,217.35],[261.66,217.35],[261.67,217.34],[261.67,217.34],[261.67,217.34],[261.68,217.34],[261.68,217.34],[261.69,217.33],[261.69,217.33],[261.69,217.32],[261.7,217.32],[261.71,217.31],[261.71,217.31],[261.71,217.3],[261.72,217.3],[261.72,217.29],[261.72,217.29],[261.72,217.28],[261.72,217.28],[261.72,217.25],[261.72,217.25],[261.72,217.24],[261.72,217.24],[261.72,217.24],[261.72,217.23],[261.72,217.23],[261.72,217.23],[261.72,217.22],[261.73,217.22],[261.73,217.21],[261.74,217.2],[261.74,217.2],[261.75,217.19],[261.78,217.19],[261.78,217.19],[261.78,217.18],[261.79,217.18],[261.81,217.16],[261.83,217.13],[261.84,217.11],[261.89,217.07],[261.9,217.06],[261.9,217.05],[261.9,217.05],[261.91,217.05],[261.91,217.04],[261.91,217.03],[261.92,217.01],[261.93,217],[261.93,216.99],[261.94,216.98],[261.95,216.98],[261.96,216.98],[261.97,216.98],[261.97,216.97],[261.97,216.97],[261.98,216.97],[261.98,216.97],[261.98,216.97],[261.98,216.97],[261.99,216.96],[261.99,216.96],[261.99,216.96],[261.99,216.96],[262,216.96],[262,216.96],[262.02,216.95],[262.07,216.92],[262.07,216.92],[262.08,216.92],[262.08,216.91],[262.09,216.9],[262.09,216.9],[262.09,216.9],[262.09,216.9],[262.1,216.9],[262.1,216.9],[262.1,216.9],[262.1,216.89],[262.11,216.89],[262.11,216.89],[262.11,216.89],[262.11,216.89],[262.12,216.89],[262.12,216.89],[262.12,216.89],[262.12,216.89],[262.12,216.88],[262.12,216.88],[262.13,216.88],[262.13,216.87],[262.14,216.86],[262.14,216.86],[262.14,216.86],[262.14,216.86],[262.15,216.86],[262.15,216.85],[262.15,216.85],[262.15,216.85],[262.15,216.85],[262.15,216.84],[262.15,216.84],[262.15,216.84],[262.15,216.84],[262.15,216.83],[262.15,216.83],[262.15,216.83],[262.15,216.83],[262.15,216.82],[262.15,216.82],[262.15,216.82],[262.15,216.81],[262.15,216.81],[262.15,216.81],[262.15,216.8],[262.15,216.8],[262.15,216.8],[262.15,216.79],[262.15,216.78],[262.16,216.78],[262.16,216.77],[262.16,216.77],[262.16,216.77],[262.16,216.76],[262.16,216.76],[262.15,216.75],[262.15,216.75],[262.15,216.74],[262.15,216.74],[262.15,216.74],[262.15,216.73],[262.15,216.73],[262.15,216.73],[262.15,216.72],[262.15,216.72],[262.15,216.71],[262.15,216.7],[262.15,216.68],[262.18,216.63],[262.19,216.61],[262.19,216.61],[262.19,216.6],[262.19,216.59],[262.18,216.59],[262.18,216.58],[262.19,216.58],[262.19,216.57],[262.19,216.57],[262.19,216.56],[262.19,216.56],[262.19,216.56],[262.19,216.55],[262.19,216.55],[262.2,216.54],[262.2,216.54],[262.2,216.54],[262.2,216.54],[262.2,216.53],[262.2,216.53],[262.2,216.53],[262.2,216.53],[262.2,216.52],[262.21,216.52],[262.21,216.52],[262.21,216.51],[262.21,216.51],[262.2,216.51],[262.2,216.5],[262.2,216.49],[262.2,216.49],[262.2,216.48],[262.2,216.48],[262.2,216.47],[262.2,216.45],[262.19,216.42],[262.19,216.4],[262.19,216.39],[262.19,216.39],[262.18,216.38],[262.18,216.37],[262.18,216.37],[262.2,216.2],[262.21,216.19],[262.21,216.17],[262.2,216.16],[262.2,216.15],[262.2,216.14],[262.19,216.13],[262.19,216.12],[262.19,216.11],[262.19,216.11],[262.19,216.11],[262.18,216.11],[262.18,216.1],[262.18,216.1],[262.18,216.1],[262.18,216.09],[262.18,216.09],[262.18,216.09],[262.18,216.08],[262.18,216.08],[262.18,216.07],[262.18,216.07],[262.18,216.07],[262.18,216.07],[262.18,216.06],[262.18,216.06],[262.18,216.06],[262.17,216.05],[262.17,216.05],[262.17,216.05],[262.16,216.04],[262.16,216.04],[262.16,216.04],[262.15,216.04],[262.15,216.03],[262.15,216.03],[262.15,216.03],[262.15,216.03],[262.15,216.03],[262.15,216.02],[262.15,216.02],[262.15,216.02],[262.15,216.02],[262.15,216.01],[262.15,216.01],[262.15,216.01],[262.15,216.01],[262.15,216.01],[262.15,216.01],[262.15,216],[262.15,216],[262.15,216],[262.15,216],[262.15,216],[262.15,216],[262.16,215.99],[262.16,215.99],[262.16,215.99],[262.16,215.99],[262.16,215.98],[262.16,215.98],[262.16,215.98],[262.16,215.98],[262.16,215.98],[262.17,215.98],[262.17,215.97],[262.17,215.97],[262.17,215.97],[262.17,215.97],[262.18,215.97],[262.18,215.97],[262.18,215.97],[262.18,215.97],[262.18,215.97],[262.18,215.96],[262.18,215.96],[262.19,215.96],[262.19,215.96],[262.19,215.96],[262.19,215.96],[262.19,215.96],[262.19,215.95],[262.2,215.95],[262.2,215.95],[262.2,215.95],[262.2,215.95],[262.2,215.95],[262.2,215.95],[262.21,215.95],[262.21,215.95],[262.21,215.95],[262.21,215.95],[262.22,215.94],[262.22,215.94],[262.22,215.94],[262.22,215.94],[262.22,215.94],[262.22,215.94],[262.23,215.93],[262.23,215.93],[262.23,215.93],[262.23,215.93],[262.23,215.93],[262.23,215.93],[262.23,215.92],[262.23,215.92],[262.24,215.92],[262.24,215.92],[262.24,215.92],[262.24,215.92],[262.24,215.92],[262.25,215.92],[262.25,215.92],[262.25,215.92],[262.25,215.91],[262.25,215.91],[262.25,215.91],[262.25,215.91],[262.25,215.91],[262.25,215.91],[262.25,215.91],[262.25,215.91],[262.25,215.91],[262.25,215.9],[262.25,215.9],[262.25,215.9],[262.25,215.9],[262.25,215.9],[262.25,215.89],[262.25,215.89],[262.26,215.89],[262.26,215.89],[262.26,215.89],[262.26,215.89],[262.26,215.89],[262.26,215.88],[262.26,215.88],[262.26,215.88],[262.26,215.88],[262.26,215.88],[262.27,215.88],[262.27,215.88],[262.27,215.88],[262.27,215.88],[262.28,215.88],[262.28,215.88],[262.28,215.88],[262.28,215.87],[262.28,215.87],[262.29,215.87],[262.29,215.87],[262.29,215.87],[262.29,215.87],[262.29,215.87],[262.3,215.86],[262.3,215.86],[262.3,215.86],[262.3,215.86],[262.3,215.86],[262.3,215.85],[262.3,215.85],[262.3,215.85],[262.3,215.85],[262.3,215.85],[262.3,215.85],[262.31,215.84],[262.31,215.84],[262.31,215.84],[262.31,215.84],[262.31,215.84],[262.31,215.84],[262.32,215.83],[262.32,215.83],[262.32,215.83],[262.32,215.83],[262.32,215.83],[262.32,215.83],[262.32,215.83],[262.32,215.83],[262.33,215.82],[262.33,215.82],[262.33,215.82],[262.33,215.82],[262.33,215.82],[262.33,215.82],[262.33,215.82],[262.33,215.81],[262.33,215.81],[262.33,215.81],[262.33,215.81],[262.33,215.81],[262.33,215.81],[262.33,215.8],[262.33,215.8],[262.33,215.8],[262.33,215.8],[262.33,215.79],[262.33,215.79],[262.33,215.79],[262.33,215.78],[262.33,215.78],[262.33,215.78],[262.33,215.78],[262.33,215.77],[262.33,215.77],[262.33,215.77],[262.33,215.76],[262.33,215.76],[262.33,215.76],[262.33,215.75],[262.33,215.75],[262.33,215.75],[262.33,215.75],[262.33,215.75],[262.33,215.74],[262.33,215.74],[262.33,215.74],[262.33,215.74],[262.32,215.73],[262.32,215.73],[262.32,215.73],[262.32,215.73],[262.32,215.73],[262.32,215.73],[262.32,215.73],[262.32,215.72],[262.32,215.72],[262.32,215.72],[262.32,215.72],[262.32,215.72],[262.32,215.72],[262.32,215.72],[262.32,215.72],[262.32,215.71],[262.32,215.71],[262.32,215.71],[262.32,215.71],[262.32,215.71],[262.32,215.71],[262.32,215.71],[262.32,215.71],[262.33,215.7],[262.33,215.7],[262.33,215.7],[262.33,215.7],[262.33,215.7],[262.33,215.7],[262.33,215.7],[262.34,215.69],[262.34,215.69],[262.34,215.69],[262.34,215.69],[262.34,215.69],[262.35,215.69],[262.35,215.69],[262.35,215.68],[262.35,215.68],[262.35,215.68],[262.35,215.68],[262.35,215.68],[262.35,215.68],[262.35,215.68],[262.35,215.67],[262.35,215.67],[262.35,215.67],[262.35,215.67],[262.35,215.67],[262.35,215.66],[262.35,215.66],[262.35,215.66],[262.35,215.66],[262.35,215.66],[262.35,215.66],[262.35,215.65],[262.35,215.65],[262.35,215.65],[262.35,215.65],[262.35,215.65],[262.35,215.64],[262.36,215.64],[262.36,215.64],[262.36,215.64],[262.36,215.64],[262.37,215.63],[262.37,215.63],[262.37,215.63],[262.37,215.62],[262.37,215.62],[262.37,215.62],[262.38,215.62],[262.38,215.61],[262.38,215.61],[262.38,215.61],[262.38,215.61],[262.38,215.61],[262.38,215.6],[262.38,215.6],[262.38,215.6],[262.38,215.59],[262.39,215.59],[262.39,215.59],[262.39,215.59],[262.39,215.59],[262.39,215.58],[262.4,215.58],[262.4,215.58],[262.4,215.58],[262.4,215.57],[262.4,215.57],[262.4,215.57],[262.4,215.57],[262.4,215.57],[262.4,215.57],[262.4,215.57],[262.4,215.57],[262.4,215.56],[262.4,215.56],[262.4,215.56],[262.4,215.56],[262.4,215.55],[262.4,215.55],[262.4,215.55],[262.41,215.55],[262.41,215.55],[262.41,215.54],[262.41,215.54],[262.41,215.54],[262.41,215.54],[262.41,215.54],[262.41,215.54],[262.42,215.54],[262.42,215.53],[262.42,215.53],[262.42,215.53],[262.43,215.53],[262.43,215.53],[262.43,215.53],[262.44,215.52],[262.44,215.52],[262.44,215.52],[262.45,215.52],[262.45,215.52],[262.45,215.52],[262.45,215.51],[262.46,215.51],[262.46,215.51],[262.46,215.51],[262.46,215.51],[262.47,215.51],[262.47,215.5],[262.47,215.5],[262.47,215.5],[262.47,215.5],[262.47,215.5],[262.47,215.5],[262.48,215.5],[262.48,215.49],[262.48,215.49],[262.48,215.49],[262.48,215.49],[262.48,215.49],[262.49,215.48],[262.49,215.48],[262.49,215.48],[262.49,215.48],[262.49,215.48],[262.49,215.48],[262.5,215.48],[262.5,215.48],[262.5,215.47],[262.5,215.47],[262.5,215.47],[262.51,215.47],[262.51,215.47],[262.51,215.46],[262.51,215.46],[262.51,215.46],[262.51,215.46],[262.51,215.45],[262.51,215.45],[262.51,215.45],[262.51,215.45],[262.51,215.44],[262.51,215.44],[262.51,215.44],[262.51,215.44],[262.51,215.43],[262.51,215.43],[262.52,215.43],[262.52,215.43],[262.52,215.43],[262.52,215.42],[262.52,215.42],[262.52,215.42],[262.53,215.42],[262.53,215.42],[262.53,215.42],[262.53,215.41],[262.53,215.41],[262.53,215.41],[262.53,215.4],[262.54,215.4],[262.54,215.4],[262.54,215.4],[262.54,215.4],[262.54,215.4],[262.54,215.39],[262.54,215.39],[262.54,215.39],[262.55,215.38],[262.55,215.38],[262.55,215.38],[262.55,215.37],[262.55,215.37],[262.55,215.37],[262.56,215.37],[262.56,215.37],[262.56,215.36],[262.56,215.36],[262.57,215.35],[262.57,215.35],[262.57,215.35],[262.57,215.35],[262.58,215.34],[262.58,215.34],[262.58,215.34],[262.58,215.33],[262.58,215.33],[262.59,215.33],[262.59,215.33],[262.59,215.32],[262.59,215.32],[262.59,215.32],[262.59,215.32],[262.59,215.31],[262.6,215.31],[262.6,215.31],[262.6,215.31],[262.6,215.31],[262.6,215.31],[262.6,215.31],[262.6,215.31],[262.61,215.31],[262.61,215.31],[262.61,215.31],[262.61,215.31],[262.61,215.31],[262.62,215.31],[262.62,215.31],[262.62,215.31],[262.62,215.31],[262.62,215.31],[262.62,215.31],[262.63,215.31],[262.63,215.31],[262.63,215.31],[262.63,215.31],[262.64,215.31],[262.64,215.31],[262.64,215.31],[262.64,215.31],[262.64,215.31],[262.64,215.31],[262.65,215.31],[262.65,215.31],[262.65,215.31],[262.65,215.32],[262.66,215.32],[262.66,215.32],[262.66,215.32],[262.66,215.32],[262.66,215.32],[262.67,215.32],[262.67,215.32],[262.67,215.32],[262.67,215.32],[262.69,215.32],[262.71,215.32],[262.71,215.32],[262.71,215.32],[262.72,215.32],[262.72,215.32],[262.73,215.32],[262.73,215.32],[262.73,215.32],[262.74,215.32],[262.75,215.32],[262.75,215.32],[262.75,215.32],[262.75,215.32],[262.76,215.32],[262.76,215.32],[262.76,215.32],[262.76,215.32],[262.76,215.32],[262.76,215.32],[262.77,215.32],[262.77,215.32],[262.77,215.32],[262.77,215.32],[262.77,215.32],[262.78,215.32],[262.78,215.32],[262.78,215.32],[262.78,215.32],[262.78,215.32],[262.79,215.32],[262.79,215.32],[262.79,215.33],[262.79,215.33],[262.8,215.33],[262.8,215.33],[262.8,215.33],[262.8,215.33],[262.8,215.33],[262.81,215.33],[262.81,215.33],[262.81,215.34],[262.82,215.34],[262.82,215.34],[262.82,215.34],[262.82,215.34],[262.83,215.34],[262.83,215.35],[262.83,215.35],[262.83,215.35],[262.83,215.35],[262.83,215.35],[262.84,215.35],[262.84,215.35],[262.84,215.35],[262.84,215.36],[262.84,215.36],[262.84,215.36],[262.84,215.36],[262.84,215.36],[262.84,215.36],[262.85,215.36],[262.85,215.36],[262.85,215.37],[262.85,215.37],[262.85,215.37],[262.85,215.37],[262.85,215.37],[262.85,215.37],[262.85,215.37],[262.85,215.38],[262.85,215.38],[262.86,215.38],[262.86,215.38],[262.86,215.38],[262.86,215.38],[262.86,215.39],[262.86,215.39],[262.86,215.39],[262.86,215.39],[262.86,215.39],[262.86,215.39],[262.86,215.4],[262.86,215.4],[262.86,215.4],[262.86,215.4],[262.86,215.4],[262.86,215.41],[262.86,215.41],[262.86,215.41],[262.87,215.41],[262.87,215.41],[262.87,215.41],[262.87,215.42],[262.87,215.42],[262.87,215.42],[262.87,215.42],[262.87,215.42],[262.87,215.42],[262.88,215.42],[262.88,215.42],[262.88,215.43],[262.88,215.43],[262.88,215.43],[262.88,215.43],[262.88,215.43],[262.89,215.43],[262.89,215.43],[262.89,215.44],[262.89,215.44],[262.89,215.44],[262.9,215.44],[262.9,215.44],[262.9,215.44],[262.9,215.44],[262.9,215.45],[262.91,215.45],[262.91,215.45],[262.91,215.45],[262.91,215.45],[262.91,215.45],[262.91,215.46],[262.91,215.46],[262.92,215.46],[262.92,215.46],[262.92,215.46],[262.92,215.46],[262.92,215.46],[262.92,215.46],[262.92,215.46],[262.93,215.47],[262.93,215.47],[262.93,215.47],[262.93,215.47],[262.93,215.47],[262.93,215.47],[262.94,215.47],[262.94,215.47],[262.94,215.47],[262.94,215.48],[262.94,215.48],[262.94,215.48],[262.94,215.48],[262.95,215.48],[262.95,215.48],[262.95,215.49],[262.95,215.49],[262.95,215.49],[262.95,215.49],[262.95,215.49],[262.95,215.49],[262.95,215.5],[262.96,215.5],[262.96,215.5],[262.96,215.5],[262.96,215.5],[262.96,215.5],[262.96,215.5],[262.96,215.5],[262.96,215.5],[262.96,215.5],[262.97,215.5],[262.97,215.51],[262.97,215.51],[262.97,215.51],[262.97,215.51],[262.98,215.51],[262.98,215.51],[262.98,215.51],[262.98,215.51],[262.98,215.51],[262.99,215.51],[262.99,215.51],[262.99,215.51],[263,215.52],[263,215.51],[263,215.51],[263,215.51],[263.01,215.51],[263.01,215.51],[263.01,215.51],[263.01,215.51],[263.01,215.51],[263.02,215.51],[263.02,215.51],[263.02,215.5],[263.02,215.5],[263.02,215.5],[263.03,215.5],[263.03,215.5],[263.03,215.49],[263.04,215.49],[263.04,215.49],[263.04,215.49],[263.04,215.49],[263.04,215.49],[263.05,215.49],[263.05,215.48],[263.05,215.48],[263.05,215.48],[263.05,215.48],[263.05,215.48],[263.06,215.48],[263.06,215.48],[263.06,215.48],[263.06,215.48],[263.06,215.48],[263.06,215.48],[263.06,215.48],[263.07,215.47],[263.07,215.47],[263.07,215.47],[263.07,215.47],[263.07,215.47],[263.07,215.47],[263.08,215.46],[263.08,215.46],[263.08,215.46],[263.08,215.46],[263.08,215.46],[263.08,215.46],[263.08,215.46],[263.08,215.46],[263.08,215.46],[263.08,215.45],[263.08,215.45],[263.08,215.45],[263.08,215.45],[263.09,215.45],[263.09,215.45],[263.09,215.45],[263.09,215.45],[263.09,215.44],[263.09,215.44],[263.09,215.44],[263.09,215.44],[263.09,215.44],[263.09,215.44],[263.09,215.44],[263.09,215.44],[263.09,215.44],[263.1,215.43],[263.1,215.43],[263.1,215.43],[263.1,215.43],[263.1,215.43],[263.1,215.43],[263.1,215.43],[263.1,215.43],[263.1,215.43],[263.11,215.43],[263.11,215.43],[263.11,215.43],[263.11,215.42],[263.11,215.42],[263.11,215.42],[263.11,215.42],[263.11,215.42],[263.11,215.42],[263.12,215.42],[263.12,215.42],[263.12,215.42],[263.12,215.42],[263.12,215.42],[263.12,215.42],[263.13,215.42],[263.13,215.42],[263.13,215.42],[263.13,215.42],[263.13,215.42],[263.13,215.42],[263.14,215.42],[263.14,215.42],[263.14,215.42],[263.14,215.42],[263.14,215.42],[263.14,215.42],[263.14,215.42],[263.14,215.42],[263.15,215.42],[263.15,215.42],[263.15,215.42],[263.15,215.42],[263.15,215.42],[263.15,215.42],[263.15,215.42],[263.15,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.16,215.41],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.4],[263.17,215.39],[263.17,215.39],[263.17,215.39],[263.17,215.39],[263.17,215.39],[263.17,215.39],[263.17,215.39],[263.17,215.39],[263.17,215.38],[263.17,215.38],[263.17,215.38],[263.17,215.38],[263.17,215.38],[263.17,215.38],[263.17,215.38],[263.18,215.38],[263.18,215.38],[263.18,215.37],[263.18,215.37],[263.18,215.37],[263.18,215.37],[263.18,215.37],[263.19,215.37],[263.19,215.37],[263.19,215.37],[263.19,215.37],[263.19,215.37],[263.19,215.37],[263.19,215.37],[263.19,215.37],[263.19,215.37],[263.2,215.37],[263.2,215.37],[263.2,215.37],[263.2,215.37],[263.2,215.37],[263.21,215.37],[263.21,215.37],[263.21,215.37],[263.21,215.37],[263.21,215.37],[263.21,215.37],[263.22,215.37],[263.22,215.37],[263.22,215.37],[263.22,215.37],[263.22,215.37],[263.23,215.37],[263.23,215.37],[263.23,215.37],[263.23,215.37],[263.23,215.37],[263.23,215.37],[263.24,215.37],[263.24,215.37],[263.24,215.37],[263.24,215.36],[263.24,215.36],[263.24,215.36],[263.25,215.36],[263.25,215.36],[263.25,215.36],[263.25,215.36],[263.25,215.36],[263.25,215.36],[263.25,215.36],[263.26,215.36],[263.26,215.35],[263.26,215.35],[263.26,215.35],[263.26,215.35],[263.26,215.35],[263.27,215.34],[263.27,215.34],[263.27,215.34],[263.28,215.33],[263.28,215.33],[263.28,215.33],[263.28,215.33],[263.28,215.33],[263.29,215.32],[263.29,215.32],[263.29,215.32],[263.29,215.32],[263.3,215.32],[263.3,215.32],[263.3,215.32],[263.31,215.32],[263.31,215.32],[263.31,215.32],[263.31,215.31],[263.32,215.31],[263.32,215.31],[263.32,215.31],[263.32,215.31],[263.33,215.31],[263.33,215.31],[263.33,215.31],[263.34,215.31],[263.34,215.31],[263.34,215.31],[263.34,215.31],[263.35,215.31],[263.35,215.31],[263.36,215.31],[263.36,215.31],[263.36,215.31],[263.36,215.31],[263.37,215.31],[263.37,215.31],[263.37,215.31],[263.37,215.31],[263.38,215.31],[263.38,215.32],[263.38,215.32],[263.38,215.32],[263.38,215.32],[263.39,215.32],[263.39,215.32],[263.39,215.33],[263.39,215.33],[263.4,215.33],[263.4,215.33],[263.4,215.33],[263.4,215.33],[263.4,215.33],[263.41,215.34],[263.41,215.34],[263.42,215.34],[263.43,215.35],[263.44,215.35],[263.45,215.35],[263.45,215.35],[263.46,215.35],[263.46,215.34],[263.47,215.34],[263.47,215.34],[263.47,215.34],[263.48,215.34],[263.48,215.34],[263.49,215.34],[263.49,215.34],[263.5,215.34],[263.5,215.34],[263.5,215.34],[263.51,215.34],[263.51,215.34],[263.51,215.35],[263.52,215.35],[263.52,215.35],[263.52,215.35],[263.52,215.35],[263.53,215.34],[263.53,215.34],[263.53,215.34],[263.54,215.34],[263.54,215.34],[263.54,215.34],[263.54,215.34],[263.55,215.34],[263.55,215.34],[263.55,215.34],[263.55,215.34],[263.56,215.34],[263.56,215.34],[263.56,215.34],[263.56,215.34],[263.57,215.34],[263.57,215.34],[263.57,215.34],[263.57,215.34],[263.58,215.34],[263.58,215.34],[263.58,215.34],[263.58,215.34],[263.58,215.34],[263.59,215.34],[263.59,215.34],[263.59,215.34],[263.59,215.34],[263.59,215.34],[263.6,215.34],[263.6,215.34],[263.6,215.34],[263.6,215.34],[263.61,215.34],[263.61,215.34],[263.61,215.35],[263.61,215.35],[263.62,215.35],[263.62,215.35],[263.62,215.36],[263.62,215.36],[263.62,215.36],[263.63,215.36],[263.63,215.36],[263.63,215.36],[263.63,215.36],[263.64,215.36],[263.64,215.36],[263.64,215.37],[263.64,215.37],[263.64,215.37],[263.65,215.37],[263.65,215.37],[263.65,215.37],[263.65,215.37],[263.66,215.37],[263.66,215.37],[263.66,215.37],[263.66,215.37],[263.66,215.37],[263.67,215.37],[263.67,215.36],[263.67,215.36],[263.67,215.36],[263.67,215.36],[263.68,215.36],[263.68,215.36],[263.69,215.36],[263.69,215.36],[263.69,215.36],[263.69,215.36],[263.69,215.36],[263.7,215.36],[263.7,215.36],[263.7,215.35],[263.71,215.36],[263.71,215.36],[263.72,215.36],[263.73,215.36],[263.74,215.36],[263.74,215.36],[263.74,215.36],[263.74,215.36],[263.75,215.36],[263.75,215.36],[263.75,215.36],[263.76,215.36],[263.76,215.36],[263.76,215.36],[263.76,215.36],[263.77,215.36],[263.77,215.36],[263.77,215.36],[263.77,215.36],[263.78,215.36],[263.78,215.36],[263.78,215.35],[263.78,215.35],[263.78,215.35],[263.79,215.35],[263.79,215.35],[263.79,215.35],[263.79,215.34],[263.79,215.34],[263.8,215.34],[263.8,215.34],[263.8,215.33],[263.8,215.33],[263.81,215.33],[263.81,215.33],[263.81,215.33],[263.81,215.33],[263.81,215.33],[263.82,215.33],[263.82,215.33],[263.82,215.33],[263.82,215.33],[263.83,215.33],[263.83,215.33],[263.84,215.33],[263.84,215.33],[263.84,215.33],[263.85,215.33],[263.85,215.33],[263.86,215.33],[263.86,215.33],[263.86,215.33],[263.88,215.33],[263.9,215.34],[263.91,215.34],[263.91,215.34],[263.92,215.34],[263.92,215.34],[263.92,215.34],[263.93,215.34],[263.94,215.34],[263.94,215.34],[263.94,215.34],[263.94,215.34],[263.95,215.34],[263.95,215.34],[263.95,215.34],[263.95,215.34],[263.96,215.34],[263.96,215.34],[263.97,215.34],[263.97,215.34],[263.97,215.34],[263.98,215.34],[263.98,215.34],[263.98,215.34],[263.98,215.34],[263.99,215.34],[263.99,215.34],[263.99,215.34],[264,215.34],[264,215.34],[264.01,215.34],[264.02,215.33],[264.02,215.33],[264.03,215.33],[264.03,215.33],[264.03,215.33],[264.04,215.33],[264.04,215.33],[264.05,215.32],[264.05,215.32],[264.05,215.32],[264.06,215.32],[264.07,215.31],[264.07,215.31],[264.07,215.31],[264.08,215.31],[264.08,215.3],[264.09,215.3],[264.09,215.3],[264.09,215.3],[264.1,215.3],[264.1,215.3],[264.11,215.3],[264.11,215.3],[264.11,215.3],[264.12,215.3],[264.12,215.3],[264.12,215.3],[264.13,215.3],[264.13,215.3],[264.14,215.3],[264.14,215.29],[264.14,215.29],[264.15,215.29],[264.15,215.29],[264.16,215.29],[264.17,215.29],[264.17,215.29],[264.18,215.28],[264.18,215.28],[264.19,215.28],[264.19,215.27],[264.2,215.27],[264.2,215.27],[264.2,215.27],[264.21,215.27],[264.21,215.27],[264.22,215.27],[264.22,215.26],[264.23,215.26],[264.23,215.26],[264.24,215.26],[264.24,215.26],[264.24,215.26],[264.25,215.25],[264.25,215.25],[264.26,215.25],[264.26,215.24],[264.27,215.24],[264.27,215.24],[264.27,215.24],[264.27,215.24],[264.28,215.24],[264.28,215.24],[264.28,215.24],[264.29,215.24],[264.29,215.24],[264.29,215.24],[264.3,215.24],[264.3,215.24],[264.3,215.24],[264.31,215.24],[264.31,215.24],[264.31,215.24],[264.32,215.24],[264.32,215.24],[264.32,215.24],[264.32,215.24],[264.32,215.24],[264.33,215.24],[264.33,215.24],[264.33,215.24],[264.33,215.24],[264.33,215.24],[264.34,215.25],[264.34,215.25],[264.34,215.25],[264.34,215.25],[264.35,215.25],[264.35,215.25],[264.35,215.25],[264.35,215.25],[264.35,215.25],[264.36,215.25],[264.36,215.25],[264.36,215.25],[264.36,215.25],[264.36,215.25],[264.37,215.25],[264.37,215.25],[264.37,215.25],[264.37,215.25],[264.38,215.25],[264.38,215.25],[264.39,215.25],[264.39,215.25],[264.39,215.25],[264.39,215.25],[264.4,215.26],[264.4,215.26],[264.4,215.26],[264.4,215.26],[264.4,215.26],[264.4,215.26],[264.41,215.26],[264.41,215.26],[264.41,215.27],[264.41,215.27],[264.41,215.27],[264.41,215.27],[264.41,215.28],[264.41,215.29],[264.42,215.29],[264.42,215.3],[264.42,215.3],[264.42,215.31],[264.43,215.31],[264.43,215.31],[264.44,215.31],[264.44,215.32],[264.45,215.32],[264.45,215.32],[264.46,215.32],[264.46,215.32],[264.47,215.33],[264.47,215.33],[264.47,215.33],[264.48,215.33],[264.48,215.34],[264.49,215.35],[264.49,215.35],[264.49,215.35],[264.5,215.35],[264.5,215.35],[264.5,215.36],[264.52,215.36],[264.52,215.36],[264.53,215.37],[264.54,215.37],[264.55,215.38],[264.55,215.38],[264.56,215.38],[264.56,215.38],[264.56,215.38],[264.57,215.38],[264.58,215.39],[264.59,215.39],[264.59,215.39],[264.6,215.39],[264.61,215.39],[264.61,215.39],[264.62,215.38],[264.63,215.38],[264.63,215.38],[264.64,215.38],[264.64,215.38],[264.65,215.38],[264.66,215.37],[264.66,215.37],[264.66,215.37],[264.66,215.37],[264.67,215.37],[264.67,215.36],[264.68,215.36],[264.68,215.36],[264.69,215.36],[264.69,215.36],[264.69,215.36],[264.7,215.36],[264.7,215.36],[264.71,215.36],[264.72,215.36],[264.72,215.36],[264.73,215.36],[264.74,215.36],[264.75,215.37],[264.75,215.37],[264.76,215.37],[264.77,215.37],[264.77,215.37],[264.78,215.38],[264.78,215.38],[264.79,215.38],[264.8,215.38],[264.81,215.38],[264.81,215.38],[264.81,215.38],[264.82,215.38],[264.82,215.37],[264.82,215.37],[264.83,215.37],[264.83,215.37],[264.84,215.36],[264.84,215.36],[264.84,215.36],[264.84,215.35],[264.84,215.35],[264.85,215.35],[264.85,215.34],[264.85,215.34],[264.85,215.34],[264.86,215.33],[264.86,215.33],[264.86,215.33],[264.86,215.33],[264.86,215.32],[264.86,215.32],[264.86,215.32],[264.87,215.32],[264.87,215.32],[264.87,215.31],[264.87,215.31],[264.88,215.31],[264.88,215.31],[264.88,215.31],[264.89,215.3],[264.89,215.3],[264.89,215.3],[264.9,215.3],[264.9,215.3],[264.91,215.3],[264.91,215.29],[264.92,215.29],[264.92,215.29],[264.92,215.29],[264.93,215.29],[264.93,215.29],[264.93,215.29],[264.94,215.29],[264.95,215.29],[264.95,215.29],[264.96,215.28],[264.96,215.28],[264.97,215.28],[264.97,215.28],[264.98,215.29],[264.98,215.29],[264.99,215.29],[264.99,215.29],[265,215.29],[265,215.29],[265.01,215.29],[265.01,215.29],[265.02,215.29],[265.02,215.3],[265.03,215.3],[265.03,215.3],[265.03,215.3],[265.04,215.31],[265.04,215.31],[265.04,215.31],[265.05,215.31],[265.05,215.32],[265.06,215.32],[265.06,215.32],[265.06,215.32],[265.07,215.33],[265.08,215.33],[265.08,215.33],[265.08,215.33],[265.09,215.33],[265.1,215.33],[265.1,215.33],[265.11,215.33],[265.12,215.33],[265.12,215.32],[265.13,215.32],[265.13,215.32],[265.14,215.32],[265.14,215.31],[265.15,215.31],[265.15,215.31],[265.16,215.3],[265.16,215.3],[265.17,215.29],[265.17,215.28],[265.17,215.28],[265.18,215.28],[265.18,215.27],[265.18,215.26],[265.18,215.26],[265.18,215.25],[265.18,215.25],[265.18,215.24],[265.18,215.24],[265.18,215.23],[265.18,215.23],[265.18,215.23],[265.18,215.22],[265.18,215.22],[265.19,215.21],[265.19,215.21],[265.19,215.21],[265.19,215.2],[265.2,215.19],[265.2,215.19],[265.2,215.18],[265.21,215.18],[265.21,215.18],[265.21,215.17],[265.21,215.17],[265.21,215.17],[265.22,215.17],[265.22,215.17],[265.22,215.17],[265.22,215.16],[265.23,215.16],[265.23,215.16],[265.24,215.16],[265.24,215.16],[265.24,215.16],[265.25,215.16],[265.25,215.15],[265.25,215.15],[265.25,215.15],[265.25,215.15],[265.26,215.15],[265.26,215.15],[265.26,215.14],[265.26,215.14],[265.27,215.14],[265.27,215.14],[265.27,215.14],[265.28,215.14],[265.28,215.14],[265.28,215.14],[265.28,215.14],[265.29,215.14],[265.29,215.14],[265.29,215.14],[265.29,215.14],[265.3,215.14],[265.3,215.14],[265.3,215.14],[265.3,215.14],[265.3,215.14],[265.31,215.14],[265.31,215.14],[265.31,215.14],[265.31,215.14],[265.31,215.14],[265.31,215.14],[265.32,215.14],[265.32,215.14],[265.32,215.14],[265.32,215.14],[265.33,215.14],[265.33,215.14],[265.33,215.13],[265.33,215.13],[265.33,215.13],[265.33,215.13],[265.33,215.13],[265.34,215.13],[265.34,215.12],[265.34,215.12],[265.34,215.12],[265.34,215.12],[265.34,215.11],[265.34,215.11],[265.34,215.11],[265.34,215.11],[265.34,215.11],[265.35,215.1],[265.35,215.1],[265.35,215.1],[265.35,215.1],[265.35,215.09],[265.36,215.09],[265.36,215.09],[265.36,215.09],[265.36,215.09],[265.36,215.09],[265.37,215.08],[265.37,215.08],[265.37,215.08],[265.37,215.08],[265.38,215.08],[265.38,215.08],[265.38,215.08],[265.39,215.08],[265.39,215.08],[265.39,215.08],[265.4,215.08],[265.4,215.08],[265.4,215.08],[265.41,215.08],[265.41,215.08],[265.41,215.07],[265.41,215.07],[265.42,215.07],[265.42,215.07],[265.42,215.07],[265.42,215.07],[265.43,215.07],[265.43,215.07],[265.43,215.07],[265.43,215.07],[265.44,215.07],[265.44,215.07],[265.44,215.07],[265.44,215.07],[265.44,215.07],[265.44,215.07],[265.45,215.07],[265.45,215.07],[265.45,215.07],[265.45,215.07],[265.45,215.07],[265.45,215.07],[265.45,215.07],[265.46,215.07],[265.46,215.07],[265.46,215.07],[265.46,215.07],[265.46,215.07],[265.46,215.07],[265.46,215.07],[265.46,215.07],[265.46,215.07],[265.47,215.07],[265.47,215.07],[265.47,215.07],[265.47,215.06],[265.47,215.06],[265.47,215.06],[265.47,215.06],[265.48,215.06],[265.48,215.06],[265.48,215.06],[265.48,215.06],[265.48,215.06],[265.48,215.06],[265.49,215.06],[265.49,215.06],[265.49,215.06],[265.49,215.06],[265.49,215.06],[265.49,215.06],[265.49,215.06],[265.5,215.06],[265.5,215.06],[265.5,215.06],[265.5,215.06],[265.5,215.06],[265.5,215.06],[265.5,215.06],[265.51,215.06],[265.51,215.06],[265.51,215.06],[265.51,215.06],[265.51,215.06],[265.51,215.06],[265.51,215.06],[265.52,215.06],[265.52,215.06],[265.52,215.06],[265.52,215.06],[265.52,215.06],[265.52,215.06],[265.53,215.06],[265.53,215.06],[265.53,215.06],[265.53,215.06],[265.53,215.06],[265.53,215.06],[265.53,215.06],[265.54,215.06],[265.54,215.06],[265.54,215.06],[265.55,215.05],[265.55,215.05],[265.55,215.05],[265.55,215.05],[265.56,215.05],[265.56,215.05],[265.56,215.05],[265.57,215.05],[265.58,215.05],[265.58,215.05],[265.59,215.05],[265.59,215.04],[265.59,215.04],[265.59,215.04],[265.6,215.04],[265.6,215.04],[265.6,215.04],[265.6,215.04],[265.6,215.04],[265.6,215.04],[265.6,215.04],[265.61,215.03],[265.61,215.03],[265.61,215.03],[265.61,215.02],[265.62,215.02],[265.62,215.02],[265.62,215.02],[265.62,215.01],[265.63,215.01],[265.63,215.01],[265.63,215.01],[265.64,215.01],[265.64,215.01],[265.65,215.01],[265.65,215],[265.65,215],[265.66,215],[265.66,215],[265.66,215],[265.67,215],[265.67,214.99],[265.67,214.99],[265.68,214.99],[265.68,214.99],[265.68,214.99],[265.69,214.98],[265.69,214.98],[265.69,214.98],[265.7,214.98],[265.7,214.98],[265.7,214.98],[265.71,214.98],[265.71,214.98],[265.71,214.98],[265.72,214.98],[265.72,214.98],[265.72,214.98],[265.72,214.98],[265.73,214.98],[265.73,214.98],[265.73,214.97],[265.73,214.97],[265.74,214.97],[265.74,214.97],[265.74,214.97],[265.74,214.97],[265.75,214.96],[265.75,214.96],[265.75,214.96],[265.75,214.96],[265.75,214.96],[265.76,214.96],[265.76,214.96],[265.76,214.96],[265.76,214.96],[265.77,214.96],[265.77,214.96],[265.77,214.96],[265.77,214.96],[265.78,214.96],[265.78,214.96],[265.78,214.96],[265.78,214.96],[265.79,214.96],[265.79,214.96],[265.8,214.96],[265.8,214.96],[265.8,214.96],[265.81,214.96],[265.81,214.96],[265.81,214.96],[265.81,214.96],[265.82,214.96],[265.82,214.96],[265.82,214.95],[265.82,214.95],[265.83,214.95],[265.83,214.95],[265.83,214.95],[265.84,214.95],[265.84,214.95],[265.84,214.95],[265.84,214.95],[265.85,214.95],[265.85,214.95],[265.85,214.95],[265.86,214.95],[265.86,214.95],[265.86,214.95],[265.86,214.95],[265.87,214.95],[265.87,214.94],[265.87,214.94],[265.87,214.94],[265.88,214.94],[265.88,214.94],[265.88,214.94],[265.89,214.93],[265.89,214.93],[265.89,214.93],[265.89,214.93],[265.9,214.93],[265.9,214.92],[265.9,214.92],[265.9,214.92],[265.91,214.92],[265.91,214.92],[265.91,214.92],[265.91,214.92],[265.91,214.92],[265.92,214.92],[265.92,214.92],[265.92,214.92],[265.92,214.92],[265.93,214.92],[265.93,214.92],[265.93,214.92],[265.93,214.92],[265.94,214.92],[265.94,214.92],[265.94,214.92],[265.94,214.92],[265.94,214.92],[265.95,214.92],[265.95,214.91],[265.95,214.91],[265.95,214.91],[265.95,214.91],[265.96,214.91],[265.96,214.91],[265.96,214.91],[265.96,214.91],[265.96,214.9],[265.97,214.9],[265.97,214.9],[265.97,214.9],[265.97,214.9],[265.97,214.9],[265.98,214.9],[265.98,214.9],[265.98,214.9],[265.98,214.9],[265.99,214.9],[265.99,214.9],[265.99,214.9],[265.99,214.9],[266,214.9],[266,214.89],[266.01,214.89],[266.01,214.89],[266.01,214.89],[266.01,214.89],[266.02,214.89],[266.02,214.89],[266.02,214.89],[266.02,214.89],[266.03,214.89],[266.03,214.89],[266.03,214.89],[266.03,214.88],[266.04,214.88],[266.05,214.88],[266.05,214.88],[266.05,214.87],[266.06,214.87],[266.06,214.87],[266.06,214.87],[266.08,214.87],[266.09,214.88],[266.11,214.88],[266.12,214.88],[266.13,214.88],[266.14,214.88],[266.14,214.88],[266.15,214.88],[266.16,214.87],[266.16,214.87],[266.17,214.87],[266.18,214.86],[266.19,214.86],[266.2,214.85],[266.2,214.85],[266.21,214.84],[266.21,214.83],[266.21,214.82],[266.22,214.81],[266.23,214.81],[266.23,214.8],[266.23,214.79],[266.23,214.78],[266.23,214.78],[266.23,214.77],[266.23,214.76],[266.24,214.76],[266.24,214.75],[266.25,214.75],[266.25,214.75],[266.27,214.74],[266.27,214.74],[266.28,214.74],[266.29,214.74],[266.3,214.74],[266.31,214.74],[266.32,214.74],[266.33,214.74],[266.33,214.73],[266.34,214.73],[266.35,214.72],[266.37,214.72],[266.37,214.71],[266.38,214.71],[266.38,214.71],[266.38,214.7],[266.4,214.69],[266.41,214.67],[266.42,214.66],[266.43,214.66],[266.44,214.65],[266.45,214.64],[266.45,214.64],[266.45,214.64],[266.46,214.64],[266.47,214.63],[266.47,214.63],[266.49,214.62],[266.5,214.62],[266.51,214.61],[266.51,214.61],[266.52,214.61],[266.53,214.61],[266.53,214.61],[266.54,214.61],[266.55,214.62],[266.56,214.62],[266.57,214.62],[266.57,214.62],[266.58,214.62],[266.59,214.62],[266.6,214.62],[266.6,214.62],[266.61,214.61],[266.61,214.61],[266.62,214.61],[266.63,214.59],[266.63,214.59],[266.64,214.58],[266.64,214.57],[266.64,214.56],[266.65,214.56],[266.65,214.55],[266.65,214.54],[266.65,214.53],[266.66,214.51],[266.67,214.5],[266.67,214.5],[266.67,214.49],[266.68,214.48],[266.68,214.47],[266.68,214.47],[266.68,214.47],[266.69,214.46],[266.69,214.45],[266.69,214.44],[266.69,214.44],[266.69,214.43],[266.69,214.42],[266.69,214.42],[266.7,214.41],[266.7,214.4],[266.7,214.4],[266.71,214.39],[266.71,214.39],[266.72,214.38],[266.72,214.38],[266.73,214.37],[266.74,214.37],[266.75,214.36],[266.75,214.36],[266.76,214.35],[266.76,214.35],[266.77,214.34],[266.78,214.34],[266.78,214.34],[266.78,214.33],[266.79,214.33],[266.79,214.33],[266.8,214.32],[266.8,214.32],[266.81,214.32],[266.81,214.32],[266.82,214.31],[266.82,214.3],[266.83,214.3],[266.83,214.3],[266.83,214.3],[266.84,214.3],[266.84,214.29],[266.85,214.29],[266.86,214.29],[266.87,214.28],[266.87,214.28],[266.88,214.28],[266.89,214.27],[266.89,214.26],[266.89,214.26],[266.9,214.25],[266.9,214.25],[266.91,214.24],[266.91,214.24],[266.92,214.23],[266.92,214.23],[266.93,214.22],[266.95,214.21],[266.95,214.21],[266.96,214.2],[266.97,214.19],[266.97,214.19],[266.98,214.18],[266.99,214.18],[266.99,214.18],[267.02,214.17],[267.02,214.16],[267.03,214.16],[267.04,214.16],[267.04,214.15],[267.04,214.15],[267.05,214.15],[267.05,214.14],[267.05,214.14],[267.06,214.13],[267.06,214.13],[267.06,214.12],[267.07,214.12],[267.07,214.11],[267.07,214.1],[267.08,214.1],[267.08,214.09],[267.08,214.09],[267.09,214.08],[267.09,214.07],[267.09,214.07],[267.09,214.06],[267.1,214.06],[267.1,214.05],[267.11,214.05],[267.11,214.05],[267.11,214.04],[267.12,214.04],[267.12,214.04],[267.13,214.04],[267.13,214.04],[267.13,214.03],[267.14,214.03],[267.15,214.03],[267.16,214.03],[267.16,214.03],[267.17,214.04],[267.18,214.04],[267.18,214.04],[267.19,214.04],[267.2,214.04],[267.21,214.04],[267.22,214.05],[267.22,214.05],[267.23,214.05],[267.23,214.05],[267.24,214.04],[267.24,214.04],[267.25,214.04],[267.25,214.04],[267.26,214.04],[267.26,214.03],[267.26,214.03],[267.27,214.03],[267.27,214.02],[267.28,214.02],[267.28,214.01],[267.28,214.01],[267.29,214],[267.29,214],[267.29,214],[267.3,213.99],[267.31,213.99],[267.32,213.98],[267.32,213.98],[267.33,213.98],[267.33,213.97],[267.34,213.97],[267.34,213.97],[267.35,213.96],[267.35,213.95],[267.36,213.95],[267.36,213.94],[267.36,213.94],[267.37,213.94],[267.37,213.94],[267.38,213.94],[267.38,213.93],[267.39,213.93],[267.39,213.93],[267.39,213.93],[267.4,213.93],[267.42,213.93],[267.43,213.93],[267.44,213.93],[267.46,213.94],[267.47,213.94],[267.47,213.94],[267.48,213.94],[267.48,213.94],[267.49,213.94],[267.49,213.94],[267.5,213.93],[267.51,213.93],[267.52,213.93],[267.53,213.92],[267.54,213.91],[267.56,213.9],[267.57,213.9],[267.59,213.88],[267.6,213.88],[267.61,213.87],[267.62,213.87],[267.62,213.87],[267.63,213.87],[267.64,213.87],[267.64,213.87],[267.65,213.87],[267.65,213.87],[267.66,213.86],[267.67,213.86],[267.67,213.86],[267.68,213.85],[267.69,213.84],[267.69,213.84],[267.7,213.84],[267.71,213.83],[267.72,213.83],[267.73,213.83],[267.74,213.82],[267.74,213.82],[267.75,213.82],[267.75,213.82],[267.75,213.81],[267.75,213.81],[267.76,213.81],[267.76,213.8],[267.76,213.8],[267.77,213.79],[267.77,213.78],[267.77,213.78],[267.77,213.77],[267.77,213.76],[267.76,213.73],[267.76,213.72],[267.75,213.71],[267.75,213.71],[267.75,213.7],[267.75,213.7],[267.75,213.69],[267.75,213.69],[267.76,213.68],[267.76,213.68],[267.76,213.67],[267.77,213.66],[267.77,213.66],[267.78,213.65],[267.79,213.64],[267.79,213.64],[267.8,213.63],[267.8,213.63],[267.81,213.62],[267.81,213.61],[267.81,213.6],[267.81,213.6],[267.81,213.59],[267.8,213.58],[267.8,213.57],[267.8,213.57],[267.79,213.56],[267.79,213.55],[267.79,213.54],[267.79,213.53],[267.79,213.52],[267.79,213.52],[267.79,213.51],[267.79,213.5],[267.8,213.49],[267.8,213.48],[267.8,213.47],[267.8,213.46],[267.8,213.45],[267.81,213.44],[267.81,213.44],[267.81,213.43],[267.82,213.42],[267.82,213.41],[267.83,213.41],[267.84,213.4],[267.84,213.4],[267.85,213.39],[267.85,213.38],[267.86,213.38],[267.86,213.37],[267.86,213.37],[267.86,213.36],[267.86,213.35],[267.86,213.34],[267.86,213.33],[267.85,213.33],[267.85,213.33],[267.85,213.32],[267.85,213.31],[267.86,213.31],[267.86,213.3],[267.86,213.29],[267.86,213.29],[267.86,213.28],[267.85,213.26],[267.85,213.25],[267.85,213.24],[267.85,213.2],[267.85,213.19],[267.86,213.18],[267.86,213.18],[267.86,213.17],[267.86,213.16],[267.86,213.15],[267.86,213.14],[267.86,213.13],[267.86,213.11],[267.86,213.1],[267.86,213.09],[267.86,213.08],[267.87,213.06],[267.87,213.06],[267.87,213.05],[267.88,213.04],[267.89,213.03],[267.89,213.02],[267.9,213.02],[267.9,213.01],[267.91,213],[267.91,212.99],[267.91,212.98],[267.92,212.98],[267.92,212.97],[267.92,212.96],[267.92,212.96],[267.92,212.95],[267.92,212.94],[267.93,212.94],[267.93,212.93],[267.93,212.92],[267.94,212.91],[267.94,212.9],[267.94,212.89],[267.95,212.88],[267.95,212.87],[267.95,212.86],[267.95,212.85],[267.95,212.85],[267.95,212.84],[267.95,212.83],[267.94,212.83],[267.94,212.82],[267.94,212.81],[267.94,212.8],[267.95,212.79],[267.95,212.78],[267.96,212.76],[267.96,212.74],[267.97,212.73],[267.97,212.72],[267.98,212.72],[267.99,212.71],[268,212.7],[268,212.7],[268.01,212.69],[268.01,212.69],[268.02,212.68],[268.02,212.67],[268.02,212.67],[268.03,212.66],[268.03,212.65],[268.04,212.65],[268.04,212.64],[268.05,212.64],[268.05,212.63],[268.06,212.62],[268.09,212.59],[268.11,212.56],[268.12,212.55],[268.13,212.54],[268.14,212.53],[268.15,212.53],[268.16,212.52],[268.16,212.52],[268.17,212.51],[268.18,212.5],[268.19,212.5],[268.2,212.49],[268.21,212.49],[268.21,212.48],[268.22,212.47],[268.23,212.47],[268.24,212.47],[268.25,212.46],[268.26,212.46],[268.29,212.46],[268.3,212.46],[268.31,212.46],[268.31,212.46],[268.32,212.45],[268.33,212.45],[268.34,212.44],[268.35,212.44],[268.36,212.43],[268.37,212.43],[268.38,212.43],[268.39,212.42],[268.4,212.42],[268.41,212.41],[268.42,212.4],[268.43,212.39],[268.43,212.39],[268.44,212.38],[268.45,212.37],[268.46,212.36],[268.46,212.35],[268.47,212.33],[268.48,212.32],[268.49,212.3],[268.5,212.29],[268.51,212.28],[268.51,212.27],[268.52,212.26],[268.53,212.25],[268.54,212.24],[268.56,212.23],[268.57,212.22],[268.58,212.22],[268.59,212.22],[268.6,212.21],[268.62,212.21],[268.64,212.21],[268.65,212.21],[268.67,212.21],[268.68,212.21],[268.7,212.2],[268.71,212.2],[268.72,212.2],[268.72,212.2],[268.73,212.2],[268.75,212.2],[268.77,212.2],[268.78,212.2],[268.79,212.19],[268.79,212.19],[268.8,212.19],[268.81,212.19],[268.82,212.18],[268.83,212.18],[268.84,212.17],[268.87,212.16],[268.9,212.15],[268.91,212.15],[268.93,212.14],[268.95,212.13],[268.97,212.12],[268.98,212.11],[268.98,212.11],[268.99,212.1],[269,212.1],[269,212.09],[269,212.08],[269.01,212.07],[269.01,212.06],[269.01,212.06],[269.01,212.05],[269.01,212.02],[269.01,211.99],[269.01,211.96],[269.02,211.95],[269.02,211.77],[269.02,211.76],[269.02,211.75],[269.03,211.74],[269.03,211.7],[269.06,211.56],[269.06,211.52],[269.07,211.51],[269.07,211.5],[269.07,211.49],[269.08,211.48],[269.08,211.48],[269.09,211.47],[269.1,211.46],[269.1,211.46],[269.1,211.46],[269.11,211.45],[269.11,211.45],[269.11,211.44],[269.11,211.43],[269.12,211.42],[269.12,211.41],[269.12,211.41],[269.12,211.39],[269.12,211.38],[269.12,211.37],[269.12,211.36],[269.12,211.35],[269.12,211.34],[269.13,211.33],[269.13,211.32],[269.13,211.31],[269.14,211.29],[269.16,211.25],[269.19,211.19],[269.24,211.09],[269.3,210.98],[269.36,210.85],[269.38,210.8],[269.39,210.79],[269.39,210.78],[269.4,210.77],[269.4,210.76],[269.41,210.75],[269.42,210.75],[269.42,210.74],[269.43,210.74],[269.44,210.73],[269.45,210.73],[269.46,210.73],[269.49,210.72],[269.5,210.72],[269.51,210.72],[269.52,210.71],[269.52,210.71],[269.53,210.7],[269.54,210.7],[269.54,210.69],[269.55,210.68],[269.55,210.68],[269.56,210.67],[269.56,210.66],[269.56,210.65],[269.57,210.64],[269.57,210.63],[269.56,210.62],[269.56,210.61],[269.55,210.58],[269.55,210.57],[269.55,210.56],[269.55,210.55],[269.55,210.54],[269.55,210.53],[269.55,210.52],[269.56,210.5],[269.57,210.49],[269.65,210.34],[269.65,210.34],[269.66,210.33],[269.66,210.32],[269.76,210.22],[269.78,210.2],[269.81,210.17],[269.86,210.12],[269.92,210.06],[269.93,210.05],[269.93,210.04],[269.94,210.03],[269.94,210.02],[269.94,210.01],[269.94,210],[269.94,209.99],[269.95,209.96],[269.95,209.95],[269.95,209.94],[269.95,209.93],[269.95,209.92],[269.96,209.91],[269.96,209.9],[269.97,209.9],[269.98,209.89],[269.99,209.89],[269.99,209.88],[270,209.88],[270.01,209.87],[270.02,209.87],[270.02,209.86],[270.03,209.85],[270.04,209.84],[270.06,209.8],[270.14,209.67],[270.19,209.58],[270.2,209.57],[270.2,209.57],[270.21,209.56],[270.21,209.55],[270.22,209.55],[270.22,209.54],[270.22,209.53],[270.22,209.52],[270.22,209.51],[270.23,209.51],[270.22,209.5],[270.22,209.49],[270.22,209.48],[270.22,209.45],[270.22,209.44],[270.22,209.43],[270.22,209.42],[270.22,209.41],[270.22,209.4],[270.23,209.38],[270.26,209.31],[270.26,209.3],[270.27,209.29],[270.27,209.28],[270.28,209.26],[270.28,209.26],[270.28,209.25],[270.28,209.25],[270.28,209.24],[270.28,209.23],[270.28,209.22],[270.28,209.19],[270.28,209.18],[270.28,209.17],[270.28,209.11],[270.28,209.1],[270.28,209.09],[270.29,209.09],[270.29,209.07],[270.3,209.03],[270.31,209],[270.32,208.98],[270.34,208.92],[270.36,208.84],[270.38,208.78],[270.41,208.69],[270.42,208.65],[270.43,208.63],[270.44,208.62],[270.44,208.61],[270.45,208.6],[270.47,208.58],[270.47,208.57],[270.48,208.56],[270.48,208.55],[270.49,208.54],[270.49,208.54],[270.49,208.53],[270.5,208.53],[270.51,208.52],[270.52,208.51],[270.53,208.5],[270.54,208.49],[270.54,208.48],[270.57,208.41],[270.6,208.34],[270.63,208.27],[270.66,208.2],[270.7,208.12],[270.7,208.1],[270.71,208.09],[270.72,208.07],[270.72,208.06],[270.72,208.05],[270.73,208.04],[270.73,208.01],[270.73,208],[270.73,207.99],[270.74,207.98],[270.74,207.98],[270.74,207.97],[270.75,207.96],[270.75,207.96],[270.78,207.93],[270.79,207.93],[270.79,207.92],[270.8,207.91],[270.81,207.89],[270.81,207.88],[270.81,207.87],[270.86,207.71],[270.87,207.66],[270.87,207.65],[270.98,207.25],[270.98,207.24],[270.98,207.23],[270.98,207.22],[270.98,207.21],[270.98,207.19],[270.98,207.18],[270.98,207.17],[270.99,207.16],[270.99,207.16],[270.99,207.15],[270.99,207.14],[270.99,207.14],[271,207.14],[271,207.13],[271.03,207.1],[271.04,207.09],[271.04,207.08],[271.05,207.07],[271.07,207.01],[271.1,206.94],[271.13,206.88],[271.15,206.85],[271.17,206.81],[271.19,206.76],[271.22,206.7],[271.24,206.66],[271.24,206.64],[271.25,206.63],[271.26,206.62],[271.26,206.61],[271.26,206.61],[271.26,206.6],[271.26,206.59],[271.27,206.59],[271.28,206.58],[271.3,206.56],[271.31,206.54],[271.32,206.53],[271.33,206.52],[271.34,206.51],[271.34,206.5],[271.34,206.49],[271.35,206.48],[271.35,206.46],[271.34,206.4],[271.33,206.38],[271.33,206.37],[271.34,206.35],[271.38,206.19],[271.39,206.17],[271.39,206.16],[271.39,206.15],[271.39,206.14],[271.39,206.12],[271.39,206.11],[271.39,206.09],[271.39,206.08],[271.38,206.06],[271.38,206.05],[271.37,206.03],[271.36,206.01],[271.33,205.96],[271.28,205.89],[271.27,205.87],[271.26,205.85],[271.25,205.83],[271.24,205.8],[271.23,205.78],[271.23,205.76],[271.22,205.74],[271.22,205.71],[271.21,205.69],[271.21,205.67],[271.21,205.65],[271.21,205.64],[271.21,205.63],[271.21,205.61],[271.22,205.6],[271.22,205.59],[271.22,205.58],[271.23,205.56],[271.23,205.55],[271.24,205.53],[271.24,205.49],[271.24,205.48],[271.24,205.46],[271.24,205.44],[271.25,205.42],[271.25,205.41],[271.25,205.38],[271.26,205.36],[271.26,205.34],[271.26,205.33],[271.27,205.31],[271.27,205.3],[271.27,205.28],[271.27,205.26],[271.27,205.24],[271.27,205.22],[271.26,205.19],[271.26,205.17],[271.26,205.15],[271.25,205.12],[271.25,205.11],[271.25,205.09],[271.24,205.07],[271.24,205.05],[271.23,205.03],[271.21,205],[271.2,204.96],[271.19,204.93],[271.18,204.91],[271.17,204.9],[271.17,204.89],[271.17,204.88],[271.17,204.86],[271.16,204.85],[271.16,204.83],[271.16,204.81],[271.16,204.8],[271.16,204.78],[271.16,204.77],[271.17,204.75],[271.17,204.74],[271.17,204.71],[271.18,204.7],[271.18,204.69],[271.19,204.66],[271.2,204.64],[271.22,204.59],[271.22,204.58],[271.23,204.56],[271.24,204.54],[271.25,204.53],[271.25,204.51],[271.26,204.5],[271.27,204.49],[271.28,204.48],[271.28,204.47],[271.29,204.46],[271.31,204.44],[271.32,204.43],[271.33,204.42],[271.36,204.39],[271.38,204.38],[271.42,204.34],[271.44,204.33],[271.46,204.31],[271.46,204.31],[271.49,204.28],[271.55,204.24],[271.58,204.22],[271.61,204.2],[271.64,204.18],[271.66,204.15],[271.67,204.13],[271.69,204.12],[271.73,204.06],[271.76,204.02],[271.78,203.99],[271.79,203.98],[271.8,203.96],[271.83,203.93],[271.84,203.91],[271.86,203.9],[271.88,203.87],[271.9,203.85],[271.91,203.84],[271.94,203.82],[271.96,203.79],[271.98,203.78],[272.01,203.76],[272.02,203.75],[272.06,203.71],[272.08,203.69],[272.09,203.68],[272.11,203.66],[272.15,203.63],[272.17,203.61],[272.18,203.6],[272.2,203.59],[272.21,203.58],[272.23,203.56],[272.24,203.56],[272.26,203.54],[272.3,203.52],[272.32,203.51],[272.32,203.51],[272.33,203.5],[272.34,203.5],[272.35,203.49],[272.38,203.47],[272.41,203.46],[272.42,203.45],[272.42,203.44],[272.43,203.44],[272.44,203.43],[272.45,203.43],[272.47,203.41],[272.47,203.41],[272.48,203.41],[272.52,203.4],[272.52,203.4],[272.53,203.4],[272.53,203.4],[272.55,203.4],[272.56,203.41],[272.57,203.41],[272.57,203.41],[272.57,203.41],[272.58,203.42],[272.6,203.43],[272.63,203.44],[272.63,203.45],[272.64,203.45],[272.65,203.46],[272.67,203.46],[272.68,203.47],[272.68,203.47],[272.7,203.47],[272.7,203.48],[272.71,203.48],[272.72,203.48],[272.73,203.48],[272.74,203.49],[272.77,203.5],[272.79,203.5],[272.79,203.5],[272.8,203.5],[272.81,203.5],[272.82,203.5],[272.83,203.5],[272.86,203.49],[272.86,203.49],[272.87,203.49],[272.87,203.49],[272.88,203.49],[272.89,203.48],[272.89,203.48],[272.9,203.48],[272.9,203.47],[272.91,203.47],[272.91,203.47],[272.91,203.46],[272.91,203.46],[272.92,203.45],[272.92,203.44],[272.92,203.42],[272.92,203.41],[272.93,203.39],[272.93,203.38],[272.93,203.38],[272.93,203.37],[272.94,203.36],[272.94,203.35],[272.94,203.34],[272.95,203.33],[272.96,203.31],[272.97,203.3],[272.97,203.29],[272.97,203.29],[272.98,203.29],[272.98,203.28],[272.98,203.28],[272.98,203.28],[272.98,203.28],[273.02,203.25],[273.02,203.24],[273.03,203.23],[273.03,203.23],[273.04,203.22],[273.04,203.22],[273.04,203.21],[273.04,203.2],[273.04,203.2],[273.04,203.19],[273.04,203.18],[273.04,203.17],[273.04,203.17],[273.04,203.16],[273.05,203.16],[273.05,203.15],[273.06,203.15],[273.07,203.15],[273.08,203.14],[273.08,203.14],[273.09,203.13],[273.09,203.13],[273.1,203.12],[273.1,203.11],[273.11,203.11],[273.12,203.1],[273.13,203.1],[273.13,203.1],[273.14,203.09],[273.14,203.09],[273.15,203.08],[273.15,203.07],[273.15,203.06],[273.16,203.05],[273.16,203.04],[273.16,203.03],[273.15,203.03],[273.15,203.01],[273.15,203.01],[273.15,203],[273.15,203],[273.15,202.98],[273.15,202.98],[273.15,202.97],[273.15,202.97],[273.15,202.96],[273.13,202.92],[273.13,202.91],[273.13,202.9],[273.13,202.9],[273.13,202.89],[273.13,202.88],[273.13,202.87],[273.13,202.87],[273.13,202.84],[273.13,202.83],[273.13,202.82],[273.13,202.82],[273.13,202.8],[273.13,202.79],[273.13,202.79],[273.13,202.78],[273.13,202.77],[273.13,202.77],[273.13,202.76],[273.12,202.73],[273.1,202.7],[273.1,202.68],[273.09,202.67],[273.09,202.67],[273.09,202.67],[273.09,202.66],[273.09,202.66],[273.09,202.65],[273.09,202.65],[273.09,202.65],[273.09,202.65],[273.09,202.65],[273.09,202.65],[273.09,202.64],[273.1,202.64],[273.1,202.64],[273.1,202.64],[273.11,202.64],[273.11,202.64],[273.11,202.63],[273.12,202.63],[273.12,202.63],[273.12,202.63],[273.12,202.62],[273.13,202.61],[273.13,202.61],[273.14,202.6],[273.14,202.59],[273.15,202.58],[273.17,202.57],[273.17,202.56],[273.17,202.56],[273.17,202.55],[273.18,202.55],[273.18,202.54],[273.18,202.54],[273.18,202.54],[273.18,202.53],[273.18,202.53],[273.2,202.48],[273.2,202.47],[273.2,202.47],[273.21,202.46],[273.21,202.46],[273.21,202.45],[273.21,202.45],[273.21,202.45],[273.22,202.44],[273.22,202.44],[273.22,202.44],[273.23,202.44],[273.24,202.43],[273.25,202.42],[273.26,202.41],[273.27,202.41],[273.27,202.41],[273.27,202.4],[273.28,202.4],[273.28,202.39],[273.28,202.39],[273.28,202.39],[273.29,202.38],[273.29,202.37],[273.3,202.35],[273.3,202.34],[273.31,202.33],[273.32,202.31],[273.33,202.29],[273.33,202.28],[273.33,202.27],[273.34,202.26],[273.34,202.26],[273.34,202.25],[273.34,202.25],[273.34,202.24],[273.34,202.23],[273.34,202.22],[273.35,202.2],[273.35,202.17],[273.35,202.16],[273.35,202.15],[273.35,202.15],[273.35,202.14],[273.36,202.14],[273.36,202.13],[273.36,202.13],[273.36,202.13],[273.36,202.12],[273.37,202.12],[273.37,202.12],[273.37,202.11],[273.37,202.11],[273.38,202.11],[273.38,202.11],[273.38,202.1],[273.39,202.1],[273.39,202.1],[273.43,202.07],[273.44,202.06],[273.45,202.05],[273.46,202.05],[273.46,202.04],[273.46,202.04],[273.47,202.04],[273.47,202.03],[273.48,202.03],[273.49,202.02],[273.51,201.99],[273.51,201.98],[273.51,201.97],[273.52,201.96],[273.52,201.96],[273.52,201.96],[273.52,201.95],[273.53,201.94],[273.53,201.93],[273.53,201.92],[273.54,201.91],[273.54,201.9],[273.54,201.9],[273.55,201.89],[273.55,201.88],[273.56,201.87],[273.56,201.86],[273.56,201.86],[273.56,201.85],[273.56,201.84],[273.57,201.84],[273.57,201.82],[273.57,201.82],[273.57,201.81],[273.57,201.8],[273.57,201.8],[273.57,201.77],[273.57,201.74],[273.57,201.73],[273.57,201.72],[273.57,201.71],[273.57,201.7],[273.57,201.69],[273.57,201.68],[273.57,201.67],[273.57,201.65],[273.56,201.63],[273.56,201.62],[273.56,201.61],[273.55,201.6],[273.54,201.58],[273.53,201.55],[273.52,201.53],[273.52,201.51],[273.51,201.51],[273.51,201.49],[273.5,201.48],[273.49,201.46],[273.46,201.4],[273.46,201.39],[273.46,201.38],[273.45,201.37],[273.44,201.35],[273.43,201.33],[273.42,201.29],[273.41,201.27],[273.41,201.25],[273.4,201.23],[273.39,201.22],[273.37,201.18],[273.36,201.16],[273.36,201.15],[273.35,201.14],[273.35,201.13],[273.35,201.12],[273.34,201.11],[273.34,201.1],[273.34,201.1],[273.34,201.09],[273.34,201.08],[273.33,201.06],[273.33,201.04],[273.33,201.03],[273.32,201.02],[273.32,201.01],[273.32,201],[273.32,201],[273.31,200.99],[273.31,200.99],[273.31,200.98],[273.31,200.98],[273.31,200.97],[273.31,200.96],[273.3,200.96],[273.3,200.95],[273.29,200.93],[273.28,200.91],[273.27,200.9],[273.27,200.88],[273.26,200.88],[273.26,200.87],[273.26,200.87],[273.26,200.87],[273.26,200.86],[273.26,200.85],[273.25,200.85],[273.25,200.84],[273.25,200.83],[273.25,200.82],[273.24,200.81],[273.24,200.8],[273.24,200.8],[273.24,200.79],[273.24,200.79],[273.24,200.78],[273.24,200.77],[273.24,200.76],[273.24,200.75],[273.24,200.74],[273.24,200.74],[273.24,200.73],[273.24,200.73],[273.24,200.72],[273.24,200.71],[273.24,200.7],[273.24,200.69],[273.24,200.68],[273.24,200.67],[273.24,200.67],[273.24,200.66],[273.25,200.65],[273.25,200.64],[273.25,200.63],[273.25,200.62],[273.26,200.61],[273.26,200.59],[273.26,200.58],[273.27,200.57],[273.27,200.55],[273.27,200.54],[273.27,200.53],[273.27,200.52],[273.27,200.51],[273.28,200.49],[273.28,200.48],[273.28,200.46],[273.27,200.45],[273.27,200.43],[273.27,200.42],[273.27,200.41],[273.27,200.4],[273.27,200.39],[273.27,200.39],[273.26,200.38],[273.26,200.36],[273.26,200.35],[273.25,200.34],[273.25,200.33],[273.23,200.27],[273.22,200.24],[273.21,200.23],[273.21,200.22],[273.21,200.21],[273.2,200.19],[273.2,200.18],[273.2,200.17],[273.19,200.13],[273.18,200.12],[273.18,200.1],[273.17,200.09],[273.17,200.08],[273.15,200.05],[273.14,200.04],[273.13,200.02],[273.13,200.01],[273.12,200],[273.12,199.97],[273.11,199.96],[273.11,199.95],[273.1,199.94],[273.1,199.93],[273.09,199.92],[273.08,199.91],[273.07,199.9],[273.06,199.9],[273.03,199.87],[273.02,199.86],[273.02,199.86],[273.01,199.85],[273,199.84],[273,199.83],[272.93,199.7],[272.93,199.69],[272.92,199.68],[272.91,199.66],[272.91,199.65],[272.9,199.63],[272.89,199.62],[272.89,199.61],[272.89,199.6],[272.89,199.59],[272.88,199.58],[272.88,199.57],[272.88,199.56],[272.88,199.55],[272.87,199.54],[272.87,199.53],[272.87,199.52],[272.87,199.51],[272.87,199.46],[272.87,199.45],[272.87,199.44],[272.87,199.43],[272.87,199.42],[272.86,199.41],[272.86,199.4],[272.86,199.39],[272.86,199.38],[272.86,199.37],[272.86,199.36],[272.85,199.35],[272.84,199.31],[272.84,199.3],[272.83,199.29],[272.83,199.27],[272.83,199.26],[272.83,199.25],[272.83,199.24],[272.82,199.18],[272.82,199.17],[272.82,199.15],[272.81,199.14],[272.81,199.13],[272.8,199.12],[272.8,199.11],[272.79,199.1],[272.78,199.07],[272.77,199.06],[272.77,199.05],[272.76,199.03],[272.76,199.03],[272.76,199.02],[272.75,198.98],[272.75,198.98],[272.75,198.97],[272.74,198.96],[272.74,198.95],[272.73,198.95],[272.73,198.94],[272.73,198.93],[272.72,198.93],[272.72,198.93],[272.72,198.92],[272.7,198.9],[272.7,198.89],[272.69,198.88],[272.69,198.88],[272.68,198.87],[272.68,198.86],[272.67,198.85],[272.67,198.83],[272.65,198.78],[272.65,198.76],[272.64,198.75],[272.64,198.74],[272.63,198.73],[272.62,198.72],[272.61,198.7],[272.6,198.68],[272.6,198.67],[272.59,198.66],[272.58,198.65],[272.58,198.64],[272.58,198.63],[272.57,198.63],[272.57,198.61],[272.57,198.6],[272.56,198.59],[272.56,198.58],[272.56,198.56],[272.56,198.55],[272.56,198.54],[272.56,198.53],[272.56,198.52],[272.57,198.51],[272.58,198.46],[272.58,198.45],[272.58,198.44],[272.58,198.43],[272.58,198.41],[272.58,198.4],[272.58,198.39],[272.58,198.37],[272.56,198.3],[272.56,198.29],[272.56,198.27],[272.56,198.26],[272.56,198.24],[272.56,198.22],[272.56,198.21],[272.55,198.19],[272.55,198.17],[272.55,198.17],[272.55,198.16],[272.54,198.14],[272.54,198.13],[272.53,198.13],[272.5,198.03],[272.49,198.01],[272.48,198],[272.48,197.98],[272.47,197.96],[272.47,197.95],[272.47,197.93],[272.47,197.92],[272.47,197.9],[272.47,197.89],[272.47,197.87],[272.48,197.85],[272.48,197.84],[272.5,197.78],[272.5,197.76],[272.5,197.75],[272.51,197.73],[272.51,197.72],[272.51,197.7],[272.51,197.68],[272.51,197.62],[272.51,197.61],[272.51,197.59],[272.51,197.59],[272.52,197.57],[272.52,197.55],[272.52,197.55],[272.52,197.54],[272.52,197.53],[272.57,197.26],[272.57,197.24],[272.57,197.23],[272.57,197.21],[272.57,197.19],[272.59,197.08],[272.59,197.07],[272.59,197.07],[272.59,197.05],[272.59,197.04],[272.6,197.02],[272.6,197.02],[272.6,197.01],[272.6,197],[272.61,196.99],[272.63,196.95],[272.63,196.94],[272.64,196.92],[272.64,196.91],[272.65,196.9],[272.65,196.89],[272.65,196.88],[272.64,196.86],[272.64,196.85],[272.64,196.84],[272.63,196.83],[272.62,196.82],[272.62,196.81],[272.61,196.8],[272.61,196.8],[272.6,196.8],[272.6,196.79],[272.59,196.78],[272.58,196.77],[272.58,196.77],[272.57,196.76],[272.57,196.75],[272.56,196.75],[272.56,196.74],[272.56,196.73],[272.55,196.72],[272.53,196.67],[272.53,196.66],[272.52,196.65],[272.52,196.64],[272.51,196.64],[272.51,196.63],[272.5,196.62],[272.5,196.61],[272.46,196.57],[272.45,196.56],[272.45,196.55],[272.44,196.54],[272.44,196.53],[272.43,196.52],[272.43,196.51],[272.42,196.51],[272.42,196.5],[272.41,196.49],[272.41,196.48],[272.41,196.47],[272.4,196.46],[272.4,196.45],[272.4,196.44],[272.39,196.43],[272.39,196.42],[272.39,196.41],[272.39,196.4],[272.38,196.34],[272.38,196.33],[272.37,196.32],[272.37,196.3],[272.37,196.29],[272.37,196.28],[272.36,196.27],[272.36,196.26],[272.36,196.25],[272.34,196.21],[272.33,196.19],[272.33,196.17],[272.32,196.15],[272.3,196.03],[272.29,196.02],[272.29,196.01],[272.29,196],[272.29,195.99],[272.28,195.99],[272.28,195.98],[272.28,195.98],[272.26,195.93],[272.26,195.92],[272.25,195.91],[272.25,195.91],[272.25,195.9],[272.25,195.89],[272.24,195.87],[272.24,195.86],[272.24,195.83],[272.23,195.82],[272.23,195.81],[272.23,195.8],[272.23,195.79],[272.23,195.78],[272.22,195.78],[272.22,195.77],[272.22,195.76],[272.21,195.74],[272.2,195.73],[272.2,195.72],[272.19,195.71],[272.19,195.7],[272.19,195.69],[272.19,195.69],[272.19,195.68],[272.19,195.67],[272.18,195.66],[272.18,195.65],[272.18,195.64],[272.18,195.64],[272.18,195.63],[272.18,195.62],[272.18,195.61],[272.18,195.6],[272.18,195.59],[272.18,195.58],[272.18,195.58],[272.18,195.57],[272.18,195.56],[272.18,195.55],[272.18,195.55],[272.18,195.54],[272.18,195.54],[272.18,195.52],[272.19,195.52],[272.19,195.51],[272.19,195.48],[272.2,195.47],[272.2,195.46],[272.2,195.46],[272.2,195.45],[272.2,195.44],[272.2,195.44],[272.2,195.43],[272.2,195.42],[272.2,195.4],[272.2,195.37],[272.2,195.36],[272.2,195.35],[272.2,195.35],[272.2,195.34],[272.2,195.34],[272.21,195.33],[272.21,195.32],[272.21,195.32],[272.21,195.31],[272.21,195.31],[272.22,195.3],[272.22,195.3],[272.22,195.29],[272.23,195.29],[272.23,195.28],[272.24,195.28],[272.24,195.27],[272.25,195.26],[272.25,195.25],[272.26,195.25],[272.26,195.24],[272.26,195.23],[272.27,195.23],[272.27,195.22],[272.27,195.22],[272.27,195.21],[272.27,195.21],[272.28,195.2],[272.28,195.19],[272.28,195.19],[272.28,195.18],[272.28,195.17],[272.28,195.16],[272.28,195.15],[272.29,195.14],[272.29,195.13],[272.29,195.12],[272.29,195.12],[272.29,195.11],[272.29,195.1],[272.3,195.1],[272.3,195.09],[272.3,195.09],[272.3,195.09],[272.31,195.08],[272.31,195.08],[272.31,195.07],[272.32,195.07],[272.32,195.06],[272.32,195.06],[272.33,195.06],[272.33,195.05],[272.34,195.05],[272.34,195.05],[272.35,195.04],[272.35,195.04],[272.36,195.03],[272.37,195.03],[272.38,195.02],[272.38,195.02],[272.39,195.01],[272.39,195.01],[272.39,195.01],[272.4,195],[272.4,195],[272.4,195],[272.4,195],[272.4,194.99],[272.41,194.99],[272.41,194.99],[272.41,194.98],[272.42,194.98],[272.42,194.97],[272.42,194.97],[272.42,194.97],[272.42,194.96],[272.43,194.96],[272.43,194.95],[272.43,194.94],[272.43,194.94],[272.43,194.93],[272.43,194.93],[272.44,194.92],[272.44,194.9],[272.44,194.87],[272.45,194.86],[272.45,194.84],[272.45,194.83],[272.45,194.82],[272.46,194.79],[272.46,194.78],[272.46,194.77],[272.47,194.76],[272.47,194.75],[272.47,194.75],[272.47,194.74],[272.47,194.73],[272.47,194.72],[272.46,194.71],[272.46,194.68],[272.46,194.66],[272.46,194.65],[272.46,194.64],[272.46,194.63],[272.46,194.63],[272.46,194.62],[272.46,194.61],[272.46,194.61],[272.46,194.6],[272.46,194.59],[272.47,194.58],[272.47,194.58],[272.47,194.57],[272.48,194.56],[272.48,194.56],[272.48,194.55],[272.49,194.54],[272.5,194.54],[272.5,194.53],[272.51,194.52],[272.51,194.52],[272.52,194.51],[272.53,194.51],[272.54,194.5],[272.54,194.49],[272.59,194.45],[272.6,194.45],[272.61,194.43],[272.62,194.42],[272.63,194.42],[272.63,194.41],[272.64,194.4],[272.65,194.4],[272.65,194.39],[272.65,194.38],[272.66,194.37],[272.66,194.37],[272.66,194.36],[272.67,194.35],[272.67,194.35],[272.67,194.34],[272.68,194.33],[272.68,194.32],[272.68,194.32],[272.68,194.31],[272.68,194.3],[272.69,194.28],[272.69,194.27],[272.69,194.26],[272.69,194.26],[272.69,194.25],[272.7,194.24],[272.7,194.24],[272.7,194.23],[272.7,194.23],[272.71,194.22],[272.71,194.21],[272.71,194.21],[272.72,194.2],[272.72,194.2],[272.73,194.19],[272.73,194.19],[272.74,194.18],[272.74,194.18],[272.77,194.16],[272.78,194.15],[272.78,194.15],[272.79,194.14],[272.79,194.14],[272.8,194.13],[272.8,194.13],[272.8,194.12],[272.81,194.12],[272.81,194.11],[272.81,194.1],[272.82,194.1],[272.82,194.09],[272.82,194.08],[272.82,194.07],[272.83,194.06],[272.83,194.05],[272.84,194],[272.85,193.97],[272.85,193.95],[272.86,193.92],[272.87,193.9],[272.87,193.88],[272.88,193.85],[272.88,193.84],[272.88,193.83],[272.89,193.81],[272.89,193.8],[272.89,193.78],[272.89,193.77],[272.89,193.77],[272.9,193.75],[272.9,193.74],[272.9,193.72],[272.9,193.68],[272.9,193.67],[272.9,193.66],[272.91,193.65],[272.91,193.64],[272.91,193.63],[272.91,193.62],[272.91,193.61],[272.92,193.57],[272.92,193.56],[272.92,193.55],[272.92,193.54],[272.92,193.54],[272.92,193.53],[272.92,193.52],[272.92,193.51],[272.92,193.49],[272.92,193.47],[272.92,193.46],[272.92,193.46],[272.92,193.45],[272.92,193.44],[272.92,193.43],[272.92,193.42],[272.92,193.4],[272.93,193.4],[272.94,193.36],[272.94,193.34],[272.94,193.33],[272.94,193.32],[272.94,193.31],[272.95,193.3],[272.95,193.29],[272.95,193.28],[272.95,193.27],[272.95,193.26],[272.94,193.19],[272.94,193.17],[272.95,193.16],[272.95,193.15],[272.95,193.13],[272.95,193.12],[272.95,193.11],[272.97,193],[272.98,192.99],[272.98,192.98],[272.98,192.97],[272.98,192.96],[272.98,192.94],[272.98,192.93],[272.98,192.92],[272.98,192.91],[272.98,192.9],[272.97,192.89],[272.97,192.87],[272.97,192.86],[272.96,192.82],[272.96,192.81],[272.96,192.79],[272.96,192.78],[272.96,192.77],[272.95,192.76],[272.95,192.75],[272.95,192.73],[272.96,192.72],[272.96,192.71],[272.96,192.7],[272.96,192.69],[272.96,192.67],[272.97,192.65],[272.98,192.53],[272.99,192.52],[272.99,192.5],[272.99,192.49],[272.99,192.48],[273,192.47],[273,192.46],[273,192.45],[273.01,192.44],[273.01,192.43],[273.02,192.42],[273.04,192.37],[273.04,192.36],[273.05,192.35],[273.05,192.34],[273.06,192.33],[273.06,192.32],[273.08,192.25],[273.08,192.24],[273.09,192.23],[273.09,192.22],[273.1,192.21],[273.1,192.2],[273.11,192.19],[273.11,192.18],[273.12,192.17],[273.12,192.16],[273.13,192.15],[273.14,192.14],[273.14,192.13],[273.15,192.12],[273.2,192.06],[273.24,192],[273.25,191.99],[273.26,191.98],[273.27,191.97],[273.28,191.97],[273.28,191.96],[273.29,191.95],[273.3,191.94],[273.31,191.93],[273.36,191.88],[273.37,191.88],[273.38,191.87],[273.39,191.86],[273.4,191.85],[273.4,191.84],[273.41,191.83],[273.42,191.82],[273.43,191.81],[273.43,191.8],[273.44,191.79],[273.45,191.78],[273.46,191.75],[273.48,191.71],[273.49,191.69],[273.5,191.68],[273.5,191.68],[273.51,191.67],[273.51,191.66],[273.52,191.65],[273.52,191.65],[273.53,191.63],[273.54,191.61],[273.55,191.6],[273.56,191.58],[273.57,191.57],[273.58,191.55],[273.59,191.53],[273.61,191.49],[273.62,191.47],[273.62,191.46],[273.63,191.45],[273.64,191.44],[273.65,191.43],[273.68,191.39],[273.68,191.38],[273.69,191.37],[273.69,191.36],[273.7,191.35],[273.71,191.35],[273.71,191.33],[273.72,191.32],[273.74,191.28],[273.74,191.27],[273.75,191.27],[273.75,191.26],[273.76,191.25],[273.77,191.24],[273.78,191.23],[273.78,191.22],[273.79,191.21],[273.8,191.21],[273.81,191.2],[273.82,191.19],[273.83,191.19],[273.84,191.18],[273.87,191.17],[273.88,191.16],[273.89,191.15],[273.9,191.15],[273.9,191.14],[273.91,191.14],[273.92,191.13],[273.92,191.13],[273.93,191.12],[273.94,191.11],[273.95,191.1],[273.96,191.09],[273.97,191.08],[273.98,191.06],[273.99,191.04],[274.02,190.99],[274.03,190.98],[274.04,190.97],[274.05,190.96],[274.06,190.94],[274.07,190.93],[274.08,190.92],[274.09,190.91],[274.11,190.9],[274.21,190.81],[274.23,190.81],[274.24,190.8],[274.25,190.79],[274.26,190.78],[274.27,190.78],[274.28,190.77],[274.28,190.77],[274.29,190.77],[274.29,190.76],[274.3,190.76],[274.31,190.76],[274.31,190.75],[274.33,190.75],[274.34,190.74],[274.36,190.73],[274.37,190.73],[274.37,190.73],[274.38,190.72],[274.38,190.72],[274.39,190.72],[274.4,190.71],[274.4,190.71],[274.4,190.71],[274.41,190.7],[274.42,190.7],[274.42,190.7],[274.42,190.69],[274.43,190.69],[274.43,190.68],[274.44,190.68],[274.45,190.67],[274.46,190.66],[274.48,190.64],[274.48,190.64],[274.49,190.63],[274.49,190.63],[274.49,190.63],[274.5,190.63],[274.5,190.62],[274.51,190.62],[274.51,190.62],[274.52,190.61],[274.52,190.61],[274.53,190.61],[274.53,190.6],[274.54,190.6],[274.55,190.6],[274.55,190.6],[274.56,190.6],[274.57,190.59],[274.57,190.59],[274.58,190.59],[274.59,190.59],[274.6,190.59],[274.6,190.59],[274.61,190.59],[274.62,190.59],[274.65,190.58],[274.68,190.58],[274.71,190.57],[274.72,190.57],[274.72,190.57],[274.73,190.57],[274.73,190.57],[274.74,190.57],[274.74,190.57],[274.75,190.56],[274.75,190.56],[274.76,190.56],[274.76,190.56],[274.76,190.56],[274.77,190.55],[274.77,190.55],[274.77,190.55],[274.78,190.54],[274.78,190.54],[274.79,190.54],[274.79,190.53],[274.79,190.53],[274.8,190.52],[274.8,190.52],[274.8,190.51],[274.81,190.5],[274.81,190.49],[274.82,190.48],[274.83,190.46],[274.83,190.45],[274.83,190.44],[274.84,190.44],[274.84,190.43],[274.84,190.43],[274.84,190.43],[274.85,190.42],[274.85,190.42],[274.85,190.42],[274.86,190.41],[274.86,190.41],[274.86,190.4],[274.87,190.4],[274.87,190.4],[274.87,190.4],[274.88,190.39],[274.88,190.39],[274.88,190.39],[274.89,190.38],[274.9,190.38],[274.9,190.38],[274.91,190.38],[274.91,190.37],[274.92,190.37],[274.92,190.37],[274.93,190.37],[274.93,190.37],[274.94,190.37],[274.94,190.36],[274.95,190.36],[274.96,190.36],[274.98,190.36],[274.98,190.36],[274.99,190.36],[274.99,190.35],[275,190.35],[275,190.35],[275.01,190.35],[275.02,190.35],[275.02,190.35],[275.03,190.34],[275.03,190.34],[275.04,190.34],[275.04,190.34],[275.05,190.33],[275.05,190.33],[275.06,190.33],[275.06,190.33],[275.07,190.32],[275.08,190.32],[275.09,190.31],[275.09,190.3],[275.1,190.3],[275.12,190.29],[275.14,190.27],[275.15,190.26],[275.15,190.26],[275.16,190.26],[275.16,190.25],[275.17,190.25],[275.17,190.25],[275.18,190.24],[275.19,190.24],[275.2,190.23],[275.2,190.23],[275.21,190.23],[275.22,190.22],[275.23,190.22],[275.23,190.22],[275.24,190.21],[275.24,190.21],[275.25,190.21],[275.26,190.21],[275.27,190.2],[275.28,190.2],[275.29,190.2],[275.33,190.19],[275.33,190.19],[275.33,190.18],[275.34,190.18],[275.35,190.18],[275.36,190.18],[275.37,190.17],[275.37,190.17],[275.38,190.17],[275.38,190.17],[275.39,190.16],[275.4,190.16],[275.42,190.15],[275.42,190.14],[275.43,190.14],[275.44,190.13],[275.45,190.13],[275.46,190.12],[275.47,190.1],[275.48,190.1],[275.49,190.1],[275.49,190.09],[275.5,190.09],[275.5,190.09],[275.5,190.09],[275.51,190.08],[275.51,190.08],[275.51,190.08],[275.52,190.08],[275.52,190.08],[275.53,190.07],[275.53,190.07],[275.54,190.07],[275.56,190.06],[275.57,190.06],[275.59,190.05],[275.6,190.05],[275.62,190.04],[275.63,190.04],[275.64,190.03],[275.64,190.03],[275.65,190.02],[275.66,190.02],[275.66,190.02],[275.67,190.02],[275.67,190.01],[275.69,190.01],[275.81,189.93],[275.82,189.92],[275.83,189.92],[275.84,189.91],[275.85,189.91],[275.85,189.9],[275.86,189.9],[275.87,189.9],[275.87,189.89],[275.89,189.89],[275.9,189.88],[275.9,189.88],[275.93,189.87],[275.94,189.87],[275.94,189.86],[275.96,189.86],[275.98,189.85],[275.99,189.85],[275.99,189.84],[276,189.84],[276.01,189.84],[276.02,189.83],[276.02,189.83],[276.04,189.82],[276.04,189.82],[276.05,189.81],[276.06,189.81],[276.07,189.8],[276.1,189.78],[276.1,189.78],[276.11,189.77],[276.12,189.77],[276.12,189.77],[276.13,189.76],[276.14,189.76],[276.14,189.76],[276.15,189.75],[276.16,189.75],[276.17,189.74],[276.17,189.74],[276.18,189.74],[276.19,189.73],[276.2,189.73],[276.21,189.73],[276.21,189.73],[276.22,189.73],[276.23,189.72],[276.25,189.72],[276.26,189.71],[276.28,189.71],[276.28,189.71],[276.29,189.7],[276.3,189.7],[276.3,189.7],[276.31,189.7],[276.31,189.69],[276.32,189.69],[276.32,189.69],[276.33,189.69],[276.33,189.68],[276.33,189.68],[276.34,189.68],[276.34,189.68],[276.35,189.67],[276.36,189.67],[276.36,189.66],[276.36,189.66],[276.37,189.66],[276.37,189.65],[276.37,189.65],[276.39,189.64],[276.39,189.63],[276.4,189.63],[276.41,189.61],[276.42,189.6],[276.43,189.59],[276.44,189.57],[276.46,189.56],[276.5,189.52],[276.51,189.51],[276.51,189.51],[276.52,189.5],[276.53,189.5],[276.54,189.49],[276.54,189.49],[276.55,189.48],[276.56,189.48],[276.57,189.47],[276.59,189.46],[276.59,189.45],[276.6,189.45],[276.6,189.45],[276.61,189.45],[276.61,189.44],[276.62,189.44],[276.62,189.44],[276.63,189.44],[276.63,189.43],[276.64,189.43],[276.65,189.43],[276.65,189.43],[276.66,189.42],[276.67,189.42],[276.68,189.42],[276.69,189.42],[276.7,189.41],[276.71,189.41],[276.71,189.41],[276.74,189.41],[276.78,189.4],[276.79,189.4],[276.8,189.4],[276.8,189.4],[276.81,189.4],[276.81,189.4],[276.83,189.4],[276.83,189.4],[276.84,189.4],[276.85,189.4],[276.85,189.4],[276.86,189.4],[276.87,189.4],[276.88,189.4],[276.89,189.4],[276.9,189.4],[276.91,189.4],[276.95,189.41],[277,189.42],[277.09,189.43],[277.09,189.44],[277.1,189.44],[277.1,189.44],[277.1,189.44],[277.1,189.44],[277.11,189.44],[277.11,189.44],[277.12,189.44],[277.12,189.44],[277.12,189.44],[277.13,189.44],[277.13,189.44],[277.13,189.44],[277.14,189.44],[277.14,189.44],[277.14,189.44],[277.15,189.43],[277.15,189.43],[277.15,189.43],[277.16,189.43],[277.16,189.43],[277.17,189.43],[277.17,189.43],[277.18,189.43],[277.18,189.42],[277.18,189.42],[277.18,189.42],[277.19,189.42],[277.19,189.42],[277.19,189.42],[277.2,189.42],[277.2,189.41],[277.2,189.41],[277.2,189.41],[277.21,189.41],[277.21,189.41],[277.21,189.4],[277.22,189.4],[277.22,189.4],[277.22,189.39],[277.23,189.39],[277.23,189.39],[277.23,189.39],[277.23,189.38],[277.24,189.38],[277.24,189.38],[277.24,189.37],[277.24,189.37],[277.25,189.37],[277.25,189.36],[277.25,189.36],[277.25,189.36],[277.25,189.35],[277.26,189.35],[277.26,189.35],[277.26,189.34],[277.26,189.34],[277.26,189.33],[277.27,189.32],[277.27,189.31],[277.27,189.3],[277.28,189.3],[277.28,189.29],[277.28,189.29],[277.28,189.29],[277.28,189.28],[277.28,189.28],[277.29,189.27],[277.29,189.27],[277.29,189.27],[277.29,189.27],[277.29,189.26],[277.3,189.26],[277.3,189.26],[277.3,189.26],[277.3,189.25],[277.3,189.25],[277.31,189.25],[277.31,189.25],[277.31,189.24],[277.31,189.24],[277.32,189.24],[277.32,189.24],[277.32,189.23],[277.32,189.23],[277.33,189.23],[277.33,189.23],[277.33,189.22],[277.35,189.22],[277.36,189.21],[277.37,189.2],[277.37,189.2],[277.38,189.19],[277.38,189.19],[277.41,189.17],[277.43,189.14],[277.43,189.14],[277.45,189.13],[277.46,189.12],[277.46,189.12],[277.46,189.12],[277.46,189.12],[277.47,189.12],[277.47,189.11],[277.47,189.11],[277.47,189.11],[277.48,189.11],[277.48,189.11],[277.48,189.11],[277.48,189.11],[277.49,189.1],[277.49,189.1],[277.49,189.1],[277.49,189.1],[277.49,189.1],[277.5,189.1],[277.5,189.1],[277.5,189.1],[277.5,189.1],[277.51,189.1],[277.51,189.1],[277.52,189.09],[277.52,189.09],[277.53,189.09],[277.54,189.09],[277.54,189.09],[277.54,189.09],[277.55,189.09],[277.55,189.08],[277.55,189.08],[277.55,189.08],[277.56,189.08],[277.56,189.08],[277.56,189.08],[277.56,189.08],[277.57,189.08],[277.57,189.08],[277.57,189.07],[277.57,189.07],[277.58,189.07],[277.58,189.07],[277.58,189.07],[277.58,189.07],[277.58,189.07],[277.59,189.06],[277.59,189.06],[277.59,189.06],[277.59,189.06],[277.59,189.06],[277.6,189.05],[277.6,189.05],[277.6,189.05],[277.61,189.04],[277.61,189.04],[277.61,189.04],[277.61,189.04],[277.61,189.04],[277.61,189.03],[277.61,189.03],[277.61,189.03],[277.62,189.03],[277.62,189.02],[277.62,189.02],[277.62,189.01],[277.62,189.01],[277.62,189.01],[277.62,189.01],[277.62,189],[277.63,189],[277.63,188.99],[277.63,188.98],[277.63,188.97],[277.63,188.96],[277.64,188.94],[277.64,188.92],[277.64,188.9],[277.65,188.88],[277.65,188.86],[277.65,188.85],[277.65,188.85],[277.65,188.84],[277.66,188.84],[277.66,188.84],[277.66,188.83],[277.66,188.83],[277.66,188.83],[277.66,188.82],[277.66,188.82],[277.67,188.81],[277.67,188.81],[277.67,188.8],[277.67,188.8],[277.67,188.79],[277.68,188.79],[277.68,188.79],[277.68,188.78],[277.69,188.78],[277.69,188.77],[277.69,188.77],[277.7,188.76],[277.7,188.75],[277.71,188.75],[277.72,188.73],[277.72,188.72],[277.73,188.72],[277.74,188.7],[277.74,188.7],[277.74,188.69],[277.75,188.69],[277.75,188.69],[277.76,188.68],[277.76,188.68],[277.76,188.67],[277.77,188.67],[277.77,188.66],[277.78,188.65],[277.79,188.64],[277.79,188.64],[277.8,188.64],[277.8,188.63],[277.81,188.62],[277.81,188.62],[277.82,188.62],[277.82,188.61],[277.83,188.61],[277.83,188.61],[277.84,188.6],[277.85,188.59],[277.85,188.58],[277.86,188.58],[277.86,188.58],[277.87,188.57],[277.87,188.57],[277.88,188.57],[277.88,188.56],[277.88,188.56],[277.89,188.56],[277.89,188.56],[277.9,188.55],[277.93,188.53],[277.93,188.53],[277.93,188.52],[277.94,188.52],[277.94,188.52],[277.95,188.51],[277.95,188.51],[277.95,188.51],[277.96,188.5],[277.96,188.5],[277.96,188.5],[277.96,188.49],[277.97,188.49],[277.97,188.49],[277.97,188.48],[277.97,188.48],[277.97,188.48],[277.98,188.48],[277.98,188.47],[277.98,188.47],[277.98,188.46],[277.98,188.46],[277.99,188.45],[277.99,188.45],[277.99,188.45],[277.99,188.44],[277.99,188.44],[277.99,188.43],[278,188.43],[278,188.43],[278,188.42],[278,188.42],[278,188.41],[278,188.41],[278,188.38],[278,188.38],[278.01,188.38],[278.01,188.38],[278.01,188.37],[278.01,188.37],[278.01,188.37],[278.01,188.35],[278.01,188.35],[278.01,188.35],[278.01,188.34],[278.01,188.34],[278.01,188.33],[278.02,188.32],[278.02,188.31],[278.02,188.3],[278.02,188.3],[278.02,188.29],[278.02,188.29],[278.02,188.28],[278.02,188.28],[278.02,188.27],[278.02,188.27],[278.02,188.26],[278.02,188.25],[278.02,188.24],[278.02,188.23],[278.02,188.21],[278.02,188.21],[278.02,188.2],[278.02,188.2],[278.02,188.19],[278.02,188.18],[278.02,188.18],[278.02,188.18],[278.02,188.18],[278.02,188.17],[278.02,188.17],[278.02,188.16],[278.02,188.16],[278.02,188.15],[278.03,188.14],[278.03,188.13],[278.03,188.11],[278.03,188.11],[278.03,188.08],[278.03,188.08],[278.04,188.06],[278.04,188.05],[278.04,188.05],[278.04,188.04],[278.04,188.04],[278.04,188.03],[278.04,188.02],[278.04,188.02],[278.05,188.01],[278.05,188],[278.05,187.99],[278.05,187.99],[278.05,187.98],[278.05,187.98],[278.05,187.97],[278.06,187.97],[278.06,187.96],[278.06,187.95],[278.07,187.94],[278.07,187.93],[278.08,187.92],[278.08,187.91],[278.08,187.91],[278.09,187.9],[278.09,187.89],[278.09,187.89],[278.09,187.88],[278.09,187.88],[278.1,187.87],[278.1,187.86],[278.1,187.85],[278.1,187.85],[278.1,187.83],[278.11,187.82],[278.11,187.81],[278.11,187.81],[278.11,187.8],[278.11,187.79],[278.12,187.79],[278.12,187.78],[278.13,187.76],[278.13,187.75],[278.13,187.74],[278.14,187.74],[278.14,187.73],[278.14,187.73],[278.14,187.72],[278.15,187.72],[278.15,187.71],[278.16,187.7],[278.16,187.69],[278.17,187.68],[278.17,187.68],[278.18,187.67],[278.19,187.66],[278.19,187.65],[278.25,187.59],[278.26,187.58],[278.27,187.57],[278.28,187.56],[278.28,187.56],[278.29,187.55],[278.29,187.54],[278.3,187.54],[278.31,187.53],[278.31,187.53],[278.32,187.53],[278.32,187.52],[278.33,187.52],[278.33,187.52],[278.34,187.51],[278.35,187.51],[278.35,187.5],[278.36,187.5],[278.37,187.5],[278.38,187.49],[278.4,187.48],[278.4,187.48],[278.41,187.48],[278.42,187.47],[278.43,187.47],[278.43,187.47],[278.43,187.46],[278.44,187.46],[278.45,187.46],[278.45,187.45],[278.46,187.45],[278.47,187.44],[278.48,187.43],[278.48,187.43],[278.49,187.42],[278.5,187.41],[278.54,187.38],[278.55,187.37],[278.55,187.36],[278.56,187.36],[278.57,187.35],[278.57,187.35],[278.58,187.34],[278.59,187.34],[278.59,187.33],[278.6,187.33],[278.61,187.32],[278.61,187.32],[278.62,187.31],[278.63,187.31],[278.63,187.31],[278.68,187.28],[278.74,187.25],[278.76,187.24],[278.76,187.23],[278.77,187.23],[278.78,187.22],[278.78,187.22],[278.79,187.21],[278.79,187.21],[278.8,187.21],[278.81,187.2],[278.81,187.2],[278.81,187.19],[278.82,187.19],[278.82,187.18],[278.83,187.18],[278.84,187.17],[278.84,187.17],[278.84,187.16],[278.85,187.16],[278.85,187.15],[278.85,187.15],[278.85,187.15],[278.86,187.14],[278.86,187.14],[278.86,187.13],[278.87,187.13],[278.87,187.12],[278.88,187.11],[278.88,187.11],[278.89,187.1],[278.89,187.09],[278.89,187.08],[278.9,187.07],[278.9,187.07],[278.9,187.06],[278.9,187.05],[278.91,187.04],[278.91,187.03],[278.91,187.03],[278.91,187.02],[278.91,187.02],[278.91,187.01],[278.92,187],[278.92,186.99],[278.92,186.98],[278.92,186.98],[278.92,186.97],[278.92,186.91],[278.92,186.9],[278.93,186.9],[278.93,186.89],[278.93,186.89],[278.93,186.88],[278.93,186.87],[278.93,186.87],[278.93,186.86],[278.93,186.86],[278.94,186.85],[278.94,186.84],[278.94,186.83],[278.95,186.81],[278.96,186.79],[278.97,186.76],[278.97,186.75],[278.97,186.74],[278.97,186.74],[278.98,186.72],[278.98,186.72],[278.98,186.71],[278.98,186.71],[278.98,186.7],[278.98,186.69],[278.99,186.69],[278.99,186.67],[278.99,186.67],[278.99,186.66],[278.99,186.65],[278.99,186.64],[278.99,186.63],[278.99,186.62],[278.99,186.62],[278.99,186.61],[278.99,186.59],[278.99,186.58],[278.99,186.57],[278.99,186.55],[278.99,186.54],[278.99,186.54],[278.99,186.53],[278.99,186.52],[278.99,186.51],[278.99,186.51],[278.99,186.5],[278.99,186.49],[278.99,186.48],[278.99,186.48],[278.98,186.47],[278.98,186.46],[278.98,186.46],[278.98,186.45],[278.98,186.45],[278.98,186.44],[278.98,186.43],[278.97,186.43],[278.97,186.42],[278.96,186.39],[278.96,186.38],[278.95,186.37],[278.95,186.36],[278.95,186.36],[278.95,186.35],[278.95,186.35],[278.95,186.34],[278.95,186.34],[278.95,186.34],[278.95,186.33],[278.95,186.33],[278.95,186.32],[278.95,186.32],[278.95,186.31],[278.95,186.31],[278.95,186.3],[278.95,186.29],[278.95,186.28],[278.95,186.28],[278.95,186.27],[278.96,186.22],[278.96,186.18],[278.96,186.18],[278.97,186.16],[278.97,186.15],[278.97,186.14],[278.97,186.13],[278.97,186.13],[278.97,186.12],[278.98,186.11],[278.98,186.11],[278.98,186.1],[278.98,186.09],[278.99,186.08],[279,186.07],[279,186.06],[279.01,186.04],[279.01,186.04],[279.03,186.01],[279.04,186],[279.04,185.98],[279.06,185.96],[279.07,185.94],[279.07,185.94],[279.07,185.93],[279.08,185.92],[279.08,185.91],[279.08,185.9],[279.09,185.9],[279.09,185.89],[279.09,185.89],[279.09,185.88],[279.1,185.87],[279.1,185.86],[279.11,185.83],[279.11,185.8],[279.12,185.77],[279.12,185.76],[279.12,185.75],[279.12,185.74],[279.12,185.74],[279.12,185.73],[279.12,185.72],[279.13,185.71],[279.13,185.7],[279.13,185.69],[279.12,185.68],[279.12,185.67],[279.12,185.67],[279.12,185.66],[279.12,185.65],[279.12,185.64],[279.12,185.62],[279.12,185.62],[279.11,185.57],[279.11,185.56],[279.11,185.55],[279.11,185.55],[279.11,185.54],[279.11,185.53],[279.11,185.53],[279.11,185.52],[279.11,185.51],[279.11,185.51],[279.11,185.5],[279.12,185.47],[279.12,185.45],[279.12,185.45],[279.12,185.44],[279.12,185.42],[279.13,185.41],[279.13,185.4],[279.13,185.39],[279.13,185.38],[279.13,185.37],[279.14,185.35],[279.14,185.35],[279.14,185.34],[279.14,185.33],[279.15,185.32],[279.15,185.31],[279.16,185.3],[279.16,185.29],[279.2,185.2],[279.2,185.19],[279.22,185.15],[279.22,185.14],[279.22,185.13],[279.23,185.1],[279.24,185.1],[279.25,185.08],[279.25,185.07],[279.26,185.06],[279.26,185.06],[279.26,185.05],[279.27,185.04],[279.27,185.03],[279.28,185.02],[279.31,184.98],[279.31,184.98],[279.32,184.97],[279.32,184.96],[279.32,184.96],[279.33,184.95],[279.33,184.95],[279.33,184.95],[279.33,184.94],[279.34,184.93],[279.34,184.93],[279.34,184.92],[279.34,184.91],[279.34,184.91],[279.35,184.9],[279.35,184.9],[279.35,184.9],[279.35,184.89],[279.35,184.89],[279.35,184.88],[279.35,184.88],[279.35,184.87],[279.35,184.87],[279.35,184.86],[279.35,184.85],[279.35,184.85],[279.35,184.84],[279.35,184.84],[279.35,184.83],[279.35,184.82],[279.35,184.82],[279.35,184.8],[279.35,184.8],[279.34,184.74],[279.34,184.73],[279.34,184.72],[279.34,184.71],[279.34,184.69],[279.34,184.69],[279.34,184.68],[279.33,184.66],[279.33,184.64],[279.33,184.62],[279.33,184.61],[279.34,184.6],[279.34,184.59],[279.34,184.58],[279.34,184.57],[279.34,184.56],[279.34,184.55],[279.34,184.54],[279.34,184.53],[279.34,184.52],[279.35,184.5],[279.35,184.49],[279.35,184.49],[279.35,184.47],[279.35,184.47],[279.36,184.46],[279.36,184.46],[279.36,184.45],[279.36,184.44],[279.37,184.44],[279.37,184.43],[279.37,184.42],[279.37,184.41],[279.38,184.4],[279.38,184.4],[279.39,184.39],[279.39,184.38],[279.39,184.38],[279.4,184.37],[279.4,184.37],[279.4,184.36],[279.41,184.36],[279.41,184.35],[279.41,184.35],[279.42,184.34],[279.42,184.34],[279.42,184.34],[279.43,184.33],[279.43,184.32],[279.44,184.32],[279.45,184.3],[279.46,184.29],[279.47,184.29],[279.47,184.28],[279.47,184.28],[279.48,184.27],[279.48,184.27],[279.48,184.27],[279.49,184.26],[279.49,184.26],[279.49,184.25],[279.49,184.25],[279.5,184.24],[279.5,184.24],[279.5,184.23],[279.51,184.21],[279.52,184.19],[279.52,184.18],[279.53,184.17],[279.53,184.16],[279.53,184.16],[279.53,184.15],[279.53,184.14],[279.53,184.14],[279.54,184.13],[279.54,184.13],[279.54,184.12],[279.54,184.1],[279.55,184.08],[279.55,184.07],[279.55,184.06],[279.55,184.06],[279.55,184.05],[279.55,184.04],[279.55,184.04],[279.55,184.03],[279.56,184.03],[279.56,184.02],[279.56,184],[279.57,183.99],[279.57,183.99],[279.57,183.98],[279.58,183.97],[279.58,183.97],[279.58,183.97],[279.58,183.96],[279.59,183.95],[279.59,183.95],[279.59,183.94],[279.6,183.94],[279.6,183.93],[279.6,183.92],[279.61,183.91],[279.62,183.9],[279.63,183.89],[279.63,183.88],[279.63,183.88],[279.64,183.87],[279.64,183.86],[279.65,183.85],[279.65,183.83],[279.66,183.82],[279.66,183.81],[279.66,183.8],[279.67,183.8],[279.67,183.77],[279.71,183.65],[279.72,183.6],[279.73,183.59],[279.73,183.58],[279.73,183.58],[279.73,183.57],[279.73,183.57],[279.73,183.55],[279.74,183.54],[279.74,183.53],[279.74,183.53],[279.74,183.53],[279.74,183.52],[279.74,183.51],[279.74,183.51],[279.74,183.5],[279.74,183.5],[279.74,183.49],[279.74,183.49],[279.74,183.48],[279.75,183.45],[279.75,183.41],[279.75,183.4],[279.75,183.4],[279.75,183.39],[279.75,183.38],[279.75,183.38],[279.75,183.37],[279.75,183.36],[279.75,183.36],[279.75,183.35],[279.76,183.34],[279.76,183.33],[279.76,183.33],[279.76,183.31],[279.77,183.29],[279.77,183.28],[279.78,183.27],[279.78,183.26],[279.78,183.26],[279.78,183.25],[279.78,183.24],[279.78,183.23],[279.78,183.21],[279.79,183.19],[279.79,183.18],[279.79,183.17],[279.79,183.17],[279.79,183.16],[279.79,183.16],[279.8,183.15],[279.8,183.14],[279.8,183.13],[279.81,183.12],[279.81,183.11],[279.81,183.11],[279.81,183.1],[279.82,183.09],[279.82,183.08],[279.83,183.07],[279.83,183.06],[279.84,183.05],[279.85,183.03],[279.85,183.02],[279.86,183.01],[279.86,183],[279.87,182.99],[279.87,182.98],[279.87,182.97],[279.88,182.95],[279.88,182.94],[279.89,182.93],[279.89,182.93],[279.89,182.93],[279.89,182.92],[279.89,182.92],[279.89,182.92],[279.89,182.91],[279.89,182.91],[279.9,182.91],[279.9,182.91],[279.9,182.91],[279.9,182.9],[279.9,182.9],[279.9,182.9],[279.91,182.88],[279.92,182.88],[279.92,182.88],[279.92,182.87],[279.92,182.87],[279.92,182.87],[279.92,182.86],[279.93,182.86],[279.93,182.86],[279.93,182.85],[279.93,182.85],[279.93,182.85],[279.93,182.84],[279.93,182.84],[279.93,182.84],[279.94,182.84],[279.94,182.83],[279.94,182.83],[279.94,182.82],[279.94,182.82],[279.94,182.81],[279.94,182.81],[279.94,182.81],[279.94,182.81],[279.94,182.8],[279.94,182.8],[279.94,182.8],[279.94,182.79],[279.94,182.79],[279.94,182.79],[279.94,182.78],[279.94,182.78],[279.94,182.77],[279.93,182.77],[279.93,182.76],[279.93,182.75],[279.93,182.75],[279.93,182.74],[279.92,182.73],[279.92,182.73],[279.92,182.72],[279.92,182.72],[279.92,182.72],[279.92,182.71],[279.92,182.71],[279.92,182.7],[279.92,182.7],[279.92,182.7],[279.92,182.69],[279.92,182.69],[279.92,182.69],[279.92,182.68],[279.92,182.68],[279.92,182.67],[279.92,182.67],[279.92,182.66],[279.92,182.66],[279.93,182.65],[279.93,182.64],[279.93,182.63],[279.93,182.61],[279.94,182.61],[279.94,182.6],[279.94,182.6],[279.94,182.6],[279.94,182.59],[279.94,182.58],[279.94,182.58],[279.95,182.57],[279.95,182.57],[279.95,182.55],[279.96,182.53],[279.96,182.52],[279.96,182.51],[279.96,182.51],[279.97,182.5],[279.97,182.5],[279.97,182.5],[279.97,182.49],[279.97,182.49],[279.97,182.48],[279.97,182.48],[279.98,182.47],[279.98,182.47],[279.98,182.46],[279.99,182.45],[280,182.43],[280,182.41],[280.01,182.4],[280.02,182.38],[280.02,182.37],[280.03,182.36],[280.03,182.36],[280.03,182.35],[280.03,182.34],[280.04,182.33],[280.05,182.31],[280.05,182.31],[280.05,182.3],[280.06,182.29],[280.06,182.29],[280.06,182.29],[280.06,182.28],[280.06,182.28],[280.06,182.27],[280.06,182.27],[280.06,182.27],[280.06,182.27],[280.07,182.26],[280.07,182.26],[280.07,182.26],[280.07,182.25],[280.07,182.25],[280.07,182.25],[280.07,182.25],[280.07,182.24],[280.07,182.24],[280.07,182.24],[280.07,182.24],[280.07,182.23],[280.07,182.23],[280.07,182.22],[280.07,182.22],[280.07,182.22],[280.07,182.21],[280.07,182.21],[280.07,182.2],[280.07,182.2],[280.07,182.2],[280.07,182.19],[280.07,182.19],[280.07,182.18],[280.06,182.18],[280.06,182.17],[280.06,182.17],[280.06,182.16],[280.04,182.12],[280.04,182.1],[280.03,182.09],[280.02,182.07],[280.02,182.06],[280.02,182.06],[280.02,182.05],[280.02,182.05],[280.02,182.05],[280.02,182.05],[280.02,182.04],[280.02,182.04],[280.02,182.04],[280.02,182.03],[280.02,182.03],[280.02,182.03],[280.02,182.03],[280.02,182.03],[280.02,182.03],[280.02,182.02],[280.02,182.02],[280.02,182.02],[280.03,182.02],[280.03,182.01],[280.03,182.01],[280.05,181.97],[280.05,181.97],[280.05,181.97],[280.06,181.95],[280.06,181.95],[280.06,181.95],[280.07,181.94],[280.07,181.94],[280.07,181.94],[280.07,181.94],[280.07,181.94],[280.07,181.94],[280.08,181.93],[280.08,181.93],[280.08,181.93],[280.08,181.93],[280.08,181.93],[280.09,181.93],[280.09,181.93],[280.09,181.92],[280.09,181.92],[280.1,181.92],[280.1,181.92],[280.11,181.92],[280.11,181.92],[280.11,181.91],[280.12,181.91],[280.12,181.91],[280.12,181.91],[280.12,181.91],[280.12,181.91],[280.13,181.91],[280.13,181.9],[280.13,181.9],[280.13,181.9],[280.14,181.9],[280.14,181.89],[280.14,181.89],[280.14,181.89],[280.14,181.89],[280.14,181.89],[280.14,181.88],[280.14,181.88],[280.15,181.88],[280.15,181.88],[280.15,181.87],[280.15,181.87],[280.15,181.87],[280.15,181.86],[280.16,181.82],[280.17,181.77],[280.18,181.75],[280.18,181.74],[280.18,181.72],[280.19,181.71],[280.19,181.7],[280.19,181.69],[280.19,181.68],[280.19,181.67],[280.19,181.67],[280.2,181.65],[280.2,181.64],[280.2,181.63],[280.2,181.63],[280.2,181.63],[280.2,181.62],[280.2,181.62],[280.2,181.62],[280.2,181.62],[280.21,181.61],[280.21,181.6],[280.21,181.6],[280.21,181.6],[280.21,181.59],[280.22,181.59],[280.22,181.58],[280.22,181.58],[280.23,181.58],[280.23,181.58],[280.23,181.57],[280.23,181.57],[280.24,181.57],[280.24,181.57],[280.25,181.56],[280.26,181.55],[280.27,181.54],[280.27,181.54],[280.28,181.53],[280.28,181.53],[280.29,181.52],[280.29,181.52],[280.29,181.51],[280.3,181.51],[280.3,181.51],[280.31,181.5],[280.31,181.49],[280.31,181.49],[280.33,181.46],[280.34,181.45],[280.34,181.45],[280.34,181.44],[280.35,181.43],[280.36,181.42],[280.36,181.42],[280.36,181.41],[280.37,181.41],[280.37,181.4],[280.38,181.39],[280.39,181.39],[280.39,181.38],[280.4,181.38],[280.4,181.37],[280.41,181.37],[280.42,181.36],[280.42,181.35],[280.43,181.35],[280.43,181.35],[280.44,181.34],[280.45,181.33],[280.46,181.33],[280.48,181.32],[280.48,181.31],[280.49,181.31],[280.5,181.3],[280.5,181.3],[280.51,181.29],[280.52,181.29],[280.53,181.28],[280.54,181.28],[280.56,181.27],[280.56,181.27],[280.57,181.26],[280.58,181.26],[280.6,181.25],[280.63,181.24],[280.64,181.24],[280.64,181.24],[280.64,181.23],[280.66,181.23],[280.66,181.23],[280.69,181.22],[280.7,181.21],[280.72,181.21],[280.74,181.2],[280.76,181.19],[280.77,181.19],[280.78,181.18],[280.78,181.18],[280.79,181.18],[280.8,181.17],[280.81,181.17],[280.82,181.17],[280.83,181.16],[280.83,181.16],[280.85,181.15],[280.86,181.14],[280.87,181.14],[280.88,181.13],[280.9,181.13],[280.92,181.12],[280.92,181.11],[280.93,181.11],[280.94,181.11],[280.95,181.1],[280.96,181.1],[280.97,181.1],[280.97,181.1],[280.98,181.09],[281,181.09],[281.01,181.09],[281.03,181.08],[281.03,181.08],[281.04,181.08],[281.05,181.08],[281.06,181.07],[281.06,181.07],[281.07,181.07],[281.08,181.06],[281.09,181.06],[281.1,181.06],[281.1,181.05],[281.11,181.05],[281.12,181.04],[281.13,181.04],[281.14,181.03],[281.15,181.02],[281.18,181.01],[281.2,180.99],[281.22,180.98],[281.23,180.98],[281.24,180.97],[281.26,180.96],[281.26,180.96],[281.27,180.96],[281.27,180.96],[281.28,180.96],[281.32,180.94],[281.32,180.94],[281.32,180.94],[281.33,180.93],[281.34,180.93],[281.35,180.92],[281.36,180.92],[281.37,180.91],[281.38,180.91],[281.38,180.91],[281.39,180.9],[281.4,180.9],[281.41,180.89],[281.46,180.85],[281.48,180.84],[281.49,180.83],[281.52,180.81],[281.56,180.79],[281.56,180.78],[281.57,180.78],[281.58,180.77],[281.59,180.77],[281.6,180.76],[281.62,180.75],[281.62,180.75],[281.65,180.74],[281.68,180.72],[281.75,180.69],[281.82,180.66],[281.83,180.65],[281.85,180.64],[281.86,180.63],[281.87,180.63],[281.88,180.62],[281.89,180.62],[281.89,180.61],[281.91,180.6],[281.92,180.59],[281.94,180.58],[281.95,180.57],[281.95,180.57],[281.96,180.56],[281.97,180.55],[281.98,180.55],[282,180.52],[282.03,180.5],[282.04,180.49],[282.04,180.49],[282.05,180.48],[282.06,180.47],[282.07,180.47],[282.08,180.46],[282.09,180.45],[282.11,180.44],[282.12,180.43],[282.15,180.41],[282.17,180.4],[282.18,180.39],[282.18,180.39],[282.19,180.38],[282.24,180.34],[282.25,180.34],[282.26,180.33],[282.28,180.31],[282.3,180.3],[282.32,180.29],[282.33,180.28],[282.35,180.27],[282.36,180.26],[282.38,180.25],[282.39,180.24],[282.41,180.24],[282.42,180.23],[282.43,180.23],[282.45,180.22],[282.48,180.21],[282.49,180.2],[282.51,180.2],[282.51,180.2],[282.52,180.19],[282.54,180.19],[282.55,180.18],[282.56,180.18],[282.56,180.18],[282.57,180.18],[282.58,180.18],[282.59,180.17],[282.61,180.17],[282.62,180.17],[282.63,180.17],[282.64,180.17],[282.64,180.16],[282.65,180.16],[282.66,180.16],[282.66,180.16],[282.67,180.16],[282.68,180.16],[282.68,180.16],[282.69,180.16],[282.7,180.16],[282.7,180.16],[282.71,180.16],[282.71,180.16],[282.72,180.16],[282.73,180.16],[282.73,180.16],[282.74,180.16],[282.74,180.16],[282.75,180.16],[282.76,180.16],[282.77,180.16],[282.78,180.16],[282.8,180.16],[282.81,180.16],[282.81,180.17],[282.82,180.17],[282.83,180.17],[282.84,180.17],[282.85,180.17],[282.86,180.16],[282.86,180.16],[282.87,180.16],[282.88,180.16],[282.88,180.16],[282.89,180.16],[282.89,180.16],[282.9,180.16],[282.9,180.16],[282.91,180.16],[282.92,180.16],[282.93,180.15],[282.94,180.15],[282.95,180.15],[282.96,180.15],[282.96,180.14],[282.97,180.14],[282.98,180.14],[282.98,180.14],[282.99,180.14],[283,180.14],[283,180.14],[283.01,180.14],[283.02,180.14],[283.02,180.14],[283.03,180.14],[283.03,180.14],[283.03,180.14],[283.04,180.14],[283.05,180.14],[283.05,180.14],[283.06,180.14],[283.06,180.14],[283.07,180.14],[283.08,180.14],[283.08,180.14],[283.09,180.14],[283.1,180.14],[283.1,180.14],[283.15,180.15],[283.2,180.15],[283.22,180.15],[283.24,180.16],[283.29,180.16],[283.31,180.16],[283.32,180.16],[283.34,180.17],[283.35,180.17],[283.36,180.17],[283.38,180.17],[283.38,180.17],[283.39,180.17],[283.4,180.17],[283.4,180.17],[283.41,180.17],[283.43,180.17],[283.44,180.17],[283.44,180.17],[283.46,180.17],[283.46,180.16],[283.47,180.16],[283.48,180.16],[283.49,180.16],[283.49,180.16],[283.51,180.16],[283.51,180.16],[283.52,180.16],[283.52,180.16],[283.53,180.15],[283.54,180.15],[283.54,180.15],[283.55,180.15],[283.56,180.15],[283.57,180.15],[283.57,180.14],[283.58,180.14],[283.58,180.14],[283.59,180.14],[283.59,180.14],[283.59,180.14],[283.6,180.14],[283.6,180.13],[283.61,180.13],[283.61,180.13],[283.61,180.13],[283.62,180.12],[283.62,180.12],[283.63,180.12],[283.63,180.12],[283.64,180.11],[283.65,180.11],[283.65,180.1],[283.66,180.1],[283.66,180.09],[283.66,180.09],[283.67,180.08],[283.67,180.08],[283.68,180.08],[283.68,180.07],[283.68,180.07],[283.69,180.06],[283.69,180.06],[283.69,180.06],[283.69,180.05],[283.7,180.05],[283.7,180.05],[283.7,180.04],[283.7,180.04],[283.71,180.03],[283.71,180.03],[283.71,180.02],[283.72,180.01],[283.73,179.99],[283.73,179.98],[283.73,179.98],[283.74,179.97],[283.74,179.97],[283.74,179.96],[283.75,179.96],[283.75,179.95],[283.76,179.94],[283.76,179.94],[283.76,179.93],[283.76,179.93],[283.77,179.93],[283.77,179.92],[283.78,179.91],[283.78,179.91],[283.79,179.9],[283.8,179.88],[283.82,179.86],[283.83,179.86],[283.83,179.85],[283.84,179.84],[283.84,179.84],[283.85,179.83],[283.85,179.82],[283.86,179.82],[283.86,179.81],[283.86,179.81],[283.87,179.8],[283.87,179.79],[283.88,179.78],[283.9,179.74],[283.91,179.73],[283.91,179.73],[283.92,179.72],[283.92,179.72],[283.92,179.71],[283.93,179.71],[283.93,179.7],[283.94,179.69],[283.95,179.68],[283.95,179.68],[283.96,179.67],[283.96,179.67],[283.97,179.66],[283.97,179.66],[283.98,179.65],[284,179.64],[284.01,179.63],[284.02,179.62],[284.02,179.62],[284.02,179.61],[284.03,179.61],[284.04,179.6],[284.08,179.58],[284.1,179.56],[284.12,179.55],[284.13,179.54],[284.14,179.54],[284.14,179.53],[284.15,179.53],[284.16,179.52],[284.16,179.52],[284.17,179.51],[284.17,179.51],[284.18,179.5],[284.18,179.5],[284.19,179.49],[284.2,179.48],[284.23,179.45],[284.24,179.44],[284.25,179.43],[284.25,179.43],[284.26,179.42],[284.26,179.42],[284.27,179.41],[284.28,179.4],[284.29,179.39],[284.3,179.39],[284.3,179.39],[284.31,179.38],[284.32,179.38],[284.32,179.37],[284.33,179.37],[284.34,179.37],[284.34,179.36],[284.35,179.36],[284.37,179.35],[284.39,179.34],[284.39,179.34],[284.4,179.33],[284.41,179.33],[284.41,179.33],[284.42,179.32],[284.43,179.32],[284.44,179.31],[284.44,179.3],[284.46,179.3],[284.46,179.29],[284.47,179.29],[284.48,179.28],[284.48,179.27],[284.5,179.26],[284.52,179.24],[284.52,179.24],[284.53,179.23],[284.54,179.22],[284.55,179.21],[284.56,179.21],[284.57,179.2],[284.58,179.19],[284.59,179.18],[284.6,179.18],[284.61,179.17],[284.63,179.16],[284.64,179.15],[284.65,179.14],[284.66,179.14],[284.67,179.13],[284.68,179.12],[284.7,179.11],[284.71,179.1],[284.72,179.09],[284.72,179.08],[284.74,179.07],[284.75,179.06],[284.76,179.05],[284.79,179.02],[284.8,179],[284.81,178.99],[284.82,178.98],[284.83,178.96],[284.85,178.95],[284.86,178.94],[284.86,178.94],[284.87,178.93],[284.87,178.93],[284.88,178.92],[284.89,178.91],[284.9,178.9],[284.91,178.89],[284.92,178.89],[284.93,178.88],[284.94,178.87],[284.96,178.85],[284.98,178.84],[284.99,178.84],[284.99,178.83],[285,178.83],[285.01,178.82],[285.02,178.81],[285.03,178.81],[285.03,178.8],[285.04,178.79],[285.05,178.78],[285.06,178.78],[285.06,178.77],[285.07,178.77],[285.07,178.76],[285.08,178.75],[285.09,178.74],[285.09,178.74],[285.1,178.73],[285.1,178.72],[285.11,178.71],[285.11,178.71],[285.12,178.7],[285.18,178.61],[285.22,178.56],[285.22,178.56],[285.23,178.55],[285.23,178.54],[285.23,178.54],[285.24,178.53],[285.25,178.52],[285.26,178.51],[285.27,178.5],[285.27,178.5],[285.28,178.49],[285.29,178.48],[285.3,178.47],[285.31,178.47],[285.31,178.46],[285.32,178.46],[285.33,178.45],[285.33,178.44],[285.36,178.43],[285.36,178.43],[285.38,178.41],[285.39,178.4],[285.4,178.4],[285.41,178.39],[285.42,178.38],[285.43,178.37],[285.44,178.36],[285.45,178.36],[285.45,178.35],[285.46,178.34],[285.47,178.33],[285.48,178.32],[285.49,178.31],[285.5,178.3],[285.53,178.26],[285.54,178.25],[285.54,178.25],[285.55,178.24],[285.56,178.23],[285.57,178.22],[285.58,178.21],[285.58,178.2],[285.59,178.2],[285.59,178.19],[285.6,178.19],[285.61,178.18],[285.61,178.18],[285.63,178.17],[285.63,178.16],[285.64,178.16],[285.65,178.15],[285.68,178.13],[285.7,178.12],[285.71,178.11],[285.72,178.1],[285.73,178.1],[285.73,178.09],[285.75,178.08],[285.76,178.07],[285.77,178.06],[285.77,178.06],[285.78,178.05],[285.79,178.05],[285.79,178.04],[285.8,178.03],[285.82,178.01],[285.83,178],[285.86,177.97],[285.88,177.95],[285.89,177.94],[285.89,177.93],[285.9,177.93],[285.91,177.92],[285.92,177.91],[285.92,177.91],[285.93,177.9],[285.94,177.89],[285.95,177.89],[285.96,177.88],[285.97,177.87],[285.97,177.87],[285.97,177.87],[285.98,177.87],[285.98,177.86],[285.99,177.86],[285.99,177.86],[285.99,177.86],[286,177.85],[286,177.85],[286.01,177.85],[286.01,177.84],[286.02,177.84],[286.03,177.83],[286.04,177.83],[286.04,177.83],[286.05,177.83],[286.06,177.82],[286.06,177.82],[286.07,177.82],[286.07,177.82],[286.07,177.81],[286.08,177.81],[286.08,177.81],[286.09,177.81],[286.1,177.81],[286.1,177.8],[286.11,177.8],[286.12,177.8],[286.13,177.8],[286.14,177.79],[286.14,177.79],[286.15,177.79],[286.15,177.79],[286.16,177.79],[286.16,177.79],[286.17,177.79],[286.18,177.79],[286.21,177.78],[286.26,177.77],[286.28,177.77],[286.29,177.76],[286.3,177.76],[286.31,177.76],[286.31,177.76],[286.32,177.76],[286.32,177.76],[286.33,177.76],[286.33,177.76],[286.34,177.76],[286.35,177.76],[286.35,177.76],[286.36,177.76],[286.36,177.76],[286.37,177.76],[286.38,177.76],[286.38,177.76],[286.39,177.76],[286.4,177.76],[286.4,177.76],[286.41,177.76],[286.43,177.77],[286.44,177.77],[286.44,177.77],[286.44,177.77],[286.45,177.77],[286.45,177.77],[286.45,177.77],[286.45,177.77],[286.46,177.77],[286.46,177.77],[286.46,177.77],[286.47,177.77],[286.47,177.76],[286.47,177.76],[286.48,177.76],[286.48,177.76],[286.48,177.76],[286.48,177.76],[286.49,177.76],[286.49,177.75],[286.49,177.75],[286.49,177.75],[286.5,177.75],[286.5,177.75],[286.5,177.75],[286.5,177.74],[286.5,177.74],[286.51,177.74],[286.51,177.73],[286.51,177.73],[286.51,177.73],[286.51,177.73],[286.52,177.72],[286.52,177.72],[286.52,177.72],[286.52,177.72],[286.52,177.71],[286.52,177.71],[286.52,177.71],[286.52,177.7],[286.52,177.7],[286.52,177.7],[286.52,177.7],[286.52,177.69],[286.52,177.69],[286.52,177.69],[286.52,177.68],[286.52,177.68],[286.52,177.68],[286.52,177.67],[286.52,177.66],[286.52,177.64],[286.52,177.64],[286.52,177.63],[286.52,177.63],[286.52,177.62],[286.52,177.62],[286.52,177.61],[286.52,177.61],[286.52,177.6],[286.52,177.6],[286.52,177.6],[286.52,177.59],[286.52,177.58],[286.52,177.57],[286.52,177.56],[286.52,177.56],[286.52,177.54],[286.52,177.54],[286.52,177.53],[286.52,177.53],[286.52,177.52],[286.52,177.51],[286.52,177.51],[286.52,177.5],[286.52,177.5],[286.52,177.49],[286.52,177.48],[286.52,177.48],[286.52,177.47],[286.52,177.46],[286.52,177.43],[286.52,177.43],[286.52,177.42],[286.52,177.41],[286.52,177.4],[286.52,177.4],[286.52,177.39],[286.52,177.39],[286.52,177.39],[286.52,177.38],[286.52,177.38],[286.52,177.37],[286.52,177.37],[286.52,177.36],[286.52,177.35],[286.52,177.34],[286.52,177.34],[286.52,177.33],[286.52,177.32],[286.52,177.31],[286.53,177.31],[286.53,177.3],[286.53,177.29],[286.53,177.29],[286.53,177.28],[286.53,177.28],[286.53,177.27],[286.54,177.27],[286.54,177.26],[286.54,177.26],[286.54,177.26],[286.54,177.25],[286.55,177.23],[286.55,177.22],[286.56,177.22],[286.56,177.21],[286.56,177.21],[286.56,177.2],[286.56,177.2],[286.56,177.2],[286.56,177.19],[286.57,177.19],[286.57,177.18],[286.57,177.18],[286.57,177.17],[286.57,177.16],[286.57,177.15],[286.57,177.15],[286.57,177.14],[286.58,177.13],[286.58,177.13],[286.58,177.12],[286.58,177.12],[286.58,177.11],[286.58,177.11],[286.58,177.1],[286.58,177.09],[286.58,177.09],[286.58,177.08],[286.58,177.08],[286.58,177.07],[286.58,177.06],[286.57,177.05],[286.57,177.04],[286.57,177.03],[286.57,177.02],[286.57,177.02],[286.57,177.01],[286.56,177],[286.56,176.99],[286.56,176.99],[286.56,176.97],[286.55,176.97],[286.55,176.96],[286.55,176.95],[286.53,176.92],[286.52,176.89],[286.52,176.87],[286.51,176.86],[286.51,176.85],[286.51,176.85],[286.5,176.83],[286.5,176.81],[286.49,176.8],[286.49,176.79],[286.49,176.77],[286.48,176.74],[286.48,176.74],[286.48,176.72],[286.48,176.7],[286.47,176.69],[286.47,176.69],[286.47,176.67],[286.47,176.66],[286.47,176.65],[286.47,176.64],[286.47,176.64],[286.47,176.63],[286.47,176.62],[286.47,176.61],[286.47,176.6],[286.47,176.59],[286.47,176.58],[286.47,176.56],[286.47,176.53],[286.47,176.52],[286.47,176.51],[286.48,176.49],[286.48,176.48],[286.48,176.46],[286.5,176.39],[286.52,176.32],[286.52,176.3],[286.52,176.28],[286.53,176.26],[286.53,176.25],[286.53,176.23],[286.53,176.22],[286.53,176.19],[286.54,176.18],[286.54,176.16],[286.54,176.13],[286.54,176.1],[286.53,176.01],[286.53,175.99],[286.53,175.96],[286.53,175.96],[286.53,175.94],[286.53,175.93],[286.53,175.91],[286.53,175.9],[286.53,175.88],[286.54,175.85],[286.54,175.84],[286.54,175.82],[286.54,175.81],[286.55,175.78],[286.55,175.76],[286.55,175.74],[286.56,175.72],[286.56,175.7],[286.56,175.68],[286.56,175.66],[286.56,175.63],[286.56,175.61],[286.55,175.59],[286.55,175.57],[286.55,175.55],[286.55,175.54],[286.55,175.52],[286.55,175.51],[286.55,175.49],[286.55,175.48],[286.55,175.46],[286.55,175.44],[286.55,175.42],[286.55,175.4],[286.55,175.39],[286.55,175.37],[286.55,175.34],[286.55,175.32],[286.54,175.31],[286.54,175.29],[286.54,175.27],[286.54,175.25],[286.53,175.24],[286.53,175.21],[286.52,175.16],[286.52,175.15],[286.51,175.14],[286.51,175.13],[286.51,175.11],[286.51,175.1],[286.51,175.09],[286.51,175.07],[286.51,175.06],[286.51,175.04],[286.51,175.03],[286.51,175.02],[286.51,175.01],[286.51,174.99],[286.51,174.97],[286.52,174.96],[286.52,174.94],[286.52,174.91],[286.53,174.9],[286.53,174.89],[286.53,174.88],[286.53,174.87],[286.53,174.86],[286.53,174.84],[286.53,174.83],[286.53,174.82],[286.53,174.8],[286.53,174.79],[286.53,174.73],[286.53,174.71],[286.54,174.7],[286.54,174.69],[286.54,174.67],[286.54,174.66],[286.54,174.65],[286.54,174.65],[286.54,174.65],[286.54,174.64],[286.55,174.63],[286.55,174.61],[286.55,174.6],[286.56,174.59],[286.56,174.58],[286.56,174.57],[286.57,174.56],[286.57,174.55],[286.57,174.54],[286.57,174.53],[286.58,174.51],[286.58,174.5],[286.58,174.49],[286.58,174.48],[286.58,174.46],[286.58,174.45],[286.59,174.44],[286.59,174.37],[286.6,174.21],[286.6,174.2],[286.6,174.18],[286.6,174.16],[286.6,174.15],[286.61,174.12],[286.61,174.1],[286.61,174.08],[286.62,174.06],[286.62,174.04],[286.63,174.03],[286.63,174.01],[286.64,173.98],[286.64,173.97],[286.64,173.96],[286.65,173.93],[286.66,173.92],[286.66,173.91],[286.67,173.88],[286.69,173.83],[286.72,173.77],[286.72,173.76],[286.72,173.74],[286.73,173.73],[286.73,173.72],[286.74,173.71],[286.74,173.69],[286.74,173.68],[286.75,173.66],[286.75,173.65],[286.75,173.62],[286.75,173.62],[286.76,173.56],[286.77,173.53],[286.78,173.48],[286.78,173.45],[286.78,173.43],[286.79,173.4],[286.8,173.37],[286.8,173.34],[286.81,173.31],[286.82,173.26],[286.84,173.22],[286.86,173.12],[286.87,173.1],[286.87,173.09],[286.87,173.08],[286.87,173.06],[286.88,173.04],[286.88,173.03],[286.88,173.01],[286.88,172.99],[286.88,172.97],[286.88,172.93],[286.88,172.9],[286.88,172.87],[286.88,172.84],[286.88,172.81],[286.88,172.79],[286.88,172.78],[286.88,172.77],[286.88,172.75],[286.88,172.74],[286.88,172.73],[286.87,172.71],[286.86,172.68],[286.86,172.67],[286.86,172.66],[286.86,172.65],[286.86,172.64],[286.85,172.63],[286.85,172.61],[286.85,172.61],[286.85,172.6],[286.85,172.6],[286.85,172.59],[286.85,172.59],[286.85,172.59],[286.85,172.58],[286.85,172.58],[286.85,172.58],[286.85,172.57],[286.85,172.57],[286.85,172.57],[286.85,172.56],[286.85,172.56],[286.85,172.56],[286.85,172.56],[286.85,172.55],[286.85,172.55],[286.85,172.55],[286.85,172.54],[286.85,172.54],[286.85,172.54],[286.85,172.53],[286.85,172.53],[286.85,172.53],[286.85,172.53],[286.85,172.53],[286.85,172.53],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.52],[286.85,172.51],[286.85,172.51],[286.85,172.51],[286.86,172.5],[286.86,172.5],[286.86,172.5],[286.86,172.5],[286.86,172.49],[286.86,172.49],[286.86,172.49],[286.86,172.49],[286.86,172.49],[286.86,172.49],[286.86,172.48],[286.86,172.48],[286.86,172.48],[286.86,172.47],[286.86,172.47],[286.86,172.46],[286.86,172.46],[286.86,172.46],[286.86,172.45],[286.85,172.45],[286.85,172.45],[286.85,172.45],[286.85,172.44],[286.85,172.44],[286.85,172.44],[286.85,172.44],[286.85,172.44],[286.85,172.44],[286.85,172.43],[286.85,172.43],[286.85,172.43],[286.85,172.42],[286.85,172.42],[286.85,172.42],[286.85,172.41],[286.85,172.41],[286.85,172.4],[286.85,172.4],[286.85,172.4],[286.85,172.39],[286.85,172.39],[286.84,172.39],[286.84,172.38],[286.84,172.37],[286.84,172.36],[286.84,172.36],[286.83,172.35],[286.83,172.34],[286.83,172.34],[286.83,172.33],[286.83,172.32],[286.83,172.32],[286.83,172.31],[286.84,172.31],[286.84,172.3],[286.84,172.3],[286.84,172.29],[286.84,172.29],[286.84,172.28],[286.85,172.28],[286.85,172.28],[286.85,172.27],[286.85,172.27],[286.86,172.26],[286.86,172.26],[286.86,172.25],[286.87,172.25],[286.88,172.24],[286.88,172.24],[286.89,172.23],[286.9,172.23],[286.91,172.22],[286.92,172.22],[286.93,172.21],[286.93,172.21],[286.94,172.21],[286.95,172.2],[286.97,172.19],[286.98,172.19],[286.99,172.19],[286.99,172.18],[287,172.17],[287.01,172.16],[287.03,172.16],[287.04,172.15],[287.05,172.14],[287.07,172.13],[287.07,172.13],[287.07,172.13],[287.07,172.13],[287.08,172.13],[287.08,172.13],[287.08,172.13],[287.08,172.13],[287.08,172.13],[287.09,172.12],[287.09,172.12],[287.1,172.12],[287.1,172.12],[287.11,172.12],[287.11,172.12],[287.11,172.12],[287.11,172.12],[287.12,172.11],[287.12,172.11],[287.13,172.11],[287.13,172.11],[287.13,172.11],[287.13,172.11],[287.14,172.11],[287.14,172.11],[287.14,172.11],[287.15,172.11],[287.15,172.11],[287.15,172.11],[287.15,172.1],[287.15,172.1],[287.16,172.1],[287.16,172.1],[287.16,172.1],[287.17,172.1],[287.17,172.1],[287.18,172.1],[287.18,172.1],[287.18,172.1],[287.18,172.1],[287.18,172.1],[287.18,172.1],[287.19,172.1],[287.19,172.1],[287.19,172.1],[287.19,172.1],[287.19,172.1],[287.2,172.1],[287.2,172.09],[287.2,172.09],[287.21,172.09],[287.21,172.09],[287.21,172.09],[287.21,172.09],[287.21,172.09],[287.21,172.09],[287.22,172.09],[287.22,172.09],[287.22,172.09],[287.22,172.09],[287.22,172.09],[287.22,172.09],[287.23,172.09],[287.23,172.09],[287.23,172.09],[287.23,172.09],[287.24,172.09],[287.24,172.09],[287.24,172.08],[287.24,172.08],[287.24,172.08],[287.24,172.08],[287.24,172.08],[287.24,172.08],[287.24,172.08],[287.25,172.08],[287.25,172.08],[287.25,172.08],[287.27,172.07],[287.29,172.06],[287.31,172.05],[287.33,172.04],[287.36,172.02],[287.36,172.02],[287.36,172.02],[287.38,172.01],[287.39,172],[287.39,172],[287.39,172],[287.39,172],[287.4,172],[287.4,171.99],[287.4,171.99],[287.41,171.99],[287.41,171.99],[287.41,171.99],[287.41,171.98],[287.42,171.98],[287.42,171.98],[287.42,171.98],[287.42,171.98],[287.42,171.98],[287.42,171.98],[287.43,171.97],[287.43,171.97],[287.43,171.97],[287.43,171.97],[287.44,171.97],[287.44,171.97],[287.44,171.96],[287.44,171.96],[287.44,171.96],[287.45,171.96],[287.45,171.96],[287.45,171.95],[287.46,171.95],[287.46,171.95],[287.46,171.95],[287.46,171.94],[287.46,171.94],[287.47,171.94],[287.47,171.94],[287.47,171.94],[287.48,171.93],[287.48,171.93],[287.48,171.93],[287.48,171.93],[287.48,171.93],[287.49,171.93],[287.49,171.92],[287.49,171.92],[287.49,171.92],[287.5,171.92],[287.5,171.92],[287.5,171.91],[287.51,171.91],[287.51,171.91],[287.51,171.91],[287.52,171.91],[287.52,171.9],[287.52,171.9],[287.52,171.9],[287.53,171.9],[287.53,171.9],[287.53,171.9],[287.53,171.9],[287.54,171.89],[287.54,171.89],[287.54,171.89],[287.54,171.89],[287.55,171.89],[287.55,171.89],[287.56,171.89],[287.56,171.88],[287.56,171.88],[287.57,171.88],[287.57,171.88],[287.57,171.88],[287.57,171.88],[287.57,171.88],[287.57,171.88],[287.58,171.87],[287.59,171.87],[287.6,171.86],[287.61,171.86],[287.62,171.85],[287.63,171.85],[287.64,171.84],[287.66,171.83],[287.68,171.81],[287.68,171.81],[287.69,171.8],[287.69,171.8],[287.7,171.8],[287.7,171.79],[287.7,171.79],[287.71,171.79],[287.71,171.79],[287.72,171.79],[287.72,171.79],[287.72,171.78],[287.72,171.78],[287.73,171.78],[287.73,171.78],[287.73,171.78],[287.73,171.78],[287.74,171.78],[287.74,171.78],[287.74,171.78],[287.74,171.77],[287.75,171.77],[287.75,171.77],[287.76,171.77],[287.76,171.77],[287.76,171.77],[287.77,171.77],[287.77,171.76],[287.77,171.76],[287.77,171.76],[287.78,171.76],[287.78,171.76],[287.78,171.76],[287.78,171.76],[287.78,171.76],[287.79,171.76],[287.79,171.76],[287.79,171.76],[287.79,171.76],[287.8,171.76],[287.8,171.75],[287.8,171.75],[287.81,171.75],[287.81,171.75],[287.81,171.75],[287.81,171.75],[287.81,171.75],[287.82,171.75],[287.82,171.75],[287.83,171.75],[287.83,171.74],[287.83,171.74],[287.84,171.74],[287.84,171.74],[287.85,171.74],[287.86,171.73],[287.86,171.73],[287.87,171.73],[287.87,171.73],[287.88,171.73],[287.88,171.73],[287.88,171.73],[287.88,171.73],[287.88,171.73],[287.89,171.72],[287.89,171.72],[287.89,171.72],[287.9,171.72],[287.9,171.72],[287.91,171.72],[287.91,171.72],[287.91,171.71],[287.92,171.71],[287.92,171.71],[287.92,171.71],[287.93,171.71],[287.93,171.71],[287.94,171.71],[287.94,171.71],[287.94,171.71],[287.95,171.7],[287.95,171.7],[287.96,171.7],[287.96,171.7],[287.97,171.7],[287.97,171.69],[287.98,171.69],[287.98,171.69],[287.98,171.69],[287.98,171.69],[287.99,171.69],[287.99,171.69],[287.99,171.69],[287.99,171.69],[288.01,171.68],[288.05,171.67],[288.06,171.66],[288.08,171.65],[288.09,171.64],[288.11,171.63],[288.12,171.62],[288.12,171.62],[288.13,171.61],[288.13,171.61],[288.13,171.6],[288.14,171.6],[288.14,171.59],[288.14,171.59],[288.15,171.59],[288.15,171.58],[288.16,171.57],[288.17,171.55],[288.18,171.53],[288.2,171.51],[288.2,171.5],[288.21,171.48],[288.22,171.47],[288.23,171.46],[288.24,171.45],[288.25,171.44],[288.25,171.44],[288.26,171.43],[288.27,171.42],[288.28,171.41],[288.29,171.4],[288.3,171.4],[288.3,171.39],[288.32,171.38],[288.34,171.36],[288.37,171.33],[288.37,171.33],[288.37,171.33],[288.37,171.33],[288.37,171.33],[288.37,171.33],[288.38,171.33],[288.38,171.33],[288.38,171.33],[288.38,171.33],[288.38,171.32],[288.38,171.32],[288.38,171.32],[288.38,171.32],[288.38,171.32],[288.39,171.31],[288.41,171.29],[288.42,171.28],[288.43,171.27],[288.44,171.26],[288.45,171.24],[288.46,171.23],[288.46,171.23],[288.46,171.22],[288.46,171.22],[288.46,171.22],[288.46,171.22],[288.46,171.22],[288.46,171.21],[288.47,171.21],[288.47,171.21],[288.47,171.21],[288.47,171.21],[288.47,171.21],[288.47,171.2],[288.47,171.2],[288.47,171.2],[288.47,171.2],[288.47,171.19],[288.48,171.19],[288.48,171.19],[288.48,171.19],[288.48,171.19],[288.48,171.19],[288.48,171.18],[288.48,171.18],[288.48,171.18],[288.48,171.18],[288.48,171.18],[288.48,171.18],[288.48,171.18],[288.48,171.18],[288.49,171.17],[288.49,171.17],[288.49,171.17],[288.49,171.17],[288.49,171.17],[288.49,171.17],[288.49,171.17],[288.49,171.17],[288.49,171.17],[288.49,171.16],[288.5,171.15],[288.51,171.14],[288.54,171.11],[288.56,171.09],[288.57,171.07],[288.58,171.06],[288.59,171.05],[288.6,171.04],[288.61,171.03],[288.62,171.02],[288.63,171.01],[288.63,171.01],[288.64,171.01],[288.66,171],[288.67,170.99],[288.68,170.98],[288.69,170.97],[288.7,170.97],[288.71,170.96],[288.75,170.94],[288.76,170.94],[288.76,170.94],[288.76,170.93],[288.77,170.93],[288.77,170.93],[288.78,170.92],[288.78,170.92],[288.78,170.91],[288.79,170.91],[288.79,170.91],[288.79,170.91],[288.79,170.9],[288.79,170.9],[288.79,170.89],[288.8,170.89],[288.8,170.89],[288.8,170.88],[288.8,170.88],[288.8,170.86],[288.81,170.85],[288.81,170.85],[288.81,170.85],[288.81,170.84],[288.82,170.81],[288.82,170.8],[288.82,170.79],[288.83,170.77],[288.83,170.76],[288.83,170.76],[288.84,170.76],[288.84,170.76],[288.84,170.76],[288.85,170.76],[288.86,170.77],[288.88,170.78],[288.9,170.79],[288.91,170.79],[288.92,170.8],[288.93,170.8],[288.95,170.81],[288.97,170.81],[288.99,170.81],[288.99,170.81],[288.99,170.82],[289,170.82],[289,170.82],[289,170.82],[289,170.82],[289,170.83],[289.01,170.83],[289.01,170.83],[289.01,170.83],[289.01,170.83],[289.01,170.83],[289.02,170.83],[289.02,170.83],[289.02,170.83],[289.02,170.83],[289.02,170.83],[289.02,170.82],[289.02,170.82],[289.02,170.82],[289.02,170.82],[289.02,170.81],[289.02,170.81],[289.03,170.8],[289.03,170.79],[289.03,170.79],[289.04,170.78],[289.04,170.76],[289.05,170.75],[289.05,170.74],[289.06,170.73],[289.07,170.73],[289.07,170.72],[289.08,170.71],[289.08,170.71],[289.09,170.7],[289.09,170.7],[289.1,170.69],[289.11,170.68],[289.14,170.65],[289.16,170.63],[289.16,170.63],[289.17,170.63],[289.18,170.62],[289.18,170.62],[289.18,170.61],[289.19,170.61],[289.19,170.6],[289.19,170.6],[289.19,170.59],[289.2,170.59],[289.2,170.58],[289.2,170.57],[289.2,170.57],[289.21,170.56],[289.21,170.55],[289.23,170.53],[289.23,170.52],[289.23,170.52],[289.24,170.52],[289.24,170.5],[289.25,170.49],[289.26,170.48],[289.26,170.47],[289.27,170.46],[289.28,170.43],[289.29,170.43],[289.31,170.4],[289.32,170.38],[289.32,170.38],[289.33,170.36],[289.33,170.36],[289.34,170.35],[289.34,170.35],[289.34,170.34],[289.34,170.34],[289.34,170.33],[289.34,170.32],[289.34,170.32],[289.34,170.31],[289.34,170.31],[289.35,170.3],[289.35,170.29],[289.35,170.28],[289.35,170.28],[289.35,170.28],[289.35,170.27],[289.35,170.27],[289.35,170.27],[289.35,170.27],[289.35,170.26],[289.35,170.25],[289.35,170.25],[289.35,170.25],[289.35,170.25],[289.35,170.25],[289.35,170.25],[289.35,170.25],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.24],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.23],[289.35,170.22],[289.35,170.22],[289.35,170.22],[289.35,170.22],[289.35,170.22],[289.35,170.21],[289.35,170.21],[289.35,170.21],[289.35,170.21],[289.35,170.2],[289.35,170.2],[289.35,170.2],[289.35,170.2],[289.35,170.2],[289.35,170.19],[289.35,170.19],[289.35,170.19],[289.35,170.19],[289.35,170.19],[289.35,170.19],[289.35,170.19],[289.35,170.19],[289.35,170.18],[289.35,170.18],[289.35,170.18],[289.35,170.18],[289.35,170.18],[289.35,170.18],[289.35,170.18],[289.35,170.18],[289.35,170.18],[289.35,170.17],[289.35,170.17],[289.35,170.17],[289.35,170.17],[289.34,170.17],[289.34,170.16],[289.34,170.16],[289.34,170.15],[289.34,170.15],[289.34,170.15],[289.34,170.15],[289.34,170.15],[289.34,170.15],[289.34,170.15],[289.34,170.15],[289.34,170.14],[289.34,170.14],[289.34,170.14],[289.34,170.14],[289.34,170.14],[289.34,170.14],[289.34,170.13],[289.34,170.12],[289.34,170.12],[289.34,170.12],[289.34,170.11],[289.34,170.11],[289.34,170.11],[289.34,170.1],[289.34,170.1],[289.34,170.1],[289.34,170.09],[289.34,170.09],[289.34,170.09],[289.34,170.09],[289.34,170.09],[289.34,170.09],[289.34,170.09],[289.34,170.08],[289.34,170.08],[289.33,170.08],[289.33,170.07],[289.33,170.07],[289.33,170.06],[289.33,170.06],[289.33,170.06],[289.33,170.06],[289.33,170.06],[289.33,170.06],[289.33,170.06],[289.33,170.05],[289.33,170.05],[289.33,170.04],[289.33,170.04],[289.33,170.03],[289.34,170.02],[289.34,170.02],[289.34,170.02],[289.34,170.02],[289.34,170.01],[289.34,170.01],[289.35,170],[289.36,169.98],[289.37,169.97],[289.37,169.97],[289.37,169.97],[289.37,169.96],[289.38,169.96],[289.38,169.96],[289.38,169.95],[289.39,169.95],[289.39,169.95],[289.39,169.95],[289.39,169.94],[289.4,169.94],[289.4,169.94],[289.4,169.94],[289.4,169.93],[289.4,169.93],[289.41,169.92],[289.41,169.92],[289.41,169.92],[289.41,169.92],[289.41,169.92],[289.41,169.92],[289.42,169.92],[289.42,169.92],[289.43,169.92],[289.43,169.92],[289.44,169.92],[289.44,169.92],[289.45,169.92],[289.45,169.92],[289.46,169.91],[289.46,169.91],[289.47,169.91],[289.48,169.9],[289.5,169.89],[289.5,169.89],[289.52,169.88],[289.53,169.88],[289.53,169.87],[289.54,169.86],[289.56,169.85],[289.57,169.85],[289.57,169.84],[289.57,169.84],[289.57,169.84],[289.58,169.84],[289.59,169.83],[289.6,169.83],[289.6,169.82],[289.61,169.82],[289.61,169.82],[289.61,169.82],[289.61,169.82],[289.62,169.82],[289.63,169.82],[289.65,169.81],[289.65,169.81],[289.66,169.81],[289.66,169.81],[289.66,169.8],[289.66,169.8],[289.67,169.79],[289.69,169.78],[289.69,169.78],[289.69,169.77],[289.7,169.77],[289.71,169.76],[289.72,169.76],[289.72,169.76],[289.72,169.76],[289.72,169.75],[289.72,169.75],[289.72,169.75],[289.72,169.74],[289.73,169.74],[289.73,169.73],[289.73,169.72],[289.73,169.71],[289.73,169.71],[289.73,169.7],[289.73,169.69],[289.73,169.68],[289.73,169.68],[289.73,169.67],[289.74,169.66],[289.74,169.65],[289.74,169.64],[289.74,169.63],[289.74,169.63],[289.74,169.62],[289.74,169.62],[289.74,169.61],[289.74,169.61],[289.74,169.61],[289.74,169.6],[289.74,169.6],[289.73,169.6],[289.73,169.59],[289.73,169.59],[289.73,169.59],[289.73,169.59],[289.73,169.58],[289.73,169.58],[289.73,169.57],[289.73,169.56],[289.73,169.54],[289.73,169.53],[289.73,169.52],[289.73,169.51],[289.73,169.51],[289.73,169.51],[289.73,169.51],[289.74,169.51],[289.74,169.5],[289.74,169.5],[289.74,169.5],[289.75,169.5],[289.75,169.5],[289.75,169.5],[289.75,169.5],[289.76,169.5],[289.76,169.5],[289.77,169.49],[289.77,169.49],[289.77,169.49],[289.78,169.49],[289.8,169.48],[289.8,169.48],[289.81,169.48],[289.81,169.48],[289.81,169.48],[289.81,169.47],[289.81,169.47],[289.82,169.47],[289.82,169.46],[289.82,169.46],[289.83,169.45],[289.83,169.45],[289.83,169.45],[289.84,169.44],[289.85,169.43],[289.86,169.43],[289.87,169.42],[289.87,169.42],[289.88,169.41],[289.9,169.4],[289.9,169.4],[289.91,169.39],[289.92,169.38],[289.92,169.38],[289.93,169.37],[289.93,169.37],[289.94,169.37],[289.97,169.35],[289.98,169.35],[289.98,169.34],[289.98,169.34],[289.99,169.34],[289.99,169.34],[289.99,169.34],[289.99,169.33],[290,169.33],[290,169.33],[290,169.33],[290.01,169.33],[290.02,169.33],[290.02,169.33],[290.03,169.33],[290.03,169.33],[290.04,169.34],[290.04,169.33],[290.04,169.33],[290.05,169.33],[290.05,169.33],[290.05,169.33],[290.06,169.33],[290.06,169.33],[290.06,169.33],[290.07,169.32],[290.07,169.32],[290.07,169.31],[290.07,169.31],[290.07,169.31],[290.07,169.31],[290.07,169.31],[290.07,169.3],[290.07,169.3],[290.07,169.3],[290.07,169.3],[290.07,169.29],[290.07,169.29],[290.07,169.29],[290.07,169.28],[290.07,169.28],[290.07,169.27],[290.07,169.27],[290.07,169.26],[290.07,169.26],[290.07,169.25],[290.06,169.25],[290.06,169.25],[290.06,169.24],[290.06,169.23],[290.05,169.23],[290.05,169.22],[290.05,169.22],[290.05,169.22],[290.05,169.21],[290.05,169.21],[290.05,169.2],[290.05,169.2],[290.05,169.19],[290.05,169.19],[290.05,169.18],[290.06,169.17],[290.06,169.17],[290.06,169.16],[290.06,169.14],[290.07,169.13],[290.07,169.13],[290.07,169.13],[290.07,169.13],[290.07,169.12],[290.08,169.11],[290.08,169.1],[290.08,169.1],[290.09,169.1],[290.09,169.09],[290.09,169.08],[290.09,169.08],[290.09,169.08],[290.09,169.07],[290.09,169.07],[290.1,169.06],[290.1,169.04],[290.1,169.03],[290.1,169.03],[290.11,169.02],[290.11,168.99],[290.12,168.97],[290.12,168.96],[290.12,168.96],[290.12,168.94],[290.11,168.91],[290.11,168.9],[290.11,168.9],[290.11,168.89],[290.11,168.86],[290.1,168.85],[290.1,168.83],[290.09,168.8],[290.09,168.8],[290.09,168.78],[290.08,168.77],[290.08,168.76],[290.08,168.75],[290.08,168.74],[290.08,168.74],[290.07,168.72],[290.07,168.71],[290.07,168.7],[290.07,168.69],[290.07,168.69],[290.07,168.68],[290.07,168.68],[290.07,168.67],[290.07,168.66],[290.08,168.65],[290.08,168.65],[290.08,168.64],[290.08,168.63],[290.08,168.63],[290.09,168.63],[290.09,168.63],[290.09,168.62],[290.1,168.62],[290.1,168.61],[290.11,168.6],[290.12,168.6],[290.14,168.57],[290.16,168.56],[290.16,168.55],[290.17,168.54],[290.19,168.52],[290.2,168.51],[290.22,168.5],[290.22,168.49],[290.23,168.49],[290.23,168.48],[290.24,168.48],[290.24,168.48],[290.24,168.47],[290.25,168.47],[290.25,168.46],[290.25,168.46],[290.26,168.46],[290.26,168.45],[290.26,168.45],[290.26,168.44],[290.27,168.44],[290.27,168.43],[290.28,168.43],[290.29,168.4],[290.31,168.38],[290.31,168.38],[290.34,168.34],[290.35,168.32],[290.36,168.31],[290.37,168.29],[290.37,168.28],[290.38,168.27],[290.38,168.26],[290.38,168.26],[290.4,168.2],[290.4,168.19],[290.41,168.18],[290.41,168.18],[290.41,168.17],[290.41,168.17],[290.41,168.17],[290.41,168.16],[290.42,168.14],[290.43,168.1],[290.44,168.08],[290.44,168.08],[290.44,168.08],[290.44,168.07],[290.45,168.06],[290.45,168.04],[290.46,167.99],[290.47,167.98],[290.47,167.97],[290.47,167.96],[290.47,167.95],[290.49,167.93],[290.49,167.92],[290.49,167.92],[290.49,167.91],[290.49,167.9],[290.5,167.87],[290.5,167.87],[290.5,167.85],[290.5,167.84],[290.51,167.83],[290.51,167.83],[290.51,167.81],[290.52,167.79],[290.52,167.78],[290.52,167.77],[290.52,167.74],[290.52,167.7],[290.52,167.68],[290.52,167.67],[290.52,167.64],[290.52,167.62],[290.51,167.62],[290.51,167.61],[290.51,167.6],[290.51,167.57],[290.51,167.56],[290.51,167.54],[290.51,167.5],[290.51,167.49],[290.51,167.47],[290.51,167.47],[290.51,167.46],[290.51,167.45],[290.51,167.43],[290.51,167.41],[290.52,167.4],[290.52,167.39],[290.52,167.38],[290.52,167.37],[290.52,167.36],[290.54,167.32],[290.54,167.31],[290.54,167.29],[290.54,167.28],[290.55,167.24],[290.55,167.22],[290.56,167.21],[290.56,167.2],[290.56,167.2],[290.56,167.19],[290.57,167.18],[290.57,167.17],[290.58,167.17],[290.59,167.15],[290.6,167.13],[290.66,167.07],[290.71,167],[290.74,166.97],[290.74,166.97],[290.75,166.96],[290.77,166.94],[290.77,166.93],[290.78,166.91],[290.79,166.9],[290.79,166.87],[290.79,166.86],[290.79,166.84],[290.79,166.82],[290.8,166.81],[290.8,166.8],[290.81,166.78],[290.82,166.77],[290.82,166.76],[290.82,166.74],[290.82,166.73],[290.82,166.73],[290.82,166.71],[290.81,166.68],[290.81,166.67],[290.81,166.66],[290.81,166.65],[290.81,166.64],[290.81,166.63],[290.82,166.63],[290.82,166.62],[290.82,166.61],[290.83,166.58],[290.84,166.57],[290.85,166.55],[290.85,166.55],[290.86,166.54],[290.86,166.53],[290.87,166.51],[290.88,166.5],[290.89,166.5],[290.9,166.49],[290.91,166.48],[290.91,166.47],[290.92,166.47],[290.92,166.47],[290.94,166.46],[290.94,166.46],[290.95,166.45],[290.95,166.45],[290.97,166.43],[290.98,166.43],[290.98,166.42],[291.02,166.4],[291.04,166.39],[291.06,166.37],[291.08,166.36],[291.09,166.35],[291.12,166.3],[291.13,166.29],[291.13,166.28],[291.14,166.26],[291.15,166.25],[291.16,166.24],[291.17,166.23],[291.19,166.21],[291.21,166.19],[291.23,166.17],[291.24,166.16],[291.25,166.15],[291.26,166.13],[291.27,166.11],[291.27,166.1],[291.28,166.07],[291.29,166.06],[291.3,166.03],[291.31,166.01],[291.31,166],[291.31,166],[291.32,165.98],[291.33,165.96],[291.33,165.95],[291.34,165.93],[291.34,165.91],[291.34,165.91],[291.34,165.91],[291.34,165.9],[291.33,165.89],[291.33,165.88],[291.33,165.87],[291.32,165.85],[291.32,165.85],[291.32,165.83],[291.32,165.82],[291.31,165.81],[291.31,165.8],[291.31,165.8],[291.31,165.78],[291.3,165.74],[291.3,165.73],[291.3,165.71],[291.29,165.71],[291.29,165.7],[291.28,165.69],[291.28,165.68],[291.28,165.68],[291.28,165.67],[291.27,165.67],[291.27,165.66],[291.27,165.66],[291.27,165.65],[291.27,165.65],[291.27,165.64],[291.27,165.64],[291.27,165.63],[291.27,165.63],[291.27,165.62],[291.28,165.6],[291.28,165.59],[291.28,165.57],[291.28,165.56],[291.29,165.54],[291.29,165.53],[291.29,165.52],[291.3,165.5],[291.31,165.47],[291.31,165.46],[291.32,165.43],[291.33,165.41],[291.33,165.39],[291.34,165.38],[291.34,165.38],[291.34,165.37],[291.34,165.35],[291.36,165.31],[291.36,165.29],[291.36,165.28],[291.37,165.27],[291.37,165.26],[291.37,165.25],[291.38,165.22],[291.38,165.21],[291.38,165.2],[291.38,165.2],[291.38,165.18],[291.38,165.17],[291.38,165.16],[291.38,165.15],[291.38,165.13],[291.38,165.12],[291.38,165.11],[291.38,165.1],[291.38,165.07],[291.38,165.06],[291.38,165.05],[291.38,165.04],[291.38,165.02],[291.38,165.02],[291.38,165],[291.37,164.99],[291.37,164.98],[291.37,164.98],[291.37,164.98],[291.36,164.95],[291.36,164.93],[291.35,164.91],[291.35,164.89],[291.34,164.87],[291.34,164.84],[291.33,164.82],[291.33,164.81],[291.33,164.79],[291.33,164.79],[291.33,164.77],[291.33,164.75],[291.33,164.74],[291.33,164.73],[291.33,164.7],[291.33,164.69],[291.33,164.68],[291.33,164.67],[291.33,164.65],[291.33,164.63],[291.33,164.6],[291.33,164.59],[291.34,164.58],[291.34,164.57],[291.34,164.56],[291.34,164.55],[291.34,164.54],[291.34,164.53],[291.34,164.53],[291.34,164.52],[291.34,164.51],[291.34,164.5],[291.34,164.47],[291.34,164.46],[291.34,164.45],[291.35,164.43],[291.35,164.41],[291.36,164.39],[291.36,164.37],[291.37,164.35],[291.38,164.34],[291.39,164.3],[291.41,164.26],[291.42,164.23],[291.42,164.22],[291.42,164.21],[291.43,164.19],[291.43,164.15],[291.44,164.07],[291.44,164.05],[291.45,164.02],[291.46,163.91],[291.47,163.88],[291.47,163.84],[291.48,163.8],[291.48,163.78],[291.48,163.76],[291.49,163.74],[291.49,163.74],[291.49,163.73],[291.49,163.71],[291.5,163.66],[291.52,163.61],[291.52,163.61],[291.52,163.59],[291.53,163.55],[291.54,163.52],[291.54,163.5],[291.55,163.47],[291.56,163.43],[291.58,163.4],[291.59,163.35],[291.6,163.33],[291.61,163.29],[291.62,163.27],[291.62,163.25],[291.62,163.24],[291.62,163.24],[291.64,163.19],[291.65,163.14],[291.67,163.08],[291.67,163.06],[291.67,163.04],[291.67,163.02],[291.68,163],[291.68,162.92],[291.68,162.88],[291.68,162.88],[291.68,162.86],[291.68,162.83],[291.68,162.83],[291.68,162.82],[291.68,162.8],[291.69,162.76],[291.69,162.73],[291.7,162.7],[291.7,162.68],[291.71,162.67],[291.72,162.63],[291.73,162.58],[291.75,162.53],[291.75,162.5],[291.77,162.45],[291.77,162.44],[291.77,162.43],[291.77,162.41],[291.77,162.4],[291.77,162.36],[291.77,162.22],[291.77,162.2],[291.77,162.2],[291.77,162.19],[291.77,162.18],[291.77,162.15],[291.77,162.14],[291.77,162.12],[291.78,162.09],[291.79,162.06],[291.8,162.03],[291.83,161.94],[291.84,161.92],[291.85,161.86],[291.87,161.79],[291.89,161.7],[291.91,161.62],[291.91,161.59],[291.92,161.55],[291.93,161.52],[291.94,161.46],[291.94,161.43],[291.95,161.4],[291.96,161.38],[291.96,161.37],[291.97,161.36],[291.98,161.34],[291.99,161.32],[292.01,161.29],[292.03,161.25],[292.06,161.16],[292.07,161.13],[292.08,161.08],[292.09,161.05],[292.09,161.04],[292.1,161.03],[292.1,161.02],[292.1,161.01],[292.1,161],[292.1,160.99],[292.11,160.94],[292.11,160.91],[292.11,160.89],[292.12,160.86],[292.12,160.82],[292.13,160.76],[292.13,160.73],[292.14,160.68],[292.14,160.67],[292.14,160.64],[292.14,160.63],[292.14,160.62],[292.15,160.58],[292.15,160.57],[292.15,160.55],[292.16,160.55],[292.16,160.53],[292.18,160.48],[292.19,160.46],[292.2,160.44],[292.21,160.42],[292.21,160.4],[292.21,160.39],[292.22,160.24],[292.23,160.17],[292.22,160.11],[292.23,160.08],[292.23,160.03],[292.23,160.03],[292.23,160.02],[292.23,160],[292.24,159.98],[292.24,159.96],[292.24,159.94],[292.24,159.93],[292.24,159.92],[292.25,159.9],[292.25,159.89],[292.26,159.89],[292.26,159.87],[292.27,159.86],[292.27,159.86],[292.28,159.84],[292.28,159.83],[292.28,159.83],[292.29,159.81],[292.3,159.78],[292.31,159.77],[292.32,159.71],[292.34,159.67],[292.34,159.66],[292.34,159.66],[292.35,159.64],[292.35,159.63],[292.35,159.62],[292.35,159.61],[292.36,159.6],[292.36,159.59],[292.36,159.58],[292.36,159.56],[292.36,159.55],[292.36,159.54],[292.36,159.52],[292.36,159.51],[292.36,159.5],[292.37,159.5],[292.37,159.48],[292.38,159.47],[292.38,159.46],[292.38,159.45],[292.38,159.45],[292.39,159.44],[292.39,159.42],[292.4,159.41],[292.4,159.41],[292.4,159.4],[292.4,159.4],[292.41,159.39],[292.41,159.38],[292.41,159.37],[292.42,159.36],[292.43,159.35],[292.44,159.34],[292.45,159.32],[292.49,159.28],[292.51,159.27],[292.53,159.25],[292.6,159.21],[292.63,159.18],[292.66,159.16],[292.71,159.12],[292.75,159.09],[292.77,159.08],[292.79,159.07],[292.82,159.05],[292.85,159.04],[292.93,159],[292.97,158.98],[293.01,158.96],[293.06,158.95],[293.09,158.94],[293.12,158.92],[293.15,158.91],[293.18,158.89],[293.2,158.88],[293.2,158.87],[293.22,158.86],[293.24,158.85],[293.25,158.83],[293.28,158.81],[293.31,158.78],[293.32,158.78],[293.32,158.77],[293.33,158.76],[293.36,158.73],[293.39,158.7],[293.39,158.7],[293.4,158.69],[293.43,158.65],[293.44,158.65],[293.46,158.62],[293.52,158.55],[293.54,158.52],[293.55,158.5],[293.56,158.5],[293.57,158.49],[293.57,158.48],[293.58,158.48],[293.58,158.47],[293.59,158.46],[293.6,158.46],[293.61,158.45],[293.62,158.44],[293.67,158.4],[293.7,158.39],[293.72,158.36],[293.76,158.32],[293.78,158.3],[293.79,158.29],[293.8,158.28],[293.8,158.28],[293.8,158.28],[293.82,158.27],[293.82,158.26],[293.83,158.26],[293.85,158.25],[293.86,158.24],[293.88,158.22],[293.94,158.2],[293.97,158.18],[293.99,158.16],[294.02,158.14],[294.04,158.12],[294.06,158.1],[294.08,158.07],[294.09,158.05],[294.09,158.05],[294.1,158.03],[294.1,158.02],[294.13,157.98],[294.13,157.97],[294.14,157.95],[294.15,157.93],[294.15,157.93],[294.17,157.91],[294.18,157.9],[294.18,157.89],[294.19,157.89],[294.2,157.87],[294.21,157.86],[294.22,157.85],[294.23,157.84],[294.24,157.83],[294.25,157.83],[294.26,157.81],[294.27,157.81],[294.28,157.8],[294.28,157.8],[294.3,157.79],[294.32,157.77],[294.32,157.76],[294.33,157.76],[294.33,157.76],[294.33,157.76],[294.35,157.73],[294.4,157.69],[294.42,157.66],[294.45,157.64],[294.48,157.61],[294.49,157.61],[294.51,157.59],[294.54,157.58],[294.57,157.56],[294.59,157.55],[294.59,157.55],[294.6,157.54],[294.61,157.53],[294.62,157.53],[294.64,157.52],[294.65,157.51],[294.67,157.5],[294.68,157.49],[294.71,157.47],[294.71,157.47],[294.74,157.45],[294.75,157.43],[294.76,157.43],[294.77,157.42],[294.79,157.41],[294.8,157.4],[294.81,157.39],[294.83,157.38],[294.85,157.36],[294.88,157.34],[294.88,157.34],[294.88,157.34],[294.89,157.33],[294.9,157.31],[294.92,157.29],[294.92,157.28],[294.92,157.28],[294.93,157.27],[294.94,157.24],[294.95,157.23],[294.96,157.2],[294.97,157.18],[294.97,157.17],[294.98,157.15],[294.98,157.14],[294.99,157.12],[295,157.11],[295.01,157.09],[295.03,157.08],[295.04,157.06],[295.05,157.06],[295.06,157.05],[295.07,157.03],[295.09,157.01],[295.11,156.99],[295.11,156.99],[295.12,156.98],[295.13,156.96],[295.15,156.93],[295.17,156.91],[295.17,156.9],[295.18,156.9],[295.19,156.88],[295.19,156.88],[295.19,156.88],[295.2,156.88],[295.2,156.87],[295.21,156.86],[295.22,156.86],[295.23,156.85],[295.23,156.85],[295.25,156.84],[295.25,156.84],[295.26,156.83],[295.3,156.81],[295.31,156.8],[295.32,156.8],[295.33,156.79],[295.36,156.78],[295.37,156.78],[295.41,156.76],[295.41,156.76],[295.42,156.76],[295.43,156.75],[295.44,156.75],[295.45,156.74],[295.46,156.73],[295.48,156.72],[295.49,156.71],[295.49,156.71],[295.5,156.7],[295.51,156.7],[295.54,156.67],[295.54,156.67],[295.58,156.63],[295.59,156.61],[295.61,156.6],[295.61,156.6],[295.63,156.59],[295.65,156.58],[295.66,156.57],[295.69,156.56],[295.69,156.56],[295.71,156.55],[295.74,156.55],[295.78,156.54],[295.8,156.54],[295.82,156.54],[295.85,156.54],[295.89,156.55],[295.95,156.57],[295.95,156.57],[295.97,156.57],[295.98,156.57],[296,156.57],[296.01,156.57],[296.02,156.57],[296.03,156.57],[296.03,156.57],[296.05,156.57],[296.07,156.56],[296.08,156.56],[296.09,156.56],[296.1,156.56],[296.1,156.56],[296.1,156.56],[296.11,156.56],[296.12,156.56],[296.13,156.56],[296.14,156.56],[296.15,156.57],[296.15,156.57],[296.16,156.58],[296.17,156.58],[296.18,156.58],[296.18,156.58],[296.2,156.59],[296.21,156.59],[296.21,156.58],[296.22,156.58],[296.23,156.58],[296.23,156.58],[296.23,156.58],[296.25,156.57],[296.26,156.57],[296.27,156.56],[296.29,156.54],[296.3,156.53],[296.31,156.52],[296.31,156.51],[296.31,156.51],[296.31,156.51],[296.32,156.51],[296.34,156.48],[296.35,156.45],[296.36,156.44],[296.38,156.41],[296.4,156.39],[296.42,156.35],[296.45,156.32],[296.46,156.31],[296.48,156.28],[296.5,156.26],[296.51,156.24],[296.51,156.23],[296.52,156.22],[296.53,156.2],[296.54,156.18],[296.54,156.16],[296.55,156.14],[296.55,156.11],[296.56,156.1],[296.56,156.09],[296.56,156.07],[296.56,156.06],[296.57,156.05],[296.57,156.05],[296.58,156.01],[296.58,156],[296.58,156],[296.59,155.99],[296.59,155.96],[296.6,155.95],[296.61,155.93],[296.62,155.91],[296.63,155.89],[296.64,155.88],[296.64,155.87],[296.66,155.85],[296.68,155.83],[296.69,155.82],[296.69,155.81],[296.7,155.8],[296.72,155.78],[296.76,155.74],[296.77,155.74],[296.77,155.73],[296.8,155.71],[296.8,155.71],[296.82,155.7],[296.83,155.69],[296.84,155.69],[296.84,155.68],[296.85,155.68],[296.86,155.67],[296.86,155.67],[296.87,155.67],[296.88,155.66],[296.88,155.66],[296.89,155.66],[296.9,155.65],[296.91,155.64],[296.94,155.63],[296.94,155.63],[296.97,155.62],[296.99,155.61],[297.03,155.59],[297.03,155.59],[297.09,155.58],[297.15,155.57],[297.17,155.56],[297.19,155.56],[297.21,155.56],[297.22,155.56],[297.23,155.56],[297.26,155.56],[297.36,155.56],[297.38,155.56],[297.43,155.56],[297.48,155.55],[297.58,155.55],[297.61,155.55],[297.62,155.55],[297.63,155.55],[297.64,155.55],[297.66,155.55],[297.68,155.55],[297.7,155.55],[297.72,155.55],[297.82,155.54],[297.91,155.54],[298.18,155.54],[298.19,155.54],[298.2,155.53],[298.21,155.53],[298.22,155.53],[298.23,155.53],[298.23,155.53],[298.25,155.53],[298.26,155.52],[298.28,155.52],[298.29,155.51],[298.29,155.5],[298.3,155.5],[298.31,155.5],[298.32,155.49],[298.33,155.48],[298.34,155.47],[298.35,155.46],[298.35,155.45],[298.35,155.45],[298.36,155.44],[298.36,155.43],[298.37,155.43],[298.37,155.42],[298.37,155.42],[298.38,155.41],[298.38,155.38],[298.39,155.35],[298.4,155.34],[298.4,155.34],[298.4,155.33],[298.41,155.32],[298.41,155.31],[298.42,155.31],[298.42,155.3],[298.42,155.3],[298.43,155.29],[298.43,155.29],[298.44,155.29],[298.44,155.29],[298.44,155.28],[298.45,155.28],[298.45,155.28],[298.46,155.28],[298.46,155.28],[298.46,155.27],[298.46,155.27],[298.47,155.27],[298.47,155.27],[298.47,155.27],[298.47,155.27],[298.48,155.27],[298.48,155.27],[298.49,155.27],[298.49,155.27],[298.5,155.27],[298.5,155.27],[298.51,155.27],[298.53,155.26],[298.54,155.26],[298.56,155.26],[298.57,155.25],[298.58,155.25],[298.58,155.25],[298.59,155.24],[298.6,155.24],[298.61,155.23],[298.62,155.22],[298.65,155.21],[298.66,155.2],[298.66,155.2],[298.67,155.2],[298.67,155.2],[298.68,155.2],[298.69,155.19],[298.69,155.19],[298.7,155.19],[298.7,155.19],[298.71,155.19],[298.72,155.19],[298.72,155.19],[298.73,155.19],[298.74,155.19],[298.75,155.19],[298.76,155.2],[298.79,155.21],[298.84,155.23],[298.85,155.23],[298.87,155.24],[298.87,155.24],[298.9,155.25],[298.96,155.27],[298.97,155.27],[298.98,155.28],[298.99,155.28],[299.03,155.29],[299.04,155.29],[299.04,155.3],[299.05,155.3],[299.05,155.3],[299.06,155.3],[299.06,155.3],[299.07,155.3],[299.07,155.3],[299.08,155.3],[299.09,155.29],[299.09,155.29],[299.1,155.29],[299.11,155.28],[299.13,155.28],[299.13,155.28],[299.17,155.26],[299.26,155.23],[299.26,155.23],[299.26,155.23],[299.32,155.21],[299.33,155.21],[299.35,155.2],[299.35,155.2],[299.36,155.2],[299.37,155.19],[299.38,155.19],[299.39,155.19],[299.47,155.16],[299.51,155.15],[299.53,155.14],[299.58,155.13],[299.59,155.12],[299.6,155.12],[299.62,155.12],[299.63,155.11],[299.64,155.11],[299.65,155.11],[299.67,155.1],[299.68,155.1],[299.68,155.1],[299.68,155.1],[299.69,155.09],[299.7,155.09],[299.71,155.09],[299.71,155.09],[299.72,155.09],[299.73,155.09],[299.74,155.09],[299.76,155.09],[299.78,155.1],[299.8,155.1],[299.87,155.12],[299.89,155.12],[299.9,155.12],[299.91,155.12],[299.93,155.13],[299.93,155.13],[299.93,155.13],[299.94,155.13],[299.95,155.13],[299.96,155.13],[299.98,155.14],[299.99,155.14],[300,155.14],[300.01,155.14],[300.01,155.14],[300.02,155.14],[300.02,155.14],[300.02,155.14],[300.03,155.14],[300.06,155.13],[300.07,155.13],[300.07,155.13],[300.08,155.13],[300.09,155.13],[300.1,155.13],[300.1,155.13],[300.11,155.13],[300.12,155.13],[300.13,155.14],[300.13,155.14],[300.14,155.14],[300.15,155.14],[300.15,155.14],[300.16,155.15],[300.17,155.15],[300.18,155.15],[300.18,155.16],[300.2,155.17],[300.21,155.17],[300.22,155.18],[300.23,155.19],[300.24,155.19],[300.25,155.2],[300.27,155.22],[300.28,155.23],[300.3,155.24],[300.3,155.25],[300.32,155.26],[300.32,155.26],[300.33,155.27],[300.34,155.28],[300.36,155.29],[300.37,155.3],[300.38,155.3],[300.39,155.3],[300.4,155.31],[300.41,155.31],[300.42,155.31],[300.43,155.31],[300.43,155.31],[300.45,155.31],[300.46,155.31],[300.46,155.31],[300.48,155.31],[300.5,155.31],[300.51,155.31],[300.54,155.31],[300.56,155.3],[300.6,155.3],[300.62,155.3],[300.63,155.29],[300.63,155.29],[300.69,155.29],[300.72,155.28],[300.74,155.28],[300.75,155.28],[300.76,155.28],[300.79,155.29],[300.81,155.29],[300.84,155.3],[300.85,155.3],[301.01,155.34],[301.05,155.34],[301.07,155.35],[301.08,155.35],[301.09,155.35],[301.1,155.35],[301.11,155.35],[301.13,155.35],[301.13,155.35],[301.13,155.35],[301.14,155.35],[301.15,155.34],[301.15,155.34],[301.17,155.34],[301.17,155.33],[301.17,155.33],[301.18,155.33],[301.19,155.33],[301.19,155.32],[301.2,155.32],[301.21,155.31],[301.21,155.31],[301.22,155.31],[301.23,155.3],[301.24,155.3],[301.24,155.3],[301.25,155.29],[301.26,155.29],[301.27,155.29],[301.27,155.29],[301.28,155.29],[301.29,155.28],[301.29,155.28],[301.29,155.28],[301.3,155.28],[301.3,155.28],[301.3,155.28],[301.31,155.28],[301.32,155.28],[301.32,155.28],[301.33,155.29],[301.34,155.29],[301.35,155.29],[301.36,155.29],[301.38,155.3],[301.4,155.3],[301.43,155.31],[301.44,155.31],[301.45,155.32],[301.46,155.32],[301.48,155.33],[301.51,155.34],[301.53,155.35],[301.54,155.35],[301.56,155.36],[301.57,155.37],[301.58,155.37],[301.59,155.37],[301.59,155.37],[301.6,155.38],[301.6,155.38],[301.61,155.38],[301.63,155.38],[301.63,155.39],[301.64,155.39],[301.65,155.39],[301.66,155.39],[301.66,155.39],[301.67,155.39],[301.68,155.4],[301.69,155.4],[301.7,155.4],[301.71,155.4],[301.73,155.4],[301.74,155.4],[301.75,155.4],[301.76,155.4],[301.77,155.4],[301.78,155.39],[301.78,155.39],[301.78,155.39],[301.8,155.39],[301.81,155.39],[301.82,155.39],[301.83,155.38],[301.84,155.38],[301.85,155.38],[301.85,155.38],[301.86,155.37],[301.89,155.37],[301.91,155.36],[301.92,155.35],[301.94,155.35],[301.97,155.33],[302,155.32],[302.04,155.3],[302.06,155.29],[302.09,155.28],[302.13,155.26],[302.17,155.24],[302.18,155.24],[302.21,155.23],[302.22,155.22],[302.22,155.22],[302.24,155.21],[302.25,155.21],[302.26,155.2],[302.28,155.2],[302.29,155.19],[302.31,155.19],[302.33,155.18],[302.34,155.18],[302.34,155.18],[302.35,155.18],[302.36,155.18],[302.38,155.18],[302.39,155.17],[302.4,155.17],[302.42,155.17],[302.43,155.17],[302.46,155.17],[302.5,155.17],[302.53,155.17],[302.56,155.17],[302.58,155.17],[302.6,155.17],[302.62,155.17],[302.64,155.17],[302.67,155.17],[302.68,155.17],[302.7,155.17],[302.71,155.17],[302.72,155.17],[302.73,155.17],[302.74,155.17],[302.75,155.17],[302.77,155.16],[302.79,155.16],[302.81,155.16],[302.82,155.16],[302.83,155.16],[302.84,155.15],[302.86,155.15],[302.87,155.15],[302.88,155.15],[302.89,155.15],[302.9,155.15],[302.91,155.15],[302.92,155.15],[302.95,155.16],[302.97,155.16],[303,155.16],[303.03,155.16],[303.05,155.16],[303.07,155.16],[303.12,155.17],[303.16,155.17],[303.17,155.17],[303.19,155.17],[303.21,155.17],[303.22,155.17],[303.23,155.17],[303.24,155.17],[303.24,155.17],[303.25,155.17],[303.26,155.17],[303.28,155.17],[303.29,155.16],[303.3,155.16],[303.31,155.16],[303.32,155.15],[303.33,155.15],[303.34,155.14],[303.35,155.14],[303.36,155.13],[303.38,155.11],[303.39,155.11],[303.4,155.1],[303.41,155.1],[303.42,155.09],[303.43,155.09],[303.44,155.08],[303.45,155.08],[303.47,155.08],[303.48,155.07],[303.5,155.07],[303.51,155.06],[303.52,155.06],[303.53,155.06],[303.54,155.06],[303.55,155.05],[303.57,155.04],[303.58,155.04],[303.59,155.04],[303.6,155.03],[303.6,155.03],[303.61,155.02],[303.62,155.02],[303.63,155.01],[303.65,155],[303.67,154.99],[303.69,154.97],[303.7,154.96],[303.71,154.96],[303.72,154.95],[303.72,154.95],[303.73,154.95],[303.74,154.95],[303.75,154.94],[303.75,154.94],[303.75,154.94],[303.76,154.94],[303.76,154.93],[303.77,154.93],[303.78,154.93],[303.78,154.93],[303.79,154.93],[303.79,154.93],[303.8,154.93],[303.8,154.93],[303.81,154.92],[303.81,154.92],[303.83,154.92],[303.86,154.92],[303.89,154.92],[303.92,154.92],[303.94,154.92],[303.95,154.92],[303.96,154.92],[303.98,154.91],[303.99,154.91],[304,154.9],[304.01,154.9],[304.02,154.89],[304.04,154.88],[304.05,154.87],[304.06,154.87],[304.07,154.86],[304.09,154.85],[304.1,154.85],[304.11,154.84],[304.12,154.84],[304.14,154.84],[304.16,154.83],[304.17,154.83],[304.19,154.83],[304.2,154.83],[304.22,154.84],[304.24,154.84],[304.29,154.86],[304.3,154.86],[304.32,154.86],[304.33,154.87],[304.36,154.87],[304.37,154.87],[304.39,154.87],[304.4,154.87],[304.41,154.86],[304.41,154.86],[304.42,154.86],[304.43,154.86],[304.45,154.86],[304.46,154.85],[304.49,154.85],[304.5,154.84],[304.5,154.84],[304.51,154.84],[304.53,154.84],[304.55,154.83],[304.56,154.83],[304.58,154.83],[304.59,154.83],[304.61,154.83],[304.62,154.84],[304.63,154.84],[304.65,154.84],[304.67,154.84],[304.69,154.84],[304.71,154.84],[304.73,154.84],[304.75,154.84],[304.77,154.85],[304.77,154.85],[304.8,154.85],[304.81,154.85],[304.83,154.85],[304.84,154.85],[304.87,154.85],[304.87,154.85],[304.89,154.85],[304.91,154.86],[304.93,154.86],[304.95,154.86],[304.96,154.86],[304.98,154.86],[304.99,154.86],[305,154.86],[305.02,154.85],[305.03,154.85],[305.05,154.84],[305.06,154.83],[305.08,154.83],[305.09,154.82],[305.1,154.81],[305.11,154.8],[305.12,154.79],[305.14,154.77],[305.15,154.76],[305.17,154.75],[305.17,154.74],[305.18,154.74],[305.19,154.73],[305.2,154.72],[305.21,154.71],[305.21,154.71],[305.23,154.7],[305.24,154.69],[305.25,154.68],[305.26,154.66],[305.28,154.65],[305.29,154.64],[305.3,154.63],[305.31,154.62],[305.32,154.61],[305.34,154.6],[305.35,154.59],[305.36,154.58],[305.38,154.56],[305.4,154.55],[305.4,154.55],[305.45,154.52],[305.51,154.49],[305.54,154.48],[305.56,154.46],[305.61,154.42],[305.64,154.4],[305.65,154.4],[305.65,154.39],[305.67,154.38],[305.68,154.37],[305.7,154.36],[305.72,154.35],[305.74,154.34],[305.76,154.33],[305.78,154.33],[305.82,154.32],[305.86,154.32],[305.9,154.32],[305.91,154.32],[305.93,154.31],[305.97,154.31],[305.99,154.31],[306.01,154.31],[306.08,154.3],[306.08,154.3],[306.13,154.3],[306.15,154.29],[306.16,154.29],[306.18,154.29],[306.19,154.29],[306.2,154.28],[306.23,154.27],[306.27,154.26],[306.31,154.23],[306.35,154.21],[306.39,154.18],[306.41,154.18],[306.42,154.17],[306.45,154.15],[306.46,154.15],[306.49,154.14],[306.52,154.13],[306.57,154.11],[306.58,154.11],[306.62,154.1],[306.63,154.1],[306.64,154.09],[306.66,154.09],[306.67,154.09],[306.69,154.09],[306.7,154.09],[306.73,154.08],[306.75,154.08],[306.77,154.07],[306.8,154.06],[306.84,154.03],[306.88,154],[306.92,153.98],[306.94,153.96],[306.98,153.93],[307,153.92],[307,153.92],[307.01,153.91],[307.03,153.9],[307.04,153.89],[307.06,153.87],[307.08,153.85],[307.08,153.85],[307.09,153.84],[307.1,153.83],[307.12,153.81],[307.13,153.81],[307.14,153.8],[307.16,153.78],[307.18,153.76],[307.19,153.76],[307.2,153.75],[307.2,153.75],[307.21,153.74],[307.21,153.74],[307.21,153.74],[307.21,153.73],[307.21,153.73],[307.21,153.72],[307.22,153.72],[307.22,153.71],[307.22,153.71],[307.22,153.71],[307.22,153.7],[307.22,153.7],[307.22,153.7],[307.22,153.69],[307.22,153.69],[307.22,153.68],[307.22,153.68],[307.21,153.66],[307.21,153.66],[307.21,153.66],[307.21,153.65],[307.22,153.64],[307.22,153.64],[307.22,153.64],[307.22,153.64],[307.22,153.63],[307.23,153.63],[307.23,153.63],[307.23,153.63],[307.24,153.62],[307.24,153.62],[307.25,153.61],[307.25,153.61],[307.26,153.61],[307.26,153.61],[307.27,153.61],[307.27,153.6],[307.29,153.6],[307.29,153.6],[307.31,153.6],[307.33,153.6],[307.34,153.6],[307.35,153.6],[307.42,153.59],[307.43,153.59],[307.45,153.59],[307.48,153.58],[307.49,153.58],[307.49,153.58],[307.5,153.58],[307.53,153.58],[307.53,153.58],[307.54,153.58],[307.55,153.58],[307.55,153.57],[307.56,153.57],[307.56,153.57],[307.57,153.57],[307.58,153.57],[307.59,153.57],[307.61,153.57],[307.63,153.56],[307.63,153.56],[307.65,153.56],[307.67,153.55],[307.68,153.55],[307.69,153.55],[307.7,153.55],[307.72,153.54],[307.72,153.54],[307.73,153.54],[307.73,153.54],[307.74,153.54],[307.75,153.53],[307.76,153.53],[307.77,153.52],[307.8,153.51],[307.82,153.5],[307.85,153.48],[307.91,153.45],[307.92,153.45],[307.92,153.44],[307.92,153.44],[307.93,153.44],[307.93,153.44],[307.94,153.44],[307.94,153.43],[307.95,153.43],[307.95,153.43],[307.96,153.43],[307.97,153.43],[307.98,153.43],[307.99,153.43],[307.99,153.43],[307.99,153.43],[308,153.43],[308,153.43],[308,153.43],[308.01,153.43],[308.02,153.43],[308.02,153.43],[308.03,153.43],[308.04,153.43],[308.04,153.43],[308.05,153.44],[308.06,153.44],[308.06,153.44],[308.08,153.45],[308.08,153.45],[308.08,153.45],[308.09,153.46],[308.1,153.46],[308.11,153.46],[308.11,153.46],[308.13,153.47],[308.18,153.49],[308.18,153.5],[308.19,153.5],[308.19,153.5],[308.2,153.5],[308.2,153.51],[308.2,153.51],[308.22,153.51],[308.22,153.52],[308.23,153.52],[308.24,153.53],[308.25,153.53],[308.27,153.54],[308.29,153.55],[308.3,153.55],[308.31,153.56],[308.32,153.57],[308.32,153.57],[308.32,153.57],[308.33,153.58],[308.34,153.58],[308.36,153.61],[308.37,153.62],[308.39,153.63],[308.39,153.64],[308.42,153.67],[308.44,153.7],[308.47,153.72],[308.47,153.73],[308.5,153.75],[308.54,153.8],[308.59,153.85],[308.59,153.85],[308.61,153.86],[308.62,153.87],[308.62,153.87],[308.64,153.88],[308.67,153.89],[308.68,153.9],[308.68,153.9],[308.69,153.91],[308.71,153.91],[308.71,153.91],[308.72,153.91],[308.73,153.91],[308.74,153.92],[308.75,153.92],[308.76,153.92],[308.77,153.92],[308.77,153.92],[308.81,153.92],[308.85,153.92],[308.86,153.92],[308.88,153.92],[308.91,153.92],[308.95,153.92],[308.97,153.92],[309.03,153.92],[309.06,153.92],[309.08,153.91],[309.11,153.91],[309.14,153.91],[309.17,153.9],[309.19,153.89],[309.2,153.89],[309.22,153.89],[309.24,153.89],[309.24,153.88],[309.24,153.88],[309.25,153.88],[309.27,153.88],[309.3,153.87],[309.35,153.86],[309.35,153.86],[309.42,153.85],[309.43,153.85],[309.48,153.83],[309.49,153.83],[309.49,153.83],[309.55,153.82],[309.56,153.82],[309.59,153.81],[309.63,153.8],[309.65,153.8],[309.66,153.79],[309.66,153.79],[309.67,153.79],[309.69,153.79],[309.71,153.78],[309.73,153.78],[309.75,153.78],[309.77,153.78],[309.78,153.78],[309.82,153.78],[309.88,153.79],[309.91,153.79],[309.98,153.8],[310.01,153.81],[310.02,153.81],[310.04,153.81],[310.05,153.8],[310.06,153.8],[310.07,153.8],[310.09,153.8],[310.1,153.79],[310.11,153.79],[310.12,153.79],[310.13,153.78],[310.14,153.78],[310.17,153.76],[310.17,153.76],[310.18,153.75],[310.19,153.74],[310.24,153.68],[310.32,153.6],[310.37,153.53],[310.38,153.53],[310.43,153.46],[310.45,153.45],[310.45,153.44],[310.47,153.43],[310.47,153.42],[310.49,153.41],[310.55,153.36],[310.62,153.31],[310.62,153.31],[310.63,153.3],[310.63,153.3],[310.65,153.29],[310.65,153.29],[310.66,153.28],[310.69,153.26],[310.7,153.25],[310.77,153.2],[310.78,153.19],[310.81,153.17],[310.82,153.16],[310.83,153.16],[310.84,153.15],[310.85,153.14],[310.85,153.14],[310.85,153.14],[310.86,153.13],[310.86,153.13],[310.87,153.12],[310.87,153.11],[310.88,153.09],[310.89,153.08],[310.89,153.07],[310.9,153.06],[310.91,153.03],[310.91,153.01],[310.93,152.96],[310.93,152.96],[310.95,152.92],[310.95,152.91],[310.96,152.89],[310.97,152.87],[310.97,152.87],[310.97,152.86],[310.98,152.86],[310.98,152.85],[310.99,152.84],[310.99,152.83],[310.99,152.83],[310.99,152.83],[311,152.83],[311.01,152.82],[311.02,152.8],[311.03,152.79],[311.05,152.78],[311.05,152.77],[311.06,152.77],[311.08,152.75],[311.09,152.74],[311.1,152.73],[311.11,152.73],[311.12,152.72],[311.12,152.71],[311.12,152.71],[311.12,152.71],[311.13,152.7],[311.13,152.69],[311.14,152.68],[311.14,152.66],[311.14,152.64],[311.14,152.62],[311.14,152.61],[311.14,152.6],[311.14,152.59],[311.14,152.58],[311.13,152.57],[311.13,152.56],[311.12,152.55],[311.12,152.55],[311.12,152.54],[311.11,152.52],[311.1,152.5],[311.1,152.49],[311.1,152.49],[311.1,152.48],[311.1,152.46],[311.1,152.45],[311.1,152.45],[311.1,152.44],[311.1,152.43],[311.1,152.41],[311.1,152.41],[311.1,152.41],[311.1,152.41],[311.11,152.41],[311.11,152.4],[311.11,152.4],[311.12,152.4],[311.12,152.39],[311.12,152.39],[311.13,152.39],[311.13,152.39],[311.13,152.39],[311.13,152.39],[311.13,152.39],[311.14,152.39],[311.15,152.38],[311.17,152.38],[311.18,152.38],[311.21,152.37],[311.21,152.37],[311.22,152.37],[311.22,152.37],[311.24,152.36],[311.25,152.35],[311.26,152.35],[311.26,152.35],[311.27,152.34],[311.28,152.33],[311.31,152.31],[311.33,152.3],[311.33,152.3],[311.33,152.29],[311.37,152.27],[311.39,152.25],[311.4,152.24],[311.41,152.23],[311.41,152.23],[311.42,152.23],[311.43,152.22],[311.43,152.22],[311.44,152.22],[311.44,152.21],[311.45,152.21],[311.45,152.21],[311.46,152.21],[311.46,152.21],[311.46,152.21],[311.47,152.2],[311.48,152.2],[311.49,152.2],[311.5,152.2],[311.51,152.2],[311.52,152.2],[311.53,152.2],[311.53,152.2],[311.54,152.2],[311.55,152.19],[311.55,152.19],[311.56,152.19],[311.57,152.19],[311.58,152.19],[311.59,152.19],[311.6,152.19],[311.61,152.19],[311.65,152.18],[311.69,152.18],[311.73,152.17],[311.74,152.17],[311.77,152.17],[311.78,152.17],[311.78,152.17],[311.78,152.17],[311.79,152.16],[311.8,152.16],[311.8,152.16],[311.82,152.16],[311.84,152.15],[311.85,152.15],[311.86,152.15],[311.89,152.15],[311.9,152.15],[311.91,152.15],[311.92,152.14],[311.92,152.14],[311.94,152.14],[311.94,152.14],[311.95,152.13],[311.96,152.13],[311.97,152.13],[311.97,152.13],[311.98,152.13],[311.98,152.13],[311.99,152.13],[311.99,152.13],[312,152.13],[312.04,152.13],[312.04,152.13],[312.06,152.13],[312.06,152.13],[312.06,152.13],[312.07,152.13],[312.07,152.13],[312.08,152.13],[312.09,152.13],[312.14,152.12],[312.16,152.12],[312.17,152.12],[312.18,152.11],[312.19,152.11],[312.2,152.11],[312.2,152.11],[312.22,152.11],[312.23,152.11],[312.24,152.11],[312.24,152.11],[312.24,152.11],[312.25,152.11],[312.27,152.11],[312.27,152.11],[312.28,152.11],[312.29,152.11],[312.3,152.11],[312.31,152.11],[312.36,152.11],[312.38,152.11],[312.39,152.11],[312.4,152.11],[312.45,152.11],[312.46,152.11],[312.47,152.11],[312.48,152.11],[312.49,152.11],[312.51,152.11],[312.52,152.11],[312.53,152.11],[312.53,152.11],[312.54,152.11],[312.55,152.11],[312.57,152.11],[312.59,152.11],[312.6,152.11],[312.62,152.11],[312.63,152.11],[312.63,152.1],[312.65,152.1],[312.66,152.1],[312.68,152.09],[312.69,152.09],[312.7,152.08],[312.71,152.08],[312.73,152.07],[312.74,152.07],[312.74,152.07],[312.77,152.06],[312.79,152.05],[312.82,152.03],[312.85,152.02],[312.87,152.01],[312.88,152],[312.9,152],[312.92,151.98],[312.94,151.97],[312.96,151.96],[312.99,151.95],[312.99,151.94],[313,151.94],[313.01,151.93],[313.02,151.92],[313.02,151.91],[313.04,151.89],[313.06,151.86],[313.06,151.85],[313.07,151.84],[313.08,151.82],[313.09,151.81],[313.1,151.8],[313.1,151.8],[313.11,151.78],[313.13,151.76],[313.14,151.76],[313.16,151.75],[313.18,151.74],[313.19,151.73],[313.22,151.71],[313.25,151.7],[313.28,151.69],[313.29,151.68],[313.33,151.67],[313.35,151.66],[313.36,151.66],[313.36,151.66],[313.39,151.64],[313.42,151.63],[313.46,151.62],[313.48,151.61],[313.51,151.61],[313.54,151.6],[313.58,151.59],[313.62,151.58],[313.65,151.58],[313.69,151.57],[313.7,151.57],[313.72,151.57],[313.73,151.57],[313.75,151.58],[313.76,151.58],[313.76,151.58],[313.78,151.58],[313.81,151.59],[313.81,151.59],[313.84,151.59],[313.85,151.6],[313.91,151.61],[313.94,151.62],[313.96,151.62],[313.97,151.62],[313.98,151.62],[313.99,151.62],[314,151.62],[314.02,151.61],[314.02,151.61],[314.03,151.61],[314.04,151.61],[314.05,151.6],[314.06,151.6],[314.07,151.59],[314.07,151.59],[314.08,151.59],[314.08,151.59],[314.09,151.58],[314.09,151.58],[314.1,151.57],[314.11,151.56],[314.12,151.55],[314.13,151.54],[314.14,151.53],[314.15,151.53],[314.15,151.53],[314.16,151.52],[314.16,151.52],[314.17,151.51],[314.18,151.51],[314.19,151.51],[314.19,151.5],[314.2,151.5],[314.21,151.5],[314.23,151.49],[314.25,151.48],[314.26,151.48],[314.27,151.47],[314.28,151.47],[314.28,151.47],[314.29,151.46],[314.3,151.46],[314.3,151.46],[314.31,151.45],[314.31,151.45],[314.32,151.44],[314.33,151.43],[314.33,151.43],[314.34,151.42],[314.34,151.42],[314.34,151.41],[314.35,151.4],[314.36,151.38],[314.37,151.37],[314.38,151.36],[314.38,151.36],[314.38,151.35],[314.39,151.34],[314.4,151.33],[314.41,151.32],[314.42,151.31],[314.43,151.3],[314.43,151.3],[314.44,151.29],[314.45,151.29],[314.46,151.28],[314.47,151.28],[314.47,151.28],[314.48,151.28],[314.49,151.27],[314.5,151.27],[314.51,151.27],[314.51,151.27],[314.52,151.27],[314.52,151.27],[314.54,151.27],[314.56,151.27],[314.58,151.26],[314.58,151.26],[314.59,151.26],[314.6,151.26],[314.61,151.26],[314.62,151.26],[314.63,151.26],[314.63,151.26],[314.66,151.26],[314.66,151.26],[314.67,151.26],[314.68,151.26],[314.69,151.26],[314.7,151.26],[314.71,151.26],[314.73,151.26],[314.74,151.26],[314.75,151.26],[314.76,151.26],[314.78,151.26],[314.8,151.26],[314.81,151.26],[314.82,151.26],[314.84,151.27],[314.86,151.27],[314.88,151.27],[314.89,151.28],[314.89,151.28],[314.9,151.28],[314.91,151.28],[314.91,151.28],[314.91,151.29],[314.92,151.29],[314.92,151.29],[314.92,151.29],[314.93,151.3],[314.93,151.3],[314.93,151.3],[314.93,151.3],[314.93,151.31],[314.93,151.31],[314.93,151.31],[314.93,151.31],[314.93,151.31],[314.93,151.32],[314.93,151.33],[314.93,151.33],[314.93,151.34],[314.93,151.35],[314.93,151.35],[314.92,151.35],[314.92,151.36],[314.92,151.36],[314.92,151.36],[314.92,151.36],[314.92,151.36],[314.92,151.37],[314.92,151.37],[314.92,151.37],[314.92,151.37],[314.92,151.37],[314.92,151.37],[314.94,151.37],[314.95,151.37],[314.95,151.36],[314.95,151.36],[314.94,151.36],[314.94,151.37],[314.94,151.37],[314.94,151.37],[314.94,151.36],[314.93,151.36],[314.93,151.36],[314.93,151.36],[314.93,151.35],[314.93,151.35],[314.93,151.34],[314.93,151.34],[314.93,151.34],[314.93,151.33],[314.93,151.33],[314.93,151.32],[314.94,151.32],[314.94,151.31],[314.94,151.3],[314.94,151.29],[314.95,151.28],[314.96,151.26],[314.96,151.25],[314.96,151.24],[314.96,151.24],[314.96,151.24],[314.96,151.23],[314.96,151.22],[314.96,151.21],[314.97,151.19],[314.97,151.16],[314.97,151.15],[314.97,151.11],[314.97,151.09],[314.97,151.08],[314.97,151.07],[314.97,151.05],[314.97,151.02],[314.97,150.99],[314.97,150.98],[314.97,150.98],[314.97,150.97],[314.97,150.94],[314.97,150.93],[314.97,150.92],[314.97,150.9],[314.97,150.9],[314.97,150.89],[314.97,150.88],[314.97,150.86],[314.97,150.86],[314.97,150.85],[314.97,150.85],[314.97,150.85],[314.97,150.84],[314.97,150.83],[314.97,150.83],[314.98,150.83],[314.98,150.82],[314.98,150.81],[314.98,150.81],[314.98,150.8],[314.99,150.8],[314.99,150.79],[314.99,150.79],[314.99,150.78],[315,150.78],[315,150.77],[315,150.77],[315.01,150.76],[315.01,150.76],[315.02,150.75],[315.02,150.75],[315.03,150.74],[315.04,150.74],[315.04,150.73],[315.06,150.72],[315.07,150.72],[315.07,150.71],[315.1,150.7],[315.13,150.69],[315.14,150.68],[315.14,150.68],[315.15,150.68],[315.15,150.68],[315.16,150.67],[315.17,150.67],[315.2,150.65],[315.21,150.65],[315.23,150.64],[315.24,150.63],[315.24,150.63],[315.24,150.63],[315.25,150.62],[315.25,150.62],[315.26,150.62],[315.26,150.61],[315.28,150.59],[315.3,150.58],[315.31,150.56],[315.33,150.54],[315.34,150.52],[315.36,150.51],[315.38,150.49],[315.38,150.49],[315.4,150.48],[315.41,150.47],[315.41,150.47],[315.43,150.46],[315.45,150.45],[315.46,150.44],[315.47,150.43],[315.48,150.42],[315.5,150.41],[315.5,150.41],[315.52,150.39],[315.53,150.38],[315.53,150.37],[315.54,150.37],[315.55,150.36],[315.57,150.34],[315.59,150.32],[315.6,150.31],[315.62,150.3],[315.63,150.29],[315.63,150.29],[315.65,150.28],[315.66,150.28],[315.66,150.28],[315.67,150.27],[315.68,150.27],[315.7,150.28],[315.71,150.28],[315.72,150.28],[315.73,150.28],[315.74,150.28],[315.74,150.29],[315.75,150.29],[315.75,150.29],[315.76,150.29],[315.77,150.29],[315.77,150.28],[315.78,150.28],[315.79,150.28],[315.8,150.28],[315.8,150.28],[315.81,150.28],[315.82,150.27],[315.82,150.27],[315.83,150.27],[315.83,150.27],[315.84,150.26],[315.85,150.26],[315.85,150.25],[315.86,150.25],[315.87,150.24],[315.87,150.24],[315.88,150.24],[315.89,150.23],[315.9,150.22],[315.92,150.22],[315.92,150.21],[315.94,150.21],[315.94,150.2],[315.95,150.2],[315.95,150.2],[315.96,150.2],[315.97,150.19],[315.98,150.19],[316,150.18],[316.01,150.18],[316.02,150.18],[316.03,150.17],[316.04,150.17],[316.06,150.16],[316.07,150.15],[316.08,150.14],[316.09,150.14],[316.1,150.13],[316.11,150.13],[316.12,150.12],[316.13,150.12],[316.14,150.11],[316.15,150.11],[316.15,150.11],[316.16,150.1],[316.17,150.1],[316.18,150.09],[316.2,150.07],[316.22,150.06],[316.24,150.04],[316.26,150.03],[316.27,150.02],[316.28,150.01],[316.3,150],[316.32,150],[316.33,149.99],[316.35,149.99],[316.37,149.98],[316.39,149.98],[316.41,149.97],[316.42,149.97],[316.44,149.96],[316.45,149.96],[316.46,149.96],[316.48,149.95],[316.49,149.94],[316.5,149.94],[316.51,149.94],[316.51,149.93],[316.52,149.93],[316.52,149.93],[316.53,149.92],[316.53,149.92],[316.54,149.92],[316.54,149.91],[316.55,149.91],[316.55,149.9],[316.56,149.89],[316.56,149.89],[316.57,149.87],[316.57,149.86],[316.58,149.84],[316.6,149.81],[316.6,149.79],[316.61,149.78],[316.61,149.77],[316.62,149.76],[316.62,149.74],[316.62,149.74],[316.63,149.73],[316.63,149.73],[316.63,149.72],[316.63,149.72],[316.63,149.72],[316.63,149.71],[316.63,149.71],[316.63,149.7],[316.63,149.69],[316.63,149.68],[316.63,149.68],[316.63,149.67],[316.63,149.66],[316.63,149.65],[316.63,149.65],[316.64,149.64],[316.64,149.64],[316.64,149.64],[316.65,149.63],[316.65,149.62],[316.65,149.61],[316.66,149.61],[316.66,149.6],[316.67,149.59],[316.67,149.59],[316.67,149.58],[316.68,149.58],[316.68,149.58],[316.68,149.57],[316.68,149.57],[316.69,149.57],[316.69,149.57],[316.69,149.57],[316.69,149.56],[316.69,149.56],[316.7,149.56],[316.7,149.56],[316.7,149.55],[316.71,149.55],[316.71,149.55],[316.72,149.54],[316.72,149.54],[316.72,149.54],[316.72,149.54],[316.73,149.54],[316.73,149.54],[316.73,149.53],[316.74,149.53],[316.74,149.53],[316.75,149.53],[316.75,149.52],[316.76,149.52],[316.76,149.52],[316.77,149.52],[316.77,149.52],[316.78,149.52],[316.78,149.51],[316.78,149.51],[316.79,149.51],[316.79,149.51],[316.8,149.51],[316.8,149.5],[316.81,149.5],[316.82,149.5],[316.82,149.5],[316.82,149.5],[316.83,149.49],[316.83,149.49],[316.83,149.49],[316.84,149.49],[316.84,149.49],[316.84,149.49],[316.85,149.48],[316.85,149.48],[316.85,149.48],[316.85,149.48],[316.85,149.48],[316.86,149.48],[316.86,149.48],[316.86,149.47],[316.86,149.47],[316.86,149.47],[316.87,149.47],[316.87,149.46],[316.87,149.46],[316.87,149.46],[316.88,149.46],[316.88,149.45],[316.88,149.45],[316.89,149.44],[316.89,149.44],[316.89,149.43],[316.89,149.43],[316.89,149.43],[316.9,149.42],[316.9,149.42],[316.9,149.42],[316.9,149.41],[316.9,149.41],[316.9,149.4],[316.9,149.4],[316.9,149.4],[316.9,149.39],[316.9,149.39],[316.91,149.38],[316.91,149.38],[316.91,149.38],[316.91,149.38],[316.91,149.38],[316.91,149.37],[316.91,149.37],[316.91,149.37],[316.91,149.36],[316.92,149.36],[316.92,149.36],[316.92,149.36],[316.92,149.36],[316.92,149.35],[316.92,149.35],[316.93,149.35],[316.93,149.35],[316.93,149.35],[316.93,149.34],[316.94,149.34],[316.95,149.33],[316.95,149.33],[316.95,149.33],[316.96,149.32],[316.96,149.32],[316.96,149.32],[316.97,149.32],[316.97,149.31],[316.97,149.31],[316.97,149.31],[316.97,149.3],[316.98,149.3],[316.98,149.29],[316.98,149.28],[316.99,149.27],[316.99,149.27],[316.99,149.27],[316.99,149.26],[317,149.26],[317,149.26],[317,149.26],[317,149.26],[317,149.25],[317.01,149.25],[317.01,149.25],[317.01,149.25],[317.01,149.25],[317.01,149.25],[317.02,149.24],[317.03,149.24],[317.04,149.24],[317.05,149.23],[317.06,149.23],[317.07,149.23],[317.08,149.22],[317.08,149.22],[317.09,149.22],[317.09,149.22],[317.1,149.21],[317.1,149.21],[317.1,149.21],[317.1,149.21],[317.1,149.21],[317.11,149.21],[317.11,149.2],[317.11,149.2],[317.11,149.2],[317.11,149.2],[317.12,149.2],[317.12,149.2],[317.12,149.19],[317.12,149.19],[317.12,149.19],[317.12,149.18],[317.13,149.18],[317.13,149.18],[317.13,149.17],[317.13,149.17],[317.13,149.17],[317.13,149.17],[317.13,149.17],[317.14,149.16],[317.14,149.15],[317.14,149.15],[317.15,149.14],[317.15,149.13],[317.16,149.12],[317.16,149.12],[317.16,149.12],[317.16,149.11],[317.16,149.11],[317.16,149.11],[317.17,149.1],[317.17,149.1],[317.17,149.09],[317.17,149.09],[317.17,149.08],[317.18,149.08],[317.18,149.07],[317.18,149.07],[317.18,149.06],[317.18,149.06],[317.18,149.06],[317.18,149.06],[317.18,149.05],[317.18,149.05],[317.18,149.04],[317.18,149.04],[317.18,149.03],[317.18,149.02],[317.17,148.99],[317.17,148.99],[317.17,148.99],[317.17,148.98],[317.17,148.97],[317.17,148.97],[317.17,148.96],[317.17,148.96],[317.17,148.95],[317.17,148.95],[317.17,148.95],[317.17,148.94],[317.17,148.93],[317.17,148.93],[317.17,148.92],[317.17,148.92],[317.17,148.91],[317.17,148.91],[317.17,148.91],[317.17,148.9],[317.17,148.9],[317.17,148.9],[317.17,148.89],[317.17,148.89],[317.17,148.89],[317.17,148.88],[317.17,148.88],[317.18,148.87],[317.18,148.87],[317.18,148.86],[317.18,148.86],[317.18,148.86],[317.19,148.86],[317.19,148.85],[317.2,148.84],[317.21,148.82],[317.23,148.79],[317.24,148.79],[317.24,148.78],[317.24,148.77],[317.25,148.77],[317.25,148.77],[317.25,148.77],[317.25,148.76],[317.25,148.75],[317.25,148.75],[317.26,148.75],[317.26,148.74],[317.26,148.74],[317.26,148.74],[317.26,148.73],[317.26,148.72],[317.26,148.72],[317.26,148.72],[317.26,148.72],[317.26,148.71],[317.26,148.7],[317.26,148.7],[317.26,148.69],[317.26,148.69],[317.26,148.68],[317.26,148.67],[317.25,148.67],[317.25,148.66],[317.25,148.66],[317.25,148.65],[317.24,148.65],[317.24,148.64],[317.24,148.64],[317.24,148.64],[317.23,148.63],[317.23,148.63],[317.23,148.63],[317.22,148.62],[317.21,148.61],[317.2,148.61],[317.2,148.6],[317.19,148.59],[317.18,148.59],[317.17,148.58],[317.16,148.57],[317.16,148.57],[317.16,148.56],[317.15,148.56],[317.15,148.55],[317.15,148.55],[317.14,148.55],[317.14,148.55],[317.14,148.54],[317.14,148.54],[317.14,148.54],[317.14,148.53],[317.14,148.53],[317.13,148.53],[317.13,148.52],[317.13,148.52],[317.13,148.52],[317.13,148.52],[317.13,148.51],[317.13,148.51],[317.14,148.51],[317.14,148.5],[317.14,148.5],[317.14,148.5],[317.14,148.5],[317.14,148.49],[317.14,148.49],[317.14,148.49],[317.14,148.48],[317.14,148.48],[317.14,148.48],[317.14,148.47],[317.14,148.47],[317.14,148.47],[317.14,148.46],[317.14,148.46],[317.14,148.46],[317.14,148.45],[317.14,148.45],[317.13,148.45],[317.13,148.44],[317.13,148.44],[317.13,148.44],[317.13,148.43],[317.13,148.43],[317.13,148.43],[317.12,148.43],[317.12,148.43],[317.12,148.42],[317.12,148.42],[317.12,148.41],[317.12,148.41],[317.11,148.4],[317.11,148.4],[317.11,148.39],[317.11,148.38],[317.11,148.38],[317.11,148.38],[317.11,148.37],[317.1,148.37],[317.1,148.36],[317.1,148.35],[317.1,148.35],[317.11,148.35],[317.11,148.34],[317.11,148.34],[317.11,148.34],[317.11,148.33],[317.11,148.33],[317.11,148.33],[317.11,148.32],[317.12,148.32],[317.12,148.32],[317.12,148.31],[317.12,148.31],[317.13,148.31],[317.13,148.3],[317.13,148.3],[317.16,148.28],[317.18,148.27],[317.18,148.26],[317.19,148.25],[317.2,148.24],[317.2,148.24],[317.21,148.23],[317.21,148.23],[317.22,148.22],[317.22,148.22],[317.23,148.22],[317.24,148.21],[317.24,148.21],[317.25,148.2],[317.25,148.2],[317.25,148.2],[317.26,148.19],[317.26,148.18],[317.26,148.18],[317.26,148.18],[317.26,148.17],[317.27,148.16],[317.27,148.16],[317.28,148.15],[317.29,148.14],[317.29,148.13],[317.3,148.12],[317.3,148.12],[317.3,148.11],[317.3,148.11],[317.3,148.1],[317.3,148.1],[317.3,148.09],[317.3,148.08],[317.29,148.05],[317.29,148.03],[317.29,148.03],[317.28,148.02],[317.28,148.01],[317.28,148.01],[317.28,148.01],[317.29,148],[317.29,148],[317.29,147.99],[317.29,147.98],[317.3,147.97],[317.31,147.95],[317.31,147.95],[317.31,147.94],[317.31,147.94],[317.32,147.91],[317.32,147.89],[317.32,147.87],[317.32,147.87],[317.32,147.87],[317.32,147.86],[317.32,147.86],[317.32,147.85],[317.33,147.84],[317.33,147.83],[317.33,147.83],[317.33,147.82],[317.34,147.82],[317.34,147.81],[317.34,147.81],[317.34,147.81],[317.35,147.8],[317.35,147.8],[317.37,147.78],[317.39,147.77],[317.4,147.75],[317.41,147.75],[317.42,147.74],[317.43,147.73],[317.44,147.72],[317.46,147.71],[317.47,147.71],[317.47,147.7],[317.48,147.7],[317.49,147.69],[317.5,147.69],[317.51,147.69],[317.53,147.68],[317.54,147.68],[317.55,147.68],[317.55,147.68],[317.56,147.67],[317.57,147.67],[317.57,147.67],[317.58,147.67],[317.58,147.66],[317.59,147.66],[317.6,147.66],[317.6,147.65],[317.61,147.65],[317.62,147.64],[317.62,147.63],[317.63,147.63],[317.64,147.62],[317.64,147.61],[317.65,147.6],[317.65,147.6],[317.66,147.59],[317.66,147.59],[317.67,147.58],[317.68,147.57],[317.72,147.54],[317.73,147.54],[317.75,147.52],[317.77,147.5],[317.82,147.46],[317.82,147.46],[317.83,147.46],[317.84,147.45],[317.84,147.45],[317.85,147.45],[317.86,147.45],[317.87,147.44],[317.88,147.44],[317.88,147.44],[317.89,147.44],[317.89,147.43],[317.9,147.43],[317.9,147.42],[317.91,147.42],[317.91,147.41],[317.92,147.4],[317.92,147.39],[317.93,147.39],[317.93,147.39],[317.94,147.38],[317.94,147.38],[317.95,147.38],[317.95,147.37],[317.96,147.37],[317.98,147.36],[318,147.36],[318,147.36],[318.01,147.35],[318.03,147.35],[318.05,147.34],[318.06,147.33],[318.07,147.33],[318.08,147.32],[318.09,147.32],[318.1,147.31],[318.11,147.3],[318.11,147.3],[318.15,147.27],[318.16,147.27],[318.16,147.26],[318.18,147.25],[318.2,147.24],[318.23,147.22],[318.27,147.19],[318.28,147.19],[318.29,147.18],[318.29,147.18],[318.3,147.17],[318.3,147.17],[318.3,147.17],[318.31,147.16],[318.31,147.15],[318.32,147.13],[318.32,147.11],[318.32,147.1],[318.33,147.09],[318.33,147.08],[318.33,147.07],[318.34,147.07],[318.34,147.06],[318.34,147.05],[318.35,147.04],[318.35,147.04],[318.36,147.03],[318.36,147.03],[318.37,147.02],[318.37,147.02],[318.38,147.02],[318.39,147.01],[318.4,147.01],[318.41,147],[318.42,147],[318.44,146.99],[318.44,146.99],[318.45,146.99],[318.46,146.98],[318.46,146.98],[318.47,146.97],[318.49,146.96],[318.49,146.96],[318.5,146.96],[318.51,146.95],[318.51,146.95],[318.52,146.95],[318.54,146.94],[318.54,146.94],[318.55,146.94],[318.56,146.94],[318.58,146.93],[318.59,146.93],[318.6,146.92],[318.61,146.92],[318.62,146.91],[318.63,146.91],[318.64,146.91],[318.64,146.9],[318.65,146.9],[318.65,146.9],[318.66,146.9],[318.66,146.89],[318.67,146.89],[318.67,146.89],[318.68,146.88],[318.68,146.88],[318.68,146.88],[318.7,146.87],[318.7,146.87],[318.7,146.86],[318.71,146.85],[318.72,146.84],[318.73,146.83],[318.74,146.83],[318.75,146.81],[318.77,146.79],[318.78,146.78],[318.78,146.77],[318.78,146.77],[318.79,146.76],[318.79,146.76],[318.8,146.76],[318.81,146.75],[318.81,146.75],[318.82,146.75],[318.82,146.74],[318.83,146.74],[318.83,146.73],[318.84,146.73],[318.84,146.72],[318.84,146.72],[318.84,146.72],[318.84,146.72],[318.84,146.71],[318.85,146.71],[318.85,146.71],[318.85,146.7],[318.85,146.7],[318.85,146.7],[318.85,146.69],[318.85,146.69],[318.85,146.68],[318.86,146.67],[318.86,146.65],[318.86,146.65],[318.87,146.63],[318.87,146.63],[318.87,146.62],[318.87,146.61],[318.87,146.61],[318.87,146.61],[318.87,146.61],[318.87,146.6],[318.88,146.59],[318.88,146.58],[318.88,146.58],[318.88,146.57],[318.88,146.57],[318.88,146.57],[318.88,146.56],[318.88,146.56],[318.88,146.56],[318.89,146.56],[318.89,146.55],[318.89,146.55],[318.89,146.55],[318.89,146.54],[318.89,146.54],[318.9,146.54],[318.9,146.54],[318.9,146.53],[318.9,146.53],[318.91,146.53],[318.91,146.53],[318.91,146.52],[318.91,146.52],[318.92,146.52],[318.92,146.52],[318.92,146.52],[318.92,146.51],[318.92,146.51],[318.93,146.51],[318.93,146.51],[318.93,146.51],[318.94,146.51],[318.94,146.51],[318.94,146.5],[318.95,146.5],[318.97,146.49],[318.98,146.49],[318.98,146.49],[319,146.48],[319.01,146.47],[319.04,146.46],[319.06,146.45],[319.09,146.44],[319.1,146.43],[319.12,146.42],[319.13,146.42],[319.15,146.41],[319.15,146.41],[319.16,146.41],[319.16,146.4],[319.17,146.4],[319.18,146.4],[319.18,146.39],[319.18,146.39],[319.19,146.39],[319.2,146.38],[319.2,146.38],[319.21,146.37],[319.21,146.37],[319.21,146.37],[319.22,146.36],[319.22,146.36],[319.22,146.36],[319.23,146.35],[319.23,146.35],[319.24,146.34],[319.24,146.34],[319.24,146.33],[319.25,146.33],[319.25,146.32],[319.25,146.32],[319.26,146.31],[319.26,146.3],[319.27,146.3],[319.27,146.29],[319.27,146.29],[319.27,146.28],[319.28,146.28],[319.28,146.28],[319.28,146.28],[319.28,146.27],[319.29,146.27],[319.29,146.27],[319.29,146.27],[319.29,146.27],[319.3,146.26],[319.3,146.26],[319.3,146.26],[319.3,146.26],[319.31,146.26],[319.31,146.26],[319.32,146.25],[319.32,146.25],[319.33,146.25],[319.33,146.25],[319.34,146.24],[319.34,146.24],[319.35,146.23],[319.36,146.23],[319.36,146.23],[319.37,146.22],[319.37,146.22],[319.38,146.21],[319.38,146.2],[319.39,146.2],[319.39,146.18],[319.4,146.17],[319.41,146.16],[319.42,146.15],[319.43,146.13],[319.44,146.13],[319.44,146.12],[319.47,146.09],[319.5,146.06],[319.51,146.05],[319.51,146.04],[319.52,146.02],[319.53,146.01],[319.53,146],[319.53,146],[319.53,145.99],[319.54,145.98],[319.54,145.97],[319.54,145.97],[319.54,145.95],[319.55,145.93],[319.56,145.9],[319.56,145.89],[319.57,145.88],[319.57,145.87],[319.57,145.86],[319.58,145.82],[319.58,145.79],[319.58,145.75],[319.59,145.73],[319.59,145.73],[319.59,145.71],[319.59,145.7],[319.59,145.69],[319.59,145.68],[319.6,145.67],[319.6,145.66],[319.6,145.64],[319.6,145.63],[319.6,145.62],[319.6,145.61],[319.6,145.55],[319.6,145.55],[319.6,145.53],[319.61,145.52],[319.61,145.52],[319.61,145.5],[319.61,145.49],[319.61,145.48],[319.61,145.47],[319.61,145.45],[319.61,145.45],[319.62,145.44],[319.62,145.43],[319.62,145.42],[319.63,145.41],[319.63,145.41],[319.64,145.39],[319.64,145.39],[319.65,145.37],[319.66,145.36],[319.67,145.35],[319.67,145.35],[319.67,145.34],[319.68,145.34],[319.68,145.33],[319.68,145.33],[319.69,145.32],[319.69,145.31],[319.7,145.3],[319.7,145.29],[319.71,145.28],[319.71,145.27],[319.71,145.26],[319.72,145.26],[319.72,145.26],[319.72,145.25],[319.72,145.24],[319.72,145.22],[319.72,145.22],[319.72,145.21],[319.73,145.21],[319.73,145.2],[319.73,145.2],[319.73,145.19],[319.73,145.18],[319.73,145.18],[319.73,145.18],[319.73,145.18],[319.74,145.18],[319.75,145.16],[319.75,145.16],[319.76,145.16],[319.76,145.16],[319.76,145.16],[319.78,145.16],[319.79,145.16],[319.82,145.16],[319.84,145.16],[319.85,145.16],[319.86,145.16],[319.86,145.15],[319.87,145.15],[319.88,145.15],[319.89,145.15],[319.9,145.14],[319.92,145.13],[319.98,145.11],[319.99,145.11],[320,145.11],[320.02,145.1],[320.03,145.09],[320.06,145.08],[320.07,145.08],[320.08,145.07],[320.1,145.07],[320.11,145.06],[320.13,145.06],[320.14,145.05],[320.15,145.05],[320.18,145.04],[320.18,145.04],[320.19,145.04],[320.19,145.03],[320.24,145.02],[320.25,145.02],[320.29,145],[320.3,145],[320.3,145],[320.31,145],[320.31,145],[320.32,144.99],[320.33,144.99],[320.34,144.99],[320.35,144.98],[320.36,144.98],[320.37,144.98],[320.39,144.97],[320.4,144.97],[320.4,144.97],[320.42,144.97],[320.43,144.96],[320.44,144.96],[320.45,144.96],[320.46,144.96],[320.47,144.95],[320.49,144.95],[320.51,144.95],[320.53,144.95],[320.55,144.95],[320.56,144.94],[320.57,144.94],[320.61,144.94],[320.64,144.94],[320.64,144.94],[320.67,144.93],[320.67,144.93],[320.68,144.93],[320.69,144.93],[320.7,144.93],[320.71,144.93],[320.72,144.92],[320.73,144.92],[320.74,144.91],[320.75,144.9],[320.78,144.89],[320.81,144.87],[320.83,144.86],[320.85,144.85],[320.86,144.84],[320.89,144.83],[320.9,144.82],[320.93,144.8],[320.95,144.79],[320.99,144.76],[321,144.76],[321.01,144.75],[321.01,144.75],[321.02,144.74],[321.02,144.74],[321.02,144.74],[321.03,144.73],[321.03,144.73],[321.04,144.72],[321.04,144.71],[321.04,144.71],[321.05,144.71],[321.05,144.7],[321.05,144.69],[321.06,144.68],[321.07,144.67],[321.07,144.65],[321.09,144.62],[321.11,144.57],[321.12,144.56],[321.12,144.55],[321.13,144.54],[321.14,144.53],[321.14,144.53],[321.15,144.52],[321.16,144.51],[321.16,144.51],[321.17,144.5],[321.2,144.48],[321.21,144.47],[321.21,144.46],[321.22,144.45],[321.23,144.45],[321.23,144.44],[321.24,144.43],[321.24,144.43],[321.25,144.42],[321.25,144.42],[321.27,144.39],[321.27,144.39],[321.3,144.35],[321.3,144.35],[321.32,144.32],[321.34,144.3],[321.34,144.29],[321.35,144.28],[321.36,144.27],[321.37,144.26],[321.37,144.25],[321.37,144.24],[321.38,144.23],[321.38,144.22],[321.38,144.21],[321.39,144.2],[321.39,144.19],[321.39,144.18],[321.39,144.16],[321.39,144.13],[321.4,144.06],[321.4,144.05],[321.4,144.05],[321.4,144.04],[321.4,144.04],[321.4,144.03],[321.4,144.02],[321.4,144.01],[321.41,144],[321.42,143.96],[321.44,143.93],[321.44,143.92],[321.51,143.72],[321.51,143.72],[321.53,143.68],[321.55,143.63],[321.55,143.62],[321.55,143.61],[321.56,143.61],[321.56,143.6],[321.57,143.59],[321.57,143.59],[321.57,143.58],[321.58,143.58],[321.58,143.58],[321.59,143.57],[321.59,143.57],[321.6,143.56],[321.6,143.56],[321.6,143.56],[321.61,143.55],[321.62,143.55],[321.62,143.55],[321.62,143.55],[321.63,143.55],[321.66,143.53],[321.69,143.52],[321.7,143.52],[321.7,143.52],[321.74,143.5],[321.76,143.49],[321.77,143.49],[321.78,143.49],[321.79,143.48],[321.8,143.48],[321.83,143.46],[321.84,143.46],[321.88,143.43],[321.91,143.42],[321.91,143.42],[321.95,143.4],[321.98,143.38],[322,143.37],[322.04,143.34],[322.05,143.34],[322.06,143.33],[322.08,143.33],[322.12,143.31],[322.14,143.3],[322.16,143.3],[322.16,143.3],[322.2,143.28],[322.24,143.27],[322.25,143.27],[322.26,143.27],[322.27,143.26],[322.27,143.26],[322.28,143.26],[322.28,143.25],[322.3,143.24],[322.32,143.23],[322.33,143.22],[322.33,143.22],[322.34,143.22],[322.34,143.22],[322.35,143.21],[322.35,143.21],[322.38,143.2],[322.42,143.18],[322.5,143.15],[322.54,143.13],[322.58,143.11],[322.59,143.11],[322.6,143.1],[322.61,143.1],[322.62,143.1],[322.63,143.09],[322.67,143.08],[322.73,143.07],[322.77,143.06],[322.89,143.03],[322.94,143.02],[323,143.01],[323.01,143.01],[323.02,143],[323.03,143],[323.05,142.99],[323.1,142.96],[323.14,142.94],[323.15,142.93],[323.15,142.93],[323.17,142.92],[323.17,142.92],[323.19,142.91],[323.2,142.91],[323.22,142.9],[323.23,142.89],[323.26,142.88],[323.29,142.87],[323.3,142.86],[323.3,142.86],[323.31,142.86],[323.32,142.85],[323.34,142.84],[323.35,142.83],[323.36,142.82],[323.37,142.81],[323.39,142.8],[323.39,142.8],[323.39,142.8],[323.4,142.8],[323.4,142.79],[323.41,142.79],[323.42,142.79],[323.43,142.79],[323.46,142.78],[323.48,142.77],[323.49,142.77],[323.51,142.77],[323.52,142.77],[323.53,142.76],[323.53,142.76],[323.54,142.76],[323.56,142.75],[323.58,142.74],[323.58,142.74],[323.58,142.74],[323.6,142.73],[323.64,142.71],[323.66,142.71],[323.67,142.7],[323.68,142.7],[323.69,142.69],[323.7,142.69],[323.71,142.69],[323.78,142.67],[323.8,142.67],[323.82,142.67],[323.82,142.66],[323.84,142.66],[323.85,142.66],[323.86,142.65],[323.86,142.65],[323.87,142.65],[323.88,142.64],[323.89,142.63],[323.93,142.6],[323.96,142.58],[323.96,142.58],[323.97,142.57],[323.97,142.57],[323.97,142.57],[323.98,142.56],[323.99,142.56],[324,142.54],[324.01,142.53],[324.02,142.53],[324.03,142.52],[324.04,142.51],[324.05,142.5],[324.05,142.49],[324.06,142.49],[324.07,142.48],[324.08,142.47],[324.08,142.47],[324.09,142.46],[324.1,142.46],[324.11,142.45],[324.12,142.45],[324.12,142.44],[324.13,142.44],[324.14,142.44],[324.15,142.43],[324.16,142.43],[324.17,142.42],[324.17,142.42],[324.19,142.42],[324.21,142.41],[324.23,142.4],[324.26,142.4],[324.28,142.39],[324.29,142.39],[324.33,142.38],[324.33,142.37],[324.33,142.37],[324.34,142.37],[324.35,142.37],[324.36,142.36],[324.37,142.36],[324.38,142.35],[324.39,142.35],[324.4,142.34],[324.4,142.33],[324.41,142.32],[324.42,142.32],[324.43,142.31],[324.43,142.3],[324.44,142.29],[324.44,142.29],[324.45,142.27],[324.46,142.26],[324.47,142.25],[324.47,142.24],[324.48,142.23],[324.5,142.2],[324.51,142.18],[324.52,142.17],[324.52,142.16],[324.53,142.15],[324.53,142.14],[324.54,142.13],[324.54,142.12],[324.54,142.11],[324.55,142.08],[324.56,142.08],[324.56,142.07],[324.56,142.06],[324.56,142.06],[324.57,142.05],[324.57,142.05],[324.57,142.05],[324.57,142.04],[324.58,142.04],[324.58,142.03],[324.58,142.03],[324.59,142.02],[324.6,142.01],[324.6,142.01],[324.6,142.01],[324.61,142],[324.61,142],[324.62,142],[324.62,141.99],[324.63,141.99],[324.64,141.98],[324.65,141.98],[324.65,141.98],[324.66,141.97],[324.66,141.97],[324.71,141.94],[324.72,141.94],[324.73,141.93],[324.74,141.92],[324.74,141.92],[324.75,141.9],[324.76,141.9],[324.76,141.9],[324.77,141.89],[324.78,141.88],[324.79,141.88],[324.79,141.87],[324.8,141.86],[324.81,141.86],[324.82,141.85],[324.83,141.85],[324.84,141.84],[324.86,141.83],[324.89,141.82],[324.9,141.81],[324.92,141.8],[324.94,141.79],[324.94,141.79],[324.95,141.79],[324.97,141.77],[324.98,141.76],[324.99,141.76],[324.99,141.75],[324.99,141.75],[325,141.75],[325,141.74],[325,141.74],[325.01,141.73],[325.01,141.73],[325.01,141.72],[325.01,141.71],[325.01,141.7],[325.01,141.69],[325.01,141.69],[325.01,141.68],[325.01,141.68],[325.01,141.67],[325.01,141.67],[325.02,141.66],[325.02,141.65],[325.01,141.64],[325.01,141.63],[325.01,141.62],[325.01,141.62],[325.01,141.62],[325.01,141.61],[325.01,141.6],[325.01,141.6],[325.01,141.59],[325.02,141.58],[325.02,141.58],[325.02,141.58],[325.02,141.57],[325.02,141.57],[325.02,141.56],[325.02,141.56],[325.02,141.55],[325.03,141.54],[325.03,141.53],[325.03,141.53],[325.03,141.53],[325.04,141.51],[325.04,141.51],[325.04,141.5],[325.04,141.49],[325.04,141.49],[325.04,141.49],[325.05,141.48],[325.05,141.47],[325.05,141.47],[325.05,141.46],[325.06,141.45],[325.06,141.45],[325.06,141.44],[325.06,141.44],[325.07,141.43],[325.07,141.42],[325.07,141.42],[325.08,141.41],[325.08,141.4],[325.09,141.39],[325.09,141.38],[325.1,141.37],[325.1,141.37],[325.1,141.36],[325.11,141.35],[325.11,141.34],[325.11,141.33],[325.12,141.31],[325.12,141.3],[325.12,141.29],[325.12,141.28],[325.12,141.28],[325.13,141.26],[325.13,141.26],[325.13,141.26],[325.13,141.25],[325.14,141.23],[325.14,141.21],[325.14,141.2],[325.14,141.19],[325.15,141.19],[325.15,141.18],[325.15,141.18],[325.15,141.18],[325.16,141.17],[325.16,141.16],[325.16,141.15],[325.17,141.15],[325.17,141.14],[325.18,141.13],[325.19,141.12],[325.2,141.11],[325.2,141.11],[325.21,141.1],[325.21,141.09],[325.22,141.08],[325.22,141.06],[325.23,141.05],[325.23,141.04],[325.23,141.04],[325.24,141.04],[325.24,141.02],[325.25,141],[325.25,140.99],[325.26,140.97],[325.26,140.96],[325.26,140.94],[325.27,140.92],[325.27,140.9],[325.27,140.89],[325.28,140.88],[325.28,140.87],[325.28,140.86],[325.29,140.85],[325.29,140.84],[325.29,140.84],[325.3,140.83],[325.3,140.82],[325.31,140.81],[325.32,140.8],[325.32,140.79],[325.33,140.79],[325.34,140.78],[325.34,140.77],[325.35,140.77],[325.35,140.77],[325.35,140.77],[325.36,140.76],[325.37,140.75],[325.38,140.75],[325.38,140.74],[325.39,140.74],[325.39,140.74],[325.4,140.73],[325.4,140.73],[325.41,140.73],[325.42,140.72],[325.43,140.72],[325.43,140.71],[325.44,140.7],[325.45,140.7],[325.45,140.69],[325.45,140.69],[325.46,140.69],[325.46,140.68],[325.46,140.68],[325.47,140.67],[325.48,140.66],[325.48,140.65],[325.49,140.64],[325.49,140.64],[325.49,140.64],[325.5,140.63],[325.5,140.62],[325.51,140.62],[325.51,140.61],[325.52,140.61],[325.53,140.6],[325.53,140.6],[325.55,140.59],[325.55,140.58],[325.57,140.56],[325.59,140.55],[325.6,140.55],[325.6,140.55],[325.61,140.54],[325.62,140.53],[325.62,140.53],[325.63,140.52],[325.63,140.52],[325.64,140.51],[325.64,140.51],[325.67,140.48],[325.68,140.47],[325.68,140.47],[325.69,140.46],[325.69,140.45],[325.69,140.45],[325.7,140.45],[325.7,140.44],[325.7,140.44],[325.7,140.43],[325.7,140.43],[325.71,140.42],[325.71,140.42],[325.71,140.42],[325.71,140.41],[325.71,140.4],[325.71,140.4],[325.71,140.39],[325.71,140.39],[325.71,140.38],[325.71,140.37],[325.7,140.33],[325.7,140.32],[325.7,140.31],[325.7,140.31],[325.7,140.3],[325.7,140.3],[325.7,140.29],[325.7,140.28],[325.7,140.28],[325.71,140.27],[325.72,140.26],[325.72,140.25],[325.73,140.24],[325.73,140.24],[325.73,140.23],[325.74,140.23],[325.75,140.22],[325.75,140.22],[325.76,140.22],[325.77,140.21],[325.78,140.21],[325.8,140.2],[325.8,140.2],[325.82,140.2],[325.83,140.2],[325.84,140.2],[325.85,140.2],[325.85,140.2],[325.88,140.19],[325.89,140.19],[325.89,140.19],[325.9,140.19],[325.9,140.19],[325.91,140.18],[325.92,140.18],[325.92,140.18],[325.93,140.18],[325.94,140.17],[325.94,140.17],[325.96,140.16],[325.98,140.16],[326,140.15],[326.01,140.14],[326.02,140.14],[326.04,140.13],[326.05,140.12],[326.05,140.12],[326.06,140.11],[326.07,140.1],[326.07,140.1],[326.08,140.1],[326.08,140.1],[326.08,140.1],[326.09,140.09],[326.09,140.08],[326.1,140.08],[326.1,140.06],[326.12,140.04],[326.12,140.03],[326.13,140.02],[326.13,140.01],[326.13,140.01],[326.13,140],[326.14,139.96],[326.14,139.96],[326.14,139.95],[326.15,139.92],[326.15,139.91],[326.15,139.9],[326.15,139.9],[326.15,139.89],[326.16,139.88],[326.18,139.83],[326.18,139.83],[326.2,139.8],[326.2,139.79],[326.2,139.79],[326.2,139.78],[326.21,139.78],[326.21,139.77],[326.21,139.75],[326.21,139.74],[326.21,139.74],[326.21,139.73],[326.21,139.73],[326.21,139.72],[326.21,139.72],[326.21,139.71],[326.22,139.7],[326.22,139.69],[326.22,139.68],[326.23,139.68],[326.24,139.65],[326.24,139.65],[326.24,139.64],[326.25,139.63],[326.25,139.62],[326.25,139.62],[326.26,139.61],[326.26,139.61],[326.27,139.6],[326.28,139.6],[326.29,139.59],[326.29,139.59],[326.3,139.59],[326.31,139.59],[326.31,139.58],[326.32,139.58],[326.32,139.58],[326.32,139.58],[326.33,139.58],[326.33,139.58],[326.34,139.57],[326.35,139.57],[326.36,139.56],[326.37,139.56],[326.38,139.55],[326.39,139.54],[326.4,139.54],[326.4,139.54],[326.41,139.54],[326.41,139.54],[326.41,139.53],[326.42,139.53],[326.42,139.53],[326.43,139.53],[326.43,139.53],[326.44,139.53],[326.45,139.53],[326.46,139.53],[326.47,139.53],[326.48,139.53],[326.48,139.53],[326.49,139.53],[326.52,139.53],[326.53,139.53],[326.53,139.53],[326.55,139.53],[326.58,139.53],[326.58,139.53],[326.59,139.53],[326.6,139.53],[326.61,139.53],[326.62,139.54],[326.64,139.54],[326.66,139.54],[326.67,139.55],[326.71,139.54],[326.73,139.54],[326.73,139.54],[326.75,139.54],[326.76,139.54],[326.77,139.54],[326.78,139.54],[326.78,139.54],[326.78,139.54],[326.79,139.54],[326.8,139.54],[326.81,139.53],[326.83,139.53],[326.83,139.53],[326.84,139.52],[326.85,139.52],[326.86,139.52],[326.86,139.52],[326.87,139.51],[326.88,139.51],[326.89,139.51],[326.91,139.51],[326.91,139.51],[326.92,139.5],[326.93,139.5],[326.94,139.5],[326.95,139.49],[326.96,139.49],[326.96,139.49],[326.97,139.48],[326.98,139.48],[326.99,139.48],[327,139.48],[327.01,139.48],[327.02,139.48],[327.02,139.48],[327.03,139.48],[327.08,139.48],[327.09,139.48],[327.12,139.48],[327.13,139.48],[327.14,139.48],[327.14,139.48],[327.15,139.48],[327.15,139.48],[327.15,139.48],[327.16,139.47],[327.16,139.47],[327.17,139.47],[327.17,139.47],[327.18,139.47],[327.19,139.46],[327.19,139.46],[327.2,139.46],[327.21,139.46],[327.21,139.45],[327.21,139.45],[327.22,139.45],[327.23,139.45],[327.23,139.45],[327.24,139.45],[327.24,139.45],[327.25,139.45],[327.26,139.45],[327.26,139.44],[327.27,139.44],[327.27,139.44],[327.29,139.43],[327.29,139.43],[327.3,139.43],[327.3,139.43],[327.31,139.43],[327.31,139.43],[327.32,139.43],[327.33,139.43],[327.34,139.43],[327.38,139.44],[327.38,139.44],[327.39,139.44],[327.39,139.44],[327.4,139.44],[327.41,139.45],[327.42,139.45],[327.46,139.46],[327.47,139.46],[327.47,139.46],[327.48,139.46],[327.48,139.46],[327.49,139.46],[327.49,139.46],[327.5,139.46],[327.51,139.46],[327.51,139.46],[327.52,139.46],[327.52,139.46],[327.53,139.45],[327.54,139.45],[327.55,139.44],[327.56,139.44],[327.56,139.44],[327.57,139.44],[327.57,139.44],[327.58,139.43],[327.58,139.43],[327.59,139.43],[327.59,139.43],[327.59,139.43],[327.6,139.43],[327.62,139.44],[327.66,139.44],[327.67,139.44],[327.68,139.44],[327.69,139.45],[327.7,139.45],[327.7,139.45],[327.71,139.45],[327.71,139.45],[327.72,139.45],[327.73,139.44],[327.76,139.44],[327.77,139.43],[327.78,139.43],[327.79,139.43],[327.79,139.43],[327.8,139.43],[327.8,139.43],[327.81,139.43],[327.81,139.43],[327.82,139.43],[327.82,139.43],[327.82,139.44],[327.84,139.44],[327.85,139.44],[327.85,139.45],[327.86,139.45],[327.87,139.45],[327.87,139.45],[327.88,139.45],[327.89,139.45],[327.89,139.45],[327.9,139.45],[327.91,139.44],[327.91,139.44],[327.92,139.44],[327.93,139.44],[327.94,139.44],[327.94,139.44],[327.95,139.44],[327.97,139.45],[327.99,139.45],[327.99,139.45],[328,139.45],[328.03,139.45],[328.03,139.45],[328.04,139.45],[328.05,139.45],[328.1,139.46],[328.11,139.47],[328.11,139.47],[328.12,139.47],[328.14,139.48],[328.15,139.48],[328.15,139.48],[328.16,139.49],[328.17,139.49],[328.18,139.49],[328.19,139.49],[328.21,139.49],[328.21,139.49],[328.23,139.49],[328.23,139.49],[328.24,139.49],[328.25,139.49],[328.25,139.49],[328.26,139.49],[328.26,139.48],[328.27,139.48],[328.3,139.47],[328.31,139.46],[328.33,139.45],[328.34,139.45],[328.36,139.44],[328.37,139.44],[328.38,139.43],[328.38,139.43],[328.39,139.43],[328.39,139.43],[328.4,139.43],[328.41,139.43],[328.42,139.43],[328.43,139.43],[328.44,139.43],[328.45,139.43],[328.45,139.43],[328.46,139.43],[328.47,139.42],[328.47,139.42],[328.48,139.42],[328.48,139.42],[328.49,139.41],[328.49,139.4],[328.51,139.39],[328.53,139.37],[328.53,139.36],[328.55,139.35],[328.55,139.35],[328.55,139.35],[328.56,139.34],[328.57,139.34],[328.58,139.34],[328.6,139.33],[328.61,139.33],[328.61,139.33],[328.62,139.33],[328.63,139.33],[328.65,139.32],[328.66,139.32],[328.68,139.32],[328.69,139.31],[328.71,139.31],[328.72,139.31],[328.72,139.31],[328.73,139.3],[328.74,139.3],[328.76,139.29],[328.77,139.29],[328.77,139.28],[328.78,139.28],[328.78,139.27],[328.79,139.27],[328.79,139.27],[328.8,139.26],[328.81,139.25],[328.81,139.25],[328.82,139.24],[328.83,139.22],[328.84,139.2],[328.85,139.19],[328.85,139.18],[328.85,139.18],[328.86,139.18],[328.87,139.17],[328.87,139.16],[328.88,139.16],[328.93,139.12],[328.94,139.11],[328.95,139.11],[328.95,139.1],[328.96,139.1],[328.96,139.09],[328.97,139.08],[328.97,139.07],[328.98,139.07],[328.98,139.06],[328.99,139.04],[329,139.03],[329,139.03],[329.01,139.02],[329.01,139.01],[329.02,139],[329.02,139],[329.03,138.99],[329.04,138.99],[329.09,138.95],[329.09,138.95],[329.1,138.94],[329.11,138.93],[329.14,138.91],[329.15,138.9],[329.16,138.9],[329.16,138.89],[329.16,138.89],[329.17,138.88],[329.22,138.83],[329.23,138.82],[329.24,138.81],[329.24,138.8],[329.24,138.8],[329.25,138.79],[329.26,138.77],[329.26,138.77],[329.3,138.71],[329.3,138.7],[329.31,138.68],[329.39,138.53],[329.41,138.51],[329.41,138.5],[329.42,138.49],[329.43,138.48],[329.44,138.47],[329.44,138.47],[329.44,138.46],[329.45,138.46],[329.46,138.45],[329.47,138.44],[329.47,138.44],[329.48,138.43],[329.49,138.43],[329.5,138.42],[329.51,138.4],[329.52,138.39],[329.52,138.39],[329.53,138.38],[329.54,138.37],[329.54,138.37],[329.54,138.37],[329.56,138.35],[329.56,138.35],[329.57,138.34],[329.57,138.33],[329.58,138.32],[329.58,138.32],[329.59,138.31],[329.59,138.3],[329.59,138.29],[329.6,138.27],[329.6,138.26],[329.61,138.25],[329.61,138.24],[329.62,138.24],[329.62,138.23],[329.63,138.21],[329.65,138.17],[329.66,138.16],[329.67,138.15],[329.73,138.07],[329.74,138.06],[329.75,138.05],[329.75,138.04],[329.77,138.03],[329.8,138],[329.82,137.98],[329.85,137.95],[329.85,137.95],[329.86,137.94],[329.87,137.94],[329.87,137.93],[329.91,137.88],[329.93,137.86],[329.97,137.81],[329.98,137.8],[329.99,137.79],[330.02,137.76],[330.08,137.7],[330.09,137.7],[330.1,137.69],[330.1,137.68],[330.11,137.68],[330.13,137.66],[330.14,137.65],[330.15,137.64],[330.16,137.63],[330.17,137.63],[330.18,137.62],[330.19,137.61],[330.19,137.61],[330.2,137.6],[330.22,137.6],[330.23,137.59],[330.24,137.59],[330.25,137.59],[330.26,137.58],[330.27,137.58],[330.28,137.58],[330.29,137.58],[330.3,137.58],[330.33,137.57],[330.37,137.57],[330.38,137.57],[330.39,137.57],[330.41,137.57],[330.43,137.56],[330.46,137.56],[330.47,137.56],[330.5,137.56],[330.51,137.55],[330.52,137.55],[330.53,137.55],[330.54,137.55],[330.56,137.55],[330.57,137.55],[330.6,137.56],[330.73,137.58],[330.74,137.58],[330.75,137.58],[330.76,137.58],[330.77,137.58],[330.78,137.58],[330.79,137.58],[330.8,137.57],[330.82,137.57],[330.83,137.57],[330.89,137.55],[330.93,137.54],[330.97,137.52],[330.99,137.52],[331.01,137.51],[331.02,137.51],[331.03,137.51],[331.05,137.5],[331.08,137.5],[331.1,137.5],[331.14,137.49],[331.16,137.49],[331.18,137.49],[331.18,137.49],[331.2,137.49],[331.22,137.49],[331.25,137.5],[331.26,137.5],[331.3,137.51],[331.31,137.51],[331.31,137.51],[331.32,137.52],[331.33,137.52],[331.34,137.52],[331.35,137.52],[331.36,137.52],[331.37,137.52],[331.43,137.52],[331.47,137.52],[331.48,137.52],[331.48,137.52],[331.52,137.52],[331.52,137.52],[331.55,137.52],[331.56,137.52],[331.58,137.52],[331.59,137.52],[331.6,137.52],[331.62,137.52],[331.62,137.52],[331.64,137.51],[331.65,137.51],[331.67,137.5],[331.69,137.5],[331.7,137.49],[331.71,137.49],[331.73,137.48],[331.74,137.48],[331.76,137.48],[331.76,137.48],[331.76,137.48],[331.77,137.48],[331.78,137.49],[331.79,137.49],[331.81,137.49],[331.83,137.5],[331.85,137.51],[331.86,137.52],[331.88,137.53],[331.89,137.53],[331.9,137.54],[331.91,137.54],[331.92,137.56],[331.94,137.57],[331.94,137.58],[331.95,137.58],[331.95,137.59],[331.98,137.61],[331.99,137.63],[332.01,137.64],[332.02,137.66],[332.02,137.66],[332.03,137.66],[332.04,137.67],[332.05,137.68],[332.07,137.69],[332.09,137.71],[332.1,137.71],[332.12,137.73],[332.14,137.75],[332.15,137.75],[332.16,137.76],[332.18,137.77],[332.19,137.77],[332.2,137.78],[332.21,137.78],[332.21,137.78],[332.22,137.78],[332.23,137.79],[332.25,137.79],[332.26,137.79],[332.29,137.8],[332.31,137.8],[332.32,137.8],[332.37,137.81],[332.4,137.81],[332.43,137.82],[332.46,137.83],[332.53,137.84],[332.54,137.84],[332.57,137.85],[332.61,137.86],[332.63,137.86],[332.64,137.86],[332.65,137.86],[332.69,137.87],[332.71,137.87],[332.72,137.87],[332.73,137.87],[332.74,137.87],[332.75,137.87],[332.77,137.87],[332.8,137.87],[332.82,137.88],[332.83,137.88],[332.84,137.88],[332.84,137.88],[332.85,137.88],[332.86,137.88],[332.86,137.88],[332.87,137.89],[332.88,137.89],[332.9,137.9],[332.9,137.9],[332.91,137.9],[332.95,137.92],[332.96,137.92],[332.98,137.93],[332.99,137.93],[333.01,137.94],[333.04,137.95],[333.08,137.97],[333.09,137.98],[333.14,138],[333.29,138.07],[333.3,138.07],[333.31,138.08],[333.32,138.08],[333.34,138.08],[333.36,138.09],[333.46,138.1],[333.49,138.11],[333.5,138.11],[333.52,138.11],[333.55,138.11],[333.59,138.11],[333.6,138.11],[333.62,138.12],[333.63,138.12],[333.65,138.12],[333.67,138.12],[333.7,138.13],[333.71,138.13],[333.74,138.13],[333.8,138.15],[333.84,138.15],[333.88,138.16],[333.89,138.16],[333.92,138.17],[333.92,138.17],[333.94,138.17],[333.95,138.18],[333.96,138.19],[333.98,138.2],[334.08,138.27],[334.13,138.31],[334.14,138.31],[334.15,138.33],[334.16,138.33],[334.17,138.34],[334.17,138.34],[334.18,138.34],[334.19,138.35],[334.2,138.35],[334.22,138.36],[334.24,138.36],[334.24,138.36],[334.26,138.36],[334.27,138.36],[334.28,138.36],[334.29,138.37],[334.34,138.36],[334.35,138.36],[334.37,138.36],[334.39,138.36],[334.42,138.37],[334.53,138.38],[334.54,138.38],[334.55,138.38],[334.56,138.38],[334.57,138.38],[334.58,138.38],[334.6,138.37],[334.6,138.37],[334.73,138.35],[334.78,138.34],[334.79,138.34],[334.8,138.34],[334.81,138.33],[334.82,138.33],[334.84,138.33],[334.86,138.33],[334.88,138.33],[334.96,138.34],[334.97,138.34],[334.98,138.34],[335.01,138.34],[335.03,138.34],[335.04,138.34],[335.05,138.34],[335.13,138.35],[335.13,138.36],[335.15,138.36],[335.16,138.36],[335.16,138.36],[335.16,138.36],[335.19,138.36],[335.19,138.36],[335.25,138.37],[335.26,138.37],[335.29,138.38],[335.3,138.38],[335.31,138.39],[335.34,138.39],[335.37,138.4],[335.38,138.41],[335.4,138.41],[335.42,138.42],[335.44,138.42],[335.46,138.43],[335.47,138.43],[335.48,138.43],[335.48,138.43],[335.51,138.44],[335.54,138.45],[335.57,138.47],[335.59,138.48],[335.66,138.5],[335.67,138.51],[335.68,138.51],[335.79,138.55],[335.79,138.55],[335.8,138.56],[335.82,138.56],[335.83,138.57],[335.84,138.57],[335.85,138.57],[335.87,138.58],[335.88,138.58],[335.88,138.58],[335.89,138.58],[335.89,138.58],[335.9,138.58],[335.92,138.58],[335.93,138.58],[335.94,138.58],[335.99,138.58],[336.04,138.58],[336.07,138.58],[336.08,138.58],[336.08,138.58],[336.1,138.58],[336.11,138.58],[336.13,138.58],[336.14,138.59],[336.17,138.59],[336.2,138.59],[336.26,138.6],[336.29,138.6],[336.32,138.61],[336.33,138.61],[336.33,138.61],[336.34,138.61],[336.36,138.61],[336.38,138.61],[336.38,138.61],[336.39,138.61],[336.41,138.61],[336.43,138.61],[336.46,138.61],[336.46,138.61],[336.47,138.61],[336.49,138.61],[336.49,138.61],[336.5,138.61],[336.62,138.62],[336.65,138.62],[336.77,138.62],[336.79,138.62],[336.85,138.63],[336.85,138.63],[336.86,138.63],[336.89,138.63],[336.89,138.63],[336.9,138.63],[336.92,138.63],[336.93,138.63],[336.95,138.63],[336.96,138.63],[336.97,138.63],[337,138.63],[337.02,138.63],[337.04,138.62],[337.09,138.62],[337.15,138.61],[337.23,138.59],[337.26,138.58],[337.3,138.58],[337.32,138.58],[337.34,138.58],[337.35,138.58],[337.42,138.59],[337.43,138.59],[337.44,138.59],[337.48,138.59],[337.49,138.6],[337.49,138.6],[337.5,138.6],[337.53,138.6],[337.53,138.6],[337.56,138.61],[337.58,138.61],[337.59,138.61],[337.6,138.61],[337.61,138.62],[337.62,138.62],[337.62,138.62],[337.63,138.62],[337.64,138.63],[337.66,138.64],[337.66,138.64],[337.66,138.64],[337.7,138.66],[337.79,138.71],[337.8,138.71],[337.82,138.72],[337.84,138.74],[337.84,138.74],[337.92,138.79],[337.92,138.79],[337.93,138.8],[337.95,138.82],[337.97,138.83],[337.99,138.84],[338,138.84],[338.02,138.85],[338.03,138.86],[338.03,138.86],[338.04,138.86],[338.05,138.86],[338.06,138.86],[338.06,138.86],[338.08,138.87],[338.09,138.87],[338.1,138.87],[338.11,138.87],[338.12,138.87],[338.13,138.88],[338.14,138.88],[338.14,138.88],[338.15,138.88],[338.15,138.88],[338.16,138.88],[338.16,138.88],[338.17,138.89],[338.17,138.89],[338.18,138.89],[338.19,138.89],[338.2,138.9],[338.2,138.9],[338.21,138.9],[338.21,138.91],[338.22,138.91],[338.26,138.95],[338.28,138.96],[338.28,138.96],[338.29,138.96],[338.3,138.97],[338.3,138.97],[338.31,138.98],[338.32,138.98],[338.33,138.98],[338.33,138.99],[338.34,138.99],[338.35,138.99],[338.35,138.99],[338.36,138.99],[338.37,138.99],[338.38,139],[338.38,139],[338.39,139],[338.4,139],[338.41,139],[338.42,139.01],[338.42,139.01],[338.44,139.02],[338.45,139.02],[338.46,139.03],[338.47,139.03],[338.47,139.03],[338.48,139.04],[338.48,139.04],[338.49,139.04],[338.49,139.05],[338.5,139.05],[338.5,139.05],[338.5,139.06],[338.51,139.06],[338.51,139.07],[338.52,139.07],[338.52,139.08],[338.53,139.09],[338.53,139.09],[338.54,139.1],[338.54,139.1],[338.54,139.11],[338.55,139.12],[338.56,139.13],[338.56,139.14],[338.57,139.14],[338.57,139.15],[338.57,139.16],[338.58,139.17],[338.58,139.17],[338.58,139.17],[338.6,139.19],[338.6,139.2],[338.6,139.2],[338.61,139.21],[338.61,139.21],[338.61,139.22],[338.62,139.22],[338.62,139.22],[338.62,139.22],[338.62,139.23],[338.63,139.23],[338.63,139.24],[338.64,139.24],[338.64,139.24],[338.64,139.25],[338.66,139.26],[338.66,139.26],[338.66,139.26],[338.67,139.26],[338.67,139.27],[338.67,139.27],[338.68,139.28],[338.68,139.28],[338.68,139.28],[338.69,139.29],[338.69,139.3],[338.7,139.3],[338.7,139.3],[338.7,139.31],[338.71,139.31],[338.71,139.32],[338.72,139.33],[338.72,139.33],[338.73,139.33],[338.73,139.34],[338.74,139.34],[338.75,139.35],[338.76,139.36],[338.8,139.39],[338.83,139.41],[338.86,139.42],[338.86,139.43],[338.87,139.43],[338.89,139.45],[338.9,139.45],[338.91,139.46],[338.92,139.46],[338.92,139.46],[338.94,139.47],[338.95,139.47],[338.97,139.48],[339,139.48],[339.04,139.48],[339.06,139.48],[339.07,139.49],[339.08,139.49],[339.09,139.49],[339.1,139.49],[339.1,139.5],[339.11,139.5],[339.11,139.5],[339.12,139.51],[339.13,139.51],[339.14,139.52],[339.14,139.52],[339.15,139.52],[339.16,139.53],[339.18,139.54],[339.19,139.54],[339.2,139.54],[339.21,139.55],[339.21,139.55],[339.22,139.55],[339.23,139.55],[339.24,139.56],[339.25,139.56],[339.33,139.57],[339.33,139.57],[339.34,139.57],[339.34,139.57],[339.34,139.57],[339.36,139.57],[339.36,139.57],[339.37,139.57],[339.42,139.56],[339.43,139.56],[339.45,139.56],[339.46,139.55],[339.47,139.56],[339.49,139.56],[339.5,139.56],[339.51,139.56],[339.53,139.56],[339.53,139.57],[339.6,139.59],[339.6,139.59],[339.62,139.6],[339.64,139.61],[339.66,139.61],[339.68,139.61],[339.72,139.62],[339.73,139.62],[339.86,139.63],[339.89,139.63],[339.91,139.63],[339.92,139.63],[339.93,139.63],[339.96,139.64],[339.96,139.64],[340,139.65],[340,139.65],[340.07,139.66],[340.08,139.66],[340.08,139.66],[340.1,139.67],[340.11,139.67],[340.11,139.67],[340.26,139.7],[340.26,139.7],[340.28,139.71],[340.3,139.71],[340.3,139.71],[340.38,139.72],[340.53,139.74],[340.57,139.75],[340.58,139.75],[340.59,139.75],[340.6,139.75],[340.61,139.75],[340.62,139.75],[340.64,139.75],[340.67,139.75],[340.77,139.75],[340.79,139.75],[340.8,139.75],[340.8,139.75],[340.8,139.75],[340.81,139.75],[340.92,139.75],[340.92,139.75],[340.95,139.74],[340.97,139.74],[340.98,139.74],[341,139.74],[341.01,139.74],[341.03,139.74],[341.04,139.74],[341.05,139.74],[341.06,139.74],[341.07,139.75],[341.09,139.75],[341.09,139.75],[341.11,139.76],[341.12,139.76],[341.12,139.76],[341.17,139.79],[341.21,139.81],[341.3,139.85],[341.31,139.85],[341.32,139.86],[341.32,139.86],[341.34,139.87],[341.35,139.88],[341.37,139.89],[341.4,139.91],[341.42,139.93],[341.43,139.93],[341.44,139.94],[341.45,139.94],[341.45,139.95],[341.46,139.95],[341.47,139.95],[341.47,139.95],[341.48,139.96],[341.49,139.96],[341.49,139.96],[341.5,139.96],[341.51,139.96],[341.51,139.96],[341.51,139.96],[341.51,139.96],[341.52,139.96],[341.53,139.96],[341.53,139.96],[341.55,139.96],[341.55,139.96],[341.55,139.96],[341.56,139.96],[341.57,139.95],[341.57,139.95],[341.61,139.94],[341.62,139.94],[341.64,139.94],[341.64,139.94],[341.72,139.92],[341.74,139.91],[341.75,139.91],[341.75,139.91],[341.77,139.9],[341.83,139.88],[341.87,139.86],[341.92,139.84],[342.01,139.8],[342.04,139.78],[342.07,139.77],[342.08,139.76],[342.1,139.76],[342.12,139.75],[342.13,139.74],[342.13,139.74],[342.14,139.74],[342.15,139.73],[342.16,139.72],[342.18,139.7],[342.25,139.63],[342.25,139.63],[342.26,139.63],[342.26,139.62],[342.33,139.55],[342.34,139.55],[342.34,139.55],[342.36,139.53],[342.36,139.53],[342.37,139.52],[342.39,139.51],[342.41,139.49],[342.42,139.48],[342.43,139.47],[342.43,139.47],[342.44,139.47],[342.45,139.46],[342.45,139.46],[342.47,139.46],[342.49,139.45],[342.5,139.45],[342.5,139.45],[342.5,139.45],[342.6,139.44],[342.63,139.43],[342.65,139.43],[342.74,139.41],[342.75,139.41],[342.75,139.41],[342.8,139.4],[342.85,139.38],[342.89,139.37],[342.9,139.37],[342.91,139.37],[342.92,139.36],[342.93,139.36],[342.95,139.36],[342.97,139.36],[343.07,139.38],[343.08,139.38],[343.09,139.38],[343.12,139.38],[343.17,139.39],[343.17,139.39],[343.23,139.39],[343.26,139.39],[343.28,139.4],[343.28,139.4],[343.29,139.4],[343.3,139.4],[343.31,139.4],[343.31,139.4],[343.32,139.39],[343.4,139.38],[343.41,139.38],[343.42,139.38],[343.63,139.33],[343.65,139.33],[343.66,139.33],[343.66,139.33],[343.68,139.33],[343.7,139.32],[343.71,139.32],[343.73,139.32],[343.74,139.32],[343.84,139.31],[343.93,139.31],[344.02,139.31],[344.06,139.3],[344.1,139.3],[344.14,139.3],[344.15,139.3],[344.16,139.3],[344.17,139.3],[344.2,139.3],[344.25,139.31],[344.35,139.31],[344.42,139.32],[344.46,139.32],[344.51,139.33],[344.57,139.33],[344.58,139.33],[344.58,139.33],[344.59,139.33],[344.6,139.33],[344.61,139.33],[344.61,139.33],[344.63,139.32],[344.64,139.32],[344.64,139.32],[345.06,139.23],[345.09,139.23],[345.35,139.17],[345.46,139.15],[345.48,139.15],[345.49,139.15],[345.5,139.15],[345.52,139.15],[345.55,139.15],[345.55,139.15],[345.73,139.18],[345.76,139.18],[345.78,139.18],[345.87,139.2],[345.89,139.2],[345.91,139.2],[345.93,139.2],[345.94,139.2],[345.95,139.2],[345.96,139.19],[345.98,139.18],[345.99,139.18],[345.99,139.18],[346,139.17],[346,139.17],[346.05,139.14],[346.05,139.13],[346.18,139.05],[346.19,139.04],[346.21,139.03],[346.22,139.03],[346.23,139.03],[346.33,139],[346.72,138.92],[346.74,138.91],[346.75,138.91],[346.76,138.9],[346.77,138.9],[346.78,138.89],[346.79,138.88],[346.8,138.88],[346.81,138.87],[346.86,138.82],[346.87,138.8],[346.89,138.79],[346.9,138.77],[346.92,138.74],[346.94,138.71],[346.98,138.66],[346.99,138.64],[347.01,138.61],[347.03,138.59],[347.04,138.56],[347.06,138.53],[347.08,138.49],[347.1,138.45],[347.12,138.42],[347.14,138.39],[347.14,138.38],[347.15,138.37],[347.15,138.36],[347.16,138.35],[347.17,138.35],[347.17,138.34],[347.17,138.34],[347.18,138.33],[347.19,138.33],[347.19,138.32],[347.2,138.32],[347.22,138.3],[347.25,138.29],[347.3,138.26],[347.32,138.25],[347.33,138.24],[347.34,138.24],[347.34,138.24],[347.37,138.23],[347.38,138.23],[347.4,138.23],[347.41,138.23],[347.43,138.23],[347.44,138.23],[347.48,138.23],[347.55,138.23],[347.64,138.23],[347.66,138.23],[347.66,138.23],[347.67,138.23],[347.68,138.23],[347.69,138.24],[347.7,138.24],[347.71,138.24],[347.72,138.24],[347.73,138.25],[347.74,138.26],[347.81,138.29],[347.82,138.29],[347.82,138.29],[347.84,138.3],[347.85,138.3],[347.85,138.31],[347.92,138.34],[347.92,138.34],[347.95,138.35],[347.96,138.35],[347.98,138.36],[347.99,138.37],[347.99,138.37],[348,138.37],[348.01,138.37],[348.02,138.38],[348.03,138.38],[348.03,138.38],[348.04,138.38],[348.04,138.38],[348.05,138.38],[348.06,138.38],[348.07,138.37],[348.14,138.36],[348.15,138.36],[348.18,138.36],[348.18,138.35],[348.22,138.35],[348.24,138.35],[348.25,138.34],[348.25,138.34],[348.27,138.34],[348.3,138.33],[348.32,138.33],[348.32,138.33],[348.33,138.33],[348.34,138.33],[348.35,138.33],[348.35,138.33],[348.36,138.33],[348.37,138.33],[348.37,138.33],[348.38,138.33],[348.39,138.33],[348.4,138.33],[348.41,138.33],[348.43,138.33],[348.44,138.34],[348.45,138.34],[348.46,138.33],[348.46,138.33],[348.54,138.33],[348.58,138.32],[348.58,138.32],[348.59,138.32],[348.6,138.32],[348.61,138.32],[348.62,138.32],[348.62,138.32],[348.68,138.33],[348.74,138.34],[348.76,138.34],[348.8,138.35],[348.81,138.35],[348.84,138.35],[348.85,138.35],[348.86,138.35],[348.86,138.35],[348.87,138.35],[348.87,138.36],[348.88,138.36],[348.89,138.36],[348.89,138.37],[348.89,138.37],[348.9,138.38],[348.9,138.38],[348.9,138.38],[348.9,138.39],[348.91,138.39],[348.91,138.4],[348.91,138.4],[348.92,138.41],[348.92,138.41],[348.92,138.42],[348.93,138.42],[348.93,138.42],[348.94,138.43],[348.96,138.43],[348.98,138.45],[349.04,138.47],[349.06,138.48],[349.08,138.49],[349.12,138.51],[349.13,138.52],[349.13,138.52],[349.14,138.52],[349.14,138.52],[349.15,138.53],[349.16,138.53],[349.17,138.54],[349.18,138.55],[349.22,138.58],[349.24,138.6],[349.25,138.61],[349.25,138.61],[349.26,138.62],[349.29,138.64],[349.3,138.65],[349.39,138.72],[349.4,138.73],[349.41,138.74],[349.42,138.75],[349.45,138.77],[349.46,138.78],[349.47,138.78],[349.47,138.79],[349.47,138.79],[349.48,138.79],[349.48,138.79],[349.49,138.79],[349.49,138.79],[349.49,138.79],[349.5,138.79],[349.5,138.79],[349.51,138.79],[349.51,138.79],[349.52,138.79],[349.52,138.79],[349.53,138.78],[349.53,138.78],[349.54,138.77],[349.55,138.77],[349.68,138.72],[349.71,138.71],[349.78,138.69],[349.79,138.68],[349.8,138.68],[349.8,138.68],[349.81,138.67],[349.81,138.67],[349.82,138.67],[349.82,138.67],[349.83,138.67],[349.83,138.67],[350,138.67],[350.01,138.67],[350.02,138.67],[350.03,138.67],[350.03,138.67],[350.04,138.68],[350.04,138.68],[350.05,138.68],[350.07,138.69],[350.1,138.7],[350.1,138.7],[350.1,138.71],[350.11,138.71],[350.12,138.71],[350.12,138.71],[350.12,138.71],[350.13,138.72],[350.13,138.72],[350.13,138.72],[350.13,138.72],[350.14,138.72],[350.14,138.72],[350.14,138.72],[350.14,138.72],[350.15,138.72],[350.15,138.72],[350.15,138.72],[350.15,138.72],[350.16,138.72],[350.16,138.72],[350.16,138.72],[350.17,138.72],[350.17,138.72],[350.17,138.72],[350.18,138.72],[350.18,138.71],[350.18,138.71],[350.19,138.71],[350.2,138.7],[350.2,138.7],[350.21,138.7],[350.21,138.7],[350.21,138.7],[350.21,138.7],[350.22,138.7],[350.22,138.69],[350.22,138.69],[350.22,138.69],[350.23,138.69],[350.23,138.69],[350.23,138.69],[350.26,138.69],[350.31,138.7],[350.31,138.7],[350.34,138.7],[350.4,138.7],[350.41,138.7],[350.42,138.7],[350.42,138.7],[350.43,138.7],[350.43,138.7],[350.44,138.7],[350.44,138.7],[350.44,138.7],[350.45,138.7],[350.5,138.68],[350.5,138.68],[350.5,138.68],[350.51,138.68],[350.51,138.68],[350.52,138.68],[350.52,138.68],[350.52,138.68],[350.53,138.68],[350.53,138.68],[350.53,138.68],[350.54,138.68],[350.55,138.68],[350.6,138.68],[350.62,138.68],[350.62,138.68],[350.66,138.68],[350.67,138.68],[350.76,138.69],[350.77,138.69],[350.77,138.7],[350.78,138.7],[350.78,138.7],[350.78,138.7],[350.79,138.7],[350.83,138.7],[350.84,138.7],[350.84,138.7],[350.85,138.7],[350.85,138.7],[350.89,138.7],[350.95,138.71],[350.98,138.71],[350.99,138.71],[350.99,138.71],[350.99,138.71],[350.99,138.71],[351,138.71],[351,138.71],[351,138.71],[351,138.71],[351.01,138.71],[351.01,138.71],[351.01,138.71],[351.01,138.71],[351.02,138.71],[351.02,138.71],[351.02,138.71],[351.03,138.7],[351.04,138.7],[351.07,138.69],[351.07,138.69],[351.07,138.69],[351.07,138.69],[351.08,138.69],[351.08,138.69],[351.08,138.69],[351.08,138.69],[351.08,138.69],[351.09,138.69],[351.09,138.69],[351.09,138.69],[351.09,138.69],[351.1,138.69],[351.1,138.69],[351.1,138.69],[351.12,138.69],[351.14,138.69],[351.16,138.69],[351.19,138.69],[351.19,138.69],[351.25,138.69],[351.31,138.7],[351.35,138.7],[351.36,138.7],[351.36,138.7],[351.36,138.7],[351.36,138.7],[351.37,138.7],[351.37,138.7],[351.37,138.7],[351.37,138.7],[351.38,138.7],[351.38,138.7],[351.38,138.7],[351.39,138.7],[351.39,138.7],[351.39,138.7],[351.4,138.7],[351.4,138.69],[351.4,138.69],[351.4,138.69],[351.42,138.68],[351.44,138.67],[351.49,138.65],[351.49,138.64],[351.5,138.64],[351.51,138.64],[351.51,138.63],[351.51,138.63],[351.51,138.63],[351.52,138.63],[351.52,138.63],[351.52,138.63],[351.52,138.63],[351.53,138.63],[351.53,138.63],[351.53,138.63],[351.54,138.63],[351.54,138.62],[351.54,138.62],[351.55,138.62],[351.55,138.62],[351.55,138.62],[351.55,138.62],[351.56,138.62],[351.56,138.62],[351.56,138.62],[351.57,138.62],[351.59,138.63],[351.61,138.63],[351.62,138.63],[351.62,138.63],[351.62,138.64],[351.63,138.64],[351.63,138.64],[351.66,138.64],[351.66,138.64],[351.67,138.64],[351.68,138.64],[351.7,138.64],[351.75,138.65],[351.79,138.65],[351.8,138.65],[351.8,138.65],[351.81,138.65],[351.81,138.65],[351.82,138.65],[351.83,138.65],[351.83,138.65],[351.84,138.65],[351.84,138.65],[351.85,138.65],[351.87,138.64],[351.88,138.64],[351.93,138.63],[351.93,138.63],[351.94,138.63],[351.95,138.63],[351.95,138.63],[351.95,138.63],[351.96,138.63],[352.01,138.63],[352.02,138.63],[352.08,138.63],[352.09,138.63],[352.09,138.63],[352.1,138.63],[352.1,138.63],[352.14,138.64],[352.14,138.64],[352.16,138.64],[352.17,138.64],[352.18,138.64],[352.2,138.65],[352.22,138.65],[352.26,138.65],[352.32,138.65],[352.32,138.65],[352.33,138.65],[352.34,138.65],[352.36,138.65],[352.38,138.65],[352.39,138.65],[352.42,138.65],[352.45,138.65],[352.46,138.65],[352.47,138.65],[352.47,138.65],[352.47,138.65],[352.48,138.65],[352.49,138.64],[352.5,138.64],[352.53,138.63],[352.53,138.63],[352.54,138.63],[352.55,138.62],[352.56,138.62],[352.58,138.61],[352.58,138.61],[352.59,138.61],[352.6,138.61],[352.62,138.6],[352.64,138.59],[352.66,138.59],[352.66,138.59],[352.68,138.58],[352.69,138.58],[352.72,138.57],[352.73,138.56],[352.78,138.55],[352.79,138.54],[352.81,138.54],[352.83,138.53],[352.83,138.53],[352.84,138.53],[352.84,138.53],[352.85,138.53],[352.85,138.53],[352.86,138.52],[352.86,138.52],[352.87,138.52],[352.87,138.52],[352.87,138.52],[352.88,138.52],[352.89,138.52],[352.92,138.53],[352.95,138.53],[352.97,138.53],[352.98,138.53],[352.99,138.53],[353,138.53],[353.01,138.53],[353.05,138.53],[353.09,138.53],[353.11,138.53],[353.11,138.53],[353.12,138.53],[353.13,138.53],[353.15,138.53],[353.16,138.53],[353.2,138.52],[353.22,138.52],[353.25,138.52],[353.26,138.52],[353.27,138.52],[353.27,138.52],[353.27,138.52],[353.27,138.52],[353.28,138.52],[353.28,138.52],[353.28,138.52],[353.29,138.52],[353.29,138.52],[353.29,138.53],[353.29,138.53],[353.3,138.53],[353.3,138.53],[353.3,138.53],[353.3,138.53],[353.31,138.53],[353.36,138.57],[353.38,138.58],[353.38,138.58],[353.39,138.59],[353.39,138.59],[353.4,138.6],[353.41,138.6],[353.41,138.6],[353.42,138.6],[353.42,138.6],[353.43,138.6],[353.45,138.6],[353.46,138.6],[353.48,138.61],[353.5,138.61],[353.51,138.61],[353.52,138.61],[353.53,138.61],[353.53,138.61],[353.54,138.61],[353.55,138.61],[353.55,138.61],[353.56,138.61],[353.56,138.61],[353.58,138.61],[353.62,138.6],[353.63,138.6],[353.64,138.6],[353.65,138.6],[353.66,138.6],[353.68,138.6],[353.68,138.6],[353.7,138.59],[353.72,138.59],[353.73,138.59],[353.73,138.58],[353.73,138.58],[353.76,138.58],[353.77,138.57],[353.83,138.55],[353.87,138.53],[353.93,138.51],[354,138.48],[354,138.48],[354.01,138.48],[354.01,138.48],[354.02,138.48],[354.03,138.48],[354.03,138.48],[354.05,138.48],[354.08,138.48],[354.09,138.48],[354.11,138.48],[354.13,138.48],[354.15,138.48],[354.18,138.49],[354.2,138.49],[354.23,138.49],[354.24,138.49],[354.25,138.49],[354.25,138.49],[354.26,138.49],[354.26,138.49],[354.26,138.49],[354.27,138.49],[354.28,138.49],[354.28,138.49],[354.29,138.49],[354.29,138.49],[354.3,138.49],[354.31,138.49],[354.32,138.49],[354.33,138.5],[354.35,138.51],[354.36,138.51],[354.39,138.52],[354.41,138.53],[354.42,138.53],[354.43,138.53],[354.45,138.54],[354.46,138.54],[354.46,138.54],[354.47,138.54],[354.48,138.55],[354.51,138.56],[354.51,138.56],[354.55,138.58],[354.6,138.6],[354.62,138.6],[354.62,138.6],[354.63,138.61],[354.64,138.61],[354.64,138.61],[354.65,138.61],[354.66,138.61],[354.66,138.61],[354.67,138.61],[354.68,138.61],[354.7,138.61],[354.72,138.6],[354.74,138.6],[354.85,138.59],[354.88,138.59],[354.91,138.58],[354.93,138.58],[354.94,138.58],[354.95,138.58],[355.02,138.56],[355.03,138.55],[355.04,138.55],[355.04,138.55],[355.05,138.55],[355.06,138.55],[355.06,138.55],[355.06,138.55],[355.07,138.55],[355.07,138.55],[355.07,138.55],[355.08,138.55],[355.08,138.55],[355.08,138.55],[355.09,138.55],[355.09,138.55],[355.1,138.55],[355.1,138.55],[355.1,138.56],[355.11,138.56],[355.12,138.56],[355.12,138.56],[355.13,138.56],[355.15,138.57],[355.17,138.58],[355.18,138.58],[355.19,138.58],[355.2,138.58],[355.22,138.58],[355.24,138.59],[355.26,138.59],[355.29,138.59],[355.32,138.59],[355.33,138.59],[355.34,138.6],[355.36,138.6],[355.37,138.6],[355.38,138.6],[355.39,138.6],[355.4,138.6],[355.4,138.6],[355.4,138.6],[355.41,138.6],[355.41,138.6],[355.42,138.59],[355.44,138.59],[355.44,138.59],[355.44,138.59],[355.45,138.59],[355.46,138.59],[355.48,138.59],[355.51,138.58],[355.54,138.57],[355.58,138.56],[355.59,138.56],[355.62,138.55],[355.71,138.51],[355.71,138.51],[355.74,138.49],[355.83,138.45],[355.85,138.44],[355.86,138.44],[355.87,138.43],[355.88,138.43],[355.88,138.43],[355.9,138.42],[355.92,138.41],[355.95,138.4],[355.98,138.39],[356.01,138.39],[356.01,138.38],[356.01,138.38],[356.02,138.38],[356.03,138.38],[356.04,138.38],[356.04,138.38],[356.05,138.38],[356.08,138.38],[356.08,138.38],[356.1,138.38],[356.1,138.38],[356.12,138.38],[356.12,138.38],[356.18,138.38],[356.22,138.38],[356.23,138.38],[356.27,138.38],[356.27,138.38],[356.3,138.37],[356.33,138.37],[356.38,138.37],[356.42,138.37],[356.46,138.37],[356.46,138.37],[356.47,138.37],[356.48,138.37],[356.49,138.36],[356.5,138.36],[356.5,138.36],[356.52,138.35],[356.55,138.34],[356.57,138.33],[356.59,138.32],[356.63,138.31],[356.64,138.3],[356.66,138.3],[356.67,138.3],[356.69,138.3],[356.71,138.3],[356.72,138.3],[356.75,138.32],[356.77,138.33],[356.8,138.34],[356.83,138.36],[356.86,138.36],[356.93,138.36],[357.02,138.37],[357.04,138.37],[357.05,138.37],[357.06,138.37],[357.07,138.38],[357.09,138.39],[357.09,138.39],[357.1,138.39],[357.11,138.4],[357.15,138.42],[357.18,138.44],[357.19,138.44],[357.2,138.45],[357.21,138.45],[357.23,138.46],[357.26,138.47],[357.28,138.47],[357.3,138.48],[357.34,138.48],[357.42,138.49],[357.5,138.49],[357.62,138.5],[357.64,138.5],[357.69,138.5],[357.76,138.51],[357.8,138.51],[357.81,138.51],[357.82,138.51],[357.87,138.51],[357.91,138.52],[357.93,138.52],[357.99,138.52],[358.04,138.51],[358.1,138.51],[358.2,138.51],[358.25,138.51],[358.27,138.51],[358.28,138.51],[358.3,138.51],[358.31,138.51],[358.34,138.51],[358.35,138.51],[358.37,138.51],[358.41,138.52],[358.47,138.52],[358.51,138.52],[358.52,138.52],[358.54,138.52],[358.56,138.52],[358.58,138.52],[358.6,138.53],[358.61,138.53],[358.61,138.53],[358.62,138.53],[358.62,138.53],[358.63,138.54],[358.64,138.54],[358.65,138.55],[358.65,138.55],[358.66,138.55],[358.66,138.55],[358.67,138.56],[358.67,138.56],[358.67,138.56],[358.68,138.56],[358.69,138.57],[358.7,138.57],[358.71,138.57],[358.71,138.57],[358.72,138.57],[358.74,138.57],[358.75,138.57],[358.76,138.57],[358.76,138.57],[358.78,138.57],[358.8,138.57],[358.81,138.57],[358.81,138.57],[358.83,138.57],[358.85,138.57],[358.87,138.57],[358.88,138.57],[358.89,138.57],[358.91,138.56],[358.93,138.56],[358.95,138.56],[358.97,138.55],[358.97,138.55],[358.98,138.55],[358.98,138.55],[358.99,138.55],[358.99,138.55],[359,138.55],[359,138.55],[359.01,138.55],[359.02,138.55],[359.02,138.54],[359.04,138.53],[359.09,138.51],[359.12,138.5],[359.12,138.5],[359.14,138.49],[359.18,138.47],[359.19,138.47],[359.2,138.47],[359.21,138.46],[359.22,138.46],[359.22,138.46],[359.23,138.46],[359.25,138.46],[359.26,138.46],[359.27,138.46],[359.28,138.46],[359.29,138.46],[359.3,138.47],[359.32,138.47],[359.34,138.47],[359.35,138.47],[359.38,138.48],[359.39,138.48],[359.41,138.48],[359.43,138.48],[359.45,138.48],[359.48,138.47],[359.52,138.46],[359.56,138.45],[359.6,138.44],[359.62,138.44],[359.63,138.44],[359.64,138.44],[359.67,138.43],[359.68,138.43],[359.7,138.42],[359.72,138.42],[359.73,138.42],[359.74,138.42],[359.76,138.41],[359.76,138.41],[359.8,138.4],[359.83,138.4],[359.85,138.39],[359.89,138.38],[359.91,138.38],[359.93,138.38],[359.95,138.38],[359.97,138.38],[359.98,138.38],[360.01,138.38],[360.07,138.38],[360.13,138.38],[360.17,138.38],[360.2,138.38],[360.21,138.38],[360.23,138.38],[360.25,138.39],[360.29,138.4],[360.34,138.41],[360.37,138.42],[360.41,138.43],[360.42,138.44],[360.43,138.44],[360.44,138.44],[360.44,138.44],[360.45,138.44],[360.46,138.44],[360.46,138.44],[360.46,138.44],[360.47,138.44],[360.47,138.44],[360.48,138.43],[360.51,138.43],[360.63,138.4],[360.64,138.39],[360.67,138.38],[360.73,138.38],[360.75,138.38],[360.79,138.38],[360.84,138.39],[360.86,138.39],[360.88,138.39],[360.9,138.39],[361.01,138.35],[361.02,138.35],[361.05,138.35],[361.08,138.35],[361.11,138.35],[361.17,138.38],[361.21,138.39],[361.25,138.4],[361.41,138.4],[361.43,138.4],[361.44,138.4],[361.46,138.41],[361.5,138.42],[361.56,138.44],[361.63,138.46],[361.66,138.47],[361.69,138.47],[361.71,138.48],[361.73,138.48],[361.79,138.47],[361.82,138.47],[361.84,138.47],[361.88,138.47],[361.94,138.47],[362.1,138.46],[362.14,138.46],[362.18,138.46],[362.21,138.46],[362.24,138.46],[362.28,138.47],[362.32,138.48],[362.36,138.49],[362.39,138.51],[362.43,138.53],[362.46,138.55],[362.49,138.57],[362.53,138.59],[362.56,138.6],[362.6,138.6],[362.67,138.61],[362.69,138.61],[362.71,138.62],[362.73,138.62],[362.74,138.63],[362.76,138.64],[362.77,138.66],[362.79,138.67],[362.8,138.7],[362.82,138.72],[362.84,138.73],[362.87,138.74],[362.89,138.75],[362.92,138.76],[362.95,138.76],[362.98,138.75],[363.01,138.75],[363.03,138.74],[363.09,138.72],[363.18,138.68],[363.23,138.66],[363.28,138.64],[363.39,138.59],[363.5,138.55],[363.55,138.54],[363.58,138.53],[363.6,138.53],[363.63,138.53],[363.66,138.53],[363.7,138.53],[363.73,138.54],[363.81,138.55],[363.85,138.55],[363.9,138.55],[363.95,138.55],[364.01,138.55],[364.07,138.54],[364.33,138.49],[364.38,138.48],[364.42,138.48],[364.44,138.48],[364.48,138.49],[364.55,138.51],[364.66,138.54],[364.71,138.56],[364.76,138.58],[364.81,138.6],[365,138.69],[365.05,138.71],[365.09,138.72],[365.12,138.72],[365.28,138.73],[365.35,138.74],[365.39,138.74],[365.41,138.73],[365.43,138.73],[365.46,138.73],[365.51,138.72],[365.55,138.7],[365.62,138.67],[365.69,138.63],[365.71,138.62],[365.77,138.59],[365.84,138.56],[365.92,138.51],[365.98,138.49],[366.01,138.47],[366.05,138.46],[366.1,138.45],[366.17,138.44],[366.26,138.43],[366.27,138.43],[366.28,138.43],[366.29,138.43],[366.35,138.43],[366.37,138.43],[366.5,138.43],[366.53,138.43],[366.6,138.43],[366.66,138.42],[366.71,138.41],[366.76,138.4],[366.8,138.39],[367,138.31],[367.06,138.29],[367.3,138.23],[367.42,138.21],[367.55,138.17],[367.58,138.16],[367.59,138.16],[367.6,138.15],[367.61,138.15],[367.62,138.15],[367.64,138.14],[367.69,138.13],[367.72,138.12],[367.76,138.11],[367.8,138.1],[367.86,138.09],[367.94,138.08],[367.96,138.08],[367.98,138.08],[368,138.08],[368.08,138.07],[368.09,138.07],[368.12,138.07],[368.14,138.07],[368.17,138.07],[368.2,138.06],[368.29,138.03],[368.38,138],[368.39,138],[368.41,137.99],[368.44,137.99],[368.52,137.99],[368.56,137.98],[368.61,137.98],[368.66,137.98],[368.78,137.96],[368.85,137.96],[368.97,137.95],[369.05,137.94],[369.12,137.93],[369.17,137.93],[369.2,137.92],[369.28,137.91],[369.35,137.89],[369.39,137.88],[369.43,137.88],[369.46,137.87],[369.49,137.87],[369.56,137.87],[369.58,137.87],[369.6,137.87],[369.62,137.87],[369.63,137.87],[369.65,137.87],[369.67,137.88],[369.72,137.89],[369.73,137.89],[369.74,137.9],[369.75,137.9],[369.75,137.9],[369.77,137.9],[369.79,137.9],[369.82,137.9],[369.84,137.9],[369.87,137.89],[369.91,137.89],[369.93,137.89],[369.95,137.89],[369.98,137.89],[370.01,137.9],[370.04,137.9],[370.07,137.91],[370.08,137.92],[370.1,137.92],[370.16,137.95],[370.21,137.98],[370.22,137.98],[370.23,137.98],[370.24,137.99],[370.3,138.02],[370.35,138.05],[370.43,138.1],[370.49,138.14],[370.53,138.16],[370.55,138.17],[370.56,138.18],[370.58,138.18],[370.6,138.19],[370.65,138.21],[370.7,138.22],[370.74,138.23],[370.76,138.23],[370.78,138.24],[370.8,138.24],[370.82,138.25],[370.84,138.25],[370.89,138.25],[370.96,138.25],[371.03,138.24],[371.08,138.24],[371.09,138.24],[371.11,138.24],[371.16,138.24],[371.17,138.23],[371.18,138.23],[371.19,138.23],[371.19,138.23],[371.19,138.23],[371.19,138.23],[371.2,138.23],[371.21,138.23],[371.24,138.23],[371.29,138.23],[371.35,138.23],[371.41,138.23],[371.45,138.23],[371.55,138.23],[371.63,138.24],[371.72,138.24],[371.79,138.24],[371.81,138.24],[371.83,138.23],[371.84,138.23],[371.85,138.23],[371.87,138.23],[371.87,138.23],[371.93,138.22],[372.01,138.2],[372.03,138.2],[372.06,138.2],[372.07,138.2],[372.08,138.2],[372.09,138.2],[372.1,138.2],[372.12,138.2],[372.13,138.2],[372.14,138.2],[372.15,138.2],[372.16,138.2],[372.19,138.21],[372.2,138.21],[372.22,138.21],[372.24,138.21],[372.25,138.22],[372.27,138.22],[372.35,138.23],[372.42,138.24],[372.46,138.24],[372.49,138.25],[372.51,138.25],[372.56,138.26],[372.63,138.27],[372.66,138.27],[372.72,138.28],[372.74,138.28],[372.75,138.28],[372.79,138.29],[372.83,138.3],[372.86,138.31],[372.9,138.32],[373,138.35],[373.08,138.38],[373.16,138.41],[373.21,138.43],[373.22,138.43],[373.24,138.44],[373.25,138.44],[373.28,138.46],[373.32,138.48],[373.36,138.5],[373.42,138.53],[373.42,138.53],[373.44,138.54],[373.49,138.56],[373.53,138.59],[373.55,138.6],[373.56,138.6],[373.57,138.6],[373.57,138.6],[373.57,138.61],[373.57,138.61],[373.58,138.61],[373.59,138.61],[373.61,138.62],[373.64,138.63],[373.66,138.63],[373.68,138.63],[373.71,138.64],[373.73,138.64],[373.76,138.64],[373.8,138.63],[373.81,138.63],[373.86,138.62],[373.89,138.61],[373.92,138.61],[373.98,138.61],[374.09,138.61],[374.15,138.61],[374.22,138.61],[374.26,138.61],[374.3,138.61],[374.4,138.61],[374.45,138.61],[374.54,138.61],[374.66,138.61],[374.73,138.61],[374.77,138.61],[374.85,138.6],[374.89,138.59],[374.92,138.58],[374.98,138.57],[375.05,138.55],[375.07,138.54],[375.08,138.54],[375.11,138.54],[375.12,138.53],[375.13,138.53],[375.14,138.53],[375.17,138.53],[375.19,138.53],[375.22,138.53],[375.3,138.53],[375.38,138.53],[375.46,138.53],[375.53,138.53],[375.61,138.54],[375.63,138.54],[375.68,138.55],[375.71,138.55],[375.72,138.56],[375.73,138.56],[375.75,138.56],[375.76,138.57],[375.77,138.57],[375.78,138.57],[375.79,138.58],[375.81,138.58],[375.83,138.59],[375.84,138.59],[375.85,138.6],[375.86,138.6],[375.88,138.6],[375.9,138.61],[375.92,138.61],[375.94,138.61],[375.96,138.61],[375.98,138.62],[376,138.62],[376.02,138.62],[376.04,138.62],[376.06,138.63],[376.08,138.63],[376.1,138.64],[376.13,138.65],[376.15,138.65],[376.17,138.66],[376.2,138.67],[376.22,138.68],[376.24,138.69],[376.26,138.7],[376.29,138.7],[376.31,138.71],[376.33,138.72],[376.35,138.73],[376.37,138.74],[376.4,138.75],[376.42,138.75],[376.44,138.76],[376.46,138.77],[376.48,138.78],[376.5,138.79],[376.52,138.8],[376.54,138.81],[376.56,138.82],[376.59,138.84],[376.6,138.85],[376.62,138.87],[376.64,138.88],[376.66,138.89],[376.68,138.9],[376.7,138.92],[376.72,138.93],[376.74,138.94],[376.76,138.96],[376.79,138.97],[376.8,138.98],[376.82,138.98],[376.84,138.99],[376.87,139],[376.89,139.01],[376.92,139.02],[376.94,139.03],[376.96,139.03],[376.99,139.04],[377.01,139.04],[377.03,139.04],[377.06,139.05],[377.08,139.05],[377.11,139.05],[377.13,139.06],[377.15,139.06],[377.17,139.07],[377.2,139.08],[377.23,139.09],[377.25,139.09],[377.28,139.1],[377.31,139.11],[377.33,139.12],[377.36,139.13],[377.39,139.14],[377.4,139.14],[377.41,139.14],[377.41,139.14],[377.42,139.15],[377.45,139.16],[377.46,139.16],[377.49,139.17],[377.52,139.18],[377.54,139.19],[377.57,139.2],[377.6,139.21],[377.63,139.22],[377.65,139.23],[377.68,139.25],[377.71,139.26],[377.73,139.27],[377.77,139.29],[377.8,139.31],[377.82,139.32],[377.85,139.33],[377.88,139.34],[377.9,139.35],[377.93,139.36],[377.96,139.37],[377.98,139.38],[378.01,139.39],[378.03,139.4],[378.06,139.41],[378.08,139.41],[378.1,139.42],[378.11,139.43],[378.12,139.43],[378.12,139.43],[378.13,139.44],[378.15,139.44],[378.18,139.46],[378.21,139.47],[378.24,139.48],[378.26,139.49],[378.29,139.5],[378.32,139.52],[378.34,139.52],[378.37,139.53],[378.4,139.54],[378.43,139.55],[378.45,139.56],[378.48,139.57],[378.5,139.58],[378.52,139.59],[378.53,139.59],[378.53,139.59],[378.55,139.6],[378.59,139.62],[378.61,139.63],[378.64,139.65],[378.67,139.66],[378.69,139.68],[378.72,139.68],[378.75,139.69],[378.78,139.7],[378.8,139.71],[378.83,139.72],[378.86,139.74],[378.89,139.75],[378.91,139.76],[378.94,139.78],[378.96,139.79],[378.99,139.79],[379.02,139.8],[379.05,139.81],[379.08,139.82],[379.11,139.83],[379.13,139.83],[379.16,139.84],[379.18,139.85],[379.21,139.86],[379.23,139.87],[379.26,139.88],[379.28,139.89],[379.31,139.9],[379.34,139.91],[379.36,139.92],[379.39,139.93],[379.42,139.94],[379.45,139.95],[379.48,139.95],[379.5,139.96],[379.52,139.96],[379.55,139.97],[379.55,139.97],[379.56,139.97],[379.57,139.98],[379.59,139.98],[379.6,139.98],[379.61,139.98],[379.62,139.99],[379.64,139.99],[379.67,139.99],[379.7,139.99],[379.74,140],[379.77,140],[379.8,140.01],[379.83,140.01],[379.86,140.02],[379.89,140.03],[379.9,140.03],[379.9,140.04],[379.91,140.04],[379.92,140.04],[379.92,140.05],[379.96,140.06],[379.98,140.07],[379.99,140.08],[380.01,140.09],[380.03,140.09],[380.06,140.1],[380.1,140.11],[380.13,140.12],[380.15,140.12],[380.18,140.13],[380.2,140.14],[380.26,140.16],[380.29,140.17],[380.32,140.18],[380.35,140.18],[380.38,140.19],[380.41,140.19],[380.45,140.19],[380.47,140.19],[380.5,140.18],[380.53,140.18],[380.57,140.17],[380.6,140.17],[380.62,140.17],[380.65,140.17],[380.68,140.16],[380.7,140.16],[380.73,140.16],[380.76,140.15],[380.78,140.14],[380.81,140.13],[380.84,140.12],[380.86,140.11],[380.89,140.1],[380.92,140.1],[380.94,140.09],[380.96,140.08],[380.99,140.08],[381.02,140.07],[381.05,140.07],[381.08,140.07],[381.11,140.08],[381.14,140.08],[381.17,140.09],[381.2,140.1],[381.23,140.11],[381.26,140.12],[381.28,140.13],[381.31,140.14],[381.34,140.15],[381.36,140.16],[381.4,140.17],[381.43,140.17],[381.46,140.17],[381.49,140.18],[381.52,140.18],[381.55,140.18],[381.59,140.17],[381.61,140.17],[381.64,140.17],[381.67,140.17],[381.7,140.17],[381.73,140.17],[381.75,140.17],[381.78,140.17],[381.81,140.18],[381.83,140.18],[381.84,140.18],[381.86,140.18],[381.88,140.19],[381.88,140.19],[381.9,140.19],[381.91,140.2],[381.94,140.21],[381.96,140.22],[381.99,140.23],[381.99,140.23],[382.03,140.24],[382.04,140.25],[382.06,140.26],[382.08,140.26],[382.12,140.28],[382.16,140.29],[382.19,140.3],[382.21,140.31],[382.24,140.32],[382.27,140.34],[382.3,140.35],[382.33,140.36],[382.35,140.37],[382.4,140.37],[382.43,140.38],[382.46,140.39],[382.48,140.39],[382.52,140.4],[382.54,140.41],[382.56,140.42],[382.57,140.43],[382.6,140.45],[382.63,140.47],[382.66,140.5],[382.69,140.52],[382.72,140.54],[382.75,140.56],[382.78,140.58],[382.8,140.59],[382.81,140.6],[382.83,140.61],[382.84,140.62],[382.86,140.64],[382.88,140.66],[382.9,140.69],[382.92,140.72],[382.94,140.74],[382.97,140.77],[383,140.8],[383.02,140.82],[383.02,140.82],[383.04,140.83],[383.04,140.83],[383.07,140.85],[383.09,140.88],[383.12,140.9],[383.15,140.94],[383.18,140.97],[383.21,141],[383.24,141.03],[383.27,141.06],[383.29,141.09],[383.31,141.11],[383.33,141.12],[383.34,141.13],[383.36,141.14],[383.38,141.16],[383.4,141.17],[383.41,141.17],[383.43,141.18],[383.47,141.2],[383.52,141.21],[383.56,141.23],[383.59,141.24],[383.62,141.25],[383.64,141.26],[383.67,141.28],[383.72,141.3],[383.75,141.32],[383.79,141.34],[383.81,141.35],[383.85,141.36],[383.89,141.38],[383.92,141.39],[383.94,141.4],[383.98,141.42],[384.02,141.44],[384.04,141.46],[384.08,141.47],[384.1,141.48],[384.12,141.49],[384.13,141.49],[384.16,141.5],[384.19,141.5],[384.21,141.51],[384.21,141.51],[384.22,141.51],[384.26,141.52],[384.29,141.53],[384.3,141.53],[384.31,141.53],[384.32,141.54],[384.34,141.55],[384.36,141.55],[384.38,141.56],[384.4,141.58],[384.42,141.59],[384.43,141.6],[384.45,141.62],[384.46,141.63],[384.52,141.68],[384.55,141.71],[384.57,141.73],[384.6,141.74],[384.63,141.76],[384.67,141.78],[384.7,141.8],[384.73,141.81],[384.75,141.82],[384.78,141.85],[384.81,141.86],[384.84,141.88],[384.87,141.89],[384.9,141.91],[384.95,141.92],[384.98,141.94],[385.01,141.95],[385.06,141.98],[385.09,141.99],[385.1,142],[385.11,142],[385.13,142.01],[385.16,142.02],[385.19,142.03],[385.21,142.03],[385.24,142.04],[385.28,142.04],[385.31,142.04],[385.36,142.04],[385.39,142.04],[385.4,142.04],[385.41,142.04],[385.43,142.05],[385.45,142.05],[385.48,142.06],[385.49,142.06],[385.5,142.06],[385.52,142.07],[385.55,142.07],[385.58,142.08],[385.61,142.09],[385.62,142.09],[385.63,142.09],[385.67,142.11],[385.71,142.12],[385.74,142.13],[385.75,142.13],[385.77,142.14],[385.79,142.14],[385.8,142.14],[385.85,142.15],[385.88,142.15],[385.9,142.16],[385.92,142.16],[385.94,142.17],[385.97,142.18],[386.01,142.19],[386.03,142.19],[386.06,142.2],[386.08,142.2],[386.09,142.2],[386.09,142.21],[386.1,142.21],[386.11,142.21],[386.13,142.21],[386.14,142.21],[386.15,142.21],[386.16,142.21],[386.18,142.21],[386.2,142.21],[386.21,142.21],[386.22,142.21],[386.27,142.21],[386.29,142.21],[386.31,142.22],[386.33,142.22],[386.35,142.22],[386.36,142.22],[386.38,142.23],[386.4,142.23],[386.43,142.24],[386.44,142.24],[386.46,142.25],[386.47,142.25],[386.49,142.26],[386.5,142.27],[386.51,142.27],[386.52,142.28],[386.53,142.28],[386.55,142.29],[386.56,142.3],[386.57,142.31],[386.58,142.32],[386.6,142.32],[386.61,142.33],[386.64,142.35],[386.67,142.37],[386.69,142.38],[386.7,142.39],[386.72,142.4],[386.73,142.4],[386.74,142.4],[386.75,142.41],[386.77,142.41],[386.78,142.42],[386.8,142.42],[386.82,142.42],[386.83,142.43],[386.84,142.43],[386.85,142.43],[386.87,142.43],[386.89,142.43],[386.94,142.43],[386.98,142.42],[387,142.42],[387.03,142.42],[387.04,142.43],[387.06,142.43],[387.08,142.43],[387.1,142.43],[387.12,142.44],[387.14,142.44],[387.17,142.45],[387.19,142.45],[387.22,142.46],[387.25,142.47],[387.35,142.5],[387.39,142.51],[387.39,142.51],[387.42,142.51],[387.44,142.51],[387.45,142.51],[387.46,142.51],[387.47,142.51],[387.49,142.51],[387.51,142.51],[387.52,142.51],[387.53,142.51],[387.54,142.51],[387.55,142.5],[387.58,142.5],[387.58,142.5],[387.64,142.49],[387.64,142.49],[387.65,142.49],[387.66,142.49],[387.66,142.49],[387.66,142.49],[387.67,142.49],[387.67,142.48],[387.68,142.48],[387.68,142.48],[387.68,142.47],[387.68,142.47],[387.68,142.47],[387.68,142.46],[387.68,142.46],[387.68,142.46],[387.68,142.46],[387.68,142.46],[387.68,142.45],[387.68,142.45],[387.68,142.45],[387.68,142.45],[387.68,142.44],[387.68,142.44],[387.68,142.44],[387.68,142.44],[387.67,142.43],[387.67,142.42],[387.67,142.42],[387.66,142.41],[387.66,142.4],[387.66,142.39],[387.65,142.37],[387.65,142.37],[387.64,142.35],[387.64,142.33],[387.63,142.31],[387.63,142.3],[387.63,142.29],[387.63,142.29],[387.63,142.29],[387.64,142.29],[387.64,142.28],[387.64,142.28],[387.65,142.28],[387.65,142.28],[387.65,142.28],[387.65,142.28],[387.65,142.27],[387.65,142.27],[387.65,142.27],[387.66,142.27],[387.67,142.26],[387.7,142.23],[387.75,142.18],[387.75,142.18],[387.76,142.17],[387.77,142.14],[387.78,142.13],[387.78,142.12],[387.78,142.12],[387.79,142.12],[387.79,142.12],[387.79,142.12],[387.8,142.11],[387.8,142.11],[387.8,142.11],[387.93,142.01],[387.94,142.01],[387.97,141.98],[387.98,141.97],[387.98,141.97],[387.99,141.96],[388,141.95],[388.04,141.92],[388.06,141.9],[388.08,141.88],[388.09,141.87],[388.09,141.87],[388.1,141.87],[388.1,141.87],[388.1,141.86],[388.1,141.86],[388.13,141.86],[388.18,141.85],[388.18,141.85],[388.21,141.85],[388.22,141.84],[388.23,141.84],[388.23,141.84],[388.23,141.84],[388.24,141.84],[388.24,141.84],[388.24,141.84],[388.24,141.84],[388.24,141.84],[388.24,141.84],[388.25,141.84],[388.25,141.83],[388.25,141.83],[388.25,141.82],[388.26,141.82],[388.26,141.81],[388.26,141.81],[388.26,141.8],[388.26,141.8],[388.26,141.8],[388.27,141.8],[388.27,141.8],[388.29,141.77],[388.3,141.77],[388.31,141.76],[388.34,141.73],[388.36,141.71],[388.38,141.69],[388.39,141.68],[388.47,141.61],[388.52,141.56],[388.53,141.55],[388.53,141.54],[388.55,141.53],[388.59,141.49],[388.61,141.47],[388.62,141.46],[388.65,141.43],[388.65,141.43],[388.65,141.43],[388.65,141.43],[388.66,141.43],[388.66,141.43],[388.66,141.43],[388.66,141.43],[388.66,141.43],[388.66,141.42],[388.67,141.42],[388.68,141.42],[388.68,141.42],[388.68,141.42],[388.68,141.41],[388.69,141.41],[388.69,141.41],[388.7,141.41],[388.7,141.4],[388.71,141.4],[388.71,141.4],[388.71,141.4],[388.71,141.4],[388.72,141.4],[388.72,141.4],[388.79,141.34],[388.82,141.31],[388.82,141.31],[388.83,141.3],[388.85,141.29],[388.87,141.27],[388.87,141.27],[388.88,141.27],[388.89,141.25],[388.9,141.24],[388.91,141.24],[388.92,141.23],[388.93,141.22],[388.95,141.21],[388.95,141.2],[388.96,141.2],[388.96,141.2],[388.97,141.19],[388.97,141.19],[388.98,141.18],[388.99,141.17],[389,141.17],[389.02,141.15],[389.02,141.15],[389.05,141.12],[389.05,141.12],[389.05,141.12],[389.07,141.11],[389.07,141.11],[389.08,141.1],[389.09,141.09],[389.09,141.09],[389.11,141.08],[389.13,141.06],[389.14,141.05],[389.14,141.05],[389.15,141.04],[389.15,141.04],[389.16,141.04],[389.16,141.03],[389.16,141.03],[389.16,141.03],[389.16,141.03],[389.17,141.03],[389.17,141.03],[389.17,141.02],[389.17,141.01],[389.17,141.01],[389.18,141],[389.19,140.98],[389.21,140.94],[389.21,140.93],[389.23,140.9],[389.23,140.89],[389.25,140.85],[389.25,140.85],[389.25,140.85],[389.26,140.83],[389.26,140.83],[389.28,140.78],[389.28,140.78],[389.28,140.77],[389.29,140.77],[389.29,140.77],[389.29,140.77],[389.29,140.77],[389.29,140.76],[389.29,140.75],[389.3,140.74],[389.3,140.73],[389.31,140.72],[389.31,140.72],[389.31,140.72],[389.32,140.71],[389.32,140.7],[389.32,140.7],[389.32,140.69],[389.32,140.69],[389.32,140.69],[389.32,140.69],[389.32,140.69],[389.32,140.68],[389.32,140.68],[389.32,140.68],[389.32,140.68],[389.32,140.68],[389.33,140.68],[389.33,140.68],[389.32,140.67],[389.32,140.67],[389.32,140.67],[389.32,140.67],[389.32,140.67],[389.32,140.67],[389.32,140.67],[389.32,140.64],[389.32,140.64],[389.32,140.63],[389.32,140.61],[389.32,140.6],[389.32,140.59],[389.32,140.58],[389.31,140.56],[389.31,140.55],[389.31,140.55],[389.31,140.55],[389.31,140.55],[389.31,140.54],[389.31,140.54],[389.31,140.54],[389.32,140.54],[389.32,140.53],[389.32,140.53],[389.32,140.53],[389.32,140.53],[389.32,140.52],[389.32,140.52],[389.33,140.52],[389.33,140.52],[389.33,140.51],[389.34,140.51],[389.34,140.51],[389.35,140.51],[389.36,140.5],[389.36,140.5],[389.37,140.49],[389.37,140.49],[389.37,140.49],[389.37,140.49],[389.37,140.49],[389.37,140.49],[389.37,140.49],[389.38,140.49],[389.38,140.48],[389.38,140.48],[389.38,140.48],[389.38,140.47],[389.38,140.47],[389.38,140.46],[389.38,140.45],[389.38,140.44],[389.38,140.44],[389.38,140.42],[389.38,140.41],[389.38,140.41],[389.38,140.4],[389.38,140.4],[389.38,140.4],[389.38,140.4],[389.38,140.39],[389.38,140.39],[389.39,140.39],[389.39,140.39],[389.39,140.38],[389.39,140.38],[389.39,140.38],[389.39,140.38],[389.39,140.38],[389.4,140.38],[389.41,140.38],[389.41,140.38],[389.42,140.38],[389.42,140.38],[389.43,140.39],[389.44,140.39],[389.44,140.39],[389.44,140.39],[389.45,140.39],[389.47,140.39],[389.47,140.39],[389.48,140.39],[389.49,140.39],[389.49,140.39],[389.49,140.39],[389.51,140.39],[389.52,140.39],[389.53,140.39],[389.57,140.4],[389.58,140.4],[389.58,140.4],[389.58,140.4],[389.59,140.4],[389.59,140.4],[389.61,140.4],[389.61,140.4],[389.61,140.4],[389.61,140.4],[389.61,140.4],[389.62,140.4],[389.62,140.4],[389.62,140.4],[389.63,140.4],[389.63,140.4],[389.64,140.4],[389.64,140.4],[389.64,140.4],[389.64,140.4],[389.64,140.4],[389.64,140.4],[389.65,140.4],[389.67,140.39],[389.7,140.38],[389.71,140.38],[389.72,140.37],[389.73,140.37],[389.73,140.37],[389.74,140.36],[389.75,140.36],[389.78,140.35],[389.81,140.33],[389.84,140.32],[389.84,140.32],[389.91,140.29],[389.93,140.29],[389.97,140.27],[390.01,140.25],[390.02,140.25],[390.04,140.24],[390.12,140.21],[390.12,140.21],[390.18,140.19],[390.33,140.12],[390.38,140.11],[390.38,140.1],[390.41,140.09],[390.44,140.08],[390.46,140.07],[390.47,140.07],[390.47,140.06],[390.48,140.06],[390.48,140.05],[390.49,140.05],[390.49,140.04],[390.49,140.04],[390.49,140.04],[390.5,140.02],[390.51,140],[390.52,139.97],[390.52,139.96],[390.55,139.92],[390.56,139.89],[390.58,139.83],[390.61,139.77],[390.61,139.77],[390.61,139.77],[390.61,139.77],[390.61,139.77],[390.62,139.76],[390.66,139.72],[390.71,139.68],[390.74,139.64],[390.78,139.61],[390.78,139.6],[390.86,139.53],[390.9,139.49],[390.92,139.47],[390.93,139.47],[390.94,139.46],[390.94,139.46],[390.94,139.46],[390.94,139.46],[390.94,139.46],[390.95,139.46],[391.01,139.52],[391.02,139.52],[391.02,139.53],[391.02,139.53],[391.03,139.53],[391.03,139.54],[391.04,139.54],[391.06,139.55],[391.06,139.55],[391.08,139.56],[391.1,139.57],[391.11,139.58],[391.12,139.58],[391.13,139.58],[391.14,139.58],[391.14,139.57],[391.16,139.57],[391.17,139.56],[391.18,139.56],[391.19,139.56],[391.2,139.55],[391.2,139.54],[391.2,139.54],[391.21,139.54],[391.21,139.54],[391.21,139.54],[391.21,139.54],[391.21,139.54],[391.21,139.54],[391.21,139.54],[391.21,139.54],[391.21,139.53],[391.21,139.53],[391.22,139.52],[391.22,139.5],[391.26,139.42],[391.26,139.41],[391.27,139.41],[391.27,139.4],[391.28,139.4],[391.28,139.4],[391.28,139.4],[391.28,139.39],[391.29,139.39],[391.3,139.39],[391.3,139.39],[391.31,139.39],[391.32,139.39],[391.37,139.39],[391.39,139.4],[391.56,139.42],[391.56,139.42],[391.67,139.44],[391.7,139.44],[391.72,139.45],[391.77,139.45],[391.83,139.46],[391.89,139.47],[391.94,139.48],[391.98,139.49],[392.05,139.5],[392.11,139.51],[392.15,139.51],[392.17,139.51],[392.21,139.52],[392.23,139.52],[392.24,139.52],[392.3,139.53],[392.31,139.53],[392.38,139.55],[392.42,139.55],[392.55,139.57],[392.65,139.59],[392.69,139.59],[392.7,139.59],[392.78,139.61],[392.86,139.62],[392.88,139.62],[393.03,139.63],[393.21,139.64],[393.22,139.64],[393.23,139.64],[393.23,139.64],[393.24,139.64],[393.25,139.64],[393.26,139.65],[393.28,139.65],[393.29,139.65],[393.29,139.65],[393.29,139.65],[393.3,139.64],[393.31,139.64],[393.32,139.64],[393.33,139.63],[393.33,139.63],[393.33,139.63],[393.37,139.62],[393.48,139.57],[393.5,139.57],[393.51,139.56],[393.51,139.56],[393.53,139.56],[393.55,139.55],[393.56,139.55],[393.61,139.54],[393.66,139.53],[393.67,139.53],[393.67,139.53],[393.7,139.52],[393.71,139.52],[393.74,139.51],[393.76,139.51],[393.77,139.52],[393.8,139.52],[393.84,139.52],[393.96,139.52],[393.99,139.52],[394.03,139.53],[394.03,139.53],[394.08,139.53],[394.09,139.53],[394.13,139.53],[394.15,139.53],[394.16,139.53],[394.18,139.53],[394.2,139.53],[394.2,139.53],[394.2,139.53],[394.21,139.53],[394.23,139.53],[394.24,139.53],[394.25,139.53],[394.26,139.53],[394.27,139.54],[394.28,139.54],[394.29,139.54],[394.29,139.54],[394.3,139.54],[394.31,139.54],[394.31,139.54],[394.32,139.54],[394.34,139.54],[394.35,139.54],[394.37,139.54],[394.38,139.54],[394.38,139.54],[394.39,139.54],[394.39,139.54],[394.39,139.54],[394.39,139.54],[394.43,139.53],[394.46,139.52],[394.48,139.52],[394.48,139.52],[394.5,139.51],[394.53,139.5],[394.55,139.5],[394.55,139.5],[394.55,139.5],[394.57,139.5],[394.59,139.49],[394.61,139.49],[394.61,139.49],[394.67,139.49],[394.67,139.49],[394.68,139.49],[394.68,139.48],[394.69,139.48],[394.7,139.48],[394.7,139.48],[394.71,139.48],[394.72,139.48],[394.74,139.48],[394.75,139.48],[394.75,139.48],[394.76,139.48],[394.77,139.48],[394.78,139.48],[394.78,139.48],[394.79,139.48],[394.79,139.48],[394.8,139.48],[394.81,139.48],[394.82,139.48],[394.83,139.48],[394.84,139.48],[394.84,139.48],[394.86,139.48],[394.88,139.48],[394.88,139.48],[394.88,139.48],[394.88,139.48],[394.89,139.48],[394.9,139.48],[394.9,139.48],[394.91,139.48],[394.91,139.48],[394.92,139.47],[394.92,139.47],[394.93,139.47],[394.94,139.47],[394.95,139.46],[394.95,139.46],[394.96,139.46],[394.98,139.45],[394.99,139.45],[394.99,139.45],[394.99,139.45],[394.99,139.45],[395,139.44],[395.02,139.44],[395.02,139.44],[395.03,139.43],[395.04,139.43],[395.04,139.43],[395.05,139.42],[395.06,139.42],[395.07,139.42],[395.07,139.42],[395.07,139.42],[395.08,139.41],[395.08,139.41],[395.08,139.41],[395.1,139.4],[395.1,139.4],[395.11,139.4],[395.11,139.4],[395.12,139.4],[395.12,139.39],[395.12,139.39],[395.13,139.39],[395.13,139.39],[395.13,139.39],[395.14,139.39],[395.14,139.39],[395.15,139.39],[395.16,139.39],[395.17,139.38],[395.19,139.38],[395.19,139.38],[395.19,139.38],[395.21,139.38],[395.22,139.38],[395.22,139.38],[395.22,139.38],[395.22,139.38],[395.22,139.38],[395.22,139.39],[395.23,139.4],[395.23,139.4],[395.23,139.41],[395.23,139.41],[395.23,139.41],[395.23,139.42],[395.23,139.42],[395.23,139.43],[395.23,139.43],[395.24,139.44],[395.24,139.44],[395.24,139.45],[395.24,139.46],[395.24,139.47],[395.24,139.47],[395.24,139.48],[395.24,139.48],[395.24,139.48],[395.24,139.48],[395.25,139.48],[395.25,139.48],[395.25,139.48],[395.25,139.48],[395.25,139.48],[395.25,139.48],[395.26,139.48],[395.27,139.47],[395.29,139.46],[395.3,139.45],[395.3,139.45],[395.3,139.45],[395.3,139.45],[395.3,139.45],[395.31,139.46],[395.31,139.46],[395.32,139.46],[395.34,139.47],[395.34,139.47],[395.34,139.47],[395.36,139.48],[395.36,139.48],[395.36,139.48],[395.36,139.48],[395.36,139.48],[395.36,139.48],[395.36,139.48],[395.36,139.48],[395.37,139.48],[395.37,139.48],[395.37,139.48],[395.37,139.48],[395.38,139.48],[395.38,139.48],[395.39,139.48],[395.39,139.48],[395.4,139.48],[395.4,139.48],[395.4,139.48],[395.4,139.48],[395.4,139.48],[395.41,139.48],[395.41,139.48],[395.42,139.48],[395.44,139.48],[395.46,139.48],[395.47,139.48],[395.47,139.48],[395.49,139.47],[395.5,139.47],[395.51,139.47],[395.51,139.47],[395.53,139.47],[395.55,139.48],[395.55,139.48],[395.55,139.48],[395.56,139.47],[395.57,139.47],[395.57,139.47],[395.58,139.47],[395.58,139.47],[395.6,139.46],[395.61,139.46],[395.61,139.45],[395.62,139.45],[395.63,139.45],[395.64,139.44],[395.66,139.43],[395.68,139.43],[395.69,139.42],[395.69,139.42],[395.69,139.42],[395.7,139.42],[395.7,139.41],[395.7,139.41],[395.7,139.41],[395.71,139.41],[395.72,139.41],[395.76,139.39],[395.77,139.39],[395.78,139.39],[395.79,139.38],[395.79,139.38],[395.82,139.37],[395.82,139.37],[395.83,139.36],[395.84,139.36],[395.84,139.36],[395.86,139.36],[395.87,139.35],[395.87,139.35],[395.88,139.35],[395.89,139.33],[395.9,139.33],[395.92,139.31],[395.92,139.31],[395.92,139.3],[395.93,139.3],[395.93,139.3],[395.93,139.3],[395.94,139.3],[395.95,139.3],[395.96,139.3],[395.96,139.3],[395.97,139.3],[395.97,139.3],[395.98,139.3],[396,139.31],[396.01,139.31],[396.01,139.31],[396.02,139.31],[396.02,139.31],[396.02,139.31],[396.03,139.31],[396.04,139.31],[396.04,139.32],[396.06,139.32],[396.06,139.32],[396.07,139.32],[396.08,139.32],[396.09,139.32],[396.1,139.33],[396.11,139.33],[396.11,139.33],[396.12,139.33],[396.13,139.33],[396.14,139.33],[396.14,139.33],[396.14,139.33],[396.15,139.33],[396.16,139.33],[396.16,139.33],[396.17,139.33],[396.18,139.33],[396.19,139.33],[396.19,139.33],[396.2,139.33],[396.2,139.33],[396.2,139.33],[396.21,139.33],[396.21,139.33],[396.22,139.34],[396.22,139.34],[396.23,139.35],[396.24,139.35],[396.25,139.36],[396.25,139.36],[396.26,139.36],[396.26,139.37],[396.26,139.37],[396.27,139.37],[396.27,139.37],[396.27,139.37],[396.28,139.38],[396.28,139.38],[396.29,139.39],[396.29,139.39],[396.29,139.39],[396.3,139.39],[396.3,139.39],[396.31,139.39],[396.31,139.39],[396.32,139.39],[396.33,139.39],[396.33,139.39],[396.34,139.39],[396.34,139.39],[396.35,139.39],[396.36,139.39],[396.37,139.39],[396.37,139.39],[396.38,139.39],[396.4,139.39],[396.4,139.39],[396.41,139.39],[396.44,139.4],[396.46,139.4],[396.48,139.4],[396.54,139.4],[396.57,139.4],[396.59,139.41],[396.59,139.41],[396.64,139.41],[396.67,139.41],[396.69,139.41],[396.72,139.41],[396.73,139.41],[396.74,139.41],[396.74,139.41],[396.74,139.41],[396.76,139.41],[396.77,139.42],[396.78,139.42],[396.79,139.42],[396.8,139.42],[396.8,139.42],[396.8,139.42],[396.81,139.42],[396.82,139.42],[396.83,139.42],[396.83,139.42],[396.85,139.42],[396.85,139.42],[396.87,139.42],[396.87,139.42],[396.89,139.42],[396.89,139.42],[396.89,139.42],[396.89,139.42],[396.91,139.42],[396.91,139.42],[396.92,139.42],[396.92,139.42],[396.94,139.42],[396.95,139.43],[396.96,139.43],[396.97,139.43],[396.98,139.43],[396.98,139.43],[396.99,139.43],[397,139.43],[397,139.43],[397,139.43],[397.01,139.43],[397.04,139.43],[397.09,139.43],[397.09,139.43],[397.1,139.43],[397.11,139.44],[397.12,139.44],[397.14,139.44],[397.16,139.45],[397.18,139.46],[397.19,139.46],[397.21,139.47],[397.23,139.48],[397.24,139.48],[397.26,139.49],[397.26,139.49],[397.28,139.49],[397.31,139.51],[397.35,139.52],[397.35,139.52],[397.38,139.53],[397.41,139.54],[397.43,139.54],[397.47,139.56],[397.51,139.58],[397.55,139.59],[397.59,139.6],[397.61,139.61],[397.63,139.61],[397.63,139.61],[397.66,139.62],[397.68,139.62],[397.71,139.62],[397.75,139.62],[397.8,139.63],[397.84,139.63],[397.86,139.63],[397.88,139.63],[397.9,139.64],[397.93,139.64],[397.94,139.64],[397.94,139.64],[397.96,139.64],[397.97,139.64],[397.97,139.64],[397.98,139.64],[397.99,139.64],[397.99,139.64],[398.01,139.64],[398.03,139.64],[398.03,139.64],[398.04,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.05,139.64],[398.06,139.64],[398.07,139.64],[398.12,139.63],[398.15,139.63],[398.17,139.63],[398.17,139.63],[398.22,139.63],[398.24,139.63],[398.25,139.63],[398.26,139.63],[398.26,139.63],[398.26,139.63],[398.26,139.63],[398.26,139.63],[398.26,139.63],[398.26,139.63],[398.26,139.63],[398.26,139.63],[398.27,139.63],[398.28,139.63],[398.3,139.65],[398.32,139.65],[398.34,139.66],[398.38,139.68],[398.41,139.69],[398.42,139.69],[398.44,139.7],[398.45,139.71],[398.46,139.71],[398.46,139.72],[398.47,139.72],[398.47,139.72],[398.47,139.72],[398.47,139.72],[398.47,139.72],[398.47,139.72],[398.47,139.72],[398.49,139.73],[398.51,139.73],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.51,139.74],[398.53,139.75],[398.54,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.55,139.75],[398.57,139.76],[398.57,139.76],[398.58,139.77],[398.59,139.77],[398.6,139.78],[398.6,139.78],[398.61,139.78],[398.62,139.78],[398.63,139.79],[398.64,139.79],[398.65,139.79],[398.65,139.8],[398.67,139.8],[398.68,139.81],[398.69,139.81],[398.69,139.81],[398.69,139.81],[398.7,139.82],[398.71,139.82],[398.71,139.82],[398.71,139.82],[398.72,139.82],[398.72,139.83],[398.73,139.83],[398.73,139.83],[398.74,139.83],[398.75,139.84],[398.75,139.84],[398.77,139.84],[398.78,139.84],[398.79,139.83],[398.79,139.83],[398.82,139.83],[398.85,139.83],[398.87,139.83],[398.91,139.83],[398.92,139.83],[398.93,139.83],[398.95,139.83],[399,139.82],[399.03,139.82],[399.05,139.82],[399.05,139.82],[399.13,139.8],[399.16,139.79],[399.18,139.79],[399.24,139.78],[399.3,139.76],[399.35,139.75],[399.51,139.72],[399.52,139.71],[399.58,139.7],[399.7,139.68],[399.85,139.64],[399.85,139.64],[400.02,139.61],[400.02,139.6],[400.03,139.6],[400.06,139.58],[400.07,139.57],[400.08,139.56],[400.09,139.55],[400.1,139.55],[400.1,139.55],[400.11,139.54],[400.12,139.54],[400.13,139.54],[400.14,139.54],[400.14,139.54],[400.19,139.54],[400.2,139.54],[400.2,139.54],[400.37,139.54],[400.51,139.55],[400.57,139.55],[400.63,139.56],[400.86,139.59],[400.89,139.6],[401.09,139.63],[401.25,139.65],[401.32,139.66],[401.33,139.66],[401.37,139.67],[401.38,139.67],[401.4,139.67],[401.47,139.66],[401.47,139.65],[401.48,139.65],[401.48,139.66],[401.51,139.66],[401.51,139.66],[401.52,139.67],[401.55,139.67],[401.73,139.72],[401.81,139.74],[401.84,139.75],[401.86,139.76],[401.91,139.77],[401.95,139.78],[401.97,139.79],[402.08,139.81],[402.08,139.81],[402.13,139.83],[402.17,139.84],[402.19,139.84],[402.23,139.85],[402.25,139.86],[402.28,139.86],[402.31,139.87],[402.35,139.88],[402.36,139.88],[402.39,139.89],[402.4,139.89],[402.4,139.89],[402.41,139.9],[402.42,139.9],[402.42,139.9],[402.42,139.91],[402.42,139.91],[402.43,139.91],[402.43,139.92],[402.43,139.93],[402.43,140.03],[402.43,140.1],[402.43,140.1],[402.43,140.11],[402.44,140.12],[402.44,140.14],[402.45,140.14],[402.45,140.15],[402.46,140.15],[402.46,140.15],[402.47,140.16],[402.48,140.16],[402.5,140.16],[402.52,140.16],[402.54,140.16],[402.55,140.16],[402.58,140.16],[402.6,140.17],[402.61,140.18],[402.62,140.18],[402.63,140.18],[402.63,140.18],[402.64,140.19],[402.65,140.19],[402.67,140.21],[402.68,140.21],[402.68,140.21],[402.69,140.22],[402.71,140.23],[402.72,140.23],[402.75,140.24],[402.78,140.25],[402.79,140.25],[402.81,140.26],[402.81,140.26],[402.81,140.26],[402.81,140.26],[402.82,140.26],[402.82,140.26],[402.83,140.26],[402.85,140.26],[402.87,140.26],[402.91,140.27],[402.92,140.27],[402.95,140.27],[402.97,140.27],[402.99,140.26],[403.01,140.26],[403.02,140.26],[403.02,140.26],[403.03,140.26],[403.03,140.26],[403.03,140.26],[403.03,140.26],[403.03,140.27],[403.04,140.27],[403.05,140.28],[403.06,140.29],[403.08,140.3],[403.09,140.31],[403.12,140.33],[403.13,140.33],[403.16,140.35],[403.16,140.35],[403.19,140.37],[403.23,140.4],[403.27,140.43],[403.3,140.45],[403.35,140.48],[403.39,140.51],[403.41,140.52],[403.43,140.54],[403.52,140.6],[403.59,140.64],[403.6,140.65],[403.62,140.65],[403.64,140.66],[403.65,140.66],[403.65,140.66],[403.68,140.67],[403.72,140.69],[403.76,140.7],[403.79,140.71],[403.81,140.72],[403.86,140.73],[403.88,140.73],[403.9,140.74],[403.94,140.76],[403.95,140.78],[404,140.8],[404.03,140.81],[404.06,140.82],[404.1,140.84],[404.11,140.85],[404.13,140.85],[404.15,140.85],[404.17,140.85],[404.2,140.87],[404.24,140.89],[404.26,140.9],[404.28,140.9],[404.31,140.91],[404.36,140.92],[404.41,140.93],[404.42,140.94],[404.5,140.96],[404.51,140.96],[404.52,140.96],[404.55,140.96],[404.62,140.95],[404.65,140.95],[404.67,140.95],[404.7,140.95],[404.73,140.95],[404.78,140.97],[404.85,140.99],[404.87,140.99],[404.94,141.01],[404.97,141.02],[404.98,141.03],[404.99,141.04],[405.03,141.07],[405.09,141.12],[405.13,141.17],[405.18,141.21],[405.24,141.27],[405.28,141.31],[405.32,141.34],[405.4,141.42],[405.43,141.44],[405.43,141.44],[405.43,141.45],[405.44,141.45],[405.44,141.46],[405.45,141.46],[405.46,141.47],[405.47,141.48],[405.48,141.48],[405.48,141.48],[405.48,141.48],[405.5,141.48],[405.5,141.48],[405.5,141.48],[405.51,141.48],[405.52,141.48],[405.52,141.48],[405.53,141.48],[405.55,141.48],[405.62,141.48],[405.77,141.49],[405.78,141.49],[405.78,141.49],[405.79,141.49],[405.8,141.48],[405.8,141.48],[405.82,141.46],[406,141.31],[406.01,141.3],[406.08,141.24],[406.09,141.23],[406.1,141.23],[406.12,141.23],[406.14,141.23],[406.17,141.22],[406.38,141.17],[406.46,141.15],[406.53,141.13],[406.54,141.13],[406.82,141.15],[407.07,141.16],[407.11,141.17],[407.19,141.17],[407.19,141.17],[407.2,141.17],[407.21,141.17],[407.22,141.17],[407.22,141.17],[407.23,141.17],[407.23,141.17],[407.23,141.17],[407.24,141.17],[407.25,141.16],[407.25,141.16],[407.27,141.15],[407.29,141.14],[407.3,141.13],[407.35,141.09],[407.39,141.07],[407.42,141.05],[407.43,141.04],[407.44,141.04],[407.44,141.03],[407.45,141.03],[407.46,141.02],[407.46,141.02],[407.47,141.02],[407.48,141.01],[407.49,141.01],[407.51,141.01],[407.51,141],[407.52,141],[407.54,141],[407.55,141],[407.56,141],[407.57,141],[407.59,141],[407.6,141],[407.61,141.01],[407.62,141.01],[407.63,141.01],[407.65,141.02],[407.66,141.03],[407.69,141.05],[407.7,141.06],[407.7,141.06],[407.7,141.06],[407.73,141.08],[407.75,141.09],[407.77,141.1],[407.77,141.1],[407.77,141.1],[407.78,141.11],[407.78,141.11],[407.78,141.11],[407.78,141.11],[407.79,141.11],[407.79,141.11],[407.8,141.11],[407.8,141.11],[407.81,141.11],[407.82,141.11],[407.82,141.11],[407.83,141.11],[407.84,141.11],[407.85,141.11],[407.87,141.11],[407.89,141.12],[407.9,141.12],[407.91,141.12],[407.91,141.12],[407.91,141.12],[407.92,141.12],[407.93,141.12],[407.93,141.12],[407.98,141.13],[408.05,141.13],[408.14,141.14],[408.21,141.15],[408.25,141.16],[408.29,141.16],[408.33,141.16],[408.37,141.17],[408.38,141.17],[408.43,141.17],[408.47,141.17],[408.49,141.17],[408.6,141.16],[408.66,141.16],[408.71,141.16],[408.73,141.16],[408.79,141.16],[408.85,141.16],[408.91,141.16],[408.98,141.15],[409.12,141.15],[409.26,141.15],[409.36,141.15],[409.52,141.14],[409.56,140.97],[409.57,140.96],[409.61,140.91],[409.67,140.84],[409.72,140.79],[409.72,140.79],[409.73,140.78],[409.74,140.78],[409.75,140.78],[409.78,140.76],[409.8,140.76],[409.81,140.75],[409.82,140.75],[409.82,140.75],[409.84,140.75],[409.84,140.74],[409.85,140.74],[409.86,140.74],[409.86,140.73],[409.87,140.72],[409.87,140.72],[409.87,140.72],[409.89,140.69],[409.92,140.65],[409.97,140.59],[409.97,140.59],[409.98,140.58],[410.03,140.47],[410.03,140.47],[410.04,140.46],[410.04,140.46],[410.06,140.42],[410.06,140.41],[410.07,140.4],[410.08,140.38],[410.09,140.37],[410.09,140.36],[410.11,140.34],[410.11,140.34],[410.11,140.33],[410.12,140.33],[410.13,140.32],[410.14,140.32],[410.2,140.29],[410.36,140.23],[410.39,140.22],[410.43,140.21],[410.46,140.2],[410.48,140.19],[410.57,140.15],[410.7,140.11],[410.73,140.1],[410.74,140.09],[410.75,140.09],[410.76,140.08],[410.77,140.08],[410.77,140.08],[410.77,140.08],[410.77,140.08],[410.78,140.08],[410.78,140.08],[410.78,140.09],[410.78,140.09],[410.78,140.09],[410.78,140.09],[410.78,140.08],[410.78,140.08],[410.78,140.08],[410.79,140.08],[410.79,140.08],[410.79,140.08],[410.82,140.08],[410.92,140.09],[411,140.1],[411.03,140.11],[411.04,140.11],[411.04,140.11],[411.05,140.11],[411.07,140.12],[411.09,140.13],[411.11,140.14],[411.13,140.14],[411.16,140.16],[411.22,140.18],[411.28,140.21],[411.35,140.24],[411.38,140.25],[411.4,140.26],[411.4,140.26],[411.42,140.27],[411.44,140.28],[411.48,140.3],[411.5,140.31],[411.53,140.32],[411.53,140.32],[411.54,140.33],[411.56,140.33],[411.58,140.34],[411.6,140.35],[411.66,140.38],[411.67,140.38],[411.67,140.38],[411.67,140.39],[411.67,140.39],[411.68,140.39],[411.68,140.4],[411.69,140.41],[411.69,140.41],[411.69,140.42],[411.69,140.42],[411.69,140.42],[411.69,140.42],[411.7,140.41],[411.7,140.41],[411.7,140.41],[411.7,140.41],[411.7,140.4],[411.7,140.4],[411.7,140.4],[411.71,140.4],[411.73,140.39],[411.76,140.38],[411.8,140.37],[411.81,140.37],[411.83,140.36],[411.85,140.35],[411.86,140.35],[411.87,140.35],[411.88,140.34],[411.89,140.34],[411.9,140.34],[411.91,140.33],[411.93,140.33],[411.94,140.33],[411.95,140.32],[411.98,140.31],[411.99,140.31],[412.03,140.3],[412.06,140.29],[412.16,140.26],[412.21,140.24],[412.26,140.23],[412.27,140.22],[412.43,140.17],[412.56,140.13],[412.69,140.09],[412.75,140.07],[412.76,140.07],[412.77,140.06],[412.79,140.06],[412.83,140.05],[412.83,140.05],[412.85,140.04],[412.87,140.03],[412.87,140.03],[412.9,140.02],[413,139.99],[413.04,139.98],[413.17,139.94],[413.32,139.89],[413.39,139.87],[413.4,139.87],[413.41,139.87],[413.42,139.86],[413.84,139.73],[413.87,139.72],[414.04,139.67],[414.13,139.64],[414.13,139.64],[414.14,139.64],[414.15,139.64],[414.15,139.64],[414.15,139.64],[414.16,139.64],[414.17,139.64],[414.18,139.64],[414.18,139.64],[414.19,139.64],[414.2,139.64],[414.21,139.64],[414.21,139.65],[414.23,139.65],[414.23,139.66],[414.24,139.66],[414.24,139.67],[414.25,139.67],[414.27,139.69],[414.32,139.74],[414.37,139.78],[414.38,139.79],[414.39,139.79],[414.4,139.8],[414.41,139.81],[414.43,139.82],[414.44,139.83],[414.46,139.83],[414.46,139.83],[414.47,139.84],[414.49,139.83],[414.52,139.83],[414.61,139.8],[414.64,139.8],[414.65,139.79],[414.68,139.79],[414.7,139.78],[414.72,139.78],[414.74,139.77],[414.79,139.76],[414.8,139.75],[414.81,139.75],[414.82,139.75],[414.83,139.74],[414.84,139.73],[414.91,139.63],[414.92,139.61],[414.92,139.59],[414.93,139.58],[414.93,139.56],[414.93,139.55],[414.94,139.53],[414.94,139.52],[414.94,139.5],[414.94,139.49],[414.94,139.47],[414.94,139.45],[414.94,139.45],[414.94,139.44],[414.94,139.43],[414.94,139.43],[414.94,139.41],[414.94,139.4],[414.95,139.39],[414.95,139.37],[414.97,139.35],[414.97,139.34],[414.98,139.33],[414.99,139.32],[415.01,139.31],[415.02,139.3],[415.11,139.25],[415.11,139.24],[415.29,139.14],[415.45,139.03],[415.53,138.99],[415.54,138.98],[415.57,138.97],[415.72,138.86],[415.74,138.84],[415.76,138.82],[415.8,138.78],[415.86,138.71],[415.92,138.64],[415.93,138.63],[415.95,138.62],[416.04,138.52],[416.08,138.48],[416.13,138.42],[416.15,138.4],[416.18,138.38],[416.2,138.36],[416.26,138.31],[416.28,138.3],[416.31,138.28],[416.37,138.24],[416.38,138.23],[416.4,138.22],[416.42,138.21],[416.45,138.2],[416.51,138.17],[416.56,138.16],[416.65,138.12],[416.67,138.11],[416.69,138.1],[416.72,138.08],[416.74,138.06],[416.79,138.02],[416.86,137.95],[416.89,137.93],[416.93,137.88],[416.94,137.88],[416.96,137.86],[416.98,137.83],[417.01,137.81],[417.21,137.59],[417.24,137.56],[417.26,137.54],[417.28,137.52],[417.3,137.51],[417.31,137.5],[417.34,137.49],[417.35,137.48],[417.41,137.46],[417.46,137.43],[417.56,137.39],[417.59,137.37],[417.61,137.36],[417.63,137.35],[417.65,137.34],[417.66,137.32],[417.68,137.31],[417.7,137.3],[417.72,137.28],[417.74,137.25],[417.78,137.2],[417.82,137.15],[417.83,137.14],[417.85,137.12],[417.86,137.1],[417.87,137.08],[417.89,137.06],[417.92,137.03],[417.96,137],[417.98,136.98],[418.01,136.96],[418.02,136.95],[418.04,136.94],[418.05,136.93],[418.08,136.91],[418.08,136.91],[418.1,136.89],[418.11,136.89],[418.14,136.87],[418.16,136.85],[418.38,136.66],[418.39,136.65],[418.4,136.64],[418.44,136.6],[418.47,136.58],[418.48,136.56],[418.49,136.55],[418.5,136.53],[418.51,136.52],[418.53,136.5],[418.54,136.47],[418.55,136.45],[418.56,136.41],[418.57,136.4],[418.57,136.4],[418.58,136.38],[418.58,136.36],[418.59,136.36],[418.59,136.35],[418.6,136.34],[418.6,136.34],[418.61,136.32],[418.63,136.29],[418.64,136.28],[418.66,136.26],[418.67,136.25],[418.68,136.24],[418.69,136.23],[418.7,136.22],[418.72,136.21],[418.74,136.2],[418.81,136.16],[418.85,136.14],[418.85,136.13],[418.86,136.13],[418.89,136.11],[418.91,136.1],[418.93,136.09],[418.95,136.07],[418.98,136.04],[419,136.02],[419.14,135.87],[419.17,135.84],[419.31,135.72],[419.36,135.67],[419.38,135.66],[419.42,135.63],[419.52,135.54],[419.56,135.5],[419.6,135.47],[419.63,135.45],[419.65,135.43],[419.67,135.42],[419.73,135.38],[419.76,135.37],[419.86,135.31],[419.96,135.24],[420.03,135.2],[420.05,135.19],[420.06,135.18],[420.07,135.17],[420.14,135.1],[420.15,135.1],[420.15,135.09],[420.2,135.05],[420.23,135.01],[420.25,135],[420.26,134.99],[420.28,134.98],[420.29,134.97],[420.31,134.96],[420.31,134.95],[420.36,134.92],[420.38,134.9],[420.39,134.89],[420.4,134.89],[420.41,134.88],[420.41,134.88],[420.42,134.88],[420.42,134.87],[420.43,134.87],[420.45,134.86],[420.58,134.81],[420.6,134.79],[420.64,134.78],[420.66,134.77],[420.95,134.59],[420.97,134.57],[421,134.55],[421.03,134.53],[421.08,134.48],[421.12,134.44],[421.17,134.4],[421.22,134.36],[421.24,134.34],[421.26,134.32],[421.29,134.3],[421.3,134.29],[421.31,134.27],[421.32,134.26],[421.33,134.24],[421.35,134.22],[421.36,134.19],[421.37,134.18],[421.42,134.09],[421.5,133.94],[421.53,133.89],[421.56,133.84],[421.56,133.83],[421.58,133.81],[421.59,133.79],[421.6,133.78],[421.61,133.77],[421.63,133.75],[421.65,133.73],[421.84,133.57],[421.84,133.57],[421.87,133.54],[421.88,133.53],[421.89,133.51],[421.9,133.5],[421.9,133.49],[421.92,133.46],[421.93,133.44],[421.94,133.42],[421.99,133.29],[422,133.27],[422.09,133],[422.11,132.94],[422.13,132.91],[422.13,132.89],[422.14,132.87],[422.15,132.85],[422.26,132.68],[422.41,132.43],[422.42,132.41],[422.43,132.4],[422.44,132.38],[422.45,132.36],[422.45,132.35],[422.47,132.33],[422.53,132.22],[422.55,132.18],[422.68,131.98],[422.7,131.95],[422.72,131.93],[422.73,131.91],[422.75,131.9],[422.77,131.88],[422.78,131.87],[422.89,131.78],[422.93,131.75],[422.95,131.74],[423,131.7],[423.02,131.69],[423.05,131.67],[423.08,131.65],[423.08,131.64],[423.09,131.64],[423.1,131.63],[423.1,131.63],[423.11,131.62],[423.12,131.61],[423.12,131.61],[423.13,131.6],[423.14,131.59],[423.15,131.58],[423.17,131.55],[423.2,131.52],[423.2,131.51],[423.21,131.5],[423.22,131.49],[423.23,131.48],[423.23,131.46],[423.24,131.46],[423.24,131.44],[423.25,131.43],[423.25,131.41],[423.26,131.39],[423.26,131.38],[423.27,131.35],[423.27,131.33],[423.27,131.31],[423.27,131.3],[423.27,131.26],[423.27,131.24],[423.27,131.23],[423.27,131.19],[423.27,131.17],[423.27,131.16],[423.28,131.14],[423.29,131.12],[423.3,131.08],[423.32,131.04],[423.34,131.01],[423.35,130.99],[423.36,130.97],[423.38,130.94],[423.43,130.89],[423.45,130.88],[423.46,130.87],[423.47,130.86],[423.47,130.86],[423.48,130.85],[423.49,130.84],[423.51,130.84],[423.51,130.84],[423.52,130.83],[423.62,130.78],[423.66,130.77],[423.68,130.76],[423.7,130.75],[423.71,130.74],[423.73,130.73],[423.74,130.72],[423.75,130.7],[423.76,130.69],[423.78,130.67],[423.79,130.65],[423.8,130.63],[423.81,130.62],[423.82,130.61],[423.82,130.6],[423.83,130.59],[423.83,130.58],[423.84,130.58],[423.84,130.57],[423.85,130.56],[423.86,130.55],[423.87,130.55],[423.89,130.54],[423.91,130.52],[423.93,130.5],[423.94,130.5],[423.95,130.49],[423.96,130.48],[423.97,130.48],[423.98,130.47],[424.01,130.46],[424.03,130.45],[424.04,130.45],[424.07,130.44],[424.08,130.43],[424.09,130.43],[424.11,130.43],[424.13,130.42],[424.15,130.42],[424.16,130.42],[424.17,130.42],[424.18,130.42],[424.18,130.42],[424.19,130.42],[424.2,130.41],[424.22,130.41],[424.23,130.41],[424.24,130.4],[424.26,130.39],[424.28,130.38],[424.29,130.37],[424.29,130.37],[424.3,130.36],[424.31,130.35],[424.33,130.34],[424.35,130.32],[424.36,130.31],[424.37,130.3],[424.38,130.3],[424.38,130.29],[424.43,130.25],[424.47,130.22],[424.47,130.22],[424.51,130.19],[424.53,130.17],[424.56,130.16],[424.57,130.16],[424.58,130.15],[424.6,130.14],[424.61,130.14],[424.68,130.11],[424.7,130.1],[424.72,130.08],[424.74,130.07],[424.77,130.05],[424.78,130.04],[424.8,130.03],[424.82,130.01],[424.87,129.95],[424.9,129.93],[424.92,129.91],[424.96,129.88],[425.19,129.75],[425.2,129.74],[425.23,129.73],[425.28,129.71],[425.52,129.62],[425.54,129.61],[425.55,129.61],[425.56,129.6],[425.58,129.59],[425.6,129.58],[425.61,129.57],[425.62,129.56],[425.63,129.56],[425.77,129.44],[425.79,129.43],[425.81,129.41],[425.84,129.39],[426.01,129.31],[426.03,129.3],[426.04,129.29],[426.05,129.28],[426.08,129.26],[426.09,129.25],[426.11,129.23],[426.15,129.19],[426.18,129.15],[426.25,129.07],[426.28,129.04],[426.35,128.97],[426.47,128.86],[426.55,128.78],[426.65,128.69],[426.8,128.53],[426.8,128.53],[426.83,128.5],[426.84,128.49],[426.85,128.48],[426.89,128.45],[427.04,128.31],[427.12,128.24],[427.13,128.22],[427.15,128.21],[427.17,128.18],[427.18,128.16],[427.2,128.14],[427.21,128.11],[427.29,127.91],[427.29,127.91],[427.31,127.88],[427.32,127.86],[427.34,127.82],[427.47,127.6],[427.47,127.6],[427.48,127.59],[427.51,127.53],[427.53,127.5],[427.54,127.48],[427.56,127.46],[427.59,127.43],[427.71,127.32],[427.72,127.3],[427.73,127.3],[427.75,127.28],[427.77,127.26],[427.79,127.25],[427.81,127.24],[427.83,127.23],[427.96,127.17],[428.03,127.14],[428.06,127.13],[428.1,127.12],[428.11,127.11],[428.13,127.11],[428.15,127.1],[428.15,127.1],[428.25,127.07],[428.27,127.07],[428.34,127.05],[428.37,127.04],[428.4,127.04],[428.43,127.04],[428.45,127.04],[428.49,127.04],[428.51,127.04],[428.54,127.05],[428.57,127.06],[428.57,127.06],[428.67,127.09],[428.69,127.1],[428.7,127.1],[428.72,127.1],[428.74,127.11],[428.76,127.11],[428.78,127.11],[428.81,127.1],[428.82,127.1],[428.84,127.1],[428.84,127.09],[428.87,127.08],[428.99,127.04],[429.04,127.02],[429.18,126.97],[429.37,126.9],[429.38,126.89],[429.39,126.88],[429.41,126.87],[429.45,126.84],[429.6,126.72],[429.78,126.57],[429.81,126.54],[429.82,126.53],[429.83,126.52],[429.83,126.51],[429.83,126.5],[429.84,126.47],[429.84,126.47],[429.85,126.45],[429.87,126.35],[429.89,126.29],[429.9,126.24],[429.92,126.18],[429.99,126.02],[430.02,125.96],[430.02,125.94],[430.03,125.93],[430.04,125.92],[430.05,125.91],[430.06,125.9],[430.06,125.9],[430.06,125.9],[430.08,125.88],[430.1,125.88],[430.11,125.87],[430.14,125.86],[430.15,125.86],[430.17,125.86],[430.18,125.86],[430.24,125.86],[430.27,125.86],[430.33,125.86],[430.35,125.85],[430.38,125.84],[430.4,125.84],[430.43,125.82],[430.48,125.79],[430.61,125.71],[430.62,125.71],[430.63,125.7],[430.64,125.7],[430.65,125.69],[430.68,125.69],[430.71,125.68],[430.72,125.68],[430.75,125.69],[430.79,125.69],[430.83,125.7],[430.87,125.7],[430.91,125.7],[430.98,125.7],[431.01,125.7],[431.05,125.69],[431.08,125.69],[431.12,125.68],[431.18,125.67],[431.29,125.64],[431.37,125.62],[431.41,125.61],[431.44,125.6],[431.54,125.58],[431.64,125.55],[431.65,125.55],[431.81,125.52],[431.92,125.49],[431.93,125.49],[431.97,125.48],[432,125.47],[432.04,125.46],[432.06,125.45],[432.07,125.45],[432.1,125.43],[432.2,125.38],[432.21,125.37],[432.22,125.37],[432.46,125.25],[432.48,125.24],[432.5,125.23],[432.54,125.21],[432.55,125.21],[432.56,125.2],[432.58,125.19],[432.6,125.18],[432.6,125.18],[432.62,125.17],[432.64,125.16],[432.66,125.16],[432.68,125.15],[432.71,125.15],[432.76,125.14],[432.88,125.12],[432.91,125.11],[432.96,125.11],[433.01,125.1],[433.07,125.09],[433.08,125.08],[433.09,125.08],[433.09,125.08],[433.11,125.08],[433.12,125.07],[433.13,125.07],[433.13,125.07],[433.14,125.07],[433.15,125.06],[433.18,125.05],[433.2,125.03],[433.21,125.03],[433.22,125.02],[433.23,125.01],[433.23,125.01],[433.25,124.99],[433.27,124.97],[433.29,124.96],[433.31,124.95],[433.34,124.93],[433.34,124.93],[433.35,124.93],[433.35,124.92],[433.36,124.92],[433.37,124.91],[433.37,124.91],[433.38,124.9],[433.4,124.89],[433.41,124.88],[433.42,124.88],[433.42,124.87],[433.43,124.86],[433.63,124.68],[433.66,124.66],[433.68,124.64],[433.71,124.62],[433.73,124.6],[433.75,124.59],[433.76,124.59],[433.77,124.58],[433.78,124.58],[433.8,124.57],[433.8,124.57],[433.81,124.57],[433.81,124.57],[433.92,124.53],[433.94,124.53],[433.98,124.51],[433.99,124.51],[434,124.51],[434,124.51],[434.03,124.5],[434.04,124.5],[434.08,124.48],[434.09,124.48],[434.11,124.47],[434.11,124.46],[434.12,124.46],[434.13,124.46],[434.14,124.45],[434.16,124.44],[434.17,124.43],[434.17,124.42],[434.19,124.41],[434.21,124.4],[434.23,124.37],[434.23,124.37],[434.25,124.36],[434.25,124.36],[434.26,124.34],[434.27,124.34],[434.35,124.26],[434.39,124.22],[434.44,124.18],[434.53,124.11],[434.53,124.1],[434.55,124.09],[434.55,124.08],[434.56,124.08],[434.58,124.06],[434.6,124.04],[434.62,124.03],[434.64,124.01],[434.64,124.01],[434.67,123.98],[434.73,123.93],[434.75,123.91],[434.75,123.91],[434.75,123.91],[434.77,123.89],[434.81,123.86],[434.82,123.85],[434.84,123.83],[434.85,123.82],[434.86,123.81],[434.88,123.79],[434.89,123.77],[434.91,123.75],[434.91,123.75],[434.91,123.74],[434.92,123.72],[434.93,123.7],[434.94,123.69],[434.95,123.65],[434.96,123.62],[434.98,123.54],[435,123.45],[435.05,123.29],[435.06,123.26],[435.07,123.23],[435.07,123.2],[435.08,123.19],[435.09,123.17],[435.09,123.16],[435.11,123.13],[435.13,123.1],[435.14,123.09],[435.15,123.08],[435.16,123.07],[435.16,123.07],[435.17,123.06],[435.18,123.06],[435.19,123.05],[435.21,123.03],[435.23,123.02],[435.25,123],[435.4,122.93],[435.44,122.91],[435.45,122.91],[435.5,122.89],[435.56,122.86],[435.6,122.83],[435.7,122.77],[435.73,122.75],[435.78,122.72],[435.8,122.71],[435.81,122.7],[435.86,122.68],[435.88,122.68],[435.95,122.64],[436.02,122.62],[436.02,122.61],[436.05,122.6],[436.07,122.59],[436.11,122.57],[436.13,122.56],[436.17,122.54],[436.2,122.52],[436.24,122.5],[436.27,122.48],[436.3,122.47],[436.33,122.45],[436.34,122.45],[436.35,122.45],[436.38,122.43],[436.4,122.42],[436.46,122.41],[436.5,122.4],[436.54,122.39],[436.59,122.38],[436.6,122.38],[436.6,122.38],[437,122.33],[437.05,122.32],[437.07,122.31],[437.16,122.3],[437.32,122.26],[437.37,122.25],[437.4,122.24],[437.44,122.23],[437.48,122.21],[437.55,122.18],[437.64,122.13],[437.68,122.11],[437.71,122.1],[437.72,122.09],[437.74,122.07],[437.77,122.05],[437.84,121.98],[437.86,121.97],[437.9,121.93],[437.92,121.91],[437.94,121.89],[437.94,121.88],[437.98,121.84],[438.01,121.79],[438.03,121.77],[438.03,121.77],[438.03,121.76],[438.07,121.7],[438.24,121.42],[438.25,121.41],[438.27,121.38],[438.32,121.31],[438.34,121.29],[438.37,121.24],[438.4,121.2],[438.42,121.17],[438.44,121.13],[438.46,121.09],[438.48,121.05],[438.52,120.96],[438.53,120.95],[438.55,120.9],[438.56,120.88],[438.57,120.86],[438.58,120.83],[438.6,120.79],[438.61,120.76],[438.66,120.69],[438.66,120.68],[438.74,120.56],[438.75,120.55],[438.77,120.52],[438.78,120.5],[438.81,120.46],[438.89,120.38],[438.99,120.27],[439,120.26],[439,120.25],[439.02,120.22],[439.04,120.19],[439.05,120.17],[439.06,120.14],[439.06,120.13],[439.08,120.08],[439.08,120.06],[439.08,120.05],[439.09,120.05],[439.1,120.04],[439.1,120.02],[439.12,120.01],[439.13,120],[439.14,119.99],[439.15,119.98],[439.16,119.98],[439.19,119.97],[439.2,119.96],[439.22,119.96],[439.23,119.96],[439.25,119.95],[439.26,119.95],[439.3,119.95],[439.31,119.95],[439.32,119.95],[439.33,119.95],[439.34,119.95],[439.34,119.95],[439.35,119.94],[439.36,119.94],[439.37,119.93],[439.38,119.93],[439.49,119.83],[439.57,119.76],[439.59,119.75],[439.6,119.74],[439.62,119.74],[439.63,119.74],[439.67,119.74],[439.73,119.75],[439.84,119.76],[439.86,119.76],[439.87,119.76],[439.88,119.76],[439.9,119.76],[439.91,119.76],[439.98,119.77],[439.99,119.77],[440,119.77],[440.02,119.77],[440.06,119.76],[440.13,119.75],[440.2,119.75],[440.26,119.75],[440.28,119.74],[440.32,119.73],[440.4,119.71],[440.43,119.7],[440.44,119.7],[440.5,119.68],[440.52,119.68],[440.54,119.68],[440.56,119.67],[440.6,119.67],[440.63,119.66],[440.64,119.66],[440.65,119.66],[440.66,119.66],[440.67,119.66],[440.68,119.66],[440.69,119.66],[440.7,119.66],[440.74,119.65],[440.8,119.64],[440.81,119.64],[440.85,119.64],[440.86,119.63],[440.9,119.62],[440.91,119.62],[440.92,119.61],[440.99,119.59],[441.02,119.58],[441.05,119.57],[441.11,119.56],[441.15,119.55],[441.18,119.54],[441.21,119.53],[441.25,119.51],[441.27,119.5],[441.29,119.49],[441.3,119.48],[441.51,119.36],[441.54,119.33],[441.56,119.31],[441.56,119.31],[441.57,119.31],[441.57,119.3],[441.59,119.28],[441.64,119.22],[441.66,119.19],[441.68,119.18],[441.7,119.15],[441.73,119.13],[441.75,119.12],[441.86,119.05],[441.88,119.05],[441.91,119.03],[441.92,119.03],[441.93,119.03],[441.95,119.02],[441.98,119.01],[442.14,118.97],[442.17,118.96],[442.19,118.96],[442.22,118.95],[442.23,118.95],[442.27,118.95],[442.59,118.96],[442.61,118.96],[442.62,118.97],[442.64,118.97],[442.65,118.96],[442.66,118.96],[442.67,118.96],[442.69,118.96],[442.71,118.95],[442.73,118.95],[442.75,118.94],[442.76,118.93],[442.78,118.92],[442.81,118.91],[442.81,118.9],[442.84,118.89],[442.87,118.88],[442.89,118.88],[442.9,118.87],[442.91,118.87],[442.93,118.87],[443.04,118.84],[443.05,118.84],[443.09,118.83],[443.23,118.77],[443.35,118.73],[443.4,118.71],[443.42,118.71],[443.54,118.69],[443.55,118.68],[443.56,118.68],[443.57,118.68],[443.58,118.68],[443.61,118.67],[443.64,118.66],[443.73,118.62],[443.77,118.61],[443.8,118.6],[443.82,118.59],[443.86,118.56],[443.94,118.5],[443.95,118.49],[443.99,118.47],[444.01,118.46],[444.06,118.44],[444.17,118.4],[444.21,118.39],[444.24,118.38],[444.27,118.37],[444.32,118.36],[444.33,118.36],[444.37,118.35],[444.41,118.34],[444.42,118.34],[444.47,118.32],[444.48,118.32],[444.48,118.32],[444.49,118.32],[444.51,118.31],[444.52,118.31],[444.53,118.3],[444.55,118.3],[444.56,118.29],[444.56,118.29],[444.58,118.28],[444.6,118.27],[444.64,118.25],[444.69,118.22],[444.7,118.22],[444.71,118.21],[444.73,118.2],[444.74,118.19],[444.77,118.18],[444.89,118.14],[444.91,118.13],[444.93,118.12],[444.94,118.12],[444.96,118.11],[444.99,118.11],[445,118.1],[445.03,118.1],[445.05,118.1],[445.16,118.08],[445.18,118.08],[445.2,118.07],[445.22,118.06],[445.24,118.06],[445.27,118.05],[445.3,118.04],[445.5,117.96],[445.57,117.93],[445.57,117.93],[445.6,117.92],[445.67,117.91],[445.69,117.91],[445.72,117.91],[445.73,117.91],[445.75,117.91],[445.76,117.91],[445.78,117.92],[445.81,117.93],[445.84,117.94],[445.89,117.95],[445.91,117.96],[445.93,117.96],[445.96,117.97],[446,117.97],[446.02,117.97],[446.05,117.97],[446.08,117.96],[446.1,117.96],[446.13,117.95],[446.16,117.94],[446.17,117.94],[446.17,117.94],[446.19,117.94],[446.22,117.93],[446.27,117.92],[446.31,117.9],[446.4,117.88],[446.43,117.87],[446.49,117.86],[446.51,117.85],[446.55,117.85],[446.77,117.79],[446.81,117.78],[446.82,117.78],[446.83,117.77],[446.84,117.77],[446.93,117.72],[446.94,117.72],[446.95,117.71],[446.96,117.71],[446.96,117.71],[446.98,117.71],[447.01,117.7],[447.1,117.69],[447.16,117.69],[447.16,117.69],[447.18,117.68],[447.18,117.68],[447.26,117.66],[447.33,117.65],[447.34,117.65],[447.35,117.64],[447.36,117.64],[447.37,117.63],[447.38,117.63],[447.39,117.62],[447.47,117.56],[447.5,117.53],[447.55,117.48],[447.58,117.46],[447.61,117.43],[447.69,117.36],[447.7,117.35],[447.73,117.33],[447.77,117.29],[447.78,117.29],[447.79,117.28],[447.79,117.28],[447.8,117.28],[447.82,117.27],[447.87,117.26],[447.9,117.25],[447.95,117.24],[447.97,117.24],[447.98,117.24],[448,117.23],[448.06,117.22],[448.2,117.18],[448.21,117.18],[448.21,117.18],[448.22,117.18],[448.23,117.17],[448.23,117.17],[448.24,117.16],[448.26,117.15],[448.26,117.14],[448.29,117.12],[448.31,117.1],[448.32,117.09],[448.33,117.08],[448.34,117.08],[448.4,117.05],[448.44,117.02],[448.45,117.01],[448.46,117.01],[448.48,117],[448.52,116.96],[448.52,116.96],[448.53,116.95],[448.62,116.82],[448.63,116.81],[448.65,116.78],[448.68,116.73],[448.69,116.72],[448.7,116.71],[448.71,116.7],[448.73,116.69],[448.83,116.63],[448.97,116.54],[448.98,116.54],[448.99,116.54],[448.99,116.53],[449,116.53],[449.02,116.53],[449.08,116.51],[449.1,116.51],[449.11,116.51],[449.14,116.5],[449.16,116.49],[449.18,116.49],[449.21,116.48],[449.23,116.48],[449.25,116.48],[449.33,116.46],[449.45,116.43],[449.56,116.41],[449.69,116.38],[449.87,116.34],[449.98,116.32],[450.03,116.31],[450.05,116.3],[450.28,116.21],[450.37,116.17],[450.44,116.14],[450.67,116.05],[450.7,116.04],[450.77,116.01],[450.87,115.98],[451.11,115.91],[451.11,115.91],[451.14,115.9],[451.39,115.88],[451.4,115.88],[451.53,115.87],[451.69,115.85],[451.73,115.85],[451.74,115.85],[451.94,115.84],[451.97,115.84],[452.06,115.84],[452.17,115.84],[452.25,115.83],[452.31,115.83],[452.34,115.83],[452.35,115.83],[452.36,115.83],[452.36,115.83],[452.36,115.83],[452.36,115.83],[452.44,115.83],[452.47,115.83],[452.61,115.84],[452.63,115.84],[452.63,115.84],[452.65,115.84],[452.66,115.84],[452.72,115.84],[452.78,115.83],[452.79,115.83],[452.8,115.83],[453.08,115.78],[453.41,115.72],[453.5,115.71],[453.74,115.65],[453.75,115.64],[453.95,115.55],[453.97,115.54],[454,115.52],[454.1,115.49],[454.23,115.45],[454.25,115.45],[454.27,115.44],[454.38,115.4],[454.48,115.36],[454.5,115.36],[454.67,115.33],[454.7,115.32],[454.79,115.31],[455.08,115.26],[455.1,115.25],[455.13,115.23],[455.28,115.13],[455.41,115.03],[455.6,114.89],[455.63,114.87],[455.65,114.85],[455.67,114.83],[455.69,114.81],[455.69,114.81],[455.71,114.79],[455.77,114.73],[455.81,114.7],[455.82,114.69],[455.83,114.68],[455.84,114.68],[455.91,114.65],[455.96,114.63],[455.98,114.62],[455.98,114.62],[455.99,114.61],[456,114.6],[456.13,114.38],[456.15,114.35],[456.16,114.34],[456.17,114.33],[456.18,114.33],[456.19,114.32],[456.2,114.32],[456.21,114.32],[456.22,114.32],[456.25,114.32],[456.57,114.3],[456.91,114.27],[456.93,114.27],[457.13,114.26],[457.16,114.26],[457.21,114.25],[457.21,114.25],[457.22,114.25],[457.23,114.25],[457.24,114.25],[457.24,114.25],[457.25,114.25],[457.26,114.24],[457.44,114.17],[457.45,114.17],[457.46,114.16],[457.47,114.16],[457.48,114.16],[457.5,114.16],[457.52,114.16],[457.52,114.16],[457.53,114.16],[457.55,114.15],[457.65,114.15],[457.66,114.15],[457.68,114.14],[457.71,114.14],[457.71,114.14],[457.73,114.14],[457.79,114.14],[457.8,114.14],[457.85,114.13],[457.86,114.13],[457.88,114.13],[457.88,114.13],[457.9,114.13],[457.92,114.13],[457.94,114.12],[457.95,114.12],[457.98,114.12],[457.99,114.12],[458.06,114.11],[458.07,114.11],[458.08,114.11],[458.08,114.1],[458.09,114.1],[458.12,114.09],[458.16,114.07],[458.17,114.06],[458.18,114.06],[458.19,114.06],[458.22,114.04],[458.22,114.04],[458.26,114.02],[458.34,113.98],[458.43,113.94],[458.44,113.94],[458.45,113.94],[458.46,113.93],[458.47,113.93],[458.47,113.93],[458.47,113.93],[458.5,113.92],[458.51,113.92],[458.51,113.91],[458.6,113.88],[458.61,113.87],[458.62,113.87],[458.63,113.86],[458.64,113.86],[458.68,113.83],[458.69,113.83],[458.69,113.82],[458.7,113.82],[458.71,113.81],[458.71,113.8],[458.72,113.79],[458.72,113.78],[458.75,113.68],[458.76,113.66],[458.77,113.65],[458.79,113.63],[458.88,113.51],[458.89,113.51],[458.9,113.5],[458.91,113.49],[458.94,113.46],[458.97,113.44],[458.99,113.43],[459,113.42],[459.04,113.38],[459.07,113.36],[459.07,113.36],[459.08,113.35],[459.16,113.26],[459.2,113.22],[459.22,113.2],[459.31,113.1],[459.45,112.94],[459.46,112.94],[459.46,112.93],[459.68,112.69],[459.7,112.67],[459.73,112.64],[459.74,112.63],[459.75,112.62],[459.76,112.6],[459.8,112.59],[459.81,112.58],[459.88,112.54],[459.98,112.49],[459.99,112.49],[460,112.48],[460.01,112.48],[460.02,112.48],[460.13,112.46],[460.16,112.46],[460.21,112.45],[460.22,112.45],[460.33,112.44],[460.34,112.44],[460.35,112.44],[460.35,112.44],[460.36,112.44],[460.37,112.44],[460.89,112.23],[460.9,112.22],[460.91,112.22],[460.99,112.22],[461.06,112.21],[461.21,112.2],[461.33,112.19],[461.38,112.19],[461.43,112.18],[461.44,112.18],[461.45,112.18],[461.46,112.18],[461.56,112.13],[461.57,112.13],[461.58,112.12],[461.65,112.09],[461.73,112.05],[461.75,112.04],[461.82,112.02],[461.83,112.02],[461.83,112.02],[461.84,112.01],[461.85,112.01],[461.87,112.01],[461.88,112],[461.9,112],[461.91,112],[461.91,112],[461.94,111.99],[461.95,111.99],[461.98,111.99],[462,111.99],[462,111.99],[462.01,111.99],[462.01,111.99],[462.01,111.99],[462.04,111.99],[462.06,111.99],[462.07,111.99],[462.07,111.99],[462.08,111.99],[462.09,111.99],[462.1,111.99],[462.12,111.99],[462.22,111.99],[462.25,111.99],[462.27,111.99],[462.28,111.99],[462.29,111.99],[462.3,111.99],[462.34,111.98],[462.36,111.97],[462.39,111.96],[462.55,111.93],[462.95,111.83],[463.15,111.78],[463.17,111.77],[463.29,111.75],[463.35,111.73],[463.47,111.71],[463.81,111.65],[463.85,111.64],[463.95,111.62],[463.97,111.62],[463.98,111.61],[464.07,111.6],[464.08,111.6],[464.15,111.58],[464.16,111.58],[464.29,111.56],[464.4,111.54],[464.54,111.51],[464.59,111.51],[464.62,111.5],[464.67,111.49],[464.68,111.49],[464.71,111.49],[464.73,111.48],[464.84,111.47],[464.85,111.46],[464.85,111.46],[464.85,111.46],[464.89,111.45],[464.91,111.44],[464.94,111.43],[464.96,111.42],[465.02,111.4],[465.08,111.39],[465.1,111.39],[465.1,111.39],[465.11,111.38],[465.17,111.37],[465.22,111.36],[465.29,111.35],[465.35,111.34],[465.37,111.34],[465.39,111.33],[465.41,111.33],[465.55,111.29],[465.64,111.28],[465.69,111.26],[465.7,111.26],[465.71,111.26],[465.73,111.25],[465.82,111.21],[465.95,111.16],[466.11,111.1],[466.23,111.05],[466.23,111.05],[466.3,111.01],[466.31,111.01],[466.32,111],[466.33,110.99],[466.37,110.97],[466.38,110.97],[466.38,110.97],[466.39,110.96],[466.4,110.96],[466.41,110.96],[466.41,110.96],[466.42,110.95],[466.43,110.95],[466.47,110.96],[466.53,110.96],[466.6,110.96],[466.66,110.96],[466.68,110.96],[466.7,110.96],[466.78,110.97],[466.85,110.97],[466.93,110.97],[467.07,110.97],[467.17,110.98],[467.18,110.98],[467.21,110.98],[467.24,110.98],[467.29,110.99],[467.35,110.99],[467.41,111],[467.42,111],[467.44,110.99],[467.52,110.98],[467.57,110.97],[467.64,110.96],[467.71,110.95],[467.84,110.93],[467.91,110.92],[468.03,110.9],[468.11,110.89],[468.38,110.85],[468.48,110.83],[468.54,110.82],[468.59,110.81],[468.63,110.81],[468.67,110.8],[468.68,110.8],[468.71,110.8],[468.72,110.8],[468.78,110.8],[468.84,110.79],[468.86,110.79],[468.87,110.79],[468.88,110.79],[468.89,110.8],[468.9,110.8],[468.91,110.8],[468.93,110.8],[468.96,110.81],[469.16,110.87],[469.17,110.88],[469.18,110.88],[469.19,110.88],[469.24,110.88],[469.28,110.88],[469.38,110.89],[469.43,110.89],[469.54,110.9],[469.64,110.91],[469.75,110.92],[469.76,110.91],[469.77,110.91],[470.22,110.76],[470.24,110.75],[470.25,110.75],[470.26,110.74],[470.27,110.73],[470.27,110.73],[470.32,110.69],[470.33,110.69],[470.4,110.67],[470.66,110.59],[470.69,110.58],[470.74,110.58],[470.75,110.57],[470.76,110.57],[470.77,110.57],[470.78,110.56],[470.89,110.51],[470.9,110.5],[470.97,110.47],[471.17,110.38],[471.17,110.37],[471.18,110.37],[471.19,110.37],[471.2,110.36],[471.2,110.36],[471.21,110.36],[471.26,110.33],[471.34,110.3],[471.36,110.29],[471.54,110.19],[471.56,110.18],[471.64,110.14],[471.66,110.12],[471.71,110.09],[472,109.91],[472.11,109.85],[472.45,109.64],[472.47,109.63],[472.61,109.56],[472.62,109.55],[472.74,109.46],[472.86,109.37],[472.98,109.28],[473.06,109.22],[473.07,109.22],[473.16,109.17],[473.18,109.15],[473.22,109.13],[473.22,109.13],[473.27,109.09],[473.32,109.05],[473.33,109.05],[473.33,109.05],[473.34,109.04],[473.36,109.02],[473.37,109.01],[473.38,109],[473.43,108.96],[473.44,108.95],[473.45,108.93],[473.48,108.9],[473.48,108.9],[473.49,108.89],[473.76,108.7],[473.77,108.69],[473.78,108.68],[473.79,108.68],[473.8,108.67],[473.81,108.67],[473.82,108.66],[473.85,108.63],[473.88,108.61],[473.98,108.53],[474.09,108.46],[474.12,108.44],[474.26,108.33],[474.3,108.31],[474.34,108.27],[474.47,108.18],[474.6,108.09],[474.61,108.07],[474.8,107.92],[474.82,107.92],[474.83,107.91],[474.9,107.89],[474.93,107.87],[474.96,107.87],[474.98,107.86],[475.08,107.84],[475.09,107.83],[475.15,107.82],[475.17,107.82],[475.18,107.82],[475.2,107.81],[475.26,107.8],[475.27,107.8],[475.28,107.8],[475.32,107.79],[475.33,107.79],[475.69,107.76],[475.7,107.75],[475.78,107.73],[475.8,107.73],[475.93,107.75],[475.93,107.75],[476.14,107.79],[476.18,107.79],[476.2,107.79],[476.34,107.79],[476.48,107.8],[476.53,107.8],[476.55,107.8],[476.62,107.82],[476.71,107.84],[476.88,107.87],[476.89,107.87],[476.89,107.87],[476.9,107.87],[476.9,107.87],[476.93,107.87],[477.11,107.87],[477.2,107.87],[477.37,107.87],[477.38,107.87],[477.39,107.88],[477.4,107.88],[477.4,107.88],[477.48,107.91],[477.64,107.98],[477.65,107.98],[477.66,107.99],[477.67,107.99],[477.76,108.01],[477.78,108.02],[477.91,108.05],[478.02,108.07],[478.06,108.08],[478.07,108.08],[478.08,108.08],[478.08,108.08],[478.12,108.09],[478.2,108.1],[478.28,108.1],[478.39,108.11],[478.49,108.12],[478.63,108.13],[478.78,108.15],[478.81,108.15],[478.96,108.16],[479.06,108.17],[479.09,108.17],[479.1,108.17],[479.19,108.16],[479.23,108.16],[479.25,108.16],[479.37,108.14],[479.38,108.14],[479.41,108.14],[479.43,108.14],[479.44,108.14],[479.44,108.14],[479.49,108.14],[479.51,108.14],[479.54,108.14],[479.66,108.14],[479.82,108.14],[479.83,108.14],[479.84,108.14],[479.84,108.14],[479.86,108.14],[479.89,108.14],[479.91,108.14],[479.93,108.14],[480,108.14],[480.06,108.14],[480.14,108.14],[480.16,108.14],[480.25,108.13],[480.25,108.13],[480.31,108.13],[480.31,108.13],[480.32,108.13],[480.33,108.14],[480.35,108.14],[480.41,108.14],[480.46,108.15],[480.48,108.15],[480.69,108.17],[480.7,108.17],[480.8,108.18],[480.92,108.19],[480.93,108.19],[480.96,108.19],[481,108.2],[481.02,108.2],[481.07,108.21],[481.14,108.21],[481.15,108.21],[481.16,108.21],[481.16,108.21],[481.17,108.21],[481.17,108.21],[481.17,108.21],[481.18,108.21],[481.19,108.21],[481.19,108.2],[481.2,108.2],[481.33,108.11],[481.43,108.05],[481.43,108.04],[481.5,108],[481.55,107.98],[481.58,107.96],[481.72,107.88],[481.79,107.85],[481.8,107.84],[481.81,107.84],[481.84,107.83],[481.88,107.81],[481.9,107.81],[481.98,107.78],[482.19,107.7],[482.22,107.68],[482.23,107.68],[482.31,107.65],[482.4,107.62],[482.57,107.56],[482.66,107.53],[482.67,107.53],[482.84,107.47],[482.99,107.43],[482.99,107.43],[482.99,107.43],[483.01,107.42],[483.07,107.4],[483.08,107.4],[483.09,107.39],[483.1,107.39],[483.12,107.38],[483.16,107.37],[483.16,107.37],[483.17,107.37],[483.17,107.37],[483.17,107.37],[483.21,107.35],[483.39,107.3],[483.55,107.27],[483.58,107.27],[483.92,107.22],[483.92,107.22],[484.05,107.2],[484.05,107.2],[484.07,107.2],[484.11,107.2],[484.12,107.19],[484.13,107.19],[484.24,107.17],[484.25,107.17],[484.27,107.17],[484.4,107.14],[484.42,107.14],[484.44,107.13],[484.49,107.12],[484.49,107.12],[484.52,107.12],[484.56,107.11],[484.56,107.11],[484.61,107.1],[484.76,107.07],[484.76,107.07],[484.76,107.07],[484.76,107.07],[484.83,107.06],[484.84,107.06],[484.84,107.06],[484.87,107.05],[484.9,107.05],[484.98,107.03],[485.02,107.03],[485.05,107.02],[485.07,107.02],[485.18,107],[485.2,106.99],[485.34,106.97],[485.49,106.94],[485.68,106.91],[485.72,106.9],[485.74,106.9],[485.77,106.89],[485.78,106.89],[485.84,106.88],[485.87,106.88],[485.94,106.86],[486.07,106.84],[486.15,106.83],[486.15,106.83],[486.21,106.81],[486.25,106.81],[486.26,106.8],[486.26,106.8],[486.29,106.8],[486.31,106.79],[486.38,106.78],[486.47,106.76],[486.48,106.76],[486.49,106.76],[486.51,106.75],[486.51,106.75],[486.51,106.75],[486.51,106.75],[486.51,106.75],[486.52,106.75],[486.52,106.76],[486.52,106.76],[486.52,106.76],[486.52,106.77],[486.53,106.77],[486.53,106.79],[486.54,106.82],[486.54,106.82],[486.54,106.82],[486.54,106.82],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.54,106.83],[486.53,106.83],[486.53,106.84],[486.52,106.84],[486.52,106.85],[486.52,106.85],[486.51,106.85],[486.51,106.85],[486.51,106.85],[486.51,106.87],[486.5,106.93],[486.49,106.98],[486.49,106.99],[486.49,107.02],[486.48,107.04],[486.48,107.06],[486.48,107.07],[486.47,107.08],[486.47,107.09],[486.47,107.09],[486.47,107.11],[486.47,107.13],[486.47,107.13],[486.47,107.13],[486.46,107.14],[486.44,107.2],[486.42,107.25],[486.41,107.27],[486.4,107.28],[486.4,107.29],[486.4,107.29],[486.4,107.29],[486.4,107.29],[486.4,107.29],[486.4,107.29],[486.4,107.29],[486.4,107.3],[486.4,107.3],[486.4,107.3],[486.4,107.3],[486.4,107.3],[486.4,107.3],[486.4,107.3],[486.4,107.3],[486.41,107.32],[486.41,107.34],[486.41,107.34],[486.43,107.38],[486.43,107.38],[486.43,107.38],[486.43,107.39],[486.43,107.39],[486.43,107.39],[486.43,107.39],[486.43,107.39],[486.43,107.39],[486.43,107.39],[486.43,107.39],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.43,107.4],[486.42,107.42],[486.41,107.43],[486.4,107.44],[486.4,107.44],[486.4,107.44],[486.4,107.45],[486.39,107.45],[486.39,107.45],[486.39,107.45],[486.38,107.47],[486.38,107.48],[486.37,107.48],[486.37,107.49],[486.37,107.49],[486.37,107.49],[486.37,107.49],[486.37,107.49],[486.37,107.49],[486.37,107.5],[486.37,107.5],[486.37,107.5],[486.37,107.5],[486.37,107.5],[486.37,107.51],[486.37,107.51],[486.37,107.51],[486.37,107.51],[486.37,107.52],[486.37,107.52],[486.37,107.52],[486.37,107.52],[486.37,107.52],[486.37,107.53],[486.37,107.53],[486.37,107.53],[486.37,107.53],[486.37,107.53],[486.38,107.53],[486.38,107.54],[486.39,107.55],[486.4,107.56],[486.41,107.58],[486.42,107.58],[486.42,107.58],[486.43,107.59],[486.44,107.6],[486.45,107.61],[486.45,107.61],[486.46,107.62],[486.46,107.63],[486.48,107.64],[486.48,107.65],[486.52,107.69],[486.71,107.89],[486.79,107.98],[486.82,108],[486.86,108.03],[486.88,108.05],[487,108.13],[487.17,108.27],[487.17,108.27],[487.29,108.35],[487.3,108.37],[487.35,108.41],[487.35,108.41],[487.5,108.55],[487.56,108.61],[487.58,108.63],[487.59,108.64],[487.6,108.65],[487.61,108.67],[487.62,108.69],[487.63,108.7],[487.64,108.71],[487.64,108.71],[487.65,108.72],[487.66,108.73],[487.66,108.73],[487.67,108.73],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.84,108.81],[487.85,108.81],[487.85,108.81],[487.91,108.84],[487.93,108.85],[488.12,108.86],[488.2,108.87],[488.46,108.89],[488.47,108.89],[488.47,108.89],[488.55,108.93],[488.56,108.93],[488.59,108.95],[488.68,108.99],[488.74,109.03],[488.76,109.04],[488.8,109.05],[488.81,109.05],[488.81,109.05],[488.82,109.06],[488.85,109.07],[488.86,109.07],[488.86,109.07],[488.87,109.08],[488.88,109.09],[488.89,109.09],[488.92,109.14],[488.92,109.15],[488.95,109.19],[489,109.24],[489.01,109.26],[489.03,109.29],[489.05,109.31],[489.06,109.32],[489.06,109.32],[489.12,109.38],[489.13,109.39],[489.14,109.41],[489.16,109.43],[489.17,109.43],[489.18,109.44],[489.18,109.44],[489.2,109.45],[489.21,109.45],[489.23,109.45],[489.23,109.45],[489.29,109.45],[489.38,109.46],[489.39,109.46],[489.4,109.46],[489.44,109.46],[489.45,109.46],[489.46,109.46],[489.46,109.46],[489.5,109.46],[489.5,109.46],[489.59,109.47],[489.65,109.47],[489.66,109.47],[489.7,109.47],[489.74,109.47],[489.76,109.48],[489.77,109.48],[489.78,109.48],[489.8,109.48],[489.8,109.48],[489.81,109.48],[489.81,109.48],[489.82,109.48],[489.84,109.48],[489.86,109.47],[489.87,109.47],[489.87,109.47],[489.88,109.47],[489.88,109.47],[489.88,109.47],[489.89,109.48],[489.9,109.48],[489.9,109.48],[489.91,109.48],[489.91,109.48],[489.92,109.48],[489.93,109.48],[489.94,109.48],[489.97,109.48],[490.03,109.48],[490.05,109.48],[490.09,109.48],[490.14,109.48],[490.16,109.48],[490.16,109.48],[490.2,109.48],[490.28,109.48],[490.32,109.48],[490.38,109.47],[490.46,109.47],[490.5,109.47],[490.52,109.47],[490.53,109.47],[490.55,109.47],[490.57,109.47],[490.6,109.47],[490.6,109.47],[490.66,109.46],[490.7,109.46],[490.71,109.46],[490.74,109.45],[490.75,109.45],[490.78,109.45],[490.78,109.45],[490.79,109.45],[490.83,109.45],[490.84,109.45],[490.85,109.45],[490.85,109.45],[490.93,109.43],[490.94,109.43],[490.97,109.42],[491.04,109.41],[491.05,109.41],[491.06,109.4],[491.08,109.4],[491.08,109.4],[491.1,109.4],[491.13,109.39],[491.13,109.39],[491.13,109.39],[491.16,109.39],[491.19,109.38],[491.27,109.36],[491.27,109.36],[491.28,109.36],[491.29,109.36],[491.29,109.36],[491.29,109.36],[491.3,109.36],[491.3,109.36],[491.33,109.36],[491.34,109.36],[491.35,109.36],[491.36,109.36],[491.36,109.36],[491.39,109.36],[491.51,109.31],[491.59,109.28],[491.63,109.26],[491.64,109.26],[491.64,109.26],[491.66,109.25],[491.91,109.14],[491.98,109.11],[492,109.11],[492.01,109.11],[492.01,109.1],[492.02,109.1],[492.03,109.1],[492.04,109.11],[492.05,109.11],[492.08,109.12],[492.09,109.13],[492.1,109.14],[492.12,109.14],[492.14,109.16],[492.17,109.17],[492.18,109.17],[492.18,109.17],[492.2,109.17],[492.43,109.13],[492.53,109.12],[492.56,109.11],[492.67,109.1],[492.7,109.09],[492.82,109.08],[492.87,109.07],[492.95,109.06],[492.99,109.05],[493,109.05],[493,109.05],[493.02,109.05],[493.12,109.03],[493.13,109.03],[493.14,109.03],[493.15,109.03],[493.17,109.02],[493.18,109.01],[493.19,109.01],[493.19,109],[493.21,108.99],[493.24,108.96],[493.25,108.96],[493.25,108.96],[493.26,108.95],[493.27,108.93],[493.28,108.92],[493.28,108.92],[493.28,108.92],[493.32,108.89],[493.32,108.89],[493.33,108.88],[493.34,108.88],[493.34,108.88],[493.36,108.86],[493.42,108.84],[493.44,108.83],[493.46,108.8],[493.47,108.79],[493.48,108.75],[493.49,108.72],[493.49,108.72],[493.49,108.72],[493.49,108.71],[493.5,108.7],[493.5,108.7],[493.5,108.7],[493.5,108.7],[493.51,108.69],[493.51,108.69],[493.53,108.67],[493.54,108.66],[493.55,108.66],[493.55,108.65],[493.56,108.65],[493.56,108.64],[493.57,108.64],[493.57,108.64],[493.57,108.63],[493.58,108.63],[493.58,108.63],[493.58,108.63],[493.59,108.63],[493.62,108.64],[493.63,108.64],[493.64,108.64],[493.68,108.65],[493.69,108.65],[493.7,108.65],[493.7,108.65],[493.71,108.65],[493.73,108.65],[493.73,108.64],[493.74,108.64],[493.75,108.64],[493.76,108.64],[493.77,108.64],[493.77,108.64],[493.77,108.64],[493.77,108.64],[493.78,108.64],[493.79,108.63],[493.79,108.63],[493.79,108.64],[493.82,108.66],[493.82,108.66],[493.83,108.67],[493.86,108.7],[493.86,108.7],[493.87,108.72],[493.88,108.73],[493.9,108.76],[493.91,108.76],[493.91,108.76],[493.91,108.77],[493.94,108.79],[493.96,108.8],[493.99,108.82],[494,108.83],[494.01,108.84],[494.02,108.85],[494.02,108.86],[494.04,108.87],[494.04,108.88],[494.06,108.88],[494.12,108.91],[494.14,108.93],[494.15,108.93],[494.16,108.93],[494.16,108.94],[494.18,108.94],[494.19,108.94],[494.2,108.94],[494.21,108.94],[494.21,108.95],[494.23,108.96],[494.24,108.97],[494.25,108.97],[494.26,108.98],[494.32,109.03],[494.36,109.06],[494.38,109.08],[494.41,109.1],[494.41,109.1],[494.45,109.14],[494.46,109.15],[494.47,109.16],[494.48,109.16],[494.48,109.16],[494.49,109.18],[494.5,109.19],[494.5,109.19],[494.51,109.21],[494.51,109.21],[494.54,109.24],[494.54,109.25],[494.55,109.26],[494.56,109.27],[494.56,109.27],[494.64,109.35],[494.65,109.37],[494.66,109.37],[494.67,109.4],[494.67,109.4],[494.68,109.41],[494.68,109.41],[494.68,109.44],[494.7,109.51],[494.71,109.53],[494.77,109.7],[494.79,109.73],[494.79,109.74],[494.79,109.75],[494.79,109.75],[494.8,109.76],[494.8,109.76],[494.81,109.77],[494.82,109.77],[494.83,109.78],[494.84,109.79],[494.84,109.79],[494.84,109.8],[494.86,109.83],[494.87,109.84],[494.88,109.85],[494.88,109.86],[494.89,109.87],[494.94,109.94],[494.96,109.98],[494.98,110.01],[494.99,110.02],[495,110.03],[495.02,110.08],[495.02,110.09],[495.02,110.1],[495.05,110.13],[495.07,110.17],[495.08,110.18],[495.12,110.24],[495.18,110.3],[495.18,110.31],[495.22,110.36],[495.24,110.38],[495.25,110.39],[495.28,110.42],[495.3,110.44],[495.3,110.45],[495.3,110.45],[495.3,110.45],[495.3,110.45],[495.3,110.45],[495.29,110.45],[495.29,110.45],[495.29,110.45],[495.29,110.45],[495.28,110.45],[495.28,110.45],[495.28,110.45],[495.28,110.45],[495.28,110.44],[495.27,110.44],[495.27,110.44],[495.27,110.44],[495.28,110.44],[495.28,110.43],[495.28,110.43],[495.28,110.43],[495.28,110.43],[495.29,110.44],[495.3,110.44],[495.33,110.45],[495.38,110.47],[495.39,110.47],[495.48,110.5],[495.52,110.52],[495.56,110.53],[495.61,110.56],[495.72,110.62],[495.75,110.64],[495.78,110.65],[495.79,110.67],[495.81,110.68],[495.83,110.7],[495.86,110.73],[495.92,110.79],[495.94,110.81],[495.95,110.82],[495.96,110.83],[495.97,110.84],[495.97,110.86],[495.97,110.86],[495.98,110.87],[495.98,110.88],[495.99,110.9],[495.99,110.92],[495.99,110.94],[495.99,110.96],[495.98,110.98],[495.98,111],[495.97,111.01],[495.97,111.02],[495.97,111.03],[495.97,111.05],[495.98,111.06],[495.98,111.07],[495.98,111.08],[496,111.1],[496.02,111.14],[496.03,111.15],[496.04,111.17],[496.08,111.21],[496.09,111.22],[496.11,111.23],[496.11,111.23],[496.13,111.24],[496.13,111.24],[496.14,111.25],[496.15,111.25],[496.31,111.32],[496.33,111.33],[496.34,111.34],[496.37,111.35],[496.38,111.36],[496.39,111.36],[496.4,111.37],[496.44,111.38],[496.46,111.38],[496.48,111.39],[496.51,111.4],[496.52,111.41],[496.54,111.42],[496.58,111.45],[496.59,111.46],[496.6,111.47],[496.62,111.49],[496.65,111.5],[496.66,111.51],[496.67,111.52],[496.7,111.53],[496.73,111.54],[496.81,111.57],[496.82,111.57],[496.88,111.59],[496.89,111.6],[497.22,111.71],[497.24,111.72],[497.25,111.73],[497.27,111.74],[497.28,111.75],[497.29,111.77],[497.3,111.78],[497.3,111.79],[497.3,111.79],[497.31,111.82],[497.32,111.85],[497.33,111.87],[497.33,111.89],[497.33,111.9],[497.33,111.9],[497.33,111.91],[497.33,111.92],[497.33,111.92],[497.33,111.94],[497.33,111.98],[497.32,112],[497.32,112.02],[497.32,112.04],[497.3,112.1],[497.3,112.11],[497.3,112.11],[497.29,112.14],[497.29,112.16],[497.29,112.18],[497.29,112.2],[497.3,112.22],[497.3,112.24],[497.31,112.26],[497.32,112.3],[497.34,112.34],[497.35,112.36],[497.37,112.37],[497.38,112.39],[497.4,112.41],[497.41,112.43],[497.46,112.47],[497.47,112.49],[497.48,112.5],[497.5,112.53],[497.5,112.56],[497.51,112.57],[497.51,112.6],[497.52,112.62],[497.52,112.63],[497.53,112.65],[497.55,112.67],[497.55,112.68],[497.58,112.71],[497.64,112.76],[497.68,112.8],[497.86,112.97],[497.9,113.01],[497.91,113.02],[497.95,113.06],[497.98,113.09],[497.99,113.1],[498.01,113.12],[498.01,113.12],[498.01,113.12],[498.17,113.27],[498.23,113.33],[498.25,113.35],[498.34,113.44],[498.37,113.46],[498.38,113.47],[498.39,113.48],[498.39,113.49],[498.39,113.49],[498.4,113.5],[498.43,113.53],[498.47,113.57],[498.5,113.6],[498.53,113.63],[498.72,113.84],[498.75,113.87],[498.76,113.88],[498.76,113.88],[498.77,113.89],[498.81,113.93],[498.82,113.94],[498.84,113.96],[498.84,113.96],[498.95,114.06],[498.99,114.09],[499,114.1],[499.08,114.17],[499.08,114.18],[499.08,114.18],[499.16,114.24],[499.19,114.27],[499.21,114.29],[499.22,114.29],[499.22,114.29],[499.23,114.3],[499.29,114.36],[499.3,114.37],[499.31,114.38],[499.4,114.46],[499.44,114.49],[499.64,114.68],[499.65,114.68],[499.67,114.7],[499.78,114.79],[499.87,114.88],[499.87,114.88],[499.94,114.94],[499.96,114.96],[499.97,114.97],[500.01,115],[500.01,115],[500.01,115],[500.05,115.04],[500.06,115.04],[500.09,115.07],[500.11,115.09],[500.11,115.09],[500.11,115.09],[500.17,115.15],[500.18,115.15],[500.19,115.17],[500.21,115.18],[500.21,115.18],[500.25,115.22],[500.26,115.22],[500.27,115.24],[500.3,115.26],[500.3,115.26],[500.36,115.31],[500.36,115.31],[500.4,115.35],[500.44,115.38],[500.44,115.39],[500.48,115.42],[500.48,115.42],[500.49,115.43],[500.49,115.43],[500.51,115.45],[500.52,115.45],[500.52,115.46],[500.52,115.46],[500.53,115.47],[500.54,115.48],[500.6,115.53],[500.74,115.65],[500.79,115.7],[500.79,115.7],[500.84,115.74],[501.05,115.93],[501.07,115.95],[501.08,115.96],[501.1,115.97],[501.17,116.01],[501.21,116.03],[501.21,116.04],[501.22,116.04],[501.25,116.06],[501.27,116.07],[501.27,116.07],[501.3,116.09],[501.32,116.1],[501.36,116.13],[501.37,116.13],[501.37,116.14],[501.39,116.15],[501.4,116.15],[501.41,116.15],[501.44,116.18],[501.46,116.19],[501.51,116.22],[501.52,116.22],[501.52,116.23],[501.53,116.23],[501.55,116.24],[501.55,116.24],[501.56,116.25],[501.57,116.25],[501.59,116.26],[501.61,116.28],[501.61,116.28],[501.62,116.29],[501.63,116.29],[501.65,116.3],[501.68,116.32],[501.68,116.32],[501.71,116.33],[501.72,116.34],[501.73,116.34],[501.74,116.35],[501.75,116.36],[501.75,116.36],[501.75,116.36],[501.83,116.4],[501.84,116.4],[501.85,116.41],[501.87,116.42],[501.87,116.42],[501.88,116.42],[501.88,116.42],[501.88,116.43],[501.89,116.43],[501.9,116.44],[501.9,116.44],[501.91,116.44],[501.92,116.44],[501.93,116.44],[501.94,116.44],[501.94,116.44],[501.95,116.44],[501.96,116.44],[501.97,116.44],[501.97,116.44],[501.97,116.44],[501.98,116.44],[501.99,116.44],[502,116.44],[502.02,116.44],[502.04,116.44],[502.04,116.44],[502.04,116.44],[502.05,116.44],[502.05,116.44],[502.06,116.43],[502.06,116.43],[502.06,116.43],[502.07,116.42],[502.08,116.42],[502.08,116.42],[502.08,116.42],[502.09,116.43],[502.09,116.43],[502.09,116.43],[502.09,116.43],[502.09,116.43],[502.1,116.44],[502.1,116.44],[502.1,116.44],[502.1,116.44],[502.11,116.45],[502.12,116.46],[502.13,116.47],[502.14,116.48],[502.14,116.48],[502.14,116.49],[502.15,116.49],[502.15,116.49],[502.15,116.49],[502.15,116.49],[502.16,116.5],[502.16,116.5],[502.17,116.51],[502.17,116.51],[502.17,116.51],[502.17,116.51],[502.17,116.51],[502.17,116.51],[502.17,116.52],[502.17,116.52],[502.17,116.52],[502.17,116.53],[502.18,116.54],[502.18,116.54],[502.18,116.55],[502.18,116.55],[502.18,116.56],[502.19,116.58],[502.19,116.59],[502.19,116.59],[502.19,116.61],[502.2,116.63],[502.2,116.64],[502.21,116.66],[502.21,116.66],[502.21,116.69],[502.22,116.69],[502.22,116.71],[502.22,116.72],[502.23,116.73],[502.23,116.75],[502.24,116.78],[502.25,116.81],[502.25,116.81],[502.25,116.82],[502.25,116.83],[502.25,116.83],[502.25,116.83],[502.25,116.84],[502.25,116.84],[502.26,116.85],[502.26,116.87],[502.26,116.87],[502.27,116.88],[502.27,116.88],[502.27,116.89],[502.27,116.89],[502.27,116.89],[502.27,116.89],[502.28,116.9],[502.28,116.9],[502.28,116.9],[502.28,116.9],[502.29,116.91],[502.3,116.91],[502.31,116.92],[502.32,116.92],[502.32,116.93],[502.36,116.95],[502.38,116.96],[502.38,116.96],[502.39,116.96],[502.4,116.97],[502.4,116.98],[502.41,116.98],[502.42,116.99],[502.45,117.02],[502.46,117.03],[502.47,117.04],[502.51,117.08],[502.52,117.09],[502.53,117.1],[502.53,117.1],[502.53,117.1],[502.54,117.11],[502.54,117.11],[502.54,117.12],[502.55,117.13],[502.56,117.15],[502.56,117.15],[502.56,117.15],[502.57,117.16],[502.57,117.16],[502.57,117.17],[502.57,117.17],[502.58,117.17],[502.58,117.18],[502.58,117.18],[502.58,117.19],[502.59,117.2],[502.59,117.2],[502.59,117.21],[502.6,117.21],[502.6,117.22],[502.6,117.22],[502.61,117.23],[502.61,117.23],[502.61,117.24],[502.62,117.25],[502.62,117.26],[502.63,117.26],[502.63,117.26],[502.63,117.27],[502.63,117.27],[502.63,117.27],[502.63,117.27],[502.63,117.27],[502.63,117.28],[502.64,117.28],[502.64,117.28],[502.64,117.28],[502.64,117.28],[502.64,117.28],[502.64,117.28],[502.65,117.29],[502.66,117.29],[502.67,117.3],[502.68,117.31],[502.69,117.31],[502.7,117.32],[502.71,117.33],[502.71,117.33],[502.72,117.33],[502.72,117.33],[502.72,117.34],[502.72,117.34],[502.73,117.34],[502.74,117.35],[502.75,117.36],[502.75,117.36],[502.76,117.36],[502.76,117.37],[502.77,117.37],[502.77,117.37],[502.78,117.38],[502.78,117.38],[502.79,117.39],[502.79,117.39],[502.8,117.4],[502.81,117.41],[502.81,117.41],[502.82,117.42],[502.83,117.43],[502.84,117.44],[502.84,117.44],[502.85,117.45],[502.85,117.45],[502.85,117.46],[502.86,117.46],[502.86,117.46],[502.86,117.47],[502.86,117.47],[502.87,117.47],[502.87,117.48],[502.88,117.48],[502.88,117.49],[502.88,117.49],[502.89,117.5],[502.89,117.51],[502.9,117.51],[502.9,117.52],[502.91,117.52],[502.91,117.53],[502.92,117.53],[502.92,117.54],[502.93,117.55],[502.93,117.55],[502.94,117.56],[502.94,117.56],[502.94,117.56],[502.94,117.57],[502.94,117.57],[502.95,117.57],[502.95,117.58],[502.96,117.58],[502.96,117.59],[502.96,117.59],[502.96,117.59],[502.96,117.59],[502.97,117.6],[502.97,117.6],[502.98,117.61],[502.98,117.61],[502.99,117.62],[503,117.62],[503,117.63],[503.01,117.63],[503.01,117.63],[503.01,117.63],[503.02,117.64],[503.03,117.64],[503.04,117.64],[503.05,117.64],[503.06,117.65],[503.07,117.65],[503.07,117.65],[503.08,117.65],[503.08,117.65],[503.09,117.65],[503.1,117.65],[503.11,117.65],[503.12,117.66],[503.12,117.66],[503.12,117.66],[503.14,117.66],[503.15,117.66],[503.16,117.66],[503.17,117.66],[503.18,117.66],[503.18,117.66],[503.19,117.67],[503.2,117.67],[503.21,117.67],[503.22,117.67],[503.23,117.67],[503.24,117.67],[503.24,117.67],[503.25,117.68],[503.25,117.68],[503.26,117.68],[503.26,117.68],[503.27,117.68],[503.27,117.68],[503.28,117.68],[503.28,117.69],[503.28,117.69],[503.29,117.69],[503.29,117.69],[503.3,117.7],[503.3,117.7],[503.3,117.71],[503.31,117.71],[503.31,117.72],[503.31,117.72],[503.31,117.73],[503.32,117.73],[503.32,117.73],[503.32,117.76],[503.32,117.76],[503.33,117.77],[503.33,117.78],[503.34,117.79],[503.34,117.81],[503.35,117.82],[503.35,117.82],[503.36,117.83],[503.37,117.84],[503.38,117.85],[503.39,117.85],[503.4,117.86],[503.4,117.87],[503.41,117.87],[503.46,117.9],[503.47,117.9],[503.48,117.91],[503.49,117.92],[503.52,117.93],[503.56,117.96],[503.57,117.96],[503.58,117.97],[503.59,117.97],[503.59,117.98],[503.6,117.98],[503.61,117.98],[503.61,117.98],[503.62,117.98],[503.64,117.98],[503.64,117.98],[503.66,117.98],[503.67,117.99],[503.67,117.99],[503.68,117.99],[503.68,117.99],[503.69,117.99],[503.69,118],[503.7,118],[503.7,118],[503.7,118.01],[503.71,118.01],[503.71,118.02],[503.71,118.02],[503.72,118.03],[503.72,118.03],[503.72,118.04],[503.72,118.05],[503.72,118.07],[503.73,118.07],[503.73,118.08],[503.73,118.09],[503.73,118.1],[503.73,118.11],[503.74,118.13],[503.75,118.18],[503.75,118.19],[503.76,118.2],[503.76,118.2],[503.76,118.21],[503.76,118.21],[503.76,118.22],[503.76,118.22],[503.77,118.23],[503.77,118.24],[503.78,118.25],[503.78,118.26],[503.79,118.26],[503.79,118.27],[503.79,118.28],[503.8,118.28],[503.81,118.29],[503.82,118.31],[503.84,118.32],[503.85,118.33],[503.85,118.34],[503.86,118.35],[503.86,118.36],[503.87,118.36],[503.87,118.37],[503.87,118.38],[503.88,118.38],[503.88,118.39],[503.88,118.39],[503.88,118.4],[503.88,118.4],[503.88,118.4],[503.89,118.41],[503.89,118.41],[503.89,118.41],[503.89,118.42],[503.9,118.43],[503.9,118.44],[503.91,118.46],[503.91,118.46],[503.92,118.47],[503.92,118.48],[503.92,118.49],[503.93,118.49],[503.93,118.5],[503.94,118.5],[503.95,118.52],[503.97,118.54],[503.99,118.56],[504,118.58],[504.01,118.59],[504.02,118.6],[504.03,118.61],[504.04,118.62],[504.05,118.63],[504.06,118.65],[504.08,118.67],[504.1,118.68],[504.11,118.7],[504.13,118.72],[504.13,118.73],[504.14,118.73],[504.14,118.74],[504.14,118.74],[504.15,118.75],[504.15,118.75],[504.15,118.76],[504.16,118.77],[504.16,118.78],[504.16,118.79],[504.17,118.8],[504.17,118.8],[504.17,118.81],[504.17,118.81],[504.17,118.82],[504.17,118.83],[504.17,118.83],[504.17,118.84],[504.17,118.85],[504.17,118.87],[504.17,118.87],[504.17,118.88],[504.17,118.89],[504.17,118.9],[504.17,118.9],[504.16,118.92],[504.16,118.93],[504.16,118.94],[504.16,118.95],[504.16,118.96],[504.16,118.97],[504.16,118.98],[504.16,118.99],[504.16,119],[504.16,119.01],[504.16,119.01],[504.16,119.02],[504.16,119.03],[504.16,119.04],[504.17,119.05],[504.17,119.06],[504.17,119.07],[504.18,119.09],[504.19,119.1],[504.2,119.11],[504.2,119.12],[504.22,119.14],[504.23,119.15],[504.25,119.18],[504.26,119.2],[504.29,119.23],[504.29,119.24],[504.3,119.24],[504.31,119.25],[504.32,119.26],[504.32,119.27],[504.33,119.27],[504.33,119.28],[504.34,119.29],[504.36,119.3],[504.37,119.31],[504.37,119.32],[504.38,119.32],[504.38,119.33],[504.43,119.37],[504.43,119.37],[504.43,119.38],[504.43,119.38],[504.44,119.38],[504.44,119.38],[504.44,119.39],[504.44,119.39],[504.45,119.39],[504.46,119.4],[504.49,119.43],[504.52,119.46],[504.53,119.47],[504.53,119.47],[504.53,119.48],[504.54,119.48],[504.54,119.48],[504.54,119.48],[504.54,119.49],[504.56,119.5],[504.56,119.5],[504.69,119.63],[504.7,119.63],[504.7,119.64],[504.71,119.64],[504.72,119.65],[504.72,119.65],[504.73,119.65],[504.73,119.65],[504.74,119.66],[504.75,119.66],[504.76,119.66],[504.77,119.66],[504.78,119.66],[504.79,119.66],[504.8,119.66],[504.82,119.66],[504.84,119.66],[504.84,119.66],[504.85,119.67],[504.85,119.67],[504.85,119.67],[504.86,119.67],[504.86,119.67],[504.86,119.67],[504.87,119.68],[504.88,119.68],[504.89,119.69],[504.92,119.72],[504.92,119.72],[504.92,119.73],[504.94,119.74],[504.94,119.74],[504.94,119.74],[504.95,119.74],[504.95,119.75],[504.95,119.75],[504.95,119.75],[504.96,119.75],[504.96,119.75],[504.97,119.76],[504.97,119.76],[504.97,119.76],[504.98,119.76],[504.98,119.76],[504.99,119.76],[505,119.76],[505.04,119.77],[505.06,119.78],[505.07,119.78],[505.08,119.78],[505.13,119.79],[505.15,119.79],[505.18,119.8],[505.18,119.8],[505.19,119.8],[505.2,119.8],[505.23,119.8],[505.24,119.8],[505.25,119.8],[505.26,119.79],[505.3,119.78],[505.32,119.78],[505.33,119.77],[505.34,119.77],[505.34,119.77],[505.35,119.77],[505.36,119.77],[505.37,119.77],[505.38,119.77],[505.45,119.77],[505.49,119.77],[505.5,119.77],[505.51,119.77],[505.53,119.77],[505.55,119.78],[505.56,119.78],[505.56,119.78],[505.57,119.78],[505.58,119.78],[505.58,119.78],[505.59,119.78],[505.61,119.79],[505.62,119.79],[505.63,119.79],[505.64,119.79],[505.65,119.8],[505.66,119.8],[505.66,119.8],[505.68,119.8],[505.72,119.8],[505.75,119.8],[505.75,119.8],[505.76,119.8],[505.85,119.78],[506.05,119.74],[506.12,119.72],[506.19,119.71],[506.24,119.7],[506.31,119.68],[506.47,119.65],[506.47,119.65],[506.48,119.64],[506.48,119.64],[506.5,119.64],[506.51,119.64],[506.52,119.64],[506.53,119.64],[506.54,119.65],[506.57,119.65],[506.6,119.66],[506.63,119.66],[506.67,119.67],[506.68,119.67],[506.71,119.68],[506.75,119.68],[506.87,119.71],[506.97,119.73],[506.99,119.73],[507,119.73],[507.01,119.73],[507.02,119.73],[507.03,119.73],[507.1,119.71],[507.12,119.71],[507.21,119.68],[507.25,119.67],[507.28,119.66],[507.3,119.66],[507.31,119.66],[507.32,119.66],[507.44,119.67],[507.45,119.67],[507.49,119.68],[507.51,119.69],[507.52,119.69],[507.55,119.7],[507.57,119.7],[507.58,119.7],[507.58,119.71],[507.62,119.71],[507.66,119.71],[507.72,119.72],[507.72,119.72],[507.76,119.72],[507.79,119.73],[507.79,119.73],[507.79,119.73],[507.8,119.74],[507.81,119.74],[507.84,119.75],[507.85,119.75],[507.85,119.75],[507.86,119.75],[507.86,119.75],[507.86,119.76],[507.87,119.76],[507.87,119.76],[507.88,119.76],[507.88,119.77],[507.89,119.77],[507.89,119.77],[507.89,119.77],[507.9,119.77],[507.9,119.77],[507.91,119.77],[507.92,119.77],[507.93,119.77],[507.94,119.78],[507.94,119.78],[507.95,119.78],[507.96,119.78],[507.96,119.78],[507.96,119.78],[508.03,119.79],[508.1,119.81],[508.16,119.82],[508.21,119.83],[508.22,119.84],[508.23,119.84],[508.24,119.84],[508.24,119.84],[508.25,119.85],[508.26,119.85],[508.27,119.86],[508.28,119.87],[508.29,119.87],[508.29,119.88],[508.29,119.88],[508.31,119.89],[508.32,119.91],[508.33,119.91],[508.33,119.92],[508.33,119.92],[508.33,119.92],[508.35,119.94],[508.36,119.95],[508.39,119.98],[508.47,120.07],[508.51,120.11],[508.6,120.21],[508.6,120.21],[508.64,120.28],[508.67,120.32],[508.68,120.33],[508.68,120.33],[508.69,120.34],[508.69,120.35],[508.71,120.37],[508.73,120.39],[508.75,120.41],[508.77,120.44],[508.77,120.44],[508.78,120.45],[508.79,120.45],[508.79,120.46],[508.8,120.46],[508.81,120.46],[508.82,120.46],[508.86,120.47],[508.91,120.48],[509.02,120.5],[509.06,120.51],[509.07,120.51],[509.1,120.51],[509.13,120.52],[509.14,120.52],[509.14,120.52],[509.14,120.52],[509.15,120.52],[509.22,120.52],[509.24,120.51],[509.25,120.51],[509.26,120.51],[509.3,120.51],[509.35,120.51],[509.41,120.51],[509.42,120.51],[509.42,120.51],[509.43,120.51],[509.43,120.51],[509.44,120.51],[509.45,120.51],[509.45,120.51],[509.47,120.52],[509.52,120.53],[509.52,120.53],[509.55,120.54],[509.59,120.56],[509.59,120.56],[509.6,120.56],[509.61,120.57],[509.62,120.57],[509.62,120.58],[509.63,120.59],[509.63,120.6],[509.65,120.65],[509.66,120.68],[509.67,120.71],[509.69,120.76],[509.69,120.77],[509.69,120.78],[509.7,120.79],[509.7,120.79],[509.71,120.8],[509.71,120.8],[509.72,120.81],[509.74,120.84],[509.77,120.87],[509.82,120.93],[509.85,120.96],[509.86,120.98],[509.86,120.98],[509.87,120.98],[509.87,120.99],[509.87,120.99],[509.88,121],[509.89,121],[509.9,121],[509.91,121.01],[509.91,121.01],[509.92,121.01],[509.93,121.01],[509.93,121.01],[509.93,121.01],[509.94,121.01],[509.95,121.02],[509.96,121.03],[510,121.06],[510.01,121.07],[510.02,121.08],[510.03,121.08],[510.04,121.09],[510.07,121.1],[510.09,121.11],[510.1,121.11],[510.1,121.11],[510.14,121.12],[510.17,121.13],[510.2,121.14],[510.29,121.18],[510.35,121.2],[510.35,121.2],[510.36,121.2],[510.37,121.21],[510.47,121.23],[510.47,121.23],[510.48,121.23],[510.49,121.23],[510.5,121.24],[510.51,121.24],[510.56,121.28],[510.6,121.3],[510.73,121.35],[510.78,121.36],[510.83,121.38],[510.87,121.4],[511.07,121.48],[511.13,121.51],[511.2,121.55],[511.43,121.68],[511.44,121.69],[511.61,121.74],[511.63,121.75],[511.68,121.78],[511.75,121.82],[511.99,121.98],[512.4,122.16],[512.63,122.26],[512.72,122.3],[512.74,122.31],[512.76,122.32],[512.77,122.32],[512.79,122.32],[512.88,122.34],[512.96,122.35],[512.98,122.35],[513,122.35],[513.01,122.26],[513.03,122.17],[513.04,122.13],[513.05,122.1],[513.08,122.07],[513.11,122.04],[513.14,122.02],[513.17,122.01],[513.2,122],[513.21,122],[513.22,122],[513.27,121.99],[513.28,121.99],[513.29,121.99],[513.32,121.99],[513.33,121.99],[513.35,121.99],[513.36,121.99],[513.37,122],[513.38,122],[513.4,122.02],[513.43,122.05],[513.46,122.08],[513.5,122.11],[513.52,122.12],[513.54,122.14],[513.57,122.15],[513.58,122.16],[513.6,122.16],[513.66,122.18],[513.72,122.19],[513.9,122.22],[514.07,122.21],[514.2,122.21],[514.22,122.21],[514.24,122.21],[514.26,122.2],[514.28,122.2],[514.31,122.18],[514.33,122.16],[514.34,122.16],[514.34,122.17],[514.34,122.16],[514.35,122.15],[514.35,122.15],[514.4,122.09],[514.41,122.08],[514.42,122.07],[514.44,122.04],[514.47,122],[514.48,121.98],[514.49,121.97],[514.5,121.97],[514.54,121.95],[514.63,121.87],[514.72,121.7],[514.76,121.63],[514.8,121.6],[514.83,121.6],[514.85,121.6],[514.88,121.6],[514.93,121.57],[515,121.55],[515.2,121.51],[515.25,121.49],[515.37,121.44],[515.39,121.43],[515.43,121.41],[515.47,121.4],[515.48,121.4],[515.49,121.39],[515.52,121.39],[515.56,121.38],[515.57,121.38],[515.61,121.37],[515.63,121.37],[515.73,121.37],[515.81,121.39],[515.88,121.39],[515.98,121.36],[516.03,121.36],[516.06,121.36],[516.09,121.36],[516.14,121.38],[516.16,121.39],[516.17,121.39],[516.18,121.4],[516.19,121.4],[516.2,121.4],[516.22,121.39],[516.4,121.33],[516.57,121.28],[516.61,121.26],[516.78,121.2],[516.81,121.18],[516.84,121.17],[516.96,121.15],[516.97,121.15],[516.97,121.14],[517.03,121.09],[517.05,121.09],[517.06,121.08],[517.07,121.08],[517.08,121.07],[517.08,121.07],[517.1,121.05],[517.11,121.04],[517.12,121.03],[517.17,120.99],[517.18,120.99],[517.19,120.98],[517.21,120.98],[517.46,120.89],[517.49,120.88],[517.51,120.87],[517.52,120.87],[517.54,120.88],[517.55,120.89],[517.6,120.92],[517.7,121],[517.72,121.01],[517.73,121.01],[517.74,121.02],[517.86,121.04],[517.88,121.04],[517.9,121.04],[517.92,121.04],[517.94,121.03],[518.02,121],[518.05,120.98],[518.21,120.92],[518.22,120.91],[518.23,120.91],[518.24,120.91],[518.29,120.91],[518.34,120.9],[518.34,120.9],[518.4,120.9],[518.58,120.89],[518.59,120.89],[518.6,120.89],[518.62,120.89],[518.63,120.89],[518.63,120.89],[518.64,120.9],[518.65,120.91],[518.67,120.93],[518.7,120.99],[518.71,121],[518.72,121.01],[518.73,121.02],[518.73,121.03],[518.74,121.04],[518.76,121.11],[518.78,121.2],[518.78,121.21],[518.8,121.24],[518.81,121.26],[518.82,121.27],[518.82,121.27],[518.82,121.28],[518.83,121.28],[518.83,121.29],[518.83,121.3],[518.84,121.3],[518.85,121.33],[518.85,121.33],[518.85,121.34],[518.85,121.34],[518.85,121.35],[518.86,121.37],[518.86,121.37],[518.86,121.38],[518.86,121.38],[518.87,121.39],[518.87,121.4],[518.88,121.41],[518.88,121.41],[518.88,121.41],[518.88,121.42],[518.88,121.42],[518.88,121.42],[518.9,121.44],[518.91,121.45],[518.92,121.45],[518.92,121.45],[518.93,121.46],[518.94,121.47],[518.95,121.47],[518.97,121.48],[518.99,121.49],[519,121.5],[519.01,121.5],[519.01,121.51],[519.02,121.51],[519.02,121.51],[519.07,121.53],[519.09,121.54],[519.16,121.58],[519.17,121.58],[519.17,121.58],[519.18,121.59],[519.2,121.59],[519.27,121.6],[519.29,121.61],[519.29,121.61],[519.3,121.61],[519.3,121.61],[519.3,121.62],[519.31,121.62],[519.32,121.62],[519.32,121.62],[519.32,121.63],[519.34,121.64],[519.34,121.65],[519.37,121.69],[519.37,121.69],[519.39,121.72],[519.42,121.78],[519.43,121.79],[519.44,121.8],[519.45,121.8],[519.46,121.8],[519.47,121.8],[519.49,121.81],[519.5,121.81],[519.51,121.81],[519.52,121.81],[519.52,121.82],[519.53,121.83],[519.53,121.83],[519.54,121.85],[519.55,121.86],[519.55,121.87],[519.56,121.88],[519.56,121.89],[519.57,121.9],[519.58,121.91],[519.59,121.92],[519.59,121.92],[519.59,121.92],[519.62,121.94],[519.63,121.95],[519.64,121.95],[519.66,121.96],[519.67,121.96],[519.68,121.97],[519.68,121.97],[519.69,121.97],[519.69,121.97],[519.7,121.97],[519.7,121.97],[519.7,121.97],[519.7,121.97],[519.71,121.97],[519.71,121.97],[519.71,121.97],[519.71,121.97],[519.71,121.97],[519.71,121.97],[519.72,121.97],[519.73,121.97],[519.74,121.96],[519.75,121.96],[519.76,121.95],[519.77,121.95],[519.79,121.94],[519.79,121.94],[519.8,121.94],[519.8,121.94],[519.8,121.94],[519.8,121.94],[519.81,121.94],[519.82,121.95],[519.83,121.96],[519.84,121.96],[519.85,121.97],[519.86,121.97],[519.87,121.98],[519.88,121.99],[519.89,121.99],[519.91,122],[519.92,122.01],[519.93,122.02],[519.95,122.03],[519.97,122.07],[520.01,122.11],[520.02,122.13],[520.04,122.18],[520.06,122.21],[520.07,122.24],[520.1,122.31],[520.1,122.31],[520.11,122.32],[520.11,122.32],[520.18,122.37],[520.19,122.38],[520.27,122.42],[520.28,122.43],[520.33,122.45],[520.33,122.45],[520.34,122.45],[520.38,122.47],[520.39,122.48],[520.41,122.48],[520.42,122.49],[520.42,122.49],[520.43,122.49],[520.45,122.53],[520.45,122.54],[520.45,122.54],[520.45,122.55],[520.47,122.59],[520.48,122.64],[520.48,122.65],[520.48,122.65],[520.49,122.66],[520.49,122.67],[520.5,122.68],[520.5,122.69],[520.52,122.75],[520.53,122.8],[520.54,122.83],[520.54,122.83],[520.55,122.84],[520.56,122.86],[520.56,122.87],[520.57,122.87],[520.57,122.87],[520.57,122.87],[520.58,122.87],[520.65,122.87],[520.67,122.87],[520.67,122.87],[520.68,122.88],[520.69,122.88],[520.73,122.9],[520.8,122.92],[520.82,122.93],[520.94,122.97],[521.06,123.02],[521.1,123.03],[521.13,123.05],[521.17,123.06],[521.26,123.1],[521.41,123.16],[521.42,123.16],[521.48,123.18],[521.58,123.22],[521.59,123.23],[521.6,123.23],[521.61,123.24],[521.63,123.26],[521.63,123.27],[521.65,123.27],[521.66,123.28],[521.68,123.29],[521.69,123.3],[521.71,123.31],[521.72,123.32],[521.77,123.36],[521.78,123.36],[521.86,123.38],[521.87,123.38],[521.88,123.39],[521.89,123.39],[521.89,123.4],[521.93,123.43],[521.94,123.45],[521.98,123.51],[522,123.55],[522.02,123.57],[522.06,123.62],[522.1,123.68],[522.11,123.7],[522.12,123.71],[522.14,123.78],[522.18,123.9],[522.2,123.93],[522.21,123.97],[522.22,124],[522.24,124.04],[522.24,124.05],[522.24,124.06],[522.24,124.08],[522.25,124.08],[522.25,124.1],[522.25,124.11],[522.28,124.16],[522.29,124.18],[522.29,124.19],[522.3,124.22],[522.31,124.24],[522.32,124.25],[522.35,124.31],[522.36,124.32],[522.37,124.35],[522.39,124.38],[522.43,124.45],[522.43,124.45],[522.44,124.46],[522.45,124.52],[522.48,124.62],[522.49,124.63],[522.49,124.64],[522.57,124.75],[522.58,124.77],[522.6,124.8],[522.68,124.91],[522.72,124.97],[522.73,124.99],[522.73,125],[522.74,125.03],[522.76,125.09],[522.76,125.13],[522.77,125.18],[522.77,125.21],[522.78,125.22],[522.78,125.26],[522.79,125.27],[522.8,125.29],[522.81,125.31],[522.85,125.35],[522.86,125.36],[522.86,125.37],[522.87,125.39],[522.89,125.41],[522.89,125.42],[522.9,125.45],[522.92,125.51],[522.94,125.56],[522.98,125.67],[522.99,125.69],[523,125.71],[523.01,125.73],[523.02,125.74],[523.05,125.76],[523.07,125.77],[523.09,125.78],[523.12,125.79],[523.14,125.79],[523.14,125.8],[523.16,125.81],[523.18,125.83],[523.22,125.87],[523.23,125.89],[523.3,125.95],[523.42,126.08],[523.44,126.11],[523.47,126.14],[523.48,126.15],[523.51,126.18],[523.51,126.18],[523.52,126.2],[523.55,126.22],[523.55,126.22],[523.56,126.23],[523.57,126.24],[523.57,126.24],[523.58,126.25],[523.58,126.26],[523.58,126.26],[523.58,126.27],[523.59,126.29],[523.59,126.32],[523.59,126.33],[523.59,126.34],[523.6,126.36],[523.6,126.37],[523.61,126.38],[523.64,126.43],[523.67,126.47],[523.68,126.48],[523.68,126.49],[523.69,126.5],[523.7,126.5],[523.73,126.53],[523.77,126.56],[523.78,126.57],[523.79,126.57],[523.81,126.6],[523.84,126.63],[523.85,126.64],[523.9,126.7],[523.91,126.7],[523.95,126.75],[523.96,126.77],[523.97,126.77],[523.98,126.78],[524,126.8],[524.01,126.8],[524.01,126.81],[524.06,126.85],[524.07,126.86],[524.08,126.87],[524.08,126.87],[524.09,126.88],[524.1,126.88],[524.11,126.89],[524.12,126.89],[524.13,126.89],[524.13,126.89],[524.15,126.89],[524.28,126.9],[524.36,126.9],[524.37,126.9],[524.4,126.9],[524.41,126.91],[524.42,126.91],[524.43,126.91],[524.44,126.91],[524.45,126.92],[524.46,126.92],[524.48,126.93],[524.48,126.93],[524.49,126.94],[524.49,126.94],[524.49,126.94],[524.5,126.95],[524.51,126.95],[524.53,126.96],[524.54,126.97],[524.55,126.97],[524.56,126.98],[524.56,126.98],[524.58,126.99],[524.61,127.01],[524.63,127.02],[524.67,127.05],[524.7,127.08],[524.71,127.09],[524.71,127.09],[524.72,127.1],[524.73,127.1],[524.74,127.12],[524.74,127.12],[524.75,127.13],[524.81,127.23],[524.84,127.28],[524.87,127.32],[524.87,127.33],[524.88,127.34],[524.88,127.34],[524.88,127.35],[524.89,127.35],[524.9,127.36],[524.91,127.37],[524.91,127.37],[524.92,127.38],[524.93,127.38],[524.97,127.4],[525.01,127.41],[525.02,127.42],[525.02,127.42],[525.03,127.42],[525.03,127.42],[525.11,127.42],[525.2,127.41],[525.21,127.41],[525.22,127.41],[525.33,127.41],[525.35,127.41],[525.36,127.41],[525.36,127.41],[525.37,127.42],[525.38,127.42],[525.48,127.47],[525.5,127.48],[525.53,127.49],[525.7,127.59],[525.78,127.63],[525.92,127.71],[525.92,127.71],[525.93,127.71],[525.94,127.71],[525.95,127.71],[526.07,127.71],[526.08,127.71],[526.09,127.72],[526.37,127.79],[526.37,127.79],[526.38,127.8],[526.39,127.8],[526.39,127.81],[526.44,127.84],[526.45,127.84],[526.47,127.85],[526.49,127.85],[526.5,127.86],[526.51,127.86],[526.53,127.87],[526.55,127.89],[526.58,127.9],[526.62,127.93],[526.63,127.94],[526.65,127.94],[526.66,127.94],[526.66,127.94],[526.67,127.94],[526.71,127.93],[526.73,127.93],[526.74,127.93],[526.75,127.93],[526.77,127.94],[526.8,127.94],[526.88,127.95],[526.92,127.96],[526.94,127.96],[526.97,127.95],[526.99,127.95],[527.08,127.96],[527.15,127.96],[527.25,127.97],[527.32,127.98],[527.33,127.98],[527.34,127.98],[527.35,127.98],[527.42,127.95],[527.44,127.95],[527.56,127.95],[527.57,127.96],[527.58,127.96],[527.62,127.96],[527.65,127.97],[527.69,127.97],[527.69,127.97],[527.7,127.98],[527.7,127.98],[527.72,127.97],[527.73,127.97],[527.74,127.97],[527.76,127.97],[527.81,127.95],[527.84,127.95],[527.85,127.95],[527.97,127.95],[527.98,127.95],[527.99,127.95],[528.01,127.94],[528.02,127.94],[528.06,127.92],[528.12,127.9],[528.13,127.9],[528.14,127.89],[528.2,127.88],[528.26,127.87],[528.26,127.87],[528.27,127.87],[528.27,127.87],[528.31,127.83],[528.32,127.83],[528.32,127.82],[528.33,127.81],[528.36,127.8],[528.38,127.79],[528.4,127.78],[528.41,127.77],[528.53,127.73],[528.56,127.71],[528.58,127.71],[528.6,127.7],[528.61,127.69],[528.62,127.69],[528.63,127.69],[528.64,127.69],[528.81,127.65],[528.86,127.64],[528.88,127.63],[528.89,127.63],[528.91,127.63],[528.92,127.63],[528.93,127.63],[528.97,127.62],[528.98,127.61],[528.99,127.61],[529.09,127.61],[529.11,127.61],[529.12,127.61],[529.12,127.61],[529.13,127.62],[529.15,127.62],[529.21,127.66],[529.22,127.67],[529.23,127.67],[529.23,127.67],[529.24,127.68],[529.27,127.76],[529.27,127.76],[529.28,127.77],[529.28,127.77],[529.29,127.78],[529.3,127.78],[529.31,127.79],[529.31,127.79],[529.32,127.8],[529.33,127.8],[529.35,127.81],[529.36,127.81],[529.37,127.82],[529.39,127.83],[529.41,127.83],[529.52,127.84],[529.53,127.85],[529.54,127.85],[529.55,127.85],[529.56,127.86],[529.57,127.86],[529.57,127.87],[529.58,127.88],[529.61,127.92],[529.65,127.96],[529.69,128.02],[529.7,128.03],[529.72,128.06],[529.73,128.07],[529.74,128.08],[529.75,128.09],[529.75,128.1],[529.76,128.1],[529.77,128.11],[529.78,128.11],[529.79,128.11],[529.84,128.12],[529.85,128.13],[529.86,128.13],[529.87,128.13],[529.87,128.14],[529.88,128.14],[529.89,128.14],[529.89,128.15],[529.9,128.16],[529.91,128.17],[529.94,128.22],[530.03,128.37],[530.03,128.38],[530.04,128.38],[530.13,128.53],[530.13,128.53],[530.13,128.54],[530.14,128.55],[530.22,128.69],[530.23,128.7],[530.23,128.71],[530.24,128.72],[530.24,128.72],[530.25,128.74],[530.25,128.75],[530.26,128.76],[530.26,128.76],[530.26,128.77],[530.26,128.77],[530.27,128.78],[530.27,128.79],[530.27,128.79],[530.28,128.8],[530.29,128.84],[530.31,128.88],[530.32,128.9],[530.32,128.91],[530.33,128.91],[530.33,128.92],[530.33,128.93],[530.33,128.93],[530.34,128.94],[530.34,128.94],[530.35,128.95],[530.35,128.96],[530.36,128.98],[530.36,128.99],[530.37,129],[530.37,129.01],[530.38,129.02],[530.39,129.02],[530.4,129.03],[530.4,129.05],[530.42,129.07],[530.43,129.08],[530.44,129.1],[530.46,129.12],[530.46,129.13],[530.47,129.14],[530.47,129.15],[530.48,129.15],[530.48,129.15],[530.48,129.15],[530.48,129.16],[530.48,129.16],[530.49,129.16],[530.49,129.17],[530.5,129.17],[530.5,129.19],[530.51,129.2],[530.52,129.2],[530.52,129.21],[530.53,129.22],[530.53,129.22],[530.53,129.23],[530.54,129.23],[530.55,129.24],[530.55,129.24],[530.56,129.25],[530.57,129.25],[530.57,129.25],[530.57,129.26],[530.58,129.26],[530.58,129.26],[530.58,129.26],[530.58,129.26],[530.59,129.26],[530.59,129.27],[530.6,129.27],[530.6,129.27],[530.61,129.28],[530.61,129.28],[530.62,129.28],[530.63,129.29],[530.64,129.3],[530.66,129.31],[530.67,129.32],[530.67,129.32],[530.67,129.32],[530.68,129.33],[530.68,129.33],[530.69,129.33],[530.69,129.33],[530.7,129.34],[530.7,129.34],[530.71,129.34],[530.71,129.35],[530.73,129.36],[530.76,129.38],[530.79,129.4],[530.8,129.4],[530.8,129.41],[530.82,129.42],[530.82,129.42],[530.83,129.43],[530.85,129.45],[530.86,129.46],[530.86,129.46],[530.86,129.47],[530.87,129.47],[530.87,129.47],[530.87,129.47],[530.87,129.47],[530.87,129.47],[530.87,129.48],[530.87,129.48],[530.87,129.48],[530.87,129.48],[530.87,129.49],[530.87,129.49],[530.87,129.49],[530.87,129.49],[530.86,129.5],[530.86,129.5],[530.86,129.5],[530.86,129.5],[530.85,129.51],[530.84,129.52],[530.83,129.53],[530.81,129.55],[530.8,129.56],[530.8,129.56],[530.8,129.56],[530.79,129.57],[530.79,129.57],[530.79,129.58],[530.78,129.58],[530.78,129.59],[530.78,129.59],[530.77,129.6],[530.77,129.61],[530.76,129.63],[530.75,129.66],[530.74,129.68],[530.71,129.74],[530.7,129.76],[530.7,129.77],[530.7,129.77],[530.7,129.78],[530.7,129.78],[530.69,129.79],[530.69,129.8],[530.69,129.8],[530.69,129.81],[530.69,129.81],[530.69,129.81],[530.69,129.82],[530.69,129.82],[530.69,129.84],[530.69,129.85],[530.69,129.91],[530.69,129.95],[530.7,129.98],[530.7,130.05],[530.7,130.08],[530.7,130.09],[530.7,130.11],[530.7,130.12],[530.7,130.13],[530.7,130.14],[530.7,130.15],[530.7,130.15],[530.7,130.16],[530.7,130.17],[530.7,130.18],[530.7,130.21],[530.7,130.22],[530.7,130.23],[530.7,130.24],[530.7,130.24],[530.7,130.26],[530.7,130.27],[530.7,130.29],[530.7,130.34],[530.7,130.34],[530.7,130.38],[530.7,130.39],[530.7,130.4],[530.7,130.42],[530.7,130.43],[530.71,130.46],[530.71,130.47],[530.71,130.48],[530.71,130.5],[530.71,130.53],[530.72,130.58],[530.72,130.6],[530.72,130.62],[530.72,130.64],[530.73,130.67],[530.73,130.71],[530.73,130.77],[530.74,130.79],[530.74,130.8],[530.74,130.82],[530.74,130.83],[530.74,130.84],[530.74,130.85],[530.74,130.85],[530.74,130.86],[530.74,130.86],[530.74,130.87],[530.74,130.88],[530.74,130.89],[530.74,130.9],[530.75,130.91],[530.75,130.93],[530.75,130.93],[530.75,130.95],[530.75,130.96],[530.75,130.98],[530.75,130.99],[530.75,131],[530.75,131.01],[530.75,131.03],[530.75,131.04],[530.75,131.05],[530.75,131.07],[530.75,131.08],[530.75,131.1],[530.75,131.11],[530.74,131.12],[530.74,131.14],[530.74,131.16],[530.74,131.2],[530.74,131.22],[530.74,131.24],[530.74,131.25],[530.74,131.3],[530.73,131.36],[530.73,131.38],[530.73,131.39],[530.73,131.4],[530.73,131.48],[530.73,131.52],[530.73,131.53],[530.73,131.56],[530.72,131.61],[530.72,131.64],[530.72,131.66],[530.72,131.68],[530.72,131.71],[530.72,131.72],[530.72,131.74],[530.72,131.75],[530.72,131.77],[530.72,131.78],[530.72,131.79],[530.72,131.79],[530.72,131.81],[530.71,131.82],[530.71,131.83],[530.72,131.83],[530.72,131.84],[530.72,131.84],[530.72,131.85],[530.72,131.86],[530.72,131.87],[530.72,131.91],[530.73,131.95],[530.73,131.99],[530.74,132.1],[530.75,132.15],[530.75,132.16],[530.75,132.17],[530.75,132.19],[530.75,132.19],[530.75,132.2],[530.76,132.31],[530.77,132.35],[530.77,132.38],[530.77,132.4],[530.78,132.44],[530.78,132.44],[530.78,132.48],[530.78,132.5],[530.79,132.56],[530.79,132.58],[530.79,132.6],[530.8,132.63],[530.8,132.66],[530.8,132.69],[530.81,132.72],[530.81,132.76],[530.81,132.76],[530.81,132.77],[530.81,132.77],[530.82,132.77],[530.82,132.78],[530.82,132.78],[530.82,132.78],[530.82,132.78],[530.82,132.79],[530.82,132.79],[530.83,132.79],[530.83,132.8],[530.84,132.81],[530.84,132.81],[530.84,132.81],[530.85,132.82],[530.85,132.82],[530.86,132.82],[530.89,132.85],[530.93,132.87],[530.94,132.88],[531,132.92],[531.03,132.94],[531.05,132.96],[531.05,132.96],[531.06,132.97],[531.07,132.97],[531.07,132.97],[531.08,132.98],[531.08,132.99],[531.08,132.99],[531.09,133],[531.12,133.04],[531.16,133.1],[531.19,133.13],[531.22,133.17],[531.23,133.18],[531.23,133.18],[531.24,133.19],[531.26,133.22],[531.29,133.26],[531.31,133.29],[531.34,133.32],[531.36,133.35],[531.39,133.39],[531.42,133.43],[531.43,133.44],[531.47,133.49],[531.49,133.52],[531.5,133.53],[531.5,133.53],[531.5,133.53],[531.51,133.54],[531.51,133.54],[531.51,133.55],[531.52,133.55],[531.53,133.56],[531.56,133.58],[531.6,133.6],[531.65,133.64],[531.68,133.67],[531.7,133.68],[531.72,133.69],[531.76,133.72],[531.79,133.74],[531.83,133.77],[531.85,133.79],[531.89,133.81],[531.95,133.86],[532,133.89],[532.01,133.89],[532.01,133.9],[532.03,133.91],[532.04,133.93],[532.05,133.93],[532.05,133.94],[532.07,133.96],[532.1,134],[532.16,134.07],[532.2,134.12],[532.22,134.14],[532.25,134.19],[532.29,134.24],[532.33,134.28],[532.36,134.32],[532.39,134.36],[532.44,134.42],[532.47,134.46],[532.48,134.47],[532.48,134.48],[532.49,134.49],[532.49,134.5],[532.5,134.51],[532.51,134.53],[532.59,134.78],[532.62,134.85],[532.63,134.87],[532.78,135.3],[532.8,135.38],[532.81,135.4],[532.82,135.43],[532.82,135.45],[532.84,135.6],[532.88,135.9],[532.89,135.92],[532.89,135.94],[532.99,136.21],[533.08,136.45],[533.08,136.47],[533.1,136.5],[533.14,136.61],[533.15,136.66],[533.16,136.68],[533.17,136.7],[533.18,136.71],[533.32,136.91],[533.35,136.95],[533.36,136.97],[533.39,137.02],[533.41,137.05],[533.42,137.07],[533.48,137.16],[533.49,137.18],[533.51,137.21],[533.52,137.22],[533.56,137.27],[533.57,137.29],[533.9,137.9],[533.9,137.91],[533.91,137.93],[533.91,137.94],[533.91,137.95],[533.92,137.97],[533.92,137.97],[533.92,138.19],[533.92,138.31],[533.92,138.33],[533.92,138.34],[533.92,138.38],[533.91,138.44],[533.91,138.49],[533.91,138.56],[533.91,138.67],[533.91,138.68],[533.91,138.68],[533.92,138.69],[533.92,138.69],[533.92,138.7],[533.92,138.7],[533.92,138.7],[533.92,138.71],[533.94,138.73],[533.97,138.79],[533.97,138.79],[533.97,138.8],[533.98,138.8],[533.99,138.81],[534,138.83],[534.01,138.84],[534.02,138.85],[534.02,138.86],[534.02,138.86],[534.03,138.86],[534.03,138.87],[534.03,138.87],[534.03,138.88],[534.03,138.88],[534.03,138.89],[534.03,138.89],[534.03,138.9],[534.03,139.07],[534.02,139.27],[534.02,139.28],[534.02,139.3],[534.02,139.32],[533.91,139.72],[533.91,139.74],[533.91,139.76],[533.91,139.78],[533.91,139.79],[533.91,139.8],[533.91,139.82],[533.96,140.15],[533.96,140.17],[533.96,140.18],[533.97,140.2],[533.97,140.21],[534.11,140.5],[534.12,140.52],[534.12,140.53],[534.13,140.55],[534.13,140.57],[534.16,140.78],[534.17,140.81],[534.17,140.83],[534.18,140.85],[534.18,140.87],[534.19,140.89],[534.2,140.91],[534.21,140.93],[534.22,140.94],[534.24,140.96],[534.25,140.98],[534.43,141.16],[534.48,141.21],[534.49,141.22],[534.5,141.23],[534.55,141.29],[534.73,141.52],[534.74,141.53],[534.75,141.55],[534.77,141.58],[534.78,141.6],[534.79,141.62],[535,142.06],[535.01,142.07],[535.02,142.11],[535.16,142.44],[535.17,142.46],[535.21,142.62],[535.22,142.64],[535.23,142.66],[535.27,142.7],[535.29,142.73],[535.32,142.75],[535.35,142.79],[535.36,142.8],[535.38,142.8],[535.45,142.83],[535.47,142.83],[535.49,142.85],[535.5,142.86],[535.76,143.1],[535.8,143.14],[535.83,143.16],[535.84,143.19],[535.98,143.41],[536,143.43],[536.03,143.47],[536.06,143.51],[536.1,143.56],[536.12,143.57],[536.15,143.6],[536.17,143.61],[536.19,143.64],[536.2,143.65],[536.2,143.67],[536.24,143.75],[536.25,143.77],[536.25,143.78],[536.25,143.79],[536.28,143.96],[536.28,143.98],[536.29,144],[536.3,144.02],[536.33,144.06],[536.34,144.08],[536.35,144.09],[536.36,144.1],[536.36,144.11],[536.37,144.11],[536.37,144.12],[536.38,144.13],[536.41,144.2],[536.41,144.21],[536.41,144.21],[536.41,144.22],[536.41,144.22],[536.41,144.22],[536.41,144.23],[536.41,144.23],[536.41,144.26],[536.41,144.29],[536.41,144.29],[536.41,144.29],[536.42,144.3],[536.42,144.3],[536.42,144.3],[536.42,144.31],[536.42,144.31],[536.42,144.32],[536.42,144.32],[536.43,144.33],[536.43,144.33],[536.44,144.34],[536.44,144.34],[536.44,144.34],[536.48,144.37],[536.52,144.39],[536.53,144.4],[536.53,144.4],[536.55,144.41],[536.57,144.43],[536.61,144.45],[536.62,144.45],[536.62,144.45],[536.62,144.46],[536.63,144.46],[536.63,144.46],[536.63,144.46],[536.63,144.46],[536.63,144.47],[536.63,144.47],[536.63,144.47],[536.66,144.61],[536.67,144.64],[536.67,144.64],[536.67,144.65],[536.67,144.66],[536.67,144.67],[536.67,144.67],[536.68,144.68],[536.68,144.69],[536.68,144.7],[536.69,144.72],[536.69,144.73],[536.69,144.73],[536.7,144.74],[536.7,144.74],[536.7,144.74],[536.7,144.74],[536.7,144.75],[536.7,144.75],[536.7,144.75],[536.7,144.75],[536.7,144.75],[536.7,144.75],[536.7,144.75],[536.7,144.76],[536.69,144.76],[536.69,144.76],[536.69,144.76],[536.69,144.76],[536.69,144.76],[536.69,144.75],[536.69,144.75],[536.69,144.75],[536.68,144.75],[536.68,144.75],[536.68,144.75],[536.68,144.75],[536.68,144.75],[536.68,144.75],[536.68,144.75],[536.68,144.74],[536.68,144.74],[536.69,144.74],[536.69,144.74],[536.69,144.74],[536.7,144.73],[536.7,144.73],[536.71,144.72],[536.72,144.71],[536.73,144.71],[536.9,144.53],[536.92,144.51],[536.93,144.5],[536.95,144.49],[536.97,144.48],[536.99,144.48],[537.01,144.47],[537.03,144.47],[537.07,144.47],[537.13,144.47],[537.19,144.48],[537.33,144.49],[537.36,144.49],[537.38,144.49],[537.46,144.5],[537.48,144.5],[537.5,144.5],[537.58,144.52],[537.61,144.52],[537.64,144.53],[537.66,144.53],[537.68,144.53],[537.68,144.53],[537.68,144.53],[537.68,144.53],[537.69,144.54],[537.69,144.54],[537.69,144.54],[537.69,144.54],[537.69,144.54],[537.69,144.54],[537.69,144.54],[537.69,144.54],[537.7,144.54],[537.7,144.54],[537.71,144.54],[537.75,144.55],[537.85,144.57],[537.87,144.58],[537.89,144.59],[537.9,144.6],[537.93,144.63],[537.94,144.64],[537.96,144.64],[537.98,144.65],[538.02,144.66],[538.06,144.67],[538.12,144.69],[538.17,144.71],[538.38,144.78],[538.43,144.79],[538.45,144.8],[538.46,144.81],[538.47,144.81],[538.48,144.82],[538.5,144.83],[538.51,144.84],[538.57,144.9],[538.58,144.91],[538.6,144.93],[538.64,144.97],[538.68,145],[538.68,145.01],[538.69,145.02],[538.7,145.03],[538.71,145.04],[538.74,145.07],[538.75,145.08],[538.76,145.09],[538.77,145.1],[538.78,145.11],[538.79,145.13],[538.8,145.14],[538.81,145.15],[538.81,145.16],[538.82,145.16],[538.83,145.18],[538.84,145.19],[538.86,145.2],[538.87,145.21],[538.88,145.22],[538.89,145.23],[538.9,145.23],[538.93,145.25],[538.94,145.26],[538.95,145.26],[539,145.29],[539.01,145.3],[539.01,145.3],[539.02,145.3],[539.02,145.31],[539.03,145.31],[539.03,145.32],[539.07,145.38],[539.07,145.39],[539.08,145.4],[539.08,145.4],[539.09,145.41],[539.09,145.42],[539.1,145.42],[539.12,145.43],[539.12,145.43],[539.13,145.44],[539.14,145.44],[539.15,145.45],[539.16,145.45],[539.16,145.46],[539.18,145.47],[539.19,145.48],[539.2,145.49],[539.21,145.5],[539.22,145.51],[539.22,145.51],[539.23,145.52],[539.23,145.52],[539.23,145.52],[539.24,145.53],[539.24,145.55],[539.27,145.62],[539.27,145.63],[539.28,145.64],[539.28,145.65],[539.28,145.66],[539.28,145.68],[539.29,145.73],[539.29,145.76],[539.29,145.77],[539.29,145.79],[539.3,145.8],[539.29,145.81],[539.29,145.82],[539.29,145.83],[539.29,145.85],[539.29,145.86],[539.29,145.88],[539.29,145.92],[539.3,145.94],[539.29,145.95],[539.29,145.96],[539.29,145.96],[539.27,145.99],[539.27,146.01],[539.27,146.02],[539.27,146.03],[539.28,146.12],[539.29,146.13],[539.31,146.16],[539.31,146.17],[539.32,146.2],[539.32,146.22],[539.34,146.27],[539.35,146.3],[539.37,146.35],[539.38,146.43],[539.39,146.45],[539.41,146.49],[539.41,146.5],[539.42,146.54],[539.42,146.55],[539.42,146.63],[539.43,146.65],[539.45,146.73],[539.45,146.74],[539.45,146.76],[539.45,146.78],[539.43,146.81],[539.41,146.83],[539.4,146.83],[539.4,146.83],[539.35,146.87],[539.33,146.9],[539.32,146.92],[539.32,146.94],[539.32,146.96],[539.33,146.99],[539.34,147.01],[539.34,147.02],[539.34,147.04],[539.31,147.12],[539.29,147.18],[539.29,147.19],[539.28,147.2],[539.28,147.21],[539.27,147.23],[539.27,147.23],[539.27,147.23],[539.27,147.24],[539.27,147.24],[539.27,147.24],[539.27,147.24],[539.27,147.24],[539.28,147.24],[539.3,147.25],[539.35,147.26],[539.41,147.28],[539.56,147.33],[539.68,147.36],[539.9,147.43],[540.05,147.48],[540.06,147.48],[540.09,147.5],[540.13,147.52],[540.14,147.53],[540.15,147.53],[540.17,147.54],[540.18,147.54],[540.21,147.54],[540.22,147.54],[540.23,147.54],[540.29,147.55],[540.31,147.55],[540.34,147.55],[540.43,147.56],[540.44,147.56],[540.46,147.57],[540.52,147.59],[540.61,147.63],[540.68,147.65],[540.69,147.66],[540.76,147.72],[540.79,147.74],[540.82,147.76],[540.84,147.77],[540.87,147.78],[541.13,147.85],[541.39,147.94],[541.59,148.01],[541.75,148],[541.8,148],[541.88,148.01],[542.17,148.04],[542.35,148.02],[542.4,148.02],[542.54,148.03],[542.55,148.03],[542.57,148.03],[542.59,148.02],[542.6,148.02],[542.62,148.03],[542.63,148.03],[542.64,148.04],[542.65,148.05],[542.81,148.19],[543.14,148.43],[543.15,148.44],[543.16,148.44],[543.18,148.44],[543.19,148.43],[543.24,148.41],[543.26,148.41],[543.28,148.41],[543.29,148.42],[543.66,148.53],[543.68,148.54],[543.7,148.54],[543.72,148.54],[544.02,148.52],[544.61,148.49],[544.74,148.48],[544.89,148.47],[545.12,148.46],[545.18,148.45],[545.21,148.45],[545.37,148.45],[545.5,148.43],[545.93,148.44],[546.09,148.44],[546.11,148.44],[546.12,148.44],[546.2,148.4],[546.21,148.39],[546.22,148.38],[546.23,148.37],[546.23,148.37],[546.24,148.34],[546.24,148.27],[546.24,148.22],[546.26,148.14],[546.26,148.13],[546.26,148.13],[546.26,148.13],[546.55,148.03],[546.66,147.99],[546.86,147.92],[546.93,147.89],[546.99,147.87],[547.01,147.86],[547.03,147.85],[547.05,147.85],[547.09,147.86],[547.12,147.86],[547.14,147.87],[547.17,147.86],[547.21,147.85],[547.41,147.81],[547.44,147.8],[547.73,147.71],[547.74,147.7],[547.78,147.7],[547.91,147.69],[548.25,147.71],[548.43,147.72],[548.45,147.72],[548.47,147.72],[548.49,147.72],[548.78,147.73],[548.79,147.73],[548.82,147.73],[548.91,147.72],[548.94,147.72],[548.95,147.72],[549.06,147.7],[549.08,147.7],[549.09,147.7],[549.11,147.69],[549.2,147.66],[549.22,147.65],[549.3,147.62],[549.34,147.61],[549.37,147.6],[549.42,147.6],[549.44,147.6],[549.46,147.6],[549.5,147.6],[549.51,147.6],[549.51,147.59],[549.52,147.58],[549.53,147.56],[549.53,147.55],[549.55,147.47],[549.55,147.46],[549.57,147.46],[549.68,147.45],[549.79,147.47],[549.81,147.47],[550.06,147.49],[550.23,147.51],[550.24,147.51],[550.24,147.51],[550.25,147.51],[550.28,147.53],[550.29,147.54],[550.31,147.55],[550.32,147.56],[550.33,147.56],[550.35,147.56],[550.37,147.56],[550.38,147.56],[550.39,147.56],[550.4,147.56],[550.41,147.55],[550.42,147.54],[550.42,147.53],[550.47,147.41],[550.47,147.4],[550.48,147.39],[550.48,147.39],[550.49,147.38],[550.5,147.37],[550.51,147.36],[550.52,147.35],[550.58,147.32],[550.58,147.32],[550.59,147.32],[550.59,147.31],[550.59,147.31],[550.59,147.31],[550.6,147.3],[550.66,147.27],[550.67,147.27],[550.68,147.27],[550.69,147.27],[550.71,147.27],[550.79,147.31],[550.8,147.32],[550.81,147.32],[550.82,147.32],[551.72,147.32],[551.9,147.32],[551.91,147.32],[551.92,147.32],[551.94,147.31],[551.95,147.31],[551.96,147.31],[551.97,147.31],[551.98,147.31],[551.98,147.31],[551.99,147.31],[551.99,147.31],[551.99,147.31],[552,147.31],[552,147.31],[552,147.32],[552.01,147.32],[552.07,147.39],[552.14,147.46],[552.14,147.47],[552.15,147.47],[552.15,147.47],[552.15,147.48],[552.15,147.48],[552.15,147.48],[552.16,147.48],[552.16,147.48],[552.16,147.48],[552.16,147.48],[552.16,147.48],[552.17,147.48],[552.17,147.49],[552.17,147.49],[552.17,147.49],[552.17,147.49],[552.17,147.49],[552.18,147.49],[552.28,147.49],[552.28,147.49],[552.28,147.49],[552.28,147.49],[552.29,147.49],[552.29,147.49],[552.29,147.49],[552.29,147.49],[552.29,147.49],[552.3,147.5],[552.3,147.5],[552.3,147.5],[552.3,147.51],[552.3,147.51],[552.3,147.51],[552.3,147.54],[552.3,147.55],[552.31,147.55],[552.31,147.55],[552.31,147.55],[552.31,147.55],[552.31,147.56],[552.31,147.56],[552.31,147.56],[552.31,147.56],[552.31,147.57],[552.34,147.59],[552.37,147.62],[552.41,147.67],[552.42,147.68],[552.42,147.68],[552.43,147.69],[552.45,147.71],[552.52,147.8],[552.55,147.84],[552.59,147.88],[552.64,147.92],[552.69,147.97],[552.73,148.02],[552.84,148.12],[552.93,148.21],[552.94,148.22],[552.94,148.22],[552.94,148.22],[552.94,148.22],[552.94,148.22],[552.94,148.22],[552.95,148.22],[552.95,148.22],[552.95,148.22],[552.95,148.22],[553.02,148.22],[553.06,148.22],[553.07,148.22],[553.09,148.22],[553.1,148.22],[553.16,148.22],[553.19,148.22],[553.2,148.22],[553.22,148.22],[553.23,148.22],[553.24,148.23],[553.28,148.23],[553.3,148.24],[553.3,148.24],[553.3,148.24],[553.31,148.24],[553.32,148.24],[553.41,148.24],[553.43,148.23],[553.47,148.23],[553.5,148.23],[553.5,148.23],[553.51,148.23],[553.51,148.23],[553.51,148.23],[553.52,148.23],[553.53,148.23],[553.57,148.24],[553.58,148.24],[553.61,148.25],[553.63,148.25],[553.63,148.25],[553.63,148.25],[553.63,148.25],[553.64,148.25],[553.67,148.25],[553.68,148.24],[553.73,148.24],[553.77,148.24],[553.93,148.22],[554.16,148.2],[554.28,148.18],[554.39,148.17],[554.41,148.17],[554.45,148.16],[554.54,148.16],[554.59,148.16],[554.62,148.15],[554.66,148.15],[554.72,148.14],[554.72,148.14],[554.74,148.14],[554.75,148.14],[554.76,148.15],[554.76,148.15],[554.78,148.17],[554.78,148.18],[554.79,148.19],[554.79,148.2],[554.83,148.35],[554.83,148.36],[554.84,148.37],[554.85,148.38],[554.95,148.48],[554.96,148.49],[554.99,148.53],[554.99,148.54],[554.99,148.55],[555.01,148.6],[555.01,148.62],[555.02,148.63],[555.02,148.64],[555.03,148.64],[555.04,148.65],[555.05,148.65],[555.06,148.65],[555.11,148.66],[555.12,148.66],[555.32,148.74],[555.32,148.74],[555.33,148.74],[555.42,148.71],[555.43,148.71],[555.46,148.68],[555.47,148.68],[555.48,148.68],[555.48,148.68],[555.49,148.68],[555.5,148.69],[555.57,148.73],[555.57,148.73],[555.58,148.73],[555.59,148.73],[555.7,148.71],[555.85,148.66],[555.86,148.65],[555.93,148.64],[555.95,148.64],[555.96,148.63],[556.05,148.6],[556.08,148.59],[556.13,148.56],[556.14,148.56],[556.15,148.56],[556.16,148.56],[556.35,148.59],[556.44,148.61],[556.61,148.63],[556.71,148.65],[556.86,148.68],[556.92,148.69],[557.27,148.75],[557.31,148.75],[557.34,148.76],[557.35,148.76],[557.41,148.77],[557.53,148.79],[557.71,148.82],[557.72,148.82],[557.73,148.83],[557.79,148.83],[557.88,148.83],[557.91,148.82],[557.93,148.82],[557.94,148.82],[557.95,148.82],[558,148.78],[558.02,148.77],[558.02,148.76],[558.05,148.72],[558.06,148.71],[558.07,148.7],[558.09,148.69],[558.12,148.69],[558.16,148.68],[558.18,148.68],[558.19,148.67],[558.2,148.66],[558.21,148.65],[558.24,148.62],[558.25,148.62],[558.25,148.61],[558.27,148.61],[558.31,148.61],[558.35,148.6],[558.38,148.58],[558.39,148.58],[558.4,148.58],[558.41,148.58],[558.42,148.58],[558.43,148.59],[558.45,148.6],[558.48,148.64],[558.49,148.64],[558.5,148.64],[558.51,148.64],[558.63,148.63],[558.63,148.62],[558.65,148.62],[558.95,148.48],[558.97,148.48],[559,148.46],[559.01,148.46],[559.01,148.46],[559.01,148.46],[559.01,148.46],[559.01,148.46],[559.01,148.45],[559.02,148.44],[559.02,148.43],[559.03,148.43],[559.03,148.42],[559.04,148.42],[559.05,148.42],[559.07,148.41],[559.08,148.41],[559.1,148.41],[559.11,148.41],[559.12,148.41],[559.13,148.41],[559.19,148.44],[559.21,148.45],[559.25,148.46],[559.43,148.5],[559.45,148.5],[559.47,148.51],[559.48,148.52],[559.55,148.55],[559.55,148.56],[559.56,148.56],[559.56,148.56],[559.59,148.54],[559.67,148.49],[559.68,148.49],[559.69,148.48],[559.7,148.48],[559.71,148.49],[559.73,148.5],[559.74,148.51],[559.74,148.57],[559.74,148.58],[559.74,148.59],[559.74,148.59],[559.75,148.64],[559.75,148.65],[559.75,148.66],[559.75,148.66],[559.77,148.67],[559.77,148.67],[559.86,148.76],[559.9,148.79],[559.91,148.8],[559.92,148.81],[559.92,148.81],[559.93,148.81],[559.93,148.81],[559.94,148.82],[559.95,148.82],[559.99,148.85],[560,148.85],[560.14,148.9],[560.21,148.93],[560.23,148.94],[560.25,148.94],[560.37,148.97],[560.4,148.97],[560.59,148.99],[560.61,148.99],[560.62,148.99],[560.64,149],[560.66,149.03],[560.86,149.24],[560.88,149.26],[560.92,149.29],[560.96,149.3],[562.04,149.75],[562.06,149.76],[562.07,149.76],[562.08,149.76],[562.09,149.76],[562.1,149.76],[562.11,149.76],[562.12,149.76],[562.36,149.69],[562.37,149.69],[562.38,149.68],[562.4,149.68],[562.69,149.66],[562.96,149.64],[563.34,149.59],[563.37,149.59],[563.52,149.59],[563.73,149.58],[564.04,149.57],[564.24,149.55],[564.4,149.54],[564.53,149.54],[564.62,149.54],[564.71,149.54],[564.92,149.55],[565.26,149.57],[565.3,149.57],[565.33,149.56],[565.59,149.41],[565.64,149.38],[566.19,149.07],[566.38,148.96],[566.42,148.94],[566.51,148.91],[566.7,148.86],[566.74,148.86],[566.78,148.86],[567.09,148.89],[567.38,148.92],[567.47,148.92],[567.63,148.91],[567.64,148.91],[567.65,148.91],[567.67,148.91],[567.69,148.91],[567.7,148.92],[567.74,148.93],[567.76,148.94],[567.78,148.95],[567.83,148.96],[567.86,148.97],[567.88,148.98],[567.88,148.98],[567.88,148.98],[567.89,148.98],[567.89,148.98],[567.89,148.99],[567.89,148.99],[567.89,148.99],[567.89,148.99],[567.87,149],[567.87,149],[567.87,149],[567.86,149.01],[567.85,149.03],[567.85,149.03],[567.85,149.04],[567.85,149.04],[567.82,149.08],[567.8,149.12],[567.79,149.13],[567.79,149.13],[567.78,149.14],[567.77,149.16],[567.77,149.17],[567.77,149.17],[567.77,149.18],[567.77,149.19],[567.77,149.19],[567.78,149.19],[567.81,149.21],[567.84,149.23],[567.84,149.23],[567.88,149.25],[567.89,149.26],[567.91,149.27],[567.94,149.29],[567.97,149.31],[567.98,149.32],[568,149.33],[568,149.33],[568.01,149.34],[568.01,149.34],[568.02,149.35],[568.03,149.37],[568.05,149.39],[568.06,149.41],[568.07,149.42],[568.07,149.42],[568.09,149.44],[568.09,149.44],[568.1,149.45],[568.1,149.46],[568.11,149.46],[568.11,149.46],[568.12,149.46],[568.16,149.48],[568.2,149.49],[568.22,149.49],[568.24,149.5],[568.27,149.51],[568.3,149.52],[568.47,149.56],[568.49,149.57],[568.52,149.57],[568.55,149.56],[568.63,149.54],[568.8,149.49],[568.94,149.45],[568.96,149.5],[569,149.55],[569.15,149.79],[569.21,149.87],[569.23,149.91],[569.24,149.95],[569.25,149.99],[569.25,149.99],[569.25,150],[569.24,150],[569.23,150],[569.22,150.01],[569.22,150.01],[569.21,150.01],[569.21,150.02],[569.22,150.03],[569.23,150.05],[569.24,150.06],[569.25,150.07],[569.27,150.09],[569.31,150.12],[569.42,150.21],[569.56,150.31],[569.75,150.46],[569.85,150.53],[569.87,150.55],[569.89,150.57],[569.92,150.59],[570.03,150.72],[570.21,150.91],[570.27,150.99],[570.35,151.08],[570.38,151.12],[570.41,151.17],[570.43,151.22],[570.51,151.37],[570.59,151.54],[570.69,151.74],[570.78,151.94],[571.06,152.54],[571.09,152.58],[571.1,152.6],[571.15,152.65],[571.32,152.77],[571.46,152.88],[571.58,152.97],[571.62,153.01],[571.64,153.02],[571.72,153.06],[571.74,153.07],[571.76,153.09],[571.91,153.27],[572.09,153.49],[572.32,153.77],[572.44,153.91],[572.48,153.96],[572.49,153.97],[572.49,153.99],[572.5,154],[572.5,154.01],[572.5,154.02],[572.51,154.02],[572.53,154.04],[572.54,154.05],[572.55,154.06],[572.57,154.08],[572.62,154.15],[572.86,154.45],[572.96,154.57],[573.07,154.72],[573.24,154.93],[573.46,155.21],[573.5,155.26],[573.61,155.39],[573.81,155.62],[573.95,155.77],[574.13,155.98],[574.26,156.13],[574.38,156.27],[574.6,156.51],[574.61,156.53],[574.63,156.54],[574.67,156.55],[574.69,156.56],[574.7,156.57],[574.72,156.6],[574.8,156.7],[574.92,156.85],[575.14,157.13],[575.15,157.14],[575.2,157.21],[575.2,157.21],[575.21,157.22],[575.21,157.22],[575.22,157.22],[575.22,157.22],[575.22,157.22],[575.23,157.22],[575.25,157.25],[575.25,157.26],[575.26,157.26],[575.26,157.26],[575.26,157.26],[575.31,157.25],[575.31,157.25],[575.32,157.26],[575.37,157.28],[575.37,157.28],[575.49,157.28],[575.67,157.29],[575.72,157.29],[575.93,157.31],[576.31,157.34],[576.63,157.37],[576.69,157.38],[576.76,157.39],[576.85,157.4],[577.16,157.46],[577.36,157.5],[577.72,157.57],[577.97,157.61],[578.21,157.66],[578.41,157.69],[578.84,157.78],[578.98,157.8],[579.12,157.83],[579.36,157.88],[579.49,157.9],[579.67,157.94],[579.71,157.95],[579.88,157.98],[579.93,157.99],[579.96,158],[580.04,158.04],[580.06,158.05],[580.26,158.09],[580.49,158.12],[580.62,158.15],[580.64,158.15],[580.73,158.15],[580.92,158.15],[581.01,158.15],[581.1,158.15],[581.37,158.14],[581.77,158.14],[581.86,158.14],[582.03,158.11],[582.42,158.04],[582.77,157.97],[583.28,157.88],[583.76,157.8],[583.8,157.79],[583.83,157.79],[583.95,157.81],[583.96,157.81],[584.4,157.88],[584.42,157.88],[584.46,157.91],[584.57,157.97],[584.7,158.05],[584.88,158.14],[584.94,158.16],[584.98,158.17],[585.07,158.17],[585.57,158.19],[586.07,158.22],[586.17,158.23],[586.2,158.23],[586.25,158.24],[586.44,158.28],[586.62,158.31],[586.67,158.32],[586.72,158.31],[586.88,158.3],[587.07,158.28],[587.13,158.28],[587.23,158.29],[587.35,158.29],[587.56,158.31],[587.72,158.32],[587.78,158.32],[587.87,158.32],[588.25,158.29],[588.56,158.27],[588.69,158.26],[588.88,158.25],[589,158.25],[589.05,158.25],[589.45,158.26],[589.51,158.26],[589.58,158.27],[589.63,158.28],[589.66,158.27],[589.81,158.25],[589.85,158.25],[590.29,158.22],[590.76,158.19],[591.06,158.18],[591.13,158.18],[591.44,158.19],[591.64,158.19],[591.91,158.19],[592.45,158.19],[592.48,158.19],[592.49,158.19],[592.54,158.19],[592.58,158.2],[592.64,158.21],[592.65,158.19],[592.8,158.21],[592.85,158.13],[592.87,158.11],[592.88,158.1],[593.19,157.95],[593.22,157.95],[593.25,157.94],[593.7,157.9],[594.54,157.8],[595.02,157.69],[595.11,157.67],[595.14,157.67],[595.17,157.66],[595.19,157.66],[595.5,157.67],[595.65,157.67],[595.67,157.67],[595.69,157.67],[595.82,157.7],[595.83,157.7],[596.14,157.77],[596.15,157.77],[596.17,157.78],[597.2,157.73],[597.24,157.73],[597.24,157.73],[597.25,157.73],[597.26,157.72],[597.34,157.7],[597.59,157.66],[597.67,157.65],[597.84,157.61],[597.87,157.61],[597.89,157.62],[598,157.63],[598.01,157.63],[598.02,157.63],[598.03,157.62],[598.04,157.61],[598.09,157.58],[598.13,157.56],[598.16,157.55],[598.44,157.46],[598.59,157.41],[598.6,157.41],[598.61,157.4],[598.63,157.4],[598.64,157.4],[598.66,157.4],[598.69,157.41],[598.7,157.41],[598.82,157.39],[598.97,157.38],[599.05,157.37],[599.06,157.37],[599.09,157.37],[599.28,157.38],[599.41,157.38],[599.46,157.39],[599.48,157.39],[599.49,157.38],[599.52,157.38],[599.88,157.26],[600.08,157.2],[600.09,157.2],[600.1,157.2],[600.11,157.2],[600.15,157.2],[600.16,157.2],[600.18,157.2],[600.19,157.2],[600.2,157.2],[600.41,157.14],[600.54,157.11],[600.61,157.09],[600.62,157.08],[600.72,157.06],[600.88,157.01],[600.9,157],[600.98,156.98],[600.98,156.98],[600.99,156.98],[601,156.99],[601,156.99],[601.02,157.01],[601.04,157.04],[601.04,157.04],[601.05,157.05],[601.06,157.05],[601.06,157.06],[601.07,157.05],[601.1,157.04],[601.11,157.03],[601.14,157.02],[601.16,157.01],[601.16,157.01],[601.17,157],[601.18,157],[601.19,156.99],[601.19,156.99],[601.19,156.99],[601.21,156.98],[601.23,156.97],[601.24,156.96],[601.25,156.96],[601.26,156.96],[601.26,156.96],[601.26,156.96],[601.27,156.95],[601.27,156.95],[601.27,156.95],[601.27,156.95],[601.28,156.95],[601.28,156.95],[601.3,156.94],[601.31,156.94],[601.31,156.94],[601.32,156.93],[601.32,156.93],[601.33,156.93],[601.33,156.93],[601.33,156.93],[601.34,156.92],[601.37,156.91],[601.39,156.91],[601.4,156.9],[601.42,156.89],[601.43,156.88],[601.45,156.87],[601.47,156.86],[601.47,156.85],[601.48,156.85],[601.48,156.85],[601.49,156.85],[601.49,156.85],[601.5,156.85],[601.5,156.85],[601.51,156.85],[601.52,156.85],[601.52,156.85],[601.52,156.85],[601.53,156.85],[601.54,156.86],[601.55,156.86],[601.56,156.87],[601.56,156.87],[601.57,156.88],[601.57,156.88],[601.57,156.89],[601.58,156.9],[601.58,156.9],[601.58,156.91],[601.58,156.92],[601.58,156.92],[601.58,156.92],[601.58,156.93],[601.58,156.93],[601.58,156.94],[601.59,156.94],[601.62,156.99],[601.64,157],[601.66,157.01],[601.68,157.02],[601.68,157.02],[601.68,157.02],[601.68,157.03],[601.68,157.03],[601.69,157.03],[601.69,157.03],[601.69,157.03],[601.69,157.03],[601.69,157.03],[601.69,157.02],[601.69,157.02],[601.69,157.02],[601.69,157.02],[601.69,157.02],[601.7,157.01],[601.71,157],[601.72,157],[601.72,156.99],[601.72,156.99],[601.73,156.99],[601.74,156.99],[601.77,156.99],[601.79,156.99],[601.8,156.99],[601.83,156.99],[601.84,156.99],[601.86,156.99],[601.91,156.99],[601.91,156.99],[601.92,156.99],[601.94,156.99],[601.94,156.99],[601.98,156.99],[602.02,156.99],[602.08,156.99],[602.16,156.99],[602.32,156.98],[602.38,156.98],[602.39,156.98],[602.4,156.98],[602.46,156.97],[602.49,156.97],[602.58,156.97],[602.87,156.96],[602.95,156.96],[603.22,156.96],[603.68,156.96],[603.72,156.96],[603.72,156.96],[604,156.99],[604.05,156.99],[604.13,156.99],[604.18,157],[604.27,157.01],[604.37,157.03],[604.46,157.05],[604.51,157.07],[604.53,157.07],[604.55,157.07],[604.66,157.05],[604.7,157.05],[605,157.05],[605.03,157.05],[605.25,157.1],[605.29,157.12],[605.55,157.24],[605.97,157.4],[606.02,157.41],[606.05,157.43],[606.3,157.58],[606.43,157.67],[606.45,157.68],[606.47,157.69],[606.83,157.71],[606.9,157.71],[606.92,157.7],[607.54,157.5],[607.6,157.47],[608,157.34],[608.11,157.32],[608.21,157.28],[608.23,157.27],[608.27,157.27],[608.28,157.27],[608.44,157.44],[608.45,157.45],[608.5,157.46],[608.51,157.46],[608.61,157.43],[608.73,157.37],[608.78,157.35],[608.79,157.35],[608.81,157.35],[608.83,157.36],[608.85,157.37],[608.88,157.4],[609.05,157.72],[609.09,157.77],[609.19,157.88],[609.22,157.91],[609.39,158.02],[609.42,158.03],[609.47,158.05],[609.48,158.05],[609.74,157.92],[609.75,157.92],[609.86,157.92],[609.87,157.93],[609.92,157.95],[610.16,158.15],[610.2,158.18],[610.3,158.2],[610.77,158.3],[610.8,158.31],[610.83,158.32],[610.86,158.33],[611.23,158.53],[611.26,158.55],[611.29,158.54],[611.57,158.45],[611.64,158.44],[612,158.44],[612.13,158.46],[612.14,158.46],[612.17,158.46],[612.3,158.44],[612.47,158.47],[614.25,158.71],[614.53,158.76],[614.68,158.79],[614.73,158.8],[615.2,158.95],[615.5,159.05],[615.78,159.16],[615.94,159.23],[616.24,159.35],[616.64,159.53],[616.7,159.56],[616.77,159.58],[617.37,159.75],[617.47,159.78],[617.55,159.79],[617.61,159.81],[617.71,159.85],[617.74,159.86],[617.76,159.88],[617.79,159.93],[617.9,160.03],[618.05,160.19],[618.09,160.22],[618.12,160.26],[618.13,160.27],[618.14,160.29],[618.14,160.31],[618.13,160.33],[618.13,160.35],[618.12,160.38],[617.97,160.67],[617.96,160.7],[617.91,160.94],[617.91,160.96],[617.91,160.98],[617.93,161.01],[618.03,161.17],[618.06,161.21],[618.17,161.34],[618.19,161.37],[618.31,161.65],[618.64,162.45],[618.66,162.52],[618.74,162.72],[618.74,162.73],[619.08,163.59],[619.11,163.65],[619.46,164.17],[619.48,164.21],[619.55,164.4],[619.67,164.75],[619.71,164.86],[619.73,164.88],[619.75,164.9],[619.99,165.12],[620.46,165.55],[620.88,165.93],[620.9,165.94],[621.48,166.33],[621.5,166.35],[621.52,166.36],[621.62,166.51],[621.98,167],[621.99,167.02],[622,167.04],[622.03,167.57],[622.03,168.11],[622.03,168.16],[622.09,168.56],[622.1,168.62],[622.1,168.67],[622.08,169.26],[622.04,169.76],[622.03,169.81],[622.02,170.04],[622.02,170.07],[622.07,170.2],[622.07,170.23],[622.11,170.69],[622.1,170.95],[622.01,171.23],[622.01,171.25],[622.01,171.26],[622.02,171.28],[622.13,171.5],[622.16,171.55],[622.23,171.6],[622.3,171.66],[622.35,171.75],[622.4,171.86],[622.46,171.92],[622.49,171.95],[622.53,171.99],[622.56,172.03],[622.66,172.19],[622.87,172.42],[622.89,172.44],[622.92,172.45],[622.95,172.47],[622.98,172.48],[623.01,172.5],[623.04,172.54],[623.25,172.73],[623.27,172.76],[623.59,173.17],[623.6,173.18],[623.64,173.23],[623.65,173.25],[623.66,173.26],[623.67,173.64],[623.67,173.69],[623.67,173.89],[623.67,173.93],[623.67,173.97],[623.74,174.22],[623.75,174.27],[623.77,174.32],[623.94,174.66],[623.95,174.68],[623.96,174.71],[623.96,174.74],[623.97,174.84],[623.97,174.86],[623.97,174.88],[623.97,174.98],[623.97,175.02],[623.97,175.07],[623.97,175.09],[624.01,175.34],[624.1,175.92],[624.1,175.96],[624.1,175.98],[624.1,176.01],[624.03,176.23],[624.03,176.24],[624.03,176.26],[624.1,176.56],[624.1,176.58],[624.15,176.75],[624.16,176.78],[624.17,176.8],[624.26,176.93],[624.33,177.03],[624.34,177.05],[624.65,177.46],[624.67,177.48],[624.68,177.5],[624.75,177.77],[624.78,177.88],[624.82,177.97],[624.95,178.26],[624.96,178.28],[624.96,178.29],[624.96,178.37],[624.95,178.4],[624.96,178.42],[625,178.73],[625.04,179],[625.05,179.03],[625.07,179.06],[625.08,179.08],[625.64,179.75],[625.66,179.78],[625.67,179.8],[625.69,179.83],[625.85,180.21],[625.87,180.25],[625.88,180.28],[626.06,181.1],[626.07,181.15],[626.07,181.31],[626.08,181.58],[626.09,181.68],[626.09,182.29],[626.08,182.37],[626.04,183.48],[626.04,183.51],[626.06,183.74],[625.92,185.59],[625.92,185.61],[625.92,185.63],[625.93,185.64],[625.93,185.65],[625.95,185.66],[626.08,185.73],[626.44,185.95],[626.45,185.96],[626.45,185.97],[626.46,186],[626.65,186.69],[626.65,186.7],[626.66,186.72],[626.71,186.78],[626.72,186.8],[626.74,186.81],[626.75,186.81],[626.88,186.81],[626.88,186.81],[626.89,186.81],[627.03,186.82],[627.05,186.82],[627.06,186.83],[627.07,186.84],[627.07,186.86],[627.08,186.92],[627.09,187.01],[627.09,187.06],[627.1,187.11],[627.12,187.18],[627.15,187.24],[627.36,187.68],[627.38,187.72],[627.39,187.76],[627.47,188.14],[627.62,188.65],[627.63,188.67],[627.84,188.9],[627.86,188.92],[627.89,188.94],[627.94,188.98],[627.98,189],[628,189.02],[628.02,189.05],[628.11,189.21],[628.12,189.25],[628.13,189.28],[628.13,189.31],[628.13,189.33],[628.06,189.92],[628.06,189.97],[628.06,190],[628.08,190.15],[628.09,190.19],[628.1,190.22],[628.19,190.38],[628.23,190.45],[628.41,190.86],[628.44,190.92],[628.56,191.28],[628.72,191.6],[628.75,191.66],[628.82,191.85],[628.84,191.88],[628.98,192.06],[629.07,192.14],[629.09,192.17],[629.11,192.2],[629.13,192.23],[629.18,192.37],[629.19,192.41],[629.24,192.72],[629.25,192.77],[629.3,193.23],[629.31,193.28],[629.33,193.39],[629.34,193.43],[629.36,193.47],[629.37,193.52],[629.42,193.62],[629.43,193.64],[629.43,193.67],[629.45,193.77],[629.47,193.83],[629.52,194.2],[629.55,194.28],[629.55,194.31],[629.55,194.32],[629.53,194.53],[629.53,194.56],[629.54,194.58],[629.55,194.6],[629.6,194.64],[629.8,194.77],[629.84,194.81],[629.87,194.83],[629.9,194.85],[629.93,194.86],[629.96,194.86],[629.98,194.86],[630.03,194.85],[630.08,194.85],[630.42,194.78],[630.43,194.78],[630.45,194.77],[630.48,194.74],[630.49,194.73],[630.51,194.72],[630.53,194.72],[630.78,194.7],[630.8,194.7],[630.82,194.7],[631.39,194.79],[631.4,194.79],[631.42,194.79],[631.44,194.78],[631.46,194.78],[632.12,194.86],[632.13,194.87],[632.15,194.87],[632.27,194.95],[632.58,195.11],[632.62,195.13],[632.65,195.16],[632.85,195.37],[632.87,195.39],[632.9,195.4],[633.06,195.47],[633.1,195.48],[633.65,195.63],[633.92,195.7],[634.16,195.75],[634.18,195.76],[635.2,196.11],[635.75,196.3],[635.78,196.31],[635.81,196.31],[635.84,196.31],[635.87,196.3],[636.05,196.27],[636.15,196.24],[636.22,196.23],[636.39,196.2],[636.42,196.2],[637.01,196.01],[637.45,195.87],[638.06,195.67],[638.11,195.65],[638.31,195.55],[638.34,195.54],[638.37,195.53],[638.39,195.52],[638.42,195.52],[638.44,195.53],[638.87,195.6],[638.88,195.6],[638.9,195.61],[638.91,195.62],[638.92,195.64],[639.38,196.37],[639.44,196.44],[639.98,197.08],[640.03,197.11],[640.18,197.25],[640.2,197.27],[640.22,197.3],[640.23,197.31],[640.36,197.51],[640.39,197.55],[640.41,197.58],[640.44,197.6],[640.48,197.63],[640.42,197.7],[640.41,197.71],[640.41,197.72],[640.42,197.72],[640.42,197.73],[640.46,197.77],[640.47,197.79],[640.48,197.8],[640.49,197.81],[640.49,197.82],[640.49,197.83],[640.46,197.89],[640.45,197.9],[640.45,197.91],[640.45,197.92],[640.46,197.94],[640.47,197.96],[640.49,198.04],[640.5,198.06],[640.5,198.08],[640.5,198.09],[640.5,198.11],[640.44,198.96],[640.44,198.98],[640.44,199.01],[640.45,199.03],[641.19,200.71],[641.21,200.75],[641.23,200.78],[641.26,200.81],[641.28,200.82],[643.08,201.79],[643.13,201.82],[643.23,201.88],[644.44,202.69],[644.47,202.71],[644.51,202.76],[644.53,202.77],[644.54,202.78],[644.57,202.79],[644.86,202.82],[644.88,202.82],[645.01,202.82],[645.02,202.82],[645.03,202.81],[645.09,202.72],[645.12,202.69],[645.18,202.66],[645.38,202.6],[645.5,202.58],[645.55,202.57],[645.6,202.59],[645.65,202.57],[645.89,202.57],[646.17,202.67],[646.34,202.67],[646.53,202.67],[646.62,202.66],[646.72,202.63],[647.08,202.65],[647.33,202.64],[647.45,202.63],[647.51,202.63],[647.56,202.64],[647.72,202.67],[648.29,203.28],[648.43,203.44],[648.44,203.44],[648.44,203.45],[648.45,203.45],[648.48,203.47],[648.5,203.48],[648.51,203.5],[648.57,203.55],[648.61,203.55],[648.62,203.54],[648.63,203.53],[648.63,203.52],[648.65,203.5],[648.65,203.49],[648.66,203.48],[648.68,203.45],[648.69,203.45],[648.7,203.44],[648.74,203.43],[648.79,203.41],[648.84,203.39],[648.84,203.39],[648.85,203.38],[648.85,203.38],[648.88,203.29],[648.9,203.2],[648.91,203.18],[648.92,203.16],[648.93,203.13],[648.94,203.12],[648.94,203.12],[648.95,203.12],[648.96,203.12],[648.96,203.12],[649.04,203.17],[649.05,203.17],[649.07,203.18],[649.09,203.18],[649.15,203.17],[649.26,203.18],[649.37,203.19],[649.45,203.2],[649.72,203.28],[649.85,203.32],[649.87,203.33],[650.03,203.47],[650.22,203.6],[650.25,203.63],[650.58,203.89],[650.75,204.02],[650.84,204.08],[651,204.22],[651.16,204.31],[651.21,204.34],[651.24,204.35],[651.37,204.36],[651.42,204.39],[651.62,204.49],[651.65,204.51],[651.75,204.55],[651.77,204.56],[651.84,204.65],[651.84,204.66],[651.84,204.69],[651.84,204.72],[651.84,204.73],[651.85,204.75],[652.02,204.95],[652.09,205.03],[652.44,205.45],[652.78,205.86],[653.08,206.21],[653.14,206.28],[653.5,206.61],[653.79,206.87],[653.97,207.02],[654.2,207.2],[654.35,207.28],[654.68,207.47],[654.72,207.51],[654.74,207.56],[654.77,207.6],[655.02,207.84],[655.13,207.94],[655.45,208.18],[655.51,208.22],[655.56,208.23],[655.79,208.23],[655.89,208.19],[655.94,208.21],[655.99,208.18],[656.04,208.18],[656.1,208.19],[656.16,208.19],[656.25,208.22],[656.46,208.26],[656.56,208.32],[656.6,208.33],[656.71,208.4],[656.79,208.47],[656.82,208.49],[656.97,208.6],[657.08,208.69],[657.12,208.73],[657.17,208.79],[657.19,208.81],[657.25,208.81],[657.3,208.81],[657.35,208.82],[657.44,208.87],[657.59,208.93],[657.64,208.97],[657.69,208.99],[657.79,209.01],[657.84,209.03],[657.89,209.06],[657.99,209.19],[658.1,209.31],[658.15,209.4],[658.24,209.53],[658.3,209.61],[658.35,209.66],[658.36,209.7],[658.37,209.74],[658.39,209.77],[658.4,209.77],[658.4,209.78],[658.41,209.81],[658.42,209.86],[658.46,209.97],[658.5,210.07],[658.52,210.13],[658.56,210.2],[658.59,210.24],[658.59,210.24],[658.59,210.25],[658.6,210.25],[658.71,210.31],[658.72,210.31],[658.74,210.32],[658.82,210.34],[658.83,210.34],[659.07,210.53],[659.34,210.74],[659.43,210.81],[659.45,210.83],[659.83,211.34],[660.01,211.57],[660.11,211.71],[660.36,212.05],[660.76,212.53],[660.97,212.8],[660.97,212.8],[661.04,212.88],[661.12,212.97],[661.39,213.21],[661.57,213.37],[661.6,213.39],[661.79,213.51],[661.94,213.61],[661.96,213.62],[661.97,213.64],[662.02,213.69],[662.03,213.69],[662.64,214.08],[662.96,214.29],[662.99,214.3],[663.09,214.37],[663.11,214.38],[663.12,214.39],[663.12,214.4],[663.12,214.4],[663.13,214.4],[663.13,214.41],[663.15,214.42],[663.16,214.44],[663.44,214.63],[663.46,214.64],[663.58,214.74],[663.6,214.75],[663.64,214.77],[663.69,214.8],[663.7,214.8],[663.86,214.9],[663.88,214.91],[663.89,214.92],[663.89,214.92],[663.9,214.92],[663.91,214.94],[663.93,214.95],[664,214.99],[664,214.99],[664.11,215.06],[664.13,215.07],[664.14,215.08],[664.15,215.09],[664.15,215.09],[664.15,215.09],[664.15,215.09],[664.16,215.09],[664.16,215.09],[664.16,215.09],[664.16,215.08],[664.16,215.08],[664.25,215.06],[664.25,215.06],[664.26,215.06],[664.26,215.06],[664.26,215.06],[664.26,215.06],[664.26,215.06],[664.26,215.06],[664.27,215.06],[664.27,215.06],[664.27,215.05],[664.28,215.05],[664.3,215.05],[664.32,215.04],[664.34,215.04],[664.35,215.04],[664.37,215.04],[664.38,215.04],[664.39,215.03],[664.4,215.03],[664.44,215],[664.44,215],[664.47,214.97],[664.47,214.97],[664.47,214.97],[664.48,214.97],[664.48,214.97],[664.49,214.97],[664.54,215],[664.54,215],[664.55,215.01],[664.58,215.04],[664.58,215.04],[664.58,215.05],[664.59,215.05],[664.59,215.06],[664.59,215.06],[664.6,215.07],[664.61,215.09],[664.61,215.09],[664.65,215.12],[664.68,215.14],[664.72,215.17],[664.75,215.19],[664.76,215.19],[664.76,215.2],[664.76,215.21],[664.76,215.21],[664.76,215.22],[664.74,215.34],[664.74,215.36],[664.73,215.38],[664.74,215.38],[664.75,215.39],[664.76,215.39],[664.76,215.4],[664.77,215.4],[664.94,215.48],[664.97,215.5],[664.99,215.51],[665.01,215.51],[665.02,215.52],[665.02,215.52],[665.05,215.55],[665.07,215.56],[665.63,215.93],[665.65,215.94],[665.67,215.94],[665.77,215.98],[665.78,215.98],[665.79,215.98],[665.8,215.98],[665.8,215.99],[665.8,215.99],[665.81,216],[665.81,216],[665.83,216.05],[665.83,216.05],[665.83,216.06],[665.84,216.06],[665.85,216.07],[665.89,216.11],[665.9,216.12],[665.91,216.13],[665.92,216.14],[665.94,216.16],[665.94,216.17],[665.95,216.18],[665.96,216.19],[666.01,216.24],[666.03,216.25],[666.03,216.26],[666.04,216.26],[666.04,216.27],[666.05,216.28],[666.06,216.3],[666.1,216.36],[666.12,216.39],[666.13,216.4],[666.13,216.41],[666.14,216.42],[666.15,216.43],[666.16,216.45],[666.16,216.46],[666.21,216.53],[666.22,216.53],[666.41,216.75],[666.58,216.94],[666.58,216.94],[666.59,216.95],[666.6,216.96],[666.81,217.13],[666.95,217.24],[667.2,217.44],[667.21,217.45],[667.24,217.47],[667.48,217.61],[667.51,217.62],[667.64,217.69],[667.71,217.72],[667.84,217.79],[667.85,217.8],[668.1,218.03],[668.1,218.03],[668.12,218.04],[668.17,218.08],[668.18,218.09],[668.18,218.09],[668.19,218.09],[668.19,218.09],[668.21,218.1],[668.21,218.1],[668.22,218.11],[668.24,218.11],[668.26,218.12],[668.28,218.13],[668.29,218.13],[668.31,218.14],[668.39,218.21],[668.59,218.37],[668.61,218.39],[668.62,218.39],[668.62,218.4],[668.63,218.4],[668.72,218.48],[668.73,218.48],[668.81,218.53],[668.93,218.59],[668.94,218.59],[668.94,218.6],[668.94,218.6],[668.94,218.61],[668.94,218.63],[668.94,218.64],[668.94,218.65],[668.94,218.66],[668.98,218.68],[669.61,219.07],[669.66,219.1],[669.67,219.1],[669.67,219.11],[669.68,219.11],[669.68,219.12],[669.68,219.12],[669.69,219.13],[669.69,219.13],[669.69,219.14],[669.7,219.14],[669.7,219.14],[669.7,219.14],[669.7,219.15],[669.71,219.38],[669.72,219.64],[669.72,219.65],[669.71,219.69],[669.71,219.7],[669.72,219.81],[669.72,219.81],[669.72,219.84],[669.72,219.87],[669.72,219.88],[669.72,219.89],[669.74,219.95],[669.74,219.97],[669.75,219.98],[669.76,220],[669.82,220.1],[669.83,220.12],[669.84,220.14],[669.97,220.53],[669.97,220.53],[669.97,220.55],[669.98,220.55],[669.98,220.57],[669.98,220.58],[670,220.64],[670.01,220.66],[670.01,220.66],[670.02,220.67],[670.03,220.69],[670.03,220.69],[670.03,220.7],[670.03,220.7],[670.04,220.71],[670.04,220.71],[670.05,220.74],[670.05,220.74],[670.06,220.75],[670.06,220.75],[670.06,220.76],[670.05,220.78],[670.05,220.78],[670.05,220.79],[670.06,220.81],[670.06,220.82],[670.07,220.83],[670.07,220.84],[670.08,220.84],[670.08,220.85],[670.09,220.85],[670.1,220.86],[670.11,220.86],[670.25,220.91],[670.26,220.92],[670.26,220.92],[670.32,220.97],[670.34,220.99],[670.35,221],[670.36,221.01],[670.36,221.02],[670.37,221.03],[670.37,221.03],[670.37,221.04],[670.62,221.41],[670.68,221.5],[670.75,221.62],[670.77,221.67],[670.78,221.69],[670.79,221.7],[670.84,221.76],[670.84,221.76],[671.03,221.99],[671.04,222],[671.04,222],[671.07,222.07],[671.08,222.08],[671.09,222.09],[671.09,222.1],[671.1,222.11],[671.1,222.12],[671.13,222.16],[671.13,222.17],[671.13,222.17],[671.14,222.18],[671.19,222.25],[671.19,222.26],[671.2,222.26],[671.21,222.27],[671.24,222.29],[671.25,222.29],[671.25,222.29],[671.27,222.3],[671.28,222.3],[671.29,222.31],[671.29,222.31],[671.3,222.31],[671.32,222.32],[671.33,222.32],[671.33,222.32],[671.34,222.33],[671.35,222.34],[671.37,222.36],[671.39,222.38],[671.41,222.4],[671.41,222.41],[671.42,222.41],[671.42,222.41],[671.43,222.42],[671.44,222.43],[671.44,222.43],[671.45,222.44],[671.48,222.46],[671.49,222.47],[671.49,222.47],[671.5,222.48],[671.5,222.49],[671.51,222.5],[671.51,222.51],[671.52,222.52],[671.53,222.53],[671.54,222.54],[671.54,222.54],[671.54,222.54],[671.55,222.54],[671.55,222.55],[671.55,222.55],[671.55,222.55],[671.56,222.54],[671.56,222.54],[671.57,222.53],[671.57,222.53],[671.57,222.52],[671.57,222.52],[671.57,222.52],[671.57,222.52],[671.58,222.52],[671.58,222.51],[671.58,222.51],[671.59,222.51],[671.59,222.5],[671.59,222.5],[671.59,222.5],[671.6,222.49],[671.6,222.48],[671.59,222.48],[671.59,222.47],[671.59,222.47],[671.59,222.47],[671.59,222.47],[671.59,222.46],[671.58,222.46],[671.58,222.45],[671.58,222.44],[671.58,222.44],[671.57,222.44],[671.57,222.43],[671.57,222.43],[671.57,222.43],[671.56,222.42],[671.56,222.42],[671.56,222.41],[671.56,222.41],[671.56,222.4],[671.57,222.39],[671.57,222.38],[671.58,222.38],[671.58,222.38],[671.6,222.36],[671.61,222.35],[671.64,222.32],[671.66,222.3],[671.69,222.28],[671.7,222.27],[671.71,222.26],[671.81,222.15],[671.88,222.09],[671.89,222.08],[671.9,222.07],[671.91,222.07],[671.93,222.07],[671.94,222.07],[671.97,222.08],[671.97,222.08],[671.98,222.08],[672.08,222.07],[672.08,222.07],[672.1,222.07],[672.11,222.07],[672.13,222.08],[672.13,222.08],[672.14,222.08],[672.14,222.08],[672.14,222.08],[672.14,222.09],[672.14,222.09],[672.14,222.08],[672.15,222.08],[672.15,222.08],[672.15,222.08],[672.16,222.08],[672.19,222.09],[672.21,222.1],[672.27,222.11],[672.28,222.11],[672.29,222.11],[672.3,222.11],[672.3,222.11],[672.31,222.1],[672.49,222.02],[672.5,222.01],[672.51,222.01],[672.68,221.84],[672.69,221.83],[672.71,221.82],[672.73,221.81],[672.74,221.8],[672.76,221.79],[672.78,221.79],[672.79,221.78],[672.8,221.77],[672.85,221.74],[672.85,221.73],[672.86,221.73],[672.86,221.72],[672.87,221.72],[672.87,221.71],[672.88,221.71],[672.88,221.71],[672.89,221.7],[672.9,221.69],[672.92,221.69],[672.94,221.68],[673,221.67],[673.01,221.67],[673.03,221.66],[673.13,221.63],[673.14,221.62],[673.15,221.62],[673.15,221.62],[673.16,221.62],[673.16,221.62],[673.17,221.62],[673.17,221.62],[673.17,221.62],[673.17,221.62],[673.18,221.61],[673.18,221.61],[673.18,221.61],[673.26,221.59],[673.27,221.59],[673.37,221.57],[673.38,221.56],[673.39,221.56],[673.4,221.56],[673.4,221.56],[673.42,221.56],[673.51,221.57],[673.53,221.57],[673.55,221.58],[673.58,221.59],[673.59,221.6],[673.63,221.61],[673.64,221.62],[673.64,221.62],[673.64,221.62],[673.65,221.62],[673.65,221.62],[673.65,221.62],[673.65,221.62],[673.66,221.61],[673.67,221.61],[673.67,221.61],[673.68,221.6],[673.68,221.6],[673.69,221.59],[673.69,221.59],[673.75,221.55],[673.76,221.55],[673.77,221.55],[673.77,221.54],[673.81,221.53],[673.86,221.51],[673.87,221.5],[673.88,221.5],[673.89,221.49],[673.9,221.49],[673.91,221.48],[673.92,221.47],[673.93,221.47],[673.93,221.47],[673.94,221.46],[673.94,221.46],[673.94,221.46],[673.95,221.46],[673.95,221.46],[673.96,221.46],[673.98,221.46],[673.98,221.46],[673.99,221.46],[673.99,221.45],[674,221.45],[674,221.44],[674,221.44],[673.99,221.43],[673.99,221.42],[673.99,221.42],[673.99,221.42],[673.99,221.42],[673.99,221.41],[673.99,221.41],[673.99,221.41],[674,221.4],[674,221.4],[674,221.39],[674,221.39],[674,221.39],[674.01,221.39],[674.08,221.35],[674.09,221.35],[674.09,221.34],[674.14,221.3],[674.15,221.29],[674.16,221.28],[674.17,221.27],[674.31,221.21],[674.31,221.21],[674.32,221.2],[674.32,221.19],[674.33,221.18],[674.34,221.17],[674.35,221.15],[674.37,221.11],[674.38,221.1],[674.39,221.1],[674.39,221.09],[674.4,221.09],[674.41,221.09],[674.42,221.09],[674.43,221.09],[674.47,221.09],[674.49,221.09],[674.74,221.03],[674.76,221.03],[674.78,221.02],[674.92,220.99],[674.98,220.98],[674.99,220.98],[674.99,220.98],[675.05,220.99],[675.06,220.99],[675.07,220.99],[675.15,221.02],[675.15,221.02],[675.15,221.02],[675.15,221.02],[675.16,221.02],[675.16,221.02],[675.16,221],[675.16,221],[675.17,220.99],[675.17,220.99],[675.17,220.99],[675.17,220.98],[675.17,220.98],[675.17,220.98],[675.19,220.99],[675.2,220.99],[675.22,220.98],[675.24,220.98],[675.27,220.97],[675.27,220.97],[675.29,220.97],[675.36,220.97],[675.37,220.97],[675.38,220.98],[675.41,220.98],[675.43,220.99],[675.43,220.99],[675.46,220.99],[675.47,221],[675.49,221],[675.5,221],[675.51,221],[675.51,221],[675.51,221],[675.52,220.99],[675.52,220.99],[675.53,220.99],[675.55,220.99],[675.57,220.98],[675.58,220.98],[675.61,220.98],[675.63,220.98],[675.63,220.98],[675.63,220.98],[675.64,220.98],[675.65,220.97],[675.66,220.97],[675.66,220.97],[675.67,220.97],[675.68,220.97],[675.68,220.97],[675.72,220.98],[675.79,220.99],[675.83,221],[675.86,221.01],[675.87,221.01],[675.87,221.01],[675.89,221.01],[675.91,221.02],[675.92,221.02],[675.93,221.02],[675.93,221.02],[675.93,221.03],[675.94,221.03],[675.94,221.03],[675.98,221.03],[676.02,221.03],[676.04,221.03],[676.05,221.04],[676.05,221.04],[676.11,221.07],[676.13,221.08],[676.14,221.09],[676.15,221.09],[676.16,221.1],[676.17,221.11],[676.18,221.11],[676.2,221.13],[676.2,221.13],[676.21,221.13],[676.22,221.14],[676.23,221.14],[676.24,221.15],[676.26,221.16],[676.28,221.17],[676.31,221.19],[676.31,221.19],[676.32,221.19],[676.32,221.19],[676.32,221.19],[676.33,221.19],[676.34,221.19],[676.39,221.19],[676.39,221.19],[676.4,221.19],[676.41,221.19],[676.45,221.2],[676.45,221.2],[676.49,221.22],[676.49,221.22],[676.5,221.22],[676.51,221.22],[676.52,221.21],[676.54,221.21],[676.56,221.22],[676.59,221.22],[676.61,221.22],[676.61,221.22],[676.67,221.22],[676.67,221.22],[676.68,221.22],[676.71,221.22],[676.72,221.22],[676.73,221.22],[676.78,221.23],[676.8,221.23],[676.82,221.23],[676.83,221.23],[676.85,221.23],[676.86,221.23],[676.87,221.23],[676.88,221.23],[676.89,221.23],[676.91,221.24],[676.94,221.25],[676.96,221.26],[676.98,221.26],[676.99,221.26],[677,221.26],[677.03,221.26],[677.04,221.26],[677.06,221.27],[677.07,221.27],[677.1,221.28],[677.11,221.28],[677.12,221.29],[677.15,221.29],[677.2,221.29],[677.22,221.3],[677.23,221.3],[677.26,221.29],[677.27,221.29],[677.29,221.3],[677.31,221.3],[677.34,221.3],[677.36,221.31],[677.38,221.31],[677.4,221.31],[677.42,221.32],[677.44,221.32],[677.46,221.32],[677.47,221.33],[677.49,221.33],[677.5,221.33],[677.5,221.33],[677.51,221.33],[677.52,221.31],[677.53,221.31],[677.54,221.28],[677.54,221.28],[677.55,221.27],[677.59,221.22],[677.67,221.15],[677.67,221.15],[677.67,221.14],[677.68,221.14],[677.68,221.14],[677.69,221.13],[677.69,221.13],[677.7,221.12],[677.71,221.12],[677.75,221.08],[677.77,221.07],[677.79,221.06],[677.8,221.05],[677.82,221.04],[677.83,221.04],[677.83,221.03],[677.84,221.02],[677.85,221.01],[677.85,220.99],[677.85,220.97],[677.86,220.96],[677.85,220.95],[677.85,220.9],[677.85,220.9],[677.85,220.89],[677.85,220.89],[677.85,220.89],[677.85,220.89],[677.95,220.84],[678.02,220.81],[678.26,220.62],[678.27,220.62],[678.28,220.62],[678.32,220.61],[678.34,220.6],[678.35,220.59],[678.47,220.49],[678.52,220.45],[678.57,220.42],[678.59,220.4],[678.6,220.39],[678.69,220.27],[678.76,220.17],[678.77,220.16],[678.78,220.12],[678.79,220.1],[678.8,220.09],[678.83,220.07],[678.85,220.06],[678.86,220.04],[678.87,220.02],[678.88,219.94],[678.88,219.93],[678.89,219.92],[678.9,219.91],[679.03,219.79],[679.06,219.78],[679.5,219.55],[679.53,219.54],[679.54,219.53],[679.56,219.52],[679.56,219.52],[679.59,219.5],[679.62,219.48],[679.64,219.47],[679.65,219.46],[679.67,219.45],[679.69,219.45],[679.69,219.44],[679.69,219.45],[679.7,219.45],[679.7,219.45],[679.71,219.45],[679.71,219.46],[679.72,219.46],[679.73,219.45],[679.73,219.45],[679.73,219.45],[679.74,219.45],[679.74,219.45],[679.74,219.45],[679.75,219.44],[679.75,219.44],[679.75,219.43],[679.76,219.42],[679.77,219.42],[679.77,219.41],[679.78,219.41],[679.79,219.41],[679.8,219.41],[679.8,219.41],[679.81,219.41],[679.81,219.4],[679.81,219.4],[679.82,219.4],[679.82,219.39],[679.83,219.39],[679.83,219.38],[679.84,219.37],[679.84,219.37],[679.85,219.37],[679.85,219.37],[679.85,219.36],[679.85,219.36],[679.86,219.36],[679.87,219.35],[679.88,219.35],[679.89,219.35],[679.9,219.35],[679.91,219.34],[679.92,219.33],[679.95,219.32],[679.96,219.31],[679.99,219.3],[680.05,219.27],[680.08,219.26],[680.97,218.86],[680.99,218.85],[681.01,218.84],[681.05,218.82],[681.1,218.8],[681.13,218.79],[681.17,218.78],[681.18,218.78],[681.19,218.77],[681.28,218.73],[681.29,218.72],[681.29,218.72],[681.31,218.71],[681.29,218.59],[681.58,218.24],[681.58,218.23],[681.58,218.2],[681.58,218.2],[681.58,218.19],[681.59,218.18],[681.59,218.18],[681.6,218.11],[681.6,218.1],[681.6,218.09],[681.61,218.08],[681.61,218.07],[681.61,218.06],[681.61,218.05],[681.61,218.04],[681.61,218.04],[681.61,218.03],[681.6,218.02],[681.59,218.01],[681.59,218.01],[681.59,218],[681.59,218],[681.6,217.99],[681.6,217.98],[681.64,217.98],[681.66,217.97],[681.69,217.96],[681.72,217.95],[681.8,217.85],[681.81,217.85],[681.83,217.85],[681.84,217.86],[681.87,217.88],[681.92,217.88],[681.93,217.89],[682.04,217.94],[682.04,217.95],[682.18,217.94],[682.19,217.94],[682.2,217.94],[682.21,217.95],[682.24,217.97],[682.24,217.97],[682.24,217.97],[682.26,217.98],[682.27,217.98],[682.27,217.98],[682.27,217.99],[682.29,217.99],[682.29,217.99],[682.34,218],[682.36,218],[682.38,218],[682.39,218],[682.4,218],[682.4,218],[682.41,218],[682.44,218.03],[682.44,218.04],[682.45,218.04],[682.47,218.05],[682.48,218.06],[682.54,218.09],[682.55,218.09],[682.58,218.1],[682.6,218.11],[682.61,218.11],[682.62,218.16],[682.63,218.15],[682.67,218.12],[682.71,218.09],[682.93,217.91],[683.06,217.81],[683.19,217.7],[683.22,217.68],[683.23,217.67],[683.24,217.66],[683.49,217.52],[683.52,217.51],[683.68,217.45],[683.69,217.45],[683.7,217.45],[683.71,217.45],[683.71,217.45],[683.96,217.45],[684.39,217.46],[684.4,217.46],[685.11,217.51],[685.26,217.52],[685.97,217.57],[685.99,217.57],[686,217.57],[686.03,217.58],[686.05,217.59],[686.06,217.59],[686.07,217.59],[686.08,217.59],[686.09,217.59],[686.11,217.58],[686.15,217.57],[686.16,217.57],[686.17,217.57],[686.17,217.57],[686.19,217.57],[686.2,217.57],[686.21,217.57],[686.21,217.58],[686.22,217.58],[686.24,217.6],[686.25,217.61],[686.26,217.61],[686.27,217.62],[686.28,217.62],[686.29,217.62],[686.33,217.63],[686.34,217.63],[686.55,217.64],[686.79,217.66],[686.82,217.66],[686.87,217.67],[686.91,217.67],[687.05,217.66],[687.09,217.65],[687.11,217.65],[687.23,217.61],[687.26,217.6],[687.28,217.6],[687.46,217.59],[687.49,217.59],[687.55,217.6],[687.56,217.61],[687.56,217.62],[687.57,217.63],[687.57,217.65],[687.58,217.66],[687.59,217.67],[687.6,217.68],[687.62,217.68],[687.9,217.74],[687.91,217.74],[687.99,217.78],[688.37,217.94],[688.6,218.07],[688.66,218.1],[688.74,218.13],[688.81,218.15],[688.87,218.16],[688.94,218.17],[689.11,218.18],[689.15,218.19],[689.22,218.2],[689.3,218.22],[689.33,218.22],[689.5,218.23],[689.53,218.23],[689.67,218.23],[689.92,218.21],[689.96,218.21],[690.13,218.21],[690.15,218.21],[690.18,218.21],[690.21,218.21],[690.24,218.21],[690.35,218.23],[690.37,218.23],[690.58,218.21],[690.6,218.21],[690.62,218.21],[690.64,218.22],[691.14,218.39],[691.38,218.42],[691.46,218.43],[691.55,218.45],[691.82,218.48],[691.88,218.49],[692.01,218.51],[692.07,218.52],[692.14,218.53],[692.19,218.54],[692.23,218.54],[692.23,218.54],[692.24,218.53],[692.26,218.53],[692.27,218.53],[692.3,218.53],[692.31,218.53],[692.32,218.53],[692.33,218.53],[692.34,218.53],[692.35,218.53],[692.43,218.53],[692.51,218.52],[692.52,218.53],[692.55,218.53],[692.56,218.53],[692.58,218.54],[692.59,218.55],[692.61,218.56],[692.63,218.56],[692.66,218.58],[692.76,218.63],[692.78,218.64],[692.81,218.64],[692.84,218.65],[692.89,218.66],[692.92,218.67],[692.95,218.68],[692.98,218.69],[692.99,218.7],[693.01,218.7],[693.03,218.71],[693.07,218.72],[693.24,218.75],[693.34,218.77],[693.4,218.77],[693.45,218.77],[693.49,218.77],[693.51,218.78],[693.59,218.81],[693.65,218.84],[693.67,218.85],[693.69,218.86],[693.74,218.86],[693.84,218.88],[693.87,218.89],[693.89,218.89],[693.98,218.89],[694.02,218.89],[694.03,218.89],[694.06,218.9],[694.08,218.9],[694.1,218.9],[694.12,218.9],[694.14,218.9],[694.15,218.9],[694.17,218.91],[694.2,218.91],[694.24,218.92],[694.29,218.92],[694.31,218.93],[694.31,218.93],[694.34,218.95],[694.37,218.96],[694.45,219],[694.54,219.05],[694.6,219.07],[694.69,219.09],[694.79,219.1],[694.85,219.1],[694.86,219.1],[694.9,219.1],[694.91,219.1],[694.92,219.1],[694.97,219.12],[694.98,219.13],[695.01,219.14],[695.04,219.15],[695.16,219.15],[695.21,219.15],[695.23,219.15],[695.23,219.15],[695.24,219.15],[695.25,219.15],[695.29,219.14],[695.37,219.11],[695.4,219.1],[695.41,219.1],[695.44,219.08],[695.49,219.06],[695.53,219.04],[695.54,219.04],[695.55,219.03],[695.66,218.99],[695.75,218.96],[695.75,218.96],[695.75,218.96],[695.75,218.96],[695.75,218.96],[695.75,218.96],[695.78,218.95],[695.78,218.95],[695.87,218.95],[695.91,218.94],[695.92,218.94],[695.93,218.94],[695.94,218.94],[695.95,218.94],[695.97,218.93],[696,218.92],[696.03,218.92],[696.05,218.91],[696.07,218.9],[696.09,218.9],[696.12,218.89],[696.13,218.89],[696.16,218.89],[696.18,218.88],[696.2,218.88],[696.22,218.88],[696.25,218.87],[696.26,218.87],[696.27,218.87],[696.27,218.87],[696.3,218.87],[696.3,218.87],[696.31,218.87],[696.32,218.86],[696.33,218.86],[696.35,218.85],[696.38,218.85],[696.4,218.84],[696.4,218.84],[696.41,218.84],[696.42,218.83],[696.43,218.83],[696.46,218.82],[696.48,218.82],[696.5,218.81],[696.56,218.78],[696.57,218.77],[696.58,218.77],[696.58,218.76],[696.59,218.76],[696.59,218.76],[696.59,218.76],[696.6,218.76],[696.62,218.76],[696.62,218.76],[696.63,218.76],[696.64,218.76],[696.65,218.76],[696.65,218.76],[696.67,218.76],[696.68,218.75],[696.72,218.75],[696.73,218.75],[696.75,218.74],[696.77,218.74],[696.77,218.74],[696.77,218.74],[696.79,218.74],[696.88,218.77],[696.89,218.77],[696.9,218.77],[697.01,218.76],[697.13,218.77],[697.19,218.77],[697.26,218.78],[697.29,218.79],[697.41,218.81],[697.46,218.82],[697.46,218.82],[697.47,218.83],[697.48,218.83],[697.49,218.83],[697.5,218.83],[697.51,218.83],[697.53,218.83],[697.54,218.83],[697.54,218.82],[697.56,218.82],[697.57,218.82],[697.57,218.82],[697.58,218.82],[697.58,218.82],[697.59,218.82],[697.59,218.82],[697.6,218.82],[697.61,218.82],[697.61,218.82],[697.61,218.82],[697.62,218.82],[697.63,218.82],[697.63,218.82],[697.64,218.82],[697.67,218.83],[697.67,218.83],[697.68,218.83],[697.71,218.82],[697.74,218.81],[697.74,218.8],[697.75,218.8],[697.79,218.78],[697.81,218.78],[697.81,218.77],[697.83,218.76],[697.83,218.75],[697.85,218.75],[697.85,218.74],[697.87,218.73],[697.87,218.73],[697.88,218.73],[697.88,218.73],[697.89,218.73],[697.9,218.72],[697.91,218.72],[697.93,218.71],[697.96,218.7],[697.98,218.7],[697.98,218.7],[698.01,218.69],[698.03,218.69],[698.05,218.68],[698.06,218.68],[698.1,218.68],[698.15,218.68],[698.21,218.67],[698.26,218.67],[698.27,218.67],[698.32,218.67],[698.37,218.66],[698.39,218.66],[698.41,218.66],[698.47,218.66],[698.53,218.66],[698.53,218.66],[698.55,218.65],[698.55,218.65],[698.56,218.65],[698.57,218.65],[698.58,218.65],[698.6,218.65],[698.61,218.65],[698.62,218.65],[698.64,218.65],[698.65,218.65],[698.65,218.65],[698.67,218.64],[698.68,218.64],[698.69,218.64],[698.69,218.64],[698.71,218.63],[698.73,218.63],[698.74,218.62],[698.76,218.61],[698.77,218.61],[698.77,218.61],[698.79,218.6],[698.82,218.6],[698.83,218.59],[698.84,218.59],[698.87,218.59],[698.88,218.59],[698.93,218.59],[698.94,218.59],[698.98,218.58],[698.99,218.58],[698.99,218.58],[699,218.58],[699.01,218.57],[699.03,218.57],[699.03,218.56],[699.04,218.56],[699.04,218.56],[699.06,218.56],[699.06,218.56],[699.07,218.56],[699.09,218.56],[699.09,218.56],[699.11,218.56],[699.13,218.55],[699.14,218.55],[699.19,218.55],[699.23,218.54],[699.25,218.54],[699.26,218.54],[699.3,218.53],[699.32,218.53],[699.33,218.53],[699.34,218.53],[699.34,218.53],[699.34,218.53],[699.34,218.53],[699.34,218.52],[699.34,218.52],[699.33,218.52],[699.33,218.51],[699.33,218.51],[699.33,218.51],[699.33,218.51],[699.33,218.51],[699.33,218.47],[699.33,218.46],[699.34,218.41],[699.34,218.41],[699.34,218.4],[699.34,218.4],[699.34,218.38],[699.34,218.38],[699.35,218.38],[699.35,218.38],[699.39,218.28],[699.39,218.27],[699.39,218.27],[699.39,218.26],[699.4,218.22],[699.41,218.17],[699.41,218.14],[699.42,218.12],[699.42,218.11],[699.42,218.11],[699.43,218.1],[699.43,218.1],[699.43,218.1],[699.44,218.09],[699.44,218.09],[699.44,218.09],[699.44,218.09],[699.45,218.09],[699.45,218.09],[699.46,218.09],[699.46,218.09],[699.46,218.09],[699.47,218.09],[699.49,218.08],[699.55,218.08],[699.61,218.07],[699.64,218.07],[699.65,218.07],[699.66,218.07],[699.74,218.06],[699.75,218.06],[699.75,218.06],[699.75,218.06],[699.76,218.06],[699.76,218.06],[699.76,218.05],[699.78,218.05],[699.78,218.05],[699.79,218.05],[699.79,218.05],[699.82,218.04],[699.83,218.04],[699.83,218.04],[699.84,218.04],[699.85,218.03],[699.87,218.03],[699.88,218.03],[699.89,218.02],[699.9,218.02],[700.08,217.98],[700.14,217.96],[700.18,217.95],[700.19,217.95],[700.2,217.95],[700.2,217.95],[700.2,217.95],[700.2,217.95],[700.21,217.95],[700.21,217.95],[700.21,217.95],[700.23,217.94],[700.23,217.94],[700.24,217.94],[700.25,217.94],[700.26,217.94],[700.26,217.94],[700.26,217.93],[700.31,217.92],[700.31,217.92],[700.31,217.92],[700.32,217.92],[700.32,217.92],[700.33,217.92],[700.33,217.92],[700.33,217.92],[700.34,217.92],[700.34,217.92],[700.35,217.92],[700.35,217.92],[700.36,217.92],[700.37,217.92],[700.37,217.93],[700.37,217.93],[700.38,217.93],[700.39,217.93],[700.39,217.93],[700.44,217.93],[700.46,217.93],[700.49,217.93],[700.49,217.93],[700.5,217.94],[700.5,217.94],[700.5,217.94],[700.51,217.94],[700.51,217.94],[700.51,217.94],[700.51,217.94],[700.52,217.95],[700.53,217.95],[700.54,217.95],[700.55,217.96],[700.57,217.97],[700.58,217.97],[700.58,217.97],[700.58,217.97],[700.59,217.97],[700.59,217.98],[700.6,217.98],[700.6,217.98],[700.61,217.98],[700.62,217.98],[700.64,217.98],[700.65,217.97],[700.65,217.96],[700.65,217.96],[700.66,217.93],[700.68,217.91],[700.69,217.89],[700.7,217.88],[700.7,217.86],[700.71,217.85],[700.71,217.84],[700.72,217.84],[700.72,217.82],[700.73,217.8],[700.73,217.79],[700.73,217.79],[700.73,217.78],[700.74,217.78],[700.74,217.77],[700.75,217.77],[700.76,217.74],[700.77,217.72],[700.78,217.71],[700.79,217.69],[700.8,217.67],[700.81,217.65],[700.82,217.62],[700.84,217.57],[700.84,217.57],[700.85,217.56],[700.85,217.56],[700.85,217.55],[700.86,217.55],[700.86,217.54],[700.87,217.54],[700.87,217.53],[700.88,217.53],[700.88,217.52],[700.88,217.52],[700.91,217.45],[700.91,217.44],[700.91,217.43],[700.92,217.42],[700.94,217.39],[700.97,217.35],[700.97,217.35],[700.98,217.34],[700.98,217.34],[700.98,217.34],[700.99,217.34],[700.99,217.34],[701,217.34],[701,217.33],[701,217.33],[701,217.33],[701.01,217.32],[701.01,217.32],[701.01,217.31],[701.01,217.3],[701.01,217.24],[701.01,217.2],[701,217.09],[700.99,216.99],[700.99,216.99],[700.99,216.98],[700.99,216.98],[700.99,216.97],[700.99,216.96],[700.99,216.93],[700.99,216.85],[701,216.52],[701,216.51],[700.98,216.38],[700.98,216.37],[700.99,216.32],[700.99,216.32],[701,216.31],[701.08,216.2],[701.09,216.2],[701.09,216.19],[701.09,216.18],[701.1,216.13],[701.1,216.07],[701.11,216.05],[701.11,216],[701.12,215.99],[701.12,215.97],[701.12,215.96],[701.13,215.92],[701.14,215.91],[701.16,215.87],[701.18,215.85],[701.19,215.84],[701.2,215.83],[701.21,215.83],[701.24,215.81],[701.26,215.8],[701.27,215.79],[701.28,215.79],[701.29,215.78],[701.29,215.77],[701.29,215.76],[701.3,215.76],[701.3,215.75],[701.3,215.74],[701.3,215.73],[701.3,215.73],[701.3,215.72],[701.3,215.72],[701.3,215.71],[701.3,215.71],[701.29,215.7],[701.3,215.7],[701.3,215.7],[701.3,215.69],[701.31,215.69],[701.38,215.66],[701.39,215.66],[701.4,215.66],[701.41,215.64],[701.43,215.64],[701.48,215.61],[701.58,215.57],[701.61,215.55],[701.63,215.54],[701.65,215.53],[701.66,215.52],[701.67,215.51],[701.68,215.5],[701.69,215.5],[701.7,215.5],[701.72,215.5],[701.72,215.5],[701.73,215.49],[701.73,215.49],[701.74,215.48],[701.74,215.48],[701.73,215.45],[701.73,215.44],[701.73,215.43],[701.73,215.43],[701.74,215.42],[701.77,215.4],[701.79,215.38],[701.8,215.37],[701.81,215.36],[701.84,215.33],[701.93,215.26],[701.94,215.25],[701.95,215.25],[701.96,215.24],[702.07,215.18],[702.09,215.17],[702.1,215.16],[702.25,215.05],[702.28,215.03],[702.48,214.88],[702.55,214.82],[702.56,214.82],[702.56,214.81],[702.57,214.81],[702.58,214.81],[702.59,214.81],[702.6,214.8],[702.62,214.8],[702.64,214.78],[702.66,214.77],[702.69,214.76],[702.71,214.76],[702.73,214.75],[702.74,214.75],[702.76,214.75],[702.8,214.74],[702.8,214.74],[702.81,214.73],[702.82,214.72],[702.82,214.72],[702.83,214.72],[702.84,214.72],[702.84,214.72],[702.84,214.71],[702.85,214.71],[702.86,214.71],[702.86,214.7],[702.87,214.7],[702.88,214.69],[702.88,214.68],[702.9,214.66],[702.92,214.65],[702.92,214.64],[702.94,214.6],[702.94,214.59],[702.95,214.58],[702.96,214.57],[702.99,214.52],[703,214.51],[703,214.51],[703.02,214.49],[703.03,214.49],[703.04,214.48],[703.04,214.47],[703.04,214.46],[703.05,214.46],[703.09,214.4],[703.1,214.38],[703.11,214.37],[703.12,214.36],[703.13,214.36],[703.13,214.36],[703.14,214.36],[703.15,214.36],[703.16,214.36],[703.16,214.36],[703.19,214.36],[703.21,214.36],[703.23,214.37],[703.24,214.38],[703.32,214.41],[703.52,214.51],[703.53,214.52],[703.53,214.52],[703.55,214.52],[703.88,214.57],[704.35,214.64],[704.66,214.69],[704.98,214.74],[705.26,214.79],[705.39,214.81],[705.69,214.85],[706.39,214.97],[706.4,214.97],[706.8,215.03],[707.03,215.07],[707.05,215.07],[707.1,215.09],[707.11,215.09],[707.11,215.09],[707.12,215.09],[707.13,215.09],[707.15,215.08],[707.15,215.07],[707.16,215.07],[707.2,215.05],[707.24,215.03],[707.36,214.97],[707.37,214.97],[707.38,214.96],[707.4,214.96],[707.47,214.94],[707.49,214.94],[707.5,214.93],[707.52,214.93],[707.62,214.92],[707.64,214.92],[707.66,214.92],[707.68,214.93],[707.71,214.94],[707.74,214.96],[707.78,214.97],[707.79,214.98],[707.9,215.01],[707.91,215.02],[707.93,215.02],[707.94,215.02],[707.95,215.02],[707.96,215.02],[707.98,215.02],[708.04,215.01],[708.16,215],[708.17,215],[708.19,215.01],[708.21,215.02],[708.23,215.02],[708.24,215.03],[708.3,215.03],[708.37,215.04],[708.48,215.03],[708.54,215.03],[708.59,215.03],[708.61,215.03],[708.64,215.02],[708.65,215.02],[708.69,215.03],[708.75,215.02],[708.76,215.02],[708.77,215.02],[708.77,215.02],[708.84,215.06],[708.86,215.06],[708.88,215.07],[708.92,215.08],[708.93,215.08],[708.94,215.08],[709.04,215.08],[709.12,215.08],[709.15,215.08],[709.18,215.08],[709.24,215.08],[709.27,215.08],[709.29,215.08],[709.31,215.08],[709.33,215.08],[709.34,215.08],[709.34,215.08],[709.35,215.09],[709.35,215.09],[709.36,215.1],[709.36,215.1],[709.37,215.11],[709.38,215.11],[709.4,215.12],[709.41,215.13],[709.42,215.13],[709.44,215.13],[709.45,215.13],[709.46,215.13],[709.47,215.14],[709.48,215.14],[709.48,215.15],[709.49,215.15],[709.51,215.14],[709.51,215.15],[709.52,215.15],[709.53,215.15],[709.54,215.15],[709.55,215.15],[709.55,215.15],[709.56,215.15],[709.57,215.15],[709.58,215.15],[709.59,215.16],[709.61,215.17],[709.62,215.17],[709.62,215.18],[709.63,215.18],[709.63,215.19],[709.64,215.2],[709.64,215.2],[709.65,215.21],[709.68,215.24],[709.69,215.24],[709.7,215.26],[709.71,215.26],[709.71,215.27],[709.72,215.27],[709.73,215.27],[709.75,215.27],[709.76,215.28],[709.77,215.28],[709.78,215.28],[709.8,215.28],[709.81,215.28],[709.82,215.28],[709.83,215.29],[709.84,215.3],[709.84,215.3],[709.87,215.32],[709.9,215.33],[709.94,215.35],[709.97,215.36],[709.98,215.37],[709.99,215.38],[710,215.39],[710.01,215.39],[710.02,215.4],[710.04,215.42],[710.06,215.43],[710.07,215.44],[710.08,215.45],[710.09,215.47],[710.27,215.67],[710.29,215.69],[710.3,215.7],[710.31,215.71],[710.32,215.72],[710.33,215.73],[710.34,215.74],[710.35,215.75],[710.38,215.76],[710.4,215.77],[710.42,215.77],[710.42,215.78],[710.44,215.78],[710.45,215.78],[710.46,215.79],[710.47,215.79],[710.5,215.79],[710.65,215.8],[710.69,215.8],[710.71,215.8],[710.78,215.8],[710.95,215.82],[711.05,215.82],[711.12,215.83],[711.21,215.83],[711.36,215.82],[711.61,215.8],[711.68,215.8],[711.73,215.8],[711.73,215.8],[711.74,215.8],[711.78,215.79],[711.8,215.79],[711.81,215.79],[711.92,215.81],[712.02,215.83],[712.04,215.84],[712.05,215.84],[712.07,215.84],[712.21,215.87],[712.21,215.87],[712.21,215.87],[712.22,215.87],[712.23,215.87],[712.23,215.87],[712.24,215.87],[712.26,215.87],[712.29,215.86],[712.3,215.86],[712.32,215.86],[712.33,215.85],[712.34,215.85],[712.36,215.84],[712.39,215.83],[712.44,215.81],[712.46,215.8],[712.47,215.79],[712.5,215.78],[712.61,215.77],[712.62,215.76],[712.63,215.76],[712.7,215.75],[712.7,215.75],[712.71,215.75],[712.73,215.74],[712.73,215.74],[712.75,215.74],[712.87,215.72],[712.88,215.72],[712.89,215.72],[712.9,215.72],[712.9,215.72],[712.91,215.71],[712.91,215.71],[712.93,215.7],[712.96,215.68],[712.96,215.68],[712.98,215.67],[712.99,215.67],[713.03,215.65],[713.06,215.64],[713.07,215.64],[713.07,215.64],[713.1,215.63],[713.1,215.63],[713.1,215.63],[713.11,215.63],[713.11,215.63],[713.11,215.63],[713.12,215.62],[713.12,215.62],[713.12,215.62],[713.12,215.62],[713.12,215.61],[713.12,215.59],[713.12,215.59],[713.12,215.59],[713.12,215.58],[713.13,215.57],[713.13,215.57],[713.14,215.55],[713.14,215.54],[713.14,215.53],[713.15,215.53],[713.15,215.53],[713.15,215.53],[713.17,215.52],[713.17,215.52],[713.18,215.52],[713.19,215.51],[713.19,215.51],[713.2,215.51],[713.2,215.51],[713.22,215.5],[713.24,215.49],[713.24,215.49],[713.25,215.49],[713.25,215.48],[713.25,215.48],[713.26,215.48],[713.26,215.48],[713.29,215.47],[713.3,215.46],[713.31,215.46],[713.31,215.45],[713.32,215.45],[713.34,215.44],[713.36,215.43],[713.37,215.43],[713.37,215.43],[713.39,215.42],[713.39,215.42],[713.4,215.42],[713.4,215.41],[713.41,215.41],[713.41,215.4],[713.41,215.4],[713.42,215.4],[713.43,215.39],[713.44,215.39],[713.45,215.38],[713.47,215.37],[713.48,215.37],[713.48,215.37],[713.49,215.37],[713.5,215.37],[713.5,215.36],[713.5,215.36],[713.5,215.36],[713.51,215.36],[713.51,215.36],[713.51,215.36],[713.51,215.36],[713.52,215.36],[713.52,215.36],[713.55,215.35],[713.55,215.34],[713.56,215.34],[713.56,215.34],[713.56,215.34],[713.57,215.33],[713.57,215.33],[713.6,215.3],[713.61,215.29],[713.62,215.28],[713.62,215.28],[713.63,215.28],[713.63,215.27],[713.64,215.27],[713.65,215.27],[713.66,215.26],[713.67,215.26],[713.67,215.25],[713.68,215.25],[713.68,215.25],[713.73,215.25],[713.73,215.25],[713.73,215.25],[713.74,215.25],[713.76,215.24],[713.76,215.24],[713.77,215.24],[713.77,215.24],[713.78,215.24],[713.78,215.24],[713.79,215.24],[713.79,215.25],[713.8,215.25],[713.8,215.25],[713.81,215.25],[713.81,215.25],[713.82,215.25],[713.82,215.25],[713.82,215.25],[713.83,215.25],[713.83,215.25],[713.83,215.25],[713.84,215.25],[713.84,215.25],[713.86,215.25],[713.87,215.25],[713.87,215.25],[713.89,215.25],[713.89,215.25],[713.9,215.25],[713.9,215.25],[713.9,215.25],[713.91,215.25],[713.91,215.25],[713.91,215.25],[713.91,215.25],[713.92,215.24],[713.92,215.24],[713.92,215.24],[713.93,215.24],[713.93,215.23],[713.94,215.23],[713.96,215.23],[713.97,215.23],[713.97,215.22],[713.99,215.22],[713.99,215.22],[714,215.22],[714,215.22],[714.02,215.23],[714.03,215.23],[714.03,215.23],[714.03,215.23],[714.03,215.23],[714.04,215.23],[714.05,215.22],[714.05,215.22],[714.06,215.2],[714.07,215.2],[714.09,215.18],[714.1,215.17],[714.1,215.17],[714.12,215.15],[714.12,215.15],[714.12,215.15],[714.13,215.14],[714.13,215.14],[714.19,215.05],[714.19,215.04],[714.19,215.04],[714.19,215.04],[714.19,215.04],[714.19,215.04],[714.19,215.04],[714.19,215.04],[714.23,214.98],[714.24,214.96],[714.24,214.96],[714.25,214.94],[714.27,214.91],[714.28,214.91],[714.28,214.9],[714.29,214.89],[714.3,214.89],[714.3,214.88],[714.31,214.87],[714.32,214.87],[714.33,214.86],[714.35,214.84],[714.36,214.84],[714.37,214.83],[714.38,214.82],[714.39,214.81],[714.4,214.8],[714.41,214.8],[714.42,214.79],[714.43,214.78],[714.43,214.77],[714.51,214.7],[714.54,214.67],[714.58,214.64],[714.6,214.62],[714.65,214.58],[714.66,214.57],[714.67,214.56],[714.67,214.56],[714.69,214.54],[714.69,214.54],[714.7,214.53],[714.72,214.51],[714.74,214.5],[714.75,214.49],[714.77,214.48],[714.79,214.47],[714.8,214.47],[714.81,214.47],[714.83,214.46],[714.86,214.45],[714.91,214.44],[714.93,214.43],[714.93,214.43],[714.94,214.43],[714.96,214.43],[714.98,214.42],[715.01,214.42],[715.01,214.42],[715.01,214.42],[715.04,214.41],[715.05,214.41],[715.08,214.4],[715.09,214.4],[715.11,214.4],[715.11,214.4],[715.13,214.39],[715.15,214.39],[715.16,214.39],[715.17,214.39],[715.19,214.38],[715.21,214.38],[715.22,214.38],[715.23,214.38],[715.24,214.37],[715.26,214.37],[715.28,214.38],[715.29,214.38],[715.3,214.38],[715.31,214.38],[715.34,214.37],[715.35,214.37],[715.38,214.36],[715.42,214.35],[715.44,214.35],[715.46,214.35],[715.5,214.35],[715.53,214.34],[715.53,214.34],[715.54,214.34],[715.56,214.34],[715.57,214.34],[715.57,214.35],[715.62,214.38],[715.63,214.38],[715.65,214.38],[715.69,214.38],[715.71,214.38],[715.75,214.37],[715.81,214.36],[715.82,214.35],[715.86,214.33],[715.94,214.29],[716.04,214.24],[716.07,214.22],[716.08,214.22],[716.09,214.21],[716.12,214.19],[716.14,214.19],[716.15,214.18],[716.17,214.16],[716.17,214.16],[716.19,214.14],[716.21,214.12],[716.26,214.08],[716.3,214.04],[716.33,214.02],[716.37,213.98],[716.37,213.98],[716.38,213.97],[716.42,213.95],[716.44,213.94],[716.45,213.93],[716.49,213.91],[716.53,213.89],[716.54,213.88],[716.55,213.87],[716.57,213.85],[716.58,213.84],[716.6,213.83],[716.64,213.81],[716.65,213.8],[716.66,213.8],[716.66,213.8],[716.69,213.79],[716.71,213.79],[716.72,213.79],[716.75,213.78],[716.78,213.77],[716.9,213.72],[716.94,213.7],[716.95,213.7],[716.97,213.69],[717,213.67],[717.03,213.65],[717.06,213.64],[717.07,213.62],[717.07,213.62],[717.08,213.62],[717.09,213.62],[717.13,213.61],[717.16,213.59],[717.19,213.58],[717.21,213.57],[717.23,213.57],[717.26,213.55],[717.27,213.55],[717.31,213.54],[717.42,213.51],[717.44,213.51],[717.45,213.51],[717.46,213.51],[717.51,213.52],[717.56,213.52],[717.63,213.53],[717.69,213.54],[717.75,213.55],[717.81,213.56],[717.86,213.56],[717.88,213.56],[717.9,213.57],[717.91,213.57],[717.92,213.57],[717.93,213.56],[717.96,213.56],[718,213.55],[718,213.55],[718.01,213.54],[718.04,213.52],[718.06,213.51],[718.07,213.5],[718.07,213.5],[718.08,213.5],[718.09,213.5],[718.12,213.5],[718.13,213.5],[718.14,213.5],[718.17,213.49],[718.22,213.47],[718.27,213.45],[718.31,213.44],[718.32,213.43],[718.34,213.41],[718.35,213.41],[718.38,213.4],[718.43,213.38],[718.45,213.37],[718.52,213.34],[718.58,213.32],[718.63,213.3],[718.65,213.29],[718.67,213.28],[718.71,213.28],[718.75,213.27],[718.81,213.27],[718.88,213.25],[718.92,213.25],[718.94,213.25],[718.96,213.24],[718.97,213.24],[719,213.24],[719.02,213.23],[719.04,213.23],[719.06,213.23],[719.13,213.22],[719.21,213.21],[719.29,213.2],[719.35,213.19],[719.41,213.19],[719.45,213.18],[719.47,213.18],[719.49,213.18],[719.56,213.18],[719.62,213.18],[719.66,213.18],[719.7,213.18],[719.74,213.18],[719.78,213.17],[719.81,213.17],[719.85,213.17],[719.9,213.16],[719.93,213.16],[719.97,213.15],[720.04,213.14],[720.11,213.12],[720.17,213.11],[720.21,213.11],[720.23,213.1],[720.24,213.09],[720.29,213.08],[720.43,213.05],[720.5,213.04],[720.64,213.01],[720.68,213],[720.69,213],[720.7,213],[720.75,213.01],[720.77,213.01],[720.79,213.01],[720.83,213.01],[720.9,213.02],[720.92,213.01],[720.92,213.01],[720.96,212.98],[720.97,212.98],[720.98,212.98],[721.03,212.97],[721.06,212.97],[721.07,212.97],[721.13,212.98],[721.16,212.98],[721.18,212.98],[721.23,212.98],[721.25,212.98],[721.25,212.98],[721.27,212.97],[721.28,212.96],[721.29,212.95],[721.3,212.94],[721.31,212.91],[721.31,212.89],[721.31,212.89],[721.32,212.89],[721.33,212.88],[721.38,212.86],[721.42,212.85],[721.43,212.84],[721.45,212.84],[721.47,212.83],[721.48,212.82],[721.49,212.81],[721.5,212.81],[721.5,212.81],[721.5,212.81],[721.51,212.81],[721.52,212.82],[721.53,212.83],[721.55,212.85],[721.63,212.93],[721.67,212.98],[721.68,212.99],[721.68,213],[721.7,213.03],[721.74,213.12],[721.76,213.14],[721.76,213.15],[721.76,213.15],[721.77,213.15],[721.77,213.15],[722.02,213.18],[722.09,213.19],[722.15,213.2],[722.21,213.2],[722.27,213.21],[722.34,213.22],[722.41,213.22],[722.48,213.23],[722.54,213.24],[722.6,213.25],[722.67,213.25],[722.8,213.27],[722.9,213.28],[722.95,213.28],[722.96,213.29],[723.02,213.29],[723.03,213.29],[723.05,213.29],[723.08,213.28],[723.09,213.28],[723.11,213.28],[723.12,213.28],[723.16,213.29],[723.17,213.29],[723.17,213.3],[723.18,213.33],[723.19,213.34],[723.19,213.35],[723.18,213.39],[723.18,213.4],[723.19,213.41],[723.19,213.41],[723.2,213.43],[723.21,213.43],[723.21,213.44],[723.21,213.44],[723.21,213.45],[723.21,213.46],[723.21,213.46],[723.22,213.47],[723.22,213.47],[723.23,213.48],[723.23,213.49],[723.24,213.49],[723.24,213.5],[723.25,213.51],[723.25,213.51],[723.25,213.52],[723.27,213.53],[723.27,213.53],[723.27,213.53],[723.27,213.54],[723.27,213.54],[723.28,213.55],[723.28,213.55],[723.28,213.56],[723.28,213.56],[723.28,213.57],[723.28,213.58],[723.27,213.58],[723.27,213.59],[723.27,213.59],[723.27,213.6],[723.28,213.6],[723.28,213.61],[723.28,213.61],[723.29,213.61],[723.3,213.62],[723.31,213.62],[723.31,213.62],[723.31,213.62],[723.32,213.63],[723.32,213.64],[723.33,213.64],[723.33,213.65],[723.33,213.66],[723.33,213.67],[723.33,213.67],[723.33,213.68],[723.34,213.69],[723.34,213.7],[723.34,213.71],[723.34,213.73],[723.35,213.79],[723.35,213.8],[723.35,213.8],[723.36,213.81],[723.36,213.84],[723.36,213.86],[723.37,213.86],[723.37,213.88],[723.37,213.89],[723.38,213.9],[723.39,213.9],[723.39,213.91],[723.39,213.91],[723.39,213.92],[723.39,213.93],[723.4,213.93],[723.4,213.93],[723.41,213.95],[723.41,213.95],[723.42,213.95],[723.44,214],[723.45,214],[723.45,214.01],[723.45,214.01],[723.46,214.01],[723.46,214.01],[723.48,214],[723.48,214],[723.49,214],[723.5,214],[723.5,214],[723.52,214.01],[723.54,214.03],[723.69,214.1],[724,214.25],[724.02,214.27],[724.02,214.27],[724.03,214.27],[724.03,214.27],[724.04,214.26],[724.11,214.24],[724.16,214.22],[724.2,214.21],[724.24,214.2],[724.28,214.19],[724.33,214.17],[724.37,214.16],[724.4,214.15],[724.52,214.11],[724.68,214.06],[724.75,214.04],[724.83,214.02],[724.92,213.99],[724.99,213.97],[726.05,213.64],[726.16,213.61],[726.55,213.5],[726.62,213.48],[726.63,213.48],[726.65,213.47],[726.68,213.46],[726.68,213.45],[726.7,213.44],[726.7,213.44],[726.71,213.44],[726.71,213.43],[726.72,213.43],[726.72,213.43],[726.75,213.44],[726.78,213.45],[726.81,213.45],[726.82,213.46],[726.83,213.46],[726.83,213.46],[726.84,213.47],[726.84,213.47],[726.84,213.48],[726.84,213.48],[726.85,213.5],[726.85,213.51],[726.85,213.51],[726.85,213.51],[726.86,213.52],[726.87,213.52],[726.88,213.52],[726.88,213.52],[727.03,213.44],[727.04,213.42],[727.13,213.33],[727.13,213.32],[727.14,213.33],[727.14,213.33],[727.15,213.34],[727.17,213.36],[727.18,213.37],[727.25,213.41],[727.27,213.42],[727.28,213.43],[727.3,213.43],[727.33,213.42],[727.79,213.36],[727.81,213.36],[727.81,213.35],[727.87,213.23],[727.88,213.21],[727.89,213.2],[727.91,213.18],[727.93,213.17],[728.03,213.13],[728.04,213.12],[728.04,213.11],[728.05,213.1],[728.05,213.09],[728.02,212.47],[728,211.97],[727.99,211.71],[727.98,211.6],[727.98,211.53],[727.98,211.52],[728,211.46],[728.07,211.24],[728.07,211.23],[728.09,211.2],[728.24,210.94],[728.25,210.93],[728.29,210.89],[728.35,210.81],[728.36,210.79],[728.4,210.71],[728.47,210.59],[728.67,210.24],[728.77,210.05],[728.78,210.03],[728.84,209.97],[728.88,209.93],[728.94,209.87],[728.96,209.86],[728.97,209.84],[728.97,209.83],[728.98,209.83],[729.07,209.78],[729.09,209.77],[729.1,209.76],[729.44,209.36],[729.58,209.2],[729.82,208.93],[729.98,208.73],[730,208.72],[730.06,208.7],[730.08,208.69],[730.1,208.68],[730.15,208.62],[730.16,208.61],[730.21,208.6],[730.23,208.6],[730.35,208.63],[730.37,208.62],[730.41,208.61],[730.44,208.6],[730.47,208.61],[730.54,208.61],[730.56,208.6],[730.6,208.58],[730.62,208.57],[730.63,208.57],[730.68,208.57],[730.69,208.57],[730.73,208.54],[730.75,208.53],[730.79,208.52],[730.82,208.5],[730.87,208.48],[730.89,208.46],[730.91,208.44],[730.93,208.41],[730.95,208.4],[730.97,208.39],[730.98,208.39],[730.99,208.38],[731,208.38],[731.06,208.37],[731.07,208.37],[731.09,208.37],[731.09,208.37],[731.12,208.38],[731.16,208.38],[731.33,208.39],[731.36,208.39],[731.39,208.38],[731.43,208.37],[731.53,208.34],[731.55,208.33],[731.56,208.33],[731.59,208.33],[731.62,208.34],[731.64,208.33],[731.67,208.33],[732.01,208.25],[732.06,208.23],[732.22,208.09],[732.24,208.05],[732.4,207.94],[732.44,207.92],[732.45,207.92],[732.49,207.92],[732.52,207.91],[732.55,207.9],[732.78,207.8],[732.81,207.79],[732.83,207.78],[733.02,207.73],[733.03,207.73],[733.12,207.73],[733.13,207.74],[733.14,207.74],[733.17,207.76],[733.18,207.76],[733.2,207.8],[733.22,207.87],[733.23,207.88],[733.24,207.89],[733.3,207.95],[733.3,207.95],[733.34,207.96],[733.35,207.96],[733.35,207.96],[733.35,207.96],[733.36,207.96],[733.36,207.98],[733.36,207.99],[733.39,208],[733.39,208.01],[733.42,208.03],[733.43,208.03],[733.43,208.03],[733.42,208.05],[733.42,208.05],[733.42,208.06],[733.42,208.07],[733.44,208.1],[733.44,208.12],[733.45,208.14],[733.46,208.15],[733.46,208.15],[733.49,208.12],[733.5,208.12],[733.5,208.12],[733.52,208.15],[733.54,208.18],[733.56,208.22],[733.57,208.24],[733.6,208.27],[733.64,208.29],[733.69,208.31],[733.8,208.35],[733.82,208.35],[734.03,208.38],[734.05,208.39],[734.08,208.38],[734.24,208.35],[734.29,208.33],[734.54,208.28],[734.76,208.26],[734.93,208.24],[735.31,208.2],[735.32,208.2],[735.58,208.07],[735.66,208],[735.69,207.98],[735.72,207.97],[735.83,207.93],[735.85,207.92],[735.87,207.9],[735.9,207.87],[736.38,207.22],[736.46,207.16],[736.52,207.09],[736.6,207.03],[736.62,207],[736.63,206.98],[736.65,206.96],[736.65,206.96],[736.65,206.93],[736.65,206.93],[736.65,206.92],[736.67,206.91],[736.68,206.88],[736.69,206.87],[736.69,206.83],[736.7,206.81],[736.71,206.79],[736.71,206.78],[736.72,206.77],[736.73,206.76],[736.74,206.75],[736.75,206.74],[736.76,206.73],[736.78,206.73],[736.79,206.73],[736.79,206.72],[736.79,206.72],[736.79,206.71],[736.79,206.7],[736.8,206.69],[736.82,206.69],[736.82,206.68],[736.84,206.65],[736.86,206.64],[736.86,206.63],[736.85,206.63],[736.86,206.61],[736.86,206.6],[736.86,206.57],[736.89,206.55],[736.9,206.52],[736.92,206.51],[736.92,206.49],[736.92,206.49],[736.93,206.48],[736.93,206.47],[736.95,206.46],[736.97,206.45],[736.98,206.44],[736.99,206.44],[737,206.43],[737.01,206.41],[737.02,206.4],[737.02,206.4],[737.03,206.39],[737.03,206.38],[737.04,206.37],[737.05,206.36],[737.05,206.35],[737.06,206.34],[737.07,206.34],[737.08,206.33],[737.09,206.31],[737.09,206.29],[737.09,206.29],[737.1,206.28],[737.1,206.28],[737.1,206.26],[737.1,206.26],[737.11,206.25],[737.13,206.24],[737.15,206.24],[737.17,206.24],[737.19,206.21],[737.19,206.21],[737.21,206.2],[737.22,206.19],[737.25,206.18],[737.25,206.18],[737.25,206.17],[737.26,206.16],[737.27,206.13],[737.27,206.12],[737.27,206.11],[737.28,206.11],[737.28,206.1],[737.3,206.09],[737.3,206.09],[737.32,206.1],[737.33,206.09],[737.33,206.09],[737.35,206.08],[737.35,206.08],[737.36,206.08],[737.37,206.07],[737.37,206.07],[737.42,206.07],[737.45,206.06],[737.46,206.04],[737.49,206.03],[737.5,206.02],[737.5,206.01],[737.5,206.01],[737.51,206],[737.54,205.98],[737.55,205.97],[737.56,205.95],[737.57,205.95],[737.6,205.96],[737.62,205.96],[737.63,205.96],[737.64,205.96],[737.66,205.96],[737.68,205.97],[737.7,205.99],[737.71,206.02],[737.71,206.02],[737.74,206.04],[737.76,206.05],[737.76,206.05],[737.77,206.09],[737.78,206.1],[737.78,206.1],[737.78,206.09],[737.77,206.08],[737.77,206.07],[737.77,206.06],[737.78,206.07],[737.78,206.07],[737.78,206.08],[737.78,206.08],[737.79,206.08],[737.78,206.07],[737.77,206.06],[737.76,206.04],[737.75,206.03],[737.74,206.03],[737.74,206.02],[737.73,206.01],[737.73,206],[737.74,206],[737.75,206],[737.75,206],[737.75,206],[737.75,205.99],[737.73,205.98],[737.73,205.95],[737.73,205.94],[737.72,205.93],[737.71,205.93],[737.71,205.92],[737.72,205.92],[737.72,205.91],[737.72,205.9],[737.72,205.89],[737.71,205.89],[737.7,205.88],[737.7,205.87],[737.71,205.86],[737.71,205.85],[737.7,205.85],[737.69,205.85],[737.68,205.84],[737.68,205.83],[737.68,205.82],[737.67,205.8],[737.67,205.8],[737.68,205.79],[737.69,205.78],[737.71,205.78],[737.71,205.78],[737.72,205.77],[737.74,205.77],[737.81,205.78],[737.84,205.78],[737.85,205.77],[737.98,205.71],[738.2,205.6],[738.31,205.56],[738.54,205.47],[738.57,205.46],[738.61,205.46],[738.64,205.45],[738.66,205.44],[738.67,205.43],[738.77,205.3],[738.77,205.28],[738.78,205.27],[738.77,205.26],[738.77,205.25],[738.77,205.24],[738.77,205.23],[738.77,205.22],[738.77,205.21],[738.77,205.2],[738.77,205.19],[738.79,205.18],[738.8,205.17],[738.82,205.16],[738.83,205.15],[738.84,205.13],[738.84,205.12],[738.84,205.1],[738.85,205.09],[738.91,205.02],[738.95,204.99],[738.96,204.97],[739.04,204.94],[739.07,204.94],[739.14,204.91],[739.37,204.84],[739.41,204.83],[739.48,204.81],[739.54,204.82],[739.61,204.81],[739.77,204.82],[739.79,204.82],[739.8,204.81],[739.82,204.8],[739.83,204.78],[739.85,204.78],[739.94,204.77],[739.97,204.78],[739.99,204.79],[740.01,204.8],[740.11,204.83],[740.17,204.84],[740.22,204.84],[740.24,204.84],[740.26,204.84],[740.27,204.84],[740.3,204.84],[740.42,204.83],[740.56,204.81],[740.69,204.81],[740.78,204.8],[740.89,204.81],[740.92,204.81],[740.95,204.81],[741,204.81],[741.04,204.81],[741.08,204.8],[741.17,204.8],[741.21,204.8],[741.28,204.81],[741.35,204.8],[741.45,204.79],[741.54,204.78],[741.57,204.77],[741.59,204.75],[741.6,204.75],[741.64,204.74],[741.71,204.72],[741.75,204.7],[741.79,204.7],[741.84,204.69],[742.03,204.65],[742.18,204.64],[742.42,204.66],[742.91,204.7],[742.94,204.7],[743.07,204.74],[743.18,204.8],[743.27,204.83],[743.39,204.86],[743.49,204.93],[743.57,205.03],[743.59,205.05],[743.64,205.09],[743.66,205.1],[743.73,205.21],[743.74,205.22],[743.87,205.29],[743.89,205.31],[743.95,205.37],[743.96,205.38],[744.12,205.44],[744.49,205.53],[744.51,205.53],[744.54,205.53],[744.59,205.52],[744.64,205.52],[745.4,205.53],[745.42,205.52],[745.44,205.52],[745.46,205.52],[745.64,205.49],[745.74,205.47],[745.87,205.45],[745.97,205.43],[746,205.43],[746.02,205.43],[746.16,205.36],[746.19,205.35],[746.22,205.34],[746.31,205.34],[746.35,205.35],[746.38,205.34],[746.4,205.34],[746.42,205.35],[746.45,205.34],[746.48,205.34],[746.51,205.34],[746.71,205.36],[746.73,205.35],[746.84,205.29],[746.84,205.29],[746.89,205.26],[746.91,205.25],[746.93,205.24],[747.14,205.17],[747.15,205.17],[747.17,205.16],[747.19,205.15],[747.37,205.07],[747.39,205.06],[747.41,205.05],[747.44,205.04],[747.55,205.01],[747.59,205],[747.6,205],[747.6,205],[747.62,204.99],[747.65,204.98],[747.66,204.98],[747.69,204.97],[747.72,204.96],[747.72,204.96],[747.73,204.95],[747.74,204.94],[747.75,204.93],[747.76,204.93],[747.76,204.92],[747.76,204.91],[747.77,204.9],[747.78,204.85],[747.79,204.82],[747.79,204.82],[747.79,204.81],[747.8,204.78],[747.8,204.77],[747.82,204.7],[747.83,204.66],[747.84,204.64],[747.84,204.63],[747.84,204.63],[747.84,204.62],[747.85,204.59],[747.85,204.58],[747.86,204.58],[747.86,204.57],[747.87,204.56],[747.87,204.55],[747.88,204.55],[747.89,204.54],[747.89,204.54],[747.9,204.54],[747.9,204.54],[747.92,204.54],[747.93,204.54],[747.95,204.55],[747.96,204.56],[747.98,204.58],[748,204.6],[748.02,204.62],[748.06,204.64],[748.09,204.66],[748.12,204.66],[748.28,204.69],[748.33,204.71],[748.45,204.75],[748.67,204.8],[748.7,204.81],[749.06,204.8],[749.26,204.8],[749.43,204.8],[749.53,204.82],[749.82,204.91],[749.89,204.96],[749.92,205],[749.97,205.06],[750.05,205.15],[750.06,205.16],[750.14,205.2],[750.26,205.24],[750.38,205.31],[750.6,205.38],[750.62,205.38],[750.75,205.38],[751.14,205.32],[751.15,205.32],[751.17,205.32],[751.18,205.33],[751.2,205.34],[751.57,205.54],[751.64,205.58],[751.65,205.6],[751.74,205.77],[751.74,205.78],[751.74,205.8],[751.74,205.86],[751.75,205.88],[751.77,205.91],[751.78,205.92],[751.78,205.93],[751.8,205.93],[752.28,206.02],[752.43,206.04],[752.46,206.04],[752.65,206],[752.68,206],[753.07,206.02],[753.29,206.09],[753.65,206.2],[753.68,206.22],[754.02,206.38],[754.04,206.39],[754.32,206.65],[754.33,206.65],[754.34,206.66],[754.36,206.67],[754.46,206.68],[754.87,206.73],[755.25,206.75],[755.29,206.75],[755.32,206.75],[755.54,206.76],[755.57,206.76],[755.6,206.76],[755.63,206.76],[755.65,206.76],[755.74,206.77],[755.78,206.77],[755.84,206.76],[756.04,206.73],[756.06,206.72],[756.65,206.51],[756.65,206.51],[756.66,206.51],[756.66,206.51],[756.67,206.5],[756.68,206.5],[756.68,206.5],[756.69,206.5],[756.7,206.5],[756.71,206.51],[756.71,206.51],[756.72,206.51],[756.73,206.51],[756.74,206.52],[756.75,206.53],[756.78,206.56],[756.9,206.65],[756.91,206.66],[756.92,206.66],[756.93,206.67],[756.93,206.67],[756.94,206.67],[756.94,206.67],[756.95,206.68],[756.96,206.68],[756.97,206.68],[756.97,206.68],[756.99,206.68],[757.12,206.67],[757.19,206.67],[757.4,206.67],[757.46,206.66],[757.48,206.66],[757.55,206.66],[757.56,206.66],[757.58,206.66],[757.59,206.66],[757.6,206.65],[757.61,206.65],[757.63,206.65],[757.64,206.64],[757.65,206.64],[757.71,206.61],[757.86,206.56],[757.92,206.54],[757.94,206.53],[757.96,206.52],[757.98,206.52],[757.99,206.52],[758,206.52],[758.02,206.51],[758.11,206.51],[758.2,206.5],[758.21,206.5],[758.28,206.5],[758.3,206.5],[758.35,206.5],[758.37,206.49],[758.44,206.49],[758.45,206.49],[758.46,206.49],[758.47,206.49],[758.48,206.49],[758.49,206.49],[758.5,206.5],[758.51,206.5],[758.53,206.51],[758.54,206.51],[758.55,206.51],[758.58,206.52],[758.59,206.53],[758.62,206.54],[758.66,206.55],[758.71,206.57],[758.73,206.57],[758.76,206.58],[758.79,206.58],[758.83,206.58],[758.86,206.58],[758.97,206.57],[759,206.57],[759.03,206.57],[759.08,206.57],[759.09,206.57],[759.24,206.59],[759.29,206.59],[759.32,206.59],[759.36,206.6],[759.65,206.71],[759.72,206.73],[759.86,206.8],[759.91,206.82],[759.95,206.83],[759.99,206.84],[760.03,206.84],[760.08,206.84],[760.12,206.84],[760.34,206.81],[760.39,206.8],[760.43,206.8],[760.47,206.8],[760.52,206.81],[760.57,206.82],[760.61,206.84],[760.65,206.86],[760.9,207],[760.95,207.02],[760.99,207.04],[761.03,207.05],[761.08,207.05],[761.12,207.05],[761.18,207.05],[761.22,207.04],[761.26,207.04],[761.29,207.04],[761.32,207.04],[761.34,207.04],[761.39,207.04],[761.44,207.03],[761.51,207.01],[761.53,207.01],[761.56,207],[761.6,207],[761.63,207],[761.69,207.02],[761.74,207.02],[761.79,207.03],[761.85,207.03],[761.92,207.02],[762.13,207],[762.16,206.99],[762.22,206.98],[762.25,206.97],[762.28,206.97],[762.31,206.97],[762.34,206.97],[762.37,206.98],[762.52,207.01],[762.56,207.01],[762.59,207.01],[762.66,207.01],[762.69,207.01],[762.72,207.02],[762.75,207.03],[762.79,207.05],[762.82,207.07],[762.85,207.1],[762.88,207.14],[762.91,207.19],[762.93,207.22],[762.95,207.24],[762.98,207.27],[763.01,207.29],[763.05,207.31],[763.1,207.32],[763.14,207.33],[763.2,207.33],[763.51,207.32],[763.56,207.32],[763.6,207.33],[763.64,207.34],[763.89,207.42],[763.93,207.43],[763.98,207.43],[764.1,207.45],[764.15,207.46],[764.2,207.47],[764.25,207.49],[764.56,207.64],[764.62,207.66],[764.67,207.67],[764.71,207.68],[764.76,207.68],[764.96,207.69],[765,207.7],[765.05,207.71],[765.14,207.73],[765.19,207.74],[765.22,207.74],[765.26,207.74],[765.3,207.74],[765.42,207.7],[765.54,207.67],[765.61,207.64],[765.68,207.59],[765.73,207.56],[765.78,207.54],[765.82,207.52],[765.87,207.51],[765.9,207.51],[765.93,207.51],[765.97,207.51],[766,207.52],[766.05,207.53],[766.31,207.61],[766.55,207.74],[766.6,207.76],[766.66,207.78],[766.71,207.79],[766.89,207.83],[766.94,207.85],[766.99,207.86],[767.18,207.94],[767.27,207.98],[767.31,207.99],[767.35,208.01],[767.39,208.01],[767.43,208.01],[767.47,208.01],[767.5,208.01],[767.54,208],[767.59,207.97],[767.63,207.97],[767.67,207.96],[767.71,207.96],[767.74,207.97],[767.78,207.98],[767.82,208],[768,208.1],[768.03,208.12],[768.08,208.13],[768.13,208.14],[768.18,208.15],[768.34,208.15],[768.4,208.15],[768.45,208.16],[768.59,208.19],[768.64,208.19],[768.68,208.19],[768.92,208.17],[768.98,208.17],[769.02,208.18],[769.07,208.19],[769.11,208.21],[769.15,208.24],[769.18,208.25],[769.19,208.26],[769.21,208.28],[769.21,208.29],[769.23,208.29],[769.24,208.3],[769.26,208.31],[769.27,208.32],[769.28,208.32],[769.3,208.32],[769.32,208.33],[769.32,208.33],[769.34,208.33],[769.39,208.33],[769.49,208.33],[769.57,208.33],[769.6,208.33],[769.62,208.34],[769.64,208.34],[769.65,208.34],[769.66,208.35],[769.7,208.35],[769.72,208.36],[769.74,208.37],[769.76,208.37],[769.81,208.39],[769.83,208.4],[769.85,208.4],[769.87,208.41],[769.9,208.41],[769.92,208.42],[769.97,208.42],[769.98,208.42],[769.99,208.43],[770.01,208.43],[770.03,208.44],[770.04,208.44],[770.06,208.45],[770.07,208.46],[770.09,208.47],[770.1,208.48],[770.11,208.49],[770.13,208.5],[770.13,208.51],[770.15,208.52],[770.17,208.53],[770.18,208.54],[770.21,208.55],[770.23,208.56],[770.24,208.57],[770.25,208.58],[770.26,208.59],[770.28,208.6],[770.29,208.61],[770.3,208.63],[770.32,208.64],[770.33,208.65],[770.34,208.67],[770.39,208.74],[770.41,208.76],[770.43,208.79],[770.45,208.81],[770.46,208.82],[770.48,208.84],[770.5,208.86],[770.53,208.89],[770.56,208.92],[770.6,208.96],[770.62,208.97],[770.63,208.98],[770.65,209],[770.66,209.01],[770.68,209.02],[770.7,209.03],[770.72,209.04],[770.72,209.04],[770.74,209.05],[770.76,209.05],[770.78,209.06],[770.88,209.09],[770.89,209.09],[770.91,209.1],[770.93,209.11],[770.96,209.12],[771,209.13],[771.02,209.15],[771.04,209.16],[771.06,209.17],[771.07,209.18],[771.09,209.19],[771.11,209.22],[771.18,209.27],[771.22,209.3],[771.24,209.32],[771.26,209.34],[771.27,209.35],[771.29,209.36],[771.35,209.39],[771.42,209.43],[771.43,209.44],[771.47,209.47],[771.48,209.48],[771.5,209.5],[771.51,209.51],[771.53,209.53],[771.55,209.55],[771.58,209.6],[771.61,209.64],[771.63,209.67],[771.64,209.68],[771.66,209.7],[771.69,209.73],[771.71,209.75],[771.73,209.77],[771.89,209.9],[771.9,209.91],[771.92,209.93],[771.94,209.93],[771.96,209.95],[771.98,209.96],[771.99,209.97],[772.01,209.97],[772.03,209.99],[772.17,210.05],[772.17,210.05],[772.19,210.06],[772.22,210.07],[772.24,210.08],[772.26,210.09],[772.28,210.1],[772.3,210.1],[772.33,210.11],[772.37,210.12],[772.4,210.12],[772.46,210.14],[772.47,210.14],[772.47,210.14],[772.48,210.14],[772.49,210.14],[772.5,210.15],[772.53,210.15],[772.54,210.16],[772.55,210.16],[772.57,210.17],[772.58,210.17],[772.58,210.17],[772.6,210.18],[772.61,210.18],[772.62,210.19],[772.65,210.2],[772.65,210.2],[772.68,210.22],[772.68,210.22],[772.76,210.26],[772.8,210.29],[772.8,210.29],[772.82,210.3],[772.84,210.32],[772.87,210.34],[772.89,210.36],[772.89,210.37],[772.91,210.38],[772.92,210.4],[772.94,210.42],[772.95,210.43],[772.96,210.44],[772.97,210.45],[772.99,210.46],[773,210.47],[773.01,210.48],[773.03,210.49],[773.04,210.49],[773.06,210.5],[773.07,210.51],[773.09,210.52],[773.11,210.52],[773.11,210.52],[773.12,210.53],[773.13,210.53],[773.14,210.53],[773.15,210.53],[773.17,210.54],[773.18,210.54],[773.19,210.54],[773.21,210.54],[773.21,210.54],[773.23,210.54],[773.25,210.54],[773.27,210.54],[773.29,210.54],[773.3,210.54],[773.31,210.55],[773.32,210.55],[773.33,210.55],[773.34,210.55],[773.35,210.56],[773.36,210.57],[773.38,210.57],[773.38,210.58],[773.39,210.58],[773.39,210.58],[773.41,210.59],[773.41,210.59],[773.42,210.6],[773.43,210.6],[773.43,210.61],[773.44,210.61],[773.44,210.61],[773.44,210.62],[773.45,210.63],[773.46,210.64],[773.46,210.65],[773.46,210.65],[773.47,210.66],[773.47,210.66],[773.47,210.67],[773.47,210.68],[773.47,210.69],[773.47,210.7],[773.47,210.71],[773.47,210.71],[773.48,210.72],[773.48,210.73],[773.48,210.73],[773.49,210.74],[773.49,210.74],[773.5,210.75],[773.5,210.75],[773.51,210.75],[773.53,210.76],[773.53,210.76],[773.54,210.76],[773.55,210.77],[773.56,210.77],[773.56,210.78],[773.57,210.79],[773.58,210.79],[773.58,210.8],[773.58,210.8],[773.59,210.81],[773.59,210.82],[773.59,210.83],[773.6,210.83],[773.6,210.84],[773.6,210.85],[773.6,210.85],[773.6,210.86],[773.61,210.88],[773.61,210.88],[773.61,210.89],[773.61,210.9],[773.61,210.9],[773.62,210.91],[773.62,210.92],[773.63,210.93],[773.63,210.94],[773.64,210.94],[773.64,210.95],[773.65,210.96],[773.65,210.97],[773.65,210.98],[773.66,210.99],[773.66,211],[773.66,211.01],[773.66,211.02],[773.67,211.03],[773.68,211.15],[773.68,211.16],[773.68,211.17],[773.68,211.18],[773.68,211.18],[773.68,211.19],[773.69,211.2],[773.69,211.21],[773.7,211.22],[773.7,211.22],[773.71,211.23],[773.72,211.24],[773.72,211.25],[773.73,211.25],[773.74,211.26],[773.74,211.26],[773.75,211.27],[773.75,211.27],[773.76,211.28],[773.76,211.29],[773.76,211.29],[773.76,211.3],[773.77,211.31],[773.77,211.31],[773.77,211.31],[773.77,211.32],[773.77,211.33],[773.76,211.33],[773.76,211.34],[773.76,211.34],[773.76,211.35],[773.76,211.35],[773.76,211.35],[773.75,211.36],[773.75,211.36],[773.74,211.38],[773.72,211.4],[773.71,211.4],[773.71,211.41],[773.71,211.42],[773.7,211.43],[773.7,211.43],[773.7,211.44],[773.7,211.45],[773.69,211.52],[773.69,211.53],[773.68,211.54],[773.68,211.55],[773.68,211.56],[773.68,211.57],[773.67,211.58],[773.66,211.59],[773.65,211.6],[773.65,211.62],[773.64,211.63],[773.64,211.64],[773.63,211.64],[773.63,211.65],[773.63,211.67],[773.63,211.67],[773.63,211.68],[773.63,211.69],[773.63,211.7],[773.63,211.71],[773.63,211.72],[773.63,211.73],[773.63,211.74],[773.64,211.75],[773.64,211.76],[773.65,211.77],[773.65,211.77],[773.66,211.78],[773.67,211.8],[773.71,211.86],[773.73,211.87],[773.73,211.88],[773.73,211.88],[773.74,211.89],[773.75,211.9],[773.76,211.92],[773.77,211.94],[773.79,211.95],[773.8,211.97],[773.81,212],[773.82,212.02],[773.83,212.04],[773.83,212.04],[773.89,212.15],[773.9,212.16],[773.9,212.17],[773.91,212.18],[773.92,212.19],[773.93,212.2],[773.94,212.21],[773.95,212.21],[773.96,212.22],[773.97,212.22],[773.99,212.22],[774,212.23],[774.03,212.23],[774.03,212.23],[774.11,212.24],[774.12,212.24],[774.13,212.24],[774.13,212.24],[774.14,212.24],[774.14,212.24],[774.15,212.24],[774.15,212.24],[774.15,212.25],[774.15,212.25],[774.16,212.25],[774.16,212.26],[774.16,212.26],[774.16,212.27],[774.16,212.28],[774.16,212.28],[774.15,212.31],[774.15,212.33],[774.15,212.34],[774.15,212.35],[774.15,212.36],[774.15,212.37],[774.16,212.38],[774.16,212.39],[774.16,212.4],[774.17,212.41],[774.18,212.46],[774.22,212.54],[774.22,212.55],[774.23,212.56],[774.23,212.56],[774.24,212.57],[774.25,212.58],[774.25,212.58],[774.26,212.59],[774.27,212.59],[774.28,212.59],[774.29,212.59],[774.3,212.59],[774.33,212.6],[774.36,212.6],[774.37,212.6],[774.39,212.6],[774.42,212.6],[774.43,212.6],[774.44,212.6],[774.45,212.6],[774.47,212.61],[774.49,212.61],[774.52,212.62],[774.6,212.63],[774.63,212.64],[774.64,212.64],[774.65,212.64],[774.66,212.64],[774.66,212.64],[774.67,212.64],[774.68,212.64],[774.69,212.63],[774.71,212.62],[774.72,212.62],[774.74,212.61],[774.75,212.61],[774.76,212.61],[774.77,212.61],[774.78,212.61],[774.79,212.61],[774.8,212.61],[774.81,212.61],[774.82,212.61],[774.83,212.61],[774.97,212.64],[775.01,212.65],[775.01,212.65],[775.03,212.66],[775.03,212.66],[775.04,212.66],[775.05,212.66],[775.19,212.7],[775.2,212.7],[775.22,212.7],[775.22,212.7],[775.43,212.78],[775.46,212.8],[775.48,212.81],[775.54,212.86],[775.87,213.11],[775.9,213.13],[775.93,213.14],[776.26,213.21],[776.33,213.24],[776.36,213.25],[776.38,213.27],[776.41,213.3],[776.57,213.55],[776.6,213.59],[776.61,213.62],[776.62,213.64],[776.62,213.67],[776.62,213.69],[776.63,213.7],[776.64,213.71],[776.67,213.73],[776.69,213.75],[776.85,213.84],[776.87,213.85],[776.99,214.01],[777.15,214.23],[777.16,214.24],[777.2,214.27],[777.25,214.3],[777.35,214.37],[777.37,214.39],[777.4,214.4],[777.44,214.41],[777.46,214.41],[777.48,214.4],[777.49,214.41],[777.54,214.43],[777.55,214.44],[777.56,214.45],[777.6,214.51],[777.62,214.52],[777.83,214.63],[777.85,214.65],[777.86,214.67],[777.88,214.7],[777.91,214.79],[777.92,214.8],[777.93,214.8],[777.95,214.82],[778.03,214.83],[778.06,214.83],[778.18,214.82],[778.22,214.82],[778.24,214.83],[778.37,214.86],[778.38,214.86],[778.39,214.87],[778.4,214.87],[778.4,214.88],[778.43,214.91],[778.43,214.92],[778.45,214.93],[778.46,214.94],[778.47,214.95],[778.49,214.97],[778.5,214.98],[778.51,214.99],[778.52,215.01],[778.54,215.05],[778.55,215.06],[778.55,215.07],[778.56,215.07],[778.61,215.1],[778.61,215.1],[778.63,215.13],[778.64,215.14],[778.64,215.15],[778.64,215.16],[778.64,215.17],[778.64,215.18],[778.64,215.19],[778.64,215.2],[778.63,215.2],[778.6,215.23],[778.59,215.24],[778.59,215.24],[778.59,215.25],[778.59,215.26],[778.59,215.31],[778.59,215.32],[778.6,215.36],[778.61,215.37],[778.61,215.37],[778.64,215.39],[778.64,215.39],[778.64,215.4],[778.64,215.4],[778.64,215.41],[778.64,215.41],[778.64,215.42],[778.63,215.42],[778.63,215.43],[778.63,215.43],[778.64,215.45],[778.66,215.47],[778.66,215.48],[778.67,215.48],[778.73,215.49],[778.74,215.49],[778.74,215.5],[778.74,215.51],[778.74,215.51],[778.74,215.54],[778.74,215.54],[778.74,215.55],[778.77,215.59],[778.78,215.62],[778.8,215.63],[778.9,215.71],[778.94,215.72],[778.96,215.73],[779.03,215.73],[779.05,215.73],[779.08,215.76],[779.09,215.77],[779.11,215.78],[779.16,215.8],[779.17,215.81],[779.18,215.81],[779.2,215.84],[779.21,215.85],[779.21,215.86],[779.22,215.87],[779.23,215.89],[779.23,215.9],[779.24,215.92],[779.25,215.94],[779.27,215.99],[779.28,216],[779.3,216.02],[779.3,216.03],[779.31,216.05],[779.31,216.06],[779.32,216.07],[779.33,216.08],[779.33,216.09],[779.33,216.11],[779.34,216.13],[779.34,216.15],[779.35,216.18],[779.36,216.19],[779.36,216.2],[779.38,216.21],[779.39,216.22],[779.39,216.23],[779.39,216.23],[779.39,216.24],[779.38,216.27],[779.38,216.28],[779.38,216.29],[779.39,216.3],[779.39,216.31],[779.39,216.32],[779.4,216.32],[779.41,216.33],[779.43,216.34],[779.44,216.35],[779.45,216.37],[779.47,216.39],[779.47,216.4],[779.52,216.61],[779.53,216.65],[779.55,216.69],[779.56,216.72],[779.58,216.79],[779.6,216.87],[779.61,216.87],[779.62,216.88],[779.65,216.89],[780.3,217.03],[780.33,217.04],[780.35,217.04],[780.63,217.03],[780.94,217.05],[780.98,217.05],[781,217.06],[781.02,217.07],[781.06,217.11],[781.23,217.27],[781.27,217.29],[781.38,217.36],[781.41,217.37],[781.53,217.41],[781.71,217.42],[781.76,217.42],[782,217.44],[782.23,217.46],[782.45,217.47],[782.6,217.48],[782.79,217.49],[782.8,217.49],[782.82,217.49],[782.83,217.49],[782.85,217.5],[783,217.57],[783.01,217.58],[783.04,217.59],[783.13,217.64],[783.14,217.64],[783.19,217.67],[783.23,217.68],[783.27,217.7],[783.33,217.73],[783.34,217.73],[783.35,217.74],[783.36,217.74],[783.37,217.74],[783.37,217.74],[783.38,217.74],[783.51,217.77],[783.53,217.78],[783.53,217.78],[783.55,217.79],[783.68,217.86],[783.78,217.93],[784.03,218.07],[784.15,218.14],[784.17,218.15],[784.2,218.16],[784.23,218.16],[784.76,218.15],[784.88,218.15],[784.91,218.15],[785.2,218.19],[785.23,218.19],[785.29,218.21],[785.32,218.22],[785.44,218.23],[785.45,218.22],[785.47,218.21],[785.5,218.18],[785.5,218.18],[785.52,218.17],[785.53,218.16],[785.55,218.14],[785.56,218.12],[785.57,218.11],[785.57,218.09],[785.58,218.08],[785.59,218.07],[785.6,218.06],[785.63,218.06],[785.65,218.06],[785.69,218.03],[785.71,218.02],[785.73,218.02],[785.75,218.02],[785.78,218.02],[785.85,218.03],[785.87,218.04],[785.89,218.05],[785.91,218.05],[785.92,218.05],[785.98,218.05],[786.01,218.05],[786.08,218.07],[786.31,218.14],[786.32,218.14],[786.34,218.14],[786.36,218.14],[786.42,218.12],[786.42,218.12],[786.45,218.12],[786.47,218.11],[786.49,218.11],[786.5,218.11],[787.05,218.3],[787.07,218.31],[787.1,218.31],[787.12,218.31],[787.25,218.29],[787.29,218.29],[787.31,218.29],[787.33,218.29],[787.36,218.3],[787.52,218.37],[787.76,218.45],[787.82,218.47],[787.96,218.51],[788.01,218.51],[788.02,218.5],[788.04,218.49],[788.08,218.48],[788.19,218.48],[788.22,218.47],[788.25,218.46],[788.28,218.44],[788.29,218.44],[788.3,218.44],[788.36,218.45],[788.43,218.45],[788.5,218.43],[788.61,218.41],[788.63,218.41],[788.67,218.42],[788.71,218.43],[788.88,218.43],[788.91,218.43],[789.01,218.41],[789.11,218.39],[789.15,218.38],[789.24,218.37],[789.28,218.37],[789.45,218.36],[789.47,218.35],[789.48,218.33],[789.58,218.2],[789.58,218.19],[789.63,218.11],[789.63,218.11],[789.65,218.09],[789.85,217.89],[789.93,217.8],[790,217.78],[790.02,217.77],[790.23,217.73],[790.27,217.72],[790.3,217.72],[790.3,217.72],[790.42,217.69],[790.44,217.69],[790.47,217.68],[790.56,217.66],[790.67,217.64],[790.7,217.64],[790.71,217.64],[790.75,217.63],[790.76,217.63],[790.77,217.62],[790.78,217.62],[790.89,217.55],[790.89,217.55],[790.9,217.55],[790.95,217.54],[790.96,217.53],[790.98,217.53],[791.01,217.53],[791.03,217.52],[791.03,217.52],[791.05,217.52],[791.07,217.51],[791.08,217.51],[791.13,217.5],[791.14,217.49],[791.15,217.49],[791.18,217.49],[791.19,217.48],[791.33,217.45],[791.33,217.45],[791.34,217.45],[791.37,217.44],[791.38,217.44],[791.46,217.42],[791.48,217.42],[791.48,217.42],[791.52,217.41],[791.52,217.41],[791.55,217.4],[791.56,217.4],[791.56,217.4],[791.58,217.39],[791.6,217.39],[791.61,217.38],[791.62,217.38],[791.64,217.38],[791.71,217.36],[791.75,217.35],[791.8,217.33],[791.81,217.33],[791.86,217.32],[791.87,217.32],[791.89,217.31],[791.89,217.31],[791.9,217.31],[791.91,217.31],[791.93,217.3],[791.96,217.3],[791.99,217.29],[791.99,217.29],[792.05,217.27],[792.06,217.27],[792.06,217.27],[792.07,217.27],[792.08,217.26],[792.1,217.24],[792.1,217.24],[792.11,217.23],[792.11,217.23],[792.12,217.23],[792.13,217.22],[792.22,217.15],[792.49,216.93],[792.51,216.92],[792.63,216.82],[792.65,216.8],[792.77,216.71],[792.98,216.55],[792.99,216.54],[793,216.53],[793.23,216.35],[793.27,216.32],[793.28,216.31],[793.28,216.3],[793.3,216.29],[793.3,216.28],[793.31,216.28],[793.31,216.27],[793.32,216.27],[793.32,216.27],[793.43,216.23],[793.62,216.18],[793.69,216.15],[793.93,216.08],[793.95,216.08],[794.09,216.03],[794.2,216],[794.22,215.99],[794.29,215.97],[794.3,215.97],[794.3,215.97],[794.83,215.65],[794.89,215.61],[795.1,215.48],[795.18,215.44],[795.2,215.42],[795.25,215.39],[795.29,215.37],[795.32,215.35],[795.35,215.33],[795.39,215.31],[795.52,215.23],[795.53,215.22],[795.54,215.22],[795.58,215.17],[795.64,215.12],[795.66,215.11],[795.69,215.08],[795.7,215.07],[795.71,215.06],[795.82,215],[795.89,214.96],[796.02,214.9],[796.11,214.85],[796.18,214.82],[796.18,214.82],[796.19,214.81],[796.2,214.81],[796.24,214.79],[796.26,214.79],[796.31,214.78],[796.34,214.77],[796.35,214.77],[796.4,214.77],[796.41,214.76],[796.54,214.72],[796.59,214.7],[796.61,214.69],[796.76,214.64],[796.81,214.62],[796.81,214.62],[796.82,214.61],[796.82,214.61],[796.84,214.6],[796.85,214.6],[796.85,214.6],[796.87,214.59],[796.89,214.59],[797,214.57],[797.08,214.56],[797.09,214.56],[797.09,214.55],[797.1,214.55],[797.11,214.55],[797.12,214.55],[797.13,214.55],[797.14,214.55],[797.16,214.55],[797.17,214.56],[797.23,214.57],[797.25,214.58],[797.3,214.6],[797.32,214.61],[797.33,214.61],[797.34,214.61],[797.42,214.64],[797.43,214.65],[797.53,214.68],[797.55,214.69],[797.55,214.69],[797.58,214.7],[797.63,214.72],[797.67,214.73],[797.68,214.73],[797.69,214.73],[797.69,214.73],[797.7,214.73],[797.71,214.73],[797.92,214.65],[797.97,214.63],[798,214.62],[798.01,214.61],[798.03,214.61],[798.03,214.61],[798.04,214.61],[798.05,214.61],[798.06,214.61],[798.07,214.61],[798.08,214.61],[798.09,214.61],[798.1,214.62],[798.11,214.62],[798.2,214.69],[798.2,214.69],[798.21,214.7],[798.22,214.7],[798.23,214.7],[798.24,214.7],[798.24,214.7],[798.25,214.7],[798.29,214.68],[798.44,214.62],[798.45,214.61],[798.56,214.56],[798.58,214.55],[798.59,214.55],[798.76,214.47],[798.77,214.46],[798.95,214.38],[799.01,214.35],[799.02,214.35],[799.06,214.33],[799.07,214.32],[799.1,214.31],[799.15,214.29],[799.15,214.29],[799.16,214.29],[799.16,214.29],[799.17,214.29],[799.17,214.29],[799.18,214.3],[799.2,214.31],[799.29,214.35],[799.62,214.51],[799.63,214.51],[799.69,214.54],[799.7,214.54],[799.73,214.54],[799.74,214.54],[799.82,214.54],[799.83,214.54],[800.01,214.57],[800.07,214.58],[800.08,214.59],[800.08,214.59],[800.08,214.59],[800.08,214.59],[800.08,214.59],[800.1,214.59],[800.14,214.6],[800.15,214.6],[800.15,214.6],[800.15,214.6],[800.21,214.61],[800.23,214.62],[800.24,214.62],[800.24,214.62],[800.25,214.63],[800.25,214.64],[800.25,214.66],[800.32,214.86],[800.34,214.91],[800.34,214.91],[800.34,214.93],[800.37,215.02],[800.39,215.07],[800.39,215.08],[800.39,215.08],[800.4,215.09],[800.4,215.09],[800.4,215.1],[800.42,215.11],[800.45,215.13],[800.45,215.13],[800.46,215.13],[800.52,215.15],[800.54,215.16],[800.54,215.16],[800.54,215.16],[800.55,215.16],[800.55,215.17],[800.57,215.19],[800.59,215.22],[800.63,215.24],[800.65,215.25],[800.66,215.25],[800.67,215.25],[800.72,215.27],[800.74,215.27],[800.75,215.27],[800.75,215.27],[800.76,215.28],[800.76,215.28],[800.76,215.28],[800.78,215.28],[800.8,215.28],[800.8,215.28],[800.81,215.28],[800.82,215.28],[800.82,215.28],[800.83,215.29],[800.84,215.29],[800.84,215.3],[800.85,215.31],[800.97,215.46],[800.99,215.49],[801.02,215.52],[801.03,215.53],[801.03,215.53],[801.03,215.53],[801.04,215.54],[801.05,215.54],[801.05,215.54],[801.07,215.54],[801.1,215.54],[801.12,215.54],[801.22,215.55],[801.23,215.55],[801.24,215.55],[801.24,215.55],[801.24,215.55],[801.26,215.55],[801.27,215.55],[801.27,215.55],[801.28,215.55],[801.28,215.55],[801.29,215.55],[801.38,215.55],[801.38,215.55],[801.38,215.55],[801.42,215.55],[801.48,215.55],[801.5,215.55],[801.54,215.55],[801.55,215.54],[801.55,215.55],[801.58,215.54],[801.59,215.54],[801.6,215.54],[801.73,215.54],[801.75,215.55],[801.76,215.55],[801.9,215.55],[801.91,215.55],[801.94,215.55],[801.97,215.55],[801.99,215.55],[802,215.55],[802,215.55],[802,215.55],[802.04,215.55],[802.09,215.55],[802.14,215.55],[802.15,215.55],[802.16,215.55],[802.27,215.55],[802.32,215.55],[802.32,215.55],[802.33,215.55],[802.39,215.54],[802.4,215.54],[802.41,215.54],[802.43,215.55],[802.5,215.56],[802.52,215.57],[802.53,215.57],[802.54,215.57],[802.55,215.58],[802.56,215.59],[802.62,215.63],[802.64,215.65],[802.64,215.65],[802.71,215.69],[802.78,215.74],[802.78,215.75],[802.79,215.75],[802.79,215.76],[802.81,215.76],[802.82,215.77],[802.83,215.78],[802.86,215.8],[802.87,215.81],[802.89,215.82],[802.9,215.83],[802.91,215.84],[802.92,215.85],[802.93,215.85],[802.95,215.87],[802.96,215.88],[802.97,215.88],[802.98,215.88],[802.98,215.89],[802.98,215.89],[802.98,215.9],[802.98,215.9],[802.98,215.9],[803.01,215.92],[803.02,215.92],[803.03,215.93],[803.04,215.94],[803.05,215.94],[803.05,215.95],[803.1,215.99],[803.11,216],[803.11,216],[803.12,216],[803.12,216.01],[803.12,216.01],[803.15,216.05],[803.15,216.05],[803.16,216.07],[803.17,216.08],[803.18,216.09],[803.18,216.1],[803.19,216.11],[803.23,216.13],[803.29,216.19],[803.3,216.19],[803.32,216.22],[803.33,216.22],[803.34,216.23],[803.35,216.23],[803.36,216.24],[803.4,216.25],[803.44,216.26],[803.44,216.26],[803.48,216.27],[803.49,216.28],[803.53,216.31],[803.54,216.32],[803.56,216.33],[803.57,216.33],[803.58,216.34],[803.59,216.34],[803.6,216.34],[803.61,216.34],[803.62,216.35],[803.65,216.35],[803.66,216.36],[803.66,216.36],[803.67,216.36],[803.68,216.36],[803.68,216.37],[803.69,216.37],[803.71,216.38],[803.72,216.39],[803.73,216.4],[803.75,216.41],[803.77,216.44],[803.79,216.45],[803.8,216.46],[803.81,216.46],[803.82,216.47],[803.88,216.5],[803.89,216.5],[803.9,216.5],[803.9,216.5],[803.91,216.51],[803.94,216.52],[803.95,216.52],[803.97,216.53],[804.02,216.54],[804.02,216.54],[804.02,216.54],[804.03,216.54],[804.03,216.54],[804.05,216.55],[804.13,216.57],[804.14,216.57],[804.15,216.58],[804.18,216.59],[804.25,216.62],[804.26,216.63],[804.58,216.77],[804.67,216.82],[804.68,216.83],[804.71,216.84],[804.72,216.84],[804.74,216.85],[804.78,216.87],[804.8,216.88],[804.8,216.88],[804.81,216.88],[804.84,216.9],[804.86,216.9],[804.92,216.94],[804.98,216.96],[804.99,216.97],[805,216.97],[805.01,216.98],[805.03,216.99],[805.08,217.01],[805.18,217.06],[805.22,217.08],[805.24,217.08],[805.27,217.1],[805.28,217.1],[805.3,217.11],[805.32,217.12],[805.36,217.14],[805.39,217.16],[805.4,217.16],[805.47,217.19],[805.48,217.2],[805.59,217.25],[805.7,217.3],[805.7,217.3],[805.74,217.32],[805.77,217.33],[805.78,217.34],[805.85,217.37],[805.87,217.38],[805.88,217.38],[805.9,217.39],[805.97,217.43],[805.99,217.44],[806,217.44],[806,217.44],[806.02,217.45],[806.04,217.46],[806.04,217.46],[806.64,217.74],[806.93,217.88],[807.14,217.97],[807.26,218.03],[807.44,218.13],[807.57,218.2],[807.67,218.26],[807.68,218.26],[807.68,218.26],[807.71,218.27],[807.75,218.29],[807.75,218.3],[807.77,218.3],[807.8,218.32],[807.82,218.34],[807.85,218.35],[807.88,218.36],[807.89,218.37],[807.89,218.37],[807.91,218.38],[807.98,218.41],[808.01,218.41],[808.09,218.4],[808.28,218.61],[808.28,218.61],[808.28,218.61],[808.28,218.61],[808.28,218.61],[808.29,218.61],[808.29,218.62],[808.3,218.62],[808.33,218.62],[808.38,218.62],[808.42,218.63],[808.45,218.63],[808.46,218.63],[808.46,218.64],[808.47,218.64],[808.59,218.73],[808.6,218.74],[808.61,218.75],[808.72,218.83],[808.76,218.86],[808.76,218.86],[808.77,218.87],[808.8,218.89],[808.81,218.9],[808.82,218.9],[808.83,218.91],[808.84,218.91],[808.86,218.92],[808.87,218.92],[808.89,218.93],[808.91,218.93],[809.14,218.93],[809.33,218.94],[809.34,218.94],[809.36,218.94],[809.37,218.95],[809.39,218.95],[809.4,218.96],[809.41,218.96],[809.42,218.97],[809.42,218.97],[809.46,219],[810.42,219.65],[810.49,219.69],[810.5,219.7],[810.52,219.72],[810.53,219.73],[810.66,219.87],[810.66,219.87],[810.66,219.87],[810.67,219.88],[810.68,219.89],[810.69,219.9],[810.7,219.91],[810.7,219.91],[810.7,219.92],[810.71,219.93],[810.72,219.93],[810.72,219.94],[810.74,219.96],[810.74,219.96],[810.74,219.97],[810.74,219.97],[810.84,220.09],[810.96,220.22],[811.01,220.28],[811.01,220.28],[811.02,220.29],[811.02,220.3],[811.03,220.3],[811.03,220.3],[811.22,220.52],[811.22,220.52],[811.23,220.52],[811.24,220.53],[811.24,220.53],[811.25,220.54],[811.25,220.55],[811.26,220.55],[811.26,220.56],[811.37,220.69],[811.38,220.7],[811.39,220.7],[811.48,220.82],[811.5,220.84],[811.5,220.84],[811.62,220.98],[811.63,220.99],[811.64,221],[811.64,221.01],[811.64,221.03],[811.64,221.32],[811.64,221.37],[811.63,221.5],[811.63,221.57],[811.63,221.76],[811.63,221.77],[811.63,221.77],[811.63,222.05],[811.63,222.14],[811.62,222.25],[811.62,222.28],[811.62,222.3],[811.62,222.36],[811.62,222.37],[811.62,222.38],[811.61,222.4],[811.61,222.41],[811.61,222.43],[811.62,222.44],[811.62,222.45],[811.62,222.47],[811.62,222.57],[811.62,222.58],[811.63,222.6],[811.63,222.62],[811.64,222.63],[811.65,222.65],[811.66,222.66],[811.77,222.77],[811.97,222.95],[811.97,222.96],[811.97,222.96],[812.02,223.01],[812.03,223.01],[812.03,223.02],[812.28,223.25],[812.29,223.26],[812.28,223.27],[812.29,223.27],[812.3,223.27],[812.3,223.27],[812.59,223.55],[812.63,223.58],[812.75,223.71],[812.88,223.82],[812.88,223.83],[812.91,223.85],[812.93,223.87],[813.61,224.68],[813.62,224.69],[813.64,224.7],[813.64,224.71],[813.66,224.72],[813.78,224.81],[813.81,224.83],[814.04,224.99],[814.09,225.03],[814.28,225.16],[814.34,225.2],[814.38,225.23],[814.44,225.28],[814.71,225.47],[814.72,225.48],[814.74,225.49],[814.77,225.52],[814.79,225.55],[814.85,225.61],[814.86,225.62],[815.01,225.77],[815.03,225.8],[815.05,225.82],[815.1,225.88],[815.17,225.96],[815.18,225.97],[815.19,225.97],[815.2,225.98],[815.2,225.98],[815.42,225.97],[815.43,225.97],[815.44,225.98],[815.5,226.04],[815.55,226.1],[815.56,226.11],[815.57,226.12],[815.58,226.13],[815.76,226.23],[815.77,226.23],[815.79,226.23],[815.8,226.24],[815.81,226.25],[815.82,226.28],[815.82,226.29],[815.86,226.37],[815.87,226.37],[815.88,226.39],[815.9,226.43],[815.91,226.45],[815.91,226.46],[815.96,226.52],[815.97,226.53],[815.98,226.54],[816,226.55],[816.14,226.61],[816.14,226.61],[816.17,226.62],[816.34,226.69],[816.35,226.69],[816.37,226.7],[816.5,226.72],[816.52,226.72],[816.65,226.76],[816.66,226.76],[816.67,226.77],[816.67,226.78],[816.68,226.79],[816.69,226.79],[816.71,226.79],[816.72,226.79],[816.77,226.77],[816.91,226.73],[816.92,226.72],[816.94,226.72],[816.98,226.69],[816.99,226.69],[817.03,226.68],[817.04,226.68],[817.05,226.68],[817.06,226.68],[817.11,226.74],[817.17,226.81],[817.18,226.81],[817.18,226.81],[817.18,226.82],[817.18,226.82],[817.19,226.82],[817.19,226.83],[817.19,226.84],[817.2,226.84],[817.2,226.88],[817.21,226.89],[817.21,226.9],[817.2,226.94],[817.2,226.95],[817.22,227.02],[817.22,227.03],[817.23,227.08],[817.23,227.09],[817.24,227.1],[817.41,227.35],[817.46,227.42],[817.48,227.44],[817.5,227.5],[817.51,227.51],[817.52,227.52],[817.54,227.59],[817.54,227.6],[817.55,227.61],[817.55,227.62],[817.58,227.65],[817.63,227.73],[817.64,227.74],[817.65,227.75],[817.65,227.77],[817.66,227.8],[817.66,227.82],[817.67,227.83],[817.69,227.84],[817.7,227.85],[817.71,227.86],[817.73,227.94],[817.73,227.95],[817.74,227.97],[817.85,228.24],[817.86,228.25],[817.87,228.27],[817.88,228.28],[818.17,228.62],[818.18,228.63],[818.19,228.64],[818.19,228.66],[818.23,228.78],[818.26,228.9],[818.3,229.04],[818.31,229.07],[818.33,229.17],[818.33,229.19],[818.33,229.21],[818.36,229.68],[818.36,229.69],[818.38,230.2],[818.38,230.22],[818.39,230.23],[818.44,230.51],[818.46,230.58],[818.46,230.61],[818.48,230.69],[818.49,230.74],[818.51,230.83],[818.55,231.04],[818.56,231.07],[818.56,231.08],[818.57,231.11],[818.57,231.13],[818.58,231.26],[818.59,231.41],[818.59,231.5],[818.6,231.55],[818.6,231.56],[818.7,231.75],[818.71,231.76],[818.72,231.77],[818.73,231.78],[818.85,231.9],[818.86,231.91],[818.87,231.92],[818.88,231.93],[818.92,232],[818.92,232.01],[818.93,232.04],[818.93,232.05],[819,232.16],[819,232.17],[819.02,232.21],[819.02,232.22],[819.03,232.23],[819.07,232.26],[819.08,232.27],[819.09,232.28],[819.09,232.28],[819.09,232.29],[819.1,232.3],[819.12,232.34],[819.13,232.36],[819.14,232.38],[819.14,232.4],[819.13,232.42],[819.12,232.48],[819.11,232.49],[819.1,232.51],[819.1,232.52],[819.11,232.54],[819.12,232.57],[819.12,232.58],[819.12,232.6],[819.12,232.62],[819.12,232.63],[819.12,232.66],[819.12,232.68],[819.12,232.69],[819.11,232.7],[819.11,232.71],[819.1,232.73],[819.1,232.75],[819.1,232.78],[819.1,232.8],[819.1,232.81],[819.11,232.83],[819.13,232.84],[819.15,232.87],[819.17,232.9],[819.42,233.29],[819.7,233.73],[819.82,233.9],[819.86,233.96],[819.87,233.97],[819.87,233.98],[819.88,234.02],[819.89,234.04],[819.89,234.09],[819.9,234.11],[819.91,234.15],[819.91,234.17],[819.93,234.22],[819.94,234.24],[819.98,234.4],[819.98,234.41],[819.99,234.43],[820.16,234.81],[820.35,235.23],[820.76,236.15],[820.76,236.16],[820.77,236.17],[820.78,236.17],[820.79,236.18],[820.82,236.19],[820.84,236.19],[820.94,236.22],[821.1,236.27],[821.12,236.28],[821.12,236.28],[821.17,236.3],[821.21,236.31],[821.41,236.38],[821.44,236.38],[821.46,236.39],[821.46,236.39],[821.49,236.39],[821.51,236.39],[821.52,236.39],[821.54,236.39],[821.64,236.37],[821.66,236.37],[821.69,236.36],[821.7,236.36],[821.77,236.36],[821.79,236.35],[821.8,236.35],[821.81,236.35],[821.82,236.35],[821.83,236.35],[821.88,236.34],[821.93,236.33],[822,236.32],[822.09,236.31],[822.17,236.3],[822.19,236.3],[822.21,236.3],[822.28,236.28],[822.29,236.28],[822.54,236.25],[822.57,236.24],[822.61,236.24],[822.68,236.23],[822.8,236.22],[822.82,236.22],[822.86,236.22],[823.02,236.18],[823.03,236.18],[823.05,236.17],[823.08,236.17],[823.16,236.16],[823.27,236.15],[823.42,236.13],[823.69,236.09],[823.72,236.09],[823.76,236.08],[823.78,236.07],[823.8,236.07],[823.85,236.05],[823.86,236.05],[823.87,236.04],[823.89,236.04],[823.9,236.04],[823.9,236.04],[823.9,236.04],[823.91,236.04],[823.92,236.03],[823.95,236.03],[823.98,236.03],[824.06,236.03],[824.51,236.04],[824.56,236.04],[824.63,236.03],[824.66,236.03],[824.68,236.03],[824.7,236.03],[824.71,236.03],[824.78,236.04],[824.89,236.04],[824.91,236.04],[824.95,236.05],[825.04,236.07],[825.07,236.08],[825.11,236.08],[825.13,236.09],[825.16,236.09],[825.19,236.1],[825.23,236.11],[825.27,236.11],[825.28,236.11],[825.31,236.11],[825.37,236.11],[825.41,236.11],[825.45,236.11],[825.47,236.11],[825.49,236.11],[825.51,236.1],[825.55,236.1],[825.59,236.1],[825.64,236.1],[825.65,236.1],[825.65,236.1],[825.66,236.1],[825.67,236.1],[825.72,236.09],[825.74,236.09],[826.14,236.06],[826.17,236.06],[826.24,236.04],[826.26,236.03],[826.29,236.03],[826.32,236.03],[826.35,236.03],[826.41,236.04],[826.45,236.05],[826.45,236.05],[826.45,236.05],[826.47,236.05],[826.61,236.04],[826.64,236.04],[826.65,236.04],[826.68,236.04],[826.71,236.04],[826.73,236.05],[826.83,236.07],[827.12,236.14],[827.21,236.16],[827.23,236.16],[827.24,236.17],[827.27,236.18],[827.29,236.19],[827.31,236.2],[827.44,236.3],[827.46,236.32],[827.47,236.33],[827.49,236.35],[827.5,236.37],[827.51,236.39],[827.53,236.42],[827.59,236.57],[827.61,236.62],[827.66,236.77],[827.66,236.78],[827.67,236.81],[827.69,236.84],[827.72,236.9],[827.75,236.96],[827.77,236.99],[827.78,237.02],[827.8,237.1],[827.81,237.13],[827.83,237.16],[827.84,237.17],[827.94,237.3],[827.95,237.31],[827.96,237.34],[827.96,237.35],[827.97,237.38],[827.98,237.41],[827.98,237.44],[827.99,237.49],[827.99,237.51],[827.99,237.54],[828,237.56],[828.02,237.65],[828.03,237.69],[828.05,237.72],[828.08,237.76],[828.11,237.79],[828.17,237.85],[828.19,237.87],[828.21,237.89],[828.23,237.92],[828.25,237.97],[828.26,238],[828.27,238.03],[828.28,238.06],[828.28,238.09],[828.28,238.12],[828.28,238.15],[828.29,238.18],[828.33,238.34],[828.34,238.38],[828.36,238.42],[828.37,238.43],[828.47,238.56],[828.48,238.58],[828.5,238.6],[828.57,238.66],[828.59,238.69],[828.6,238.69],[828.61,238.71],[828.68,238.8],[828.7,238.83],[828.71,238.84],[828.73,238.86],[828.75,238.87],[828.76,238.88],[828.83,238.92],[828.83,238.93],[828.86,238.95],[828.86,238.95],[828.89,238.97],[828.94,239.03],[828.96,239.05],[828.98,239.06],[829.04,239.11],[829.11,239.16],[829.11,239.16],[829.12,239.17],[829.14,239.18],[829.14,239.18],[829.15,239.19],[829.17,239.21],[829.17,239.21],[829.17,239.21],[829.18,239.21],[829.19,239.22],[829.2,239.23],[829.22,239.24],[829.28,239.29],[829.29,239.3],[829.32,239.33],[829.33,239.34],[829.33,239.35],[829.34,239.35],[829.34,239.36],[829.38,239.4],[829.38,239.4],[829.38,239.4],[829.39,239.41],[829.39,239.41],[829.41,239.43],[829.43,239.44],[829.45,239.45],[829.46,239.46],[829.5,239.49],[829.52,239.5],[829.55,239.51],[829.56,239.52],[829.59,239.55],[829.61,239.56],[829.62,239.57],[829.65,239.59],[829.67,239.62],[829.69,239.64],[829.84,239.84],[829.84,239.84],[829.85,239.85],[829.86,239.86],[829.87,239.87],[829.87,239.87],[829.89,239.89],[829.9,239.89],[829.92,239.9],[829.93,239.91],[829.95,239.92],[829.96,239.92],[829.99,239.93],[830.03,239.94],[830.06,239.94],[830.08,239.95],[830.11,239.96],[830.13,239.98],[830.15,239.99],[830.18,240.02],[830.2,240.03],[830.22,240.05],[830.24,240.06],[830.25,240.07],[830.26,240.08],[830.28,240.09],[830.28,240.09],[830.31,240.11],[830.33,240.12],[830.39,240.14],[830.42,240.15],[830.43,240.16],[830.43,240.16],[830.46,240.17],[830.46,240.18],[830.55,240.23],[830.65,240.28],[830.69,240.31],[830.72,240.32],[830.8,240.36],[830.83,240.38],[830.88,240.4],[830.89,240.4],[830.9,240.41],[830.92,240.41],[830.92,240.42],[830.96,240.43],[831.07,240.47],[831.12,240.48],[831.12,240.48],[831.12,240.48],[831.12,240.49],[831.13,240.49],[831.16,240.5],[831.19,240.51],[831.21,240.52],[831.32,240.55],[831.36,240.56],[831.39,240.57],[831.41,240.57],[831.41,240.57],[831.42,240.58],[831.42,240.58],[831.43,240.58],[831.44,240.58],[831.46,240.59],[831.47,240.6],[831.48,240.6],[831.5,240.62],[831.55,240.65],[831.56,240.65],[831.62,240.68],[831.64,240.69],[831.66,240.7],[831.67,240.71],[831.68,240.71],[831.68,240.72],[831.69,240.72],[831.7,240.73],[831.71,240.74],[831.73,240.76],[831.76,240.77],[831.77,240.77],[831.79,240.79],[831.82,240.8],[831.85,240.81],[831.86,240.81],[831.88,240.82],[831.9,240.84],[831.94,240.85],[831.99,240.88],[832.08,240.91],[832.1,240.92],[832.11,240.92],[832.13,240.93],[832.16,240.95],[832.18,240.96],[832.26,241.03],[832.3,241.07],[832.3,241.07],[832.3,241.07],[832.31,241.08],[832.32,241.09],[832.33,241.09],[832.34,241.1],[832.34,241.1],[832.34,241.1],[832.37,241.11],[832.42,241.14],[832.45,241.15],[832.46,241.16],[832.48,241.17],[832.51,241.19],[832.51,241.2],[832.54,241.22],[832.56,241.23],[832.58,241.25],[832.59,241.25],[832.6,241.26],[832.6,241.26],[832.6,241.26],[832.61,241.26],[832.61,241.26],[832.64,241.27],[832.66,241.27],[832.66,241.27],[832.7,241.28],[832.73,241.29],[832.73,241.29],[832.77,241.3],[832.77,241.3],[832.78,241.3],[832.8,241.31],[832.8,241.31],[832.81,241.31],[832.82,241.31],[832.83,241.32],[832.9,241.33],[832.91,241.33],[832.93,241.34],[832.93,241.34],[832.95,241.34],[832.96,241.35],[832.98,241.36],[833,241.37],[833.02,241.37],[833.02,241.37],[833.05,241.39],[833.09,241.41],[833.15,241.43],[833.18,241.45],[833.25,241.5],[833.28,241.51],[833.29,241.52],[833.3,241.52],[833.31,241.53],[833.31,241.53],[833.32,241.53],[833.33,241.53],[833.37,241.54],[833.4,241.54],[833.47,241.55],[833.49,241.55],[833.49,241.55],[833.52,241.55],[833.55,241.56],[833.62,241.58],[833.64,241.58],[833.64,241.59],[833.64,241.59],[833.67,241.6],[833.69,241.61],[833.75,241.63],[833.75,241.63],[833.77,241.63],[833.78,241.64],[833.78,241.64],[833.8,241.65],[833.81,241.65],[833.82,241.66],[833.82,241.66],[833.89,241.68],[833.98,241.72],[834.04,241.75],[834.17,241.8],[834.18,241.8],[834.18,241.8],[834.19,241.81],[834.19,241.81],[834.19,241.82],[834.19,241.82],[834.18,241.84],[834.18,241.84],[834.22,241.84],[834.23,241.85],[834.24,241.85],[834.24,241.84],[834.24,241.84],[834.25,241.83],[834.25,241.83],[834.26,241.83],[834.26,241.83],[834.27,241.83],[834.28,241.83],[834.28,241.84],[834.28,241.84],[834.29,241.85],[834.31,241.86],[834.32,241.87],[834.33,241.88],[834.34,241.88],[834.35,241.89],[834.39,241.9],[834.54,241.96],[834.55,241.96],[834.56,241.96],[834.56,241.96],[834.57,241.96],[834.57,241.96],[834.57,241.96],[834.58,241.95],[834.58,241.95],[834.6,241.94],[834.61,241.94],[834.61,241.94],[834.62,241.93],[834.63,241.93],[834.67,241.92],[834.67,241.91],[834.7,241.9],[834.71,241.89],[834.72,241.89],[834.72,241.88],[834.78,241.84],[834.78,241.84],[834.78,241.84],[834.78,241.84],[834.79,241.84],[834.79,241.84],[834.8,241.84],[834.81,241.84],[834.82,241.84],[834.82,241.84],[834.82,241.84],[834.83,241.84],[834.84,241.85],[834.89,241.85],[834.93,241.85],[834.94,241.86],[834.97,241.86],[834.97,241.86],[835.01,241.87],[835.04,241.88],[835.07,241.88],[835.08,241.91],[835.09,241.93],[835.09,241.93],[835.09,241.93],[835.1,241.94],[835.1,241.94],[835.11,241.97],[835.12,242],[835.12,242],[835.12,242],[835.12,242],[835.12,242],[835.12,242],[835.12,242.01],[835.12,242.01],[835.13,242.02],[835.13,242.02],[835.13,242.02],[835.13,242.02],[835.13,242.02],[835.14,242.02],[835.14,242.04],[835.14,242.04],[835.14,242.04],[835.15,242.06],[835.16,242.07],[835.16,242.08],[835.17,242.1],[835.17,242.1],[835.17,242.1],[835.17,242.1],[835.17,242.1],[835.17,242.1],[835.17,242.1],[835.17,242.11],[835.17,242.11],[835.17,242.11],[835.17,242.11],[835.17,242.11],[835.17,242.11],[835.18,242.13],[835.18,242.14],[835.18,242.14],[835.18,242.14],[835.18,242.14],[835.18,242.14],[835.19,242.14],[835.19,242.14],[835.19,242.14],[835.2,242.14],[835.2,242.14],[835.22,242.13],[835.23,242.13],[835.25,242.13],[835.26,242.13],[835.27,242.13],[835.28,242.13],[835.3,242.12],[835.34,242.11],[835.37,242.11],[835.37,242.11],[835.39,242.11],[835.41,242.11],[835.42,242.11],[835.43,242.11],[835.45,242.11],[835.47,242.11],[835.49,242.11],[835.5,242.11],[835.51,242.12],[835.54,242.12],[835.56,242.13],[835.57,242.13],[835.58,242.13],[835.6,242.14],[835.61,242.14],[835.62,242.15],[835.63,242.15],[835.64,242.16],[835.65,242.17],[835.66,242.18],[835.68,242.19],[835.69,242.2],[835.7,242.2],[835.71,242.21],[835.72,242.22],[835.73,242.22],[835.74,242.23],[835.79,242.26],[835.8,242.26],[835.82,242.27],[835.82,242.27],[835.84,242.28],[835.85,242.29],[835.86,242.3],[835.87,242.31],[835.89,242.33],[835.9,242.33],[835.94,242.36],[835.95,242.37],[835.97,242.39],[835.98,242.39],[835.99,242.4],[836,242.41],[836.01,242.41],[836.02,242.42],[836.04,242.43],[836.05,242.44],[836.06,242.44],[836.07,242.45],[836.08,242.45],[836.11,242.47],[836.12,242.48],[836.14,242.49],[836.14,242.49],[836.15,242.5],[836.16,242.5],[836.17,242.51],[836.18,242.51],[836.19,242.51],[836.2,242.52],[836.21,242.52],[836.22,242.52],[836.23,242.52],[836.24,242.52],[836.3,242.52],[836.31,242.52],[836.31,242.52],[836.32,242.52],[836.33,242.52],[836.36,242.52],[836.36,242.52],[836.38,242.53],[836.4,242.53],[836.41,242.53],[836.43,242.53],[836.45,242.53],[836.47,242.54],[836.49,242.55],[836.5,242.55],[836.53,242.56],[836.54,242.56],[836.55,242.57],[836.58,242.58],[836.59,242.58],[836.61,242.6],[836.63,242.61],[836.65,242.62],[836.67,242.62],[836.69,242.63],[836.71,242.64],[836.73,242.64],[836.75,242.65],[836.78,242.66],[836.79,242.67],[836.8,242.68],[836.82,242.68],[836.83,242.69],[836.85,242.7],[836.85,242.71],[836.86,242.71],[836.87,242.72],[836.88,242.73],[836.9,242.75],[836.91,242.75],[836.94,242.79],[836.96,242.81],[836.98,242.83],[836.99,242.84],[837,242.85],[837.01,242.86],[837.02,242.86],[837.04,242.88],[837.06,242.89],[837.09,242.91],[837.11,242.91],[837.11,242.92],[837.12,242.93],[837.13,242.93],[837.15,242.95],[837.16,242.96],[837.17,242.97],[837.18,242.98],[837.21,243.01],[837.22,243.03],[837.23,243.03],[837.24,243.04],[837.26,243.06],[837.27,243.07],[837.27,243.07],[837.31,243.1],[837.32,243.11],[837.33,243.12],[837.34,243.13],[837.36,243.15],[837.37,243.15],[837.37,243.16],[837.38,243.17],[837.39,243.18],[837.39,243.18],[837.4,243.19],[837.4,243.21],[837.41,243.21],[837.41,243.22],[837.42,243.25],[837.43,243.25],[837.44,243.27],[837.45,243.29],[837.45,243.3],[837.46,243.31],[837.47,243.33],[837.48,243.34],[837.49,243.35],[837.5,243.36],[837.5,243.37],[837.52,243.38],[837.52,243.39],[837.53,243.4],[837.55,243.41],[837.56,243.41],[837.56,243.42],[837.57,243.43],[837.58,243.43],[837.59,243.44],[837.6,243.44],[837.62,243.45],[837.63,243.46],[837.64,243.46],[837.66,243.47],[837.69,243.48],[837.72,243.49],[837.73,243.5],[837.75,243.51],[837.77,243.52],[837.78,243.53],[837.84,243.57],[837.86,243.58],[837.88,243.59],[837.9,243.6],[837.91,243.6],[837.92,243.61],[837.94,243.62],[837.96,243.62],[838,243.63],[838.02,243.65],[838.04,243.65],[838.05,243.66],[838.07,243.66],[838.09,243.68],[838.1,243.68],[838.12,243.69],[838.13,243.7],[838.14,243.71],[838.16,243.72],[838.17,243.73],[838.18,243.74],[838.19,243.75],[838.21,243.77],[838.23,243.78],[838.25,243.79],[838.26,243.8],[838.28,243.81],[838.3,243.82],[838.33,243.84],[838.35,243.85],[838.36,243.85],[838.37,243.86],[838.37,243.86],[838.37,243.86],[838.37,243.87],[838.37,243.87],[838.37,243.87],[838.37,243.87],[838.37,243.87],[838.37,243.88],[838.38,243.88],[838.38,243.88],[838.38,243.88],[838.38,243.88],[838.38,243.87],[838.39,243.87],[838.39,243.87],[838.39,243.86],[838.39,243.86],[838.39,243.86],[838.4,243.86],[838.4,243.86],[838.4,243.85],[838.4,243.85],[838.4,243.84],[838.39,243.8],[838.38,243.76],[838.37,243.72],[838.37,243.71],[838.37,243.71],[838.37,243.71],[838.37,243.7],[838.38,243.67],[838.39,243.63],[838.41,243.58],[838.42,243.53],[838.42,243.53],[838.43,243.52],[838.43,243.5],[838.47,243.5],[838.47,243.5],[838.48,243.51],[838.59,243.54],[838.61,243.55],[838.61,243.55],[838.65,243.57],[838.66,243.57],[838.67,243.58],[838.71,243.6],[838.76,243.63],[838.79,243.65],[838.8,243.66],[838.8,243.66],[838.84,243.71],[838.85,243.75],[838.87,243.81],[838.88,243.85],[838.89,243.86],[838.97,244.01],[838.99,244.04],[839.02,244.1],[839.03,244.11],[839.04,244.12],[839.07,244.22],[839.1,244.28],[839.1,244.29],[839.1,244.3],[839.07,244.47],[839.06,244.51],[839.06,244.54],[839.06,244.58],[839.06,244.63],[839.07,244.65],[839.08,244.68],[839.08,244.69],[839.08,244.7],[839.12,244.75],[839.21,244.91],[839.22,244.92],[839.28,244.97],[839.31,244.99],[839.36,245],[839.37,245.01],[839.4,245.02],[839.4,245.02],[839.42,245.03],[839.43,245.04],[839.43,245.04],[839.44,245.04],[839.44,245.04],[839.46,245.05],[839.51,245.07],[839.54,245.08],[839.56,245.09],[839.6,245.09],[839.61,245.09],[839.67,245.12],[839.7,245.13],[839.71,245.13],[839.72,245.13],[839.73,245.14],[839.73,245.14],[839.74,245.17],[839.74,245.17],[839.74,245.18],[839.75,245.18],[839.79,245.2],[839.79,245.2],[839.79,245.2],[839.8,245.2],[839.81,245.2],[839.83,245.21],[839.9,245.21],[839.91,245.21],[839.91,245.22],[839.93,245.21],[839.94,245.22],[840.02,245.23],[840.03,245.24],[840.11,245.28],[840.2,245.33],[840.22,245.34],[840.23,245.35],[840.24,245.36],[840.25,245.37],[840.25,245.37],[840.26,245.37],[840.3,245.37],[840.31,245.38],[840.32,245.38],[840.33,245.38],[840.34,245.39],[840.49,245.44],[840.72,245.53],[840.87,245.58],[840.88,245.59],[840.93,245.62],[840.96,245.64],[840.97,245.65],[841,245.69],[841.01,245.69],[841.04,245.71],[841.1,245.73],[841.1,245.73],[841.11,245.74],[841.12,245.75],[841.18,245.81],[841.18,245.82],[841.19,245.83],[841.21,245.84],[841.22,245.84],[841.63,246],[841.68,246.02],[841.69,246.02],[841.7,246.04],[841.7,246.04],[841.7,246.04],[841.77,246.05],[841.78,246.05],[841.79,246.05],[841.82,246.04],[841.83,246.04],[841.87,246.01],[841.89,246],[841.92,245.97],[841.93,245.97],[841.95,245.97],[841.96,245.97],[841.97,245.97],[841.98,245.96],[841.98,245.96],[841.98,245.95],[841.99,245.92],[841.99,245.9],[842,245.88],[842,245.88],[842,245.86],[842.01,245.85],[842.03,245.8],[842.04,245.79],[842.04,245.77],[842.04,245.77],[842.04,245.77],[842.06,245.76],[842.08,245.77],[842.08,245.77],[842.1,245.77],[842.12,245.77],[842.12,245.77],[842.21,245.77],[842.29,245.77],[842.39,245.75],[842.4,245.75],[842.41,245.75],[842.5,245.7],[842.53,245.67],[842.55,245.66],[842.56,245.65],[842.59,245.64],[842.61,245.62],[842.62,245.62],[842.63,245.61],[842.66,245.6],[842.71,245.56],[842.74,245.54],[842.75,245.53],[842.77,245.51],[842.84,245.47],[842.85,245.46],[842.86,245.45],[842.88,245.44],[842.88,245.43],[842.89,245.43],[842.91,245.42],[842.91,245.42],[842.99,245.39],[843.02,245.38],[843.15,245.32],[843.17,245.31],[843.22,245.29],[843.23,245.28],[843.26,245.27],[843.27,245.27],[843.28,245.28],[843.29,245.28],[843.3,245.28],[843.38,245.32],[843.43,245.34],[843.44,245.35],[843.46,245.35],[843.47,245.35],[843.48,245.36],[843.51,245.37],[843.55,245.39],[843.55,245.39],[843.59,245.41],[843.6,245.42],[843.74,245.45],[843.74,245.45],[843.76,245.46],[843.77,245.46],[843.79,245.47],[843.8,245.48],[843.83,245.49],[843.86,245.51],[843.89,245.53],[843.9,245.53],[843.95,245.55],[843.97,245.55],[843.99,245.56],[844,245.57],[844.01,245.58],[844.02,245.58],[844.02,245.58],[844.04,245.58],[844.05,245.58],[844.06,245.58],[844.08,245.58],[844.14,245.57],[844.22,245.57],[844.24,245.57],[844.25,245.58],[844.27,245.59],[844.28,245.6],[844.36,245.65],[844.37,245.65],[844.38,245.66],[844.4,245.68],[844.5,245.77],[844.6,245.89],[844.66,245.96],[844.68,245.99],[844.68,245.99],[844.69,246],[844.69,246],[844.7,246.02],[844.71,246.05],[844.71,246.06],[844.71,246.07],[844.72,246.08],[844.74,246.1],[844.75,246.11],[844.76,246.13],[844.77,246.14],[844.78,246.15],[844.79,246.15],[844.85,246.25],[844.86,246.26],[844.87,246.26],[844.9,246.26],[844.93,246.27],[844.94,246.27],[844.95,246.27],[844.96,246.27],[844.96,246.27],[844.97,246.28],[844.98,246.29],[844.98,246.29],[844.98,246.29],[844.98,246.3],[845,246.32],[845,246.33],[845.01,246.34],[845.01,246.37],[845.01,246.37],[845.02,246.38],[845.03,246.39],[845.04,246.39],[845.05,246.4],[845.06,246.4],[845.07,246.41],[845.08,246.41],[845.1,246.41],[845.11,246.41],[845.14,246.41],[845.17,246.42],[845.17,246.42],[845.18,246.42],[845.2,246.43],[845.23,246.44],[845.23,246.44],[845.23,246.44],[845.28,246.43],[845.3,246.44],[845.31,246.44],[845.34,246.43],[845.35,246.43],[845.36,246.43],[845.36,246.44],[845.38,246.44],[845.38,246.44],[845.38,246.44],[845.41,246.46],[845.43,246.47],[845.45,246.48],[845.45,246.49],[845.46,246.5],[845.46,246.5],[845.47,246.52],[845.47,246.52],[845.48,246.53],[845.53,246.55],[845.54,246.55],[845.54,246.56],[845.56,246.57],[845.56,246.58],[845.57,246.58],[845.59,246.58],[845.59,246.58],[845.6,246.57],[845.62,246.56],[845.62,246.55],[845.63,246.55],[845.68,246.56],[845.68,246.56],[845.7,246.56],[845.74,246.57],[845.77,246.58],[845.79,246.58],[845.84,246.6],[845.85,246.6],[845.87,246.62],[845.87,246.63],[845.88,246.63],[845.88,246.64],[845.89,246.65],[845.92,246.68],[845.93,246.69],[845.94,246.71],[845.95,246.71],[845.99,246.74],[845.99,246.74],[846.02,246.74],[846.04,246.75],[846.04,246.75],[846.08,246.77],[846.11,246.79],[846.14,246.81],[846.15,246.82],[846.17,246.85],[846.21,246.88],[846.22,246.88],[846.23,246.89],[846.25,246.9],[846.28,246.91],[846.33,246.92],[846.34,246.93],[846.4,246.98],[846.42,246.99],[846.46,247.04],[846.47,247.05],[846.5,247.07],[846.5,247.08],[846.52,247.1],[846.53,247.11],[846.54,247.13],[846.55,247.13],[846.55,247.13],[846.56,247.15],[846.58,247.16],[846.59,247.18],[846.6,247.18],[846.61,247.19],[846.68,247.28],[846.72,247.34],[846.74,247.36],[846.75,247.36],[846.76,247.39],[846.76,247.4],[846.76,247.4],[846.77,247.41],[846.81,247.43],[846.81,247.43],[846.85,247.47],[846.87,247.49],[846.93,247.57],[846.94,247.58],[846.96,247.6],[846.98,247.62],[846.98,247.62],[847,247.63],[847,247.64],[847.01,247.64],[847.02,247.63],[847.04,247.63],[847.04,247.63],[847.05,247.64],[847.05,247.64],[847.06,247.65],[847.07,247.66],[847.11,247.68],[847.14,247.7],[847.16,247.71],[847.18,247.72],[847.18,247.72],[847.19,247.72],[847.2,247.72],[847.22,247.73],[847.23,247.74],[847.23,247.74],[847.25,247.75],[847.26,247.75],[847.26,247.75],[847.29,247.73],[847.3,247.73],[847.33,247.73],[847.34,247.73],[847.34,247.74],[847.37,247.77],[847.37,247.78],[847.37,247.78],[847.36,247.81],[847.36,247.85],[847.36,247.86],[847.36,247.87],[847.38,247.88],[847.38,247.89],[847.39,247.91],[847.37,247.99],[847.36,248.05],[847.36,248.06],[847.35,248.06],[847.36,248.07],[847.36,248.08],[847.38,248.12],[847.38,248.13],[847.4,248.16],[847.41,248.17],[847.41,248.18],[847.42,248.18],[847.44,248.18],[847.46,248.17],[847.47,248.17],[847.47,248.17],[847.48,248.17],[847.52,248.17],[847.54,248.16],[847.55,248.16],[847.55,248.16],[847.56,248.16],[847.57,248.16],[847.58,248.16],[847.59,248.16],[847.61,248.16],[847.62,248.16],[847.64,248.16],[847.67,248.16],[847.67,248.16],[847.67,248.16],[847.72,248.15],[847.73,248.16],[847.79,248.17],[847.8,248.17],[847.81,248.17],[847.84,248.16],[847.88,248.16],[847.89,248.16],[847.99,248.14],[848.01,248.13],[848.03,248.13],[848.06,248.13],[848.07,248.13],[848.13,248.13],[848.16,248.13],[848.17,248.13],[848.18,248.14],[848.2,248.14],[848.21,248.14],[848.21,248.14],[848.22,248.14],[848.24,248.13],[848.25,248.13],[848.25,248.13],[848.28,248.14],[848.28,248.14],[848.33,248.14],[848.34,248.14],[848.38,248.13],[848.38,248.13],[848.42,248.13],[848.43,248.14],[848.44,248.14],[848.45,248.16],[848.46,248.17],[848.51,248.2],[848.51,248.2],[848.52,248.22],[848.53,248.22],[848.54,248.23],[848.59,248.23],[848.68,248.26],[848.69,248.26],[848.7,248.27],[848.7,248.28],[848.72,248.33],[848.74,248.36],[848.76,248.39],[848.81,248.43],[848.92,248.5],[848.93,248.51],[849.01,248.54],[849.01,248.54],[849.03,248.56],[849.04,248.57],[849.08,248.6],[849.17,248.66],[849.23,248.69],[849.29,248.73],[849.42,248.78],[849.48,248.81],[849.5,248.82],[849.6,248.88],[849.61,248.89],[849.7,248.92],[849.74,248.93],[849.76,248.93],[849.79,248.94],[849.81,248.93],[849.84,248.93],[849.98,248.94],[850.14,248.99],[850.18,249],[850.24,249.01],[850.28,249.01],[850.44,249.02],[850.57,249.01],[850.59,249],[850.6,249],[850.63,248.99],[850.66,248.97],[850.67,248.96],[850.69,248.94],[850.69,248.94],[850.7,248.93],[850.71,248.93],[850.74,248.93],[850.76,248.94],[850.81,248.95],[850.82,248.95],[850.82,248.95],[850.89,248.99],[850.89,248.99],[850.9,248.97],[850.92,248.95],[850.92,248.95],[850.92,248.95],[850.93,248.95],[850.94,248.95],[850.95,248.95],[850.95,248.95],[850.96,248.94],[850.97,248.94],[850.98,248.94],[850.98,248.94],[850.99,248.94],[850.99,248.94],[850.99,248.94],[851,248.94],[851,248.94],[851.01,248.95],[851.1,249.02],[851.12,249.03],[851.13,249.03],[851.14,249.04],[851.15,249.06],[851.16,249.06],[851.17,249.08],[851.18,249.09],[851.24,249.17],[851.25,249.18],[851.26,249.18],[851.26,249.19],[851.27,249.19],[851.28,249.2],[851.29,249.21],[851.29,249.21],[851.31,249.22],[851.31,249.22],[851.36,249.24],[851.39,249.26],[851.4,249.27],[851.41,249.27],[851.41,249.27],[851.42,249.28],[851.43,249.29],[851.44,249.29],[851.44,249.3],[851.44,249.3],[851.45,249.31],[851.45,249.32],[851.47,249.34],[851.54,249.48],[851.55,249.48],[851.55,249.49],[851.56,249.51],[851.57,249.52],[851.58,249.54],[851.58,249.55],[851.59,249.56],[851.61,249.59],[851.62,249.62],[851.66,249.7],[851.67,249.73],[851.68,249.75],[851.69,249.77],[851.7,249.79],[851.71,249.79],[851.73,249.81],[851.74,249.83],[851.81,249.87],[851.85,249.9],[851.91,249.95],[851.92,249.96],[851.93,249.97],[851.94,249.99],[851.97,250.03],[852,250.05],[852,250.06],[852.01,250.07],[852.02,250.08],[852.03,250.13],[852.04,250.13],[852.04,250.15],[852.04,250.21],[852.05,250.21],[852.05,250.22],[852.06,250.24],[852.08,250.26],[852.08,250.28],[852.13,250.32],[852.14,250.33],[852.23,250.38],[852.28,250.41],[852.29,250.41],[852.32,250.43],[852.47,250.55],[852.49,250.56],[852.59,250.68],[852.6,250.69],[852.61,250.7],[852.62,250.72],[852.62,250.73],[852.65,250.82],[852.66,250.85],[852.68,250.93],[852.68,250.95],[852.68,250.96],[852.69,250.97],[852.71,250.99],[852.73,251.02],[852.74,251.02],[852.74,251.03],[852.74,251.03],[852.75,251.04],[852.75,251.04],[852.76,251.05],[852.76,251.06],[852.77,251.08],[852.77,251.08],[852.77,251.1],[852.78,251.12],[852.78,251.13],[852.79,251.15],[852.79,251.16],[852.8,251.17],[852.8,251.18],[852.8,251.19],[852.8,251.21],[852.8,251.22],[852.8,251.23],[852.8,251.25],[852.8,251.26],[852.8,251.33],[852.8,251.34],[852.8,251.35],[852.8,251.35],[852.8,251.36],[852.8,251.36],[852.8,251.37],[852.8,251.37],[852.81,251.37],[852.81,251.38],[852.81,251.38],[852.81,251.39],[852.81,251.39],[852.82,251.4],[852.82,251.41],[852.83,251.41],[852.83,251.42],[852.84,251.42],[852.85,251.43],[852.88,251.45],[852.92,251.47],[852.95,251.49],[852.97,251.5],[852.98,251.51],[853,251.52],[853.01,251.53],[853.02,251.54],[853.03,251.55],[853.05,251.56],[853.07,251.58],[853.1,251.6],[853.12,251.61],[853.13,251.62],[853.15,251.63],[853.22,251.69],[853.23,251.69],[853.24,251.7],[853.25,251.7],[853.26,251.71],[853.34,251.74],[853.36,251.75],[853.37,251.75],[853.38,251.75],[853.38,251.76],[853.41,251.76],[853.43,251.76],[853.43,251.76],[853.44,251.77],[853.44,251.77],[853.45,251.77],[853.45,251.77],[853.46,251.78],[853.46,251.78],[853.47,251.79],[853.51,251.81],[853.52,251.81],[853.53,251.82],[853.53,251.82],[853.54,251.83],[853.55,251.84],[853.6,251.88],[853.61,251.89],[853.62,251.9],[853.63,251.9],[853.64,251.91],[853.64,251.92],[853.67,251.93],[853.71,251.96],[853.74,251.97],[853.76,251.99],[853.78,251.99],[853.8,252],[853.84,252.02],[853.94,252.06],[853.97,252.08],[854.01,252.09],[854.02,252.1],[854.03,252.1],[854.03,252.11],[854.04,252.11],[854.06,252.12],[854.07,252.13],[854.08,252.14],[854.09,252.15],[854.1,252.16],[854.13,252.19],[854.16,252.22],[854.17,252.23],[854.18,252.24],[854.19,252.25],[854.21,252.27],[854.25,252.3],[854.25,252.3],[854.26,252.31],[854.26,252.31],[854.32,252.4],[854.33,252.4],[854.33,252.41],[854.33,252.41],[854.34,252.42],[854.34,252.42],[854.35,252.43],[854.35,252.43],[854.36,252.43],[854.45,252.48],[854.46,252.49],[854.47,252.49],[854.49,252.5],[854.5,252.51],[854.57,252.53],[854.58,252.54],[854.59,252.54],[854.6,252.55],[854.61,252.56],[854.63,252.58],[854.67,252.63],[854.69,252.65],[854.7,252.66],[854.71,252.68],[854.72,252.69],[854.76,252.76],[854.77,252.78],[854.78,252.79],[854.79,252.79],[854.8,252.8],[854.8,252.81],[854.81,252.81],[854.82,252.81],[854.84,252.82],[854.93,252.85],[854.94,252.85],[854.97,252.87],[855.02,252.89],[855.05,252.9],[855.07,252.91],[855.09,252.91],[855.1,252.91],[855.17,252.91],[855.18,252.92],[855.2,252.92],[855.22,252.93],[855.28,252.95],[855.37,252.97],[855.38,252.97],[855.39,252.97],[855.4,252.98],[855.41,252.98],[855.42,252.99],[855.51,253.06],[855.52,253.08],[855.53,253.08],[855.55,253.09],[855.59,253.1],[855.71,253.13],[855.72,253.13],[855.75,253.14],[855.77,253.15],[855.88,253.19],[855.94,253.22],[855.96,253.23],[856.04,253.25],[856.04,253.25],[856.05,253.26],[856.05,253.26],[856.05,253.26],[856.06,253.26],[856.06,253.26],[856.06,253.26],[856.06,253.26],[856.06,253.26],[856.06,253.26],[856.07,253.25],[856.07,253.25],[856.07,253.25],[856.07,253.24],[856.08,253.23],[856.08,253.21],[856.09,253.2],[856.09,253.19],[856.1,253.19],[856.11,253.19],[856.18,253.22],[856.19,253.22],[856.2,253.22],[856.24,253.25],[856.27,253.27],[856.35,253.31],[856.36,253.32],[856.48,253.36],[856.59,253.4],[856.67,253.45],[856.7,253.46],[856.73,253.48],[856.77,253.51],[856.78,253.52],[856.83,253.57],[856.92,253.64],[856.98,253.68],[857.02,253.71],[857.08,253.76],[857.08,253.76],[857.09,253.76],[857.09,253.77],[857.1,253.78],[857.1,253.78],[857.2,253.85],[857.24,253.87],[857.27,253.89],[857.28,253.89],[857.33,253.91],[857.34,253.92],[857.35,253.92],[857.42,253.94],[857.49,253.96],[857.49,253.96],[857.51,253.97],[857.61,254.02],[857.65,254.04],[857.69,254.06],[857.7,254.07],[857.73,254.08],[857.76,254.1],[857.76,254.1],[857.8,254.12],[857.82,254.13],[857.89,254.18],[857.9,254.19],[857.91,254.19],[857.91,254.19],[857.93,254.2],[857.94,254.21],[857.96,254.22],[857.99,254.24],[858,254.24],[858,254.25],[858.01,254.25],[858.01,254.26],[858.02,254.26],[858.03,254.27],[858.09,254.3],[858.16,254.35],[858.18,254.37],[858.19,254.37],[858.19,254.38],[858.2,254.39],[858.2,254.39],[858.22,254.4],[858.23,254.41],[858.28,254.44],[858.32,254.46],[858.36,254.48],[858.37,254.49],[858.38,254.49],[858.4,254.51],[858.44,254.53],[858.47,254.55],[858.48,254.55],[858.51,254.57],[858.55,254.6],[858.57,254.62],[858.58,254.62],[858.6,254.63],[858.63,254.63],[858.65,254.63],[858.65,254.63],[858.67,254.64],[858.68,254.64],[858.68,254.65],[858.68,254.65],[858.7,254.67],[858.73,254.7],[858.75,254.71],[858.77,254.73],[858.8,254.76],[858.82,254.78],[858.83,254.79],[858.89,254.84],[858.89,254.85],[858.93,254.88],[858.94,254.89],[858.96,254.91],[858.98,254.92],[859.02,254.95],[859.03,254.95],[859.21,255.07],[859.22,255.07],[859.23,255.08],[859.24,255.09],[859.24,255.09],[859.26,255.1],[859.27,255.11],[859.3,255.13],[859.31,255.14],[859.37,255.19],[859.37,255.2],[859.38,255.21],[859.38,255.23],[859.38,255.24],[859.42,255.28],[859.43,255.3],[859.46,255.33],[859.47,255.34],[859.5,255.38],[859.5,255.39],[859.55,255.42],[859.56,255.42],[859.58,255.42],[859.59,255.42],[859.62,255.43],[859.65,255.44],[859.68,255.46],[859.69,255.46],[859.74,255.47],[859.75,255.47],[859.76,255.47],[859.76,255.47],[859.76,255.48],[859.76,255.49],[859.76,255.49],[859.8,255.49],[859.84,255.49],[859.88,255.49],[859.88,255.53],[859.88,255.53],[859.88,255.54],[859.88,255.54],[859.88,255.59],[859.87,255.65],[859.87,255.66],[859.88,255.68],[859.9,255.7],[859.91,255.73],[859.91,255.73],[859.91,255.74],[859.91,255.76],[859.91,255.77],[859.91,255.77],[859.92,255.78],[859.93,255.78],[859.93,255.79],[859.94,255.79],[859.94,255.8],[860,255.95],[860.01,255.97],[860.08,256.08],[860.16,256.19],[860.17,256.21],[860.18,256.23],[860.18,256.24],[860.2,256.25],[860.2,256.25],[860.22,256.27],[860.21,256.28],[860.2,256.29],[860.19,256.3],[860.19,256.31],[860.19,256.31],[860.19,256.31],[860.19,256.31],[860.19,256.31],[860.2,256.31],[860.2,256.32],[860.2,256.32],[860.2,256.33],[860.21,256.33],[860.22,256.38],[860.24,256.44],[860.25,256.49],[860.26,256.5],[860.28,256.6],[860.31,256.68],[860.31,256.7],[860.32,256.73],[860.33,256.75],[860.34,256.76],[860.35,256.78],[860.36,256.8],[860.37,256.82],[860.4,256.86],[860.4,256.87],[860.42,256.89],[860.42,256.89],[860.42,256.9],[860.44,256.92],[860.45,256.93],[860.45,256.94],[860.46,256.95],[860.47,256.95],[860.48,256.96],[860.48,256.97],[860.51,257],[860.52,257.01],[860.53,257.01],[860.54,257.02],[860.55,257.03],[860.56,257.04],[860.57,257.06],[860.59,257.09],[860.6,257.1],[860.61,257.11],[860.61,257.12],[860.62,257.13],[860.64,257.15],[860.64,257.15],[860.67,257.17],[860.67,257.18],[860.69,257.2],[860.7,257.2],[860.7,257.21],[860.71,257.22],[860.75,257.26],[860.76,257.27],[860.77,257.28],[860.78,257.29],[860.79,257.3],[860.8,257.32],[860.82,257.33],[860.84,257.34],[860.84,257.35],[860.85,257.36],[860.86,257.37],[860.87,257.38],[860.88,257.39],[860.89,257.4],[860.9,257.41],[860.92,257.43],[860.93,257.44],[860.93,257.44],[860.94,257.45],[860.94,257.47],[860.94,257.47],[860.95,257.47],[860.95,257.47],[860.95,257.47],[860.96,257.48],[860.96,257.49],[860.96,257.49],[860.97,257.49],[861.01,257.54],[861.01,257.54],[861.02,257.55],[861.03,257.56],[861.03,257.57],[861.04,257.58],[861.05,257.59],[861.06,257.61],[861.07,257.62],[861.08,257.63],[861.08,257.64],[861.09,257.66],[861.15,257.74],[861.16,257.75],[861.17,257.75],[861.17,257.76],[861.17,257.77],[861.18,257.78],[861.18,257.78],[861.18,257.79],[861.18,257.8],[861.18,257.81],[861.18,257.81],[861.18,257.82],[861.18,257.83],[861.18,257.84],[861.18,257.87],[861.17,257.88],[861.17,257.89],[861.17,257.9],[861.18,257.91],[861.18,257.92],[861.18,257.92],[861.18,257.93],[861.18,257.94],[861.19,257.95],[861.2,257.97],[861.2,257.98],[861.21,258.01],[861.21,258.01],[861.22,258.02],[861.23,258.07],[861.24,258.08],[861.24,258.09],[861.25,258.1],[861.25,258.11],[861.25,258.13],[861.26,258.15],[861.27,258.18],[861.29,258.27],[861.29,258.28],[861.35,258.53],[861.36,258.57],[861.36,258.59],[861.37,258.63],[861.37,258.64],[861.37,258.65],[861.37,258.66],[861.38,258.67],[861.42,258.72],[861.43,258.74],[861.43,258.75],[861.43,258.76],[861.42,258.78],[861.39,258.85],[861.38,258.86],[861.38,258.87],[861.35,258.89],[861.35,258.91],[861.34,258.93],[861.35,258.95],[861.35,258.96],[861.36,258.99],[861.36,259],[861.35,259.01],[861.34,259.02],[861.33,259.03],[861.29,259.09],[861.29,259.1],[861.28,259.14],[861.28,259.15],[861.26,259.17],[861.26,259.18],[861.26,259.18],[861.26,259.19],[861.26,259.2],[861.26,259.2],[861.28,259.23],[861.29,259.24],[861.33,259.27],[861.34,259.28],[861.37,259.28],[861.4,259.28],[861.41,259.28],[861.42,259.28],[861.47,259.27],[861.52,259.28],[861.52,259.29],[861.53,259.29],[861.54,259.3],[861.56,259.33],[861.57,259.34],[861.56,259.4],[861.56,259.41],[861.55,259.42],[861.54,259.43],[861.5,259.49],[861.48,259.51],[861.47,259.54],[861.45,259.62],[861.45,259.64],[861.42,259.7],[861.42,259.71],[861.41,259.73],[861.41,259.77],[861.41,259.82],[861.4,259.83],[861.38,259.89],[861.38,259.89],[861.38,259.91],[861.37,259.96],[861.38,260.01],[861.32,260.11],[861.31,260.12],[861.26,260.15],[861.25,260.16],[861.22,260.18],[861.2,260.19],[861.19,260.2],[861.18,260.2],[861.15,260.23],[861.14,260.23],[861.14,260.24],[861.14,260.25],[861.13,260.28],[861.13,260.29],[861.12,260.31],[861.11,260.34],[861.1,260.35],[861.08,260.38],[861.08,260.39],[861.07,260.4],[861.07,260.41],[861.07,260.42],[861.07,260.43],[861.07,260.46],[861.07,260.46],[861.06,260.47],[861.06,260.47],[861.05,260.47],[861.05,260.48],[861.04,260.48],[861.03,260.47],[861.03,260.48],[861.02,260.48],[861.01,260.48],[861.01,260.49],[861,260.5],[861,260.5],[861,260.51],[861,260.52],[861.01,260.53],[861.01,260.54],[861.02,260.54],[861.05,260.55],[861.06,260.56],[861.06,260.58],[861.06,260.59],[861.06,260.6],[861.06,260.6],[861.05,260.61],[861.03,260.62],[861.02,260.62],[861.02,260.62],[861.02,260.62],[861.01,260.62],[861,260.63],[860.99,260.64],[860.98,260.65],[860.98,260.65],[860.98,260.67],[860.98,260.72],[860.98,260.72],[860.97,260.73],[860.97,260.75],[860.96,260.78],[860.95,260.81],[860.95,260.81],[860.95,260.82],[860.95,260.82],[860.96,260.83],[860.96,260.83],[860.97,260.84],[860.97,260.84],[860.99,260.85],[861.03,260.85],[861.06,260.87],[861.07,260.88],[861.18,260.97],[861.21,260.99],[861.22,261],[861.23,261],[861.23,261],[861.23,261.01],[861.24,261.01],[861.24,261.01],[861.24,261.01],[861.24,261.02],[861.24,261.03],[861.24,261.03],[861.24,261.04],[861.23,261.05],[861.23,261.06],[861.23,261.06],[861.23,261.07],[861.25,261.08],[861.26,261.09],[861.28,261.11],[861.28,261.11],[861.32,261.14],[861.34,261.14],[861.38,261.17],[861.39,261.17],[861.45,261.19],[861.48,261.19],[861.5,261.2],[861.53,261.22],[861.56,261.25],[861.57,261.28],[861.58,261.28],[861.67,261.34],[861.7,261.35],[861.71,261.36],[861.72,261.37],[861.75,261.4],[861.76,261.41],[861.8,261.43],[861.84,261.46],[861.86,261.48],[861.88,261.5],[861.92,261.53],[861.94,261.55],[861.96,261.57],[861.96,261.57],[861.98,261.58],[861.98,261.58],[861.99,261.58],[861.99,261.59],[862,261.6],[862,261.62],[862.02,261.64],[862.04,261.67],[862.06,261.69],[862.09,261.73],[862.1,261.73],[862.11,261.74],[862.14,261.77],[862.16,261.8],[862.16,261.8],[862.18,261.81],[862.19,261.82],[862.21,261.84],[862.22,261.84],[862.29,261.89],[862.3,261.9],[862.31,261.9],[862.32,261.91],[862.34,261.92],[862.36,261.93],[862.41,261.95],[862.41,261.96],[862.43,261.98],[862.49,262.03],[862.51,262.05],[862.53,262.06],[862.54,262.06],[862.54,262.07],[862.54,262.08],[862.55,262.08],[862.56,262.09],[862.57,262.1],[862.57,262.11],[862.59,262.15],[862.61,262.19],[862.62,262.2],[862.64,262.24],[862.64,262.24],[862.65,262.24],[862.65,262.24],[862.67,262.25],[862.67,262.26],[862.68,262.28],[862.7,262.31],[862.7,262.32],[862.71,262.33],[862.71,262.35],[862.74,262.4],[862.75,262.43],[862.75,262.44],[862.76,262.45],[862.76,262.46],[862.76,262.49],[862.77,262.52],[862.77,262.53],[862.77,262.58],[862.77,262.6],[862.78,262.62],[862.77,262.64],[862.78,262.69],[862.78,262.7],[862.78,262.7],[862.79,262.73],[862.79,262.73],[862.81,262.79],[862.84,262.81],[862.84,262.81],[862.85,262.82],[862.85,262.84],[862.84,262.85],[862.85,262.87],[862.85,262.88],[862.86,262.9],[862.87,262.92],[862.88,262.94],[862.89,262.96],[862.9,262.96],[862.92,262.98],[862.94,263],[862.96,263.01],[862.98,263.03],[862.98,263.04],[863,263.05],[863.01,263.04],[863.01,263.05],[863.02,263.05],[863.02,263.06],[863.09,263.13],[863.1,263.15],[863.1,263.16],[863.11,263.19],[863.11,263.19],[863.11,263.26],[863.11,263.29],[863.09,263.36],[863.09,263.37],[863.09,263.39],[863.12,263.46],[863.12,263.49],[863.13,263.52],[863.12,263.53],[863.13,263.53],[863.13,263.53],[863.15,263.52],[863.16,263.51],[863.17,263.51],[863.21,263.59],[863.22,263.62],[863.22,263.65],[863.22,263.65],[863.23,263.69],[863.25,263.71],[863.25,263.72],[863.26,263.72],[863.29,263.75],[863.3,263.76],[863.3,263.77],[863.31,263.78],[863.3,263.8],[863.3,263.81],[863.31,263.83],[863.33,263.85],[863.33,263.86],[863.33,263.86],[863.33,263.87],[863.35,263.89],[863.35,263.9],[863.37,263.92],[863.39,263.96],[863.39,263.97],[863.42,263.98],[863.44,263.99],[863.45,264.01],[863.46,264.02],[863.46,264.04],[863.48,264.1],[863.49,264.12],[863.5,264.14],[863.5,264.14],[863.51,264.16],[863.54,264.22],[863.54,264.22],[863.53,264.23],[863.53,264.24],[863.53,264.25],[863.53,264.26],[863.52,264.28],[863.53,264.29],[863.53,264.29],[863.57,264.37],[863.6,264.41],[863.61,264.43],[863.63,264.46],[863.7,264.56],[863.7,264.57],[863.75,264.63],[863.79,264.68],[863.79,264.68],[863.8,264.7],[863.81,264.71],[863.82,264.72],[863.83,264.74],[863.84,264.75],[863.84,264.75],[863.85,264.76],[863.85,264.76],[863.85,264.77],[863.85,264.77],[863.86,264.78],[863.89,264.82],[863.9,264.82],[863.9,264.83],[863.9,264.85],[863.91,264.86],[863.91,264.87],[863.92,264.88],[863.96,264.91],[863.97,264.94],[864,265],[864.01,265],[864.01,265.01],[864.01,265.02],[864.01,265.04],[864.02,265.04],[864.02,265.05],[864.02,265.06],[864.03,265.07],[864.02,265.08],[864.02,265.1],[864.05,265.17],[864.06,265.2],[864.07,265.25],[864.07,265.25],[864.07,265.26],[864.08,265.28],[864.09,265.33],[864.1,265.36],[864.11,265.43],[864.11,265.48],[864.12,265.5],[864.13,265.51],[864.13,265.54],[864.13,265.57],[864.13,265.58],[864.14,265.63],[864.14,265.64],[864.14,265.66],[864.14,265.66],[864.14,265.67],[864.15,265.68],[864.15,265.69],[864.15,265.7],[864.15,265.71],[864.15,265.72],[864.15,265.72],[864.15,265.73],[864.15,265.75],[864.15,265.76],[864.16,265.77],[864.16,265.81],[864.16,265.82],[864.16,265.83],[864.16,265.85],[864.16,265.86],[864.16,265.88],[864.18,265.95],[864.19,266.02],[864.19,266.03],[864.19,266.1],[864.19,266.11],[864.2,266.17],[864.2,266.19],[864.2,266.2],[864.21,266.21],[864.21,266.22],[864.21,266.22],[864.22,266.24],[864.22,266.25],[864.23,266.27],[864.24,266.33],[864.24,266.34],[864.23,266.36],[864.23,266.39],[864.23,266.4],[864.23,266.45],[864.23,266.49],[864.23,266.49],[864.23,266.57],[864.23,266.62],[864.23,266.62],[864.23,266.62],[864.23,266.65],[864.23,266.65],[864.23,266.66],[864.23,266.67],[864.23,266.69],[864.22,266.71],[864.22,266.72],[864.22,266.72],[864.24,266.74],[864.25,266.75],[864.25,266.75],[864.26,266.78],[864.27,266.79],[864.29,266.84],[864.29,266.85],[864.29,266.85],[864.29,266.9],[864.29,266.91],[864.29,266.92],[864.29,266.92],[864.29,266.92],[864.28,266.93],[864.28,266.93],[864.28,266.94],[864.29,266.96],[864.3,266.97],[864.31,266.98],[864.31,266.99],[864.31,266.99],[864.31,267],[864.31,267.01],[864.31,267.02],[864.31,267.02],[864.31,267.02],[864.32,267.03],[864.31,267.04],[864.32,267.05],[864.32,267.07],[864.34,267.1],[864.37,267.13],[864.38,267.14],[864.38,267.15],[864.39,267.2],[864.4,267.25],[864.4,267.28],[864.4,267.29],[864.41,267.34],[864.42,267.43],[864.42,267.45],[864.42,267.45],[864.42,267.46],[864.42,267.46],[864.43,267.47],[864.43,267.49],[864.43,267.5],[864.43,267.5],[864.43,267.51],[864.43,267.54],[864.43,267.54],[864.43,267.55],[864.43,267.6],[864.42,267.64],[864.42,267.65],[864.42,267.65],[864.43,267.68],[864.43,267.68],[864.43,267.7],[864.43,267.72],[864.44,267.74],[864.44,267.75],[864.44,267.76],[864.44,267.78],[864.45,267.81],[864.46,267.83],[864.47,267.85],[864.47,267.86],[864.47,267.87],[864.46,267.88],[864.46,267.88],[864.47,267.89],[864.47,267.89],[864.48,267.91],[864.48,267.92],[864.49,267.93],[864.49,267.95],[864.49,267.96],[864.49,267.97],[864.49,267.98],[864.49,267.98],[864.5,267.98],[864.51,267.97],[864.51,267.97],[864.53,267.97],[864.53,267.97],[864.56,267.96],[864.57,267.96],[864.59,267.97],[864.6,267.97],[864.6,267.98],[864.61,267.99],[864.61,267.99],[864.62,267.99],[864.63,267.99],[864.63,267.99],[864.64,267.99],[864.64,268],[864.64,268],[864.64,267.99],[864.64,267.99],[864.64,268],[864.66,268],[864.68,268.01],[864.69,268.02],[864.7,268.02],[864.7,268.02],[864.7,268.03],[864.7,268.03],[864.7,268.04],[864.7,268.04],[864.71,268.04],[864.73,268.05],[864.75,268.06],[864.76,268.06],[864.77,268.07],[864.77,268.08],[864.79,268.13],[864.79,268.15],[864.79,268.15],[864.8,268.2],[864.81,268.21],[864.81,268.22],[864.81,268.22],[864.82,268.23],[864.83,268.23],[864.85,268.24],[864.87,268.25],[864.88,268.25],[864.91,268.25],[864.93,268.25],[864.94,268.25],[864.95,268.26],[864.95,268.26],[864.97,268.29],[864.97,268.31],[864.98,268.35],[864.98,268.36],[864.99,268.38],[865,268.4],[865.01,268.41],[865.01,268.42],[865.02,268.42],[865.06,268.44],[865.07,268.45],[865.09,268.46],[865.1,268.46],[865.12,268.46],[865.13,268.45],[865.14,268.45],[865.16,268.44],[865.16,268.43],[865.16,268.43],[865.17,268.44],[865.17,268.44],[865.17,268.45],[865.17,268.45],[865.17,268.46],[865.17,268.46],[865.17,268.47],[865.18,268.47],[865.18,268.47],[865.18,268.47],[865.18,268.48],[865.18,268.48],[865.18,268.48],[865.18,268.48],[865.18,268.49],[865.18,268.49],[865.18,268.49],[865.18,268.49],[865.18,268.49],[865.18,268.5],[865.19,268.5],[865.19,268.51],[865.19,268.52],[865.2,268.52],[865.2,268.53],[865.21,268.53],[865.21,268.53],[865.21,268.54],[865.21,268.54],[865.21,268.55],[865.21,268.55],[865.21,268.55],[865.21,268.56],[865.21,268.56],[865.21,268.57],[865.21,268.57],[865.21,268.58],[865.21,268.58],[865.2,268.59],[865.2,268.6],[865.2,268.6],[865.2,268.61],[865.2,268.62],[865.19,268.62],[865.19,268.63],[865.19,268.63],[865.18,268.64],[865.18,268.64],[865.18,268.65],[865.19,268.66],[865.19,268.66],[865.18,268.67],[865.18,268.67],[865.18,268.68],[865.18,268.68],[865.19,268.69],[865.19,268.69],[865.19,268.7],[865.2,268.7],[865.2,268.71],[865.2,268.71],[865.2,268.72],[865.2,268.72],[865.2,268.73],[865.2,268.73],[865.2,268.74],[865.2,268.74],[865.19,268.75],[865.19,268.75],[865.19,268.76],[865.18,268.76],[865.18,268.77],[865.18,268.77],[865.17,268.77],[865.17,268.78],[865.17,268.78],[865.17,268.78],[865.17,268.79],[865.16,268.79],[865.16,268.79],[865.15,268.79],[865.14,268.79],[865.14,268.79],[865.13,268.79],[865.13,268.8],[865.13,268.8],[865.12,268.8],[865.12,268.8],[865.11,268.8],[865.1,268.8],[865.1,268.79],[865.09,268.79],[865.08,268.79],[865.08,268.78],[865.07,268.78],[865.07,268.78],[865.06,268.78],[865.05,268.78],[865.05,268.79],[865.04,268.79],[865.04,268.79],[865.04,268.8],[865.04,268.81],[865.04,268.81],[865.04,268.82],[865.04,268.82],[865.05,268.83],[865.04,268.83],[865.04,268.84],[865.04,268.84],[865.05,268.85],[865.05,268.86],[865.06,268.86],[865.06,268.86],[865.06,268.87],[865.05,268.87],[865.05,268.88],[865.06,268.89],[865.06,268.89],[865.07,268.9],[865.07,268.9],[865.07,268.91],[865.07,268.92],[865.07,268.92],[865.07,268.93],[865.07,268.94],[865.07,268.94],[865.07,268.95],[865.07,268.95],[865.07,268.96],[865.07,268.97],[865.07,268.97],[865.07,268.98],[865.07,268.98],[865.07,268.99],[865.07,268.99],[865.07,268.99],[865.07,269],[865.06,269.01],[865.06,269.01],[865.05,269.02],[865.05,269.03],[865.05,269.04],[865.04,269.04],[865.05,269.05],[865.05,269.05],[865.04,269.06],[865.04,269.06],[865.04,269.07],[865.04,269.08],[865.04,269.09],[865.03,269.09],[865.03,269.1],[865.03,269.1],[865.03,269.1],[865.02,269.1],[865.02,269.11],[865.02,269.11],[865.01,269.11],[865.01,269.1],[865,269.1],[865,269.1],[864.99,269.1],[864.99,269.1],[864.98,269.1],[864.98,269.1],[864.98,269.11],[864.97,269.11],[864.97,269.11],[864.97,269.11],[864.96,269.11],[864.96,269.11],[864.95,269.11],[864.95,269.11],[864.94,269.1],[864.94,269.1],[864.94,269.1],[864.94,269.09],[864.94,269.09],[864.94,269.08],[864.94,269.07],[864.93,269.07],[864.93,269.06],[864.93,269.05],[864.93,269.05],[864.93,269.04],[864.93,269.03],[864.92,269.03],[864.92,269.03],[864.91,269.02],[864.91,269.01],[864.9,269.01],[864.9,269],[864.89,269],[864.89,268.99],[864.89,268.99],[864.88,268.99],[864.87,268.98],[864.87,268.98],[864.86,268.98],[864.86,268.98],[864.85,268.98],[864.84,268.98],[864.84,268.98],[864.83,268.98],[864.83,268.98],[864.82,268.98],[864.82,268.98],[864.81,268.98],[864.8,268.98],[864.8,268.98],[864.79,268.98],[864.79,268.98],[864.78,268.98],[864.78,268.98],[864.77,268.98],[864.76,268.98],[864.76,268.98],[864.75,268.98],[864.75,268.98],[864.74,268.97],[864.74,268.97],[864.73,268.97],[864.73,268.97],[864.72,268.97],[864.72,268.97],[864.71,268.97],[864.71,268.97],[864.7,268.97],[864.69,268.96],[864.68,268.96],[864.68,268.96],[864.67,268.96],[864.67,268.96],[864.66,268.96],[864.66,268.95],[864.64,268.91],[864.64,268.91],[864.64,268.9],[864.63,268.9],[864.63,268.9],[864.62,268.9],[864.62,268.9],[864.62,268.9],[864.61,268.9],[864.61,268.89],[864.6,268.89],[864.6,268.89],[864.59,268.88],[864.59,268.88],[864.59,268.88],[864.58,268.88],[864.58,268.87],[864.58,268.87],[864.57,268.87],[864.57,268.86],[864.56,268.86],[864.56,268.85],[864.55,268.85],[864.55,268.84],[864.54,268.84],[864.54,268.84],[864.53,268.84],[864.52,268.84],[864.52,268.84],[864.51,268.83],[864.5,268.83],[864.5,268.83],[864.49,268.83],[864.49,268.83],[864.48,268.83],[864.47,268.83],[864.47,268.83],[864.46,268.83],[864.46,268.84],[864.45,268.84],[864.45,268.84],[864.44,268.84],[864.43,268.84],[864.43,268.84],[864.42,268.84],[864.42,268.84],[864.41,268.85],[864.41,268.85],[864.4,268.85],[864.4,268.85],[864.39,268.85],[864.39,268.85],[864.38,268.85],[864.38,268.85],[864.37,268.85],[864.37,268.86],[864.37,268.86],[864.36,268.86],[864.36,268.86],[864.35,268.86],[864.35,268.87],[864.35,268.87],[864.35,268.87],[864.34,268.88],[864.34,268.88],[864.34,268.89],[864.34,268.9],[864.33,268.9],[864.33,268.91],[864.33,268.92],[864.33,268.92],[864.33,268.93],[864.33,268.94],[864.33,268.94],[864.33,268.95],[864.33,268.95],[864.33,268.96],[864.33,268.96],[864.33,268.97],[864.33,268.97],[864.33,268.97],[864.33,268.97],[864.33,268.98],[864.32,268.98],[864.32,268.99],[864.32,268.99],[864.32,269],[864.32,269.01],[864.32,269.01],[864.31,269.02],[864.31,269.02],[864.31,269.03],[864.3,269.03],[864.31,269.04],[864.31,269.04],[864.31,269.05],[864.31,269.05],[864.31,269.05],[864.31,269.06],[864.3,269.06],[864.3,269.06],[864.3,269.07],[864.29,269.07],[864.29,269.08],[864.28,269.08],[864.28,269.09],[864.27,269.1],[864.27,269.1],[864.27,269.11],[864.27,269.12],[864.27,269.12],[864.27,269.13],[864.26,269.13],[864.26,269.13],[864.25,269.14],[864.24,269.14],[864.24,269.14],[864.23,269.15],[864.22,269.15],[864.22,269.16],[864.21,269.16],[864.21,269.17],[864.21,269.17],[864.2,269.17],[864.19,269.17],[864.19,269.18],[864.18,269.18],[864.17,269.18],[864.17,269.19],[864.16,269.19],[864.16,269.2],[864.16,269.21],[864.16,269.22],[864.16,269.22],[864.16,269.23],[864.16,269.24],[864.16,269.24],[864.16,269.25],[864.16,269.25],[864.16,269.26],[864.15,269.27],[864.16,269.27],[864.16,269.28],[864.16,269.28],[864.16,269.29],[864.16,269.29],[864.16,269.3],[864.16,269.31],[864.16,269.31],[864.15,269.32],[864.15,269.32],[864.15,269.33],[864.14,269.33],[864.14,269.34],[864.14,269.34],[864.13,269.35],[864.12,269.35],[864.12,269.35],[864.11,269.35],[864.11,269.36],[864.1,269.36],[864.1,269.36],[864.09,269.37],[864.08,269.37],[864.08,269.37],[864.07,269.37],[864.07,269.38],[864.06,269.38],[864.06,269.38],[864.05,269.38],[864.05,269.39],[864.05,269.39],[864.04,269.39],[864.04,269.4],[864.04,269.4],[864.03,269.41],[864.03,269.41],[864.02,269.42],[864.02,269.42],[864.01,269.42],[864.01,269.43],[864.01,269.44],[864.01,269.45],[864,269.45],[864,269.46],[864,269.46],[863.99,269.47],[863.99,269.47],[863.98,269.48],[863.98,269.48],[863.97,269.49],[863.97,269.49],[863.96,269.5],[863.96,269.5],[863.95,269.5],[863.95,269.51],[863.95,269.51],[863.94,269.52],[863.94,269.53],[863.94,269.53],[863.93,269.54],[863.93,269.54],[863.93,269.55],[863.93,269.56],[863.93,269.56],[863.92,269.56],[863.92,269.57],[863.91,269.57],[863.91,269.58],[863.91,269.58],[863.91,269.59],[863.91,269.59],[863.91,269.6],[863.91,269.6],[863.91,269.61],[863.91,269.61],[863.91,269.62],[863.9,269.62],[863.9,269.63],[863.89,269.63],[863.89,269.64],[863.89,269.64],[863.89,269.64],[863.89,269.65],[863.89,269.65],[863.89,269.65],[863.89,269.66],[863.89,269.66],[863.89,269.66],[863.89,269.67],[863.89,269.67],[863.88,269.67],[863.88,269.67],[863.88,269.67],[863.87,269.67],[863.87,269.67],[863.86,269.68],[863.86,269.68],[863.86,269.68],[863.85,269.68],[863.85,269.68],[863.85,269.68],[863.84,269.68],[863.84,269.68],[863.84,269.68],[863.83,269.68],[863.83,269.68],[863.83,269.68],[863.82,269.68],[863.82,269.68],[863.82,269.68],[863.82,269.67],[863.81,269.67],[863.81,269.67],[863.81,269.66],[863.81,269.66],[863.81,269.66],[863.81,269.66],[863.81,269.67],[863.81,269.67],[863.81,269.67],[863.81,269.67],[863.81,269.67],[863.81,269.68],[863.81,269.68],[863.81,269.68],[863.81,269.68],[863.81,269.68],[863.81,269.68],[863.8,269.68],[863.8,269.68],[863.79,269.68],[863.79,269.68],[863.79,269.68],[863.78,269.68],[863.78,269.68],[863.77,269.68],[863.77,269.68],[863.76,269.68],[863.76,269.68],[863.76,269.68],[863.75,269.68],[863.75,269.68],[863.75,269.68],[863.75,269.69],[863.74,269.69],[863.74,269.69],[863.74,269.7],[863.74,269.7],[863.74,269.71],[863.74,269.71],[863.73,269.71],[863.74,269.7],[863.73,269.7],[863.74,269.69],[863.73,269.69],[863.73,269.69],[863.73,269.69],[863.73,269.7],[863.73,269.71],[863.73,269.71],[863.73,269.71],[863.73,269.71],[863.73,269.72],[863.73,269.72],[863.73,269.72],[863.73,269.72],[863.74,269.72],[863.74,269.72],[863.74,269.72],[863.74,269.72],[863.74,269.72],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.74,269.73],[863.75,269.73],[863.75,269.73],[863.76,269.74],[863.76,269.74],[863.77,269.74],[863.77,269.74],[863.77,269.74],[863.79,269.77],[863.79,269.77],[863.79,269.77],[863.79,269.78],[863.79,269.78],[863.79,269.78],[863.78,269.78],[863.78,269.79],[863.79,269.79],[863.79,269.79],[863.79,269.79],[863.78,269.79],[863.78,269.79],[863.78,269.79],[863.78,269.8],[863.78,269.8],[863.79,269.8],[863.79,269.8],[863.79,269.8],[863.79,269.8],[863.78,269.81],[863.78,269.81],[863.78,269.81],[863.79,269.81],[863.79,269.81],[863.78,269.82],[863.78,269.82],[863.78,269.82],[863.78,269.83],[863.78,269.83],[863.78,269.83],[863.78,269.83],[863.78,269.83],[863.78,269.83],[863.78,269.84],[863.78,269.84],[863.78,269.84],[863.79,269.84],[863.79,269.84],[863.79,269.84],[863.79,269.84],[863.79,269.85],[863.8,269.85],[863.79,269.85],[863.8,269.86],[863.8,269.86],[863.8,269.86],[863.81,269.86],[863.81,269.86],[863.81,269.87],[863.81,269.87],[863.81,269.87],[863.82,269.86],[863.82,269.86],[863.82,269.86],[863.82,269.86],[863.82,269.87],[863.82,269.87],[863.82,269.87],[863.82,269.87],[863.82,269.88],[863.81,269.88],[863.81,269.88],[863.81,269.88],[863.81,269.89],[863.81,269.89],[863.81,269.89],[863.81,269.89],[863.8,269.9],[863.8,269.9],[863.79,269.9],[863.79,269.9],[863.79,269.9],[863.79,269.9],[863.78,269.9],[863.78,269.9],[863.78,269.9],[863.78,269.9],[863.78,269.89],[863.78,269.89],[863.78,269.89],[863.78,269.9],[863.78,269.9],[863.78,269.9],[863.78,269.9],[863.78,269.9],[863.78,269.9],[863.76,269.91],[863.76,269.91],[863.76,269.91],[863.77,269.92],[863.78,269.93],[863.79,269.92],[863.79,269.92],[863.79,269.92],[863.8,269.92],[863.8,269.92],[863.81,269.92],[863.81,269.92],[863.81,269.91],[863.81,269.91],[863.81,269.91],[863.82,269.91],[863.82,269.9],[863.83,269.9],[863.83,269.9],[863.83,269.9],[863.84,269.9],[863.84,269.9],[863.84,269.9],[863.84,269.89],[863.84,269.89],[863.84,269.89],[863.85,269.89],[863.85,269.88],[863.85,269.88],[863.85,269.88],[863.86,269.88],[863.86,269.88],[863.86,269.88],[863.86,269.87],[863.86,269.87],[863.87,269.87],[863.87,269.87],[863.87,269.87],[863.87,269.87],[863.87,269.87],[863.86,269.87],[863.86,269.87],[863.86,269.86],[863.86,269.86],[863.86,269.86],[863.87,269.86],[863.87,269.86],[863.87,269.86],[863.87,269.86],[863.87,269.86],[863.88,269.85],[863.88,269.85],[863.88,269.85],[863.88,269.86],[863.88,269.86],[863.89,269.86],[863.89,269.86],[863.89,269.87],[863.89,269.87],[863.89,269.87],[863.89,269.87],[863.89,269.87],[863.89,269.87],[863.89,269.87],[863.89,269.88],[863.89,269.88],[863.89,269.88],[863.89,269.88],[863.89,269.88],[863.89,269.88],[863.9,269.89],[863.9,269.89],[863.9,269.89],[863.9,269.89],[863.9,269.89],[863.91,269.9],[863.91,269.9],[863.91,269.9],[863.91,269.91],[863.91,269.91],[863.91,269.92],[863.91,269.92],[863.91,269.93],[863.91,269.93],[863.91,269.94],[863.92,269.94],[863.92,269.94],[863.93,269.95],[863.93,269.95],[863.93,269.95],[863.93,269.95],[863.93,269.95],[863.93,269.95],[863.93,269.96],[863.93,269.96],[863.94,269.96],[863.94,269.96],[863.94,269.96],[863.94,269.97],[863.94,269.97],[863.94,269.97],[863.94,269.98],[863.94,269.98],[863.95,269.98],[863.95,269.99],[863.95,269.99],[863.95,269.99],[863.95,269.99],[863.95,269.99],[863.95,269.98],[863.95,269.98],[863.95,269.97],[863.94,269.97],[863.95,269.96],[863.94,269.96],[863.94,269.96],[863.94,269.96],[863.94,269.95],[863.94,269.95],[863.94,269.95],[863.95,269.94],[863.95,269.94],[863.95,269.94],[863.95,269.94],[863.95,269.94],[863.94,269.94],[863.94,269.94],[863.94,269.94],[863.94,269.94],[863.93,269.94],[863.94,269.94],[863.94,269.93],[863.94,269.93],[863.94,269.93],[863.94,269.93],[863.93,269.93],[863.93,269.93],[863.93,269.93],[863.94,269.92],[863.94,269.92],[863.93,269.92],[863.93,269.92],[863.93,269.92],[863.93,269.92],[863.93,269.92],[863.93,269.92],[863.93,269.92],[863.93,269.92],[863.93,269.91],[863.93,269.91],[863.93,269.91],[863.93,269.91],[863.93,269.91],[863.93,269.91],[863.93,269.91],[863.93,269.91],[863.94,269.91],[863.94,269.91],[863.94,269.91],[863.94,269.91],[863.94,269.91],[863.94,269.92],[863.94,269.92],[863.94,269.92],[863.95,269.93],[863.95,269.93],[863.96,269.93],[863.96,269.94],[863.96,269.94],[863.96,269.94],[863.96,269.95],[863.96,269.95],[863.96,269.95],[863.96,269.95],[863.96,269.95],[863.96,269.96],[863.96,269.96],[863.96,269.96],[863.96,269.96],[863.96,269.96],[863.96,269.96],[863.96,269.97],[863.96,269.97],[863.97,269.97],[863.97,269.97],[863.97,269.97],[863.97,269.97],[863.97,269.97],[863.97,269.97],[863.97,269.98],[863.97,269.98],[863.97,269.98],[863.97,269.98],[863.97,269.98],[863.97,269.98],[863.97,269.97],[863.97,269.97],[863.97,269.97],[863.97,269.97],[863.97,269.97],[863.98,269.96],[863.98,269.96],[863.98,269.97],[863.99,269.97],[863.99,269.97],[864,269.97],[864,269.97],[864,269.97],[864.01,269.97],[864.01,269.97],[864.01,269.98],[864.01,269.98],[864.02,269.98],[864.02,269.98],[864.02,269.98],[864.02,269.98],[864.03,269.98],[864.03,269.98],[864.03,269.98],[864.04,269.98],[864.04,269.98],[864.04,269.99],[864.04,269.99],[864.05,269.99],[864.05,269.99],[864.05,269.99],[864.05,269.99],[864.05,269.99],[864.05,269.99],[864.06,269.99],[864.06,269.98],[864.06,269.98],[864.06,269.98],[864.06,269.98],[864.07,269.99],[864.07,269.99],[864.07,269.99],[864.07,269.99],[864.08,269.99],[864.08,270],[864.08,270],[864.08,270],[864.09,270],[864.09,270.01],[864.09,270.02],[864.1,270.02],[864.1,270.02],[864.1,270.02],[864.1,270.03],[864.1,270.03],[864.1,270.03],[864.1,270.03],[864.11,270.03],[864.11,270.03],[864.11,270.04],[864.11,270.04],[864.11,270.04],[864.11,270.05],[864.11,270.05],[864.11,270.04],[864.11,270.04],[864.12,270.04],[864.12,270.05],[864.12,270.06],[864.12,270.06],[864.12,270.06],[864.13,270.06],[864.13,270.06],[864.14,270.06],[864.14,270.06],[864.14,270.06],[864.14,270.06],[864.15,270.06],[864.15,270.06],[864.15,270.06],[864.15,270.06],[864.15,270.06],[864.15,270.06],[864.15,270.06],[864.15,270.06],[864.16,270.06],[864.16,270.06],[864.16,270.07],[864.16,270.07],[864.16,270.07],[864.16,270.07],[864.16,270.07],[864.17,270.07],[864.17,270.07],[864.17,270.08],[864.17,270.09],[864.17,270.09],[864.17,270.09],[864.18,270.09],[864.18,270.08],[864.18,270.07],[864.18,270.07],[864.18,270.07],[864.18,270.08],[864.18,270.08],[864.18,270.08],[864.18,270.09],[864.18,270.09],[864.17,270.09],[864.17,270.09],[864.17,270.09],[864.17,270.08],[864.16,270.08],[864.16,270.08],[864.16,270.08],[864.16,270.08],[864.17,270.08],[864.17,270.09],[864.17,270.1],[864.18,270.1],[864.18,270.1],[864.18,270.1],[864.18,270.09],[864.18,270.09],[864.18,270.09],[864.18,270.09],[864.19,270.09],[864.19,270.09],[864.19,270.1],[864.19,270.1],[864.19,270.11],[864.19,270.11],[864.2,270.12],[864.2,270.13],[864.2,270.13],[864.2,270.13],[864.2,270.14],[864.21,270.15],[864.21,270.15],[864.21,270.15],[864.21,270.15],[864.21,270.15],[864.21,270.15],[864.22,270.15],[864.22,270.14],[864.22,270.13],[864.23,270.13],[864.23,270.13],[864.23,270.13],[864.23,270.14],[864.23,270.14],[864.23,270.14],[864.23,270.15],[864.23,270.15],[864.23,270.15],[864.24,270.15],[864.24,270.15],[864.24,270.15],[864.24,270.15],[864.24,270.15],[864.25,270.15],[864.25,270.15],[864.25,270.16],[864.25,270.16],[864.26,270.16],[864.27,270.16],[864.27,270.16],[864.27,270.16],[864.27,270.16],[864.26,270.15],[864.26,270.15],[864.26,270.15],[864.27,270.15],[864.27,270.14],[864.27,270.14],[864.27,270.14],[864.27,270.14],[864.27,270.14],[864.28,270.15],[864.28,270.16],[864.28,270.16],[864.28,270.16],[864.28,270.16],[864.28,270.15],[864.28,270.15],[864.28,270.15],[864.28,270.15],[864.28,270.15],[864.29,270.17],[864.29,270.17],[864.29,270.17],[864.29,270.17],[864.3,270.17],[864.3,270.17],[864.3,270.18],[864.31,270.18],[864.31,270.18],[864.31,270.18],[864.32,270.18],[864.32,270.18],[864.32,270.18],[864.33,270.18],[864.33,270.18],[864.33,270.18],[864.33,270.18],[864.34,270.18],[864.34,270.18],[864.35,270.17],[864.35,270.17],[864.35,270.17],[864.35,270.17],[864.35,270.17],[864.35,270.17],[864.36,270.17],[864.36,270.17],[864.36,270.17],[864.37,270.17],[864.37,270.17],[864.38,270.16],[864.38,270.16],[864.38,270.16],[864.39,270.16],[864.39,270.16],[864.39,270.16],[864.4,270.16],[864.4,270.16],[864.4,270.16],[864.4,270.16],[864.39,270.16],[864.39,270.16],[864.39,270.15],[864.39,270.15],[864.39,270.15],[864.39,270.15],[864.39,270.15],[864.39,270.14],[864.39,270.14],[864.39,270.15],[864.39,270.15],[864.39,270.15],[864.39,270.15],[864.39,270.15],[864.4,270.16],[864.4,270.16],[864.4,270.16],[864.4,270.16],[864.4,270.16],[864.4,270.16],[864.4,270.16],[864.41,270.16],[864.41,270.16],[864.41,270.16],[864.41,270.16],[864.41,270.17],[864.41,270.17],[864.41,270.17],[864.41,270.18],[864.41,270.18],[864.41,270.18],[864.42,270.18],[864.42,270.18],[864.43,270.17],[864.43,270.17],[864.43,270.17],[864.43,270.18],[864.44,270.18],[864.44,270.18],[864.44,270.18],[864.44,270.18],[864.44,270.19],[864.45,270.19],[864.45,270.19],[864.45,270.19],[864.45,270.19],[864.46,270.19],[864.46,270.2],[864.47,270.19],[864.47,270.19],[864.48,270.19],[864.48,270.19],[864.48,270.19],[864.48,270.19],[864.48,270.2],[864.48,270.2],[864.48,270.2],[864.48,270.2],[864.48,270.2],[864.48,270.2],[864.49,270.2],[864.49,270.2],[864.49,270.2],[864.49,270.2],[864.49,270.2],[864.49,270.21],[864.49,270.21],[864.49,270.21],[864.49,270.23],[864.49,270.23],[864.5,270.23],[864.5,270.24],[864.5,270.24],[864.5,270.24],[864.5,270.25],[864.5,270.26],[864.5,270.26],[864.5,270.27],[864.5,270.27],[864.51,270.28],[864.51,270.29],[864.52,270.31],[864.52,270.31],[864.52,270.31],[864.53,270.31],[864.53,270.32],[864.53,270.33],[864.53,270.34],[864.53,270.34],[864.53,270.35],[864.53,270.35],[864.53,270.35],[864.53,270.35],[864.53,270.36],[864.53,270.37],[864.53,270.37],[864.52,270.37],[864.51,270.37],[864.51,270.38],[864.51,270.38],[864.51,270.39],[864.5,270.39],[864.5,270.4],[864.5,270.4],[864.5,270.41],[864.5,270.41],[864.5,270.42],[864.49,270.42],[864.49,270.43],[864.5,270.44],[864.5,270.45],[864.49,270.46],[864.49,270.47],[864.49,270.47],[864.49,270.47],[864.49,270.48],[864.5,270.48],[864.5,270.48],[864.5,270.49],[864.5,270.51],[864.5,270.51],[864.5,270.51],[864.5,270.53],[864.5,270.53],[864.51,270.54],[864.5,270.54],[864.5,270.54],[864.5,270.54],[864.5,270.54],[864.5,270.54],[864.49,270.54],[864.49,270.54],[864.49,270.54],[864.48,270.54],[864.48,270.55],[864.47,270.55],[864.47,270.56],[864.47,270.56],[864.46,270.56],[864.46,270.56],[864.46,270.57],[864.46,270.57],[864.46,270.57],[864.46,270.57],[864.46,270.58],[864.45,270.59],[864.45,270.59],[864.45,270.6],[864.45,270.6],[864.44,270.61],[864.44,270.61],[864.44,270.61],[864.44,270.62],[864.44,270.63],[864.44,270.63],[864.44,270.64],[864.44,270.64],[864.44,270.64],[864.44,270.66],[864.44,270.67],[864.44,270.68],[864.44,270.68],[864.44,270.69],[864.44,270.7],[864.43,270.7],[864.43,270.71],[864.43,270.71],[864.43,270.72],[864.42,270.73],[864.42,270.74],[864.41,270.75],[864.41,270.76],[864.41,270.76],[864.41,270.77],[864.41,270.77],[864.41,270.78],[864.41,270.78],[864.41,270.79],[864.41,270.8],[864.4,270.8],[864.41,270.81],[864.4,270.81],[864.4,270.81],[864.4,270.81],[864.4,270.82],[864.39,270.82],[864.39,270.83],[864.38,270.84],[864.38,270.85],[864.38,270.85],[864.38,270.85],[864.37,270.87],[864.36,270.88],[864.36,270.88],[864.36,270.89],[864.36,270.89],[864.35,270.9],[864.34,270.9],[864.34,270.9],[864.33,270.9],[864.33,270.9],[864.33,270.9],[864.33,270.91],[864.33,270.91],[864.33,270.91],[864.32,270.91],[864.32,270.92],[864.32,270.92],[864.32,270.93],[864.31,270.93],[864.31,270.93],[864.31,270.94],[864.31,270.94],[864.3,270.94],[864.3,270.95],[864.3,270.95],[864.3,270.96],[864.3,270.96],[864.3,270.96],[864.31,270.97],[864.31,270.97],[864.31,270.98],[864.32,270.99],[864.32,271],[864.33,271],[864.33,271],[864.33,271.01],[864.33,271.01],[864.33,271.01],[864.34,271.01],[864.34,271.01],[864.34,271.02],[864.34,271.02],[864.34,271.02],[864.34,271.02],[864.35,271.02],[864.35,271.02],[864.35,271.02],[864.36,271.02],[864.36,271.02],[864.36,271.02],[864.36,271.03],[864.35,271.03],[864.35,271.04],[864.35,271.04],[864.35,271.04],[864.35,271.04],[864.35,271.05],[864.36,271.06],[864.36,271.06],[864.36,271.07],[864.36,271.07],[864.37,271.08],[864.37,271.08],[864.37,271.08],[864.38,271.09],[864.38,271.1],[864.38,271.1],[864.38,271.1],[864.38,271.1],[864.38,271.11],[864.38,271.11],[864.39,271.11],[864.39,271.12],[864.39,271.12],[864.4,271.13],[864.4,271.14],[864.4,271.14],[864.4,271.15],[864.4,271.15],[864.4,271.15],[864.41,271.16],[864.41,271.17],[864.4,271.17],[864.4,271.18],[864.41,271.18],[864.41,271.18],[864.41,271.19],[864.41,271.2],[864.42,271.2],[864.42,271.2],[864.42,271.21],[864.41,271.21],[864.41,271.21],[864.42,271.22],[864.42,271.22],[864.42,271.23],[864.42,271.24],[864.43,271.24],[864.43,271.24],[864.43,271.24],[864.43,271.25],[864.43,271.25],[864.42,271.25],[864.42,271.25],[864.41,271.25],[864.41,271.25],[864.4,271.25],[864.4,271.25],[864.4,271.25],[864.4,271.25],[864.39,271.25],[864.39,271.25],[864.39,271.25],[864.38,271.26],[864.38,271.26],[864.38,271.26],[864.38,271.26],[864.37,271.27],[864.37,271.27],[864.36,271.27],[864.36,271.27],[864.36,271.28],[864.35,271.28],[864.34,271.29],[864.34,271.29],[864.33,271.3],[864.32,271.3],[864.32,271.3],[864.32,271.3],[864.32,271.31],[864.31,271.31],[864.31,271.31],[864.31,271.32],[864.31,271.32],[864.31,271.33],[864.31,271.33],[864.31,271.34],[864.31,271.34],[864.31,271.34],[864.31,271.35],[864.31,271.35],[864.31,271.35],[864.31,271.35],[864.31,271.36],[864.31,271.37],[864.31,271.38],[864.31,271.39],[864.31,271.39],[864.3,271.39],[864.3,271.39],[864.3,271.39],[864.3,271.41],[864.3,271.42],[864.29,271.42],[864.29,271.43],[864.29,271.44],[864.29,271.45],[864.29,271.45],[864.29,271.46],[864.29,271.46],[864.29,271.46],[864.29,271.47],[864.29,271.47],[864.29,271.47],[864.29,271.47],[864.29,271.48],[864.29,271.48],[864.29,271.49],[864.29,271.49],[864.29,271.49],[864.29,271.5],[864.29,271.5],[864.29,271.5],[864.29,271.5],[864.28,271.51],[864.28,271.51],[864.28,271.51],[864.27,271.52],[864.27,271.52],[864.26,271.52],[864.26,271.52],[864.26,271.53],[864.26,271.53],[864.25,271.53],[864.25,271.53],[864.24,271.54],[864.24,271.54],[864.23,271.55],[864.23,271.55],[864.22,271.56],[864.22,271.56],[864.21,271.56],[864.21,271.56],[864.2,271.56],[864.2,271.56],[864.2,271.56],[864.19,271.56],[864.18,271.56],[864.18,271.56],[864.18,271.56],[864.17,271.56],[864.16,271.56],[864.16,271.56],[864.16,271.56],[864.15,271.56],[864.15,271.56],[864.14,271.55],[864.14,271.55],[864.14,271.55],[864.14,271.55],[864.14,271.56],[864.14,271.56],[864.13,271.57],[864.13,271.58],[864.13,271.58],[864.12,271.58],[864.12,271.58],[864.12,271.58],[864.11,271.56],[864.11,271.56],[864.11,271.56],[864.11,271.56],[864.1,271.56],[864.1,271.56],[864.1,271.56],[864.1,271.56],[864.1,271.56],[864.09,271.56],[864.09,271.56],[864.09,271.56],[864.09,271.56],[864.09,271.55],[864.09,271.55],[864.08,271.55],[864.08,271.55],[864.08,271.55],[864.08,271.55],[864.08,271.55],[864.07,271.55],[864.07,271.54],[864.06,271.54],[864.06,271.54],[864.06,271.54],[864.06,271.53],[864.06,271.53],[864.05,271.53],[864.05,271.53],[864.04,271.53],[864.04,271.53],[864.04,271.53],[864.04,271.52],[864.04,271.52],[864.04,271.52],[864.03,271.52],[864.03,271.52],[864.02,271.51],[864.02,271.51],[864.02,271.5],[864.02,271.5],[864.01,271.5],[864.01,271.51],[864.01,271.51],[864.01,271.51],[864,271.51],[864,271.51],[864,271.51],[863.99,271.5],[863.99,271.5],[863.98,271.5],[863.98,271.5],[863.97,271.5],[863.97,271.5],[863.97,271.5],[863.96,271.5],[863.96,271.5],[863.95,271.5],[863.95,271.5],[863.94,271.5],[863.94,271.49],[863.93,271.49],[863.93,271.49],[863.93,271.49],[863.93,271.49],[863.92,271.49],[863.92,271.49],[863.92,271.49],[863.92,271.49],[863.92,271.5],[863.92,271.5],[863.92,271.51],[863.92,271.51],[863.91,271.51],[863.9,271.51],[863.9,271.52],[863.89,271.52],[863.88,271.53],[863.88,271.53],[863.87,271.53],[863.87,271.53],[863.86,271.53],[863.86,271.53],[863.86,271.53],[863.85,271.53],[863.85,271.53],[863.84,271.53],[863.83,271.52],[863.83,271.52],[863.83,271.52],[863.82,271.53],[863.81,271.53],[863.8,271.53],[863.8,271.53],[863.79,271.53],[863.78,271.53],[863.78,271.54],[863.77,271.54],[863.77,271.54],[863.76,271.54],[863.76,271.54],[863.76,271.53],[863.75,271.53],[863.75,271.52],[863.75,271.52],[863.74,271.52],[863.74,271.52],[863.74,271.52],[863.73,271.52],[863.73,271.52],[863.73,271.51],[863.73,271.51],[863.73,271.5],[863.72,271.5],[863.72,271.5],[863.72,271.5],[863.72,271.51],[863.72,271.51],[863.72,271.51],[863.71,271.52],[863.71,271.52],[863.7,271.52],[863.7,271.52],[863.69,271.52],[863.68,271.52],[863.68,271.52],[863.68,271.53],[863.68,271.53],[863.67,271.53],[863.67,271.53],[863.66,271.53],[863.66,271.53],[863.66,271.53],[863.66,271.53],[863.65,271.53],[863.65,271.54],[863.65,271.54],[863.64,271.55],[863.64,271.55],[863.63,271.56],[863.63,271.56],[863.62,271.56],[863.61,271.57],[863.61,271.57],[863.6,271.57],[863.6,271.57],[863.6,271.56],[863.59,271.56],[863.59,271.56],[863.59,271.56],[863.59,271.56],[863.59,271.56],[863.59,271.56],[863.59,271.57],[863.59,271.57],[863.59,271.57],[863.59,271.58],[863.59,271.58],[863.59,271.58],[863.59,271.59],[863.59,271.59],[863.59,271.59],[863.59,271.59],[863.59,271.59],[863.59,271.58],[863.59,271.58],[863.59,271.58],[863.59,271.58],[863.59,271.59],[863.58,271.6],[863.58,271.6],[863.58,271.6],[863.58,271.59],[863.58,271.59],[863.58,271.59],[863.58,271.59],[863.58,271.59],[863.58,271.6],[863.58,271.6],[863.57,271.6],[863.56,271.6],[863.56,271.6],[863.56,271.6],[863.56,271.6],[863.56,271.61],[863.56,271.61],[863.56,271.62],[863.56,271.63],[863.56,271.63],[863.56,271.63],[863.56,271.63],[863.55,271.63],[863.56,271.62],[863.56,271.62],[863.55,271.62],[863.55,271.62],[863.55,271.62],[863.55,271.62],[863.55,271.62],[863.55,271.63],[863.55,271.64],[863.55,271.64],[863.55,271.64],[863.54,271.64],[863.55,271.64],[863.55,271.63],[863.55,271.63],[863.55,271.63],[863.54,271.63],[863.54,271.63],[863.54,271.63],[863.54,271.64],[863.54,271.64],[863.54,271.64],[863.54,271.64],[863.54,271.64],[863.54,271.63],[863.54,271.63],[863.54,271.63],[863.54,271.63],[863.54,271.63],[863.54,271.64],[863.54,271.64],[863.54,271.64],[863.54,271.64],[863.54,271.64],[863.54,271.63],[863.53,271.63],[863.53,271.63],[863.53,271.63],[863.53,271.64],[863.53,271.65],[863.53,271.65],[863.53,271.65],[863.53,271.64],[863.53,271.63],[863.53,271.63],[863.53,271.63],[863.53,271.63],[863.53,271.63],[863.52,271.64],[863.52,271.65],[863.52,271.65],[863.52,271.65],[863.52,271.66],[863.52,271.66],[863.52,271.66],[863.52,271.66],[863.52,271.66],[863.51,271.66],[863.51,271.67],[863.51,271.67],[863.51,271.67],[863.51,271.67],[863.51,271.67],[863.51,271.66],[863.51,271.66],[863.51,271.66],[863.51,271.66],[863.51,271.66],[863.51,271.66],[863.51,271.66],[863.51,271.66],[863.51,271.66],[863.51,271.67],[863.51,271.68],[863.51,271.68],[863.51,271.68],[863.51,271.68],[863.51,271.68],[863.5,271.69],[863.5,271.7],[863.5,271.7],[863.5,271.71],[863.5,271.71],[863.48,271.73],[863.48,271.73],[863.47,271.74],[863.47,271.75],[863.47,271.75],[863.47,271.75],[863.47,271.76],[863.47,271.76],[863.46,271.76],[863.46,271.75],[863.46,271.75],[863.46,271.75],[863.46,271.74],[863.46,271.74],[863.46,271.74],[863.46,271.74],[863.46,271.74],[863.46,271.75],[863.46,271.75],[863.46,271.75],[863.46,271.76],[863.46,271.76],[863.45,271.77],[863.45,271.77],[863.44,271.77],[863.43,271.79],[863.43,271.79],[863.43,271.79],[863.43,271.79],[863.42,271.79],[863.42,271.79],[863.42,271.8],[863.41,271.8],[863.4,271.81],[863.39,271.81],[863.38,271.82],[863.37,271.83],[863.35,271.85],[863.34,271.86],[863.33,271.87],[863.3,271.88],[863.3,271.88],[863.29,271.9],[863.28,271.9],[863.28,271.91],[863.26,271.93],[863.26,271.94],[863.25,271.95],[863.25,271.95],[863.25,271.96],[863.24,271.96],[863.24,271.96],[863.23,271.97],[863.2,271.98],[863.18,271.99],[863.18,271.99],[863.17,271.99],[863.16,271.99],[863.15,271.99],[863.15,271.99],[863.13,272],[863.11,272],[863.11,272],[863.11,272],[863.1,272],[863.1,272.01],[863.09,272.02],[863.08,272.02],[863.08,272.03],[863.07,272.03],[863.07,272.05],[863.06,272.05],[863.06,272.06],[863.06,272.06],[863.05,272.07],[863.05,272.08],[863.05,272.08],[863.04,272.09],[863.04,272.09],[863.04,272.1],[863.05,272.11],[863.06,272.11],[863.08,272.14],[863.09,272.15],[863.09,272.15],[863.09,272.16],[863.13,272.2],[863.14,272.2],[863.14,272.2],[863.14,272.21],[863.12,272.22],[863.12,272.22],[863.1,272.22],[863.1,272.23],[863.07,272.25],[863.05,272.26],[863.05,272.26],[863.02,272.27],[863.01,272.28],[863,272.29],[862.98,272.3],[862.97,272.31],[862.95,272.33],[862.94,272.34],[862.9,272.38],[862.89,272.39],[862.89,272.39],[862.88,272.4],[862.87,272.41],[862.84,272.42],[862.84,272.43],[862.83,272.43],[862.82,272.44],[862.82,272.45],[862.82,272.45],[862.81,272.48],[862.8,272.48],[862.8,272.49],[862.79,272.49],[862.78,272.5],[862.78,272.5],[862.76,272.51],[862.75,272.51],[862.75,272.52],[862.72,272.54],[862.71,272.56],[862.71,272.56],[862.7,272.58],[862.7,272.58],[862.69,272.59],[862.69,272.59],[862.66,272.6],[862.66,272.61],[862.64,272.63],[862.63,272.63],[862.62,272.64],[862.61,272.64],[862.6,272.65],[862.59,272.65],[862.58,272.66],[862.56,272.68],[862.55,272.69],[862.55,272.69],[862.54,272.7],[862.53,272.7],[862.52,272.7],[862.49,272.71],[862.49,272.71],[862.48,272.71],[862.47,272.72],[862.46,272.72],[862.45,272.73],[862.42,272.75],[862.36,272.8],[862.36,272.8],[862.35,272.81],[862.34,272.81],[862.34,272.81],[862.32,272.82],[862.31,272.82],[862.3,272.82],[862.29,272.83],[862.29,272.83],[862.28,272.84],[862.25,272.87],[862.24,272.88],[862.24,272.88],[862.23,272.88],[862.21,272.88],[862.21,272.88],[862.2,272.88],[862.19,272.89],[862.19,272.89],[862.18,272.89],[862.16,272.91],[862.16,272.91],[862.15,272.92],[862.15,272.92],[862.15,272.92],[862.14,272.92],[862.14,272.93],[862.13,272.93],[862.13,272.93],[862.12,272.93],[862.12,272.94],[862.12,272.94],[862.11,272.94],[862.11,272.94],[862.11,272.94],[862.11,272.94],[862.1,272.95],[862.1,272.95],[862.1,272.95],[862.09,272.96],[862.09,272.96],[862.08,272.96],[862.07,272.97],[862.07,272.97],[862.06,272.98],[862.06,272.98],[862.05,272.99],[862.04,272.99],[862.04,273],[862.03,273],[862.03,273.01],[862.02,273.01],[862.02,273.01],[862.02,273.02],[862.01,273.02],[862.01,273.03],[862.01,273.03],[862,273.04],[862,273.04],[861.99,273.05],[861.99,273.05],[861.98,273.05],[861.98,273.06],[861.97,273.06],[861.97,273.07],[861.96,273.07],[861.95,273.08],[861.95,273.08],[861.94,273.08],[861.94,273.09],[861.93,273.09],[861.93,273.1],[861.92,273.1],[861.91,273.1],[861.91,273.11],[861.9,273.11],[861.89,273.11],[861.89,273.12],[861.88,273.12],[861.87,273.12],[861.87,273.12],[861.86,273.13],[861.85,273.13],[861.85,273.13],[861.84,273.13],[861.84,273.14],[861.83,273.14],[861.83,273.14],[861.82,273.15],[861.82,273.15],[861.81,273.16],[861.81,273.16],[861.8,273.17],[861.79,273.17],[861.79,273.18],[861.78,273.18],[861.78,273.19],[861.77,273.19],[861.76,273.2],[861.75,273.2],[861.75,273.2],[861.74,273.21],[861.74,273.21],[861.73,273.22],[861.73,273.22],[861.72,273.23],[861.72,273.23],[861.71,273.24],[861.7,273.24],[861.7,273.25],[861.69,273.25],[861.69,273.26],[861.68,273.26],[861.68,273.27],[861.68,273.28],[861.68,273.28],[861.67,273.29],[861.67,273.29],[861.66,273.3],[861.66,273.3],[861.65,273.3],[861.64,273.3],[861.64,273.3],[861.63,273.3],[861.63,273.3],[861.62,273.3],[861.61,273.31],[861.61,273.31],[861.6,273.31],[861.6,273.32],[861.6,273.32],[861.6,273.33],[861.6,273.33],[861.6,273.34],[861.6,273.34],[861.6,273.34],[861.6,273.34],[861.6,273.35],[861.6,273.35],[861.6,273.35],[861.6,273.36],[861.6,273.37],[861.6,273.37],[861.6,273.38],[861.6,273.38],[861.6,273.39],[861.6,273.4],[861.6,273.4],[861.59,273.4],[861.58,273.4],[861.58,273.4],[861.57,273.4],[861.57,273.4],[861.57,273.4],[861.56,273.39],[861.56,273.39],[861.55,273.39],[861.54,273.39],[861.54,273.39],[861.53,273.4],[861.53,273.4],[861.53,273.4],[861.53,273.41],[861.52,273.41],[861.52,273.42],[861.52,273.42],[861.52,273.43],[861.52,273.44],[861.52,273.44],[861.52,273.45],[861.52,273.45],[861.52,273.46],[861.52,273.47],[861.52,273.47],[861.52,273.48],[861.51,273.48],[861.51,273.49],[861.51,273.49],[861.51,273.5],[861.51,273.51],[861.5,273.51],[861.5,273.52],[861.5,273.52],[861.49,273.53],[861.49,273.53],[861.48,273.53],[861.48,273.54],[861.48,273.55],[861.48,273.55],[861.48,273.56],[861.47,273.56],[861.47,273.57],[861.47,273.57],[861.47,273.58],[861.44,273.6],[861.44,273.6],[861.43,273.6],[861.43,273.6],[861.42,273.6],[861.42,273.6],[861.41,273.6],[861.4,273.59],[861.4,273.59],[861.39,273.59],[861.38,273.59],[861.38,273.59],[861.37,273.59],[861.36,273.59],[861.36,273.6],[861.35,273.6],[861.35,273.6],[861.35,273.61],[861.34,273.61],[861.34,273.62],[861.34,273.63],[861.34,273.63],[861.34,273.64],[861.34,273.65],[861.34,273.65],[861.33,273.66],[861.32,273.66],[861.32,273.66],[861.31,273.66],[861.31,273.67],[861.3,273.67],[861.3,273.67],[861.29,273.67],[861.28,273.67],[861.28,273.67],[861.27,273.67],[861.26,273.68],[861.26,273.67],[861.25,273.67],[861.24,273.67],[861.24,273.66],[861.23,273.66],[861.22,273.66],[861.21,273.65],[861.21,273.65],[861.2,273.64],[861.19,273.64],[861.18,273.64],[861.17,273.64],[861.16,273.64],[861.16,273.65],[861.15,273.65],[861.13,273.66],[861.12,273.66],[861.11,273.67],[861.11,273.68],[861.1,273.68],[861.1,273.69],[861.09,273.69],[861.08,273.69],[861.07,273.69],[861.04,273.7],[861.03,273.71],[861.02,273.71],[861.02,273.71],[861.01,273.72],[861,273.72],[860.99,273.72],[860.99,273.73],[860.98,273.73],[860.98,273.73],[860.97,273.73],[860.96,273.74],[860.95,273.74],[860.95,273.75],[860.94,273.75],[860.94,273.76],[860.93,273.77],[860.92,273.77],[860.92,273.77],[860.91,273.76],[860.9,273.76],[860.89,273.75],[860.89,273.75],[860.88,273.75],[860.87,273.75],[860.86,273.75],[860.86,273.76],[860.85,273.76],[860.85,273.77],[860.84,273.78],[860.83,273.78],[860.83,273.79],[860.82,273.79],[860.81,273.8],[860.8,273.81],[860.79,273.81],[860.79,273.82],[860.78,273.82],[860.77,273.83],[860.76,273.83],[860.76,273.84],[860.76,273.85],[860.76,273.86],[860.76,273.86],[860.75,273.87],[860.75,273.88],[860.74,273.88],[860.74,273.89],[860.73,273.9],[860.73,273.9],[860.73,273.91],[860.73,273.92],[860.73,273.92],[860.73,273.93],[860.72,273.94],[860.72,273.94],[860.72,273.95],[860.72,273.96],[860.72,273.96],[860.71,273.97],[860.71,273.97],[860.71,273.98],[860.7,273.99],[860.7,273.99],[860.7,274],[860.69,274.01],[860.69,274.01],[860.68,274.02],[860.68,274.02],[860.68,274.03],[860.67,274.04],[860.67,274.04],[860.67,274.05],[860.66,274.06],[860.66,274.06],[860.65,274.07],[860.65,274.08],[860.65,274.09],[860.64,274.09],[860.65,274.1],[860.65,274.11],[860.66,274.11],[860.66,274.12],[860.67,274.12],[860.68,274.12],[860.69,274.12],[860.7,274.13],[860.7,274.13],[860.7,274.14],[860.7,274.15],[860.7,274.16],[860.7,274.17],[860.7,274.18],[860.7,274.18],[860.71,274.19],[860.72,274.2],[860.72,274.21],[860.73,274.21],[860.73,274.22],[860.74,274.23],[860.74,274.23],[860.74,274.24],[860.75,274.25],[860.76,274.25],[860.76,274.25],[860.77,274.26],[860.77,274.27],[860.77,274.27],[860.78,274.28],[860.78,274.28],[860.79,274.29],[860.79,274.29],[860.8,274.3],[860.8,274.3],[860.81,274.31],[860.81,274.32],[860.81,274.32],[860.82,274.33],[860.83,274.33],[860.84,274.33],[860.84,274.34],[860.85,274.34],[860.85,274.35],[860.86,274.35],[860.87,274.35],[860.87,274.36],[860.88,274.37],[860.88,274.38],[860.88,274.39],[860.88,274.39],[860.88,274.4],[860.89,274.41],[860.9,274.41],[860.9,274.42],[860.9,274.42],[860.9,274.43],[860.9,274.44],[860.9,274.45],[860.9,274.45],[860.91,274.46],[860.91,274.46],[860.92,274.47],[860.92,274.47],[860.93,274.48],[860.93,274.49],[860.94,274.49],[860.94,274.5],[860.95,274.51],[860.95,274.52],[860.96,274.52],[860.96,274.53],[860.96,274.54],[860.96,274.54],[860.96,274.55],[860.96,274.56],[860.96,274.56],[860.96,274.57],[860.96,274.57],[860.97,274.58],[860.97,274.58],[860.97,274.59],[860.97,274.59],[860.98,274.59],[860.98,274.6],[860.97,274.6],[860.97,274.6],[860.97,274.61],[860.96,274.61],[860.96,274.62],[860.96,274.62],[860.96,274.63],[860.96,274.63],[860.96,274.63],[860.96,274.64],[860.96,274.64],[860.95,274.64],[860.95,274.65],[860.95,274.65],[860.95,274.65],[860.95,274.66],[860.95,274.66],[860.95,274.67],[860.95,274.67],[860.94,274.68],[860.94,274.68],[860.93,274.69],[860.93,274.69],[860.93,274.69],[860.93,274.7],[860.93,274.7],[860.93,274.71],[860.93,274.71],[860.93,274.72],[860.93,274.73],[860.93,274.74],[860.94,274.75],[860.94,274.75],[860.95,274.76],[860.95,274.77],[860.95,274.77],[860.95,274.78],[860.95,274.78],[860.95,274.79],[860.95,274.8],[860.95,274.81],[860.95,274.82],[860.95,274.82],[860.95,274.83],[860.96,274.83],[860.96,274.84],[860.96,274.85],[860.96,274.85],[860.96,274.86],[860.96,274.87],[860.96,274.88],[860.96,274.89],[860.95,274.9],[860.95,274.9],[860.94,274.91],[860.94,274.91],[860.94,274.91],[860.94,274.92],[860.94,274.92],[860.94,274.93],[860.94,274.93],[860.94,274.94],[860.93,274.94],[860.93,274.94],[860.93,274.95],[860.94,274.95],[860.94,274.96],[860.94,274.96],[860.95,274.96],[860.95,274.96],[860.95,274.96],[860.96,274.97],[860.96,274.98],[860.97,274.99],[860.97,275],[860.97,275],[860.98,275.01],[860.99,275.02],[860.99,275.02],[860.99,275.03],[861,275.03],[861,275.04],[861,275.04],[861.01,275.05],[861.01,275.05],[861.02,275.06],[861.02,275.06],[861.03,275.07],[861.04,275.08],[861.04,275.08],[861.05,275.09],[861.06,275.09],[861.06,275.1],[861.07,275.11],[861.07,275.11],[861.07,275.12],[861.07,275.14],[861.08,275.14],[861.08,275.15],[861.08,275.15],[861.09,275.16],[861.09,275.17],[861.09,275.17],[861.1,275.18],[861.1,275.19],[861.1,275.19],[861.1,275.2],[861.1,275.21],[861.09,275.22],[861.09,275.23],[861.09,275.24],[861.09,275.24],[861.09,275.25],[861.09,275.26],[861.09,275.26],[861.1,275.27],[861.1,275.28],[861.1,275.3],[861.11,275.3],[861.11,275.31],[861.12,275.31],[861.12,275.32],[861.13,275.33],[861.14,275.35],[861.15,275.38],[861.15,275.39],[861.15,275.4],[861.15,275.41],[861.16,275.41],[861.16,275.42],[861.16,275.42],[861.17,275.42],[861.18,275.42],[861.19,275.43],[861.2,275.44],[861.2,275.45],[861.21,275.45],[861.21,275.47],[861.22,275.47],[861.22,275.48],[861.23,275.48],[861.27,275.49],[861.28,275.5],[861.29,275.5],[861.3,275.51],[861.31,275.52],[861.31,275.52],[861.32,275.53],[861.32,275.53],[861.33,275.53],[861.33,275.54],[861.34,275.54],[861.35,275.55],[861.36,275.55],[861.37,275.56],[861.38,275.57],[861.39,275.57],[861.39,275.58],[861.4,275.58],[861.41,275.58],[861.41,275.58],[861.42,275.58],[861.42,275.58],[861.42,275.58],[861.42,275.59],[861.42,275.59],[861.42,275.59],[861.42,275.6],[861.42,275.6],[861.42,275.61],[861.42,275.61],[861.41,275.62],[861.41,275.62],[861.41,275.63],[861.41,275.63],[861.42,275.64],[861.42,275.65],[861.42,275.65],[861.42,275.66],[861.42,275.66],[861.42,275.67],[861.42,275.68],[861.42,275.68],[861.42,275.68],[861.42,275.69],[861.42,275.69],[861.42,275.69],[861.42,275.7],[861.42,275.7],[861.42,275.7],[861.43,275.71],[861.43,275.71],[861.43,275.72],[861.43,275.72],[861.43,275.72],[861.43,275.73],[861.43,275.73],[861.42,275.73],[861.42,275.74],[861.42,275.74],[861.42,275.75],[861.42,275.75],[861.43,275.77],[861.44,275.79],[861.44,275.8],[861.44,275.8],[861.44,275.81],[861.44,275.81],[861.44,275.82],[861.44,275.83],[861.44,275.83],[861.44,275.83],[861.45,275.84],[861.45,275.85],[861.45,275.85],[861.46,275.86],[861.46,275.86],[861.46,275.87],[861.46,275.87],[861.46,275.88],[861.46,275.88],[861.46,275.89],[861.46,275.9],[861.47,275.9],[861.47,275.91],[861.47,275.91],[861.47,275.91],[861.48,275.92],[861.49,275.92],[861.49,275.93],[861.5,275.93],[861.5,275.93],[861.5,275.93],[861.51,275.94],[861.52,275.97],[861.52,275.97],[861.52,275.98],[861.52,275.98],[861.52,275.99],[861.53,276],[861.53,276],[861.53,276],[861.53,276.01],[861.53,276.01],[861.52,276.02],[861.52,276.03],[861.52,276.03],[861.52,276.03],[861.52,276.04],[861.53,276.04],[861.53,276.05],[861.53,276.05],[861.53,276.05],[861.53,276.06],[861.53,276.06],[861.53,276.07],[861.53,276.07],[861.53,276.08],[861.54,276.09],[861.54,276.09],[861.54,276.1],[861.54,276.1],[861.54,276.1],[861.54,276.11],[861.53,276.11],[861.53,276.11],[861.53,276.12],[861.52,276.12],[861.52,276.13],[861.52,276.13],[861.51,276.14],[861.51,276.14],[861.51,276.14],[861.5,276.14],[861.49,276.15],[861.49,276.15],[861.48,276.16],[861.46,276.17],[861.45,276.17],[861.45,276.17],[861.44,276.18],[861.44,276.18],[861.44,276.18],[861.43,276.18],[861.42,276.19],[861.42,276.19],[861.41,276.19],[861.41,276.19],[861.41,276.19],[861.41,276.2],[861.41,276.21],[861.41,276.21],[861.42,276.22],[861.42,276.24],[861.41,276.26],[861.42,276.26],[861.42,276.26],[861.43,276.26],[861.43,276.26],[861.43,276.26],[861.43,276.26],[861.43,276.26],[861.43,276.26],[861.43,276.26],[861.44,276.26],[861.44,276.26],[861.44,276.28],[861.43,276.3],[861.43,276.41],[861.43,276.42],[861.43,276.43],[861.42,276.43],[861.42,276.43],[861.42,276.43],[861.41,276.43],[861.41,276.43],[861.41,276.43],[861.41,276.43],[861.41,276.44],[861.41,276.44],[861.41,276.44],[861.41,276.44],[861.4,276.44],[861.4,276.45],[861.4,276.45],[861.4,276.45],[861.4,276.45],[861.38,276.46],[861.38,276.46],[861.37,276.47],[861.36,276.48],[861.36,276.48],[861.34,276.49],[861.33,276.5],[861.33,276.51],[861.31,276.52],[861.3,276.53],[861.28,276.55],[861.28,276.56],[861.27,276.56],[861.27,276.56],[861.26,276.56],[861.25,276.57],[861.25,276.57],[861.24,276.57],[861.23,276.58],[861.23,276.58],[861.22,276.58],[861.22,276.59],[861.22,276.59],[861.22,276.59],[861.21,276.59],[861.21,276.6],[861.21,276.6],[861.21,276.62],[861.2,276.64],[861.18,276.73],[861.18,276.74],[861.18,276.75],[861.17,276.76],[861.17,276.77],[861.17,276.77],[861.17,276.77],[861.17,276.77],[861.17,276.78],[861.17,276.78],[861.17,276.78],[861.17,276.79],[861.18,276.8],[861.18,276.81],[861.18,276.83],[861.18,276.85],[861.18,276.86],[861.18,276.87],[861.18,276.87],[861.17,276.87],[861.17,276.87],[861.17,276.88],[861.17,276.88],[861.16,276.88],[861.16,276.88],[861.16,276.88],[861.15,276.88],[861.15,276.89],[861.14,276.89],[861.13,276.89],[861.13,276.89],[861.1,276.88],[861.07,276.88],[861.06,276.88],[861.06,276.88],[861.06,276.88],[861.06,276.88],[861.06,276.88],[861.06,276.88],[861.05,276.88],[861.05,276.88],[861.05,276.88],[861.05,276.87],[861.05,276.87],[861.05,276.87],[861.05,276.87],[861.05,276.86],[861.04,276.86],[861.04,276.86],[861.04,276.86],[861.04,276.86],[861.04,276.86],[861.04,276.85],[861.04,276.85],[861.03,276.86],[861.03,276.86],[861.03,276.86],[861.03,276.86],[861.03,276.86],[861.03,276.86],[861.03,276.86],[861.03,276.86],[861.03,276.87],[861.03,276.87],[861.03,276.87],[861.03,276.87],[861.03,276.87],[861.03,276.87],[861.03,276.88],[861.03,276.88],[861.03,276.88],[861.03,276.88],[861.03,276.88],[861.03,276.88],[861.01,276.88],[861.01,276.88],[861.01,276.88],[861.01,276.88],[861,276.88],[861,276.89],[861,276.89],[861,276.89],[861,276.89],[861,276.9],[861,276.9],[861,276.9],[860.99,276.9],[860.99,276.91],[860.99,276.91],[860.98,276.9],[860.97,276.9],[860.97,276.9],[860.96,276.9],[860.96,276.89],[860.95,276.89],[860.94,276.88],[860.94,276.88],[860.93,276.88],[860.92,276.88],[860.92,276.89],[860.91,276.89],[860.91,276.89],[860.91,276.89],[860.91,276.9],[860.91,276.9],[860.92,276.92],[860.93,276.93],[860.93,276.93],[860.93,276.93],[860.93,276.94],[860.93,276.94],[860.92,276.95],[860.92,276.96],[860.91,276.97],[860.91,276.97],[860.91,276.98],[860.89,277],[860.89,277],[860.89,277],[860.89,277.02],[860.89,277.03],[860.89,277.03],[860.9,277.04],[860.9,277.05],[860.91,277.05],[860.91,277.07],[860.91,277.07],[860.91,277.08],[860.92,277.09],[860.93,277.1],[860.93,277.1],[860.94,277.11],[860.96,277.12],[860.97,277.13],[860.98,277.13],[860.99,277.14],[860.99,277.14],[861.01,277.16],[861.01,277.16],[861.01,277.17],[861.02,277.17],[861.02,277.18],[861.02,277.18],[861.02,277.19],[861.03,277.19],[861.02,277.2],[861.02,277.21],[861.03,277.21],[861.03,277.22],[861.03,277.24],[861.03,277.24],[861.03,277.25],[861.03,277.25],[861.03,277.26],[861.03,277.27],[861.03,277.28],[861.03,277.29],[861.03,277.29],[861.03,277.3],[861.04,277.33],[861.04,277.33],[861.04,277.34],[861.04,277.34],[861.04,277.35],[861.04,277.36],[861.04,277.36],[861.04,277.37],[861.04,277.37],[861.04,277.38],[861.04,277.39],[861.04,277.39],[861.03,277.4],[861.03,277.4],[861.03,277.4],[861.03,277.41],[861.02,277.41],[861.02,277.41],[861,277.41],[861,277.41],[861,277.41],[860.94,277.42],[860.85,277.43],[860.82,277.44],[860.8,277.44],[860.79,277.44],[860.78,277.44],[860.77,277.44],[860.76,277.44],[860.76,277.44],[860.75,277.44],[860.74,277.44],[860.73,277.44],[860.73,277.44],[860.72,277.44],[860.72,277.44],[860.71,277.44],[860.71,277.44],[860.68,277.44],[860.66,277.45],[860.64,277.45],[860.64,277.45],[860.63,277.45],[860.63,277.45],[860.62,277.46],[860.61,277.47],[860.59,277.47],[860.58,277.48],[860.56,277.49],[860.55,277.5],[860.53,277.5],[860.52,277.51],[860.51,277.51],[860.51,277.52],[860.5,277.52],[860.5,277.52],[860.49,277.52],[860.49,277.52],[860.49,277.52],[860.48,277.52],[860.48,277.52],[860.47,277.52],[860.47,277.51],[860.47,277.51],[860.46,277.51],[860.45,277.51],[860.45,277.5],[860.45,277.5],[860.44,277.5],[860.44,277.5],[860.44,277.49],[860.43,277.49],[860.43,277.49],[860.43,277.49],[860.43,277.49],[860.42,277.49],[860.42,277.49],[860.42,277.49],[860.41,277.49],[860.41,277.49],[860.41,277.49],[860.41,277.49],[860.4,277.49],[860.4,277.49],[860.39,277.49],[860.39,277.48],[860.38,277.48],[860.38,277.49],[860.38,277.49],[860.38,277.49],[860.37,277.49],[860.35,277.49],[860.29,277.5],[860.26,277.5],[860.26,277.5],[860.25,277.5],[860.25,277.5],[860.24,277.5],[860.24,277.51],[860.23,277.51],[860.23,277.51],[860.22,277.51],[860.21,277.52],[860.2,277.53],[860.2,277.53],[860.19,277.54],[860.18,277.54],[860.18,277.55],[860.17,277.55],[860.17,277.56],[860.16,277.56],[860.15,277.59],[860.14,277.6],[860.14,277.61],[860.13,277.62],[860.12,277.63],[860.12,277.63],[860.11,277.64],[860.1,277.65],[860.09,277.66],[860.09,277.66],[860.08,277.67],[860.08,277.67],[860.07,277.68],[860.06,277.68],[860.06,277.69],[860.05,277.69],[860.04,277.7],[860.04,277.7],[860.02,277.71],[860.01,277.71],[860,277.71],[859.99,277.72],[859.99,277.72],[859.97,277.72],[859.96,277.72],[859.95,277.72],[859.93,277.73],[859.92,277.73],[859.91,277.73],[859.9,277.73],[859.89,277.73],[859.89,277.74],[859.84,277.77],[859.83,277.77],[859.82,277.78],[859.82,277.78],[859.8,277.8],[859.79,277.8],[859.79,277.8],[859.79,277.81],[859.78,277.82],[859.77,277.82],[859.77,277.83],[859.76,277.84],[859.76,277.84],[859.75,277.85],[859.74,277.85],[859.74,277.86],[859.73,277.86],[859.72,277.87],[859.71,277.87],[859.7,277.88],[859.7,277.88],[859.69,277.89],[859.67,277.9],[859.66,277.91],[859.66,277.91],[859.65,277.92],[859.64,277.92],[859.63,277.92],[859.63,277.92],[859.62,277.92],[859.61,277.92],[859.61,277.92],[859.59,277.91],[859.58,277.91],[859.57,277.9],[859.56,277.9],[859.54,277.9],[859.54,277.9],[859.52,277.9],[859.52,277.9],[859.5,277.89],[859.48,277.89],[859.46,277.89],[859.45,277.89],[859.45,277.89],[859.44,277.89],[859.44,277.89],[859.43,277.9],[859.43,277.9],[859.43,277.91],[859.43,277.91],[859.43,277.91],[859.43,277.92],[859.42,277.94],[859.42,277.95],[859.42,277.95],[859.42,277.96],[859.42,277.96],[859.42,277.97],[859.41,277.97],[859.41,277.97],[859.41,277.98],[859.41,277.98],[859.4,277.98],[859.4,277.98],[859.39,277.98],[859.38,277.99],[859.37,277.99],[859.37,277.99],[859.37,278],[859.36,278],[859.36,278],[859.36,278],[859.35,278.01],[859.34,278.01],[859.34,278.01],[859.33,278.01],[859.31,278.02],[859.3,278.02],[859.3,278.02],[859.29,278.03],[859.29,278.03],[859.28,278.03],[859.27,278.04],[859.27,278.04],[859.26,278.05],[859.26,278.05],[859.26,278.05],[859.25,278.06],[859.25,278.07],[859.25,278.07],[859.23,278.11],[859.22,278.13],[859.22,278.13],[859.22,278.14],[859.22,278.14],[859.22,278.15],[859.21,278.16],[859.21,278.17],[859.21,278.18],[859.21,278.2],[859.2,278.22],[859.2,278.23],[859.2,278.24],[859.19,278.24],[859.19,278.25],[859.18,278.26],[859.17,278.26],[859.17,278.27],[859.16,278.27],[859.15,278.27],[859.14,278.28],[859.13,278.28],[859.12,278.28],[859.1,278.28],[859.09,278.29],[859.08,278.29],[859.07,278.29],[859.06,278.29],[859.06,278.3],[859.05,278.3],[859.05,278.31],[859.04,278.32],[859.04,278.32],[859.04,278.33],[859.04,278.34],[859.04,278.35],[859.04,278.36],[859.04,278.37],[859.05,278.39],[859.05,278.4],[859.05,278.41],[859.05,278.41],[859.05,278.42],[859.04,278.43],[859.03,278.44],[859.02,278.45],[859,278.47],[858.99,278.47],[858.99,278.48],[858.99,278.48],[858.99,278.49],[858.99,278.49],[858.98,278.5],[858.98,278.51],[858.98,278.52],[858.98,278.53],[858.98,278.53],[858.97,278.54],[858.97,278.56],[858.97,278.57],[858.97,278.57],[858.96,278.58],[858.96,278.59],[858.96,278.59],[858.95,278.6],[858.95,278.6],[858.95,278.6],[858.95,278.61],[858.95,278.61],[858.95,278.62],[858.95,278.63],[858.95,278.64],[858.95,278.65],[858.95,278.65],[858.95,278.66],[858.95,278.66],[858.95,278.67],[858.95,278.68],[858.96,278.69],[858.96,278.7],[858.96,278.7],[858.96,278.71],[858.96,278.71],[858.96,278.72],[858.95,278.74],[858.95,278.74],[858.95,278.75],[858.95,278.76],[858.94,278.78],[858.94,278.78],[858.94,278.79],[858.93,278.79],[858.93,278.8],[858.93,278.81],[858.92,278.82],[858.91,278.83],[858.91,278.84],[858.9,278.86],[858.9,278.86],[858.89,278.87],[858.89,278.87],[858.89,278.88],[858.9,278.89],[858.9,278.89],[858.91,278.9],[858.91,278.9],[858.92,278.91],[858.92,278.91],[858.92,278.91],[858.93,278.92],[858.93,278.92],[858.92,278.93],[858.92,278.93],[858.92,278.94],[858.91,278.94],[858.89,278.97],[858.88,278.97],[858.88,278.98],[858.86,279],[858.86,279],[858.86,279],[858.86,279.01],[858.86,279.01],[858.86,279.02],[858.86,279.02],[858.86,279.02],[858.87,279.02],[858.87,279.03],[858.89,279.04],[858.91,279.06],[858.91,279.06],[858.92,279.07],[858.92,279.07],[858.92,279.08],[858.92,279.08],[858.92,279.09],[858.92,279.11],[858.91,279.13],[858.91,279.14],[858.91,279.15],[858.9,279.15],[858.89,279.16],[858.89,279.17],[858.87,279.18],[858.86,279.19],[858.85,279.2],[858.84,279.2],[858.83,279.22],[858.83,279.23],[858.82,279.24],[858.82,279.24],[858.8,279.25],[858.78,279.26],[858.78,279.27],[858.76,279.28],[858.75,279.29],[858.75,279.29],[858.74,279.3],[858.74,279.3],[858.73,279.31],[858.72,279.32],[858.71,279.33],[858.7,279.33],[858.7,279.34],[858.69,279.34],[858.69,279.35],[858.68,279.35],[858.67,279.36],[858.67,279.36],[858.66,279.36],[858.65,279.37],[858.65,279.37],[858.65,279.38],[858.64,279.38],[858.64,279.38],[858.63,279.38],[858.62,279.39],[858.62,279.39],[858.6,279.4],[858.59,279.41],[858.59,279.42],[858.58,279.43],[858.58,279.43],[858.57,279.44],[858.57,279.44],[858.56,279.44],[858.55,279.45],[858.55,279.45],[858.54,279.46],[858.53,279.47],[858.52,279.48],[858.51,279.48],[858.5,279.49],[858.5,279.5],[858.49,279.51],[858.48,279.51],[858.48,279.52],[858.47,279.52],[858.46,279.53],[858.46,279.53],[858.45,279.54],[858.44,279.54],[858.43,279.56],[858.42,279.56],[858.41,279.57],[858.41,279.58],[858.4,279.58],[858.4,279.59],[858.39,279.59],[858.39,279.6],[858.38,279.61],[858.38,279.61],[858.37,279.62],[858.36,279.62],[858.35,279.63],[858.34,279.64],[858.31,279.66],[858.3,279.67],[858.29,279.68],[858.28,279.69],[858.28,279.69],[858.27,279.7],[858.26,279.7],[858.26,279.71],[858.25,279.71],[858.24,279.72],[858.23,279.72],[858.22,279.72],[858.21,279.73],[858.2,279.73],[858.2,279.73],[858.18,279.73],[858.17,279.74],[858.16,279.74],[858.15,279.74],[858.15,279.74],[858.14,279.74],[858.14,279.74],[858.14,279.74],[858.13,279.74],[858.13,279.75],[858.13,279.75],[858.12,279.76],[858.11,279.76],[858.11,279.77],[858.1,279.77],[858.1,279.77],[858.1,279.77],[858.09,279.78],[858.08,279.78],[858.05,279.8],[858.04,279.81],[858.02,279.82],[858.02,279.82],[858.02,279.83],[858.01,279.83],[858.01,279.84],[857.99,279.86],[857.99,279.86],[857.99,279.87],[857.99,279.87],[857.99,279.88],[857.99,279.88],[857.99,279.89],[857.99,279.89],[857.99,279.9],[857.99,279.9],[857.99,279.9],[857.99,279.91],[857.99,279.91],[857.99,279.92],[857.99,279.92],[857.99,279.93],[857.99,279.93],[857.99,279.94],[857.98,279.98],[857.97,279.98],[857.97,279.99],[857.97,279.99],[857.97,280.01],[857.97,280.04],[857.97,280.05],[857.97,280.06],[857.97,280.06],[857.97,280.07],[857.97,280.09],[857.96,280.14],[857.96,280.16],[857.95,280.17],[857.95,280.18],[857.95,280.18],[857.95,280.19],[857.95,280.2],[857.95,280.21],[857.95,280.21],[857.95,280.23],[857.95,280.24],[857.95,280.27],[857.95,280.29],[857.95,280.3],[857.96,280.37],[857.96,280.4],[857.96,280.41],[857.96,280.41],[857.97,280.43],[857.97,280.45],[857.97,280.45],[857.98,280.48],[857.98,280.49],[857.98,280.5],[857.98,280.51],[857.98,280.52],[857.99,280.55],[857.99,280.56],[857.99,280.57],[858,280.6],[858,280.62],[857.99,280.64],[857.99,280.65],[857.99,280.66],[858,280.68],[858,280.69],[858,280.7],[858,280.7],[858,280.71],[858,280.71],[858,280.72],[858.01,280.73],[858.01,280.73],[858.02,280.73],[858.02,280.74],[858.02,280.74],[858.03,280.74],[858.03,280.75],[858.03,280.75],[858.03,280.76],[858.03,280.76],[858.03,280.78],[858.03,280.8],[858.02,280.82],[858.02,280.84],[858.02,280.84],[858.02,280.85],[858.02,280.85],[858.01,280.86],[858.01,280.86],[858.01,280.87],[858,280.87],[858,280.88],[858,280.89],[858,280.89],[858,280.9],[858.01,280.91],[858.01,280.92],[858.02,280.93],[858.02,280.94],[858.02,280.95],[858.03,280.96],[858.04,280.98],[858.05,280.99],[858.07,281.01],[858.08,281.03],[858.08,281.04],[858.1,281.07],[858.11,281.07],[858.13,281.11],[858.13,281.11],[858.14,281.12],[858.15,281.13],[858.22,281.19],[858.27,281.23],[858.29,281.24],[858.29,281.25],[858.3,281.26],[858.31,281.28],[858.32,281.3],[858.33,281.31],[858.34,281.32],[858.35,281.34],[858.41,281.4],[858.42,281.41],[858.43,281.42],[858.44,281.43],[858.45,281.45],[858.5,281.52],[858.53,281.58],[858.54,281.59],[858.55,281.6],[858.56,281.61],[858.59,281.63],[858.61,281.64],[858.64,281.67],[858.66,281.68],[858.67,281.7],[858.68,281.71],[858.69,281.71],[858.71,281.72],[858.72,281.72],[858.78,281.73],[858.86,281.75],[858.88,281.76],[858.89,281.76],[858.91,281.76],[858.92,281.76],[858.97,281.77],[858.98,281.77],[859.02,281.78],[859.05,281.79],[859.12,281.81],[859.14,281.81],[859.17,281.82],[859.2,281.83],[859.23,281.84],[859.26,281.85],[859.27,281.85],[859.29,281.86],[859.3,281.86],[859.32,281.87],[859.33,281.87],[859.35,281.88],[859.36,281.88],[859.38,281.89],[859.4,281.89],[859.42,281.9],[859.43,281.91],[859.44,281.91],[859.44,281.92],[859.45,281.92],[859.45,281.93],[859.45,281.94],[859.45,281.96],[859.45,282],[859.45,282.01],[859.46,282.03],[859.46,282.03],[859.46,282.03],[859.46,282.04],[859.47,282.04],[859.48,282.05],[859.48,282.05],[859.49,282.05],[859.49,282.05],[859.49,282.05],[859.49,282.04],[859.5,282.04],[859.5,282.04],[859.5,282.04],[859.51,282.04],[859.51,282.05],[859.52,282.05],[859.52,282.05],[859.52,282.05],[859.52,282.06],[859.52,282.07],[859.53,282.07],[859.54,282.07],[859.55,282.07],[859.57,282.07],[859.57,282.07],[859.59,282.07],[859.59,282.07],[859.59,282.08],[859.6,282.08],[859.6,282.08],[859.6,282.09],[859.6,282.1],[859.6,282.11],[859.6,282.11],[859.6,282.12],[859.61,282.13],[859.61,282.13],[859.61,282.14],[859.61,282.14],[859.62,282.15],[859.62,282.15],[859.65,282.16],[859.65,282.17],[859.66,282.17],[859.66,282.17],[859.67,282.18],[859.67,282.18],[859.68,282.18],[859.68,282.18],[859.68,282.19],[859.69,282.19],[859.69,282.19],[859.7,282.2],[859.7,282.2],[859.7,282.2],[859.71,282.21],[859.71,282.21],[859.72,282.21],[859.72,282.22],[859.72,282.22],[859.73,282.22],[859.74,282.23],[859.74,282.23],[859.74,282.23],[859.77,282.25],[859.79,282.26],[859.79,282.27],[859.8,282.27],[859.82,282.27],[859.82,282.27],[859.82,282.27],[859.82,282.28],[859.83,282.28],[859.83,282.29],[859.85,282.3],[859.85,282.31],[859.86,282.31],[859.86,282.31],[859.87,282.31],[859.87,282.31],[859.88,282.31],[859.89,282.3],[859.89,282.3],[859.89,282.3],[859.91,282.3],[859.91,282.31],[859.91,282.3],[859.92,282.3],[859.93,282.3],[859.93,282.3],[859.93,282.3],[859.94,282.3],[859.94,282.29],[859.94,282.29],[859.95,282.29],[859.95,282.28],[859.95,282.28],[859.95,282.28],[859.95,282.28],[859.95,282.28],[859.95,282.28],[859.96,282.27],[859.96,282.27],[859.96,282.27],[859.96,282.27],[859.97,282.27],[859.97,282.27],[859.99,282.28],[859.99,282.28],[860.01,282.28],[860.01,282.28],[860.04,282.29],[860.05,282.3],[860.07,282.3],[860.07,282.3],[860.08,282.31],[860.09,282.31],[860.09,282.31],[860.1,282.32],[860.11,282.32],[860.12,282.33],[860.12,282.33],[860.13,282.34],[860.14,282.34],[860.15,282.35],[860.15,282.35],[860.16,282.35],[860.17,282.35],[860.17,282.35],[860.19,282.36],[860.21,282.37],[860.22,282.37],[860.23,282.37],[860.24,282.38],[860.25,282.38],[860.26,282.38],[860.27,282.38],[860.27,282.39],[860.28,282.39],[860.29,282.39],[860.3,282.39],[860.3,282.39],[860.31,282.39],[860.32,282.39],[860.33,282.39],[860.33,282.39],[860.34,282.4],[860.34,282.4],[860.35,282.4],[860.35,282.4],[860.36,282.4],[860.36,282.4],[860.37,282.4],[860.37,282.4],[860.39,282.4],[860.4,282.4],[860.4,282.4],[860.41,282.4],[860.41,282.4],[860.42,282.4],[860.42,282.41],[860.42,282.41],[860.43,282.42],[860.43,282.42],[860.44,282.44],[860.44,282.44],[860.44,282.45],[860.44,282.46],[860.45,282.46],[860.45,282.47],[860.45,282.47],[860.45,282.47],[860.44,282.48],[860.44,282.48],[860.44,282.49],[860.44,282.49],[860.42,282.51],[860.42,282.52],[860.42,282.52],[860.42,282.53],[860.42,282.53],[860.42,282.55],[860.42,282.56],[860.42,282.57],[860.42,282.58],[860.42,282.58],[860.42,282.58],[860.42,282.59],[860.42,282.6],[860.43,282.61],[860.43,282.61],[860.43,282.62],[860.43,282.62],[860.43,282.62],[860.42,282.63],[860.42,282.63],[860.42,282.65],[860.41,282.66],[860.41,282.67],[860.41,282.68],[860.4,282.69],[860.4,282.7],[860.4,282.71],[860.39,282.71],[860.39,282.74],[860.39,282.74],[860.39,282.74],[860.39,282.75],[860.38,282.75],[860.37,282.78],[860.37,282.78],[860.37,282.79],[860.36,282.79],[860.36,282.8],[860.36,282.8],[860.36,282.81],[860.36,282.81],[860.36,282.81],[860.36,282.81],[860.36,282.82],[860.36,282.83],[860.36,282.83],[860.36,282.84],[860.36,282.85],[860.35,282.85],[860.35,282.86],[860.35,282.86],[860.35,282.86],[860.35,282.87],[860.35,282.87],[860.36,282.87],[860.36,282.87],[860.36,282.87],[860.36,282.88],[860.38,282.89],[860.38,282.89],[860.38,282.89],[860.38,282.89],[860.38,282.9],[860.39,282.9],[860.39,282.9],[860.39,282.9],[860.39,282.9],[860.39,282.9],[860.39,282.91],[860.39,282.92],[860.39,282.92],[860.39,282.92],[860.39,282.92],[860.39,282.93],[860.39,282.93],[860.39,282.93],[860.39,282.93],[860.39,282.94],[860.39,282.94],[860.39,282.94],[860.4,282.94],[860.4,282.95],[860.4,282.95],[860.4,282.95],[860.4,282.95],[860.41,282.97],[860.41,282.97],[860.41,282.97],[860.41,282.97],[860.42,282.97],[860.42,282.98],[860.43,282.98],[860.44,282.98],[860.44,282.99],[860.44,282.99],[860.45,282.99],[860.45,282.99],[860.45,282.99],[860.45,282.99],[860.45,283],[860.47,283.02],[860.48,283.05],[860.5,283.09],[860.51,283.09],[860.51,283.09],[860.51,283.1],[860.51,283.1],[860.52,283.11],[860.52,283.11],[860.52,283.12],[860.53,283.12],[860.53,283.12],[860.53,283.12],[860.54,283.12],[860.54,283.12],[860.55,283.12],[860.56,283.12],[860.56,283.12],[860.56,283.12],[860.56,283.12],[860.57,283.12],[860.59,283.11],[860.61,283.11],[860.61,283.11],[860.62,283.11],[860.62,283.11],[860.63,283.11],[860.63,283.11],[860.64,283.11],[860.66,283.13],[860.68,283.15],[860.71,283.17],[860.72,283.18],[860.74,283.19],[860.75,283.2],[860.76,283.21],[860.77,283.22],[860.77,283.22],[860.79,283.23],[860.8,283.25],[860.85,283.28],[860.88,283.3],[860.92,283.33],[860.93,283.34],[860.98,283.38],[860.99,283.39],[861.02,283.41],[861.04,283.43],[861.04,283.43],[861.04,283.43],[861.07,283.45],[861.13,283.5],[861.15,283.51],[861.18,283.54],[861.19,283.55],[861.19,283.55],[861.2,283.55],[861.2,283.56],[861.21,283.56],[861.23,283.59],[861.23,283.6],[861.23,283.6],[861.24,283.6],[861.24,283.6],[861.24,283.6],[861.27,283.61],[861.27,283.61],[861.28,283.61],[861.28,283.62],[861.29,283.62],[861.29,283.62],[861.29,283.62],[861.29,283.63],[861.29,283.63],[861.3,283.65],[861.34,283.71],[861.35,283.73],[861.35,283.74],[861.37,283.76],[861.37,283.77],[861.37,283.78],[861.38,283.79],[861.4,283.83],[861.41,283.84],[861.43,283.87],[861.43,283.87],[861.43,283.88],[861.44,283.89],[861.44,283.9],[861.45,283.91],[861.46,283.93],[861.5,284],[861.53,284.06],[861.58,284.16],[861.6,284.18],[861.6,284.19],[861.62,284.21],[861.62,284.22],[861.62,284.22],[861.62,284.23],[861.63,284.23],[861.63,284.24],[861.68,284.27],[861.68,284.28],[861.68,284.28],[861.68,284.28],[861.68,284.29],[861.68,284.29],[861.69,284.29],[861.69,284.3],[861.69,284.31],[861.69,284.31],[861.69,284.32],[861.7,284.33],[861.7,284.33],[861.7,284.34],[861.7,284.34],[861.71,284.36],[861.71,284.38],[861.71,284.38],[861.71,284.39],[861.71,284.39],[861.71,284.41],[861.71,284.42],[861.71,284.43],[861.71,284.43],[861.71,284.44],[861.71,284.44],[861.71,284.44],[861.72,284.46],[861.73,284.46],[861.73,284.47],[861.73,284.47],[861.73,284.48],[861.73,284.48],[861.73,284.49],[861.72,284.49],[861.72,284.5],[861.72,284.5],[861.72,284.51],[861.72,284.51],[861.72,284.52],[861.72,284.52],[861.72,284.52],[861.73,284.55],[861.73,284.56],[861.73,284.56],[861.73,284.57],[861.73,284.57],[861.73,284.58],[861.73,284.59],[861.73,284.59],[861.73,284.61],[861.73,284.61],[861.73,284.62],[861.73,284.63],[861.73,284.64],[861.73,284.65],[861.73,284.65],[861.73,284.66],[861.73,284.66],[861.73,284.67],[861.73,284.67],[861.73,284.69],[861.73,284.7],[861.72,284.73],[861.72,284.75],[861.71,284.76],[861.71,284.79],[861.69,284.84],[861.69,284.85],[861.69,284.87],[861.69,284.88],[861.69,284.88],[861.69,284.89],[861.7,284.9],[861.7,284.91],[861.71,284.91],[861.73,284.94],[861.74,284.95],[861.74,284.96],[861.74,284.96],[861.75,284.97],[861.75,284.97],[861.75,284.97],[861.75,284.98],[861.75,284.98],[861.75,285.02],[861.75,285.05],[861.75,285.09],[861.76,285.12],[861.76,285.14],[861.76,285.14],[861.76,285.15],[861.75,285.16],[861.75,285.17],[861.75,285.17],[861.75,285.18],[861.76,285.19],[861.76,285.2],[861.77,285.23],[861.78,285.24],[861.78,285.24],[861.78,285.25],[861.77,285.25],[861.77,285.25],[861.77,285.26],[861.77,285.26],[861.76,285.27],[861.76,285.27],[861.76,285.27],[861.76,285.28],[861.76,285.28],[861.76,285.29],[861.75,285.31],[861.75,285.31],[861.75,285.32],[861.75,285.33],[861.75,285.33],[861.74,285.33],[861.74,285.33],[861.74,285.34],[861.73,285.34],[861.73,285.35],[861.73,285.35],[861.73,285.35],[861.73,285.36],[861.73,285.36],[861.73,285.37],[861.73,285.37],[861.73,285.38],[861.73,285.39],[861.73,285.39],[861.73,285.4],[861.73,285.4],[861.73,285.4],[861.73,285.4],[861.72,285.41],[861.72,285.41],[861.71,285.42],[861.69,285.43],[861.69,285.43],[861.68,285.43],[861.68,285.44],[861.68,285.44],[861.68,285.45],[861.68,285.45],[861.67,285.48],[861.67,285.49],[861.67,285.5],[861.67,285.5],[861.67,285.5],[861.66,285.51],[861.65,285.52],[861.65,285.52],[861.65,285.52],[861.65,285.52],[861.65,285.53],[861.65,285.53],[861.64,285.53],[861.64,285.53],[861.64,285.53],[861.64,285.54],[861.64,285.54],[861.64,285.55],[861.64,285.55],[861.64,285.55],[861.64,285.56],[861.64,285.56],[861.64,285.56],[861.64,285.57],[861.65,285.57],[861.65,285.57],[861.65,285.57],[861.67,285.6],[861.68,285.6],[861.68,285.61],[861.68,285.61],[861.68,285.61],[861.68,285.62],[861.69,285.62],[861.69,285.63],[861.69,285.64],[861.69,285.64],[861.69,285.65],[861.7,285.66],[861.7,285.66],[861.7,285.66],[861.71,285.67],[861.71,285.67],[861.7,285.68],[861.7,285.68],[861.7,285.69],[861.7,285.69],[861.7,285.69],[861.69,285.69],[861.69,285.69],[861.69,285.7],[861.69,285.7],[861.7,285.71],[861.7,285.71],[861.7,285.71],[861.7,285.72],[861.69,285.72],[861.69,285.72],[861.69,285.73],[861.69,285.73],[861.69,285.73],[861.69,285.74],[861.68,285.74],[861.68,285.74],[861.68,285.75],[861.68,285.75],[861.68,285.75],[861.68,285.76],[861.68,285.76],[861.68,285.77],[861.68,285.77],[861.68,285.77],[861.68,285.78],[861.68,285.78],[861.68,285.79],[861.67,285.79],[861.66,285.8],[861.65,285.8],[861.64,285.81],[861.63,285.81],[861.62,285.81],[861.62,285.82],[861.62,285.82],[861.61,285.82],[861.61,285.83],[861.6,285.86],[861.6,285.86],[861.6,285.87],[861.6,285.87],[861.6,285.88],[861.6,285.88],[861.6,285.89],[861.61,285.89],[861.62,285.9],[861.62,285.91],[861.63,285.91],[861.64,285.92],[861.64,285.93],[861.65,285.93],[861.65,285.94],[861.65,285.94],[861.66,285.95],[861.66,285.97],[861.66,285.99],[861.67,286],[861.67,286.01],[861.68,286.02],[861.7,286.03],[861.73,286.03],[861.74,286.03],[861.76,286.03],[861.77,286.03],[861.78,286.03],[861.79,286.02],[861.8,286.02],[861.81,286.03],[861.85,286.06],[861.9,286.09],[861.93,286.11],[861.94,286.11],[861.94,286.12],[861.95,286.13],[861.95,286.13],[861.96,286.14],[861.99,286.14],[862,286.14],[862,286.14],[862.01,286.15],[862.05,286.14],[862.06,286.14],[862.06,286.15],[862.07,286.15],[862.09,286.16],[862.09,286.16],[862.09,286.16],[862.1,286.16],[862.1,286.16],[862.11,286.16],[862.11,286.16],[862.11,286.15],[862.11,286.15],[862.11,286.15],[862.11,286.13],[862.12,286.09],[862.12,286.08],[862.12,286.08],[862.12,286.07],[862.12,286.07],[862.13,286.07],[862.13,286.06],[862.14,286.06],[862.14,286.06],[862.16,286.05],[862.17,286.05],[862.17,286.04],[862.18,286.04],[862.18,286.04],[862.19,286.02],[862.2,286.01],[862.2,286],[862.21,286],[862.21,285.99],[862.22,285.99],[862.23,285.98],[862.23,285.98],[862.24,285.97],[862.25,285.97],[862.27,285.96],[862.29,285.95],[862.32,285.93],[862.34,285.92],[862.35,285.92],[862.37,285.91],[862.37,285.91],[862.38,285.9],[862.39,285.9],[862.4,285.91],[862.45,285.91],[862.51,285.93],[862.53,285.94],[862.54,285.95],[862.55,285.95],[862.55,285.95],[862.55,285.96],[862.56,285.96],[862.56,285.97],[862.56,285.97],[862.57,286.01],[862.59,286.08],[862.6,286.11],[862.61,286.14],[862.62,286.15],[862.62,286.16],[862.63,286.17],[862.67,286.25],[862.68,286.26],[862.68,286.27],[862.68,286.28],[862.68,286.29],[862.69,286.3],[862.69,286.31],[862.7,286.32],[862.71,286.34],[862.72,286.35],[862.72,286.36],[862.73,286.37],[862.74,286.38],[862.75,286.39],[862.75,286.41],[862.76,286.42],[862.77,286.44],[862.78,286.45],[862.78,286.46],[862.79,286.47],[862.8,286.48],[862.81,286.49],[862.82,286.5],[862.83,286.51],[862.83,286.52],[862.84,286.52],[862.84,286.54],[862.85,286.55],[862.86,286.56],[862.87,286.57],[862.89,286.6],[862.89,286.61],[862.9,286.61],[862.9,286.62],[862.91,286.65],[862.91,286.67],[862.91,286.68],[862.91,286.7],[862.91,286.71],[862.91,286.72],[862.91,286.72],[862.92,286.73],[862.93,286.74],[862.94,286.75],[862.95,286.76],[862.95,286.77],[862.95,286.78],[862.95,286.78],[862.94,286.8],[862.94,286.81],[862.95,286.82],[862.95,286.83],[862.96,286.85],[862.97,286.86],[862.97,286.87],[862.97,286.88],[862.97,286.9],[862.97,286.91],[862.97,286.93],[862.97,286.94],[862.97,286.97],[862.97,286.98],[862.98,286.98],[862.98,286.99],[862.98,287],[863,287.02],[863,287.03],[863.01,287.03],[863.01,287.04],[863.01,287.04],[863.02,287.05],[863.02,287.06],[863.02,287.07],[863.03,287.07],[863.04,287.08],[863.04,287.08],[863.05,287.09],[863.05,287.1],[863.06,287.11],[863.06,287.12],[863.06,287.13],[863.06,287.14],[863.06,287.15],[863.07,287.15],[863.07,287.16],[863.08,287.16],[863.08,287.17],[863.09,287.18],[863.09,287.18],[863.09,287.19],[863.1,287.2],[863.1,287.21],[863.1,287.22],[863.1,287.23],[863.1,287.23],[863.11,287.24],[863.11,287.25],[863.12,287.26],[863.12,287.26],[863.13,287.27],[863.13,287.28],[863.12,287.3],[863.12,287.32],[863.11,287.34],[863.11,287.35],[863.11,287.35],[863.12,287.35],[863.12,287.36],[863.13,287.36],[863.13,287.37],[863.14,287.38],[863.14,287.38],[863.14,287.39],[863.14,287.39],[863.14,287.41],[863.14,287.42],[863.14,287.43],[863.13,287.46],[863.13,287.46],[863.13,287.47],[863.13,287.49],[863.13,287.51],[863.13,287.52],[863.13,287.54],[863.13,287.55],[863.13,287.55],[863.13,287.56],[863.14,287.57],[863.14,287.58],[863.14,287.59],[863.14,287.6],[863.14,287.62],[863.13,287.63],[863.13,287.64],[863.14,287.65],[863.14,287.66],[863.14,287.66],[863.15,287.67],[863.15,287.67],[863.15,287.68],[863.15,287.69],[863.15,287.7],[863.15,287.72],[863.16,287.74],[863.16,287.76],[863.16,287.77],[863.16,287.78],[863.17,287.78],[863.18,287.79],[863.18,287.79],[863.19,287.79],[863.2,287.79],[863.2,287.8],[863.21,287.8],[863.21,287.81],[863.21,287.82],[863.21,287.83],[863.22,287.84],[863.22,287.85],[863.21,287.86],[863.21,287.87],[863.21,287.87],[863.22,287.88],[863.22,287.89],[863.23,287.9],[863.23,287.9],[863.23,287.91],[863.23,287.92],[863.24,287.93],[863.24,287.94],[863.25,287.96],[863.25,287.98],[863.25,287.99],[863.26,288.02],[863.27,288.03],[863.28,288.06],[863.29,288.07],[863.29,288.07],[863.29,288.08],[863.29,288.09],[863.29,288.09],[863.29,288.1],[863.29,288.11],[863.28,288.12],[863.29,288.13],[863.29,288.13],[863.29,288.16],[863.29,288.16],[863.29,288.17],[863.29,288.18],[863.29,288.21],[863.29,288.22],[863.29,288.23],[863.29,288.24],[863.28,288.26],[863.27,288.27],[863.27,288.28],[863.24,288.3],[863.23,288.31],[863.22,288.32],[863.22,288.32],[863.22,288.32],[863.22,288.33],[863.22,288.34],[863.22,288.35],[863.22,288.36],[863.22,288.39],[863.22,288.4],[863.22,288.42],[863.22,288.43],[863.23,288.45],[863.24,288.48],[863.25,288.51],[863.26,288.56],[863.27,288.57],[863.28,288.58],[863.28,288.59],[863.28,288.6],[863.28,288.61],[863.28,288.61],[863.28,288.62],[863.28,288.63],[863.28,288.67],[863.27,288.68],[863.27,288.69],[863.28,288.7],[863.28,288.7],[863.28,288.71],[863.29,288.72],[863.29,288.73],[863.29,288.74],[863.3,288.75],[863.3,288.76],[863.3,288.77],[863.31,288.79],[863.31,288.8],[863.31,288.81],[863.32,288.82],[863.33,288.85],[863.34,288.87],[863.35,288.88],[863.35,288.88],[863.36,288.89],[863.36,288.9],[863.36,288.94],[863.36,288.95],[863.36,288.96],[863.36,288.97],[863.37,288.98],[863.37,288.98],[863.4,289.02],[863.4,289.03],[863.41,289.04],[863.41,289.04],[863.42,289.05],[863.43,289.06],[863.44,289.07],[863.45,289.07],[863.46,289.08],[863.47,289.09],[863.48,289.09],[863.49,289.09],[863.5,289.1],[863.51,289.11],[863.52,289.11],[863.54,289.12],[863.55,289.13],[863.56,289.13],[863.57,289.13],[863.58,289.13],[863.59,289.13],[863.59,289.13],[863.61,289.14],[863.61,289.15],[863.64,289.16],[863.67,289.18],[863.71,289.21],[863.74,289.23],[863.76,289.24],[863.77,289.25],[863.78,289.26],[863.8,289.28],[863.8,289.28],[863.81,289.29],[863.82,289.29],[863.82,289.3],[863.84,289.31],[863.85,289.31],[863.85,289.32],[863.87,289.32],[863.87,289.33],[863.88,289.33],[863.89,289.33],[863.89,289.34],[863.9,289.34],[863.91,289.34],[863.92,289.34],[863.94,289.34],[863.94,289.35],[863.95,289.35],[863.96,289.35],[863.96,289.36],[863.98,289.4],[863.98,289.4],[863.98,289.41],[863.98,289.42],[863.98,289.42],[863.98,289.43],[863.98,289.44],[863.98,289.44],[863.97,289.45],[863.97,289.46],[863.97,289.47],[863.97,289.48],[863.97,289.49],[863.97,289.5],[863.97,289.51],[863.97,289.52],[863.97,289.52],[863.97,289.53],[863.96,289.53],[863.95,289.55],[863.95,289.56],[863.95,289.57],[863.94,289.58],[863.94,289.58],[863.93,289.59],[863.93,289.6],[863.93,289.61],[863.93,289.62],[863.93,289.63],[863.93,289.64],[863.93,289.66],[863.93,289.67],[863.93,289.68],[863.93,289.68],[863.93,289.69],[863.93,289.69],[863.94,289.7],[863.94,289.71],[863.94,289.71],[863.94,289.72],[863.94,289.72],[863.94,289.73],[863.94,289.73],[863.94,289.74],[863.95,289.74],[863.95,289.75],[863.96,289.75],[863.96,289.76],[863.97,289.76],[863.97,289.77],[863.97,289.79],[863.97,289.79],[863.97,289.8],[863.97,289.81],[863.97,289.82],[863.97,289.82],[863.97,289.83],[863.97,289.84],[863.97,289.84],[863.96,289.86],[863.96,289.86],[863.96,289.87],[863.95,289.9],[863.95,289.9],[863.95,289.91],[863.95,289.91],[863.94,289.91],[863.93,289.92],[863.93,289.92],[863.93,289.92],[863.92,289.93],[863.92,289.93],[863.92,289.94],[863.91,289.97],[863.91,289.99],[863.91,290],[863.91,290.01],[863.91,290.02],[863.91,290.03],[863.91,290.04],[863.92,290.07],[863.92,290.09],[863.92,290.1],[863.93,290.13],[863.93,290.14],[863.94,290.15],[863.94,290.16],[863.94,290.17],[863.94,290.17],[863.94,290.18],[863.94,290.19],[863.93,290.2],[863.93,290.21],[863.93,290.21],[863.93,290.21],[863.93,290.22],[863.93,290.22],[863.93,290.22],[863.94,290.24],[863.94,290.25],[863.94,290.26],[863.94,290.26],[863.94,290.26],[863.95,290.28],[863.95,290.28],[863.96,290.29],[863.96,290.29],[863.96,290.3],[863.96,290.31],[863.96,290.32],[863.97,290.33],[863.97,290.33],[863.97,290.34],[863.97,290.34],[863.97,290.35],[863.96,290.36],[863.96,290.36],[863.96,290.37],[863.96,290.37],[863.96,290.38],[863.94,290.41],[863.94,290.42],[863.94,290.42],[863.94,290.42],[863.94,290.43],[863.94,290.43],[863.95,290.43],[863.95,290.44],[863.96,290.44],[863.96,290.44],[863.97,290.43],[863.98,290.43],[863.98,290.43],[863.98,290.43],[863.98,290.43],[863.98,290.42],[863.99,290.41],[863.99,290.41],[863.99,290.41],[863.99,290.41],[864,290.41],[864,290.41],[864,290.41],[864.01,290.41],[864.02,290.41],[864.02,290.41],[864.03,290.4],[864.03,290.4],[864.04,290.4],[864.04,290.41],[864.06,290.41],[864.06,290.41],[864.08,290.41],[864.09,290.42],[864.1,290.42],[864.1,290.42],[864.11,290.42],[864.12,290.42],[864.12,290.42],[864.12,290.42],[864.13,290.42],[864.13,290.42],[864.14,290.41],[864.14,290.41],[864.15,290.41],[864.16,290.41],[864.16,290.41],[864.17,290.41],[864.17,290.41],[864.17,290.41],[864.17,290.41],[864.18,290.42],[864.18,290.42],[864.18,290.43],[864.18,290.44],[864.19,290.45],[864.19,290.45],[864.19,290.47],[864.2,290.47],[864.2,290.48],[864.2,290.48],[864.21,290.48],[864.21,290.49],[864.22,290.49],[864.23,290.49],[864.23,290.49],[864.24,290.49],[864.25,290.49],[864.26,290.48],[864.27,290.48],[864.28,290.47],[864.29,290.47],[864.3,290.46],[864.32,290.45],[864.34,290.45],[864.35,290.44],[864.36,290.44],[864.36,290.43],[864.37,290.43],[864.37,290.43],[864.38,290.42],[864.39,290.42],[864.39,290.41],[864.4,290.41],[864.4,290.42],[864.41,290.42],[864.42,290.42],[864.43,290.42],[864.43,290.42],[864.44,290.42],[864.44,290.42],[864.45,290.42],[864.45,290.42],[864.46,290.43],[864.47,290.43],[864.47,290.44],[864.47,290.44],[864.47,290.45],[864.47,290.45],[864.47,290.46],[864.47,290.46],[864.47,290.47],[864.47,290.48],[864.47,290.48],[864.47,290.49],[864.47,290.5],[864.47,290.5],[864.48,290.51],[864.49,290.52],[864.49,290.53],[864.5,290.53],[864.51,290.54],[864.52,290.55],[864.52,290.55],[864.52,290.55],[864.53,290.56],[864.53,290.56],[864.54,290.57],[864.54,290.57],[864.55,290.57],[864.55,290.57],[864.56,290.57],[864.56,290.58],[864.56,290.58],[864.57,290.59],[864.57,290.59],[864.58,290.59],[864.58,290.6],[864.58,290.6],[864.58,290.61],[864.58,290.61],[864.58,290.62],[864.58,290.63],[864.58,290.64],[864.58,290.64],[864.58,290.65],[864.58,290.65],[864.58,290.66],[864.57,290.67],[864.57,290.68],[864.57,290.69],[864.56,290.69],[864.56,290.7],[864.56,290.7],[864.56,290.71],[864.56,290.71],[864.57,290.72],[864.57,290.72],[864.57,290.73],[864.58,290.72],[864.58,290.72],[864.6,290.71],[864.6,290.71],[864.61,290.71],[864.62,290.71],[864.64,290.7],[864.65,290.7],[864.65,290.7],[864.66,290.7],[864.66,290.7],[864.66,290.7],[864.66,290.7],[864.67,290.71],[864.67,290.71],[864.68,290.72],[864.68,290.72],[864.69,290.72],[864.69,290.72],[864.7,290.72],[864.71,290.72],[864.72,290.71],[864.72,290.71],[864.73,290.7],[864.74,290.7],[864.75,290.69],[864.76,290.68],[864.77,290.67],[864.77,290.67],[864.78,290.66],[864.79,290.66],[864.8,290.65],[864.82,290.64],[864.83,290.63],[864.84,290.63],[864.85,290.62],[864.86,290.61],[864.87,290.6],[864.88,290.6],[864.88,290.59],[864.89,290.59],[864.89,290.59],[864.9,290.59],[864.9,290.59],[864.91,290.59],[864.91,290.59],[864.92,290.6],[864.92,290.62],[864.92,290.63],[864.93,290.63],[864.93,290.64],[864.93,290.65],[864.94,290.65],[864.95,290.66],[864.95,290.67],[864.96,290.68],[864.96,290.68],[864.98,290.7],[864.99,290.71],[864.99,290.72],[865,290.73],[865,290.73],[865.01,290.73],[865.01,290.74],[865.02,290.74],[865.02,290.74],[865.02,290.74],[865.03,290.75],[865.03,290.75],[865.03,290.76],[865.03,290.76],[865.04,290.77],[865.04,290.77],[865.04,290.78],[865.05,290.78],[865.05,290.79],[865.05,290.79],[865.06,290.8],[865.06,290.8],[865.06,290.8],[865.05,290.81],[865.05,290.81],[865.05,290.81],[865.05,290.82],[865.05,290.82],[865.05,290.83],[865.05,290.84],[865.06,290.85],[865.06,290.85],[865.06,290.86],[865.06,290.86],[865.07,290.86],[865.07,290.87],[865.08,290.87],[865.09,290.87],[865.1,290.87],[865.1,290.87],[865.11,290.88],[865.11,290.88],[865.12,290.89],[865.12,290.89],[865.13,290.9],[865.13,290.91],[865.14,290.92],[865.15,290.93],[865.15,290.94],[865.15,290.94],[865.15,290.95],[865.15,290.96],[865.15,290.97],[865.15,290.98],[865.15,290.98],[865.15,290.99],[865.15,291],[865.15,291.03],[865.15,291.04],[865.15,291.05],[865.16,291.05],[865.16,291.06],[865.16,291.07],[865.17,291.07],[865.17,291.08],[865.17,291.09],[865.18,291.1],[865.18,291.1],[865.18,291.11],[865.18,291.11],[865.18,291.12],[865.18,291.12],[865.18,291.13],[865.17,291.13],[865.18,291.14],[865.18,291.15],[865.18,291.15],[865.18,291.16],[865.18,291.16],[865.19,291.17],[865.19,291.19],[865.19,291.19],[865.19,291.2],[865.19,291.2],[865.19,291.2],[865.2,291.21],[865.2,291.21],[865.21,291.21],[865.21,291.22],[865.21,291.22],[865.21,291.23],[865.21,291.25],[865.21,291.26],[865.21,291.28],[865.21,291.29],[865.22,291.29],[865.22,291.3],[865.22,291.3],[865.22,291.3],[865.23,291.3],[865.24,291.31],[865.24,291.31],[865.24,291.31],[865.25,291.31],[865.27,291.31],[865.27,291.31],[865.27,291.31],[865.28,291.31],[865.28,291.32],[865.29,291.34],[865.29,291.34],[865.3,291.34],[865.33,291.35],[865.34,291.35],[865.35,291.35],[865.35,291.36],[865.35,291.37],[865.35,291.37],[865.36,291.38],[865.36,291.38],[865.36,291.38],[865.37,291.39],[865.37,291.39],[865.39,291.39],[865.4,291.39],[865.4,291.39],[865.41,291.39],[865.41,291.39],[865.42,291.39],[865.42,291.39],[865.43,291.39],[865.44,291.4],[865.45,291.41],[865.45,291.41],[865.46,291.42],[865.46,291.42],[865.47,291.43],[865.47,291.43],[865.47,291.44],[865.48,291.45],[865.48,291.45],[865.48,291.46],[865.48,291.46],[865.48,291.47],[865.48,291.47],[865.47,291.48],[865.47,291.49],[865.47,291.49],[865.46,291.51],[865.46,291.52],[865.46,291.53],[865.46,291.53],[865.46,291.54],[865.46,291.54],[865.46,291.54],[865.46,291.55],[865.46,291.56],[865.45,291.58],[865.45,291.59],[865.45,291.59],[865.44,291.6],[865.44,291.6],[865.44,291.61],[865.44,291.61],[865.44,291.62],[865.44,291.62],[865.44,291.63],[865.44,291.63],[865.44,291.64],[865.44,291.64],[865.44,291.65],[865.44,291.66],[865.44,291.66],[865.44,291.67],[865.44,291.67],[865.44,291.68],[865.44,291.68],[865.44,291.68],[865.45,291.69],[865.45,291.69],[865.45,291.69],[865.45,291.7],[865.45,291.71],[865.45,291.71],[865.45,291.72],[865.45,291.72],[865.45,291.73],[865.45,291.73],[865.45,291.74],[865.45,291.74],[865.45,291.75],[865.45,291.76],[865.45,291.77],[865.45,291.77],[865.45,291.78],[865.45,291.78],[865.46,291.78],[865.46,291.78],[865.46,291.79],[865.46,291.79],[865.46,291.79],[865.46,291.79],[865.45,291.8],[865.45,291.81],[865.44,291.81],[865.44,291.82],[865.44,291.82],[865.44,291.83],[865.44,291.83],[865.43,291.84],[865.43,291.84],[865.43,291.84],[865.42,291.84],[865.42,291.85],[865.42,291.85],[865.42,291.86],[865.41,291.87],[865.41,291.87],[865.41,291.88],[865.41,291.89],[865.41,291.9],[865.41,291.9],[865.41,291.91],[865.4,291.91],[865.4,291.92],[865.4,291.92],[865.4,291.93],[865.4,291.94],[865.4,291.94],[865.4,291.95],[865.4,291.95],[865.4,291.96],[865.4,291.96],[865.4,291.96],[865.39,291.97],[865.39,291.97],[865.39,291.97],[865.39,291.98],[865.39,291.98],[865.39,291.99],[865.39,292],[865.39,292],[865.39,292.01],[865.38,292.01],[865.38,292.02],[865.38,292.02],[865.38,292.02],[865.38,292.03],[865.38,292.04],[865.38,292.04],[865.38,292.05],[865.38,292.05],[865.38,292.06],[865.39,292.06],[865.39,292.07],[865.39,292.07],[865.39,292.08],[865.38,292.08],[865.38,292.09],[865.38,292.1],[865.38,292.1],[865.38,292.11],[865.38,292.11],[865.37,292.11],[865.38,292.12],[865.38,292.13],[865.38,292.14],[865.38,292.14],[865.38,292.15],[865.38,292.16],[865.38,292.16],[865.38,292.16],[865.38,292.17],[865.38,292.17],[865.38,292.18],[865.38,292.19],[865.38,292.2],[865.38,292.21],[865.38,292.23],[865.38,292.23],[865.38,292.24],[865.37,292.25],[865.37,292.25],[865.37,292.26],[865.37,292.26],[865.37,292.27],[865.37,292.28],[865.37,292.28],[865.37,292.29],[865.36,292.29],[865.36,292.3],[865.36,292.31],[865.36,292.31],[865.36,292.31],[865.36,292.32],[865.35,292.33],[865.35,292.34],[865.35,292.34],[865.35,292.34],[865.35,292.34],[865.35,292.34],[865.36,292.35],[865.36,292.35],[865.36,292.35],[865.36,292.36],[865.36,292.36],[865.36,292.37],[865.36,292.38],[865.36,292.38],[865.36,292.39],[865.36,292.39],[865.35,292.4],[865.35,292.4],[865.35,292.41],[865.35,292.41],[865.34,292.42],[865.34,292.42],[865.33,292.43],[865.33,292.43],[865.33,292.44],[865.33,292.45],[865.33,292.45],[865.32,292.46],[865.32,292.46],[865.32,292.46],[865.32,292.47],[865.32,292.47],[865.32,292.47],[865.32,292.48],[865.32,292.48],[865.32,292.5],[865.32,292.51],[865.32,292.51],[865.32,292.52],[865.33,292.52],[865.33,292.53],[865.34,292.55],[865.35,292.56],[865.37,292.58],[865.37,292.58],[865.37,292.59],[865.38,292.59],[865.38,292.61],[865.38,292.61],[865.4,292.65],[865.4,292.65],[865.4,292.66],[865.4,292.66],[865.4,292.66],[865.41,292.67],[865.41,292.67],[865.43,292.71],[865.42,292.72],[865.42,292.73],[865.42,292.73],[865.42,292.73],[865.43,292.74],[865.43,292.74],[865.43,292.74],[865.43,292.74],[865.43,292.74],[865.43,292.75],[865.44,292.75],[865.44,292.75],[865.47,292.82],[865.46,292.83],[865.46,292.83],[865.46,292.84],[865.46,292.85],[865.47,292.85],[865.47,292.85],[865.47,292.85],[865.47,292.85],[865.47,292.86],[865.47,292.86],[865.47,292.86],[865.47,292.87],[865.47,292.87],[865.47,292.87],[865.48,292.88],[865.48,292.9],[865.49,292.91],[865.49,292.91],[865.51,292.98],[865.52,293],[865.53,293.02],[865.53,293.05],[865.53,293.05],[865.54,293.11],[865.54,293.13],[865.54,293.13],[865.55,293.14],[865.55,293.14],[865.55,293.15],[865.54,293.15],[865.54,293.16],[865.55,293.16],[865.55,293.17],[865.55,293.17],[865.55,293.18],[865.55,293.18],[865.55,293.18],[865.55,293.18],[865.55,293.19],[865.55,293.19],[865.55,293.19],[865.56,293.19],[865.56,293.19],[865.56,293.2],[865.56,293.2],[865.56,293.2],[865.57,293.21],[865.57,293.21],[865.57,293.21],[865.57,293.21],[865.58,293.21],[865.58,293.22],[865.59,293.22],[865.6,293.24],[865.6,293.25],[865.6,293.25],[865.59,293.26],[865.59,293.26],[865.59,293.26],[865.59,293.27],[865.6,293.27],[865.6,293.28],[865.6,293.28],[865.6,293.29],[865.6,293.29],[865.6,293.29],[865.6,293.29],[865.59,293.3],[865.59,293.3],[865.6,293.3],[865.6,293.3],[865.6,293.31],[865.61,293.31],[865.62,293.31],[865.63,293.32],[865.63,293.33],[865.63,293.33],[865.63,293.33],[865.63,293.34],[865.63,293.34],[865.65,293.36],[865.65,293.37],[865.65,293.37],[865.65,293.37],[865.65,293.37],[865.65,293.38],[865.64,293.38],[865.64,293.38],[865.64,293.38],[865.64,293.38],[865.63,293.39],[865.63,293.39],[865.63,293.39],[865.63,293.39],[865.63,293.39],[865.63,293.4],[865.63,293.4],[865.64,293.4],[865.64,293.4],[865.65,293.41],[865.65,293.41],[865.66,293.42],[865.67,293.42],[865.67,293.42],[865.67,293.43],[865.67,293.43],[865.67,293.44],[865.67,293.44],[865.67,293.44],[865.67,293.45],[865.68,293.45],[865.68,293.45],[865.69,293.45],[865.69,293.45],[865.7,293.45],[865.7,293.45],[865.72,293.48],[865.71,293.48],[865.71,293.49],[865.71,293.49],[865.71,293.5],[865.71,293.5],[865.72,293.52],[865.72,293.53],[865.73,293.53],[865.73,293.54],[865.74,293.55],[865.75,293.56],[865.75,293.56],[865.75,293.56],[865.75,293.56],[865.76,293.56],[865.76,293.56],[865.8,293.62],[865.83,293.66],[865.85,293.69],[865.87,293.73],[865.86,293.74],[865.86,293.74],[865.86,293.75],[865.86,293.75],[865.87,293.76],[865.87,293.76],[865.87,293.76],[865.88,293.77],[865.88,293.77],[865.88,293.78],[865.88,293.78],[865.88,293.78],[865.88,293.78],[865.88,293.78],[865.88,293.78],[865.89,293.79],[865.89,293.79],[865.89,293.79],[865.89,293.79],[865.89,293.8],[865.89,293.8],[865.89,293.8],[865.89,293.8],[865.9,293.81],[865.9,293.81],[865.91,293.81],[865.91,293.81],[865.92,293.82],[865.92,293.82],[865.92,293.82],[865.93,293.83],[865.93,293.83],[865.93,293.83],[865.94,293.83],[865.94,293.83],[865.95,293.84],[865.96,293.84],[865.96,293.84],[865.96,293.84],[865.97,293.85],[865.97,293.85],[865.97,293.86],[865.98,293.86],[865.98,293.86],[865.99,293.87],[866.01,293.9],[866.02,293.91],[866.02,293.92],[866.01,293.92],[866.05,293.98],[866.05,293.98],[866.09,294.07],[866.1,294.07],[866.1,294.07],[866.1,294.07],[866.1,294.08],[866.1,294.08],[866.1,294.08],[866.1,294.09],[866.1,294.09],[866.1,294.1],[866.1,294.1],[866.1,294.13],[866.11,294.14],[866.11,294.14],[866.11,294.14],[866.11,294.15],[866.11,294.16],[866.11,294.16],[866.11,294.17],[866.12,294.17],[866.12,294.18],[866.12,294.18],[866.12,294.18],[866.12,294.19],[866.11,294.19],[866.1,294.2],[866.1,294.22],[866.09,294.22],[866.09,294.22],[866.09,294.23],[866.09,294.23],[866.08,294.23],[866.08,294.23],[866.08,294.23],[866.08,294.23],[866.07,294.23],[866.07,294.24],[866.07,294.24],[866.07,294.25],[866.07,294.25],[866.07,294.26],[866.07,294.26],[866.07,294.26],[866.07,294.27],[866.08,294.27],[866.08,294.27],[866.08,294.27],[866.09,294.28],[866.09,294.28],[866.1,294.28],[866.1,294.28],[866.1,294.28],[866.1,294.29],[866.11,294.28],[866.11,294.28],[866.12,294.28],[866.13,294.29],[866.14,294.29],[866.14,294.29],[866.14,294.29],[866.14,294.29],[866.15,294.29],[866.15,294.3],[866.15,294.3],[866.15,294.3],[866.15,294.3],[866.15,294.31],[866.15,294.32],[866.15,294.32],[866.15,294.32],[866.14,294.33],[866.15,294.33],[866.15,294.33],[866.15,294.34],[866.15,294.34],[866.15,294.34],[866.14,294.34],[866.14,294.35],[866.13,294.35],[866.13,294.36],[866.13,294.36],[866.13,294.36],[866.09,294.39],[866.09,294.39],[866.09,294.39],[866.09,294.39],[866.09,294.39],[866.09,294.39],[866.08,294.39],[866.08,294.39],[866.08,294.39],[866.08,294.39],[866.07,294.39],[866.07,294.39],[866.07,294.39],[866.07,294.39],[866.06,294.39],[866.06,294.39],[866.06,294.39],[866.06,294.39],[866.06,294.4],[866.05,294.41],[866.05,294.42],[866.05,294.42],[866.05,294.42],[866.05,294.43],[866.05,294.43],[866.05,294.43],[866.05,294.44],[866.05,294.44],[866.04,294.44],[866.04,294.45],[866.04,294.45],[866.05,294.46],[866.05,294.47],[866.05,294.47],[866.05,294.47],[866.05,294.47],[866.05,294.48],[866.05,294.48],[866.05,294.48],[866.05,294.48],[866.05,294.48],[866.04,294.48],[866.04,294.49],[866.04,294.49],[866.04,294.49],[866.04,294.49],[866.04,294.49],[866.04,294.5],[866.05,294.5],[866.05,294.5],[866.05,294.51],[866.05,294.51],[866.05,294.51],[866.05,294.51],[866.05,294.52],[866.06,294.52],[866.05,294.53],[866.05,294.53],[866.05,294.53],[866.05,294.53],[866.05,294.54],[866.05,294.54],[866.05,294.54],[866.05,294.54],[866.05,294.54],[866.05,294.54],[866.05,294.55],[866.05,294.55],[866.06,294.55],[866.06,294.56],[866.06,294.56],[866.06,294.56],[866.06,294.57],[866.06,294.57],[866.06,294.58],[866.06,294.58],[866.06,294.59],[866.06,294.59],[866.06,294.59],[866.06,294.6],[866.06,294.6],[866.06,294.6],[866.06,294.6],[866.06,294.61],[866.06,294.61],[866.06,294.62],[866.07,294.62],[866.07,294.62],[866.07,294.63],[866.07,294.63],[866.07,294.63],[866.07,294.64],[866.07,294.64],[866.07,294.65],[866.07,294.65],[866.07,294.66],[866.07,294.66],[866.07,294.66],[866.08,294.67],[866.08,294.67],[866.08,294.67],[866.08,294.67],[866.09,294.67],[866.09,294.67],[866.1,294.67],[866.14,294.78],[866.14,294.78],[866.14,294.79],[866.14,294.79],[866.14,294.79],[866.14,294.8],[866.14,294.8],[866.14,294.81],[866.14,294.81],[866.14,294.81],[866.15,294.81],[866.15,294.82],[866.15,294.82],[866.16,294.82],[866.16,294.83],[866.17,294.84],[866.17,294.84],[866.18,294.84],[866.18,294.85],[866.18,294.85],[866.18,294.86],[866.18,294.86],[866.19,294.86],[866.19,294.87],[866.19,294.87],[866.19,294.87],[866.19,294.88],[866.19,294.88],[866.19,294.89],[866.2,294.89],[866.2,294.89],[866.2,294.89],[866.19,294.9],[866.2,294.92],[866.21,294.91],[866.21,294.92],[866.22,294.92],[866.22,294.92],[866.22,294.92],[866.22,294.92],[866.22,294.93],[866.22,294.93],[866.22,294.93],[866.22,294.94],[866.23,294.96],[866.24,294.96],[866.25,294.96],[866.26,294.97],[866.26,294.97],[866.26,294.97],[866.26,294.97],[866.27,294.98],[866.27,294.98],[866.28,294.98],[866.28,294.99],[866.28,294.99],[866.28,294.99],[866.28,295],[866.28,295],[866.28,295],[866.28,295],[866.28,295.01],[866.28,295.01],[866.28,295.01],[866.28,295.01],[866.28,295.01],[866.28,295.02],[866.28,295.02],[866.29,295.02],[866.29,295.02],[866.29,295.02],[866.29,295.02],[866.29,295.03],[866.29,295.03],[866.29,295.03],[866.29,295.04],[866.29,295.04],[866.3,295.04],[866.3,295.05],[866.3,295.05],[866.31,295.06],[866.31,295.06],[866.31,295.07],[866.31,295.07],[866.31,295.08],[866.31,295.08],[866.31,295.08],[866.31,295.09],[866.31,295.09],[866.31,295.09],[866.3,295.1],[866.3,295.1],[866.3,295.11],[866.3,295.11],[866.31,295.17],[866.32,295.2],[866.31,295.2],[866.31,295.2],[866.31,295.21],[866.31,295.21],[866.31,295.21],[866.31,295.21],[866.3,295.22],[866.3,295.22],[866.3,295.22],[866.31,295.23],[866.3,295.23],[866.31,295.23],[866.31,295.23],[866.31,295.23],[866.31,295.24],[866.31,295.24],[866.31,295.24],[866.31,295.24],[866.31,295.25],[866.31,295.25],[866.31,295.25],[866.31,295.25],[866.31,295.26],[866.31,295.26],[866.31,295.27],[866.31,295.27],[866.31,295.28],[866.31,295.28],[866.31,295.28],[866.31,295.29],[866.31,295.29],[866.31,295.3],[866.31,295.31],[866.3,295.32],[866.3,295.32],[866.3,295.32],[866.3,295.33],[866.3,295.33],[866.3,295.33],[866.29,295.33],[866.29,295.33],[866.29,295.34],[866.29,295.34],[866.29,295.34],[866.29,295.34],[866.29,295.35],[866.28,295.36],[866.28,295.36],[866.28,295.37],[866.28,295.37],[866.28,295.37],[866.28,295.38],[866.28,295.38],[866.28,295.39],[866.28,295.39],[866.28,295.39],[866.28,295.39],[866.28,295.39],[866.28,295.4],[866.28,295.4],[866.28,295.4],[866.27,295.41],[866.27,295.41],[866.27,295.41],[866.27,295.41],[866.27,295.42],[866.27,295.43],[866.27,295.43],[866.27,295.43],[866.27,295.43],[866.27,295.44],[866.27,295.44],[866.26,295.44],[866.26,295.44],[866.26,295.44],[866.26,295.44],[866.25,295.45],[866.25,295.45],[866.25,295.47],[866.25,295.47],[866.25,295.47],[866.26,295.48],[866.26,295.48],[866.26,295.48],[866.26,295.48],[866.26,295.48],[866.26,295.48],[866.26,295.49],[866.26,295.49],[866.25,295.5],[866.25,295.5],[866.25,295.5],[866.24,295.51],[866.24,295.51],[866.23,295.51],[866.23,295.51],[866.23,295.51],[866.22,295.52],[866.22,295.52],[866.22,295.52],[866.21,295.52],[866.21,295.52],[866.21,295.52],[866.21,295.53],[866.2,295.53],[866.2,295.53],[866.2,295.53],[866.19,295.53],[866.19,295.53],[866.19,295.53],[866.19,295.53],[866.19,295.53],[866.18,295.53],[866.18,295.53],[866.18,295.53],[866.17,295.53],[866.17,295.54],[866.17,295.54],[866.17,295.54],[866.18,295.54],[866.18,295.54],[866.18,295.55],[866.18,295.55],[866.18,295.55],[866.18,295.55],[866.17,295.56],[866.17,295.56],[866.17,295.57],[866.17,295.57],[866.17,295.58],[866.16,295.58],[866.16,295.58],[866.16,295.58],[866.16,295.58],[866.16,295.58],[866.15,295.59],[866.15,295.59],[866.15,295.59],[866.15,295.59],[866.15,295.6],[866.14,295.6],[866.14,295.6],[866.14,295.61],[866.14,295.61],[866.14,295.62],[866.14,295.62],[866.14,295.62],[866.14,295.62],[866.14,295.63],[866.14,295.63],[866.14,295.63],[866.14,295.63],[866.14,295.64],[866.14,295.64],[866.14,295.64],[866.13,295.65],[866.13,295.65],[866.13,295.65],[866.13,295.65],[866.13,295.65],[866.13,295.65],[866.13,295.65],[866.13,295.66],[866.13,295.66],[866.13,295.66],[866.12,295.66],[866.12,295.67],[866.12,295.67],[866.12,295.67],[866.12,295.67],[866.12,295.68],[866.12,295.68],[866.12,295.68],[866.12,295.68],[866.12,295.68],[866.12,295.69],[866.12,295.69],[866.12,295.69],[866.12,295.7],[866.12,295.7],[866.12,295.7],[866.12,295.7],[866.12,295.71],[866.12,295.71],[866.12,295.71],[866.12,295.72],[866.12,295.72],[866.12,295.72],[866.12,295.72],[866.12,295.73],[866.13,295.73],[866.13,295.73],[866.13,295.73],[866.13,295.73],[866.13,295.74],[866.13,295.74],[866.13,295.74],[866.12,295.74],[866.12,295.75],[866.12,295.75],[866.12,295.75],[866.12,295.75],[866.12,295.76],[866.13,295.76],[866.13,295.76],[866.13,295.76],[866.13,295.77],[866.13,295.77],[866.13,295.77],[866.13,295.77],[866.13,295.78],[866.13,295.78],[866.13,295.78],[866.13,295.78],[866.13,295.78],[866.13,295.79],[866.13,295.79],[866.13,295.79],[866.13,295.79],[866.13,295.8],[866.13,295.8],[866.14,295.81],[866.14,295.81],[866.14,295.82],[866.14,295.82],[866.14,295.82],[866.14,295.82],[866.14,295.82],[866.14,295.83],[866.13,295.83],[866.13,295.83],[866.13,295.83],[866.13,295.83],[866.13,295.84],[866.13,295.84],[866.13,295.84],[866.13,295.85],[866.13,295.85],[866.13,295.86],[866.13,295.86],[866.12,295.87],[866.12,295.87],[866.12,295.88],[866.11,295.88],[866.11,295.89],[866.11,295.89],[866.1,295.89],[866.1,295.9],[866.1,295.9],[866.1,295.9],[866.1,295.9],[866.1,295.9],[866.1,295.91],[866.1,295.91],[866.1,295.91],[866.09,295.91],[866.09,295.91],[866.09,295.92],[866.09,295.92],[866.09,295.92],[866.09,295.92],[866.09,295.92],[866.09,295.93],[866.09,295.93],[866.08,295.93],[866.08,295.93],[866.08,295.93],[866.08,295.94],[866.08,295.94],[866.08,295.94],[866.08,295.94],[866.08,295.94],[866.08,295.94],[866.08,295.94],[866.08,295.95],[866.08,295.95],[866.09,295.95],[866.09,295.95],[866.09,295.95],[866.09,295.96],[866.09,295.96],[866.09,295.96],[866.09,295.96],[866.09,295.97],[866.08,295.96],[866.08,295.96],[866.08,295.96],[866.08,295.96],[866.08,295.96],[866.07,295.96],[866.07,295.96],[866.07,295.96],[866.07,295.97],[866.07,295.97],[866.07,295.97],[866.08,295.98],[866.08,295.99],[866.08,295.99],[866.08,295.99],[866.08,295.99],[866.09,295.99],[866.09,295.99],[866.09,296],[866.09,296],[866.09,296.01],[866.08,296.01],[866.08,296.01],[866.08,296.01],[866.08,296.01],[866.07,296.01],[866.07,296.01],[866.07,296.02],[866.06,296.02],[866.06,296.02],[866.06,296.02],[866.06,296.02],[866.06,296.02],[866.06,296.03],[866.06,296.03],[866.06,296.03],[866.06,296.04],[866.05,296.04],[866.05,296.04],[866.05,296.04],[866.05,296.04],[866.05,296.04],[866.05,296.05],[866.05,296.05],[866.05,296.06],[866.05,296.06],[866.05,296.06],[866.05,296.07],[866.05,296.07],[866.05,296.07],[866.05,296.07],[866.05,296.08],[866.05,296.08],[866.05,296.08],[866.05,296.08],[866.05,296.08],[866.05,296.08],[866.05,296.09],[866.05,296.09],[866.05,296.09],[866.04,296.09],[866.04,296.1],[866.04,296.1],[866.04,296.1],[866.04,296.1],[866.04,296.11],[866.04,296.11],[866.05,296.11],[866.05,296.11],[866.05,296.11],[866.05,296.12],[866.05,296.12],[866.05,296.12],[866.05,296.12],[866.04,296.12],[866.04,296.12],[866.05,296.13],[866.05,296.13],[866.05,296.13],[866.05,296.13],[866.05,296.13],[866.05,296.13],[866.05,296.13],[866.05,296.14],[866.05,296.14],[866.05,296.15],[866.05,296.15],[866.05,296.15],[866.04,296.15],[866.04,296.16],[866.04,296.16],[866.04,296.16],[866.04,296.16],[866.04,296.17],[866.04,296.17],[866.04,296.18],[866.04,296.18],[866.04,296.18],[866.04,296.18],[866.04,296.19],[866.04,296.19],[866.04,296.19],[866.04,296.19],[866.04,296.19],[866.04,296.19],[866.04,296.2],[866.04,296.2],[866.04,296.2],[866.03,296.2],[866.03,296.2],[866.03,296.2],[866.04,296.21],[866.04,296.21],[866.04,296.21],[866.03,296.21],[866.03,296.2],[866.03,296.2],[866.03,296.2],[866.03,296.2],[866.02,296.21],[866.02,296.21],[866.02,296.21],[866.02,296.21],[866.02,296.21],[866.02,296.22],[866.02,296.22],[866.02,296.22],[866.02,296.22],[866.02,296.22],[866.02,296.22],[866.01,296.22],[866.01,296.22],[866.01,296.23],[866.01,296.23],[866.01,296.23],[866.01,296.23],[866.02,296.23],[866.02,296.23],[866.02,296.24],[866.02,296.24],[866.02,296.24],[866.01,296.24],[866.01,296.24],[866.01,296.24],[866.01,296.24],[866.01,296.24],[866,296.24],[866,296.24],[866,296.24],[866,296.24],[866,296.25],[866,296.25],[866,296.25],[866,296.25],[866,296.25],[866,296.25],[866,296.26],[866,296.26],[866,296.26],[866,296.26],[866,296.26],[866,296.26],[866,296.26],[865.99,296.27],[865.99,296.27],[865.99,296.27],[865.99,296.27],[865.99,296.27],[865.99,296.27],[865.99,296.27],[865.98,296.27],[865.98,296.27],[865.98,296.27],[865.98,296.27],[865.98,296.27],[865.98,296.27],[865.98,296.28],[865.97,296.28],[865.97,296.28],[865.97,296.28],[865.96,296.28],[865.96,296.28],[865.96,296.28],[865.96,296.28],[865.96,296.29],[865.96,296.29],[865.96,296.29],[865.96,296.29],[865.96,296.29],[865.96,296.29],[865.96,296.3],[865.97,296.3],[865.97,296.3],[865.97,296.3],[865.97,296.3],[865.97,296.31],[865.97,296.31],[865.97,296.31],[865.97,296.31],[865.97,296.31],[865.97,296.31],[865.97,296.31],[865.97,296.32],[865.97,296.32],[865.97,296.32],[865.97,296.32],[865.97,296.32],[865.96,296.31],[865.96,296.31],[865.96,296.31],[865.96,296.31],[865.96,296.31],[865.96,296.31],[865.96,296.31],[865.96,296.31],[865.95,296.31],[865.95,296.31],[865.95,296.3],[865.95,296.3],[865.94,296.3],[865.94,296.3],[865.94,296.3],[865.94,296.29],[865.94,296.29],[865.94,296.29],[865.94,296.28],[865.94,296.28],[865.94,296.28],[865.94,296.28],[865.94,296.28],[865.94,296.28],[865.94,296.27],[865.94,296.27],[865.94,296.27],[865.94,296.27],[865.94,296.27],[865.94,296.27],[865.94,296.28],[865.93,296.29],[865.93,296.29],[865.93,296.29],[865.93,296.29],[865.93,296.3],[865.93,296.3],[865.93,296.3],[865.92,296.3],[865.92,296.3],[865.92,296.3],[865.92,296.3],[865.91,296.3],[865.91,296.31],[865.91,296.31],[865.91,296.31],[865.9,296.31],[865.9,296.31],[865.9,296.31],[865.9,296.31],[865.89,296.31],[865.89,296.31],[865.89,296.31],[865.88,296.32],[865.88,296.32],[865.88,296.32],[865.87,296.33],[865.87,296.33],[865.87,296.33],[865.87,296.33],[865.87,296.33],[865.87,296.33],[865.87,296.33],[865.86,296.34],[865.86,296.34],[865.86,296.34],[865.86,296.34],[865.86,296.35],[865.86,296.35],[865.86,296.35],[865.86,296.35],[865.85,296.35],[865.85,296.35],[865.84,296.35],[865.84,296.36],[865.83,296.36],[865.83,296.36],[865.83,296.36],[865.83,296.36],[865.83,296.36],[865.83,296.36],[865.82,296.36],[865.82,296.37],[865.82,296.37],[865.82,296.37],[865.82,296.37],[865.82,296.37],[865.82,296.37],[865.82,296.37],[865.83,296.37],[865.83,296.37],[865.83,296.37],[865.84,296.38],[865.84,296.38],[865.84,296.38],[865.85,296.38],[865.85,296.38],[865.85,296.38],[865.85,296.39],[865.85,296.4],[865.85,296.4],[865.85,296.4],[865.85,296.4],[865.85,296.4],[865.85,296.4],[865.85,296.4],[865.85,296.41],[865.85,296.41],[865.85,296.41],[865.85,296.41],[865.85,296.42],[865.85,296.42],[865.85,296.42],[865.85,296.42],[865.84,296.42],[865.84,296.43],[865.84,296.43],[865.84,296.43],[865.84,296.43],[865.84,296.43],[865.84,296.43],[865.84,296.43],[865.84,296.44],[865.85,296.44],[865.85,296.44],[865.85,296.44],[865.86,296.44],[865.86,296.45],[865.87,296.46],[865.87,296.46],[865.87,296.46],[865.87,296.46],[865.87,296.46],[865.87,296.46],[865.88,296.46],[865.88,296.46],[865.88,296.46],[865.88,296.46],[865.88,296.47],[865.88,296.47],[865.88,296.47],[865.88,296.47],[865.88,296.47],[865.88,296.47],[865.88,296.48],[865.88,296.48],[865.88,296.48],[865.88,296.48],[865.88,296.48],[865.88,296.48],[865.88,296.48],[865.88,296.49],[865.88,296.49],[865.88,296.49],[865.88,296.49],[865.88,296.49],[865.88,296.49],[865.88,296.49],[865.88,296.49],[865.88,296.5],[865.89,296.5],[865.89,296.51],[865.89,296.51],[865.89,296.51],[865.89,296.51],[865.89,296.51],[865.89,296.51],[865.89,296.51],[865.9,296.51],[865.9,296.51],[865.9,296.51],[865.9,296.51],[865.9,296.51],[865.9,296.51],[865.9,296.52],[865.9,296.52],[865.9,296.52],[865.9,296.52],[865.9,296.52],[865.89,296.52],[865.89,296.53],[865.89,296.53],[865.88,296.53],[865.87,296.54],[865.87,296.54],[865.86,296.55],[865.87,296.56],[865.87,296.56],[865.87,296.56],[865.88,296.56],[865.88,296.56],[865.88,296.57],[865.88,296.57],[865.88,296.57],[865.88,296.57],[865.88,296.57],[865.87,296.57],[865.87,296.58],[865.87,296.58],[865.87,296.58],[865.87,296.58],[865.87,296.58],[865.87,296.58],[865.87,296.58],[865.87,296.58],[865.87,296.58],[865.87,296.59],[865.87,296.59],[865.87,296.59],[865.87,296.59],[865.87,296.59],[865.87,296.59],[865.87,296.6],[865.87,296.6],[865.86,296.6],[865.86,296.6],[865.86,296.6],[865.86,296.6],[865.86,296.6],[865.86,296.6],[865.85,296.61],[865.85,296.61],[865.85,296.61],[865.85,296.61],[865.85,296.61],[865.84,296.61],[865.85,296.61],[865.85,296.61],[865.85,296.61],[865.85,296.62],[865.85,296.62],[865.85,296.62],[865.85,296.63],[865.85,296.63],[865.85,296.63],[865.85,296.64],[865.85,296.64],[865.85,296.64],[865.85,296.64],[865.85,296.64],[865.84,296.64],[865.84,296.65],[865.84,296.65],[865.84,296.65],[865.84,296.65],[865.84,296.65],[865.85,296.65],[865.85,296.65],[865.85,296.65],[865.86,296.65],[865.86,296.65],[865.86,296.65],[865.87,296.65],[865.87,296.64],[865.88,296.64],[865.88,296.64],[865.89,296.64],[865.89,296.64],[865.9,296.65],[865.9,296.65],[865.9,296.65],[865.9,296.65],[865.9,296.65],[865.9,296.65],[865.89,296.65],[865.89,296.65],[865.89,296.65],[865.89,296.65],[865.89,296.65],[865.89,296.66],[865.89,296.66],[865.89,296.66],[865.88,296.66],[865.88,296.66],[865.88,296.66],[865.88,296.66],[865.87,296.67],[865.87,296.67],[865.87,296.67],[865.87,296.67],[865.87,296.67],[865.87,296.67],[865.87,296.67],[865.86,296.68],[865.85,296.68],[865.85,296.68],[865.85,296.68],[865.85,296.69],[865.84,296.69],[865.84,296.69],[865.84,296.69],[865.84,296.69],[865.84,296.69],[865.84,296.69],[865.84,296.69],[865.84,296.69],[865.84,296.7],[865.84,296.7],[865.84,296.7],[865.84,296.71],[865.84,296.71],[865.83,296.72],[865.83,296.72],[865.83,296.72],[865.83,296.72],[865.83,296.72],[865.83,296.73],[865.84,296.73],[865.84,296.73],[865.84,296.74],[865.84,296.74],[865.83,296.75],[865.83,296.75],[865.83,296.76],[865.83,296.76],[865.83,296.76],[865.83,296.76],[865.83,296.76],[865.83,296.76],[865.83,296.74],[865.83,296.74],[865.83,296.73],[865.83,296.73],[865.83,296.73],[865.83,296.73],[865.82,296.73],[865.82,296.73],[865.82,296.73],[865.82,296.72],[865.82,296.72],[865.82,296.72],[865.82,296.72],[865.81,296.72],[865.81,296.72],[865.82,296.72],[865.82,296.73],[865.82,296.73],[865.82,296.73],[865.82,296.73],[865.83,296.73],[865.83,296.74],[865.83,296.74],[865.82,296.74],[865.82,296.75],[865.82,296.75],[865.82,296.75],[865.82,296.75],[865.82,296.75],[865.82,296.75],[865.82,296.76],[865.82,296.76],[865.82,296.77],[865.82,296.77],[865.82,296.78],[865.82,296.78],[865.82,296.78],[865.82,296.78],[865.82,296.78],[865.82,296.79],[865.81,296.79],[865.81,296.79],[865.81,296.79],[865.81,296.79],[865.8,296.79],[865.8,296.79],[865.8,296.79],[865.8,296.79],[865.8,296.79],[865.8,296.79],[865.8,296.8],[865.8,296.8],[865.8,296.8],[865.8,296.8],[865.8,296.8],[865.8,296.81],[865.8,296.81],[865.81,296.81],[865.81,296.82],[865.81,296.82],[865.81,296.82],[865.81,296.83],[865.81,296.83],[865.81,296.83],[865.81,296.84],[865.81,296.84],[865.81,296.84],[865.81,296.85],[865.81,296.85],[865.81,296.86],[865.81,296.86],[865.81,296.87],[865.81,296.87],[865.81,296.87],[865.81,296.88],[865.81,296.88],[865.81,296.88],[865.81,296.89],[865.81,296.89],[865.81,296.89],[865.81,296.89],[865.81,296.89],[865.81,296.89],[865.81,296.89],[865.81,296.9],[865.81,296.9],[865.82,296.9],[865.82,296.9],[865.82,296.9],[865.82,296.91],[865.82,296.91],[865.83,296.91],[865.83,296.91],[865.83,296.92],[865.83,296.92],[865.82,296.93],[865.82,296.92],[865.82,296.92],[865.82,296.92],[865.83,296.92],[865.83,296.92],[865.82,296.92],[865.82,296.91],[865.82,296.91],[865.82,296.91],[865.82,296.91],[865.81,296.9],[865.81,296.9],[865.8,296.9],[865.8,296.89],[865.8,296.89],[865.8,296.89],[865.8,296.89],[865.8,296.89],[865.8,296.89],[865.8,296.89],[865.8,296.89],[865.8,296.9],[865.8,296.9],[865.8,296.9],[865.81,296.9],[865.81,296.9],[865.81,296.91],[865.81,296.91],[865.81,296.91],[865.81,296.92],[865.81,296.92],[865.82,296.92],[865.81,296.93],[865.81,296.92],[865.81,296.92],[865.81,296.91],[865.81,296.91],[865.81,296.9],[865.8,296.9],[865.8,296.9],[865.8,296.89],[865.79,296.89],[865.79,296.89],[865.79,296.89],[865.79,296.89],[865.79,296.89],[865.79,296.89],[865.79,296.89],[865.8,296.9],[865.8,296.9],[865.8,296.9],[865.8,296.91],[865.8,296.91],[865.8,296.91],[865.8,296.91],[865.8,296.92],[865.8,296.93],[865.8,296.93],[865.8,296.93],[865.8,296.94],[865.8,296.94],[865.8,296.94],[865.79,296.94],[865.8,296.94],[865.8,296.94],[865.8,296.93],[865.8,296.93],[865.8,296.93],[865.8,296.93],[865.79,296.92],[865.79,296.92],[865.79,296.92],[865.79,296.92],[865.8,296.93],[865.8,296.93],[865.8,296.93],[865.79,296.94],[865.79,296.94],[865.79,296.94],[865.78,296.95],[865.78,296.95],[865.78,296.96],[865.78,296.96],[865.78,296.97],[865.78,296.97],[865.78,296.98],[865.78,296.98],[865.78,296.99],[865.77,296.99],[865.77,297],[865.77,297],[865.77,297.01],[865.77,297.01],[865.77,297.01],[865.77,297.02],[865.77,297.02],[865.77,297.02],[865.77,297.02],[865.77,297.03],[865.77,297.03],[865.77,297.03],[865.77,297.03],[865.77,297.04],[865.77,297.04],[865.77,297.05],[865.77,297.06],[865.77,297.06],[865.77,297.06],[865.77,297.07],[865.77,297.07],[865.77,297.07],[865.77,297.07],[865.77,297.08],[865.77,297.08],[865.78,297.09],[865.78,297.09],[865.78,297.09],[865.78,297.1],[865.78,297.1],[865.78,297.1],[865.78,297.11],[865.78,297.11],[865.78,297.12],[865.78,297.12],[865.78,297.12],[865.78,297.12],[865.79,297.13],[865.79,297.13],[865.79,297.14],[865.79,297.14],[865.78,297.14],[865.78,297.14],[865.78,297.14],[865.78,297.15],[865.78,297.15],[865.78,297.15],[865.78,297.15],[865.78,297.15],[865.78,297.16],[865.78,297.16],[865.78,297.16],[865.78,297.16],[865.78,297.16],[865.78,297.16],[865.78,297.16],[865.78,297.16],[865.78,297.17],[865.78,297.17],[865.78,297.17],[865.78,297.17],[865.78,297.17],[865.78,297.18],[865.78,297.18],[865.78,297.18],[865.78,297.18],[865.78,297.19],[865.78,297.19],[865.78,297.19],[865.78,297.19],[865.78,297.2],[865.78,297.2],[865.78,297.21],[865.78,297.21],[865.79,297.21],[865.79,297.22],[865.79,297.22],[865.79,297.22],[865.8,297.23],[865.8,297.24],[865.8,297.24],[865.8,297.25],[865.8,297.25],[865.81,297.25],[865.81,297.26],[865.82,297.26],[865.82,297.26],[865.82,297.26],[865.82,297.27],[865.82,297.27],[865.82,297.28],[865.82,297.28],[865.82,297.28],[865.83,297.29],[865.83,297.3],[865.83,297.3],[865.83,297.31],[865.84,297.31],[865.84,297.32],[865.84,297.32],[865.84,297.32],[865.84,297.32],[865.84,297.32],[865.84,297.33],[865.84,297.33],[865.84,297.34],[865.85,297.34],[865.85,297.35],[865.85,297.35],[865.86,297.36],[865.86,297.37],[865.86,297.37],[865.86,297.37],[865.86,297.38],[865.86,297.38],[865.86,297.38],[865.86,297.39],[865.86,297.39],[865.86,297.39],[865.86,297.4],[865.87,297.4],[865.87,297.4],[865.88,297.41],[865.88,297.41],[865.89,297.42],[865.89,297.42],[865.89,297.42],[865.89,297.42],[865.89,297.43],[865.89,297.43],[865.88,297.43],[865.88,297.44],[865.88,297.44],[865.88,297.44],[865.88,297.45],[865.88,297.45],[865.88,297.45],[865.88,297.45],[865.89,297.45],[865.89,297.46],[865.89,297.46],[865.89,297.46],[865.89,297.46],[865.89,297.46],[865.9,297.47],[865.9,297.47],[865.9,297.47],[865.9,297.48],[865.9,297.49],[865.9,297.49],[865.9,297.49],[865.9,297.49],[865.9,297.5],[865.91,297.5],[865.91,297.5],[865.91,297.51],[865.91,297.51],[865.91,297.51],[865.91,297.51],[865.91,297.52],[865.91,297.52],[865.91,297.52],[865.91,297.52],[865.91,297.53],[865.92,297.54],[865.92,297.54],[865.92,297.55],[865.92,297.55],[865.92,297.55],[865.92,297.56],[865.92,297.56],[865.92,297.56],[865.92,297.56],[865.92,297.56],[865.93,297.56],[865.93,297.56],[865.93,297.57],[865.93,297.57],[865.93,297.57],[865.93,297.57],[865.93,297.57],[865.92,297.57],[865.92,297.57],[865.92,297.58],[865.92,297.58],[865.92,297.58],[865.92,297.59],[865.92,297.59],[865.91,297.59],[865.91,297.59],[865.91,297.6],[865.91,297.6],[865.91,297.61],[865.91,297.61],[865.91,297.61],[865.91,297.61],[865.91,297.62],[865.91,297.62],[865.91,297.62],[865.91,297.62],[865.91,297.63],[865.92,297.63],[865.92,297.63],[865.92,297.63],[865.92,297.64],[865.92,297.64],[865.92,297.64],[865.92,297.65],[865.92,297.65],[865.92,297.65],[865.92,297.66],[865.92,297.66],[865.92,297.66],[865.92,297.67],[865.92,297.67],[865.92,297.68],[865.92,297.69],[865.92,297.69],[865.92,297.69],[865.92,297.69],[865.92,297.7],[865.92,297.7],[865.92,297.7],[865.92,297.71],[865.92,297.71],[865.91,297.71],[865.91,297.72],[865.91,297.72],[865.9,297.72],[865.9,297.72],[865.9,297.73],[865.9,297.73],[865.9,297.73],[865.9,297.73],[865.9,297.73],[865.9,297.73],[865.9,297.73],[865.9,297.73],[865.9,297.73],[865.91,297.74],[865.91,297.74],[865.91,297.74],[865.91,297.74],[865.91,297.74],[865.91,297.74],[865.91,297.74],[865.92,297.74],[865.92,297.75],[865.92,297.75],[865.92,297.75],[865.93,297.75],[865.93,297.75],[865.94,297.76],[865.94,297.76],[865.94,297.76],[865.95,297.76],[865.95,297.76],[865.95,297.76],[865.95,297.76],[865.96,297.77],[865.96,297.77],[865.97,297.77],[865.97,297.77],[866,297.79],[866.01,297.78],[866.01,297.78],[866.01,297.78],[866.01,297.79],[866.03,297.8],[866.03,297.81],[866.03,297.81],[866.03,297.81],[866.03,297.82],[866.03,297.82],[866.04,297.82],[866.04,297.82],[866.04,297.82],[866.05,297.83],[866.05,297.83],[866.05,297.83],[866.05,297.83],[866.05,297.83],[866.05,297.83],[866.05,297.83],[866.06,297.83],[866.06,297.84],[866.08,297.87],[866.08,297.87],[866.08,297.88],[866.09,297.88],[866.09,297.88],[866.09,297.89],[866.09,297.89],[866.09,297.89],[866.09,297.89],[866.1,297.89],[866.1,297.89],[866.1,297.89],[866.1,297.89],[866.1,297.9],[866.1,297.9],[866.1,297.9],[866.1,297.91],[866.1,297.91],[866.1,297.91],[866.11,297.91],[866.11,297.92],[866.11,297.92],[866.11,297.92],[866.11,297.92],[866.11,297.91],[866.12,297.92],[866.12,297.92],[866.12,297.92],[866.11,297.93],[866.12,297.93],[866.12,297.93],[866.12,297.93],[866.12,297.93],[866.12,297.94],[866.12,297.94],[866.12,297.94],[866.12,297.94],[866.12,297.94],[866.12,297.95],[866.12,297.95],[866.12,297.95],[866.13,297.95],[866.13,297.95],[866.13,297.95],[866.13,297.96],[866.13,297.96],[866.13,297.96],[866.13,297.96],[866.13,297.97],[866.13,297.97],[866.13,297.97],[866.13,297.97],[866.13,297.97],[866.13,297.97],[866.13,297.98],[866.13,297.98],[866.13,297.98],[866.13,297.98],[866.14,297.98],[866.14,297.99],[866.14,297.99],[866.14,297.99],[866.14,297.99],[866.14,297.99],[866.14,298],[866.14,298],[866.14,298],[866.14,298.01],[866.13,298.01],[866.13,298.01],[866.13,298.01],[866.13,298.01],[866.13,298.01],[866.13,298.02],[866.13,298.03],[866.13,298.03],[866.12,298.04],[866.12,298.04],[866.13,298.04],[866.13,298.05],[866.13,298.05],[866.13,298.05],[866.13,298.05],[866.13,298.05],[866.13,298.05],[866.13,298.05],[866.14,298.04],[866.14,298.05],[866.14,298.05],[866.14,298.05],[866.14,298.05],[866.14,298.05],[866.14,298.05],[866.15,298.05],[866.15,298.05],[866.15,298.05],[866.15,298.05],[866.16,298.05],[866.16,298.05],[866.16,298.05],[866.16,298.05],[866.17,298.05],[866.18,298.05],[866.18,298.05],[866.18,298.05],[866.18,298.05],[866.18,298.05],[866.18,298.05],[866.18,298.05],[866.24,298.08],[866.24,298.08],[866.25,298.09],[866.25,298.09],[866.25,298.09],[866.25,298.1],[866.26,298.1],[866.26,298.1],[866.26,298.1],[866.26,298.1],[866.27,298.11],[866.27,298.11],[866.27,298.11],[866.27,298.11],[866.28,298.13],[866.28,298.13],[866.28,298.13],[866.28,298.13],[866.28,298.14],[866.28,298.14],[866.28,298.14],[866.28,298.14],[866.28,298.14],[866.28,298.15],[866.28,298.15],[866.28,298.15],[866.29,298.15],[866.29,298.16],[866.29,298.16],[866.29,298.16],[866.29,298.16],[866.3,298.16],[866.3,298.16],[866.3,298.16],[866.3,298.16],[866.3,298.16],[866.3,298.16],[866.31,298.16],[866.31,298.17],[866.32,298.17],[866.32,298.17],[866.32,298.17],[866.32,298.17],[866.33,298.17],[866.33,298.17],[866.33,298.17],[866.34,298.17],[866.34,298.17],[866.34,298.17],[866.35,298.17],[866.35,298.17],[866.35,298.17],[866.36,298.17],[866.37,298.17],[866.38,298.17],[866.38,298.17],[866.38,298.17],[866.38,298.17],[866.38,298.17],[866.38,298.18],[866.38,298.18],[866.39,298.18],[866.39,298.19],[866.39,298.19],[866.39,298.19],[866.4,298.19],[866.4,298.2],[866.4,298.2],[866.41,298.2],[866.45,298.25],[866.44,298.26],[866.44,298.26],[866.44,298.26],[866.45,298.26],[866.45,298.27],[866.45,298.27],[866.45,298.27],[866.46,298.27],[866.46,298.27],[866.47,298.27],[866.47,298.27],[866.48,298.26],[866.48,298.26],[866.48,298.26],[866.49,298.25],[866.5,298.25],[866.5,298.25],[866.5,298.25],[866.51,298.25],[866.51,298.25],[866.52,298.25],[866.52,298.25],[866.52,298.25],[866.53,298.25],[866.54,298.25],[866.54,298.25],[866.54,298.25],[866.55,298.25],[866.55,298.25],[866.55,298.25],[866.55,298.25],[866.56,298.25],[866.56,298.25],[866.56,298.25],[866.56,298.25],[866.57,298.25],[866.58,298.24],[866.58,298.24],[866.58,298.24],[866.59,298.23],[866.59,298.23],[866.59,298.23],[866.59,298.23],[866.6,298.23],[866.6,298.23],[866.6,298.23],[866.61,298.23],[866.61,298.24],[866.61,298.24],[866.61,298.24],[866.61,298.24],[866.61,298.25],[866.61,298.25],[866.61,298.26],[866.61,298.26],[866.61,298.26],[866.61,298.26],[866.61,298.26],[866.61,298.27],[866.61,298.27],[866.62,298.27],[866.62,298.27],[866.62,298.28],[866.63,298.28],[866.63,298.28],[866.63,298.28],[866.63,298.28],[866.64,298.29],[866.64,298.29],[866.64,298.29],[866.64,298.29],[866.64,298.29],[866.64,298.3],[866.64,298.3],[866.64,298.3],[866.64,298.31],[866.68,298.34],[866.68,298.34],[866.69,298.35],[866.69,298.35],[866.7,298.35],[866.7,298.35],[866.7,298.35],[866.7,298.36],[866.7,298.36],[866.71,298.36],[866.71,298.37],[866.71,298.37],[866.72,298.37],[866.72,298.37],[866.72,298.37],[866.72,298.37],[866.72,298.37],[866.72,298.37],[866.72,298.38],[866.72,298.38],[866.72,298.38],[866.72,298.38],[866.72,298.38],[866.72,298.38],[866.72,298.39],[866.72,298.39],[866.72,298.39],[866.72,298.4],[866.72,298.4],[866.73,298.4],[866.73,298.4],[866.73,298.4],[866.73,298.41],[866.73,298.41],[866.74,298.41],[866.74,298.41],[866.74,298.41],[866.74,298.41],[866.74,298.42],[866.75,298.43],[866.76,298.44],[866.76,298.44],[866.76,298.44],[866.76,298.44],[866.76,298.44],[866.76,298.45],[866.76,298.46],[866.76,298.46],[866.75,298.46],[866.77,298.48],[866.8,298.54],[866.79,298.54],[866.79,298.54],[866.79,298.55],[866.79,298.55],[866.8,298.55],[866.8,298.56],[866.8,298.56],[866.8,298.56],[866.8,298.57],[866.8,298.57],[866.81,298.57],[866.81,298.58],[866.81,298.58],[866.81,298.58],[866.81,298.58],[866.81,298.59],[866.81,298.59],[866.81,298.59],[866.81,298.59],[866.81,298.6],[866.81,298.6],[866.81,298.61],[866.81,298.61],[866.81,298.61],[866.81,298.61],[866.81,298.62],[866.81,298.62],[866.81,298.62],[866.81,298.62],[866.81,298.63],[866.81,298.63],[866.81,298.63],[866.81,298.63],[866.81,298.63],[866.81,298.64],[866.81,298.64],[866.81,298.64],[866.81,298.65],[866.81,298.65],[866.81,298.65],[866.81,298.66],[866.81,298.66],[866.8,298.66],[866.8,298.67],[866.79,298.67],[866.79,298.68],[866.79,298.68],[866.79,298.69],[866.79,298.69],[866.79,298.69],[866.8,298.7],[866.8,298.7],[866.8,298.7],[866.79,298.7],[866.79,298.7],[866.79,298.71],[866.79,298.71],[866.8,298.71],[866.79,298.71],[866.79,298.71],[866.79,298.72],[866.78,298.72],[866.78,298.72],[866.77,298.73],[866.77,298.73],[866.77,298.73],[866.77,298.73],[866.76,298.73],[866.76,298.73],[866.76,298.73],[866.76,298.73],[866.76,298.74],[866.76,298.74],[866.76,298.74],[866.76,298.74],[866.76,298.74],[866.76,298.75],[866.76,298.75],[866.76,298.76],[866.76,298.76],[866.76,298.76],[866.76,298.76],[866.76,298.78],[866.76,298.78],[866.76,298.79],[866.76,298.79],[866.76,298.79],[866.76,298.79],[866.76,298.8],[866.76,298.8],[866.76,298.8],[866.76,298.8],[866.76,298.8],[866.76,298.81],[866.76,298.81],[866.76,298.81],[866.75,298.82],[866.75,298.82],[866.75,298.83],[866.75,298.83],[866.75,298.84],[866.74,298.84],[866.74,298.84],[866.74,298.85],[866.73,298.86],[866.73,298.86],[866.73,298.86],[866.73,298.86],[866.72,298.87],[866.72,298.87],[866.72,298.87],[866.71,298.88],[866.71,298.88],[866.71,298.89],[866.7,298.89],[866.7,298.9],[866.7,298.9],[866.7,298.9],[866.7,298.9],[866.7,298.91],[866.7,298.91],[866.7,298.91],[866.69,298.91],[866.69,298.92],[866.69,298.92],[866.68,298.93],[866.68,298.93],[866.67,298.94],[866.67,298.94],[866.66,298.94],[866.66,298.94],[866.66,298.94],[866.66,298.94],[866.66,298.95],[866.65,298.95],[866.65,298.95],[866.65,298.95],[866.65,298.95],[866.65,298.95],[866.65,298.95],[866.64,298.95],[866.64,298.95],[866.64,298.94],[866.64,298.94],[866.63,298.94],[866.63,298.95],[866.62,298.95],[866.62,298.95],[866.62,298.95],[866.61,298.95],[866.61,298.95],[866.6,298.94],[866.6,298.94],[866.6,298.94],[866.6,298.94],[866.59,298.94],[866.59,298.94],[866.59,298.94],[866.59,298.93],[866.58,298.94],[866.58,298.94],[866.58,298.94],[866.58,298.94],[866.58,298.95],[866.58,298.95],[866.57,298.95],[866.57,298.95],[866.57,298.97],[866.57,298.98],[866.57,298.98],[866.57,298.98],[866.57,298.99],[866.57,299],[866.57,299],[866.57,299],[866.57,299.01],[866.56,299.01],[866.56,299.01],[866.56,299.02],[866.56,299.02],[866.55,299.03],[866.55,299.03],[866.55,299.04],[866.55,299.04],[866.54,299.05],[866.54,299.05],[866.54,299.05],[866.54,299.05],[866.54,299.06],[866.53,299.08],[866.53,299.08],[866.53,299.08],[866.52,299.08],[866.52,299.09],[866.52,299.09],[866.52,299.1],[866.51,299.1],[866.51,299.1],[866.51,299.1],[866.5,299.1],[866.5,299.11],[866.5,299.11],[866.5,299.11],[866.5,299.11],[866.5,299.12],[866.5,299.12],[866.49,299.12],[866.49,299.12],[866.49,299.12],[866.48,299.13],[866.48,299.13],[866.48,299.14],[866.47,299.15],[866.47,299.15],[866.47,299.15],[866.46,299.15],[866.45,299.17],[866.44,299.17],[866.43,299.18],[866.43,299.18],[866.43,299.19],[866.43,299.19],[866.43,299.19],[866.43,299.2],[866.43,299.21],[866.43,299.21],[866.42,299.21],[866.41,299.22],[866.4,299.22],[866.4,299.22],[866.4,299.22],[866.39,299.22],[866.39,299.22],[866.38,299.22],[866.37,299.22],[866.37,299.22],[866.37,299.23],[866.37,299.23],[866.37,299.23],[866.36,299.23],[866.36,299.23],[866.36,299.23],[866.36,299.23],[866.35,299.24],[866.35,299.24],[866.35,299.24],[866.35,299.24],[866.35,299.25],[866.35,299.25],[866.35,299.26],[866.35,299.26],[866.35,299.27],[866.35,299.28],[866.35,299.28],[866.34,299.28],[866.34,299.29],[866.33,299.29],[866.33,299.3],[866.32,299.3],[866.32,299.3],[866.32,299.3],[866.31,299.3],[866.31,299.3],[866.31,299.3],[866.31,299.3],[866.31,299.3],[866.3,299.3],[866.3,299.3],[866.3,299.3],[866.29,299.31],[866.28,299.31],[866.28,299.31],[866.27,299.31],[866.27,299.31],[866.27,299.31],[866.27,299.31],[866.25,299.31],[866.25,299.31],[866.24,299.31],[866.24,299.31],[866.24,299.31],[866.24,299.31],[866.24,299.31],[866.23,299.32],[866.23,299.32],[866.23,299.32],[866.23,299.32],[866.22,299.33],[866.22,299.33],[866.22,299.34],[866.22,299.34],[866.22,299.34],[866.22,299.35],[866.22,299.35],[866.22,299.36],[866.22,299.36],[866.22,299.36],[866.22,299.36],[866.23,299.36],[866.23,299.36],[866.22,299.36],[866.22,299.37],[866.22,299.37],[866.22,299.37],[866.22,299.37],[866.22,299.38],[866.22,299.38],[866.22,299.38],[866.22,299.39],[866.22,299.39],[866.22,299.39],[866.22,299.4],[866.22,299.4],[866.22,299.4],[866.22,299.4],[866.21,299.41],[866.21,299.42],[866.2,299.43],[866.2,299.43],[866.2,299.43],[866.19,299.44],[866.19,299.44],[866.18,299.45],[866.18,299.46],[866.18,299.46],[866.17,299.46],[866.17,299.47],[866.17,299.47],[866.17,299.47],[866.16,299.47],[866.16,299.47],[866.16,299.47],[866.16,299.47],[866.16,299.47],[866.16,299.47],[866.16,299.47],[866.15,299.47],[866.15,299.47],[866.14,299.47],[866.14,299.47],[866.13,299.47],[866.13,299.47],[866.12,299.47],[866.12,299.47],[866.12,299.47],[866.12,299.47],[866.12,299.47],[866.12,299.47],[866.12,299.47],[866.11,299.47],[866.11,299.47],[866.11,299.47],[866.11,299.48],[866.11,299.48],[866.11,299.48],[866.11,299.48],[866.1,299.49],[866.1,299.49],[866.1,299.5],[866.1,299.5],[866.1,299.5],[866.1,299.51],[866.1,299.51],[866.1,299.51],[866.1,299.51],[866.1,299.51],[866.11,299.51],[866.11,299.51],[866.11,299.51],[866.11,299.51],[866.12,299.52],[866.12,299.53],[866.12,299.53],[866.12,299.54],[866.11,299.54],[866.11,299.54],[866.11,299.55],[866.11,299.55],[866.11,299.55],[866.11,299.55],[866.1,299.55],[866.1,299.55],[866.1,299.56],[866.09,299.56],[866.09,299.56],[866.08,299.55],[866.07,299.55],[866.07,299.55],[866.07,299.55],[866.07,299.54],[866.06,299.54],[866.06,299.54],[866.05,299.54],[866.05,299.54],[866.04,299.53],[866.03,299.53],[866.03,299.53],[866.03,299.54],[866.02,299.54],[866.02,299.54],[866.02,299.54],[866.02,299.54],[866.02,299.55],[866.02,299.56],[866.02,299.56],[866.02,299.56],[866.02,299.56],[866.02,299.57],[866.02,299.57],[866.02,299.57],[866.02,299.58],[866.02,299.58],[866.01,299.58],[866.01,299.58],[866.01,299.59],[866,299.59],[866,299.59],[866,299.59],[865.99,299.59],[865.98,299.59],[865.97,299.59],[865.97,299.6],[865.96,299.6],[865.95,299.61],[865.94,299.61],[865.94,299.61],[865.94,299.62],[865.94,299.62],[865.94,299.62],[865.94,299.63],[865.92,299.64],[865.92,299.64],[865.92,299.64],[865.92,299.64],[865.92,299.64],[865.91,299.64],[865.91,299.64],[865.91,299.64],[865.91,299.64],[865.9,299.64],[865.9,299.64],[865.89,299.64],[865.89,299.65],[865.89,299.65],[865.89,299.66],[865.89,299.66],[865.88,299.66],[865.88,299.67],[865.88,299.67],[865.88,299.68],[865.88,299.68],[865.87,299.68],[865.87,299.68],[865.87,299.68],[865.87,299.68],[865.87,299.68],[865.87,299.69],[865.87,299.69],[865.87,299.69],[865.87,299.69],[865.87,299.69],[865.86,299.69],[865.86,299.69],[865.86,299.69],[865.86,299.7],[865.86,299.7],[865.86,299.7],[865.86,299.7],[865.85,299.71],[865.85,299.72],[865.85,299.72],[865.85,299.73],[865.85,299.73],[865.85,299.74],[865.85,299.74],[865.85,299.75],[865.85,299.75],[865.85,299.76],[865.85,299.76],[865.85,299.76],[865.84,299.76],[865.84,299.77],[865.84,299.77],[865.84,299.77],[865.84,299.77],[865.83,299.77],[865.83,299.77],[865.83,299.78],[865.83,299.78],[865.83,299.78],[865.84,299.78],[865.84,299.78],[865.84,299.79],[865.84,299.79],[865.84,299.79],[865.84,299.8],[865.84,299.8],[865.84,299.81],[865.84,299.81],[865.84,299.81],[865.84,299.81],[865.84,299.81],[865.83,299.81],[865.83,299.82],[865.83,299.82],[865.83,299.82],[865.83,299.82],[865.82,299.82],[865.82,299.83],[865.82,299.83],[865.82,299.83],[865.81,299.82],[865.81,299.83],[865.81,299.83],[865.81,299.83],[865.8,299.83],[865.8,299.83],[865.8,299.84],[865.8,299.84],[865.79,299.84],[865.79,299.86],[865.78,299.86],[865.78,299.86],[865.78,299.87],[865.78,299.87],[865.78,299.88],[865.78,299.88],[865.77,299.88],[865.77,299.89],[865.77,299.89],[865.77,299.89],[865.77,299.89],[865.77,299.89],[865.76,299.9],[865.76,299.9],[865.76,299.9],[865.76,299.91],[865.76,299.91],[865.76,299.92],[865.76,299.92],[865.76,299.92],[865.76,299.92],[865.75,299.92],[865.75,299.92],[865.75,299.92],[865.75,299.92],[865.74,299.92],[865.74,299.92],[865.74,299.92],[865.73,299.92],[865.73,299.92],[865.73,299.92],[865.72,299.92],[865.72,299.93],[865.72,299.93],[865.71,299.93],[865.71,299.93],[865.71,299.93],[865.71,299.94],[865.7,299.94],[865.7,299.94],[865.7,299.94],[865.7,299.94],[865.69,299.94],[865.69,299.94],[865.69,299.94],[865.69,299.94],[865.68,299.94],[865.68,299.94],[865.67,299.94],[865.67,299.94],[865.67,299.94],[865.67,299.94],[865.66,299.95],[865.66,299.95],[865.66,299.96],[865.66,299.96],[865.66,299.96],[865.66,299.97],[865.66,299.97],[865.66,299.97],[865.65,299.98],[865.65,299.98],[865.65,299.98],[865.65,299.98],[865.65,299.98],[865.64,299.99],[865.64,299.99],[865.64,299.99],[865.64,299.99],[865.64,299.99],[865.64,300],[865.64,300],[865.64,300.01],[865.64,300.01],[865.64,300.01],[865.64,300.01],[865.64,300.01],[865.64,300.02],[865.64,300.02],[865.63,300.03],[865.63,300.03],[865.63,300.03],[865.62,300.03],[865.62,300.03],[865.62,300.03],[865.62,300.04],[865.62,300.04],[865.61,300.04],[865.61,300.04],[865.61,300.04],[865.61,300.04],[865.6,300.04],[865.6,300.05],[865.6,300.05],[865.59,300.05],[865.59,300.05],[865.59,300.05],[865.59,300.05],[865.59,300.05],[865.59,300.04],[865.59,300.04],[865.58,300.05],[865.58,300.05],[865.58,300.05],[865.58,300.05],[865.58,300.06],[865.58,300.06],[865.58,300.06],[865.58,300.06],[865.58,300.06],[865.57,300.07],[865.57,300.07],[865.57,300.07],[865.57,300.07],[865.56,300.07],[865.56,300.07],[865.56,300.07],[865.56,300.07],[865.56,300.07],[865.56,300.07],[865.55,300.07],[865.55,300.07],[865.55,300.07],[865.55,300.07],[865.55,300.07],[865.55,300.07],[865.55,300.07],[865.54,300.08],[865.54,300.08],[865.54,300.08],[865.54,300.08],[865.54,300.08],[865.54,300.08],[865.53,300.08],[865.53,300.08],[865.52,300.08],[865.52,300.08],[865.51,300.08],[865.51,300.08],[865.51,300.08],[865.51,300.08],[865.51,300.08],[865.51,300.07],[865.5,300.07],[865.5,300.06],[865.5,300.06],[865.49,300.07],[865.49,300.07],[865.49,300.07],[865.49,300.08],[865.49,300.08],[865.49,300.08],[865.49,300.08],[865.49,300.08],[865.48,300.09],[865.48,300.08],[865.48,300.08],[865.48,300.08],[865.48,300.07],[865.48,300.07],[865.47,300.07],[865.47,300.06],[865.47,300.06],[865.47,300.06],[865.47,300.06],[865.47,300.06],[865.46,300.06],[865.46,300.06],[865.46,300.07],[865.46,300.07],[865.45,300.07],[865.45,300.07],[865.45,300.07],[865.45,300.07],[865.45,300.08],[865.45,300.08],[865.45,300.08],[865.44,300.08],[865.44,300.09],[865.43,300.09],[865.43,300.09],[865.43,300.1],[865.43,300.1],[865.43,300.11],[865.43,300.11],[865.43,300.11],[865.43,300.11],[865.43,300.11],[865.43,300.12],[865.43,300.12],[865.43,300.12],[865.42,300.13],[865.42,300.13],[865.42,300.13],[865.42,300.13],[865.42,300.13],[865.41,300.13],[865.41,300.13],[865.41,300.13],[865.41,300.13],[865.41,300.13],[865.4,300.14],[865.4,300.14],[865.4,300.14],[865.39,300.14],[865.39,300.14],[865.39,300.14],[865.38,300.14],[865.38,300.14],[865.38,300.15],[865.37,300.15],[865.37,300.15],[865.37,300.15],[865.37,300.15],[865.36,300.16],[865.35,300.16],[865.35,300.16],[865.35,300.16],[865.35,300.16],[865.34,300.17],[865.34,300.17],[865.34,300.17],[865.34,300.17],[865.33,300.17],[865.32,300.16],[865.32,300.16],[865.31,300.16],[865.31,300.16],[865.31,300.16],[865.31,300.16],[865.3,300.16],[865.3,300.16],[865.29,300.16],[865.29,300.16],[865.28,300.16],[865.28,300.16],[865.28,300.16],[865.28,300.16],[865.27,300.16],[865.27,300.16],[865.26,300.16],[865.26,300.16],[865.26,300.17],[865.26,300.17],[865.25,300.17],[865.25,300.17],[865.25,300.17],[865.25,300.17],[865.25,300.17],[865.24,300.18],[865.24,300.18],[865.24,300.18],[865.24,300.18],[865.24,300.18],[865.24,300.18],[865.24,300.19],[865.24,300.19],[865.24,300.19],[865.24,300.19],[865.24,300.19],[865.23,300.19],[865.23,300.19],[865.23,300.19],[865.23,300.19],[865.23,300.2],[865.22,300.2],[865.22,300.2],[865.22,300.2],[865.22,300.21],[865.22,300.21],[865.21,300.22],[865.2,300.23],[865.2,300.24],[865.2,300.24],[865.2,300.25],[865.2,300.26],[865.2,300.26],[865.2,300.27],[865.19,300.28],[865.19,300.29],[865.18,300.29],[865.17,300.29],[865.15,300.3],[865.15,300.3],[865.15,300.3],[865.13,300.31],[865.13,300.31],[865.12,300.32],[865.11,300.32],[865.11,300.32],[865.11,300.33],[865.1,300.33],[865.1,300.33],[865.1,300.33],[865.09,300.32],[865.08,300.32],[865.08,300.32],[865.07,300.32],[865.07,300.32],[865.07,300.32],[865.07,300.33],[865.06,300.33],[865.06,300.33],[865.06,300.34],[865.06,300.34],[865.06,300.34],[865.06,300.34],[865.06,300.34],[865.06,300.35],[865.06,300.35],[865.05,300.36],[865.05,300.36],[865.05,300.37],[865.05,300.37],[865.04,300.38],[865.04,300.39],[865.04,300.39],[865.04,300.39],[865.03,300.4],[865.03,300.4],[865.03,300.4],[865.03,300.4],[865.03,300.41],[865.04,300.43],[865.04,300.43],[865.04,300.44],[865.04,300.44],[865.04,300.45],[865.04,300.45],[865.04,300.46],[865.04,300.46],[865.04,300.46],[865.04,300.47],[865.04,300.47],[865.04,300.47],[865.05,300.49],[865.05,300.5],[865.05,300.5],[865.05,300.5],[865.05,300.5],[865.04,300.51],[865.04,300.52],[865.03,300.52],[865.03,300.52],[865.03,300.54],[865.02,300.54],[865.02,300.56],[865.01,300.56],[865.01,300.57],[865.01,300.57],[865,300.58],[865,300.58],[865,300.59],[865,300.59],[864.99,300.59],[864.99,300.6],[864.99,300.6],[864.99,300.61],[864.99,300.61],[864.99,300.61],[864.99,300.61],[864.99,300.61],[864.98,300.62],[864.98,300.62],[864.98,300.62],[864.98,300.62],[864.97,300.63],[864.97,300.63],[864.97,300.63],[864.97,300.64],[864.97,300.65],[864.97,300.66],[864.97,300.66],[864.97,300.66],[864.96,300.66],[864.96,300.66],[864.95,300.67],[864.94,300.67],[864.93,300.67],[864.93,300.67],[864.93,300.67],[864.93,300.68],[864.93,300.68],[864.92,300.7],[864.92,300.7],[864.92,300.71],[864.92,300.72],[864.92,300.73],[864.92,300.73],[864.91,300.73],[864.9,300.75],[864.9,300.75],[864.89,300.76],[864.89,300.77],[864.89,300.77],[864.88,300.77],[864.88,300.78],[864.88,300.78],[864.86,300.82],[864.85,300.87],[864.85,300.88],[864.85,300.88],[864.85,300.88],[864.85,300.89],[864.85,300.89],[864.84,300.89],[864.84,300.9],[864.84,300.9],[864.83,300.9],[864.83,300.9],[864.82,300.9],[864.8,300.91],[864.8,300.91],[864.8,300.91],[864.79,300.91],[864.79,300.92],[864.79,300.92],[864.79,300.92],[864.78,300.92],[864.78,300.93],[864.77,300.94],[864.77,300.94],[864.77,300.95],[864.76,300.96],[864.75,300.97],[864.75,300.98],[864.75,300.98],[864.75,300.98],[864.75,300.99],[864.75,300.99],[864.75,301],[864.75,301],[864.75,301.01],[864.74,301.01],[864.74,301.01],[864.74,301.02],[864.74,301.02],[864.74,301.02],[864.74,301.03],[864.74,301.04],[864.73,301.04],[864.73,301.05],[864.73,301.05],[864.72,301.06],[864.72,301.07],[864.72,301.07],[864.72,301.07],[864.72,301.07],[864.72,301.08],[864.72,301.08],[864.73,301.09],[864.73,301.09],[864.73,301.1],[864.73,301.1],[864.73,301.1],[864.72,301.11],[864.72,301.11],[864.71,301.12],[864.71,301.12],[864.7,301.12],[864.69,301.13],[864.68,301.13],[864.68,301.14],[864.68,301.14],[864.68,301.14],[864.67,301.15],[864.67,301.15],[864.67,301.15],[864.65,301.16],[864.65,301.16],[864.65,301.16],[864.65,301.16],[864.65,301.16],[864.65,301.17],[864.66,301.2],[864.66,301.2],[864.66,301.21],[864.66,301.21],[864.66,301.22],[864.66,301.22],[864.65,301.22],[864.65,301.23],[864.65,301.23],[864.65,301.24],[864.65,301.24],[864.65,301.25],[864.65,301.26],[864.65,301.26],[864.65,301.27],[864.64,301.27],[864.64,301.28],[864.64,301.28],[864.64,301.29],[864.64,301.29],[864.64,301.29],[864.64,301.29],[864.64,301.29],[864.63,301.29],[864.63,301.3],[864.63,301.3],[864.63,301.3],[864.62,301.3],[864.62,301.3],[864.62,301.31],[864.62,301.32],[864.62,301.32],[864.61,301.34],[864.61,301.34],[864.61,301.34],[864.61,301.34],[864.61,301.35],[864.61,301.35],[864.61,301.35],[864.61,301.35],[864.61,301.35],[864.61,301.35],[864.61,301.35],[864.6,301.36],[864.6,301.36],[864.6,301.36],[864.6,301.36],[864.6,301.37],[864.6,301.37],[864.59,301.37],[864.59,301.37],[864.59,301.37],[864.59,301.38],[864.59,301.39],[864.58,301.43],[864.58,301.43],[864.62,301.49],[864.63,301.49],[864.63,301.5],[864.64,301.51],[864.65,301.52],[864.66,301.52],[864.66,301.53],[864.66,301.53],[864.66,301.54],[864.66,301.54],[864.66,301.54],[864.66,301.54],[864.66,301.55],[864.66,301.55],[864.66,301.56],[864.66,301.57],[864.66,301.58],[864.66,301.58],[864.66,301.59],[864.67,301.59],[864.67,301.6],[864.68,301.6],[864.68,301.6],[864.68,301.6],[864.69,301.6],[864.69,301.6],[864.69,301.61],[864.7,301.61],[864.7,301.61],[864.7,301.62],[864.69,301.63],[864.69,301.64],[864.72,301.68],[864.73,301.69],[864.73,301.7],[864.73,301.7],[864.73,301.71],[864.73,301.71],[864.73,301.72],[864.75,301.8],[864.76,301.81],[864.73,301.85],[864.79,302],[864.78,302.16],[864.77,302.28],[864.75,302.31],[864.73,302.37],[864.74,302.42],[864.77,302.48],[864.78,302.53],[864.77,302.56],[864.74,302.59],[864.72,302.6],[864.7,302.62],[864.69,302.64],[864.68,302.65],[864.68,302.66],[864.68,302.67],[864.68,302.67],[864.68,302.68],[864.68,302.68],[864.68,302.68],[864.68,302.69],[864.68,302.7],[864.68,302.7],[864.68,302.7],[864.68,302.71],[864.68,302.71],[864.69,302.71],[864.69,302.72],[864.69,302.72],[864.7,302.72],[864.7,302.72],[864.7,302.73],[864.71,302.73],[864.71,302.74],[864.72,302.74],[864.72,302.74],[864.72,302.74],[864.72,302.75],[864.72,302.75],[864.71,302.75],[864.71,302.75],[864.71,302.76],[864.71,302.76],[864.71,302.76],[864.71,302.76],[864.72,302.76],[864.72,302.77],[864.72,302.77],[864.72,302.77],[864.71,302.81],[864.71,302.82],[864.71,302.83],[864.71,302.83],[864.71,302.83],[864.71,302.84],[864.71,302.84],[864.71,302.85],[864.72,302.85],[864.72,302.86],[864.72,302.87],[864.73,302.87],[864.73,302.87],[864.73,302.88],[864.73,302.88],[864.73,302.88],[864.73,302.89],[864.74,302.89],[864.74,302.89],[864.74,302.9],[864.74,302.9],[864.75,302.91],[864.75,302.91],[864.75,302.92],[864.75,302.92],[864.75,302.92],[864.75,302.92],[864.75,302.92],[864.76,302.93],[864.76,302.93],[864.76,302.93],[864.76,302.93],[864.77,302.93],[864.95,303.04],[864.96,303.05],[864.96,303.05],[864.96,303.06],[864.97,303.06],[864.97,303.08],[865,303.14],[865,303.14],[865,303.16],[865,303.16],[865.01,303.17],[865.01,303.17],[865.01,303.17],[865.01,303.18],[865.02,303.18],[865.03,303.19],[865.05,303.2],[865.06,303.22],[865.07,303.22],[865.07,303.22],[865.08,303.23],[865.08,303.23],[865.11,303.24],[865.29,303.35],[865.31,303.36],[865.31,303.37],[865.32,303.37],[865.32,303.37],[865.32,303.38],[865.33,303.39],[865.33,303.4],[865.34,303.41],[865.34,303.42],[865.34,303.43],[865.34,303.43],[865.33,303.44],[865.33,303.45],[865.34,303.47],[865.34,303.48],[865.34,303.49],[865.33,303.5],[865.33,303.51],[865.33,303.51],[865.33,303.52],[865.34,303.56],[865.34,303.59],[865.34,303.59],[865.34,303.6],[865.35,303.61],[865.35,303.62],[865.36,303.62],[865.37,303.63],[865.39,303.64],[865.41,303.65],[865.42,303.65],[865.45,303.68],[865.45,303.68],[865.45,303.68],[865.46,303.68],[865.46,303.68],[865.46,303.67],[865.46,303.66],[865.46,303.64],[865.46,303.64],[865.46,303.64],[865.46,303.63],[865.45,303.63],[865.45,303.63],[865.45,303.62],[865.45,303.62],[865.45,303.61],[865.45,303.6],[865.44,303.6],[865.45,303.6],[865.46,303.59],[865.46,303.59],[865.46,303.59],[865.47,303.59],[865.48,303.58],[865.49,303.58],[865.51,303.57],[865.56,303.54],[865.61,303.5],[865.63,303.49],[865.63,303.5],[865.64,303.51],[865.65,303.52],[865.66,303.53],[865.67,303.54],[865.68,303.55],[865.69,303.56],[865.7,303.57],[865.7,303.57],[865.71,303.58],[865.72,303.59],[865.73,303.6],[865.74,303.6],[865.75,303.61],[865.75,303.61],[865.75,303.62],[865.75,303.62],[865.75,303.62],[865.76,303.62],[865.75,303.62],[865.76,303.62],[865.76,303.62],[865.77,303.63],[865.77,303.64],[865.78,303.64],[865.79,303.65],[865.81,303.66],[865.82,303.67],[865.83,303.68],[865.84,303.69],[865.85,303.69],[865.85,303.69],[865.87,303.71],[865.88,303.71],[865.88,303.72],[865.89,303.73],[865.91,303.74],[865.93,303.76],[865.94,303.77],[865.95,303.78],[865.96,303.79],[865.96,303.8],[865.97,303.8],[865.99,303.81],[866,303.82],[866,303.83],[866.01,303.83],[866.02,303.84],[866.02,303.84],[866.03,303.85],[866.03,303.85],[866.04,303.86],[866.04,303.86],[866.05,303.87],[866.06,303.89],[866.06,303.89],[866.07,303.9],[866.07,303.9],[866.07,303.9],[866.08,303.91],[866.08,303.91],[866.09,303.92],[866.1,303.92],[866.1,303.93],[866.11,303.93],[866.11,303.93],[866.12,303.94],[866.12,303.94],[866.13,303.94],[866.14,303.95],[866.15,303.95],[866.19,303.97],[866.2,303.97],[866.21,303.97],[866.22,303.98],[866.22,303.98],[866.23,303.98],[866.24,303.99],[866.24,303.99],[866.25,304],[866.26,304],[866.26,304],[866.27,304.01],[866.27,304.01],[866.28,304.02],[866.28,304.02],[866.29,304.03],[866.29,304.03],[866.29,304.04],[866.3,304.05],[866.3,304.05],[866.31,304.06],[866.31,304.06],[866.31,304.06],[866.32,304.07],[866.33,304.09],[866.33,304.1],[866.33,304.11],[866.34,304.12],[866.34,304.12],[866.34,304.13],[866.35,304.14],[866.35,304.14],[866.35,304.14],[866.36,304.15],[866.36,304.15],[866.37,304.16],[866.37,304.16],[866.37,304.16],[866.38,304.17],[866.38,304.17],[866.39,304.17],[866.39,304.18],[866.4,304.18],[866.4,304.18],[866.41,304.19],[866.42,304.19],[866.43,304.2],[866.43,304.2],[866.44,304.2],[866.44,304.2],[866.45,304.21],[866.45,304.21],[866.46,304.21],[866.46,304.22],[866.46,304.22],[866.47,304.22],[866.47,304.23],[866.48,304.23],[866.48,304.24],[866.49,304.24],[866.49,304.25],[866.51,304.27],[866.52,304.28],[866.52,304.29],[866.53,304.3],[866.53,304.31],[866.54,304.31],[866.54,304.32],[866.55,304.33],[866.56,304.33],[866.57,304.34],[866.57,304.35],[866.58,304.35],[866.58,304.36],[866.59,304.36],[866.59,304.37],[866.59,304.37],[866.6,304.38],[866.6,304.38],[866.61,304.39],[866.61,304.4],[866.62,304.4],[866.62,304.41],[866.63,304.42],[866.63,304.43],[866.64,304.44],[866.64,304.45],[866.64,304.46],[866.65,304.46],[866.65,304.46],[866.65,304.46],[866.65,304.47],[866.66,304.48],[866.66,304.48],[866.67,304.49],[866.67,304.5],[866.68,304.51],[866.68,304.51],[866.69,304.51],[866.69,304.52],[866.7,304.52],[866.7,304.53],[866.71,304.53],[866.71,304.54],[866.71,304.54],[866.72,304.54],[866.72,304.54],[866.72,304.54],[866.72,304.55],[866.73,304.55],[866.73,304.55],[866.73,304.56],[866.74,304.57],[866.74,304.57],[866.74,304.57],[866.75,304.58],[866.76,304.6],[866.76,304.6],[866.76,304.61],[866.77,304.62],[866.77,304.62],[866.77,304.62],[866.77,304.63],[866.78,304.63],[866.78,304.63],[866.78,304.64],[866.79,304.64],[866.79,304.65],[866.8,304.65],[866.8,304.66],[866.8,304.66],[866.81,304.67],[866.82,304.67],[866.82,304.67],[866.83,304.68],[866.86,304.7],[866.87,304.71],[866.88,304.72],[866.9,304.73],[866.92,304.74],[866.94,304.75],[866.94,304.76],[866.95,304.76],[866.95,304.76],[866.96,304.76],[866.96,304.76],[866.97,304.76],[866.97,304.77],[866.97,304.77],[866.98,304.77],[866.98,304.77],[866.98,304.77],[866.99,304.77],[866.99,304.77],[867,304.77],[867,304.77],[867.02,304.77],[867.02,304.77],[867.03,304.77],[867.04,304.77],[867.05,304.77],[867.06,304.77],[867.06,304.77],[867.07,304.78],[867.07,304.78],[867.07,304.78],[867.08,304.78],[867.09,304.79],[867.1,304.79],[867.1,304.8],[867.1,304.8],[867.1,304.8],[867.11,304.8],[867.13,304.83],[867.16,304.86],[867.17,304.86],[867.18,304.87],[867.19,304.88],[867.19,304.88],[867.2,304.89],[867.22,304.9],[867.24,304.92],[867.25,304.93],[867.27,304.94],[867.28,304.96],[867.28,304.96],[867.28,304.96],[867.28,304.96],[867.29,304.96],[867.29,304.96],[867.29,304.97],[867.29,304.97],[867.29,304.97],[867.29,304.97],[867.3,304.98],[867.3,304.98],[867.3,304.98],[867.3,304.99],[867.3,304.99],[867.3,304.99],[867.3,304.99],[867.3,304.99],[867.3,305],[867.3,305],[867.3,305],[867.29,305.01],[867.29,305.01],[867.29,305.01],[867.29,305.01],[867.29,305.02],[867.29,305.02],[867.29,305.02],[867.29,305.02],[867.29,305.03],[867.28,305.03],[867.28,305.03],[867.28,305.04],[867.28,305.05],[867.28,305.05],[867.28,305.06],[867.27,305.07],[867.27,305.08],[867.27,305.1],[867.27,305.1],[867.27,305.11],[867.27,305.11],[867.26,305.13],[867.26,305.14],[867.26,305.15],[867.26,305.16],[867.26,305.16],[867.26,305.16],[867.26,305.17],[867.26,305.17],[867.26,305.18],[867.26,305.19],[867.26,305.2],[867.26,305.2],[867.26,305.21],[867.26,305.22],[867.26,305.22],[867.26,305.23],[867.26,305.23],[867.26,305.24],[867.26,305.25],[867.26,305.25],[867.26,305.27],[867.26,305.28],[867.25,305.29],[867.25,305.3],[867.25,305.3],[867.25,305.31],[867.25,305.32],[867.25,305.33],[867.25,305.34],[867.25,305.35],[867.25,305.35],[867.25,305.35],[867.25,305.36],[867.24,305.37],[867.24,305.39],[867.25,305.39],[867.25,305.4],[867.25,305.4],[867.25,305.41],[867.25,305.42],[867.25,305.43],[867.25,305.44],[867.25,305.46],[867.25,305.46],[867.25,305.47],[867.25,305.48],[867.26,305.49],[867.26,305.49],[867.26,305.5],[867.26,305.51],[867.26,305.51],[867.26,305.52],[867.27,305.54],[867.28,305.57],[867.28,305.58],[867.28,305.58],[867.28,305.59],[867.29,305.6],[867.29,305.61],[867.29,305.62],[867.29,305.64],[867.29,305.67],[867.29,305.68],[867.29,305.69],[867.29,305.7],[867.29,305.71],[867.29,305.72],[867.3,305.74],[867.31,305.77],[867.31,305.78],[867.31,305.79],[867.32,305.8],[867.32,305.81],[867.32,305.82],[867.32,305.84],[867.33,305.87],[867.33,305.88],[867.33,305.89],[867.33,305.89],[867.33,305.89],[867.34,305.9],[867.34,305.91],[867.34,305.91],[867.35,305.92],[867.35,305.93],[867.36,305.94],[867.36,305.94],[867.37,305.95],[867.37,305.95],[867.39,305.96],[867.4,305.96],[867.42,305.97],[867.44,305.99],[867.46,306],[867.48,306.01],[867.49,306.02],[867.5,306.03],[867.51,306.03],[867.54,306.05],[867.55,306.06],[867.56,306.07],[867.57,306.07],[867.58,306.07],[867.59,306.08],[867.6,306.08],[867.61,306.08],[867.66,306.08],[867.67,306.08],[867.69,306.08],[867.7,306.08],[867.71,306.09],[867.72,306.1],[867.73,306.11],[867.75,306.12],[867.75,306.13],[867.77,306.14],[867.77,306.14],[867.78,306.14],[867.78,306.15],[867.78,306.15],[867.79,306.15],[867.79,306.16],[867.79,306.16],[867.79,306.16],[867.79,306.17],[867.79,306.17],[867.79,306.17],[867.78,306.19],[867.78,306.2],[867.77,306.21],[867.76,306.23],[867.73,306.3],[867.72,306.32],[867.71,306.34],[867.69,306.36],[867.67,306.38],[867.64,306.4],[867.63,306.41],[867.62,306.42],[867.58,306.47],[867.56,306.5],[867.54,306.52],[867.54,306.53],[867.53,306.55],[867.51,306.57],[867.5,306.59],[867.46,306.64],[867.44,306.66],[867.43,306.68],[867.41,306.74],[867.39,306.78],[867.36,306.82],[867.35,306.84],[867.34,306.85],[867.34,306.87],[867.32,306.93],[867.31,306.95],[867.29,306.98],[867.28,306.99],[867.26,307.01],[867.24,307.03],[867.21,307.07],[867.15,307.14],[867.14,307.16],[867.12,307.18],[867.11,307.2],[867.1,307.22],[867.08,307.26],[867.08,307.26],[867.07,307.27],[867.07,307.28],[867.07,307.28],[867.07,307.28],[867.06,307.29],[867.06,307.29],[867.06,307.29],[867.05,307.3],[867.05,307.3],[867.04,307.32],[867.02,307.35],[866.95,307.42],[866.94,307.43],[866.92,307.44],[866.91,307.45],[866.9,307.45],[866.89,307.45],[866.88,307.46],[866.84,307.47],[866.83,307.47],[866.82,307.47],[866.8,307.48],[866.79,307.49],[866.79,307.49],[866.78,307.5],[866.78,307.5],[866.77,307.51],[866.76,307.52],[866.76,307.52],[866.76,307.53],[866.75,307.54],[866.75,307.55],[866.75,307.57],[866.74,307.59],[866.74,307.61],[866.74,307.64],[866.73,307.66],[866.73,307.68],[866.72,307.7],[866.71,307.72],[866.71,307.74],[866.71,307.76],[866.71,307.78],[866.71,307.8],[866.71,307.81],[866.7,307.81],[866.7,307.81],[866.7,307.82],[866.7,307.82],[866.7,307.83],[866.7,307.84],[866.7,307.84],[866.7,307.84],[866.69,307.85],[866.69,307.85],[866.69,307.86],[866.68,307.87],[866.67,307.88],[866.66,307.89],[866.64,307.91],[866.62,307.93],[866.61,307.94],[866.61,307.95],[866.6,307.96],[866.59,307.97],[866.58,307.97],[866.57,307.97],[866.56,307.98],[866.54,307.99],[866.52,308],[866.51,308.01],[866.5,308.01],[866.49,308.03],[866.47,308.04],[866.46,308.05],[866.46,308.06],[866.44,308.07],[866.43,308.08],[866.42,308.08],[866.39,308.1],[866.38,308.11],[866.36,308.12],[866.35,308.12],[866.35,308.13],[866.34,308.13],[866.33,308.13],[866.32,308.13],[866.32,308.13],[866.31,308.13],[866.3,308.13],[866.27,308.11],[866.25,308.11],[866.24,308.1],[866.23,308.1],[866.23,308.1],[866.21,308.1],[866.21,308.1],[866.17,308.11],[866.16,308.11],[866.15,308.11],[866.13,308.11],[866.13,308.11],[866.1,308.12],[866.1,308.13],[866.08,308.13],[866.08,308.13],[866.07,308.13],[866.06,308.13],[866.05,308.13],[866.04,308.13],[866.03,308.13],[866.02,308.13],[866.02,308.13],[866.01,308.13],[865.99,308.13],[865.98,308.13],[865.98,308.13],[865.97,308.13],[865.96,308.13],[865.96,308.13],[865.94,308.12],[865.93,308.12],[865.91,308.12],[865.9,308.11],[865.88,308.11],[865.85,308.11],[865.84,308.11],[865.83,308.11],[865.83,308.11],[865.82,308.12],[865.81,308.12],[865.79,308.13],[865.78,308.14],[865.77,308.14],[865.77,308.14],[865.76,308.14],[865.75,308.14],[865.73,308.15],[865.72,308.15],[865.72,308.15],[865.71,308.15],[865.7,308.15],[865.7,308.16],[865.69,308.16],[865.68,308.16],[865.68,308.17],[865.64,308.2],[865.62,308.22],[865.59,308.25],[865.58,308.26],[865.49,308.34],[865.48,308.35],[865.46,308.36],[865.39,308.41],[865.38,308.42],[865.36,308.44],[865.34,308.45],[865.33,308.45],[865.31,308.46],[865.23,308.49],[865.07,308.55],[865.05,308.57],[865,308.59],[864.99,308.6],[864.98,308.6],[864.98,308.6],[864.97,308.61],[864.97,308.61],[864.96,308.62],[864.95,308.63],[864.93,308.67],[864.92,308.67],[864.92,308.68],[864.91,308.68],[864.91,308.68],[864.89,308.69],[864.87,308.71],[864.83,308.74],[864.82,308.74],[864.81,308.74],[864.81,308.75],[864.8,308.75],[864.79,308.75],[864.78,308.75],[864.78,308.75],[864.77,308.75],[864.76,308.75],[864.76,308.75],[864.75,308.75],[864.72,308.74],[864.69,308.73],[864.65,308.72],[864.6,308.71],[864.6,308.71],[864.59,308.71],[864.57,308.71],[864.57,308.71],[864.56,308.71],[864.54,308.71],[864.48,308.72],[864.47,308.72],[864.46,308.73],[864.44,308.74],[864.44,308.74],[864.43,308.74],[864.42,308.74],[864.42,308.75],[864.41,308.75],[864.4,308.74],[864.4,308.74],[864.39,308.74],[864.35,308.73],[864.33,308.72],[864.33,308.72],[864.32,308.72],[864.31,308.72],[864.29,308.72],[864.28,308.72],[864.27,308.72],[864.24,308.72],[864.21,308.73],[864.19,308.73],[864.18,308.73],[864.17,308.74],[864.15,308.74],[864.15,308.74],[864.09,308.77],[864.09,308.77],[864.07,308.78],[864.05,308.78],[864.05,308.78],[864.03,308.78],[864.03,308.79],[863.95,308.8],[863.94,308.8],[863.92,308.8],[863.9,308.81],[863.89,308.81],[863.87,308.82],[863.84,308.83],[863.82,308.84],[863.81,308.84],[863.79,308.85],[863.77,308.85],[863.76,308.85],[863.72,308.86],[863.69,308.86],[863.67,308.86],[863.66,308.87],[863.64,308.87],[863.62,308.88],[863.61,308.88],[863.59,308.89],[863.55,308.9],[863.5,308.92],[863.49,308.92],[863.48,308.93],[863.46,308.93],[863.45,308.93],[863.43,308.93],[863.38,308.93],[863.33,308.93],[863.31,308.93],[863.29,308.93],[863.28,308.93],[863.26,308.94],[863.22,308.95],[863.2,308.95],[863.2,308.96],[863.19,308.96],[863.18,308.96],[863.17,308.97],[863.16,308.98],[863.14,308.99],[863.13,309],[863.11,309.01],[863.09,309.02],[863.09,309.03],[863.07,309.04],[863.07,309.05],[863.05,309.07],[863.04,309.08],[863.03,309.08],[863.03,309.08],[863.02,309.09],[863.01,309.09],[863,309.1],[862.98,309.1],[862.93,309.12],[862.93,309.12],[862.91,309.12],[862.91,309.13],[862.9,309.13],[862.9,309.14],[862.88,309.15],[862.88,309.15],[862.87,309.16],[862.86,309.16],[862.85,309.17],[862.84,309.17],[862.84,309.18],[862.83,309.18],[862.83,309.19],[862.82,309.2],[862.81,309.21],[862.81,309.21],[862.8,309.22],[862.8,309.23],[862.79,309.23],[862.78,309.23],[862.78,309.24],[862.77,309.24],[862.77,309.25],[862.76,309.26],[862.76,309.26],[862.76,309.27],[862.75,309.31],[862.74,309.33],[862.74,309.34],[862.73,309.34],[862.73,309.35],[862.72,309.36],[862.67,309.41],[862.67,309.41],[862.66,309.42],[862.66,309.42],[862.65,309.43],[862.64,309.43],[862.62,309.44],[862.61,309.44],[862.61,309.44],[862.6,309.45],[862.6,309.45],[862.59,309.46],[862.59,309.46],[862.58,309.47],[862.57,309.49],[862.56,309.5],[862.55,309.51],[862.54,309.52],[862.53,309.53],[862.53,309.53],[862.52,309.53],[862.52,309.54],[862.51,309.54],[862.5,309.54],[862.5,309.54],[862.49,309.55],[862.48,309.55],[862.46,309.55],[862.46,309.56],[862.45,309.56],[862.44,309.56],[862.44,309.57],[862.43,309.57],[862.43,309.58],[862.42,309.59],[862.42,309.59],[862.41,309.6],[862.41,309.6],[862.4,309.6],[862.39,309.6],[862.39,309.6],[862.38,309.61],[862.37,309.61],[862.37,309.61],[862.36,309.61],[862.36,309.61],[862.35,309.61],[862.34,309.62],[862.34,309.62],[862.33,309.62],[862.33,309.63],[862.32,309.63],[862.31,309.63],[862.31,309.63],[862.3,309.63],[862.3,309.63],[862.29,309.63],[862.28,309.62],[862.28,309.63],[862.27,309.63],[862.27,309.63],[862.26,309.63],[862.26,309.64],[862.26,309.64],[862.25,309.64],[862.25,309.64],[862.24,309.64],[862.23,309.64],[862.23,309.64],[862.22,309.64],[862.22,309.65],[862.22,309.65],[862.21,309.66],[862.21,309.66],[862.21,309.67],[862.21,309.68],[862.21,309.68],[862.2,309.69],[862.2,309.69],[862.19,309.7],[862.19,309.7],[862.18,309.71],[862.18,309.72],[862.17,309.72],[862.17,309.72],[862.16,309.73],[862.16,309.73],[862.15,309.73],[862.14,309.73],[862.13,309.73],[862.13,309.72],[862.12,309.72],[862.11,309.71],[862.11,309.71],[862.1,309.71],[862.09,309.72],[862.09,309.72],[862.08,309.73],[862.08,309.73],[862.08,309.74],[862.07,309.75],[862.07,309.75],[862.06,309.76],[862.06,309.76],[862.05,309.76],[862.04,309.76],[862.03,309.76],[862.03,309.77],[862.03,309.77],[862.02,309.78],[862.02,309.78],[862.02,309.79],[862.01,309.8],[862.01,309.8],[862,309.81],[862,309.82],[862,309.82],[861.99,309.83],[861.98,309.83],[861.98,309.83],[861.97,309.84],[861.97,309.84],[861.96,309.84],[861.95,309.84],[861.95,309.84],[861.94,309.84],[861.93,309.84],[861.93,309.83],[861.92,309.83],[861.91,309.83],[861.9,309.83],[861.9,309.83],[861.89,309.84],[861.89,309.84],[861.88,309.85],[861.88,309.85],[861.88,309.86],[861.87,309.86],[861.87,309.87],[861.87,309.88],[861.86,309.88],[861.86,309.89],[861.86,309.9],[861.85,309.9],[861.85,309.91],[861.85,309.92],[861.85,309.92],[861.84,309.94],[861.84,309.94],[861.82,309.96],[861.82,309.96],[861.8,309.99],[861.8,310],[861.79,310],[861.78,310.01],[861.76,310.02],[861.75,310.02],[861.75,310.03],[861.74,310.05],[861.73,310.06],[861.72,310.06],[861.71,310.07],[861.71,310.07],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.7,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.08],[861.71,310.09],[861.7,310.1],[861.68,310.11],[861.67,310.12],[861.67,310.12],[861.67,310.13],[861.66,310.13],[861.66,310.14],[861.66,310.14],[861.66,310.15],[861.65,310.15],[861.65,310.15],[861.65,310.16],[861.65,310.16],[861.65,310.16],[861.64,310.17],[861.64,310.17],[861.64,310.18],[861.64,310.18],[861.64,310.18],[861.63,310.19],[861.63,310.19],[861.63,310.2],[861.63,310.21],[861.63,310.22],[861.63,310.22],[861.63,310.23],[861.63,310.23],[861.63,310.24],[861.63,310.24],[861.63,310.25],[861.63,310.25],[861.63,310.25],[861.63,310.25],[861.63,310.26],[861.62,310.27],[861.62,310.27],[861.62,310.27],[861.62,310.27],[861.61,310.28],[861.61,310.28],[861.61,310.28],[861.6,310.28],[861.6,310.29],[861.6,310.29],[861.59,310.29],[861.59,310.3],[861.59,310.3],[861.58,310.3],[861.58,310.3],[861.58,310.31],[861.57,310.31],[861.57,310.32],[861.57,310.32],[861.56,310.32],[861.56,310.32],[861.55,310.33],[861.55,310.33],[861.54,310.35],[861.53,310.36],[861.53,310.37],[861.52,310.38],[861.51,310.39],[861.51,310.39],[861.5,310.4],[861.5,310.41],[861.5,310.41],[861.49,310.42],[861.49,310.42],[861.49,310.42],[861.49,310.43],[861.49,310.43],[861.49,310.44],[861.49,310.44],[861.49,310.45],[861.49,310.45],[861.48,310.46],[861.48,310.46],[861.48,310.47],[861.48,310.47],[861.48,310.47],[861.48,310.47],[861.48,310.48],[861.48,310.48],[861.48,310.48],[861.48,310.49],[861.48,310.49],[861.48,310.5],[861.47,310.5],[861.47,310.51],[861.47,310.52],[861.47,310.52],[861.47,310.52],[861.47,310.53],[861.47,310.54],[861.48,310.54],[861.48,310.54],[861.48,310.54],[861.48,310.55],[861.49,310.55],[861.49,310.56],[861.49,310.56],[861.48,310.56],[861.48,310.57],[861.47,310.57],[861.47,310.57],[861.47,310.57],[861.47,310.58],[861.47,310.58],[861.47,310.58],[861.48,310.59],[861.48,310.59],[861.48,310.59],[861.48,310.59],[861.48,310.6],[861.48,310.6],[861.47,310.61],[861.47,310.61],[861.47,310.61],[861.47,310.62],[861.46,310.62],[861.46,310.62],[861.46,310.62],[861.45,310.62],[861.45,310.62],[861.45,310.63],[861.45,310.63],[861.45,310.63],[861.45,310.64],[861.45,310.64],[861.44,310.65],[861.44,310.65],[861.43,310.66],[861.43,310.66],[861.43,310.66],[861.43,310.67],[861.44,310.67],[861.44,310.68],[861.44,310.68],[861.44,310.69],[861.45,310.69],[861.45,310.7],[861.45,310.7],[861.45,310.7],[861.45,310.71],[861.45,310.71],[861.45,310.71],[861.45,310.72],[861.46,310.72],[861.46,310.72],[861.47,310.72],[861.47,310.73],[861.48,310.73],[861.48,310.74],[861.48,310.74],[861.48,310.75],[861.48,310.75],[861.48,310.75],[861.49,310.75],[861.49,310.75],[861.5,310.75],[861.5,310.75],[861.5,310.75],[861.51,310.74],[861.51,310.74],[861.51,310.74],[861.51,310.74],[861.51,310.73],[861.51,310.73],[861.51,310.73],[861.51,310.73],[861.51,310.73],[861.52,310.73],[861.52,310.74],[861.52,310.74],[861.52,310.74],[861.52,310.74],[861.53,310.74],[861.53,310.75],[861.53,310.75],[861.54,310.75],[861.54,310.76],[861.54,310.76],[861.54,310.76],[861.54,310.76],[861.54,310.76],[861.53,310.77],[861.53,310.77],[861.53,310.77],[861.53,310.77],[861.52,310.77],[861.52,310.77],[861.52,310.77],[861.52,310.78],[861.52,310.79],[861.52,310.79],[861.52,310.79],[861.51,310.79],[861.51,310.8],[861.51,310.8],[861.51,310.8],[861.51,310.8],[861.51,310.8],[861.51,310.8],[861.51,310.81],[861.51,310.81],[861.51,310.81],[861.5,310.81],[861.5,310.82],[861.5,310.82],[861.5,310.83],[861.5,310.83],[861.5,310.84],[861.49,310.84],[861.5,310.84],[861.5,310.84],[861.5,310.85],[861.5,310.85],[861.5,310.85],[861.49,310.86],[861.49,310.86],[861.49,310.86],[861.49,310.86],[861.49,310.87],[861.49,310.87],[861.49,310.87],[861.48,310.88],[861.48,310.88],[861.48,310.88],[861.48,310.89],[861.48,310.89],[861.47,310.89],[861.47,310.89],[861.47,310.89],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.9],[861.47,310.91],[861.47,310.91],[861.47,310.91],[861.47,310.92],[861.47,310.92],[861.46,310.92],[861.46,310.93],[861.46,310.93],[861.46,310.93],[861.46,310.93],[861.46,310.93],[861.46,310.93],[861.46,310.93],[861.46,310.94],[861.46,310.94],[861.46,310.94],[861.46,310.94],[861.46,310.94],[861.46,310.94],[861.47,310.94],[861.47,310.94],[861.47,310.94],[861.47,310.94],[861.47,310.93],[861.47,310.93],[861.47,310.93],[861.47,310.93],[861.48,310.93],[861.48,310.93],[861.48,310.93],[861.47,310.93],[861.47,310.93],[861.47,310.94],[861.47,310.94],[861.47,310.94],[861.47,310.94],[861.47,310.95],[861.47,310.95],[861.47,310.95],[861.46,310.95],[861.46,310.95],[861.46,310.94],[861.46,310.94],[861.45,310.94],[861.45,310.94],[861.45,310.94],[861.44,310.94],[861.44,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.93],[861.43,310.93],[861.43,310.93],[861.43,310.93],[861.43,310.93],[861.43,310.93],[861.43,310.93],[861.43,310.93],[861.43,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.94],[861.42,310.94],[861.42,310.94],[861.42,310.94],[861.42,310.94],[861.42,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.94],[861.43,310.95],[861.43,310.95],[861.42,310.95],[861.42,310.95],[861.42,310.95],[861.41,310.95],[861.41,310.95],[861.4,310.95],[861.4,310.96],[861.4,310.96],[861.41,310.97],[861.41,310.98],[861.41,310.98],[861.41,310.99],[861.4,310.99],[861.4,310.99],[861.4,310.98],[861.4,310.98],[861.4,310.98],[861.39,310.98],[861.39,310.98],[861.39,310.97],[861.39,310.97],[861.39,310.97],[861.38,310.97],[861.38,310.97],[861.38,310.97],[861.37,310.96],[861.37,310.96],[861.37,310.95],[861.37,310.95],[861.37,310.95],[861.36,310.95],[861.36,310.95],[861.36,310.96],[861.36,310.96],[861.37,310.97],[861.38,310.98],[861.38,310.99],[861.39,311],[861.39,311],[861.39,311],[861.4,311.01],[861.4,311.01],[861.4,311.01],[861.4,311.02],[861.41,311.03],[861.41,311.03],[861.41,311.04],[861.41,311.05],[861.41,311.05],[861.41,311.06],[861.41,311.06],[861.41,311.06],[861.41,311.07],[861.41,311.08],[861.41,311.09],[861.41,311.09],[861.41,311.1],[861.4,311.1],[861.4,311.1],[861.39,311.11],[861.39,311.11],[861.39,311.11],[861.39,311.12],[861.38,311.12],[861.38,311.13],[861.39,311.13],[861.39,311.13],[861.39,311.14],[861.38,311.14],[861.38,311.14],[861.38,311.15],[861.37,311.15],[861.37,311.16],[861.37,311.16],[861.36,311.17],[861.35,311.18],[861.35,311.18],[861.35,311.19],[861.35,311.19],[861.35,311.19],[861.34,311.2],[861.34,311.21],[861.33,311.21],[861.33,311.21],[861.33,311.22],[861.33,311.23],[861.33,311.24],[861.33,311.24],[861.32,311.24],[861.32,311.25],[861.32,311.26],[861.32,311.26],[861.31,311.26],[861.3,311.26],[861.3,311.26],[861.29,311.26],[861.29,311.26],[861.29,311.27],[861.29,311.28],[861.29,311.28],[861.28,311.28],[861.28,311.28],[861.28,311.29],[861.27,311.29],[861.26,311.3],[861.26,311.3],[861.26,311.3],[861.26,311.31],[861.26,311.31],[861.25,311.31],[861.24,311.31],[861.24,311.32],[861.23,311.33],[861.23,311.33],[861.22,311.34],[861.22,311.34],[861.21,311.35],[861.21,311.35],[861.2,311.36],[861.2,311.37],[861.2,311.37],[861.19,311.37],[861.19,311.37],[861.18,311.37],[861.18,311.37],[861.17,311.37],[861.17,311.36],[861.16,311.36],[861.16,311.36],[861.16,311.36],[861.15,311.35],[861.15,311.35],[861.15,311.35],[861.14,311.35],[861.14,311.35],[861.13,311.35],[861.12,311.36],[861.12,311.36],[861.11,311.35],[861.1,311.35],[861.1,311.35],[861.1,311.34],[861.1,311.34],[861.1,311.33],[861.09,311.33],[861.09,311.32],[861.09,311.32],[861.09,311.32],[861.09,311.32],[861.09,311.32],[861.09,311.32],[861.08,311.31],[861.08,311.31],[861.08,311.3],[861.08,311.3],[861.08,311.3],[861.08,311.29],[861.08,311.29],[861.08,311.29],[861.08,311.29],[861.08,311.29],[861.08,311.29],[861.08,311.28],[861.08,311.28],[861.08,311.28],[861.08,311.28],[861.07,311.29],[861.07,311.29],[861.07,311.28],[861.07,311.28],[861.07,311.28],[861.06,311.28],[861.06,311.28],[861.06,311.28],[861.06,311.28],[861.06,311.28],[861.06,311.29],[861.05,311.29],[861.05,311.29],[861.05,311.29],[861.05,311.29],[861.05,311.29],[861.05,311.29],[861.05,311.29],[861.05,311.29],[861.04,311.29],[861.04,311.29],[861.03,311.29],[861.03,311.29],[861.03,311.29],[861.02,311.29],[861.02,311.29],[861.02,311.28],[861.01,311.28],[861,311.29],[861,311.29],[861,311.29],[860.99,311.29],[860.98,311.29],[860.98,311.29],[860.98,311.29],[860.98,311.29],[860.97,311.29],[860.97,311.29],[860.97,311.29],[860.96,311.29],[860.96,311.29],[860.96,311.29],[860.96,311.29],[860.96,311.29],[860.96,311.29],[860.96,311.29],[860.95,311.29],[860.95,311.29],[860.95,311.29],[860.95,311.3],[860.94,311.3],[860.94,311.3],[860.94,311.31],[860.94,311.31],[860.93,311.31],[860.93,311.32],[860.93,311.32],[860.93,311.32],[860.92,311.32],[860.92,311.32],[860.92,311.32],[860.92,311.32],[860.91,311.32],[860.9,311.32],[860.9,311.32],[860.9,311.32],[860.89,311.33],[860.89,311.34],[860.89,311.34],[860.88,311.34],[860.88,311.34],[860.87,311.35],[860.87,311.35],[860.87,311.35],[860.86,311.35],[860.85,311.35],[860.84,311.35],[860.84,311.35],[860.83,311.36],[860.83,311.36],[860.82,311.36],[860.82,311.36],[860.81,311.36],[860.81,311.36],[860.81,311.36],[860.81,311.36],[860.8,311.36],[860.8,311.36],[860.79,311.36],[860.79,311.36],[860.78,311.36],[860.78,311.36],[860.77,311.36],[860.76,311.36],[860.75,311.36],[860.75,311.36],[860.74,311.36],[860.74,311.37],[860.73,311.37],[860.73,311.37],[860.72,311.37],[860.71,311.38],[860.71,311.38],[860.71,311.38],[860.7,311.38],[860.7,311.38],[860.7,311.38],[860.7,311.38],[860.7,311.38],[860.7,311.38],[860.69,311.38],[860.69,311.38],[860.69,311.38],[860.69,311.38],[860.69,311.38],[860.69,311.38],[860.68,311.38],[860.68,311.38],[860.68,311.38],[860.68,311.38],[860.68,311.38],[860.68,311.38],[860.68,311.38],[860.68,311.38],[860.68,311.38],[860.67,311.38],[860.67,311.38],[860.67,311.38],[860.67,311.38],[860.66,311.38],[860.66,311.38],[860.66,311.37],[860.66,311.37],[860.66,311.36],[860.65,311.36],[860.65,311.36],[860.65,311.36],[860.65,311.36],[860.64,311.36],[860.64,311.36],[860.64,311.37],[860.63,311.36],[860.63,311.36],[860.63,311.36],[860.63,311.35],[860.62,311.34],[860.62,311.34],[860.62,311.34],[860.62,311.34],[860.62,311.34],[860.62,311.34],[860.62,311.33],[860.62,311.33],[860.62,311.33],[860.62,311.33],[860.62,311.33],[860.62,311.32],[860.62,311.32],[860.61,311.32],[860.61,311.31],[860.61,311.31],[860.61,311.31],[860.61,311.31],[860.61,311.3],[860.61,311.3],[860.6,311.3],[860.6,311.3],[860.6,311.3],[860.6,311.3],[860.6,311.3],[860.6,311.3],[860.59,311.29],[860.59,311.29],[860.59,311.29],[860.58,311.29],[860.58,311.28],[860.59,311.28],[860.59,311.28],[860.6,311.28],[860.6,311.27],[860.6,311.27],[860.6,311.27],[860.6,311.27],[860.61,311.27],[860.61,311.27],[860.61,311.27],[860.61,311.27],[860.61,311.27],[860.61,311.27],[860.61,311.27],[860.61,311.26],[860.61,311.26],[860.61,311.26],[860.61,311.26],[860.61,311.26],[860.61,311.26],[860.61,311.26],[860.61,311.26],[860.61,311.26],[860.61,311.25],[860.61,311.25],[860.61,311.25],[860.61,311.25],[860.61,311.25],[860.61,311.25],[860.61,311.25],[860.61,311.24],[860.61,311.24],[860.61,311.24],[860.61,311.24],[860.61,311.24],[860.61,311.24],[860.61,311.24],[860.61,311.24],[860.61,311.23],[860.61,311.23],[860.61,311.23],[860.61,311.23],[860.61,311.23],[860.61,311.23],[860.61,311.22],[860.61,311.22],[860.61,311.22],[860.61,311.22],[860.61,311.21],[860.6,311.21],[860.6,311.21],[860.6,311.2],[860.6,311.2],[860.6,311.2],[860.6,311.2],[860.6,311.2],[860.6,311.19],[860.6,311.19],[860.6,311.19],[860.6,311.19],[860.6,311.19],[860.6,311.18],[860.6,311.18],[860.6,311.18],[860.6,311.18],[860.6,311.18],[860.6,311.17],[860.6,311.17],[860.59,311.17],[860.59,311.17],[860.59,311.16],[860.59,311.16],[860.59,311.16],[860.59,311.15],[860.59,311.15],[860.59,311.15],[860.58,311.15],[860.58,311.15],[860.58,311.15],[860.58,311.15],[860.58,311.15],[860.58,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.16],[860.56,311.16],[860.56,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.57,311.15],[860.56,311.15],[860.56,311.15],[860.56,311.15],[860.56,311.15],[860.56,311.15],[860.56,311.15],[860.56,311.15],[860.56,311.15],[860.56,311.14],[860.57,311.14],[860.57,311.14],[860.57,311.14],[860.57,311.14],[860.57,311.14],[860.56,311.14],[860.56,311.14],[860.56,311.14],[860.56,311.14],[860.55,311.14],[860.55,311.14],[860.54,311.14],[860.53,311.14],[860.53,311.13],[860.53,311.13],[860.52,311.13],[860.52,311.13],[860.52,311.13],[860.51,311.13],[860.51,311.13],[860.51,311.12],[860.5,311.11],[860.5,311.11],[860.49,311.11],[860.49,311.1],[860.49,311.1],[860.47,311.1],[860.47,311.1],[860.47,311.1],[860.47,311.09],[860.47,311.09],[860.47,311.09],[860.47,311.09],[860.46,311.09],[860.46,311.09],[860.46,311.08],[860.45,311.07],[860.45,311.06],[860.45,311.06],[860.45,311.06],[860.44,311.06],[860.44,311.05],[860.44,311.05],[860.44,311.05],[860.44,311.05],[860.44,311.05],[860.43,311.04],[860.42,311.04],[860.41,311.04],[860.4,311.05],[860.4,311.05],[860.4,311.05],[860.4,311.05],[860.4,311.05],[860.4,311.05],[860.4,311.05],[860.39,311.05],[860.39,311.05],[860.39,311.05],[860.39,311.05],[860.39,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.05],[860.38,311.04],[860.38,311.05],[860.37,311.05],[860.37,311.05],[860.37,311.05],[860.37,311.04],[860.37,311.05],[860.37,311.05],[860.37,311.04],[860.37,311.04],[860.37,311.05],[860.37,311.05],[860.37,311.05],[860.37,311.04],[860.37,311.04],[860.37,311.04],[860.37,311.04],[860.37,311.04],[860.37,311.04],[860.37,311.04],[860.37,311.04],[860.36,311.04],[860.36,311.04],[860.36,311.04],[860.36,311.04],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.04],[860.35,311.04],[860.35,311.04],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.35,311.05],[860.34,311.05],[860.34,311.05],[860.34,311.04],[860.34,311.04],[860.34,311.04],[860.34,311.04],[860.34,311.04],[860.34,311.04],[860.34,311.04],[860.34,311.04],[860.34,311.04],[860.34,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.33,311.05],[860.32,311.05],[860.32,311.05],[860.32,311.05],[860.32,311.05],[860.32,311.05],[860.32,311.05],[860.31,311.05],[860.31,311.06],[860.31,311.06],[860.31,311.05],[860.31,311.05],[860.3,311.05],[860.3,311.05],[860.3,311.05],[860.3,311.05],[860.3,311.05],[860.3,311.05],[860.3,311.05],[860.3,311.05],[860.29,311.04],[860.29,311.04],[860.29,311.04],[860.29,311.04],[860.28,311.04],[860.28,311.05],[860.27,311.05],[860.27,311.05],[860.27,311.06],[860.27,311.06],[860.27,311.06],[860.26,311.06],[860.26,311.06],[860.25,311.06],[860.25,311.06],[860.25,311.06],[860.25,311.06],[860.24,311.06],[860.24,311.06],[860.24,311.06],[860.24,311.07],[860.24,311.07],[860.24,311.07],[860.22,311.07],[860.22,311.07],[860.21,311.08],[860.2,311.08],[860.2,311.09],[860.19,311.09],[860.19,311.08],[860.19,311.08],[860.19,311.09],[860.19,311.08],[860.18,311.09],[860.18,311.09],[860.18,311.09],[860.18,311.09],[860.18,311.1],[860.18,311.1],[860.18,311.1],[860.18,311.1],[860.17,311.11],[860.17,311.11],[860.17,311.11],[860.17,311.11],[860.17,311.11],[860.17,311.11],[860.17,311.11],[860.17,311.12],[860.16,311.12],[860.16,311.12],[860.16,311.13],[860.16,311.14],[860.16,311.14],[860.16,311.15],[860.16,311.15],[860.16,311.16],[860.16,311.16],[860.16,311.16],[860.16,311.16],[860.16,311.16],[860.16,311.16],[860.16,311.17],[860.16,311.17],[860.16,311.17],[860.17,311.17],[860.17,311.17],[860.16,311.18],[860.16,311.18],[860.16,311.18],[860.16,311.18],[860.15,311.18],[860.15,311.18],[860.15,311.18],[860.15,311.18],[860.15,311.18],[860.15,311.19],[860.15,311.19],[860.14,311.19],[860.14,311.19],[860.14,311.19],[860.14,311.19],[860.14,311.2],[860.14,311.2],[860.14,311.2],[860.14,311.2],[860.14,311.2],[860.14,311.21],[860.14,311.21],[860.14,311.21],[860.15,311.22],[860.15,311.22],[860.15,311.22],[860.15,311.22],[860.14,311.22],[860.14,311.22],[860.14,311.22],[860.13,311.22],[860.13,311.22],[860.13,311.22],[860.13,311.22],[860.13,311.22],[860.13,311.23],[860.13,311.23],[860.14,311.23],[860.14,311.23],[860.14,311.23],[860.14,311.23],[860.14,311.24],[860.14,311.24],[860.14,311.24],[860.13,311.24],[860.13,311.24],[860.13,311.24],[860.13,311.24],[860.13,311.24],[860.13,311.24],[860.13,311.24],[860.13,311.24],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.25],[860.13,311.26],[860.13,311.26],[860.13,311.26],[860.13,311.26],[860.12,311.27],[860.12,311.27],[860.11,311.27],[860.11,311.28],[860.11,311.28],[860.1,311.28],[860.09,311.28],[860.09,311.28],[860.09,311.28],[860.08,311.29],[860.08,311.29],[860.08,311.3],[860.07,311.31],[860.07,311.31],[860.06,311.32],[860.05,311.32],[860.05,311.33],[860.05,311.33],[860.05,311.33],[860.04,311.33],[860.04,311.34],[860.04,311.34],[860.03,311.34],[860.02,311.34],[860.02,311.34],[860.01,311.35],[860.01,311.35],[860.01,311.35],[860.01,311.35],[860,311.36],[859.99,311.36],[859.98,311.37],[859.98,311.37],[859.97,311.36],[859.96,311.36],[859.95,311.36],[859.95,311.36],[859.95,311.36],[859.95,311.36],[859.95,311.37],[859.95,311.37],[859.94,311.37],[859.94,311.37],[859.94,311.37],[859.94,311.36],[859.94,311.36],[859.94,311.36],[859.93,311.36],[859.93,311.36],[859.93,311.36],[859.93,311.36],[859.92,311.37],[859.92,311.37],[859.91,311.37],[859.91,311.37],[859.91,311.37],[859.91,311.37],[859.9,311.37],[859.9,311.37],[859.9,311.37],[859.89,311.37],[859.89,311.37],[859.89,311.37],[859.88,311.37],[859.88,311.37],[859.88,311.37],[859.87,311.37],[859.87,311.37],[859.87,311.37],[859.87,311.37],[859.87,311.37],[859.87,311.37],[859.88,311.38],[859.88,311.38],[859.88,311.38],[859.88,311.38],[859.88,311.38],[859.88,311.38],[859.88,311.39],[859.88,311.39],[859.88,311.39],[859.88,311.39],[859.88,311.4],[859.88,311.4],[859.88,311.4],[859.88,311.4],[859.88,311.41],[859.88,311.41],[859.88,311.42],[859.89,311.42],[859.89,311.43],[859.88,311.43],[859.88,311.43],[859.88,311.43],[859.88,311.44],[859.87,311.44],[859.87,311.44],[859.87,311.45],[859.87,311.45],[859.87,311.45],[859.87,311.46],[859.87,311.47],[859.86,311.47],[859.86,311.47],[859.86,311.48],[859.86,311.48],[859.86,311.48],[859.85,311.49],[859.85,311.49],[859.85,311.5],[859.85,311.5],[859.85,311.5],[859.85,311.51],[859.85,311.52],[859.85,311.52],[859.85,311.53],[859.85,311.53],[859.85,311.54],[859.85,311.54],[859.85,311.54],[859.85,311.55],[859.85,311.55],[859.85,311.55],[859.85,311.55],[859.85,311.55],[859.85,311.55],[859.85,311.56],[859.85,311.56],[859.85,311.57],[859.85,311.58],[859.85,311.59],[859.85,311.59],[859.85,311.59],[859.85,311.6],[859.85,311.61],[859.85,311.61],[859.85,311.61],[859.85,311.61],[859.85,311.61],[859.84,311.62],[859.84,311.62],[859.84,311.63],[859.84,311.63],[859.84,311.64],[859.84,311.64],[859.84,311.65],[859.85,311.65],[859.85,311.65],[859.85,311.65],[859.85,311.65],[859.85,311.66],[859.84,311.66],[859.84,311.66],[859.84,311.66],[859.84,311.66],[859.84,311.66],[859.83,311.66],[859.83,311.67],[859.83,311.67],[859.83,311.68],[859.83,311.69],[859.83,311.69],[859.83,311.69],[859.83,311.69],[859.83,311.69],[859.83,311.7],[859.83,311.7],[859.83,311.7],[859.84,311.7],[859.84,311.71],[859.84,311.71],[859.84,311.72],[859.84,311.72],[859.84,311.72],[859.84,311.72],[859.84,311.72],[859.83,311.73],[859.83,311.73],[859.83,311.73],[859.83,311.73],[859.83,311.73],[859.83,311.73],[859.83,311.73],[859.83,311.74],[859.83,311.74],[859.83,311.74],[859.82,311.74],[859.82,311.74],[859.82,311.74],[859.82,311.75],[859.81,311.75],[859.8,311.75],[859.8,311.75],[859.8,311.75],[859.8,311.76],[859.8,311.76],[859.8,311.76],[859.79,311.76],[859.79,311.76],[859.79,311.77],[859.79,311.77],[859.78,311.78],[859.78,311.78],[859.78,311.77],[859.78,311.77],[859.79,311.77],[859.79,311.77],[859.79,311.77],[859.79,311.77],[859.79,311.77],[859.78,311.77],[859.78,311.77],[859.77,311.78],[859.77,311.78],[859.76,311.78],[859.76,311.78],[859.75,311.78],[859.75,311.78],[859.75,311.79],[859.74,311.79],[859.74,311.79],[859.74,311.79],[859.74,311.79],[859.73,311.79],[859.73,311.78],[859.73,311.78],[859.73,311.78],[859.73,311.78],[859.73,311.79],[859.73,311.79],[859.73,311.79],[859.73,311.79],[859.72,311.79],[859.72,311.79],[859.72,311.79],[859.72,311.79],[859.71,311.79],[859.71,311.79],[859.71,311.8],[859.7,311.8],[859.7,311.8],[859.7,311.8],[859.7,311.8],[859.71,311.8],[859.71,311.8],[859.71,311.8],[859.71,311.79],[859.71,311.8],[859.71,311.8],[859.71,311.8],[859.71,311.8],[859.71,311.81],[859.71,311.81],[859.71,311.81],[859.71,311.81],[859.71,311.82],[859.71,311.82],[859.71,311.82],[859.71,311.82],[859.71,311.82],[859.71,311.82],[859.71,311.82],[859.71,311.82],[859.71,311.82],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.71,311.83],[859.72,311.84],[859.72,311.85],[859.72,311.85],[859.72,311.85],[859.72,311.85],[859.72,311.86],[859.72,311.86],[859.72,311.86],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.87],[859.72,311.88],[859.72,311.88],[859.72,311.88],[859.72,311.89],[859.72,311.89],[859.72,311.89],[859.72,311.9],[859.73,311.9],[859.73,311.9],[859.72,311.9],[859.72,311.9],[859.72,311.9],[859.72,311.91],[859.73,311.91],[859.73,311.91],[859.73,311.91],[859.73,311.9],[859.73,311.9],[859.73,311.9],[859.73,311.9],[859.73,311.9],[859.73,311.91],[859.73,311.91],[859.73,311.91],[859.73,311.92],[859.73,311.92],[859.73,311.92],[859.73,311.92],[859.73,311.93],[859.73,311.93],[859.73,311.92],[859.73,311.92],[859.73,311.92],[859.73,311.92],[859.73,311.93],[859.73,311.93],[859.73,311.93],[859.73,311.94],[859.73,311.94],[859.74,311.94],[859.74,311.95],[859.74,311.94],[859.74,311.94],[859.74,311.94],[859.74,311.94],[859.74,311.94],[859.74,311.94],[859.74,311.94],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.74,311.95],[859.75,311.95],[859.75,311.95],[859.75,311.95],[859.75,311.95],[859.75,311.95],[859.75,311.95],[859.75,311.95],[859.75,311.96],[859.75,311.96],[859.75,311.96],[859.75,311.96],[859.75,311.96],[859.75,311.96],[859.75,311.96],[859.75,311.96],[859.75,311.96],[859.76,311.96],[859.76,311.97],[859.76,311.97],[859.76,311.97],[859.76,311.97],[859.76,311.98],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,311.99],[859.76,312],[859.77,311.99],[859.77,311.99],[859.77,311.99],[859.77,311.99],[859.77,311.99],[859.77,311.99],[859.77,311.99],[859.77,311.99],[859.77,311.99],[859.77,312],[859.77,312],[859.76,312],[859.76,312.01],[859.76,312.01],[859.77,312.01],[859.77,312.01],[859.77,312.02],[859.77,312.02],[859.77,312.02],[859.77,312.02],[859.77,312.02],[859.77,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.02],[859.76,312.03],[859.76,312.03],[859.76,312.03],[859.77,312.04],[859.77,312.04],[859.77,312.04],[859.77,312.04],[859.77,312.04],[859.77,312.05],[859.76,312.05],[859.76,312.05],[859.76,312.05],[859.76,312.05],[859.76,312.05],[859.75,312.05],[859.75,312.05],[859.75,312.05],[859.75,312.06],[859.75,312.06],[859.74,312.06],[859.74,312.07],[859.74,312.07],[859.74,312.07],[859.74,312.07],[859.74,312.07],[859.74,312.07],[859.74,312.07],[859.74,312.07],[859.74,312.07],[859.73,312.08],[859.73,312.08],[859.73,312.08],[859.73,312.08],[859.73,312.09],[859.73,312.09],[859.73,312.09],[859.73,312.09],[859.73,312.09],[859.73,312.1],[859.74,312.1],[859.74,312.1],[859.74,312.1],[859.74,312.1],[859.73,312.11],[859.73,312.11],[859.73,312.11],[859.72,312.12],[859.72,312.12],[859.72,312.12],[859.72,312.12],[859.73,312.13],[859.73,312.13],[859.73,312.13],[859.73,312.13],[859.72,312.13],[859.72,312.13],[859.72,312.14],[859.73,312.14],[859.73,312.14],[859.73,312.14],[859.73,312.14],[859.73,312.14],[859.74,312.15],[859.74,312.15],[859.74,312.15],[859.74,312.15],[859.73,312.15],[859.73,312.15],[859.73,312.15],[859.73,312.15],[859.73,312.15],[859.73,312.15],[859.73,312.15],[859.72,312.15],[859.72,312.15],[859.72,312.16],[859.72,312.16],[859.72,312.16],[859.72,312.15],[859.72,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.15],[859.71,312.16],[859.72,312.16],[859.72,312.16],[859.72,312.16],[859.72,312.16],[859.72,312.16],[859.72,312.16],[859.73,312.16],[859.73,312.16],[859.73,312.16],[859.73,312.16],[859.73,312.16],[859.73,312.17],[859.74,312.17],[859.74,312.17],[859.74,312.17],[859.74,312.17],[859.75,312.17],[859.75,312.17],[859.75,312.17],[859.75,312.17],[859.76,312.18],[859.76,312.18],[859.76,312.18],[859.76,312.18],[859.76,312.18],[859.76,312.18],[859.76,312.19],[859.76,312.19],[859.76,312.19],[859.76,312.19],[859.76,312.19],[859.76,312.18],[859.77,312.18],[859.77,312.18],[859.77,312.18],[859.77,312.18],[859.77,312.18],[859.78,312.18],[859.78,312.18],[859.78,312.18],[859.78,312.18],[859.78,312.18],[859.79,312.18],[859.79,312.18],[859.79,312.18],[859.8,312.18],[859.8,312.18],[859.8,312.18],[859.8,312.19],[859.8,312.19],[859.8,312.19],[859.8,312.19],[859.8,312.2],[859.79,312.2],[859.79,312.2],[859.79,312.2],[859.79,312.21],[859.79,312.21],[859.79,312.21],[859.79,312.21],[859.79,312.22],[859.79,312.22],[859.79,312.22],[859.79,312.22],[859.8,312.23],[859.8,312.23],[859.8,312.23],[859.8,312.23],[859.79,312.23],[859.79,312.23],[859.79,312.23],[859.79,312.23],[859.79,312.24],[859.79,312.24],[859.79,312.23],[859.79,312.23],[859.78,312.23],[859.78,312.24],[859.79,312.24],[859.78,312.24],[859.78,312.24],[859.78,312.24],[859.78,312.24],[859.78,312.24],[859.78,312.24],[859.77,312.24],[859.77,312.24],[859.78,312.24],[859.78,312.25],[859.78,312.25],[859.78,312.25],[859.77,312.25],[859.77,312.25],[859.77,312.25],[859.77,312.25],[859.77,312.25],[859.77,312.25],[859.77,312.25],[859.76,312.25],[859.76,312.25],[859.76,312.25],[859.76,312.25],[859.76,312.25],[859.76,312.25],[859.76,312.25],[859.75,312.25],[859.75,312.25],[859.75,312.25],[859.74,312.25],[859.74,312.25],[859.74,312.25],[859.74,312.25],[859.74,312.26],[859.74,312.26],[859.74,312.26],[859.75,312.26],[859.75,312.27],[859.75,312.27],[859.75,312.27],[859.75,312.27],[859.75,312.28],[859.75,312.28],[859.75,312.28],[859.75,312.28],[859.75,312.28],[859.76,312.28],[859.76,312.29],[859.76,312.29],[859.76,312.29],[859.76,312.29],[859.76,312.29],[859.76,312.29],[859.76,312.29],[859.76,312.29],[859.76,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.77,312.28],[859.78,312.28],[859.78,312.28],[859.78,312.28],[859.78,312.28],[859.77,312.28],[859.77,312.29],[859.77,312.29],[859.77,312.29],[859.77,312.29],[859.77,312.3],[859.77,312.3],[859.77,312.3],[859.77,312.3],[859.76,312.3],[859.76,312.31],[859.76,312.31],[859.77,312.31],[859.77,312.31],[859.77,312.31],[859.77,312.31],[859.77,312.31],[859.77,312.32],[859.77,312.32],[859.77,312.32],[859.77,312.32],[859.78,312.32],[859.78,312.32],[859.78,312.32],[859.78,312.32],[859.78,312.31],[859.79,312.3],[859.79,312.3],[859.79,312.3],[859.79,312.3],[859.79,312.3],[859.79,312.3],[859.79,312.31],[859.79,312.31],[859.79,312.32],[859.79,312.32],[859.79,312.32],[859.79,312.33],[859.79,312.33],[859.79,312.33],[859.78,312.33],[859.78,312.33],[859.78,312.34],[859.78,312.34],[859.78,312.34],[859.78,312.34],[859.78,312.35],[859.78,312.35],[859.78,312.35],[859.79,312.35],[859.79,312.35],[859.79,312.35],[859.79,312.35],[859.79,312.35],[859.78,312.35],[859.78,312.36],[859.78,312.36],[859.78,312.36],[859.78,312.36],[859.77,312.36],[859.77,312.36],[859.77,312.36],[859.77,312.36],[859.77,312.37],[859.77,312.37],[859.77,312.37],[859.77,312.37],[859.76,312.36],[859.76,312.36],[859.76,312.36],[859.76,312.36],[859.76,312.36],[859.76,312.37],[859.76,312.37],[859.76,312.38],[859.76,312.38],[859.76,312.39],[859.76,312.39],[859.77,312.4],[859.77,312.4],[859.77,312.4],[859.77,312.4],[859.77,312.4],[859.77,312.41],[859.77,312.41],[859.77,312.41],[859.77,312.42],[859.77,312.42],[859.77,312.42],[859.77,312.43],[859.77,312.43],[859.77,312.43],[859.77,312.43],[859.77,312.44],[859.77,312.44],[859.77,312.44],[859.77,312.45],[859.77,312.45],[859.77,312.45],[859.77,312.45],[859.77,312.45],[859.77,312.46],[859.77,312.46],[859.77,312.46],[859.77,312.47],[859.77,312.47],[859.77,312.47],[859.77,312.47],[859.77,312.47],[859.76,312.47],[859.76,312.47],[859.76,312.48],[859.76,312.48],[859.76,312.49],[859.76,312.5],[859.76,312.5],[859.76,312.5],[859.75,312.5],[859.75,312.5],[859.74,312.51],[859.73,312.51],[859.73,312.52],[859.73,312.52],[859.74,312.52],[859.74,312.52],[859.74,312.52],[859.75,312.52],[859.75,312.52],[859.76,312.52],[859.77,312.53],[859.77,312.53],[859.78,312.53],[859.78,312.54],[859.78,312.54],[859.78,312.55],[859.78,312.55],[859.78,312.56],[859.77,312.56],[859.77,312.57],[859.77,312.57],[859.78,312.57],[859.78,312.57],[859.79,312.58],[859.79,312.58],[859.8,312.58],[859.8,312.58],[859.8,312.59],[859.8,312.59],[859.8,312.59],[859.81,312.59],[859.81,312.59],[859.81,312.59],[859.81,312.59],[859.81,312.59],[859.81,312.59],[859.82,312.6],[859.82,312.6],[859.82,312.6],[859.82,312.61],[859.82,312.61],[859.82,312.61],[859.82,312.62],[859.82,312.63],[859.82,312.63],[859.82,312.64],[859.82,312.64],[859.82,312.64],[859.83,312.64],[859.83,312.64],[859.83,312.65],[859.83,312.65],[859.83,312.65],[859.84,312.66],[859.83,312.66],[859.83,312.66],[859.83,312.66],[859.81,312.66],[859.81,312.65],[859.8,312.65],[859.8,312.64],[859.8,312.63],[859.79,312.63],[859.79,312.64],[859.79,312.64],[859.78,312.65],[859.78,312.65],[859.78,312.65],[859.78,312.66],[859.78,312.67],[859.77,312.68],[859.77,312.68],[859.77,312.69],[859.78,312.69],[859.78,312.7],[859.78,312.7],[859.78,312.71],[859.78,312.71],[859.79,312.73],[859.79,312.73],[859.79,312.73],[859.8,312.73],[859.8,312.73],[859.81,312.72],[859.81,312.71],[859.82,312.71],[859.82,312.71],[859.82,312.71],[859.82,312.72],[859.82,312.72],[859.82,312.72],[859.81,312.73],[859.81,312.74],[859.8,312.74],[859.8,312.74],[859.79,312.76],[859.79,312.76],[859.79,312.77],[859.78,312.77],[859.78,312.77],[859.78,312.77],[859.77,312.78],[859.77,312.78],[859.78,312.78],[859.78,312.79],[859.78,312.79],[859.78,312.8],[859.78,312.81],[859.78,312.81],[859.78,312.82],[859.78,312.83],[859.79,312.83],[859.79,312.84],[859.8,312.85],[859.8,312.85],[859.81,312.86],[859.81,312.87],[859.81,312.87],[859.81,312.87],[859.82,312.87],[859.82,312.88],[859.83,312.89],[859.83,312.89],[859.84,312.91],[859.84,312.91],[859.84,312.92],[859.84,312.92],[859.84,312.92],[859.85,312.92],[859.85,312.93],[859.86,312.94],[859.86,312.94],[859.86,312.94],[859.86,312.95],[859.86,312.95],[859.87,312.95],[859.87,312.96],[859.87,312.96],[859.88,312.96],[859.88,312.96],[859.88,312.97],[859.88,312.98],[859.89,312.99],[859.89,312.99],[859.89,313],[859.89,313],[859.89,313.01],[859.89,313.01],[859.89,313.02],[859.89,313.03],[859.89,313.03],[859.89,313.04],[859.88,313.04],[859.88,313.05],[859.87,313.06],[859.87,313.07],[859.86,313.09],[859.85,313.09],[859.85,313.1],[859.84,313.1],[859.84,313.11],[859.84,313.14],[859.84,313.14],[859.84,313.15],[859.84,313.17],[859.84,313.17],[859.84,313.17],[859.84,313.18],[859.83,313.19],[859.82,313.2],[859.82,313.21],[859.82,313.22],[859.83,313.24],[859.83,313.24],[859.83,313.26],[859.83,313.27],[859.83,313.27],[859.83,313.27],[859.83,313.28],[859.84,313.28],[859.84,313.29],[859.84,313.29],[859.84,313.3],[859.83,313.3],[859.83,313.31],[859.82,313.32],[859.82,313.33],[859.82,313.33],[859.82,313.33],[859.83,313.34],[859.83,313.34],[859.83,313.34],[859.83,313.35],[859.83,313.35],[859.84,313.36],[859.84,313.36],[859.84,313.37],[859.84,313.37],[859.85,313.38],[859.85,313.38],[859.85,313.38],[859.86,313.4],[859.86,313.41],[859.86,313.44],[859.86,313.45],[859.86,313.45],[859.85,313.46],[859.85,313.47],[859.85,313.47],[859.85,313.48],[859.85,313.49],[859.85,313.5],[859.85,313.51],[859.84,313.52],[859.84,313.53],[859.83,313.53],[859.82,313.54],[859.81,313.54],[859.8,313.55],[859.79,313.56],[859.78,313.57],[859.77,313.59],[859.76,313.6],[859.76,313.62],[859.76,313.62],[859.75,313.63],[859.74,313.64],[859.74,313.65],[859.72,313.67],[859.71,313.68],[859.71,313.68],[859.71,313.68],[859.72,313.7],[859.73,313.71],[859.74,313.72],[859.75,313.73],[859.76,313.74],[859.77,313.76],[859.78,313.76],[859.78,313.77],[859.77,313.78],[859.77,313.79],[859.77,313.79],[859.78,313.81],[859.78,313.82],[859.78,313.82],[859.79,313.82],[859.79,313.83],[859.8,313.83],[859.81,313.84],[859.82,313.84],[859.83,313.85],[859.84,313.87],[859.84,313.87],[859.86,313.87],[859.87,313.88],[859.87,313.88],[859.87,313.89],[859.87,313.9],[859.87,313.9],[859.87,313.91],[859.87,313.92],[859.87,313.93],[859.87,313.94],[859.87,313.94],[859.89,313.95],[859.89,313.95],[859.89,313.96],[859.9,313.97],[859.91,313.98],[859.92,313.99],[859.92,314],[859.92,314.01],[859.92,314.01],[859.92,314.02],[859.91,314.03],[859.91,314.03],[859.91,314.03],[859.91,314.04],[859.92,314.04],[859.93,314.05],[859.94,314.06],[859.95,314.07],[859.97,314.09],[859.97,314.09],[859.98,314.1],[859.99,314.1],[860,314.1],[860,314.11],[860,314.12],[860,314.12],[860,314.13],[860.01,314.14],[860.01,314.15],[860.01,314.15],[860.02,314.15],[860.02,314.15],[860.02,314.15],[860.03,314.15],[860.04,314.17],[860.04,314.17],[860.04,314.17],[860.03,314.18],[860.03,314.18],[860.02,314.19],[860.02,314.2],[860.02,314.21],[860.02,314.21],[860.03,314.23],[860.04,314.24],[860.04,314.25],[860.05,314.26],[860.05,314.26],[860.06,314.27],[860.06,314.28],[860.07,314.29],[860.07,314.31],[860.07,314.32],[860.08,314.35],[860.07,314.35],[860.07,314.35],[860.05,314.37],[860.04,314.38],[860.03,314.38],[860.02,314.38],[860.01,314.38],[860.01,314.37],[860,314.36],[859.99,314.36],[859.98,314.35],[859.98,314.35],[859.97,314.34],[859.97,314.34],[859.96,314.33],[859.96,314.33],[859.96,314.33],[859.95,314.32],[859.95,314.32],[859.94,314.32],[859.93,314.31],[859.93,314.31],[859.92,314.3],[859.92,314.3],[859.9,314.29],[859.89,314.28],[859.89,314.28],[859.88,314.28],[859.87,314.28],[859.86,314.27],[859.86,314.27],[859.85,314.25],[859.84,314.23],[859.84,314.22],[859.83,314.22],[859.82,314.22],[859.81,314.22],[859.8,314.23],[859.79,314.23],[859.78,314.24],[859.78,314.24],[859.77,314.24],[859.77,314.25],[859.76,314.25],[859.76,314.25],[859.75,314.25],[859.74,314.25],[859.73,314.25],[859.73,314.26],[859.71,314.27],[859.69,314.29],[859.68,314.3],[859.67,314.31],[859.66,314.33],[859.66,314.35],[859.65,314.37],[859.65,314.37],[859.65,314.37],[859.64,314.38],[859.63,314.39],[859.62,314.4],[859.61,314.4],[859.61,314.41],[859.6,314.41],[859.59,314.42],[859.59,314.41],[859.58,314.41],[859.58,314.41],[859.57,314.41],[859.57,314.4],[859.56,314.4],[859.56,314.4],[859.56,314.39],[859.56,314.39],[859.55,314.38],[859.55,314.37],[859.55,314.37],[859.55,314.36],[859.55,314.36],[859.54,314.34],[859.53,314.34],[859.5,314.32],[859.49,314.32],[859.47,314.32],[859.46,314.32],[859.46,314.32],[859.45,314.32],[859.45,314.32],[859.43,314.32],[859.43,314.31],[859.42,314.31],[859.41,314.31],[859.4,314.32],[859.39,314.34],[859.38,314.37],[859.37,314.39],[859.37,314.4],[859.37,314.41],[859.37,314.42],[859.38,314.43],[859.38,314.43],[859.38,314.44],[859.38,314.44],[859.38,314.45],[859.39,314.47],[859.39,314.48],[859.38,314.51],[859.38,314.52],[859.37,314.53],[859.36,314.54],[859.35,314.56],[859.33,314.58],[859.32,314.59],[859.3,314.6],[859.3,314.6],[859.28,314.6],[859.28,314.61],[859.27,314.61],[859.27,314.61],[859.25,314.61],[859.24,314.61],[859.22,314.61],[859.21,314.61],[859.2,314.61],[859.2,314.61],[859.19,314.61],[859.19,314.62],[859.18,314.62],[859.16,314.62],[859.16,314.62],[859.15,314.63],[859.15,314.63],[859.14,314.64],[859.13,314.65],[859.13,314.65],[859.12,314.65],[859.11,314.65],[859.1,314.66],[859.09,314.67],[859.07,314.68],[859.07,314.7],[859.06,314.71],[859.06,314.73],[859.06,314.74],[859.06,314.75],[859.05,314.76],[859.04,314.76],[859.03,314.77],[859.01,314.77],[859,314.77],[858.99,314.77],[858.99,314.77],[858.98,314.77],[858.98,314.77],[858.98,314.76],[858.97,314.75],[858.97,314.74],[858.97,314.73],[858.97,314.72],[858.97,314.72],[858.97,314.71],[858.97,314.7],[858.97,314.7],[858.97,314.69],[858.97,314.69],[858.96,314.68],[858.96,314.68],[858.96,314.67],[858.95,314.67],[858.95,314.67],[858.94,314.68],[858.94,314.68],[858.93,314.69],[858.92,314.69],[858.91,314.69],[858.9,314.69],[858.89,314.69],[858.88,314.69],[858.87,314.68],[858.87,314.69],[858.87,314.69],[858.86,314.69],[858.86,314.7],[858.85,314.71],[858.85,314.72],[858.85,314.73],[858.85,314.75],[858.85,314.76],[858.86,314.76],[858.86,314.77],[858.86,314.78],[858.86,314.78],[858.85,314.78],[858.84,314.78],[858.83,314.78],[858.81,314.8],[858.79,314.81],[858.77,314.81],[858.76,314.82],[858.75,314.82],[858.74,314.81],[858.73,314.81],[858.72,314.81],[858.72,314.81],[858.72,314.81],[858.7,314.8],[858.7,314.8],[858.7,314.79],[858.69,314.79],[858.69,314.79],[858.69,314.79],[858.68,314.77],[858.68,314.77],[858.68,314.77],[858.68,314.77],[858.67,314.77],[858.66,314.77],[858.65,314.77],[858.64,314.77],[858.63,314.78],[858.62,314.78],[858.61,314.79],[858.61,314.79],[858.6,314.8],[858.6,314.81],[858.6,314.82],[858.6,314.83],[858.6,314.84],[858.61,314.86],[858.61,314.87],[858.61,314.87],[858.61,314.87],[858.61,314.87],[858.6,314.88],[858.6,314.88],[858.59,314.88],[858.58,314.87],[858.57,314.87],[858.56,314.87],[858.56,314.86],[858.55,314.86],[858.54,314.86],[858.53,314.86],[858.51,314.86],[858.5,314.86],[858.49,314.86],[858.47,314.86],[858.46,314.86],[858.46,314.86],[858.45,314.86],[858.44,314.86],[858.44,314.86],[858.44,314.86],[858.44,314.86],[858.44,314.86],[858.44,314.86],[858.44,314.86],[858.43,314.86],[858.43,314.86],[858.42,314.86],[858.41,314.86],[858.4,314.87],[858.4,314.87],[858.4,314.87],[858.39,314.87],[858.38,314.88],[858.37,314.88],[858.36,314.88],[858.36,314.88],[858.35,314.88],[858.35,314.89],[858.34,314.89],[858.33,314.89],[858.33,314.9],[858.32,314.9],[858.32,314.9],[858.31,314.9],[858.3,314.91],[858.3,314.91],[858.3,314.91],[858.3,314.91],[858.3,314.91],[858.3,314.91],[858.3,314.92],[858.3,314.92],[858.3,314.92],[858.3,314.92],[858.3,314.92],[858.3,314.92],[858.3,314.92],[858.3,314.92],[858.3,314.93],[858.3,314.93],[858.29,314.94],[858.29,314.95],[858.29,314.95],[858.29,314.95],[858.29,314.95],[858.3,314.96],[858.3,314.96],[858.32,314.98],[858.32,314.98],[858.32,314.98],[858.32,314.99],[858.32,314.99],[858.33,314.99],[858.33,314.99],[858.33,315],[858.34,315.01],[858.34,315.01],[858.35,315.01],[858.35,315.01],[858.35,315.02],[858.35,315.02],[858.35,315.02],[858.35,315.03],[858.36,315.03],[858.36,315.04],[858.36,315.04],[858.37,315.05],[858.37,315.05],[858.38,315.07],[858.4,315.09],[858.4,315.09],[858.4,315.1],[858.4,315.11],[858.4,315.11],[858.4,315.11],[858.41,315.12],[858.41,315.13],[858.42,315.13],[858.42,315.14],[858.42,315.14],[858.42,315.15],[858.43,315.15],[858.43,315.15],[858.44,315.15],[858.45,315.17],[858.46,315.18],[858.46,315.18],[858.46,315.19],[858.47,315.19],[858.47,315.21],[858.47,315.22],[858.48,315.25],[858.48,315.25],[858.48,315.26],[858.48,315.26],[858.48,315.26],[858.48,315.27],[858.49,315.27],[858.49,315.28],[858.49,315.28],[858.49,315.28],[858.49,315.29],[858.49,315.29],[858.49,315.3],[858.49,315.3],[858.49,315.31],[858.49,315.32],[858.49,315.33],[858.49,315.33],[858.49,315.33],[858.49,315.33],[858.49,315.33],[858.49,315.34],[858.49,315.34],[858.49,315.35],[858.49,315.35],[858.48,315.35],[858.48,315.35],[858.48,315.36],[858.47,315.36],[858.47,315.36],[858.47,315.36],[858.47,315.36],[858.47,315.37],[858.47,315.37],[858.45,315.38],[858.45,315.38],[858.45,315.39],[858.44,315.39],[858.44,315.4],[858.44,315.4],[858.44,315.4],[858.44,315.41],[858.44,315.41],[858.43,315.41],[858.43,315.42],[858.42,315.43],[858.41,315.44],[858.41,315.45],[858.41,315.45],[858.4,315.46],[858.4,315.46],[858.39,315.46],[858.39,315.46],[858.39,315.46],[858.39,315.46],[858.39,315.46],[858.39,315.46],[858.38,315.47],[858.38,315.47],[858.38,315.47],[858.38,315.47],[858.37,315.47],[858.37,315.48],[858.37,315.48],[858.36,315.49],[858.36,315.49],[858.36,315.49],[858.36,315.49],[858.36,315.49],[858.35,315.5],[858.35,315.5],[858.34,315.51],[858.34,315.51],[858.33,315.51],[858.33,315.51],[858.33,315.51],[858.33,315.51],[858.32,315.52],[858.32,315.52],[858.32,315.52],[858.32,315.52],[858.31,315.53],[858.31,315.53],[858.31,315.53],[858.31,315.53],[858.3,315.54],[858.3,315.54],[858.3,315.54],[858.29,315.55],[858.29,315.55],[858.29,315.55],[858.29,315.55],[858.29,315.55],[858.29,315.56],[858.28,315.56],[858.28,315.56],[858.27,315.57],[858.27,315.57],[858.26,315.57],[858.26,315.58],[858.26,315.58],[858.26,315.58],[858.26,315.58],[858.26,315.58],[858.25,315.58],[858.25,315.58],[858.25,315.58],[858.25,315.58],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.59],[858.25,315.58],[858.25,315.58],[858.24,315.59],[858.24,315.59],[858.24,315.59],[858.23,315.59],[858.23,315.59],[858.23,315.59],[858.23,315.59],[858.24,315.59],[858.24,315.59],[858.24,315.59],[858.24,315.59],[858.24,315.59],[858.24,315.6],[858.25,315.6],[858.25,315.6],[858.25,315.6],[858.25,315.6],[858.25,315.6],[858.25,315.6],[858.25,315.6],[858.26,315.61],[858.26,315.61],[858.26,315.61],[858.26,315.61],[858.26,315.61],[858.25,315.61],[858.25,315.62],[858.25,315.62],[858.25,315.62],[858.25,315.62],[858.25,315.62],[858.25,315.61],[858.24,315.61],[858.23,315.61],[858.23,315.6],[858.22,315.6],[858.22,315.6],[858.22,315.6],[858.21,315.6],[858.21,315.6],[858.2,315.6],[858.19,315.6],[858.19,315.6],[858.19,315.6],[858.19,315.6],[858.19,315.6],[858.19,315.6],[858.2,315.61],[858.2,315.61],[858.2,315.61],[858.2,315.61],[858.2,315.61],[858.2,315.61],[858.2,315.62],[858.2,315.62],[858.2,315.62],[858.2,315.62],[858.2,315.62],[858.19,315.62],[858.19,315.62],[858.19,315.62],[858.19,315.62],[858.2,315.63],[858.2,315.63],[858.2,315.63],[858.21,315.64],[858.21,315.64],[858.21,315.64],[858.21,315.64],[858.21,315.65],[858.21,315.65],[858.21,315.65],[858.21,315.65],[858.21,315.65],[858.21,315.65],[858.21,315.65],[858.21,315.65],[858.2,315.66],[858.2,315.66],[858.2,315.66],[858.19,315.67],[858.19,315.67],[858.19,315.68],[858.19,315.68],[858.19,315.68],[858.19,315.69],[858.18,315.69],[858.18,315.69],[858.18,315.69],[858.18,315.69],[858.18,315.69],[858.18,315.69],[858.19,315.7],[858.19,315.7],[858.19,315.71],[858.19,315.71],[858.19,315.71],[858.19,315.72],[858.19,315.72],[858.19,315.72],[858.19,315.72],[858.19,315.73],[858.19,315.73],[858.19,315.73],[858.19,315.74],[858.19,315.74],[858.18,315.74],[858.18,315.74],[858.19,315.75],[858.19,315.75],[858.19,315.75],[858.19,315.75],[858.19,315.76],[858.19,315.76],[858.19,315.77],[858.19,315.77],[858.19,315.78],[858.19,315.78],[858.19,315.79],[858.19,315.79],[858.19,315.8],[858.19,315.8],[858.19,315.81],[858.19,315.81],[858.19,315.82],[858.19,315.82],[858.18,315.82],[858.18,315.82],[858.18,315.82],[858.18,315.83],[858.19,315.83],[858.19,315.83],[858.19,315.83],[858.19,315.83],[858.18,315.84],[858.18,315.85],[858.18,315.85],[858.18,315.85],[858.18,315.85],[858.18,315.86],[858.18,315.86],[858.18,315.86],[858.18,315.86],[858.18,315.86],[858.18,315.87],[858.18,315.87],[858.19,315.87],[858.19,315.87],[858.19,315.87],[858.19,315.88],[858.19,315.88],[858.19,315.89],[858.2,315.89],[858.2,315.89],[858.2,315.89],[858.2,315.9],[858.2,315.9],[858.2,315.91],[858.2,315.91],[858.2,315.91],[858.2,315.91],[858.2,315.91],[858.2,315.91],[858.2,315.92],[858.2,315.92],[858.2,315.92],[858.2,315.92],[858.2,315.92],[858.2,315.92],[858.2,315.92],[858.2,315.92],[858.21,315.92],[858.2,315.92],[858.21,315.92],[858.2,315.92],[858.21,315.93],[858.21,315.93],[858.21,315.93],[858.2,315.93],[858.2,315.93],[858.2,315.93],[858.2,315.93],[858.2,315.93],[858.2,315.93],[858.2,315.93],[858.2,315.94],[858.2,315.94],[858.2,315.94],[858.2,315.94],[858.2,315.94],[858.2,315.94],[858.2,315.95],[858.2,315.96],[858.2,315.96],[858.2,315.96],[858.19,315.96],[858.19,315.96],[858.19,315.96],[858.19,315.97],[858.19,315.97],[858.19,315.97],[858.19,315.98],[858.19,315.99],[858.2,315.99],[858.2,316],[858.2,316],[858.21,316.02],[858.21,316.02],[858.21,316.03],[858.2,316.03],[858.2,316.03],[858.2,316.03],[858.2,316.03],[858.2,316.03],[858.19,316.04],[858.19,316.04],[858.19,316.04],[858.19,316.05],[858.2,316.05],[858.2,316.06],[858.2,316.06],[858.2,316.07],[858.19,316.07],[858.19,316.07],[858.2,316.08],[858.2,316.08],[858.2,316.08],[858.2,316.09],[858.2,316.09],[858.19,316.09],[858.19,316.09],[858.19,316.1],[858.19,316.1],[858.19,316.1],[858.18,316.1],[858.18,316.1],[858.18,316.11],[858.18,316.11],[858.18,316.11],[858.18,316.11],[858.17,316.11],[858.17,316.12],[858.17,316.12],[858.17,316.12],[858.16,316.12],[858.15,316.12],[858.15,316.12],[858.15,316.12],[858.15,316.12],[858.14,316.12],[858.14,316.12],[858.14,316.13],[858.14,316.13],[858.13,316.12],[858.13,316.12],[858.13,316.12],[858.13,316.13],[858.12,316.13],[858.12,316.13],[858.12,316.13],[858.12,316.13],[858.12,316.14],[858.12,316.14],[858.12,316.15],[858.12,316.15],[858.12,316.15],[858.12,316.15],[858.12,316.16],[858.12,316.16],[858.13,316.16],[858.13,316.16],[858.13,316.16],[858.12,316.17],[858.12,316.18],[858.12,316.19],[858.12,316.19],[858.12,316.19],[858.12,316.2],[858.12,316.2],[858.12,316.2],[858.11,316.21],[858.11,316.21],[858.11,316.21],[858.11,316.21],[858.1,316.21],[858.1,316.21],[858.1,316.21],[858.09,316.21],[858.09,316.21],[858.09,316.21],[858.09,316.21],[858.09,316.22],[858.08,316.22],[858.08,316.22],[858.08,316.23],[858.08,316.23],[858.07,316.24],[858.07,316.24],[858.07,316.25],[858.07,316.26],[858.06,316.26],[858.06,316.26],[858.06,316.26],[858.05,316.27],[858.05,316.27],[858.05,316.27],[858.05,316.27],[858.05,316.27],[858.05,316.27],[858.05,316.28],[858.05,316.28],[858.05,316.28],[858.05,316.28],[858.05,316.28],[858.05,316.29],[858.05,316.29],[858.05,316.29],[858.05,316.29],[858.05,316.29],[858.05,316.31],[858.05,316.31],[858.04,316.31],[858.05,316.32],[858.04,316.32],[858.04,316.33],[858.04,316.34],[858.04,316.34],[858.04,316.34],[858.04,316.34],[858.04,316.34],[858.04,316.35],[858.03,316.35],[858.03,316.35],[858.03,316.35],[858.02,316.36],[858.02,316.36],[858.01,316.36],[858,316.37],[858,316.37],[858,316.38],[858,316.38],[858,316.38],[857.99,316.38],[857.99,316.38],[857.99,316.39],[857.97,316.42],[857.97,316.42],[857.97,316.43],[857.97,316.43],[857.97,316.43],[857.97,316.43],[857.97,316.43],[857.97,316.44],[857.97,316.44],[857.97,316.45],[857.97,316.45],[857.98,316.45],[857.98,316.45],[857.98,316.46],[857.98,316.46],[857.97,316.47],[857.97,316.49],[857.97,316.49],[857.97,316.49],[857.97,316.5],[857.97,316.5],[857.97,316.5],[857.97,316.5],[857.98,316.5],[857.98,316.5],[857.98,316.49],[857.99,316.48],[857.99,316.48],[857.99,316.48],[857.99,316.48],[857.99,316.48],[857.98,316.49],[857.98,316.5],[857.98,316.51],[857.98,316.51],[857.98,316.52],[857.98,316.52],[857.98,316.52],[857.98,316.53],[857.98,316.53],[857.98,316.53],[857.98,316.53],[857.98,316.54],[857.99,316.54],[857.99,316.55],[857.99,316.56],[857.99,316.56],[857.99,316.56],[857.99,316.57],[857.98,316.57],[857.98,316.57],[857.98,316.57],[857.98,316.58],[857.98,316.58],[857.99,316.59],[857.99,316.59],[858,316.6],[858,316.6],[858,316.61],[858,316.61],[858,316.62],[858,316.62],[858.01,316.63],[858.01,316.64],[858.01,316.65],[858.01,316.65],[858,316.66],[858,316.66],[858,316.66],[858,316.66],[858,316.66],[858.01,316.67],[858.01,316.67],[858.01,316.68],[858,316.68],[858,316.68],[858,316.69],[858,316.69],[858,316.69],[858,316.69],[858,316.7],[858,316.7],[858,316.7],[858,316.7],[858.01,316.7],[858.01,316.71],[858,316.71],[858,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.71],[858.01,316.72],[858.01,316.72],[858.01,316.72],[858.02,316.72],[858.02,316.72],[858.02,316.72],[858.02,316.72],[858.02,316.72],[858.02,316.72],[858.02,316.73],[858.02,316.73],[858.02,316.73],[858.02,316.73],[858.01,316.73],[858.01,316.73],[858.01,316.73],[858.01,316.73],[858.02,316.74],[858.02,316.74],[858.02,316.74],[858.02,316.75],[858.02,316.75],[858.02,316.75],[858.02,316.75],[858.02,316.75],[858.02,316.76],[858.02,316.76],[858.02,316.77],[858.02,316.77],[858.02,316.77],[858.02,316.77],[858.02,316.77],[858.01,316.78],[858.01,316.78],[858.01,316.78],[858.01,316.78],[858.01,316.78],[858,316.78],[858,316.78],[857.99,316.79],[857.99,316.79],[857.99,316.79],[857.99,316.79],[857.99,316.79],[857.98,316.79],[857.98,316.8],[857.98,316.8],[857.98,316.81],[857.98,316.81],[857.98,316.81],[857.98,316.81],[857.98,316.81],[857.98,316.82],[857.98,316.82],[857.97,316.82],[857.97,316.83],[857.97,316.83],[857.97,316.84],[857.97,316.84],[857.97,316.84],[857.97,316.84],[857.97,316.85],[857.97,316.85],[857.97,316.85],[857.97,316.85],[857.97,316.86],[857.97,316.88],[857.97,316.88],[857.97,316.88],[857.97,316.89],[857.97,316.9],[857.98,316.9],[857.98,316.9],[857.98,316.9],[857.98,316.91],[857.98,316.92],[857.98,316.92],[857.98,316.92],[857.98,316.93],[857.98,316.93],[857.98,316.93],[857.98,316.93],[857.98,316.93],[857.98,316.94],[857.98,316.94],[857.98,316.94],[857.99,316.94],[857.99,316.94],[857.99,316.94],[857.99,316.94],[857.99,316.94],[857.99,316.94],[857.99,316.94],[857.99,316.94],[857.98,316.94],[857.98,316.94],[857.97,316.94],[857.97,316.93],[857.97,316.93],[857.97,316.93],[857.97,316.93],[857.97,316.93],[857.97,316.93],[857.97,316.93],[857.97,316.93],[857.97,316.94],[857.97,316.94],[857.97,316.95],[857.97,316.95],[857.97,316.97],[857.98,316.98],[857.98,316.98],[857.98,316.99],[857.98,316.99],[857.98,316.99],[857.98,316.99],[857.98,316.99],[857.99,316.99],[857.99,316.99],[857.99,316.99],[857.99,317.01],[858,317.03],[858,317.03],[858,317.03],[857.99,317.03],[857.99,317.03],[857.97,317.02],[857.97,317.02],[857.97,317.02],[857.97,317.02],[857.97,317.02],[857.97,317.02],[857.98,317.04],[857.98,317.05],[857.98,317.05],[857.98,317.05],[857.98,317.07],[857.98,317.07],[857.97,317.09],[857.97,317.1],[857.96,317.11],[857.96,317.11],[857.96,317.11],[857.96,317.12],[857.97,317.12],[857.97,317.12],[857.97,317.13],[857.97,317.13],[857.96,317.13],[857.96,317.13],[857.96,317.14],[857.97,317.14],[857.97,317.14],[857.97,317.15],[857.97,317.15],[857.97,317.15],[857.98,317.15],[857.98,317.16],[857.98,317.16],[857.98,317.16],[857.98,317.16],[857.98,317.17],[857.99,317.17],[857.99,317.17],[857.99,317.18],[857.98,317.19],[857.98,317.19],[857.97,317.21],[857.95,317.25],[857.94,317.29],[857.94,317.29],[857.94,317.29],[857.95,317.35],[857.95,317.36],[857.9,317.47],[857.9,317.47],[857.9,317.48],[857.9,317.48],[857.9,317.48],[857.89,317.48],[857.89,317.48],[857.87,317.55],[857.86,317.58],[857.86,317.58],[857.85,317.58],[857.85,317.59],[857.84,317.59],[857.84,317.61],[857.84,317.62],[857.84,317.62],[857.86,317.66],[857.86,317.66],[857.86,317.66],[857.86,317.67],[857.85,317.72],[857.85,317.73],[857.85,317.73],[857.85,317.73],[857.85,317.74],[857.85,317.74],[857.85,317.75],[857.84,317.76],[857.83,317.77],[857.82,317.79],[857.81,317.8],[857.81,317.81],[857.81,317.81],[857.81,317.81],[857.8,317.81],[857.8,317.81],[857.79,317.82],[857.78,317.83],[857.78,317.84],[857.78,317.84],[857.77,317.84],[857.77,317.84],[857.77,317.85],[857.76,317.87],[857.76,317.87],[857.77,317.88],[857.77,317.88],[857.77,317.89],[857.78,317.89],[857.78,317.9],[857.77,317.9],[857.77,317.91],[857.77,317.92],[857.77,317.92],[857.76,317.93],[857.76,317.93],[857.75,317.94],[857.75,317.95],[857.74,317.96],[857.73,317.96],[857.72,317.98],[857.71,317.99],[857.71,317.99],[857.71,317.99],[857.71,317.99],[857.71,318],[857.71,318],[857.71,318],[857.71,318],[857.71,318.01],[857.71,318.02],[857.71,318.02],[857.72,318.05],[857.72,318.05],[857.72,318.06],[857.72,318.06],[857.72,318.06],[857.72,318.09],[857.72,318.11],[857.72,318.12],[857.72,318.13],[857.73,318.15],[857.73,318.16],[857.73,318.16],[857.72,318.17],[857.72,318.18],[857.72,318.18],[857.72,318.19],[857.72,318.19],[857.74,318.2],[857.74,318.2],[857.75,318.21],[857.75,318.21],[857.75,318.22],[857.75,318.27],[857.76,318.28],[857.76,318.29],[857.76,318.29],[857.76,318.3],[857.77,318.3],[857.77,318.3],[857.77,318.3],[857.77,318.31],[857.77,318.31],[857.77,318.32],[857.8,318.38],[857.81,318.4],[857.81,318.4],[857.81,318.44],[857.81,318.44],[857.81,318.45],[857.81,318.45],[857.8,318.45],[857.79,318.45],[857.79,318.45],[857.77,318.46],[857.77,318.46],[857.77,318.46],[857.76,318.47],[857.74,318.54],[857.74,318.54],[857.74,318.58],[857.74,318.59],[857.74,318.59],[857.74,318.6],[857.74,318.6],[857.75,318.61],[857.76,318.62],[857.76,318.62],[857.76,318.62],[857.76,318.62],[857.76,318.62],[857.76,318.62],[857.74,318.63],[857.74,318.63],[857.73,318.63],[857.72,318.65],[857.72,318.66],[857.72,318.69],[857.7,318.71],[857.69,318.71],[857.69,318.71],[857.68,318.71],[857.68,318.72],[857.68,318.72],[857.68,318.73],[857.66,318.73],[857.66,318.74],[857.65,318.74],[857.65,318.74],[857.65,318.74],[857.64,318.75],[857.64,318.75],[857.64,318.76],[857.63,318.77],[857.64,318.77],[857.65,318.82],[857.66,318.85],[857.66,318.85],[857.65,318.86],[857.65,318.87],[857.66,318.89],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.67,318.92],[857.66,318.91],[857.66,318.9],[857.66,318.9],[857.66,318.9],[857.66,318.9],[857.66,318.9],[857.66,318.91],[857.66,318.91],[857.66,318.91],[857.66,318.91],[857.66,318.91],[857.66,318.91],[857.66,318.91],[857.66,318.91],[857.66,318.92],[857.66,318.92],[857.65,318.94],[857.65,318.94],[857.64,318.94],[857.64,318.94],[857.64,318.94],[857.64,318.94],[857.64,318.94],[857.64,318.94],[857.64,318.94],[857.64,318.93],[857.64,318.92],[857.63,318.91],[857.63,318.91],[857.63,318.91],[857.63,318.91],[857.63,318.91],[857.63,318.91],[857.63,318.91],[857.63,318.92],[857.63,318.92],[857.63,318.93],[857.63,318.93],[857.62,318.95],[857.62,318.96],[857.63,318.98],[857.63,319],[857.63,319],[857.62,319.01],[857.62,319.02],[857.61,319.05],[857.61,319.05],[857.61,319.05],[857.61,319.06],[857.62,319.06],[857.62,319.07],[857.63,319.07],[857.63,319.07],[857.63,319.07],[857.63,319.07],[857.63,319.07],[857.62,319.08],[857.62,319.08],[857.62,319.08],[857.63,319.09],[857.63,319.09],[857.63,319.1],[857.63,319.1],[857.63,319.1],[857.64,319.1],[857.64,319.1],[857.64,319.11],[857.64,319.11],[857.65,319.12],[857.65,319.12],[857.65,319.12],[857.65,319.12],[857.65,319.12],[857.64,319.12],[857.64,319.11],[857.63,319.1],[857.63,319.1],[857.62,319.1],[857.62,319.09],[857.61,319.09],[857.61,319.09],[857.61,319.09],[857.61,319.09],[857.61,319.09],[857.6,319.09],[857.6,319.09],[857.61,319.11],[857.61,319.14],[857.6,319.14],[857.6,319.15],[857.6,319.15],[857.6,319.15],[857.6,319.15],[857.6,319.16],[857.6,319.16],[857.6,319.16],[857.6,319.17],[857.59,319.17],[857.55,319.21],[857.55,319.21],[857.54,319.22],[857.53,319.24],[857.53,319.25],[857.52,319.25],[857.52,319.26],[857.51,319.27],[857.51,319.28],[857.5,319.29],[857.5,319.3],[857.5,319.3],[857.49,319.32],[857.49,319.34],[857.49,319.34],[857.49,319.34],[857.48,319.34],[857.47,319.37],[857.46,319.38],[857.46,319.38],[857.45,319.4],[857.43,319.41],[857.42,319.42],[857.42,319.42],[857.42,319.42],[857.41,319.42],[857.41,319.42],[857.41,319.42],[857.38,319.43],[857.37,319.43],[857.37,319.44],[857.35,319.45],[857.34,319.45],[857.32,319.49],[857.32,319.49],[857.32,319.5],[857.32,319.5],[857.32,319.5],[857.32,319.5],[857.32,319.5],[857.32,319.51],[857.33,319.51],[857.33,319.51],[857.33,319.52],[857.35,319.52],[857.35,319.53],[857.35,319.53],[857.38,319.58],[857.38,319.58],[857.38,319.59],[857.37,319.62],[857.37,319.62],[857.37,319.65],[857.37,319.65],[857.37,319.65],[857.36,319.65],[857.36,319.66],[857.36,319.67],[857.35,319.69],[857.34,319.7],[857.34,319.71],[857.34,319.71],[857.34,319.72],[857.34,319.72],[857.34,319.73],[857.33,319.74],[857.32,319.81],[857.32,319.81],[857.33,319.83],[857.33,319.92],[857.33,319.92],[857.33,319.93],[857.32,319.96],[857.32,319.98],[857.29,320.02],[857.29,320.02],[857.29,320.04],[857.29,320.04],[857.29,320.05],[857.29,320.06],[857.29,320.06],[857.29,320.09],[857.29,320.09],[857.29,320.11],[857.27,320.18],[857.27,320.19],[857.26,320.2],[857.26,320.21],[857.26,320.21],[857.28,320.24],[857.29,320.25],[857.29,320.25],[857.33,320.35],[857.33,320.46],[857.34,320.5],[857.34,320.5],[857.34,320.5],[857.34,320.5],[857.34,320.51],[857.35,320.53],[857.35,320.59],[857.35,320.6],[857.36,320.65],[857.36,320.7],[857.37,320.82],[857.37,320.92],[857.36,320.95],[857.35,320.97],[857.35,320.97],[857.34,321],[857.34,321],[857.34,321],[857.34,321],[857.33,321],[857.33,321],[857.33,321],[857.33,321],[857.32,321],[857.31,321],[857.31,321],[857.31,321],[857.31,321],[857.31,321.01],[857.31,321.01],[857.31,321.01],[857.31,321.01],[857.31,321.01],[857.31,321.01],[857.31,321.03],[857.31,321.04],[857.31,321.05],[857.3,321.07],[857.29,321.08],[857.28,321.12],[857.28,321.15],[857.28,321.16],[857.28,321.17],[857.28,321.18],[857.29,321.2],[857.29,321.2],[857.29,321.21],[857.29,321.22],[857.28,321.23],[857.25,321.29],[857.23,321.32],[857.23,321.33],[857.23,321.33],[857.23,321.34],[857.23,321.34],[857.23,321.35],[857.23,321.35],[857.23,321.36],[857.24,321.37],[857.24,321.37],[857.24,321.38],[857.25,321.39],[857.25,321.39],[857.25,321.42],[857.25,321.43],[857.25,321.43],[857.24,321.48],[857.24,321.49],[857.24,321.54],[857.24,321.54],[857.24,321.55],[857.24,321.57],[857.25,321.58],[857.25,321.6],[857.25,321.61],[857.26,321.63],[857.26,321.64],[857.26,321.64],[857.26,321.65],[857.26,321.67],[857.26,321.68],[857.26,321.68],[857.26,321.69],[857.26,321.72],[857.26,321.73],[857.26,321.73],[857.26,321.74],[857.26,321.75],[857.26,321.76],[857.26,321.77],[857.26,321.77],[857.26,321.81],[857.26,321.82],[857.26,321.82],[857.25,321.85],[857.25,321.85],[857.25,321.86],[857.25,321.86],[857.25,321.87],[857.25,321.87],[857.26,321.89],[857.26,321.9],[857.26,321.91],[857.26,321.92],[857.25,321.96],[857.25,322.03],[857.25,322.04],[857.25,322.05],[857.25,322.08],[857.25,322.1],[857.25,322.11],[857.25,322.12],[857.25,322.18],[857.25,322.19],[857.25,322.2],[857.25,322.21],[857.25,322.23],[857.25,322.27],[857.25,322.28],[857.25,322.29],[857.25,322.32],[857.25,322.34],[857.25,322.35],[857.25,322.4],[857.26,322.41],[857.26,322.42],[857.26,322.43],[857.25,322.44],[857.25,322.44],[857.25,322.45],[857.24,322.5],[857.23,322.51],[857.23,322.52],[857.23,322.58],[857.23,322.58],[857.23,322.6],[857.23,322.62],[857.23,322.63],[857.23,322.65],[857.23,322.66],[857.24,322.71],[857.27,322.83],[857.27,322.84],[857.27,322.86],[857.27,322.87],[857.27,322.92],[857.27,322.95],[857.27,322.96],[857.28,323.09],[857.28,323.1],[857.28,323.11],[857.28,323.12],[857.28,323.13],[857.28,323.14],[857.29,323.15],[857.29,323.16],[857.3,323.17],[857.32,323.21],[857.32,323.21],[857.32,323.21],[857.32,323.22],[857.33,323.25],[857.33,323.26],[857.33,323.26],[857.35,323.32],[857.35,323.33],[857.36,323.34],[857.37,323.37],[857.37,323.38],[857.37,323.39],[857.37,323.39],[857.37,323.4],[857.36,323.43],[857.36,323.43],[857.36,323.44],[857.36,323.54],[857.37,323.61],[857.37,323.63],[857.37,323.63],[857.37,323.64],[857.37,323.65],[857.37,323.65],[857.38,323.66],[857.4,323.73],[857.4,323.73],[857.4,323.73],[857.4,323.74],[857.4,323.74],[857.4,323.74],[857.4,323.74],[857.4,323.74],[857.4,323.75],[857.41,323.75],[857.41,323.75],[857.41,323.75],[857.41,323.75],[857.4,323.78],[857.4,323.78],[857.4,323.79],[857.4,323.79],[857.4,323.79],[857.4,323.79],[857.4,323.79],[857.4,323.79],[857.4,323.8],[857.4,323.8],[857.4,323.8],[857.4,323.8],[857.4,323.8],[857.4,323.8],[857.4,323.8],[857.4,323.81],[857.42,323.88],[857.42,323.88],[857.42,323.88],[857.42,323.89],[857.42,323.89],[857.42,323.89],[857.42,323.89],[857.42,323.89],[857.42,323.89],[857.42,323.89],[857.42,323.89],[857.42,323.89],[857.42,323.9],[857.42,323.9],[857.42,323.9],[857.42,323.9],[857.42,323.9],[857.42,323.91],[857.42,323.91],[857.42,323.91],[857.43,323.91],[857.43,323.91],[857.43,323.91],[857.43,323.92],[857.43,323.92],[857.43,323.92],[857.43,323.92],[857.43,323.92],[857.43,323.92],[857.43,323.92],[857.43,323.93],[857.43,323.93],[857.43,323.93],[857.43,323.93],[857.43,323.94],[857.43,323.94],[857.43,323.94],[857.43,323.94],[857.43,323.94],[857.43,323.94],[857.43,323.94],[857.43,323.95],[857.43,323.95],[857.43,323.95],[857.43,323.95],[857.43,323.95],[857.43,323.95],[857.43,323.95],[857.43,323.96],[857.43,323.96],[857.43,323.96],[857.43,323.96],[857.43,323.96],[857.43,323.96],[857.43,323.96],[857.43,323.96],[857.43,323.97],[857.43,323.97],[857.43,323.97],[857.43,323.97],[857.43,323.97],[857.43,323.97],[857.43,323.98],[857.43,323.98],[857.43,323.98],[857.43,323.98],[857.43,323.98],[857.43,323.98],[857.43,323.98],[857.44,324.03],[857.44,324.03],[857.44,324.03],[857.44,324.03],[857.44,324.03],[857.44,324.04],[857.44,324.04],[857.44,324.04],[857.44,324.04],[857.44,324.04],[857.44,324.04],[857.44,324.04],[857.44,324.04],[857.44,324.05],[857.44,324.05],[857.44,324.05],[857.44,324.05],[857.44,324.05],[857.44,324.05],[857.44,324.05],[857.44,324.06],[857.44,324.06],[857.44,324.06],[857.44,324.06],[857.44,324.06],[857.44,324.06],[857.44,324.06],[857.44,324.07],[857.44,324.07],[857.44,324.07],[857.44,324.07],[857.44,324.07],[857.44,324.07],[857.43,324.09],[857.43,324.09],[857.43,324.1],[857.43,324.1],[857.42,324.1],[857.42,324.1],[857.42,324.1],[857.42,324.11],[857.42,324.11],[857.42,324.11],[857.42,324.11],[857.42,324.11],[857.42,324.11],[857.42,324.12],[857.42,324.12],[857.42,324.12],[857.42,324.12],[857.42,324.12],[857.39,324.41],[857.39,324.41],[857.39,324.41],[857.39,324.41],[857.39,324.41],[857.39,324.41],[857.39,324.42],[857.39,324.42],[857.39,324.42],[857.39,324.42],[857.39,324.42],[857.39,324.43],[857.39,324.43],[857.39,324.43],[857.39,324.43],[857.39,324.43],[857.39,324.43],[857.39,324.43],[857.39,324.43],[857.38,324.43],[857.37,324.46],[857.37,324.46],[857.37,324.46],[857.37,324.47],[857.37,324.47],[857.37,324.47],[857.37,324.47],[857.37,324.47],[857.37,324.47],[857.37,324.47],[857.37,324.47],[857.36,324.48],[857.36,324.48],[857.36,324.48],[857.36,324.48],[857.36,324.48],[857.36,324.48],[857.36,324.48],[857.36,324.48],[857.36,324.49],[857.36,324.49],[857.35,324.56],[857.35,324.57],[857.35,324.57],[857.34,324.63],[857.35,324.74],[857.35,324.76],[857.38,324.89],[857.38,324.89],[857.39,324.9],[857.39,324.91],[857.42,324.94],[857.42,324.95],[857.42,324.95],[857.43,324.96],[857.43,324.96],[857.43,324.97],[857.43,324.97],[857.42,324.98],[857.41,325.01],[857.41,325.02],[857.41,325.03],[857.41,325.07],[857.41,325.08],[857.41,325.09],[857.4,325.1],[857.37,325.15],[857.37,325.16],[857.37,325.17],[857.37,325.17],[857.37,325.17],[857.37,325.18],[857.38,325.21],[857.38,325.22],[857.38,325.23],[857.38,325.24],[857.38,325.26],[857.38,325.27],[857.38,325.31],[857.38,325.31],[857.38,325.36],[857.38,325.38],[857.39,325.43],[857.39,325.5],[857.39,325.52],[857.4,325.55],[857.4,325.63],[857.41,325.64],[857.41,325.67],[857.41,325.68],[857.41,325.7],[857.41,325.72],[857.41,325.73],[857.4,325.79],[857.39,325.8],[857.38,325.82],[857.38,325.83],[857.38,325.85],[857.37,325.87],[857.37,325.9],[857.36,325.91],[857.36,325.92],[857.37,325.93],[857.37,325.94],[857.4,326.03],[857.41,326.04],[857.41,326.05],[857.41,326.08],[857.41,326.1],[857.41,326.12],[857.41,326.13],[857.41,326.15],[857.4,326.18],[857.4,326.2],[857.4,326.21],[857.41,326.23],[857.4,326.25],[857.4,326.25],[857.4,326.26],[857.39,326.29],[857.37,326.35],[857.36,326.38],[857.36,326.4],[857.36,326.45],[857.35,326.47],[857.34,326.52],[857.34,326.53],[857.34,326.54],[857.34,326.56],[857.35,326.6],[857.35,326.61],[857.35,326.62],[857.34,326.67],[857.34,326.68],[857.34,326.68],[857.34,326.69],[857.35,326.7],[857.35,326.71],[857.39,326.75],[857.4,326.76],[857.44,326.79],[857.46,326.81],[857.49,326.85],[857.53,326.89],[857.54,326.9],[857.57,326.92],[857.58,326.92],[857.58,326.92],[857.59,326.93],[857.61,326.97],[857.62,326.98],[857.62,326.98],[857.66,327.01],[857.67,327.01],[857.68,327.02],[857.69,327.02],[857.71,327.04],[857.71,327.04],[857.72,327.04],[857.72,327.05],[857.73,327.05],[857.76,327.05],[857.76,327.05],[857.77,327.05],[857.77,327.05],[857.78,327.06],[857.82,327.09],[857.82,327.09],[857.84,327.1],[857.85,327.11],[857.86,327.12],[857.86,327.13],[857.87,327.13],[857.88,327.14],[857.89,327.14],[857.9,327.15],[857.92,327.17],[857.93,327.18],[857.93,327.19],[857.94,327.19],[857.95,327.2],[857.96,327.2],[857.96,327.21],[857.96,327.21],[857.97,327.22],[857.98,327.25],[857.99,327.26],[858,327.27],[858,327.27],[858.01,327.28],[858.07,327.3],[858.08,327.3],[858.08,327.31],[858.08,327.31],[858.09,327.32],[858.09,327.32],[858.09,327.32],[858.09,327.33],[858.09,327.37],[858.09,327.38],[858.09,327.38],[858.09,327.39],[858.1,327.4],[858.1,327.41],[858.1,327.41],[858.1,327.42],[858.1,327.44],[858.1,327.45],[858.1,327.45],[858.1,327.46],[858.1,327.47],[858.1,327.47],[858.09,327.48],[858.09,327.49],[858.08,327.51],[858.08,327.52],[858.08,327.54],[858.08,327.54],[858.08,327.55],[858.08,327.55],[858.08,327.56],[858.09,327.56],[858.1,327.57],[858.1,327.58],[858.1,327.58],[858.1,327.58],[858.1,327.59],[858.1,327.59],[858.1,327.6],[858.1,327.6],[858.08,327.62],[858.08,327.62],[858.07,327.63],[858.07,327.64],[858.07,327.64],[858.07,327.65],[858.05,327.66],[858.05,327.66],[858.04,327.68],[858.03,327.69],[858.02,327.69],[858.02,327.7],[858.02,327.7],[858.01,327.73],[858.01,327.73],[858.01,327.73],[858.01,327.74],[858.01,327.74],[857.97,327.78],[857.97,327.79],[857.97,327.79],[857.97,327.8],[857.97,327.8],[857.97,327.81],[857.98,327.82],[857.98,327.82],[857.98,327.83],[857.98,327.83],[857.98,327.83],[857.97,327.84],[857.96,327.85],[857.96,327.85],[857.96,327.86],[857.96,327.86],[857.96,327.86],[857.96,327.87],[857.96,327.87],[857.96,327.87],[857.97,327.88],[857.99,327.91],[857.99,327.91],[857.99,327.92],[857.99,327.92],[857.99,327.93],[857.99,327.93],[857.98,327.97],[857.98,327.99],[857.98,327.99],[857.97,328],[857.97,328],[857.97,328.01],[857.96,328.01],[857.96,328.01],[857.93,328.02],[857.92,328.02],[857.92,328.02],[857.91,328.03],[857.91,328.03],[857.91,328.04],[857.91,328.04],[857.91,328.05],[857.9,328.07],[857.9,328.08],[857.87,328.11],[857.87,328.12],[857.87,328.13],[857.86,328.18],[857.86,328.18],[857.85,328.19],[857.85,328.19],[857.85,328.19],[857.84,328.2],[857.82,328.21],[857.81,328.21],[857.81,328.22],[857.81,328.23],[857.8,328.23],[857.8,328.24],[857.79,328.24],[857.78,328.25],[857.77,328.26],[857.77,328.26],[857.75,328.28],[857.74,328.3],[857.73,328.31],[857.73,328.31],[857.73,328.31],[857.72,328.31],[857.71,328.31],[857.69,328.31],[857.69,328.31],[857.68,328.31],[857.68,328.32],[857.64,328.34],[857.64,328.34],[857.63,328.34],[857.63,328.35],[857.62,328.39],[857.62,328.39],[857.62,328.4],[857.62,328.4],[857.62,328.41],[857.63,328.43],[857.63,328.43],[857.63,328.44],[857.63,328.44],[857.62,328.45],[857.62,328.46],[857.61,328.48],[857.6,328.49],[857.6,328.49],[857.6,328.5],[857.61,328.53],[857.61,328.54],[857.61,328.55],[857.61,328.56],[857.59,328.58],[857.59,328.58],[857.59,328.59],[857.59,328.6],[857.58,328.6],[857.58,328.61],[857.57,328.61],[857.56,328.61],[857.55,328.62],[857.54,328.63],[857.54,328.63],[857.54,328.64],[857.54,328.64],[857.54,328.65],[857.53,328.66],[857.53,328.67],[857.53,328.68],[857.52,328.69],[857.49,328.73],[857.48,328.74],[857.47,328.74],[857.43,328.73],[857.42,328.73],[857.42,328.74],[857.41,328.74],[857.4,328.74],[857.38,328.76],[857.33,328.8],[857.32,328.8],[857.32,328.81],[857.31,328.82],[857.31,328.83],[857.29,328.87],[857.29,328.88],[857.29,328.88],[857.28,328.89],[857.26,328.91],[857.22,328.96],[857.22,328.96],[857.22,328.97],[857.21,328.98],[857.21,328.98],[857.22,329],[857.22,329.02],[857.22,329.03],[857.22,329.03],[857.22,329.04],[857.22,329.04],[857.22,329.04],[857.18,329.09],[857.18,329.1],[857.18,329.1],[857.18,329.11],[857.18,329.11],[857.18,329.12],[857.19,329.14],[857.19,329.15],[857.19,329.15],[857.19,329.16],[857.18,329.18],[857.18,329.18],[857.18,329.18],[857.19,329.19],[857.19,329.19],[857.21,329.23],[857.21,329.23],[857.21,329.24],[857.21,329.24],[857.21,329.25],[857.21,329.25],[857.2,329.26],[857.2,329.26],[857.18,329.28],[857.17,329.29],[857.17,329.29],[857.16,329.3],[857.16,329.31],[857.16,329.32],[857.15,329.35],[857.15,329.36],[857.15,329.37],[857.15,329.37],[857.12,329.4],[857.11,329.4],[857.11,329.41],[857.11,329.41],[857.1,329.44],[857.09,329.45],[857.09,329.45],[857.09,329.46],[857.09,329.46],[857.09,329.46],[857.09,329.48],[857.09,329.48],[857.09,329.49],[857.09,329.49],[857.06,329.56],[857.06,329.57],[857.06,329.57],[857.05,329.58],[857.05,329.59],[857.02,329.64],[857.02,329.64],[857,329.66],[856.99,329.68],[856.96,329.71],[856.94,329.78],[856.93,329.8],[856.93,329.8],[856.93,329.81],[856.93,329.81],[856.94,329.82],[856.94,329.83],[856.96,329.87],[856.97,329.89],[856.97,329.89],[856.97,329.9],[856.97,329.9],[856.96,329.91],[856.96,329.91],[856.96,329.92],[856.96,329.92],[856.92,329.96],[856.91,329.96],[856.87,330],[856.84,330.02],[856.84,330.03],[856.83,330.05],[856.83,330.05],[856.83,330.05],[856.83,330.05],[856.83,330.05],[856.83,330.06],[856.82,330.09],[856.82,330.09],[856.82,330.09],[856.82,330.1],[856.82,330.13],[856.83,330.13],[856.83,330.15],[856.83,330.16],[856.83,330.17],[856.83,330.2],[856.82,330.22],[856.82,330.23],[856.83,330.29],[856.83,330.29],[856.83,330.3],[856.81,330.33],[856.81,330.34],[856.81,330.34],[856.81,330.34],[856.8,330.35],[856.8,330.35],[856.79,330.35],[856.76,330.36],[856.75,330.36],[856.75,330.36],[856.72,330.38],[856.71,330.39],[856.67,330.4],[856.66,330.42],[856.6,330.45],[856.58,330.46],[856.55,330.46],[856.55,330.46],[856.55,330.46],[856.53,330.47],[856.53,330.47],[856.52,330.47],[856.48,330.52],[856.48,330.52],[856.48,330.52],[856.47,330.53],[856.47,330.53],[856.46,330.53],[856.46,330.53],[856.45,330.52],[856.41,330.51],[856.4,330.5],[856.4,330.5],[856.39,330.5],[856.39,330.5],[856.38,330.51],[856.37,330.51],[856.34,330.54],[856.33,330.55],[856.33,330.55],[856.33,330.56],[856.32,330.6],[856.31,330.61],[856.31,330.61],[856.31,330.62],[856.3,330.62],[856.3,330.62],[856.26,330.64],[856.25,330.65],[856.25,330.65],[856.24,330.66],[856.24,330.66],[856.24,330.67],[856.24,330.67],[856.24,330.68],[856.24,330.69],[856.24,330.7],[856.24,330.7],[856.24,330.71],[856.24,330.71],[856.24,330.72],[856.23,330.73],[856.22,330.73],[856.22,330.74],[856.22,330.75],[856.22,330.76],[856.21,330.77],[856.21,330.77],[856.21,330.78],[856.21,330.79],[856.21,330.8],[856.21,330.8],[856.21,330.81],[856.2,330.81],[856.18,330.82],[856.15,330.85],[856.13,330.88],[856.13,330.89],[856.12,330.89],[856.12,330.89],[856.11,330.89],[856.09,330.89],[856.08,330.9],[856.05,330.91],[856.05,330.91],[856.02,330.91],[856.02,330.91],[856.01,330.91],[855.98,330.93],[855.97,330.96],[855.97,330.99],[855.98,331],[855.99,331.01],[856.01,331.05],[856,331.1],[856,331.11],[856,331.12],[856,331.13],[856,331.13],[855.99,331.14],[855.99,331.14],[855.99,331.15],[855.98,331.15],[855.98,331.16],[855.98,331.16],[855.98,331.16],[855.98,331.17],[855.99,331.21],[855.99,331.22],[855.99,331.22],[855.99,331.22],[855.99,331.23],[855.99,331.24],[855.98,331.25],[855.98,331.25],[855.98,331.26],[855.98,331.26],[855.97,331.27],[855.96,331.27],[855.95,331.3],[855.94,331.31],[855.94,331.32],[855.94,331.33],[855.93,331.33],[855.94,331.34],[855.94,331.35],[855.94,331.35],[855.95,331.36],[855.95,331.37],[855.95,331.37],[855.95,331.38],[855.95,331.38],[855.94,331.39],[855.92,331.43],[855.92,331.44],[855.92,331.44],[855.92,331.44],[855.92,331.45],[855.92,331.45],[855.93,331.46],[855.94,331.47],[855.98,331.62],[855.98,331.62],[855.98,331.63],[855.98,331.64],[855.98,331.67],[855.97,331.69],[855.96,331.72],[855.96,331.74],[855.96,331.75],[855.96,331.78],[855.96,331.79],[855.95,331.81],[855.95,331.82],[855.95,331.82],[855.96,331.85],[855.96,331.86],[855.96,331.86],[855.96,331.87],[855.95,331.88],[855.95,331.88],[855.95,331.89],[855.94,331.89],[855.93,331.89],[855.89,331.9],[855.88,331.9],[855.88,331.9],[855.87,331.91],[855.84,331.95],[855.84,331.95],[855.83,331.95],[855.83,331.96],[855.8,331.97],[855.8,331.97],[855.77,332],[855.76,332],[855.75,332.01],[855.74,332.01],[855.72,332.03],[855.71,332.03],[855.71,332.03],[855.7,332.03],[855.65,332.03],[855.65,332.03],[855.65,332.04],[855.64,332.04],[855.62,332.05],[855.62,332.05],[855.61,332.05],[855.61,332.06],[855.6,332.06],[855.55,332.05],[855.54,332.05],[855.5,332.06],[855.46,332.08],[855.39,332.12],[855.38,332.12],[855.37,332.13],[855.36,332.13],[855.36,332.14],[855.35,332.14],[855.35,332.14],[855.33,332.17],[855.33,332.17],[855.32,332.18],[855.33,332.19],[855.33,332.2],[855.33,332.2],[855.33,332.21],[855.33,332.22],[855.33,332.23],[855.33,332.23],[855.33,332.24],[855.33,332.25],[855.33,332.25],[855.33,332.27],[855.34,332.29],[855.34,332.29],[855.34,332.3],[855.34,332.3],[855.36,332.32],[855.37,332.33],[855.37,332.33],[855.37,332.34],[855.37,332.34],[855.37,332.35],[855.37,332.36],[855.37,332.36],[855.37,332.37],[855.37,332.38],[855.38,332.38],[855.38,332.39],[855.38,332.39],[855.38,332.39],[855.38,332.41],[855.37,332.43],[855.37,332.44],[855.38,332.44],[855.38,332.45],[855.38,332.46],[855.38,332.46],[855.38,332.48],[855.38,332.5],[855.38,332.5],[855.38,332.51],[855.37,332.51],[855.37,332.51],[855.37,332.51],[855.36,332.51],[855.34,332.52],[855.33,332.52],[855.32,332.52],[855.32,332.53],[855.31,332.54],[855.31,332.54],[855.29,332.55],[855.28,332.56],[855.27,332.56],[855.27,332.57],[855.26,332.57],[855.26,332.57],[855.25,332.57],[855.24,332.57],[855.23,332.57],[855.23,332.57],[855.22,332.57],[855.22,332.57],[855.21,332.58],[855.21,332.58],[855.2,332.58],[855.2,332.58],[855.17,332.57],[855.16,332.56],[855.15,332.56],[855.14,332.56],[855.14,332.57],[855.13,332.57],[855.12,332.57],[855.11,332.58],[855.11,332.58],[855.1,332.58],[855.09,332.58],[855.08,332.58],[855.08,332.58],[855.08,332.59],[855.07,332.59],[855.06,332.61],[855.05,332.64],[855.05,332.65],[855.05,332.66],[855.05,332.67],[855.05,332.67],[855.06,332.69],[855.06,332.7],[855.06,332.71],[855.07,332.72],[855.07,332.74],[855.07,332.74],[855.07,332.75],[855.07,332.76],[855.07,332.76],[855.06,332.76],[855.05,332.78],[855.04,332.78],[855.03,332.79],[855.03,332.79],[855.03,332.79],[855.02,332.8],[855.02,332.81],[855.02,332.82],[855.02,332.83],[855.02,332.83],[855.01,332.83],[855.01,332.84],[855,332.85],[854.99,332.85],[854.99,332.85],[854.98,332.86],[854.98,332.87],[854.98,332.87],[854.98,332.87],[854.98,332.88],[854.97,332.88],[854.97,332.89],[854.96,332.89],[854.95,332.9],[854.95,332.91],[854.94,332.91],[854.94,332.92],[854.94,332.93],[854.94,332.93],[854.94,332.94],[854.94,332.94],[854.94,332.95],[854.94,332.95],[854.93,332.96],[854.93,332.96],[854.92,332.96],[854.92,332.97],[854.92,332.98],[854.92,333],[854.92,333.01],[854.92,333.01],[854.92,333.02],[854.91,333.02],[854.91,333.03],[854.9,333.04],[854.9,333.05],[854.9,333.05],[854.9,333.05],[854.9,333.06],[854.9,333.06],[854.9,333.07],[854.9,333.09],[854.9,333.09],[854.9,333.09],[854.9,333.1],[854.9,333.1],[854.9,333.11],[854.9,333.11],[854.9,333.12],[854.9,333.12],[854.9,333.12],[854.9,333.13],[854.9,333.14],[854.9,333.14],[854.91,333.14],[854.91,333.15],[854.91,333.15],[854.91,333.16],[854.91,333.17],[854.91,333.18],[854.91,333.18],[854.91,333.19],[854.91,333.2],[854.91,333.2],[854.92,333.21],[854.94,333.24],[854.94,333.24],[854.94,333.25],[854.94,333.26],[854.94,333.3],[854.94,333.31],[854.94,333.32],[854.94,333.33],[854.94,333.33],[854.93,333.35],[854.93,333.36],[854.93,333.36],[854.93,333.39],[854.93,333.39],[854.91,333.42],[854.91,333.43],[854.91,333.43],[854.91,333.44],[854.91,333.44],[854.92,333.45],[854.92,333.46],[854.93,333.46],[854.93,333.47],[854.93,333.48],[854.93,333.49],[854.93,333.49],[854.94,333.51],[854.95,333.51],[854.95,333.52],[854.95,333.53],[854.95,333.53],[854.95,333.54],[854.95,333.55],[854.96,333.56],[854.96,333.56],[854.96,333.57],[854.95,333.59],[854.95,333.6],[854.96,333.61],[854.96,333.62],[854.96,333.62],[854.96,333.62],[854.96,333.63],[854.95,333.63],[854.95,333.63],[854.95,333.63],[854.95,333.64],[854.94,333.64],[854.94,333.64],[854.94,333.65],[854.93,333.65],[854.93,333.65],[854.93,333.66],[854.93,333.66],[854.93,333.68],[854.93,333.69],[854.93,333.7],[854.93,333.7],[854.93,333.71],[854.93,333.72],[854.94,333.75],[854.94,333.76],[854.95,333.77],[854.96,333.77],[854.96,333.77],[854.96,333.77],[854.97,333.77],[854.97,333.77],[854.98,333.77],[854.99,333.77],[855,333.77],[855,333.78],[855.01,333.78],[855.01,333.78],[855.02,333.79],[855.02,333.8],[855.02,333.8],[855.02,333.81],[855.02,333.87],[855.02,333.88],[855.03,333.93],[855.03,333.93],[855.03,333.94],[855.03,333.94],[855.03,333.95],[855.03,333.95],[855.02,333.96],[855.02,333.97],[855.01,333.98],[855.01,333.98],[855.01,333.98],[855.01,333.99],[855.01,333.99],[855.01,333.99],[855.01,334],[855.03,334.03],[855.04,334.05],[855.04,334.05],[855.04,334.05],[855.04,334.05],[855.04,334.06],[855.05,334.06],[855.06,334.07],[855.06,334.08],[855.06,334.08],[855.06,334.09],[855.06,334.13],[855.06,334.14],[855.05,334.15],[855.03,334.17],[855.03,334.17],[855.03,334.18],[855.03,334.18],[855.03,334.18],[855.03,334.18],[855.03,334.19],[855.03,334.19],[855.04,334.2],[855.05,334.22],[855.06,334.22],[855.06,334.22],[855.08,334.23],[855.09,334.23],[855.09,334.23],[855.09,334.23],[855.09,334.24],[855.1,334.24],[855.1,334.24],[855.11,334.25],[855.13,334.25],[855.15,334.26],[855.16,334.26],[855.18,334.29],[855.18,334.29],[855.18,334.3],[855.18,334.3],[855.18,334.32],[855.18,334.32],[855.17,334.34],[855.16,334.35],[855.16,334.36],[855.17,334.4],[855.17,334.41],[855.17,334.42],[855.17,334.42],[855.16,334.44],[855.16,334.45],[855.16,334.45],[855.16,334.46],[855.17,334.46],[855.2,334.5],[855.2,334.51],[855.2,334.52],[855.2,334.52],[855.21,334.54],[855.21,334.55],[855.21,334.56],[855.21,334.56],[855.21,334.56],[855.21,334.57],[855.2,334.57],[855.18,334.61],[855.17,334.64],[855.17,334.66],[855.18,334.69],[855.19,334.71],[855.2,334.72],[855.2,334.72],[855.21,334.72],[855.21,334.73],[855.21,334.73],[855.21,334.73],[855.21,334.74],[855.21,334.74],[855.2,334.75],[855.2,334.75],[855.2,334.76],[855.19,334.77],[855.18,334.77],[855.17,334.78],[855.14,334.78],[855.14,334.79],[855.14,334.79],[855.13,334.8],[855.12,334.8],[855.12,334.81],[855.12,334.82],[855.12,334.83],[855.11,334.86],[855.11,334.87],[855.11,334.87],[855.11,334.87],[855.11,334.87],[855.1,334.88],[855.08,334.88],[855.07,334.88],[855.06,334.88],[855.05,334.89],[855.04,334.89],[855.04,334.9],[855.04,334.91],[855.03,334.92],[855.03,334.93],[855.03,334.94],[855.03,334.95],[855.03,334.95],[855.02,334.96],[855.02,334.96],[855.01,334.96],[855,334.96],[854.96,334.97],[854.96,334.97],[854.95,334.97],[854.94,334.97],[854.93,334.99],[854.92,334.99],[854.91,335],[854.9,335],[854.9,335],[854.9,335],[854.89,335.01],[854.89,335.02],[854.89,335.02],[854.88,335.03],[854.88,335.03],[854.86,335.04],[854.85,335.04],[854.85,335.05],[854.84,335.05],[854.84,335.07],[854.83,335.07],[854.82,335.09],[854.81,335.09],[854.8,335.11],[854.8,335.11],[854.8,335.11],[854.79,335.12],[854.78,335.12],[854.76,335.13],[854.75,335.13],[854.74,335.13],[854.73,335.13],[854.72,335.13],[854.71,335.13],[854.71,335.14],[854.7,335.14],[854.7,335.14],[854.69,335.14],[854.69,335.15],[854.68,335.15],[854.67,335.17],[854.67,335.17],[854.67,335.18],[854.67,335.18],[854.67,335.18],[854.66,335.18],[854.66,335.19],[854.64,335.2],[854.64,335.2],[854.62,335.21],[854.62,335.21],[854.61,335.21],[854.61,335.21],[854.6,335.21],[854.59,335.21],[854.59,335.21],[854.58,335.21],[854.57,335.21],[854.57,335.22],[854.56,335.22],[854.56,335.22],[854.55,335.23],[854.55,335.23],[854.55,335.24],[854.55,335.25],[854.55,335.25],[854.55,335.26],[854.56,335.3],[854.56,335.31],[854.56,335.32],[854.56,335.34],[854.55,335.35],[854.54,335.37],[854.54,335.37],[854.54,335.38],[854.54,335.39],[854.54,335.39],[854.54,335.4],[854.54,335.4],[854.55,335.42],[854.55,335.42],[854.55,335.43],[854.55,335.44],[854.55,335.45],[854.55,335.45],[854.55,335.45],[854.55,335.46],[854.56,335.46],[854.56,335.47],[854.56,335.47],[854.56,335.48],[854.57,335.49],[854.59,335.51],[854.6,335.53],[854.61,335.54],[854.61,335.55],[854.62,335.55],[854.62,335.56],[854.63,335.56],[854.63,335.56],[854.65,335.57],[854.66,335.58],[854.67,335.58],[854.67,335.59],[854.68,335.6],[854.68,335.61],[854.68,335.62],[854.68,335.62],[854.67,335.67],[854.67,335.68],[854.67,335.68],[854.67,335.69],[854.67,335.69],[854.67,335.7],[854.68,335.7],[854.68,335.71],[854.68,335.73],[854.69,335.74],[854.7,335.75],[854.71,335.76],[854.72,335.78],[854.76,335.8],[854.76,335.81],[854.77,335.82],[854.77,335.83],[854.77,335.83],[854.77,335.85],[854.78,335.85],[854.78,335.86],[854.78,335.86],[854.81,335.9],[854.81,335.9],[854.82,335.91],[854.84,335.92],[854.85,335.93],[854.86,335.94],[854.88,335.95],[854.88,335.95],[854.89,335.96],[854.9,335.97],[854.91,335.98],[854.95,336],[854.96,336],[854.97,336.01],[854.97,336.01],[854.98,336.03],[854.98,336.04],[854.99,336.04],[855,336.05],[855.01,336.06],[855.01,336.06],[855.01,336.07],[855.01,336.07],[855.01,336.08],[855.01,336.08],[855.01,336.09],[855.01,336.1],[855,336.1],[855,336.11],[855,336.12],[855.01,336.13],[855.01,336.13],[855.01,336.14],[855,336.14],[855,336.15],[855,336.16],[855,336.17],[855,336.17],[855,336.17],[855.01,336.2],[855.01,336.2],[855.01,336.21],[855,336.23],[855,336.24],[855.01,336.26],[855.02,336.28],[855.02,336.3],[855.02,336.31],[855.01,336.33],[855.01,336.35],[854.99,336.39],[854.99,336.39],[854.99,336.4],[854.99,336.4],[854.99,336.41],[855,336.43],[855,336.43],[855,336.45],[855.01,336.46],[855.02,336.48],[855.02,336.49],[855.03,336.52],[855.04,336.55],[855.05,336.57],[855.06,336.58],[855.06,336.58],[855.06,336.59],[855.12,336.65],[855.13,336.66],[855.14,336.67],[855.15,336.67],[855.16,336.67],[855.17,336.68],[855.18,336.68],[855.19,336.7],[855.2,336.7],[855.2,336.71],[855.21,336.71],[855.21,336.71],[855.23,336.71],[855.23,336.71],[855.24,336.71],[855.24,336.71],[855.25,336.72],[855.25,336.72],[855.25,336.73],[855.27,336.77],[855.27,336.78],[855.28,336.79],[855.28,336.79],[855.28,336.8],[855.27,336.81],[855.27,336.81],[855.26,336.82],[855.26,336.83],[855.25,336.84],[855.25,336.85],[855.25,336.86],[855.25,336.87],[855.26,336.89],[855.26,336.92],[855.26,336.95],[855.26,336.96],[855.26,336.97],[855.27,336.98],[855.27,336.99],[855.29,337.02],[855.3,337.05],[855.32,337.12],[855.33,337.16],[855.35,337.2],[855.38,337.25],[855.4,337.28],[855.42,337.34],[855.44,337.38],[855.45,337.39],[855.45,337.4],[855.45,337.42],[855.45,337.43],[855.45,337.44],[855.44,337.45],[855.43,337.47],[855.42,337.47],[855.42,337.49],[855.41,337.5],[855.41,337.51],[855.41,337.52],[855.41,337.53],[855.41,337.55],[855.42,337.56],[855.42,337.57],[855.43,337.58],[855.44,337.59],[855.5,337.65],[855.51,337.66],[855.51,337.66],[855.51,337.67],[855.51,337.67],[855.51,337.72],[855.51,337.74],[855.51,337.74],[855.52,337.76],[855.53,337.77],[855.54,337.78],[855.66,337.88],[855.67,337.89],[855.68,337.9],[855.68,337.91],[855.69,337.93],[855.69,337.95],[855.68,337.97],[855.68,337.98],[855.67,337.99],[855.67,338.01],[855.68,338.02],[855.68,338.04],[855.69,338.05],[855.69,338.06],[855.69,338.07],[855.69,338.09],[855.69,338.11],[855.69,338.12],[855.69,338.13],[855.69,338.13],[855.69,338.14],[855.73,338.19],[855.73,338.2],[855.73,338.21],[855.73,338.24],[855.74,338.26],[855.74,338.26],[855.74,338.27],[855.74,338.28],[855.74,338.28],[855.74,338.29],[855.72,338.32],[855.71,338.33],[855.71,338.34],[855.71,338.35],[855.73,338.41],[855.73,338.42],[855.74,338.43],[855.77,338.47],[855.78,338.48],[855.78,338.48],[855.78,338.49],[855.78,338.5],[855.78,338.55],[855.78,338.55],[855.78,338.56],[855.78,338.58],[855.78,338.58],[855.79,338.59],[855.8,338.59],[855.8,338.6],[855.81,338.6],[855.82,338.6],[855.82,338.6],[855.84,338.6],[855.85,338.6],[855.85,338.6],[855.86,338.6],[855.88,338.6],[855.88,338.61],[855.89,338.61],[855.9,338.61],[855.95,338.59],[855.96,338.58],[855.97,338.58],[855.98,338.59],[855.99,338.59],[856.04,338.6],[856.05,338.6],[856.06,338.61],[856.07,338.61],[856.07,338.61],[856.08,338.61],[856.09,338.61],[856.12,338.6],[856.13,338.6],[856.13,338.6],[856.14,338.6],[856.14,338.6],[856.15,338.61],[856.15,338.61],[856.16,338.62],[856.16,338.62],[856.16,338.62],[856.16,338.63],[856.17,338.63],[856.17,338.64],[856.2,338.66],[856.21,338.67],[856.22,338.7],[856.22,338.71],[856.22,338.71],[856.22,338.73],[856.22,338.74],[856.23,338.79],[856.23,338.84],[856.23,338.85],[856.23,338.85],[856.23,338.86],[856.24,338.86],[856.24,338.86],[856.24,338.86],[856.25,338.86],[856.25,338.86],[856.25,338.86],[856.26,338.86],[856.26,338.85],[856.26,338.84],[856.26,338.83],[856.26,338.83],[856.26,338.82],[856.27,338.78],[856.27,338.78],[856.27,338.78],[856.27,338.78],[856.27,338.77],[856.27,338.76],[856.27,338.74],[856.27,338.74],[856.27,338.73],[856.28,338.73],[856.28,338.72],[856.3,338.7],[856.3,338.69],[856.31,338.69],[856.31,338.68],[856.31,338.66],[856.31,338.66],[856.33,338.64],[856.33,338.64],[856.33,338.64],[856.34,338.63],[856.35,338.63],[856.35,338.63],[856.36,338.64],[856.36,338.64],[856.37,338.64],[856.37,338.65],[856.38,338.66],[856.38,338.66],[856.39,338.69],[856.39,338.69],[856.39,338.7],[856.39,338.7],[856.4,338.7],[856.4,338.7],[856.4,338.7],[856.42,338.7],[856.43,338.7],[856.43,338.71],[856.43,338.71],[856.44,338.71],[856.44,338.72],[856.45,338.75],[856.45,338.77],[856.45,338.77],[856.45,338.78],[856.46,338.8],[856.46,338.82],[856.47,338.82],[856.47,338.82],[856.47,338.83],[856.48,338.83],[856.49,338.84],[856.5,338.84],[856.51,338.85],[856.51,338.85],[856.52,338.86],[856.52,338.86],[856.52,338.87],[856.53,338.88],[856.53,338.88],[856.53,338.89],[856.53,338.89],[856.53,338.89],[856.53,338.89],[856.54,338.9],[856.54,338.9],[856.55,338.9],[856.56,338.89],[856.58,338.89],[856.58,338.89],[856.59,338.89],[856.61,338.89],[856.62,338.89],[856.62,338.89],[856.62,338.89],[856.63,338.88],[856.64,338.87],[856.64,338.86],[856.65,338.86],[856.65,338.86],[856.66,338.85],[856.66,338.85],[856.67,338.85],[856.67,338.85],[856.68,338.85],[856.69,338.86],[856.69,338.87],[856.7,338.87],[856.7,338.88],[856.7,338.88],[856.7,338.89],[856.7,338.9],[856.7,338.92],[856.7,338.92],[856.7,338.92],[856.7,338.93],[856.71,338.93],[856.71,338.93],[856.71,338.94],[856.76,338.94],[856.77,338.94],[856.78,338.94],[856.79,338.94],[856.82,338.93],[856.9,338.9],[856.91,338.9],[856.92,338.9],[856.94,338.9],[856.96,338.9],[857.02,338.9],[857.03,338.9],[857.04,338.89],[857.05,338.89],[857.05,338.88],[857.06,338.88],[857.06,338.87],[857.06,338.86],[857.06,338.85],[857.06,338.84],[857.06,338.82],[857.06,338.81],[857.07,338.8],[857.07,338.79],[857.08,338.78],[857.08,338.77],[857.19,338.66],[857.2,338.65],[857.21,338.65],[857.22,338.65],[857.22,338.65],[857.23,338.64],[857.24,338.65],[857.25,338.65],[857.26,338.65],[857.36,338.71],[857.36,338.71],[857.37,338.71],[857.38,338.71],[857.38,338.71],[857.39,338.7],[857.39,338.7],[857.4,338.69],[857.41,338.69],[857.41,338.69],[857.41,338.68],[857.42,338.68],[857.42,338.68],[857.47,338.7],[857.49,338.7],[857.56,338.71],[857.58,338.71],[857.75,338.72],[857.76,338.72],[857.77,338.73],[857.8,338.74],[857.81,338.74],[857.82,338.75],[857.83,338.75],[857.84,338.75],[857.86,338.75],[857.9,338.75],[857.91,338.75],[857.91,338.75],[857.91,338.75],[857.92,338.75],[857.92,338.75],[857.92,338.76],[857.92,338.78],[857.92,338.78],[857.93,338.78],[857.93,338.78],[857.93,338.79],[857.94,338.79],[857.94,338.79],[857.95,338.79],[857.97,338.77],[857.98,338.77],[857.99,338.77],[858,338.77],[858.01,338.78],[858.04,338.79],[858.05,338.79],[858.06,338.79],[858.07,338.79],[858.07,338.8],[858.07,338.8],[858.07,338.8],[858.08,338.81],[858.08,338.81],[858.08,338.81],[858.08,338.84],[858.08,338.84],[858.08,338.85],[858.11,338.89],[858.11,338.9],[858.11,338.9],[858.11,338.9],[858.11,338.91],[858.1,338.92],[858.1,338.92],[858.11,338.93],[858.11,338.93],[858.11,338.94],[858.11,338.94],[858.12,338.94],[858.12,338.94],[858.12,338.94],[858.19,338.94],[858.2,338.94],[858.21,338.93],[858.21,338.93],[858.22,338.92],[858.23,338.92],[858.24,338.91],[858.25,338.91],[858.25,338.9],[858.25,338.9],[858.26,338.89],[858.26,338.88],[858.26,338.88],[858.27,338.88],[858.27,338.88],[858.32,338.87],[858.34,338.86],[858.34,338.86],[858.35,338.86],[858.35,338.86],[858.36,338.86],[858.37,338.86],[858.38,338.87],[858.38,338.87],[858.38,338.87],[858.39,338.87],[858.39,338.87],[858.4,338.87],[858.4,338.87],[858.4,338.86],[858.4,338.86],[858.4,338.85],[858.41,338.84],[858.41,338.84],[858.41,338.83],[858.42,338.83],[858.42,338.83],[858.46,338.81],[858.46,338.81],[858.47,338.81],[858.5,338.82],[858.51,338.82],[858.52,338.82],[858.54,338.81],[858.56,338.81],[858.56,338.81],[858.56,338.81],[858.56,338.81],[858.56,338.81],[858.56,338.81],[858.56,338.82],[858.56,338.82],[858.56,338.82],[858.55,338.81],[858.55,338.81],[858.55,338.81],[858.55,338.81],[858.55,338.8],[858.56,338.8],[858.56,338.8],[858.57,338.78],[858.58,338.77],[858.58,338.76],[858.58,338.75],[858.59,338.69],[858.59,338.69],[858.6,338.69],[858.6,338.69],[858.6,338.69],[858.6,338.69],[858.6,338.69],[858.61,338.69],[858.61,338.68],[858.61,338.68],[858.62,338.67],[858.62,338.67],[858.62,338.67],[858.64,338.63],[858.64,338.62],[858.64,338.62],[858.65,338.62],[858.65,338.62],[858.65,338.61],[858.67,338.62],[858.67,338.62],[858.67,338.62],[858.68,338.62],[858.68,338.61],[858.68,338.61],[858.68,338.6],[858.68,338.6],[858.69,338.6],[858.69,338.6],[858.69,338.6],[858.7,338.6],[858.71,338.6],[858.71,338.6],[858.72,338.6],[858.73,338.6],[858.73,338.6],[858.73,338.6],[858.74,338.6],[858.74,338.61],[858.74,338.61],[858.75,338.61],[858.75,338.6],[858.77,338.59],[858.77,338.58],[858.79,338.58],[858.81,338.56],[858.86,338.55],[858.87,338.55],[858.91,338.57],[858.91,338.57],[858.91,338.57],[858.91,338.57],[858.91,338.57],[858.91,338.57],[858.91,338.57],[858.92,338.57],[858.92,338.57],[858.92,338.58],[858.92,338.59],[858.93,338.6],[858.94,338.61],[858.94,338.61],[858.94,338.62],[858.94,338.62],[858.95,338.63],[858.96,338.65],[858.97,338.66],[858.96,338.68],[858.96,338.69],[858.96,338.7],[858.96,338.7],[858.96,338.7],[858.97,338.71],[858.97,338.71],[858.98,338.73],[858.98,338.74],[859,338.75],[859.03,338.77],[859.04,338.78],[859.04,338.79],[859.05,338.82],[859.05,338.82],[859.07,338.84],[859.11,338.89],[859.11,338.9],[859.11,338.9],[859.11,339],[859.11,339.03],[859.11,339.05],[859.11,339.07],[859.11,339.07],[859.11,339.08],[859.1,339.09],[859.1,339.09],[859.1,339.1],[859.09,339.1],[859.09,339.11],[859.09,339.11],[859.09,339.12],[859.08,339.13],[859.08,339.13],[859.08,339.13],[859.08,339.14],[859.07,339.15],[859.07,339.16],[859.07,339.16],[859.06,339.16],[859.06,339.16],[859.06,339.16],[859.06,339.16],[859.06,339.17],[859.06,339.18],[859.06,339.18],[859.06,339.19],[859.06,339.19],[859.07,339.19],[859.07,339.19],[859.07,339.19],[859.07,339.19],[859.07,339.19],[859.07,339.19],[859.07,339.19],[859.06,339.19],[859.06,339.19],[859.05,339.19],[859.05,339.19],[859.05,339.19],[859.04,339.2],[859.04,339.21],[859.03,339.23],[859.03,339.23],[859.03,339.24],[859.03,339.25],[859.03,339.25],[859.02,339.26],[859.02,339.26],[859.02,339.26],[859.01,339.26],[859.01,339.26],[859,339.25],[859,339.25],[859,339.25],[859,339.25],[859,339.24],[859,339.24],[859,339.24],[859,339.23],[859,339.23],[859,339.23],[859,339.23],[858.99,339.24],[858.99,339.24],[858.99,339.24],[858.98,339.24],[858.98,339.23],[858.98,339.23],[858.98,339.23],[858.97,339.23],[858.97,339.23],[858.97,339.23],[858.97,339.23],[858.96,339.23],[858.96,339.24],[858.96,339.24],[858.96,339.24],[858.95,339.25],[858.95,339.25],[858.94,339.25],[858.94,339.25],[858.94,339.26],[858.93,339.26],[858.92,339.27],[858.91,339.27],[858.91,339.28],[858.89,339.3],[858.89,339.32],[858.88,339.33],[858.88,339.33],[858.88,339.34],[858.88,339.35],[858.88,339.36],[858.87,339.37],[858.87,339.37],[858.87,339.37],[858.87,339.38],[858.87,339.38],[858.88,339.38],[858.89,339.38],[858.89,339.39],[858.89,339.39],[858.9,339.4],[858.9,339.4],[858.9,339.41],[858.9,339.41],[858.89,339.42],[858.88,339.43],[858.88,339.44],[858.88,339.44],[858.88,339.44],[858.88,339.44],[858.88,339.45],[858.88,339.46],[858.87,339.47],[858.87,339.49],[858.87,339.5],[858.86,339.51],[858.86,339.51],[858.86,339.51],[858.85,339.52],[858.83,339.54],[858.81,339.55],[858.81,339.55],[858.81,339.56],[858.81,339.56],[858.82,339.56],[858.82,339.57],[858.82,339.57],[858.82,339.57],[858.82,339.58],[858.83,339.58],[858.83,339.59],[858.83,339.59],[858.83,339.59],[858.82,339.59],[858.82,339.59],[858.82,339.6],[858.82,339.6],[858.83,339.6],[858.83,339.6],[858.83,339.6],[858.83,339.61],[858.82,339.61],[858.82,339.62],[858.82,339.62],[858.83,339.63],[858.83,339.63],[858.83,339.64],[858.83,339.65],[858.82,339.66],[858.81,339.66],[858.81,339.68],[858.81,339.68],[858.81,339.68],[858.81,339.69],[858.81,339.69],[858.82,339.69],[858.82,339.69],[858.82,339.69],[858.83,339.69],[858.83,339.69],[858.83,339.69],[858.84,339.69],[858.84,339.71],[858.85,339.72],[858.85,339.72],[858.86,339.73],[858.87,339.73],[858.87,339.73],[858.87,339.74],[858.87,339.74],[858.86,339.74],[858.86,339.74],[858.86,339.75],[858.86,339.75],[858.86,339.75],[858.86,339.75],[858.86,339.76],[858.86,339.76],[858.86,339.76],[858.86,339.76],[858.86,339.77],[858.86,339.77],[858.86,339.77],[858.86,339.77],[858.86,339.77],[858.87,339.77],[858.87,339.77],[858.88,339.77],[858.88,339.77],[858.88,339.77],[858.88,339.77],[858.88,339.76],[858.88,339.76],[858.88,339.76],[858.89,339.76],[858.89,339.76],[858.89,339.76],[858.89,339.75],[858.89,339.75],[858.89,339.75],[858.9,339.75],[858.9,339.75],[858.91,339.75],[858.91,339.76],[858.92,339.76],[858.92,339.76],[858.92,339.76],[858.91,339.77],[858.9,339.78],[858.9,339.78],[858.9,339.79],[858.9,339.79],[858.89,339.8],[858.89,339.8],[858.89,339.81],[858.89,339.81],[858.88,339.81],[858.88,339.81],[858.88,339.81],[858.88,339.82],[858.88,339.82],[858.88,339.83],[858.88,339.83],[858.88,339.83],[858.88,339.83],[858.88,339.83],[858.87,339.83],[858.86,339.83],[858.86,339.83],[858.86,339.84],[858.86,339.84],[858.86,339.84],[858.86,339.85],[858.86,339.87],[858.86,339.87],[858.87,339.88],[858.87,339.88],[858.87,339.89],[858.88,339.89],[858.88,339.9],[858.88,339.91],[858.88,339.91],[858.89,339.92],[858.88,339.93],[858.88,339.96],[858.88,339.98],[858.88,339.99],[858.88,339.99],[858.87,340],[858.87,340.01],[858.86,340.02],[858.86,340.02],[858.86,340.03],[858.88,340.06],[858.88,340.07],[858.88,340.08],[858.87,340.1],[858.87,340.11],[858.88,340.11],[858.88,340.12],[858.87,340.14],[858.87,340.15],[858.87,340.16],[858.88,340.16],[858.88,340.17],[858.88,340.17],[858.89,340.19],[858.9,340.22],[858.91,340.23],[858.91,340.24],[858.91,340.25],[858.91,340.27],[858.91,340.27],[858.91,340.28],[858.92,340.3],[858.92,340.3],[858.92,340.32],[858.92,340.32],[858.92,340.33],[858.91,340.34],[858.91,340.34],[858.91,340.35],[858.92,340.36],[858.92,340.37],[858.92,340.38],[858.92,340.41],[858.93,340.41],[858.93,340.42],[858.95,340.44],[858.96,340.45],[858.96,340.46],[858.98,340.46],[858.99,340.47],[858.99,340.47],[858.99,340.48],[859,340.49],[859,340.49],[859,340.49],[859.02,340.49],[859.02,340.5],[859.03,340.51],[859.03,340.51],[859.04,340.51],[859.04,340.52],[859.06,340.53],[859.07,340.54],[859.07,340.54],[859.07,340.55],[859.08,340.56],[859.08,340.56],[859.09,340.57],[859.09,340.57],[859.09,340.57],[859.09,340.57],[859.1,340.57],[859.11,340.58],[859.14,340.59],[859.14,340.6],[859.15,340.6],[859.21,340.62],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.21,340.63],[859.22,340.63],[859.22,340.63],[859.23,340.63],[859.23,340.63],[859.25,340.63],[859.29,340.63],[859.34,340.63],[859.34,340.63],[859.34,340.63],[859.35,340.63],[859.35,340.63],[859.35,340.63],[859.36,340.63],[859.37,340.62],[859.37,340.62],[859.37,340.62],[859.38,340.63],[859.4,340.63],[859.4,340.63],[859.44,340.66],[859.45,340.67],[859.46,340.69],[859.46,340.69],[859.49,340.7],[859.5,340.7],[859.52,340.69],[859.52,340.69],[859.53,340.69],[859.53,340.69],[859.53,340.69],[859.53,340.69],[859.53,340.69],[859.53,340.69],[859.54,340.7],[859.55,340.71],[859.55,340.71],[859.55,340.71],[859.55,340.72],[859.55,340.72],[859.55,340.73],[859.57,340.76],[859.57,340.77],[859.58,340.78],[859.59,340.79],[859.59,340.79],[859.6,340.81],[859.61,340.82],[859.61,340.83],[859.61,340.83],[859.61,340.83],[859.62,340.84],[859.62,340.84],[859.62,340.85],[859.62,340.85],[859.62,340.85],[859.62,340.87],[859.62,340.87],[859.62,340.88],[859.63,340.88],[859.65,340.89],[859.66,340.91],[859.67,340.92],[859.69,340.93],[859.69,340.93],[859.7,340.93],[859.7,340.94],[859.71,340.95],[859.73,340.97],[859.73,340.97],[859.73,340.97],[859.73,340.98],[859.73,340.98],[859.74,341],[859.74,341],[859.75,341],[859.76,341.01],[859.78,341.02],[859.8,341.03],[859.81,341.04],[859.81,341.04],[859.83,341.04],[859.83,341.04],[859.83,341.04],[859.84,341.04],[859.84,341.04],[859.86,341.07],[859.86,341.07],[859.86,341.08],[859.87,341.08],[859.87,341.08],[859.87,341.08],[859.88,341.1],[859.88,341.11],[859.89,341.11],[859.89,341.11],[859.89,341.14],[859.89,341.14],[859.89,341.14],[859.89,341.14],[859.9,341.15],[859.9,341.16],[859.9,341.16],[859.9,341.16],[859.9,341.17],[859.9,341.17],[859.9,341.18],[859.9,341.19],[859.9,341.19],[859.9,341.2],[859.9,341.21],[859.9,341.21],[859.9,341.21],[859.91,341.22],[859.91,341.22],[859.91,341.22],[859.9,341.23],[859.9,341.23],[859.91,341.24],[859.91,341.24],[859.94,341.3],[859.94,341.31],[859.95,341.31],[859.96,341.32],[859.96,341.32],[859.96,341.33],[859.96,341.33],[859.97,341.33],[859.98,341.32],[859.99,341.32],[859.99,341.32],[859.99,341.32],[860,341.32],[860.01,341.32],[860.03,341.32],[860.05,341.33],[860.05,341.33],[860.05,341.33],[860.05,341.35],[860.05,341.35],[860.06,341.36],[860.06,341.36],[860.07,341.37],[860.07,341.38],[860.07,341.38],[860.07,341.38],[860.07,341.4],[860.07,341.41],[860.07,341.41],[860.07,341.42],[860.08,341.44],[860.08,341.45],[860.08,341.46],[860.08,341.47],[860.08,341.48],[860.08,341.48],[860.08,341.49],[860.09,341.5],[860.09,341.52],[860.09,341.53],[860.09,341.54],[860.09,341.55],[860.1,341.57],[860.1,341.58],[860.09,341.58],[860.09,341.59],[860.09,341.59],[860.09,341.61],[860.08,341.61],[860.08,341.61],[860.08,341.61],[860.07,341.61],[860.07,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.61],[860.06,341.62],[860.06,341.62],[860.06,341.62],[860.06,341.62],[860.06,341.63],[860.06,341.63],[860.06,341.63],[860.06,341.63],[860.07,341.65],[860.07,341.65],[860.07,341.66],[860.07,341.66],[860.08,341.66],[860.08,341.66],[860.08,341.66],[860.08,341.67],[860.08,341.67],[860.08,341.67],[860.08,341.68],[860.08,341.69],[860.07,341.7],[860.07,341.71],[860.07,341.71],[860.07,341.72],[860.07,341.72],[860.07,341.72],[860.07,341.73],[860.07,341.74],[860.07,341.75],[860.07,341.75],[860.07,341.76],[860.07,341.76],[860.07,341.77],[860.07,341.77],[860.07,341.77],[860.07,341.78],[860.07,341.79],[860.07,341.8],[860.07,341.81],[860.07,341.81],[860.07,341.82],[860.07,341.82],[860.07,341.82],[860.07,341.82],[860.06,341.82],[860.06,341.82],[860.06,341.83],[860.07,341.83],[860.07,341.83],[860.07,341.83],[860.07,341.83],[860.07,341.83],[860.07,341.83],[860.07,341.83],[860.08,341.83],[860.08,341.83],[860.08,341.83],[860.08,341.83],[860.09,341.83],[860.09,341.82],[860.09,341.82],[860.09,341.82],[860.1,341.82],[860.1,341.83],[860.11,341.83],[860.11,341.83],[860.12,341.84],[860.13,341.84],[860.14,341.85],[860.21,341.9],[860.21,341.9],[860.22,341.91],[860.22,341.91],[860.25,341.93],[860.25,341.93],[860.25,341.93],[860.26,341.93],[860.26,341.93],[860.29,341.93],[860.3,341.93],[860.32,341.93],[860.33,341.93],[860.34,341.93],[860.35,341.93],[860.35,341.93],[860.36,341.93],[860.37,341.93],[860.38,341.93],[860.4,341.93],[860.4,341.93],[860.41,341.93],[860.42,341.93],[860.42,341.93],[860.42,341.93],[860.42,341.93],[860.43,341.92],[860.43,341.92],[860.44,341.92],[860.45,341.91],[860.46,341.91],[860.46,341.91],[860.46,341.91],[860.46,341.91],[860.47,341.91],[860.47,341.91],[860.48,341.91],[860.48,341.91],[860.48,341.91],[860.49,341.91],[860.49,341.91],[860.49,341.91],[860.5,341.91],[860.5,341.91],[860.51,341.91],[860.51,341.91],[860.53,341.92],[860.57,341.93],[860.57,341.93],[860.58,341.93],[860.59,341.94],[860.59,341.95],[860.61,341.99],[860.62,342],[860.62,342.01],[860.63,342.01],[860.63,342.02],[860.64,342.02],[860.65,342.03],[860.66,342.03],[860.66,342.03],[860.69,342.08],[860.7,342.09],[860.7,342.09],[860.71,342.1],[860.71,342.1],[860.71,342.1],[860.69,342.14],[860.69,342.15],[860.69,342.16],[860.69,342.18],[860.7,342.2],[860.7,342.21],[860.7,342.21],[860.7,342.22],[860.71,342.23],[860.71,342.24],[860.72,342.25],[860.75,342.3],[860.75,342.31],[860.75,342.32],[860.75,342.32],[860.76,342.33],[860.76,342.34],[860.76,342.35],[860.76,342.45],[860.75,342.5],[860.75,342.51],[860.76,342.52],[860.76,342.53],[860.76,342.55],[860.77,342.56],[860.82,342.63],[860.83,342.65],[860.83,342.66],[860.83,342.68],[860.84,342.68],[860.84,342.69],[860.84,342.7],[860.84,342.7],[860.85,342.71],[860.85,342.71],[860.86,342.72],[860.9,342.77],[860.91,342.79],[860.91,342.8],[860.92,342.81],[860.92,342.83],[860.92,342.99],[860.92,343],[860.91,343.02],[860.9,343.04],[860.87,343.1],[860.86,343.11],[860.85,343.14],[860.85,343.15],[860.83,343.17],[860.83,343.18],[860.82,343.19],[860.82,343.2],[860.79,343.23],[860.78,343.25],[860.75,343.28],[860.74,343.29],[860.74,343.3],[860.73,343.31],[860.73,343.32],[860.73,343.33],[860.71,343.38],[860.71,343.39],[860.7,343.39],[860.7,343.4],[860.68,343.41],[860.66,343.42],[860.65,343.43],[860.64,343.44],[860.64,343.44],[860.63,343.45],[860.62,343.47],[860.62,343.48],[860.61,343.52],[860.56,343.7],[860.55,343.71],[860.55,343.73],[860.54,343.73],[860.4,343.86],[860.38,343.88],[860.38,343.88],[860.33,343.94],[860.32,343.94],[860.31,343.95],[860.29,343.96],[860.28,343.96],[860.28,343.97],[860.28,343.97],[860.28,343.97],[860.27,343.98],[860.27,343.99],[860.27,343.99],[860.27,343.99],[860.26,344],[860.22,344.01],[860.15,344.05],[860.14,344.06],[860.13,344.06],[860.11,344.1],[860.1,344.11],[860.1,344.11],[860.09,344.11],[860.09,344.11],[859.98,344.14],[859.98,344.14],[859.97,344.14],[859.95,344.16],[859.94,344.17],[859.92,344.2],[859.9,344.23],[859.85,344.27],[859.84,344.29],[859.81,344.37],[859.81,344.37],[859.81,344.38],[859.8,344.39],[859.79,344.39],[859.78,344.44],[859.76,344.47],[859.74,344.51],[859.72,344.54],[859.72,344.55],[859.71,344.56],[859.65,344.61],[859.6,344.67],[859.59,344.69],[859.58,344.7],[859.57,344.74],[859.55,344.8],[859.55,344.81],[859.54,344.82],[859.54,344.83],[859.54,344.84],[859.54,344.86],[859.54,344.86],[859.54,344.87],[859.52,344.91],[859.52,344.91],[859.51,344.92],[859.51,344.92],[859.5,344.93],[859.5,344.94],[859.49,344.94],[859.49,344.94],[859.48,344.95],[859.47,344.95],[859.47,344.95],[859.46,344.96],[859.46,344.96],[859.45,344.97],[859.45,344.98],[859.45,345.02],[859.44,345.02],[859.44,345.03],[859.44,345.03],[859.42,345.05],[859.42,345.05],[859.42,345.06],[859.42,345.07],[859.42,345.07],[859.42,345.08],[859.43,345.11],[859.43,345.12],[859.44,345.13],[859.46,345.16],[859.46,345.17],[859.46,345.2],[859.47,345.21],[859.47,345.23],[859.47,345.23],[859.47,345.24],[859.47,345.24],[859.47,345.25],[859.47,345.26],[859.47,345.27],[859.46,345.28],[859.46,345.29],[859.46,345.29],[859.46,345.3],[859.43,345.32],[859.42,345.35],[859.41,345.36],[859.4,345.37],[859.4,345.37],[859.39,345.38],[859.39,345.38],[859.39,345.39],[859.35,345.71],[859.34,345.77],[859.33,345.8],[859.33,345.81],[859.32,345.85],[859.32,345.86],[859.31,345.94],[859.31,345.95],[859.3,345.98],[859.29,346.05],[859.28,346.06],[859.28,346.06],[859.28,346.07],[859.28,346.09],[859.28,346.1],[859.28,346.11],[859.28,346.11],[859.26,346.18],[859.25,346.2],[859.23,346.22],[859.22,346.24],[859.22,346.24],[859.21,346.27],[859.21,346.28],[859.2,346.31],[859.2,346.31],[859.19,346.32],[859.19,346.32],[859.18,346.33],[859.17,346.34],[859.17,346.35],[859.16,346.39],[859.16,346.39],[859.15,346.41],[859.12,346.47],[859.11,346.48],[859.11,346.48],[859.1,346.49],[859.09,346.49],[859.09,346.49],[859.09,346.5],[859.08,346.5],[859.08,346.5],[859.08,346.51],[859.08,346.51],[859.08,346.53],[859.08,346.53],[859.08,346.53],[859.08,346.54],[859.07,346.55],[859.04,346.57],[859.04,346.57],[859.03,346.58],[859.03,346.58],[859.03,346.59],[859.03,346.61],[859.02,346.62],[859.02,346.63],[859.02,346.64],[859.02,346.65],[859.02,346.68],[859.01,346.68],[859.01,346.69],[859.01,346.69],[859.01,346.69],[859.01,346.69],[859.01,346.69],[859.01,346.7],[859.01,346.71],[859,346.72],[859,346.73],[859,346.73],[859,346.74],[859,346.75],[859,346.8],[859,346.81],[859,346.82],[859,346.82],[858.99,346.88],[858.99,346.9],[858.98,346.92],[858.97,346.97],[858.96,346.97],[858.96,346.98],[858.96,346.98],[858.95,346.99],[858.94,347],[858.92,347.01],[858.92,347.02],[858.91,347.02],[858.91,347.03],[858.91,347.03],[858.9,347.06],[858.89,347.06],[858.89,347.07],[858.88,347.07],[858.88,347.08],[858.87,347.08],[858.87,347.09],[858.86,347.09],[858.85,347.1],[858.85,347.1],[858.85,347.1],[858.84,347.1],[858.83,347.1],[858.82,347.1],[858.8,347.1],[858.78,347.1],[858.76,347.09],[858.75,347.09],[858.75,347.1],[858.74,347.1],[858.74,347.1],[858.72,347.13],[858.71,347.13],[858.71,347.13],[858.71,347.13],[858.7,347.13],[858.65,347.14],[858.65,347.14],[858.64,347.15],[858.63,347.15],[858.63,347.16],[858.62,347.16],[858.56,347.16],[858.55,347.16],[858.55,347.17],[858.51,347.18],[858.5,347.19],[858.5,347.19],[858.5,347.19],[858.47,347.21],[858.46,347.21],[858.45,347.22],[858.45,347.23],[858.45,347.23],[858.44,347.23],[858.43,347.23],[858.43,347.23],[858.43,347.24],[858.42,347.24],[858.42,347.24],[858.42,347.25],[858.41,347.25],[858.41,347.25],[858.41,347.25],[858.41,347.26],[858.41,347.27],[858.41,347.27],[858.4,347.27],[858.4,347.27],[858.39,347.28],[858.39,347.28],[858.39,347.28],[858.39,347.28],[858.39,347.28],[858.39,347.29],[858.39,347.3],[858.39,347.3],[858.39,347.3],[858.38,347.3],[858.38,347.3],[858.38,347.3],[858.38,347.31],[858.37,347.31],[858.36,347.31],[858.36,347.31],[858.35,347.31],[858.35,347.32],[858.34,347.32],[858.34,347.32],[858.33,347.33],[858.33,347.33],[858.33,347.33],[858.33,347.34],[858.33,347.34],[858.32,347.34],[858.32,347.34],[858.32,347.35],[858.32,347.35],[858.32,347.36],[858.32,347.36],[858.31,347.36],[858.31,347.36],[858.31,347.36],[858.3,347.36],[858.29,347.37],[858.29,347.37],[858.28,347.38],[858.27,347.38],[858.27,347.38],[858.27,347.38],[858.26,347.38],[858.26,347.38],[858.26,347.39],[858.25,347.39],[858.24,347.4],[858.24,347.4],[858.22,347.41],[858.22,347.41],[858.22,347.41],[858.22,347.42],[858.22,347.42],[858.22,347.42],[858.22,347.44],[858.22,347.44],[858.22,347.44],[858.22,347.45],[858.21,347.46],[858.21,347.47],[858.2,347.47],[858.2,347.47],[858.2,347.49],[858.2,347.49],[858.2,347.5],[858.2,347.51],[858.18,347.54],[858.17,347.56],[858.17,347.56],[858.17,347.56],[858.17,347.57],[858.17,347.57],[858.17,347.58],[858.18,347.58],[858.18,347.59],[858.18,347.59],[858.18,347.59],[858.18,347.59],[858.17,347.6],[858.17,347.61],[858.16,347.61],[858.16,347.62],[858.15,347.63],[858.15,347.64],[858.14,347.65],[858.14,347.65],[858.14,347.65],[858.13,347.66],[858.11,347.66],[858.08,347.67],[858.02,347.68],[858.02,347.68],[858.01,347.69],[858.01,347.69],[858,347.69],[858,347.7],[857.99,347.71],[857.99,347.71],[857.99,347.71],[857.98,347.71],[857.98,347.71],[857.97,347.71],[857.97,347.71],[857.97,347.71],[857.97,347.72],[857.96,347.72],[857.95,347.73],[857.95,347.73],[857.95,347.73],[857.94,347.73],[857.94,347.74],[857.94,347.74],[857.94,347.74],[857.94,347.75],[857.95,347.75],[857.95,347.75],[857.95,347.75],[857.95,347.77],[857.95,347.77],[857.95,347.78],[857.95,347.78],[857.95,347.78],[857.95,347.79],[857.95,347.79],[857.95,347.79],[857.94,347.79],[857.94,347.79],[857.94,347.79],[857.93,347.79],[857.92,347.79],[857.92,347.79],[857.91,347.79],[857.91,347.79],[857.9,347.8],[857.89,347.8],[857.89,347.81],[857.89,347.81],[857.89,347.81],[857.89,347.81],[857.88,347.8],[857.88,347.8],[857.88,347.8],[857.88,347.8],[857.87,347.79],[857.87,347.79],[857.87,347.79],[857.84,347.8],[857.84,347.8],[857.81,347.82],[857.81,347.82],[857.8,347.82],[857.8,347.82],[857.8,347.83],[857.79,347.83],[857.78,347.85],[857.78,347.85],[857.78,347.86],[857.77,347.86],[857.77,347.86],[857.73,347.87],[857.73,347.87],[857.68,347.89],[857.68,347.9],[857.67,347.9],[857.67,347.91],[857.66,347.92],[857.65,347.93],[857.65,347.93],[857.65,347.94],[857.64,347.94],[857.64,347.94],[857.61,347.95],[857.6,347.96],[857.58,347.97],[857.57,347.97],[857.54,347.99],[857.54,347.99],[857.52,348],[857.52,348],[857.52,348],[857.51,348],[857.5,348],[857.5,348],[857.49,348],[857.48,348],[857.45,348],[857.44,348.01],[857.44,348.01],[857.43,348.01],[857.43,348.01],[857.42,348.01],[857.38,348.06],[857.37,348.06],[857.37,348.06],[857.36,348.09],[857.36,348.1],[857.36,348.11],[857.36,348.12],[857.36,348.13],[857.35,348.14],[857.35,348.14],[857.35,348.2],[857.35,348.21],[857.35,348.21],[857.35,348.22],[857.34,348.22],[857.33,348.24],[857.33,348.24],[857.32,348.24],[857.32,348.24],[857.32,348.25],[857.31,348.25],[857.31,348.25],[857.31,348.25],[857.31,348.25],[857.3,348.26],[857.3,348.26],[857.3,348.27],[857.3,348.27],[857.28,348.29],[857.28,348.3],[857.28,348.3],[857.28,348.31],[857.28,348.33],[857.28,348.34],[857.28,348.36],[857.27,348.36],[857.27,348.36],[857.27,348.37],[857.28,348.37],[857.28,348.38],[857.28,348.39],[857.28,348.39],[857.28,348.4],[857.28,348.4],[857.28,348.41],[857.28,348.41],[857.28,348.42],[857.28,348.44],[857.28,348.44],[857.27,348.45],[857.27,348.45],[857.26,348.46],[857.26,348.46],[857.26,348.47],[857.24,348.5],[857.24,348.5],[857.24,348.51],[857.24,348.51],[857.25,348.52],[857.25,348.52],[857.25,348.53],[857.24,348.53],[857.24,348.53],[857.23,348.55],[857.21,348.58],[857.2,348.58],[857.2,348.58],[857.19,348.58],[857.19,348.59],[857.19,348.59],[857.19,348.59],[857.18,348.59],[857.17,348.62],[857.16,348.63],[857.15,348.65],[857.15,348.65],[857.14,348.65],[857.14,348.66],[857.14,348.67],[857.14,348.67],[857.14,348.67],[857.14,348.68],[857.14,348.68],[857.13,348.69],[857.13,348.7],[857.13,348.7],[857.12,348.71],[857.12,348.71],[857.11,348.72],[857.11,348.72],[857.11,348.72],[857.1,348.73],[857.1,348.73],[857.1,348.73],[857.09,348.74],[857.09,348.74],[857.08,348.75],[857.08,348.75],[857.07,348.81],[857.07,348.82],[857.07,348.83],[857.07,348.86],[857.07,348.86],[857.06,348.93],[857.06,348.93],[857.06,348.94],[857.06,348.95],[857.05,348.96],[857.04,348.97],[857.03,348.99],[857.03,348.99],[857.03,348.99],[857.02,348.99],[857.02,349],[857,349],[856.97,349.05],[856.97,349.06],[856.97,349.06],[856.97,349.07],[856.97,349.07],[856.97,349.07],[856.97,349.08],[856.97,349.08],[856.96,349.08],[856.95,349.08],[856.95,349.09],[856.95,349.09],[856.94,349.1],[856.94,349.1],[856.94,349.1],[856.93,349.1],[856.93,349.1],[856.93,349.11],[856.92,349.11],[856.92,349.12],[856.91,349.13],[856.9,349.13],[856.9,349.14],[856.9,349.14],[856.89,349.14],[856.89,349.14],[856.89,349.13],[856.89,349.13],[856.89,349.13],[856.88,349.12],[856.88,349.11],[856.88,349.11],[856.88,349.11],[856.87,349.11],[856.87,349.1],[856.87,349.1],[856.87,349.1],[856.87,349.1],[856.86,349.09],[856.86,349.09],[856.86,349.09],[856.86,349.09],[856.86,349.09],[856.85,349.09],[856.85,349.09],[856.85,349.09],[856.85,349.09],[856.85,349.09],[856.85,349.1],[856.85,349.1],[856.85,349.1],[856.85,349.1],[856.85,349.11],[856.85,349.11],[856.85,349.12],[856.85,349.12],[856.84,349.12],[856.84,349.13],[856.83,349.14],[856.82,349.14],[856.82,349.14],[856.82,349.14],[856.81,349.14],[856.81,349.13],[856.81,349.13],[856.8,349.13],[856.8,349.13],[856.8,349.12],[856.79,349.12],[856.79,349.12],[856.79,349.12],[856.78,349.11],[856.78,349.11],[856.77,349.11],[856.77,349.11],[856.77,349.11],[856.77,349.11],[856.77,349.12],[856.76,349.12],[856.76,349.12],[856.76,349.12],[856.77,349.12],[856.77,349.13],[856.77,349.13],[856.78,349.13],[856.78,349.13],[856.78,349.13],[856.78,349.14],[856.79,349.15],[856.8,349.16],[856.8,349.16],[856.8,349.16],[856.8,349.16],[856.81,349.17],[856.81,349.17],[856.81,349.17],[856.81,349.18],[856.81,349.18],[856.81,349.18],[856.81,349.18],[856.81,349.18],[856.82,349.18],[856.82,349.19],[856.83,349.19],[856.83,349.19],[856.83,349.19],[856.84,349.19],[856.84,349.19],[856.84,349.19],[856.85,349.2],[856.85,349.2],[856.85,349.2],[856.85,349.2],[856.85,349.2],[856.86,349.21],[856.86,349.21],[856.86,349.22],[856.85,349.22],[856.85,349.23],[856.85,349.24],[856.85,349.24],[856.85,349.24],[856.85,349.24],[856.84,349.25],[856.84,349.25],[856.84,349.26],[856.83,349.26],[856.83,349.27],[856.83,349.27],[856.83,349.27],[856.82,349.28],[856.82,349.28],[856.82,349.28],[856.82,349.28],[856.82,349.28],[856.81,349.28],[856.81,349.28],[856.8,349.28],[856.8,349.29],[856.8,349.29],[856.8,349.3],[856.8,349.3],[856.79,349.31],[856.79,349.31],[856.79,349.32],[856.79,349.32],[856.79,349.32],[856.78,349.32],[856.77,349.33],[856.77,349.33],[856.75,349.34],[856.74,349.35],[856.74,349.35],[856.74,349.35],[856.73,349.36],[856.71,349.4],[856.71,349.4],[856.71,349.4],[856.7,349.4],[856.7,349.4],[856.69,349.42],[856.69,349.42],[856.69,349.42],[856.69,349.43],[856.69,349.43],[856.69,349.43],[856.69,349.44],[856.69,349.44],[856.67,349.46],[856.67,349.46],[856.66,349.47],[856.66,349.47],[856.66,349.47],[856.66,349.47],[856.66,349.47],[856.66,349.48],[856.66,349.48],[856.66,349.49],[856.66,349.49],[856.66,349.49],[856.66,349.49],[856.66,349.5],[856.66,349.5],[856.66,349.5],[856.66,349.51],[856.65,349.51],[856.65,349.51],[856.65,349.52],[856.65,349.52],[856.64,349.53],[856.63,349.54],[856.63,349.54],[856.63,349.55],[856.62,349.55],[856.62,349.56],[856.62,349.56],[856.62,349.56],[856.61,349.57],[856.61,349.58],[856.6,349.59],[856.59,349.59],[856.59,349.6],[856.59,349.62],[856.58,349.62],[856.58,349.62],[856.58,349.63],[856.58,349.63],[856.58,349.63],[856.58,349.63],[856.58,349.63],[856.58,349.63],[856.57,349.64],[856.57,349.64],[856.57,349.64],[856.57,349.64],[856.57,349.64],[856.57,349.65],[856.57,349.65],[856.57,349.65],[856.57,349.65],[856.56,349.65],[856.56,349.66],[856.56,349.66],[856.56,349.66],[856.56,349.66],[856.56,349.66],[856.56,349.66],[856.56,349.67],[856.56,349.67],[856.56,349.67],[856.56,349.67],[856.55,349.67],[856.55,349.67],[856.55,349.67],[856.55,349.68],[856.55,349.68],[856.55,349.68],[856.55,349.68],[856.55,349.68],[856.54,349.68],[856.54,349.68],[856.54,349.69],[856.54,349.69],[856.54,349.69],[856.54,349.69],[856.54,349.69],[856.54,349.69],[856.53,349.7],[856.53,349.7],[856.53,349.7],[856.53,349.7],[856.53,349.7],[856.53,349.7],[856.53,349.7],[856.53,349.71],[856.53,349.71],[856.52,349.71],[856.52,349.71],[856.52,349.71],[856.52,349.71],[856.52,349.72],[856.52,349.72],[856.52,349.72],[856.52,349.72],[856.52,349.72],[856.52,349.72],[856.52,349.72],[856.52,349.73],[856.51,349.73],[856.51,349.73],[856.51,349.73],[856.51,349.73],[856.51,349.73],[856.51,349.74],[856.51,349.74],[856.51,349.74],[856.51,349.74],[856.51,349.74],[856.51,349.74],[856.5,349.75],[856.5,349.75],[856.5,349.75],[856.5,349.75],[856.5,349.75],[856.5,349.75],[856.5,349.75],[856.5,349.75],[856.5,349.76],[856.49,349.76],[856.49,349.76],[856.49,349.76],[856.49,349.76],[856.49,349.76],[856.49,349.77],[856.49,349.77],[856.48,349.77],[856.48,349.77],[856.48,349.78],[856.48,349.78],[856.48,349.78],[856.48,349.78],[856.48,349.78],[856.48,349.78],[856.48,349.8],[856.48,349.8],[856.48,349.8],[856.48,349.8],[856.48,349.81],[856.48,349.81],[856.47,349.81],[856.47,349.82],[856.47,349.82],[856.47,349.82],[856.47,349.82],[856.47,349.82],[856.47,349.83],[856.47,349.83],[856.46,349.83],[856.46,349.83],[856.46,349.83],[856.46,349.84],[856.46,349.84],[856.45,349.84],[856.45,349.84],[856.45,349.84],[856.45,349.84],[856.45,349.84],[856.44,349.85],[856.44,349.85],[856.44,349.85],[856.44,349.85],[856.44,349.85],[856.43,349.85],[856.43,349.85],[856.43,349.85],[856.43,349.85],[856.42,349.85],[856.42,349.85],[856.42,349.85],[856.42,349.85],[856.42,349.84],[856.42,349.84],[856.42,349.84],[856.42,349.84],[856.42,349.83],[856.42,349.83],[856.41,349.83],[856.41,349.83],[856.41,349.83],[856.41,349.83],[856.41,349.83],[856.4,349.83],[856.4,349.83],[856.4,349.83],[856.4,349.83],[856.39,349.83],[856.39,349.83],[856.39,349.83],[856.38,349.83],[856.38,349.83],[856.38,349.83],[856.38,349.84],[856.38,349.84],[856.38,349.84],[856.38,349.84],[856.39,349.84],[856.39,349.84],[856.39,349.85],[856.39,349.85],[856.4,349.85],[856.4,349.85],[856.4,349.85],[856.4,349.85],[856.4,349.86],[856.4,349.86],[856.4,349.86],[856.4,349.86],[856.4,349.87],[856.4,349.87],[856.41,349.87],[856.41,349.87],[856.41,349.87],[856.41,349.87],[856.41,349.87],[856.41,349.88],[856.41,349.88],[856.41,349.88],[856.41,349.88],[856.41,349.89],[856.41,349.89],[856.41,349.89],[856.41,349.89],[856.41,349.89],[856.41,349.89],[856.4,349.9],[856.4,349.9],[856.4,349.9],[856.4,349.9],[856.4,349.91],[856.4,349.91],[856.4,349.91],[856.4,349.91],[856.4,349.91],[856.4,349.92],[856.39,349.92],[856.39,349.92],[856.39,349.92],[856.39,349.92],[856.39,349.93],[856.39,349.93],[856.39,349.93],[856.39,349.93],[856.39,349.93],[856.39,349.94],[856.38,349.94],[856.38,349.94],[856.38,349.94],[856.38,349.94],[856.38,349.94],[856.37,349.95],[856.37,349.95],[856.37,349.95],[856.37,349.95],[856.37,349.95],[856.37,349.95],[856.37,349.96],[856.37,349.96],[856.37,349.96],[856.37,349.96],[856.37,349.96],[856.38,349.96],[856.38,349.96],[856.38,349.96],[856.38,349.96],[856.38,349.96],[856.39,349.96],[856.39,349.96],[856.39,349.96],[856.39,349.96],[856.4,349.96],[856.4,349.95],[856.4,349.95],[856.4,349.95],[856.4,349.95],[856.41,349.95],[856.41,349.95],[856.41,349.95],[856.41,349.95],[856.41,349.95],[856.42,349.95],[856.42,349.94],[856.42,349.94],[856.42,349.94],[856.43,349.94],[856.43,349.94],[856.43,349.94],[856.43,349.94],[856.44,349.94],[856.44,349.94],[856.44,349.94],[856.44,349.94],[856.44,349.94],[856.45,349.94],[856.45,349.94],[856.45,349.94],[856.45,349.94],[856.46,349.94],[856.46,349.94],[856.46,349.94],[856.46,349.95],[856.46,349.95],[856.46,349.95],[856.46,349.95],[856.46,349.95],[856.46,349.96],[856.46,349.96],[856.46,349.96],[856.46,349.96],[856.46,349.97],[856.46,349.97],[856.46,349.97],[856.46,349.98],[856.46,349.98],[856.46,349.98],[856.46,349.98],[856.46,349.99],[856.46,349.99],[856.46,349.99],[856.46,349.99],[856.46,350],[856.46,350],[856.46,350],[856.46,350],[856.45,350.01],[856.45,350.01],[856.45,350.01],[856.45,350.02],[856.45,350.02],[856.46,350.02],[856.46,350.02],[856.46,350.03],[856.46,350.03],[856.46,350.03],[856.46,350.03],[856.46,350.03],[856.47,350.04],[856.47,350.04],[856.47,350.04],[856.47,350.04],[856.47,350.05],[856.47,350.05],[856.47,350.05],[856.47,350.05],[856.47,350.06],[856.47,350.06],[856.47,350.06],[856.47,350.06],[856.47,350.06],[856.47,350.07],[856.47,350.07],[856.47,350.07],[856.47,350.07],[856.46,350.07],[856.46,350.08],[856.46,350.08],[856.46,350.08],[856.46,350.08],[856.46,350.09],[856.46,350.09],[856.46,350.09],[856.46,350.09],[856.46,350.09],[856.45,350.1],[856.45,350.1],[856.45,350.1],[856.45,350.1],[856.45,350.1],[856.45,350.11],[856.45,350.11],[856.45,350.11],[856.45,350.11],[856.45,350.12],[856.45,350.12],[856.45,350.12],[856.45,350.12],[856.45,350.12],[856.44,350.13],[856.44,350.13],[856.44,350.13],[856.44,350.13],[856.44,350.13],[856.44,350.13],[856.43,350.14],[856.43,350.14],[856.43,350.14],[856.43,350.14],[856.43,350.15],[856.42,350.15],[856.42,350.15],[856.42,350.15],[856.42,350.15],[856.42,350.15],[856.42,350.16],[856.41,350.16],[856.41,350.16],[856.41,350.16],[856.41,350.16],[856.41,350.16],[856.41,350.17],[856.4,350.17],[856.4,350.17],[856.4,350.17],[856.4,350.17],[856.39,350.17],[856.39,350.17],[856.39,350.17],[856.39,350.17],[856.39,350.17],[856.38,350.17],[856.38,350.17],[856.38,350.17],[856.38,350.17],[856.37,350.17],[856.37,350.17],[856.37,350.17],[856.37,350.17],[856.36,350.17],[856.36,350.17],[856.36,350.17],[856.36,350.17],[856.35,350.17],[856.35,350.17],[856.35,350.17],[856.35,350.17],[856.34,350.17],[856.34,350.17],[856.34,350.17],[856.34,350.17],[856.34,350.17],[856.33,350.18],[856.33,350.18],[856.33,350.18],[856.33,350.18],[856.32,350.18],[856.32,350.18],[856.32,350.18],[856.32,350.18],[856.32,350.18],[856.31,350.18],[856.31,350.18],[856.31,350.18],[856.31,350.18],[856.3,350.18],[856.3,350.18],[856.3,350.18],[856.3,350.19],[856.3,350.19],[856.29,350.19],[856.29,350.19],[856.29,350.19],[856.29,350.19],[856.29,350.19],[856.28,350.19],[856.28,350.19],[856.28,350.19],[856.28,350.19],[856.27,350.19],[856.27,350.19],[856.27,350.19],[856.27,350.19],[856.27,350.19],[856.26,350.2],[856.26,350.2],[856.26,350.2],[856.26,350.2],[856.26,350.2],[856.25,350.2],[856.25,350.2],[856.25,350.2],[856.25,350.2],[856.25,350.2],[856.24,350.2],[856.24,350.21],[856.24,350.21],[856.24,350.21],[856.23,350.21],[856.23,350.21],[856.23,350.21],[856.23,350.21],[856.23,350.21],[856.22,350.21],[856.22,350.22],[856.22,350.22],[856.22,350.22],[856.21,350.22],[856.21,350.22],[856.21,350.22],[856.21,350.22],[856.2,350.22],[856.2,350.22],[856.2,350.22],[856.2,350.22],[856.2,350.22],[856.19,350.22],[856.19,350.23],[856.19,350.23],[856.19,350.23],[856.18,350.23],[856.18,350.23],[856.18,350.23],[856.18,350.23],[856.17,350.23],[856.17,350.23],[856.17,350.23],[856.17,350.23],[856.16,350.23],[856.16,350.23],[856.16,350.23],[856.16,350.23],[856.16,350.23],[856.15,350.23],[856.15,350.23],[856.15,350.23],[856.15,350.23],[856.14,350.23],[856.14,350.23],[856.14,350.23],[856.14,350.24],[856.14,350.24],[856.13,350.24],[856.13,350.24],[856.13,350.24],[856.13,350.24],[856.13,350.24],[856.12,350.24],[856.12,350.24],[856.12,350.25],[856.12,350.25],[856.12,350.25],[856.12,350.25],[856.11,350.25],[856.11,350.25],[856.11,350.25],[856.11,350.26],[856.11,350.26],[856.11,350.26],[856.11,350.26],[856.11,350.26],[856.11,350.27],[856.1,350.27],[856.1,350.27],[856.1,350.27],[856.1,350.27],[856.1,350.27],[856.1,350.28],[856.1,350.28],[856.1,350.28],[856.1,350.28],[856.1,350.28],[856.09,350.28],[856.09,350.29],[856.09,350.29],[856.09,350.29],[856.09,350.29],[856.09,350.29],[856.09,350.3],[856.09,350.3],[856.09,350.3],[856.09,350.3],[856.09,350.3],[856.09,350.31],[856.09,350.31],[856.09,350.31],[856.09,350.31],[856.09,350.32],[856.08,350.32],[856.08,350.32],[856.08,350.32],[856.08,350.32],[856.08,350.33],[856.08,350.33],[856.08,350.33],[856.08,350.33],[856.08,350.33],[856.08,350.34],[856.08,350.34],[856.08,350.34],[856.08,350.34],[856.11,350.4],[856.11,350.4],[856.11,350.4],[856.11,350.41],[856.11,350.41],[856.11,350.41],[856.11,350.41],[856.11,350.41],[856.11,350.42],[856.11,350.42],[856.11,350.42],[856.11,350.42],[856.11,350.43],[856.11,350.43],[856.11,350.43],[856.11,350.43],[856.11,350.44],[856.11,350.44],[856.1,350.44],[856.1,350.44],[856.1,350.44],[856.1,350.45],[856.1,350.45],[856.1,350.45],[856.1,350.45],[856.1,350.46],[856.1,350.46],[856.1,350.46],[856.1,350.46],[856.1,350.46],[856.1,350.47],[856.1,350.47],[856.1,350.47],[856.09,350.47],[856.09,350.47],[856.09,350.48],[856.09,350.48],[856.09,350.48],[856.09,350.48],[856.09,350.48],[856.08,350.48],[856.08,350.49],[856.08,350.49],[856.08,350.49],[856.08,350.49],[856.08,350.49],[856.07,350.49],[856.07,350.49],[856.07,350.49],[856.07,350.49],[856.06,350.49],[856.06,350.5],[856.06,350.5],[856.06,350.5],[856.06,350.5],[856.05,350.51],[856.05,350.51],[856.05,350.51],[856.05,350.52],[856.05,350.52],[856.05,350.52],[856.04,350.52],[856.04,350.52],[856.04,350.53],[856.04,350.53],[856.04,350.53],[856.04,350.53],[856.03,350.53],[856.03,350.54],[856.03,350.54],[856.02,350.54],[856.01,350.56],[856,350.57],[855.99,350.57],[855.97,350.57],[855.96,350.58],[855.96,350.58],[855.95,350.58],[855.95,350.58],[855.94,350.58],[855.94,350.57],[855.94,350.57],[855.92,350.58],[855.92,350.58],[855.92,350.58],[855.91,350.58],[855.91,350.58],[855.91,350.58],[855.91,350.58],[855.9,350.58],[855.9,350.58],[855.9,350.58],[855.9,350.58],[855.9,350.58],[855.89,350.57],[855.89,350.57],[855.89,350.57],[855.89,350.57],[855.89,350.57],[855.88,350.57],[855.88,350.57],[855.88,350.57],[855.88,350.57],[855.87,350.57],[855.87,350.57],[855.87,350.57],[855.87,350.57],[855.86,350.57],[855.86,350.57],[855.86,350.57],[855.86,350.57],[855.85,350.57],[855.85,350.57],[855.85,350.57],[855.85,350.57],[855.84,350.56],[855.84,350.56],[855.83,350.56],[855.83,350.56],[855.83,350.56],[855.83,350.56],[855.82,350.56],[855.82,350.56],[855.82,350.55],[855.82,350.55],[855.82,350.55],[855.81,350.55],[855.81,350.55],[855.81,350.55],[855.81,350.55],[855.81,350.55],[855.8,350.55],[855.8,350.55],[855.8,350.55],[855.8,350.55],[855.79,350.55],[855.79,350.55],[855.79,350.55],[855.79,350.54],[855.79,350.54],[855.78,350.54],[855.78,350.54],[855.78,350.54],[855.78,350.54],[855.78,350.54],[855.78,350.53],[855.77,350.53],[855.77,350.53],[855.77,350.52],[855.77,350.52],[855.77,350.52],[855.77,350.52],[855.76,350.52],[855.76,350.52],[855.76,350.52],[855.76,350.52],[855.76,350.52],[855.75,350.52],[855.75,350.52],[855.75,350.52],[855.75,350.52],[855.75,350.52],[855.75,350.52],[855.74,350.52],[855.74,350.52],[855.74,350.52],[855.74,350.51],[855.73,350.51],[855.73,350.51],[855.73,350.51],[855.73,350.51],[855.72,350.51],[855.72,350.51],[855.72,350.51],[855.72,350.51],[855.72,350.51],[855.72,350.51],[855.72,350.51],[855.72,350.5],[855.71,350.5],[855.71,350.5],[855.71,350.5],[855.71,350.5],[855.71,350.5],[855.71,350.5],[855.71,350.5],[855.7,350.5],[855.7,350.5],[855.7,350.49],[855.7,350.49],[855.7,350.49],[855.69,350.49],[855.69,350.49],[855.69,350.49],[855.69,350.49],[855.69,350.49],[855.69,350.49],[855.68,350.49],[855.68,350.49],[855.68,350.48],[855.68,350.48],[855.68,350.48],[855.68,350.48],[855.67,350.48],[855.67,350.48],[855.67,350.48],[855.67,350.48],[855.66,350.48],[855.66,350.48],[855.66,350.48],[855.66,350.48],[855.66,350.48],[855.65,350.48],[855.65,350.48],[855.65,350.48],[855.65,350.47],[855.65,350.47],[855.65,350.47],[855.64,350.47],[855.64,350.47],[855.64,350.47],[855.64,350.47],[855.64,350.47],[855.64,350.47],[855.63,350.47],[855.63,350.47],[855.63,350.46],[855.63,350.46],[855.63,350.46],[855.63,350.46],[855.62,350.46],[855.62,350.46],[855.62,350.46],[855.62,350.46],[855.62,350.46],[855.62,350.46],[855.61,350.46],[855.61,350.45],[855.61,350.45],[855.61,350.45],[855.61,350.45],[855.6,350.45],[855.6,350.45],[855.6,350.45],[855.6,350.45],[855.6,350.45],[855.6,350.45],[855.59,350.44],[855.59,350.44],[855.59,350.44],[855.59,350.44],[855.57,350.44],[855.57,350.44],[855.56,350.43],[855.56,350.43],[855.55,350.42],[855.55,350.42],[855.55,350.42],[855.54,350.42],[855.52,350.42],[855.51,350.42],[855.51,350.42],[855.5,350.42],[855.5,350.43],[855.49,350.43],[855.49,350.43],[855.47,350.44],[855.47,350.44],[855.46,350.45],[855.45,350.45],[855.44,350.45],[855.44,350.45],[855.44,350.45],[855.43,350.46],[855.43,350.46],[855.42,350.46],[855.42,350.46],[855.41,350.46],[855.41,350.46],[855.41,350.46],[855.41,350.47],[855.4,350.47],[855.4,350.48],[855.39,350.48],[855.39,350.48],[855.39,350.49],[855.37,350.49],[855.37,350.49],[855.36,350.49],[855.35,350.49],[855.35,350.49],[855.35,350.49],[855.35,350.49],[855.35,350.49],[855.34,350.49],[855.34,350.5],[855.33,350.5],[855.32,350.51],[855.31,350.51],[855.31,350.51],[855.31,350.51],[855.31,350.5],[855.31,350.5],[855.3,350.5],[855.3,350.5],[855.3,350.5],[855.3,350.5],[855.29,350.5],[855.29,350.5],[855.29,350.5],[855.29,350.5],[855.29,350.52],[855.28,350.52],[855.28,350.52],[855.28,350.52],[855.28,350.53],[855.28,350.53],[855.27,350.54],[855.26,350.54],[855.26,350.54],[855.26,350.54],[855.26,350.56],[855.26,350.57],[855.25,350.57],[855.25,350.57],[855.25,350.58],[855.24,350.58],[855.24,350.58],[855.24,350.59],[855.24,350.59],[855.24,350.59],[855.24,350.6],[855.24,350.6],[855.24,350.61],[855.23,350.61],[855.23,350.61],[855.23,350.61],[855.21,350.62],[855.21,350.62],[855.21,350.62],[855.2,350.62],[855.2,350.62],[855.19,350.6],[855.18,350.6],[855.18,350.6],[855.18,350.6],[855.18,350.6],[855.17,350.6],[855.17,350.61],[855.16,350.63],[855.18,350.62],[855.18,350.62],[855.18,350.62],[855.18,350.62],[855.19,350.63],[855.2,350.63],[855.2,350.63],[855.2,350.64],[855.2,350.64],[855.19,350.65],[855.19,350.66],[855.2,350.67],[855.2,350.67],[855.2,350.68],[855.19,350.68],[855.19,350.68],[855.19,350.68],[855.19,350.68],[855.19,350.68],[855.19,350.68],[855.18,350.68],[855.17,350.68],[855.17,350.68],[855.17,350.68],[855.16,350.69],[855.16,350.69],[855.15,350.7],[855.13,350.74],[855.13,350.74],[855.13,350.74],[855.12,350.74],[855.12,350.75],[855.11,350.75],[855.11,350.76],[855.1,350.77],[855.1,350.77],[855.1,350.78],[855.1,350.78],[855.09,350.79],[855.09,350.79],[855.09,350.79],[855.09,350.8],[855.08,350.8],[855.06,350.81],[855.06,350.82],[855.06,350.82],[855.06,350.82],[855.06,350.83],[855.06,350.83],[855.06,350.83],[855.05,350.83],[855.04,350.85],[855.04,350.85],[855.02,350.88],[855.02,350.88],[855.01,350.89],[855.01,350.89],[855,350.9],[854.98,350.91],[854.97,350.92],[854.97,350.92],[854.97,350.94],[854.96,350.94],[854.95,350.96],[854.94,350.97],[854.93,351],[854.93,351],[854.93,351],[854.93,351.01],[854.91,351.02],[854.91,351.02],[854.91,351.02],[854.91,351.03],[854.9,351.04],[854.9,351.04],[854.9,351.04],[854.9,351.04],[854.9,351.05],[854.9,351.05],[854.88,351.05],[854.88,351.05],[854.87,351.05],[854.87,351.06],[854.86,351.08],[854.86,351.08],[854.85,351.08],[854.83,351.09],[854.83,351.09],[854.82,351.09],[854.82,351.1],[854.82,351.11],[854.81,351.11],[854.78,351.15],[854.67,351.25],[854.67,351.25],[854.67,351.25],[854.67,351.25],[854.67,351.25],[854.66,351.25],[854.65,351.26],[854.65,351.26],[854.64,351.27],[854.64,351.27],[854.64,351.27],[854.63,351.28],[854.63,351.28],[854.63,351.27],[854.6,351.27],[854.6,351.27],[854.6,351.27],[854.6,351.27],[854.59,351.27],[854.59,351.27],[854.59,351.27],[854.58,351.28],[854.58,351.29],[854.58,351.29],[854.58,351.29],[854.58,351.29],[854.57,351.29],[854.57,351.29],[854.55,351.28],[854.55,351.29],[854.55,351.29],[854.54,351.29],[854.54,351.29],[854.54,351.29],[854.53,351.29],[854.53,351.3],[854.52,351.3],[854.52,351.3],[854.52,351.3],[854.52,351.3],[854.51,351.32],[854.51,351.32],[854.51,351.33],[854.51,351.33],[854.52,351.34],[854.52,351.35],[854.52,351.35],[854.53,351.35],[854.53,351.35],[854.53,351.35],[854.53,351.35],[854.54,351.35],[854.54,351.35],[854.55,351.35],[854.55,351.35],[854.55,351.35],[854.55,351.35],[854.56,351.35],[854.56,351.36],[854.56,351.36],[854.56,351.37],[854.56,351.37],[854.57,351.37],[854.57,351.37],[854.58,351.38],[854.58,351.38],[854.58,351.38],[854.58,351.38],[854.59,351.38],[854.59,351.38],[854.59,351.39],[854.59,351.39],[854.59,351.39],[854.59,351.39],[854.58,351.4],[854.57,351.41],[854.57,351.41],[854.56,351.41],[854.55,351.42],[854.54,351.42],[854.54,351.42],[854.54,351.42],[854.53,351.44],[854.52,351.44],[854.52,351.45],[854.52,351.45],[854.52,351.45],[854.52,351.46],[854.52,351.46],[854.55,351.51],[854.55,351.51],[854.55,351.51],[854.55,351.52],[854.55,351.53],[854.55,351.53],[854.56,351.53],[854.56,351.54],[854.57,351.55],[854.57,351.55],[854.57,351.56],[854.57,351.56],[854.57,351.57],[854.56,351.57],[854.56,351.58],[854.55,351.58],[854.55,351.59],[854.52,351.6],[854.52,351.61],[854.51,351.61],[854.5,351.62],[854.49,351.63],[854.48,351.67],[854.47,351.68],[854.44,351.7],[854.43,351.71],[854.43,351.71],[854.43,351.71],[854.43,351.71],[854.43,351.71],[854.42,351.72],[854.42,351.72],[854.42,351.73],[854.42,351.74],[854.42,351.74],[854.42,351.75],[854.43,351.78],[854.43,351.79],[854.43,351.82],[854.43,351.82],[854.43,351.82],[854.43,351.82],[854.43,351.83],[854.43,351.83],[854.43,351.83],[854.44,351.84],[854.45,351.87],[854.45,351.87],[854.45,351.88],[854.45,351.88],[854.45,351.89],[854.45,351.9],[854.44,351.91],[854.44,351.92],[854.43,351.92],[854.43,351.93],[854.39,351.96],[854.38,351.96],[854.38,351.96],[854.37,351.96],[854.36,351.96],[854.36,351.96],[854.34,351.95],[854.34,351.95],[854.32,351.95],[854.32,351.94],[854.25,351.9],[854.21,351.88],[854.16,351.84],[854.15,351.84],[854.14,351.84],[854.12,351.83],[854.11,351.83],[854.1,351.84],[854.1,351.84],[854.09,351.85],[854.09,351.86],[854.09,351.86],[854.09,351.87],[854.1,351.88],[854.1,351.89],[854.1,351.89],[854.1,351.9],[854.09,351.9],[854.09,351.91],[854.08,351.91],[854.07,351.91],[854.06,351.91],[854.05,351.91],[854.04,351.91],[854.04,351.91],[854.04,351.92],[854.03,351.95],[854.03,351.95],[854.03,351.96],[854.02,351.96],[854.02,351.97],[854.01,351.98],[854.01,351.98],[854.01,351.98],[854.01,351.99],[854.01,352],[854,352.01],[853.92,352.05],[853.91,352.06],[853.91,352.07],[853.9,352.07],[853.9,352.08],[853.89,352.08],[853.89,352.09],[853.88,352.12],[853.88,352.12],[853.89,352.16],[853.89,352.19],[853.89,352.2],[853.89,352.23],[853.89,352.24],[853.88,352.24],[853.88,352.25],[853.88,352.25],[853.87,352.25],[853.87,352.25],[853.85,352.24],[853.84,352.24],[853.84,352.24],[853.81,352.25],[853.8,352.25],[853.8,352.25],[853.8,352.25],[853.79,352.25],[853.79,352.26],[853.79,352.26],[853.79,352.26],[853.78,352.26],[853.78,352.26],[853.74,352.26],[853.74,352.26],[853.73,352.26],[853.73,352.26],[853.73,352.26],[853.72,352.27],[853.72,352.27],[853.72,352.27],[853.72,352.27],[853.71,352.27],[853.71,352.27],[853.71,352.27],[853.71,352.26],[853.7,352.25],[853.69,352.25],[853.69,352.25],[853.69,352.25],[853.68,352.25],[853.68,352.25],[853.67,352.25],[853.66,352.25],[853.66,352.26],[853.66,352.26],[853.64,352.29],[853.64,352.29],[853.64,352.3],[853.64,352.31],[853.64,352.31],[853.64,352.31],[853.64,352.31],[853.64,352.31],[853.65,352.32],[853.65,352.32],[853.65,352.32],[853.65,352.33],[853.65,352.33],[853.65,352.33],[853.65,352.34],[853.65,352.34],[853.65,352.34],[853.64,352.34],[853.64,352.34],[853.64,352.34],[853.63,352.34],[853.63,352.34],[853.63,352.34],[853.62,352.35],[853.61,352.35],[853.61,352.35],[853.61,352.36],[853.61,352.36],[853.61,352.36],[853.61,352.36],[853.6,352.36],[853.6,352.36],[853.59,352.36],[853.59,352.36],[853.59,352.35],[853.59,352.36],[853.59,352.36],[853.58,352.36],[853.58,352.36],[853.58,352.37],[853.57,352.37],[853.57,352.37],[853.57,352.37],[853.57,352.37],[853.56,352.37],[853.55,352.37],[853.55,352.37],[853.53,352.37],[853.52,352.38],[853.52,352.39],[853.52,352.39],[853.51,352.39],[853.49,352.41],[853.48,352.42],[853.48,352.42],[853.48,352.43],[853.48,352.43],[853.48,352.44],[853.48,352.44],[853.48,352.45],[853.48,352.45],[853.49,352.46],[853.49,352.46],[853.49,352.46],[853.49,352.46],[853.49,352.47],[853.49,352.49],[853.49,352.49],[853.48,352.5],[853.48,352.5],[853.48,352.5],[853.45,352.51],[853.45,352.51],[853.45,352.51],[853.44,352.54],[853.44,352.54],[853.44,352.54],[853.43,352.54],[853.43,352.54],[853.42,352.54],[853.42,352.54],[853.42,352.54],[853.41,352.54],[853.41,352.54],[853.41,352.55],[853.4,352.56],[853.39,352.57],[853.38,352.57],[853.38,352.57],[853.38,352.58],[853.38,352.58],[853.38,352.58],[853.38,352.59],[853.38,352.59],[853.39,352.6],[853.39,352.6],[853.39,352.6],[853.39,352.61],[853.39,352.61],[853.39,352.61],[853.39,352.62],[853.38,352.62],[853.38,352.62],[853.38,352.63],[853.38,352.64],[853.38,352.64],[853.38,352.64],[853.37,352.65],[853.37,352.65],[853.37,352.65],[853.36,352.65],[853.36,352.64],[853.34,352.64],[853.34,352.64],[853.34,352.64],[853.34,352.64],[853.33,352.64],[853.33,352.64],[853.32,352.64],[853.3,352.64],[853.3,352.64],[853.3,352.65],[853.26,352.67],[853.25,352.68],[853.25,352.68],[853.25,352.68],[853.22,352.68],[853.2,352.68],[853.19,352.68],[853.16,352.69],[853.16,352.69],[853.16,352.69],[853.15,352.68],[853.15,352.68],[853.14,352.65],[853.14,352.65],[853.14,352.65],[853.14,352.65],[853.13,352.63],[853.13,352.63],[853.13,352.63],[853.11,352.62],[853.11,352.61],[853.1,352.61],[853.1,352.61],[853.08,352.62],[853.08,352.62],[853.05,352.62],[853.04,352.62],[853.02,352.62],[853.01,352.62],[853,352.62],[852.99,352.62],[852.98,352.62],[852.98,352.62],[852.97,352.62],[852.97,352.62],[852.96,352.61],[852.94,352.61],[852.94,352.61],[852.93,352.61],[852.93,352.61],[852.92,352.62],[852.92,352.62],[852.91,352.62],[852.9,352.62],[852.87,352.62],[852.85,352.62],[852.84,352.63],[852.82,352.64],[852.82,352.64],[852.79,352.65],[852.78,352.65],[852.75,352.64],[852.74,352.64],[852.71,352.64],[852.7,352.64],[852.67,352.65],[852.67,352.65],[852.66,352.65],[852.66,352.65],[852.66,352.64],[852.66,352.64],[852.66,352.64],[852.66,352.64],[852.66,352.64],[852.66,352.63],[852.66,352.63],[852.66,352.63],[852.66,352.62],[852.66,352.62],[852.67,352.6],[852.67,352.58],[852.68,352.58],[852.68,352.58],[852.67,352.58],[852.67,352.57],[852.67,352.57],[852.67,352.57],[852.67,352.57],[852.66,352.57],[852.66,352.57],[852.66,352.57],[852.66,352.57],[852.66,352.57],[852.65,352.57],[852.65,352.57],[852.65,352.58],[852.64,352.59],[852.64,352.59],[852.64,352.59],[852.64,352.59],[852.63,352.59],[852.63,352.59],[852.63,352.59],[852.62,352.59],[852.62,352.58],[852.62,352.58],[852.62,352.58],[852.62,352.57],[852.61,352.57],[852.61,352.57],[852.61,352.57],[852.58,352.57],[852.58,352.57],[852.58,352.57],[852.57,352.58],[852.57,352.58],[852.56,352.58],[852.55,352.59],[852.55,352.59],[852.55,352.59],[852.55,352.6],[852.54,352.6],[852.54,352.61],[852.54,352.61],[852.54,352.61],[852.53,352.61],[852.53,352.61],[852.53,352.61],[852.53,352.6],[852.53,352.6],[852.52,352.6],[852.52,352.58],[852.52,352.58],[852.51,352.58],[852.51,352.58],[852.51,352.57],[852.51,352.57],[852.5,352.57],[852.5,352.57],[852.5,352.58],[852.5,352.58],[852.5,352.58],[852.5,352.58],[852.5,352.59],[852.5,352.59],[852.5,352.59],[852.5,352.6],[852.51,352.62],[852.51,352.63],[852.51,352.63],[852.51,352.63],[852.51,352.64],[852.51,352.65],[852.51,352.66],[852.51,352.66],[852.51,352.66],[852.51,352.67],[852.5,352.68],[852.5,352.68],[852.5,352.69],[852.51,352.71],[852.5,352.71],[852.5,352.71],[852.5,352.72],[852.49,352.74],[852.49,352.74],[852.49,352.74],[852.49,352.74],[852.48,352.75],[852.49,352.75],[852.49,352.75],[852.49,352.76],[852.5,352.77],[852.5,352.77],[852.5,352.78],[852.5,352.78],[852.5,352.78],[852.5,352.78],[852.49,352.79],[852.49,352.79],[852.49,352.79],[852.49,352.8],[852.49,352.8],[852.48,352.8],[852.48,352.8],[852.49,352.81],[852.49,352.81],[852.49,352.82],[852.48,352.82],[852.48,352.82],[852.47,352.83],[852.47,352.83],[852.47,352.83],[852.47,352.84],[852.46,352.84],[852.46,352.84],[852.46,352.85],[852.47,352.85],[852.47,352.86],[852.47,352.86],[852.47,352.87],[852.47,352.88],[852.47,352.88],[852.47,352.88],[852.47,352.88],[852.48,352.89],[852.48,352.89],[852.48,352.89],[852.49,352.9],[852.5,352.9],[852.5,352.9],[852.5,352.91],[852.5,352.91],[852.5,352.91],[852.5,352.91],[852.5,352.92],[852.49,352.95],[852.48,352.96],[852.45,353],[852.45,353],[852.45,353],[852.44,353.01],[852.43,353.01],[852.43,353.01],[852.43,353.01],[852.42,353.02],[852.42,353.03],[852.41,353.03],[852.41,353.03],[852.41,353.03],[852.4,353.03],[852.37,353.02],[852.37,353.02],[852.36,353.02],[852.36,353.02],[852.36,353.01],[852.35,353.01],[852.35,353.01],[852.35,353],[852.35,353],[852.35,352.99],[852.35,352.99],[852.35,352.98],[852.35,352.98],[852.33,352.96],[852.32,352.95],[852.32,352.94],[852.31,352.94],[852.31,352.93],[852.31,352.93],[852.3,352.93],[852.3,352.92],[852.3,352.92],[852.29,352.91],[852.29,352.9],[852.28,352.9],[852.26,352.89],[852.26,352.88],[852.26,352.88],[852.25,352.88],[852.22,352.88],[852.22,352.88],[852.19,352.87],[852.19,352.87],[852.18,352.87],[852.18,352.87],[852.17,352.88],[852.15,352.9],[852.14,352.9],[852.13,352.9],[852.12,352.9],[852.12,352.9],[852.12,352.9],[852.11,352.9],[852.1,352.9],[852.1,352.9],[852.09,352.9],[852.08,352.9],[852.08,352.9],[852.07,352.9],[852.07,352.89],[852.05,352.89],[852.03,352.88],[852.03,352.88],[852.02,352.88],[852.02,352.87],[852.01,352.87],[852.01,352.87],[852.01,352.87],[852.01,352.88],[852,352.88],[851.97,352.9],[851.95,352.92],[851.95,352.92],[851.94,352.92],[851.94,352.92],[851.94,352.92],[851.93,352.92],[851.92,352.91],[851.92,352.91],[851.91,352.92],[851.91,352.92],[851.9,352.92],[851.89,352.92],[851.88,352.93],[851.86,352.93],[851.85,352.93],[851.85,352.93],[851.85,352.93],[851.84,352.93],[851.82,352.91],[851.81,352.91],[851.81,352.91],[851.78,352.91],[851.78,352.91],[851.77,352.91],[851.76,352.91],[851.76,352.91],[851.76,352.91],[851.75,352.91],[851.74,352.91],[851.74,352.91],[851.7,352.92],[851.66,352.93],[851.66,352.93],[851.65,352.93],[851.64,352.93],[851.64,352.93],[851.64,352.93],[851.63,352.93],[851.63,352.93],[851.62,352.94],[851.61,352.94],[851.61,352.94],[851.61,352.94],[851.6,352.93],[851.6,352.93],[851.58,352.93],[851.56,352.92],[851.56,352.92],[851.55,352.92],[851.55,352.92],[851.55,352.92],[851.54,352.91],[851.52,352.89],[851.52,352.89],[851.52,352.89],[851.51,352.89],[851.51,352.89],[851.49,352.89],[851.49,352.89],[851.48,352.89],[851.48,352.9],[851.48,352.9],[851.47,352.9],[851.46,352.91],[851.46,352.91],[851.46,352.91],[851.45,352.93],[851.43,352.95],[851.42,352.96],[851.42,352.97],[851.41,352.98],[851.41,352.98],[851.41,352.98],[851.41,352.99],[851.41,352.99],[851.41,353.02],[851.41,353.04],[851.42,353.07],[851.43,353.09],[851.43,353.09],[851.43,353.09],[851.44,353.1],[851.44,353.1],[851.44,353.11],[851.44,353.11],[851.44,353.11],[851.43,353.14],[851.43,353.15],[851.43,353.16],[851.43,353.17],[851.43,353.17],[851.43,353.17],[851.43,353.18],[851.43,353.18],[851.43,353.22],[851.43,353.22],[851.42,353.23],[851.41,353.26],[851.4,353.27],[851.4,353.28],[851.4,353.28],[851.4,353.28],[851.4,353.32],[851.41,353.34],[851.42,353.36],[851.42,353.37],[851.42,353.37],[851.42,353.38],[851.42,353.4],[851.42,353.4],[851.42,353.41],[851.4,353.42],[851.4,353.42],[851.4,353.43],[851.4,353.43],[851.4,353.43],[851.39,353.44],[851.39,353.44],[851.38,353.44],[851.38,353.44],[851.38,353.45],[851.39,353.45],[851.39,353.45],[851.39,353.45],[851.39,353.46],[851.39,353.46],[851.39,353.46],[851.38,353.47],[851.37,353.47],[851.37,353.47],[851.37,353.47],[851.37,353.47],[851.38,353.48],[851.38,353.48],[851.38,353.48],[851.39,353.47],[851.39,353.47],[851.4,353.47],[851.4,353.47],[851.4,353.47],[851.4,353.47],[851.4,353.47],[851.4,353.48],[851.39,353.48],[851.39,353.49],[851.39,353.49],[851.39,353.49],[851.39,353.49],[851.39,353.49],[851.39,353.49],[851.4,353.49],[851.41,353.49],[851.41,353.49],[851.41,353.5],[851.41,353.5],[851.41,353.5],[851.41,353.5],[851.41,353.5],[851.41,353.5],[851.4,353.51],[851.4,353.51],[851.4,353.51],[851.4,353.52],[851.4,353.52],[851.4,353.52],[851.4,353.52],[851.4,353.52],[851.39,353.52],[851.39,353.52],[851.38,353.51],[851.37,353.5],[851.37,353.5],[851.37,353.51],[851.37,353.51],[851.36,353.51],[851.36,353.52],[851.36,353.53],[851.36,353.53],[851.36,353.53],[851.36,353.53],[851.36,353.53],[851.37,353.53],[851.37,353.53],[851.38,353.53],[851.38,353.53],[851.38,353.54],[851.38,353.54],[851.38,353.54],[851.38,353.55],[851.38,353.55],[851.38,353.55],[851.38,353.55],[851.38,353.55],[851.39,353.55],[851.39,353.55],[851.39,353.55],[851.39,353.55],[851.39,353.56],[851.39,353.56],[851.41,353.56],[851.41,353.57],[851.41,353.57],[851.41,353.57],[851.41,353.57],[851.41,353.57],[851.41,353.57],[851.4,353.58],[851.4,353.58],[851.4,353.58],[851.39,353.57],[851.39,353.57],[851.39,353.57],[851.38,353.58],[851.37,353.58],[851.37,353.59],[851.36,353.59],[851.36,353.59],[851.36,353.59],[851.36,353.59],[851.36,353.59],[851.36,353.59],[851.35,353.6],[851.35,353.6],[851.35,353.6],[851.34,353.6],[851.34,353.6],[851.33,353.61],[851.33,353.61],[851.32,353.61],[851.32,353.61],[851.32,353.61],[851.31,353.61],[851.31,353.61],[851.31,353.62],[851.3,353.62],[851.3,353.62],[851.3,353.61],[851.3,353.61],[851.29,353.62],[851.29,353.62],[851.29,353.62],[851.28,353.62],[851.28,353.62],[851.27,353.63],[851.27,353.63],[851.27,353.63],[851.27,353.64],[851.27,353.64],[851.28,353.65],[851.28,353.66],[851.28,353.66],[851.28,353.67],[851.28,353.67],[851.28,353.67],[851.28,353.68],[851.28,353.69],[851.28,353.69],[851.29,353.69],[851.29,353.69],[851.29,353.7],[851.29,353.7],[851.29,353.71],[851.29,353.71],[851.29,353.72],[851.29,353.72],[851.29,353.72],[851.29,353.72],[851.28,353.73],[851.28,353.73],[851.28,353.73],[851.28,353.73],[851.28,353.74],[851.27,353.75],[851.26,353.75],[851.26,353.76],[851.26,353.76],[851.25,353.77],[851.25,353.77],[851.24,353.78],[851.24,353.78],[851.23,353.79],[851.23,353.79],[851.23,353.8],[851.22,353.8],[851.22,353.8],[851.22,353.8],[851.22,353.81],[851.22,353.81],[851.22,353.81],[851.22,353.81],[851.21,353.81],[851.21,353.82],[851.2,353.83],[851.2,353.83],[851.19,353.83],[851.19,353.83],[851.18,353.84],[851.17,353.84],[851.17,353.83],[851.14,353.84],[851.14,353.84],[851.14,353.84],[851.12,353.86],[851.11,353.86],[851.11,353.86],[851.1,353.86],[851.07,353.86],[851.06,353.86],[851.06,353.86],[851.05,353.87],[850.99,353.9],[850.93,353.92],[850.93,353.92],[850.93,353.92],[850.93,353.94],[850.9,353.98],[850.89,353.99],[850.89,354],[850.89,354.01],[850.89,354.02],[850.9,354.03],[850.9,354.03],[850.9,354.03],[850.89,354.04],[850.89,354.04],[850.88,354.06],[850.88,354.06],[850.88,354.06],[850.87,354.06],[850.86,354.06],[850.86,354.07],[850.85,354.08],[850.85,354.08],[850.85,354.09],[850.85,354.09],[850.85,354.09],[850.86,354.09],[850.86,354.1],[850.86,354.1],[850.86,354.1],[850.85,354.11],[850.85,354.12],[850.85,354.13],[850.85,354.14],[850.85,354.14],[850.85,354.15],[850.84,354.15],[850.84,354.15],[850.84,354.16],[850.85,354.19],[850.85,354.19],[850.85,354.2],[850.85,354.34],[850.85,354.34],[850.85,354.35],[850.84,354.36],[850.83,354.38],[850.83,354.38],[850.84,354.43],[850.84,354.43],[850.84,354.43],[850.84,354.43],[850.85,354.44],[850.85,354.44],[850.85,354.44],[850.85,354.44],[850.85,354.44],[850.85,354.45],[850.85,354.45],[850.85,354.45],[850.86,354.46],[850.86,354.47],[850.86,354.47],[850.86,354.47],[850.86,354.48],[850.86,354.49],[850.86,354.55],[850.86,354.55],[850.87,354.56],[850.87,354.57],[850.88,354.6],[850.88,354.6],[850.88,354.61],[850.88,354.61],[850.88,354.61],[850.87,354.61],[850.87,354.62],[850.87,354.62],[850.87,354.63],[850.87,354.63],[850.87,354.64],[850.87,354.64],[850.87,354.64],[850.86,354.65],[850.86,354.65],[850.86,354.65],[850.86,354.65],[850.86,354.65],[850.86,354.65],[850.86,354.65],[850.87,354.65],[850.87,354.65],[850.87,354.66],[850.87,354.66],[850.87,354.67],[850.87,354.67],[850.88,354.67],[850.88,354.68],[850.88,354.68],[850.88,354.68],[850.88,354.68],[850.87,354.69],[850.87,354.69],[850.87,354.7],[850.86,354.7],[850.86,354.7],[850.86,354.7],[850.86,354.7],[850.86,354.7],[850.87,354.72],[850.87,354.72],[850.87,354.72],[850.84,354.75],[850.82,354.76],[850.82,354.77],[850.82,354.77],[850.81,354.77],[850.81,354.77],[850.81,354.77],[850.81,354.77],[850.81,354.77],[850.81,354.77],[850.81,354.77],[850.81,354.78],[850.82,354.78],[850.82,354.78],[850.82,354.78],[850.82,354.78],[850.82,354.79],[850.82,354.8],[850.82,354.81],[850.82,354.82],[850.82,354.83],[850.81,354.84],[850.81,354.84],[850.81,354.86],[850.81,354.86],[850.81,354.87],[850.81,354.87],[850.81,354.88],[850.81,354.88],[850.81,354.88],[850.81,354.88],[850.81,354.89],[850.8,354.89],[850.79,354.9],[850.79,354.9],[850.78,354.9],[850.78,354.9],[850.77,354.92],[850.76,354.94],[850.76,354.94],[850.76,354.94],[850.77,354.96],[850.78,354.97],[850.79,354.98],[850.8,354.99],[850.8,354.99],[850.8,355],[850.8,355.03],[850.8,355.05],[850.8,355.05],[850.8,355.06],[850.8,355.07],[850.81,355.07],[850.81,355.09],[850.8,355.1],[850.81,355.11],[850.81,355.12],[850.82,355.15],[850.82,355.16],[850.83,355.17],[850.83,355.17],[850.83,355.17],[850.83,355.17],[850.83,355.17],[850.83,355.2],[850.83,355.2],[850.83,355.2],[850.83,355.21],[850.83,355.22],[850.83,355.22],[850.83,355.24],[850.83,355.24],[850.83,355.24],[850.83,355.24],[850.84,355.24],[850.84,355.24],[850.84,355.24],[850.84,355.24],[850.84,355.24],[850.84,355.25],[850.83,355.25],[850.83,355.25],[850.83,355.25],[850.83,355.25],[850.83,355.25],[850.83,355.26],[850.84,355.27],[850.84,355.27],[850.84,355.27],[850.84,355.27],[850.84,355.27],[850.85,355.27],[850.85,355.27],[850.85,355.28],[850.86,355.28],[850.86,355.28],[850.86,355.28],[850.87,355.28],[850.87,355.28],[850.87,355.28],[850.87,355.28],[850.87,355.28],[850.87,355.28],[850.87,355.28],[850.87,355.29],[850.87,355.29],[850.87,355.29],[850.87,355.29],[850.86,355.29],[850.86,355.3],[850.86,355.3],[850.86,355.3],[850.86,355.3],[850.86,355.31],[850.87,355.31],[850.87,355.31],[850.88,355.31],[850.88,355.31],[850.88,355.32],[850.88,355.32],[850.88,355.32],[850.87,355.32],[850.87,355.32],[850.86,355.33],[850.86,355.33],[850.86,355.33],[850.86,355.33],[850.86,355.33],[850.87,355.34],[850.87,355.34],[850.87,355.34],[850.87,355.34],[850.87,355.34],[850.87,355.34],[850.86,355.35],[850.86,355.35],[850.86,355.35],[850.86,355.35],[850.86,355.35],[850.86,355.35],[850.86,355.35],[850.86,355.36],[850.86,355.36],[850.86,355.36],[850.86,355.36],[850.86,355.36],[850.86,355.37],[850.86,355.37],[850.85,355.37],[850.85,355.37],[850.85,355.37],[850.85,355.37],[850.84,355.38],[850.84,355.38],[850.84,355.38],[850.84,355.39],[850.84,355.39],[850.84,355.42],[850.83,355.45],[850.83,355.45],[850.83,355.45],[850.83,355.45],[850.82,355.45],[850.82,355.45],[850.81,355.45],[850.8,355.45],[850.8,355.45],[850.79,355.45],[850.79,355.45],[850.78,355.45],[850.76,355.46],[850.76,355.46],[850.76,355.46],[850.76,355.46],[850.76,355.46],[850.76,355.47],[850.76,355.47],[850.76,355.47],[850.74,355.47],[850.74,355.47],[850.74,355.47],[850.74,355.46],[850.74,355.46],[850.73,355.46],[850.72,355.46],[850.71,355.47],[850.7,355.47],[850.7,355.47],[850.7,355.47],[850.7,355.48],[850.7,355.48],[850.7,355.49],[850.7,355.49],[850.7,355.5],[850.7,355.51],[850.69,355.51],[850.69,355.51],[850.69,355.51],[850.69,355.51],[850.68,355.51],[850.68,355.51],[850.67,355.51],[850.67,355.51],[850.67,355.51],[850.66,355.51],[850.66,355.51],[850.66,355.52],[850.66,355.52],[850.66,355.53],[850.66,355.53],[850.66,355.54],[850.66,355.54],[850.66,355.54],[850.66,355.54],[850.66,355.54],[850.65,355.54],[850.64,355.54],[850.64,355.54],[850.64,355.55],[850.64,355.55],[850.63,355.55],[850.63,355.55],[850.63,355.55],[850.63,355.55],[850.63,355.55],[850.62,355.55],[850.62,355.55],[850.62,355.55],[850.62,355.55],[850.62,355.55],[850.61,355.55],[850.6,355.55],[850.6,355.55],[850.6,355.55],[850.6,355.55],[850.6,355.55],[850.6,355.55],[850.6,355.56],[850.6,355.56],[850.61,355.56],[850.61,355.56],[850.62,355.57],[850.62,355.57],[850.62,355.57],[850.62,355.57],[850.61,355.58],[850.61,355.58],[850.61,355.58],[850.61,355.58],[850.61,355.58],[850.62,355.58],[850.63,355.58],[850.63,355.58],[850.63,355.58],[850.63,355.58],[850.63,355.58],[850.63,355.59],[850.63,355.59],[850.63,355.59],[850.63,355.6],[850.63,355.6],[850.63,355.6],[850.63,355.61],[850.63,355.61],[850.63,355.61],[850.63,355.61],[850.64,355.61],[850.64,355.61],[850.64,355.61],[850.64,355.61],[850.63,355.62],[850.63,355.62],[850.62,355.62],[850.62,355.62],[850.62,355.62],[850.61,355.62],[850.61,355.62],[850.6,355.62],[850.6,355.63],[850.6,355.63],[850.6,355.63],[850.6,355.63],[850.6,355.63],[850.6,355.63],[850.6,355.64],[850.6,355.64],[850.6,355.64],[850.6,355.65],[850.6,355.65],[850.6,355.65],[850.59,355.65],[850.59,355.64],[850.59,355.64],[850.58,355.64],[850.58,355.64],[850.57,355.64],[850.57,355.64],[850.56,355.64],[850.55,355.64],[850.55,355.64],[850.55,355.64],[850.55,355.64],[850.55,355.65],[850.55,355.66],[850.55,355.66],[850.55,355.66],[850.55,355.66],[850.54,355.66],[850.54,355.67],[850.54,355.67],[850.53,355.68],[850.53,355.68],[850.5,355.7],[850.5,355.71],[850.49,355.72],[850.48,355.75],[850.48,355.75],[850.48,355.75],[850.48,355.76],[850.48,355.76],[850.49,355.79],[850.49,355.8],[850.49,355.81],[850.49,355.81],[850.48,355.82],[850.47,355.83],[850.47,355.83],[850.48,355.86],[850.47,355.88],[850.47,355.89],[850.47,355.9],[850.47,355.91],[850.47,355.91],[850.47,355.92],[850.46,355.92],[850.36,355.97],[850.33,355.99],[850.32,355.99],[850.32,355.99],[850.32,355.99],[850.32,355.99],[850.32,355.99],[850.32,356],[850.32,356.01],[850.32,356.01],[850.32,356.01],[850.32,356.01],[850.31,356.01],[850.31,356.01],[850.29,356.02],[850.29,356.02],[850.28,356.03],[850.27,356.04],[850.27,356.04],[850.26,356.05],[850.26,356.05],[850.26,356.05],[850.25,356.05],[850.24,356.05],[850.23,356.06],[850.23,356.06],[850.22,356.06],[850.22,356.06],[850.22,356.06],[850.22,356.06],[850.21,356.07],[850.21,356.07],[850.21,356.08],[850.21,356.08],[850.21,356.08],[850.21,356.08],[850.21,356.09],[850.21,356.09],[850.21,356.1],[850.21,356.1],[850.21,356.11],[850.21,356.12],[850.22,356.12],[850.23,356.12],[850.23,356.12],[850.23,356.12],[850.23,356.13],[850.24,356.13],[850.23,356.14],[850.22,356.14],[850.22,356.15],[850.22,356.15],[850.22,356.16],[850.22,356.17],[850.22,356.17],[850.22,356.17],[850.22,356.18],[850.22,356.19],[850.22,356.19],[850.22,356.19],[850.22,356.2],[850.22,356.2],[850.22,356.2],[850.22,356.21],[850.22,356.21],[850.22,356.22],[850.22,356.22],[850.22,356.23],[850.22,356.23],[850.22,356.23],[850.22,356.24],[850.22,356.24],[850.22,356.24],[850.22,356.25],[850.22,356.26],[850.22,356.26],[850.21,356.29],[850.21,356.31],[850.21,356.31],[850.21,356.33],[850.22,356.35],[850.22,356.36],[850.21,356.37],[850.2,356.38],[850.2,356.38],[850.19,356.39],[850.19,356.39],[850.18,356.4],[850.18,356.42],[850.18,356.42],[850.18,356.43],[850.18,356.44],[850.18,356.44],[850.18,356.45],[850.18,356.45],[850.19,356.46],[850.19,356.46],[850.19,356.47],[850.18,356.48],[850.18,356.48],[850.18,356.48],[850.17,356.49],[850.18,356.51],[850.18,356.51],[850.18,356.52],[850.19,356.52],[850.2,356.52],[850.21,356.53],[850.22,356.53],[850.22,356.53],[850.23,356.54],[850.24,356.54],[850.25,356.54],[850.25,356.55],[850.26,356.55],[850.26,356.55],[850.27,356.56],[850.27,356.56],[850.28,356.57],[850.28,356.57],[850.29,356.58],[850.29,356.58],[850.3,356.6],[850.3,356.6],[850.32,356.62],[850.34,356.64],[850.36,356.65],[850.37,356.66],[850.38,356.67],[850.4,356.7],[850.42,356.73],[850.44,356.75],[850.44,356.75],[850.45,356.76],[850.45,356.76],[850.45,356.76],[850.46,356.77],[850.46,356.78],[850.46,356.8],[850.47,356.8],[850.47,356.8],[850.47,356.81],[850.48,356.81],[850.48,356.83],[850.49,356.83],[850.49,356.83],[850.49,356.84],[850.5,356.84],[850.5,356.84],[850.52,356.85],[850.53,356.86],[850.53,356.86],[850.54,356.86],[850.54,356.87],[850.55,356.87],[850.56,356.87],[850.56,356.88],[850.57,356.88],[850.58,356.88],[850.58,356.88],[850.59,356.88],[850.59,356.88],[850.6,356.88],[850.61,356.89],[850.61,356.89],[850.62,356.9],[850.62,356.9],[850.62,356.91],[850.62,356.92],[850.62,356.93],[850.62,356.93],[850.62,356.95],[850.63,356.95],[850.63,356.95],[850.63,356.96],[850.63,356.96],[850.64,356.96],[850.64,356.96],[850.64,356.97],[850.65,356.98],[850.65,356.99],[850.66,357],[850.67,357],[850.67,357.01],[850.67,357.01],[850.68,357.02],[850.68,357.02],[850.68,357.02],[850.69,357.02],[850.69,357.03],[850.69,357.03],[850.69,357.03],[850.7,357.04],[850.71,357.04],[850.71,357.05],[850.71,357.05],[850.72,357.05],[850.72,357.05],[850.72,357.06],[850.73,357.07],[850.73,357.07],[850.73,357.07],[850.74,357.08],[850.74,357.08],[850.74,357.08],[850.75,357.09],[850.75,357.09],[850.75,357.09],[850.76,357.1],[850.76,357.1],[850.76,357.12],[850.77,357.13],[850.77,357.15],[850.78,357.17],[850.8,357.18],[850.81,357.19],[850.82,357.2],[850.82,357.2],[850.84,357.23],[850.86,357.26],[850.87,357.27],[850.87,357.28],[850.89,357.29],[850.89,357.29],[850.9,357.31],[850.92,357.34],[850.93,357.35],[850.94,357.36],[850.94,357.37],[850.95,357.37],[850.95,357.37],[850.95,357.38],[850.96,357.39],[850.96,357.39],[850.96,357.4],[850.97,357.41],[850.97,357.41],[850.98,357.42],[850.98,357.42],[850.98,357.43],[850.98,357.43],[850.99,357.43],[851,357.45],[851,357.46],[851.01,357.48],[851.02,357.5],[851.02,357.5],[851.02,357.53],[851.03,357.56],[851.04,357.58],[851.04,357.59],[851.04,357.59],[851.04,357.6],[851.04,357.61],[851.04,357.62],[851.05,357.63],[851.05,357.63],[851.05,357.65],[851.06,357.68],[851.06,357.71],[851.06,357.71],[851.06,357.72],[851.06,357.72],[851.06,357.73],[851.06,357.75],[851.06,357.75],[851.05,357.76],[851.04,357.77],[851.04,357.77],[851.01,357.79],[851.01,357.8],[851,357.82],[851,357.82],[851,357.82],[850.99,357.82],[850.98,357.84],[850.96,357.85],[850.94,357.87],[850.94,357.88],[850.93,357.88],[850.93,357.88],[850.93,357.89],[850.93,357.89],[850.92,357.9],[850.91,357.9],[850.91,357.9],[850.9,357.9],[850.89,357.91],[850.89,357.91],[850.89,357.91],[850.88,357.91],[850.88,357.91],[850.88,357.91],[850.87,357.91],[850.87,357.91],[850.86,357.9],[850.86,357.9],[850.85,357.89],[850.83,357.87],[850.83,357.86],[850.82,357.85],[850.81,357.85],[850.81,357.85],[850.8,357.85],[850.8,357.85],[850.79,357.86],[850.79,357.86],[850.78,357.87],[850.77,357.88],[850.76,357.89],[850.75,357.9],[850.75,357.9],[850.75,357.9],[850.75,357.9],[850.74,357.91],[850.74,357.91],[850.74,357.92],[850.74,357.92],[850.73,357.92],[850.73,357.93],[850.73,357.93],[850.73,357.93],[850.7,357.94],[850.68,357.95],[850.68,357.95],[850.67,357.94],[850.66,357.94],[850.65,357.94],[850.65,357.94],[850.64,357.94],[850.64,357.94],[850.64,357.94],[850.64,357.94],[850.63,357.94],[850.63,357.94],[850.63,357.94],[850.62,357.95],[850.62,357.95],[850.61,357.95],[850.6,357.95],[850.6,357.95],[850.6,357.96],[850.59,357.96],[850.59,357.96],[850.59,357.97],[850.59,357.97],[850.58,357.98],[850.58,357.99],[850.58,358],[850.57,358.01],[850.57,358.01],[850.57,358.02],[850.57,358.02],[850.57,358.03],[850.57,358.04],[850.57,358.04],[850.56,358.05],[850.56,358.05],[850.56,358.06],[850.56,358.06],[850.55,358.06],[850.55,358.06],[850.55,358.07],[850.54,358.07],[850.54,358.07],[850.53,358.07],[850.53,358.07],[850.53,358.08],[850.53,358.08],[850.53,358.08],[850.53,358.08],[850.53,358.09],[850.53,358.09],[850.53,358.1],[850.53,358.11],[850.53,358.11],[850.53,358.12],[850.54,358.12],[850.53,358.12],[850.53,358.13],[850.53,358.14],[850.53,358.14],[850.53,358.15],[850.54,358.16],[850.54,358.16],[850.54,358.16],[850.55,358.16],[850.57,358.16],[850.57,358.17],[850.57,358.17],[850.58,358.17],[850.58,358.18],[850.58,358.18],[850.58,358.18],[850.58,358.19],[850.58,358.19],[850.59,358.19],[850.59,358.2],[850.59,358.21],[850.59,358.21],[850.59,358.21],[850.59,358.22],[850.59,358.22],[850.59,358.22],[850.58,358.22],[850.57,358.23],[850.57,358.23],[850.57,358.24],[850.57,358.24],[850.57,358.25],[850.57,358.25],[850.57,358.26],[850.57,358.26],[850.57,358.26],[850.57,358.27],[850.57,358.27],[850.57,358.27],[850.57,358.28],[850.57,358.28],[850.57,358.29],[850.57,358.29],[850.57,358.3],[850.57,358.3],[850.57,358.3],[850.57,358.31],[850.57,358.31],[850.56,358.32],[850.56,358.33],[850.57,358.33],[850.57,358.34],[850.57,358.35],[850.56,358.37],[850.56,358.38],[850.57,358.4],[850.57,358.41],[850.57,358.41],[850.57,358.42],[850.57,358.43],[850.57,358.43],[850.57,358.43],[850.56,358.46],[850.56,358.47],[850.56,358.47],[850.56,358.47],[850.55,358.48],[850.55,358.48],[850.55,358.49],[850.55,358.49],[850.54,358.5],[850.54,358.51],[850.53,358.51],[850.53,358.51],[850.53,358.52],[850.52,358.52],[850.52,358.52],[850.52,358.52],[850.51,358.53],[850.51,358.53],[850.5,358.53],[850.5,358.53],[850.5,358.53],[850.5,358.54],[850.49,358.54],[850.49,358.54],[850.49,358.55],[850.48,358.55],[850.48,358.55],[850.48,358.56],[850.48,358.56],[850.47,358.56],[850.47,358.57],[850.47,358.57],[850.47,358.58],[850.47,358.58],[850.46,358.59],[850.46,358.59],[850.46,358.6],[850.46,358.6],[850.45,358.6],[850.45,358.61],[850.45,358.61],[850.44,358.62],[850.44,358.62],[850.44,358.62],[850.43,358.62],[850.43,358.63],[850.42,358.63],[850.42,358.63],[850.42,358.63],[850.41,358.64],[850.41,358.64],[850.41,358.65],[850.41,358.65],[850.4,358.66],[850.4,358.66],[850.39,358.67],[850.39,358.67],[850.39,358.67],[850.38,358.68],[850.38,358.68],[850.37,358.69],[850.37,358.69],[850.37,358.69],[850.37,358.69],[850.37,358.69],[850.36,358.7],[850.36,358.7],[850.35,358.7],[850.35,358.71],[850.34,358.71],[850.34,358.71],[850.33,358.71],[850.33,358.71],[850.33,358.72],[850.32,358.72],[850.32,358.72],[850.31,358.72],[850.31,358.72],[850.31,358.73],[850.31,358.73],[850.31,358.73],[850.31,358.73],[850.3,358.74],[850.3,358.74],[850.29,358.75],[850.29,358.75],[850.29,358.75],[850.29,358.76],[850.28,358.76],[850.28,358.76],[850.28,358.77],[850.28,358.77],[850.27,358.77],[850.26,358.78],[850.25,358.79],[850.25,358.8],[850.25,358.81],[850.24,358.81],[850.24,358.82],[850.23,358.84],[850.23,358.85],[850.23,358.85],[850.23,358.85],[850.22,358.86],[850.22,358.86],[850.22,358.86],[850.21,358.86],[850.21,358.86],[850.21,358.86],[850.2,358.87],[850.2,358.87],[850.19,358.87],[850.19,358.87],[850.19,358.87],[850.18,358.87],[850.18,358.87],[850.17,358.88],[850.17,358.88],[850.17,358.88],[850.16,358.88],[850.16,358.88],[850.16,358.88],[850.15,358.89],[850.15,358.89],[850.15,358.89],[850.14,358.9],[850.14,358.91],[850.14,358.91],[850.14,358.92],[850.13,358.92],[850.13,358.92],[850.12,358.92],[850.12,358.92],[850.12,358.93],[850.11,358.93],[850.11,358.93],[850.11,358.94],[850.11,358.94],[850.11,358.94],[850.1,358.95],[850.1,358.95],[850.1,358.95],[850.09,358.96],[850.09,358.96],[850.09,358.96],[850.09,358.97],[850.09,358.97],[850.08,358.97],[850.08,358.98],[850.08,358.98],[850.07,358.98],[850.07,358.99],[850.06,358.99],[850.06,358.99],[850.06,359],[850.05,359],[850.05,359.01],[850.05,359.01],[850.04,359.01],[850.04,359.01],[850.04,359.01],[850.04,359.02],[850.03,359.02],[850.03,359.02],[850.02,359.02],[850.02,359.02],[850.01,359.03],[850.01,359.03],[850.01,359.03],[850,359.03],[850,359.03],[850,359.03],[849.99,359.04],[849.98,359.05],[849.97,359.06],[849.96,359.07],[849.95,359.08],[849.95,359.09],[849.95,359.1],[849.95,359.12],[849.96,359.13],[849.96,359.16],[849.96,359.16],[849.97,359.17],[849.97,359.17],[849.97,359.17],[849.97,359.18],[849.97,359.18],[849.97,359.19],[849.97,359.2],[849.96,359.22],[849.96,359.22],[849.96,359.24],[849.96,359.25],[849.96,359.25],[849.96,359.26],[849.96,359.26],[849.96,359.27],[849.96,359.27],[849.95,359.29],[849.95,359.29],[849.94,359.3],[849.93,359.32],[849.93,359.32],[849.93,359.33],[849.93,359.33],[849.92,359.34],[849.92,359.34],[849.92,359.34],[849.91,359.35],[849.9,359.36],[849.9,359.37],[849.89,359.37],[849.89,359.39],[849.88,359.4],[849.88,359.4],[849.87,359.41],[849.87,359.42],[849.86,359.43],[849.86,359.45],[849.85,359.46],[849.85,359.47],[849.85,359.48],[849.85,359.49],[849.85,359.49],[849.85,359.52],[849.85,359.52],[849.85,359.52],[849.85,359.53],[849.85,359.53],[849.85,359.53],[849.85,359.54],[849.85,359.54],[849.85,359.55],[849.85,359.56],[849.85,359.57],[849.85,359.58],[849.85,359.59],[849.84,359.59],[849.85,359.61],[849.85,359.62],[849.87,359.64],[849.88,359.64],[849.89,359.64],[849.9,359.64],[849.91,359.64],[849.92,359.65],[849.94,359.66],[849.95,359.67],[849.95,359.67],[849.96,359.68],[849.96,359.69],[849.96,359.7],[849.95,359.7],[849.95,359.71],[849.95,359.71],[849.95,359.71],[849.95,359.72],[849.95,359.72],[849.95,359.72],[849.95,359.73],[849.95,359.73],[849.95,359.74],[849.95,359.74],[849.95,359.75],[849.95,359.75],[849.95,359.76],[849.95,359.77],[849.94,359.78],[849.94,359.79],[849.94,359.8],[849.94,359.8],[849.94,359.81],[849.94,359.82],[849.94,359.82],[849.94,359.83],[849.94,359.83],[849.94,359.84],[849.95,359.84],[849.95,359.85],[849.95,359.85],[849.95,359.85],[849.95,359.85],[849.96,359.85],[849.96,359.86],[849.96,359.86],[849.96,359.86],[849.97,359.86],[849.97,359.87],[849.97,359.87],[849.97,359.87],[849.98,359.88],[849.98,359.88],[849.98,359.89],[849.98,359.89],[849.99,359.89],[849.99,359.89],[849.99,359.9],[849.99,359.9],[849.99,359.9],[849.99,359.91],[849.99,359.91],[849.99,359.91],[849.99,359.92],[850,359.93],[850,359.93],[850,359.93],[850,359.94],[850,359.94],[850,359.94],[850,359.95],[850,359.95],[849.99,359.95],[849.99,359.96],[849.99,359.96],[849.99,359.97],[849.99,359.98],[849.99,359.98],[849.99,359.98],[849.98,359.99],[849.98,360],[849.98,360],[849.98,360],[849.97,360.01],[849.97,360.01],[849.97,360.02],[849.97,360.02],[849.98,360.03],[849.99,360.06],[849.99,360.07],[849.99,360.07],[850,360.09],[850.01,360.1],[850.01,360.1],[850.01,360.11],[850.02,360.12],[850.02,360.12],[850.02,360.13],[850.03,360.15],[850.03,360.15],[850.04,360.15],[850.04,360.16],[850.04,360.16],[850.05,360.17],[850.05,360.18],[850.05,360.19],[850.06,360.19],[850.06,360.2],[850.06,360.2],[850.07,360.21],[850.07,360.21],[850.08,360.21],[850.09,360.22],[850.09,360.22],[850.1,360.23],[850.1,360.24],[850.1,360.24],[850.1,360.24],[850.1,360.24],[850.1,360.24],[850.1,360.24],[850.1,360.25],[850.1,360.25],[850.1,360.25],[850.1,360.26],[850.1,360.26],[850.1,360.26],[850.1,360.26],[850.1,360.27],[850.1,360.27],[850.1,360.27],[850.1,360.28],[850.11,360.29],[850.11,360.29],[850.1,360.3],[850.1,360.3],[850.09,360.33],[850,360.38],[849.99,360.39],[849.98,360.4],[849.97,360.4],[849.97,360.4],[849.97,360.4],[849.96,360.4],[849.96,360.41],[849.96,360.41],[849.96,360.41],[849.96,360.42],[849.95,360.42],[849.95,360.42],[849.95,360.42],[849.94,360.42],[849.94,360.41],[849.93,360.42],[849.93,360.42],[849.93,360.42],[849.93,360.42],[849.92,360.42],[849.92,360.42],[849.92,360.43],[849.92,360.43],[849.93,360.43],[849.93,360.43],[849.93,360.43],[849.93,360.43],[849.94,360.43],[849.94,360.42],[849.94,360.42],[849.94,360.42],[849.95,360.42],[849.95,360.41],[849.95,360.41],[849.95,360.41],[849.95,360.41],[849.95,360.41],[849.96,360.4],[849.96,360.4],[849.96,360.4],[849.96,360.4],[849.97,360.4],[849.97,360.4],[849.97,360.4],[849.97,360.39],[849.97,360.39],[849.98,360.39],[849.98,360.39],[849.98,360.39],[849.99,360.39],[849.99,360.39],[849.99,360.39],[850,360.38],[850,360.38],[850,360.38],[850,360.38],[850,360.39],[850.01,360.39],[850.01,360.39],[850.01,360.39],[850.01,360.39],[850.02,360.39],[850.02,360.39],[850.02,360.39],[850.03,360.39],[850.03,360.39],[850.03,360.39],[850.03,360.39],[850.03,360.39],[850.04,360.39],[850.04,360.39],[850.04,360.39],[850.04,360.39],[850.04,360.39],[850.05,360.38],[850.05,360.38],[850.05,360.38],[850.05,360.38],[850.06,360.39],[850.06,360.39],[850.06,360.39],[850.07,360.39],[850.07,360.39],[850.07,360.39],[850.08,360.38],[850.08,360.38],[850.08,360.38],[850.09,360.38],[850.09,360.38],[850.09,360.38],[850.1,360.39],[850.1,360.39],[850.1,360.39],[850.1,360.39],[850.11,360.39],[850.11,360.39],[850.11,360.39],[850.11,360.39],[850.12,360.39],[850.12,360.39],[850.12,360.39],[850.13,360.39],[850.13,360.39],[850.14,360.4],[850.15,360.4],[850.15,360.4],[850.16,360.4],[850.16,360.4],[850.17,360.4],[850.17,360.4],[850.18,360.4],[850.18,360.4],[850.19,360.41],[850.19,360.42],[850.2,360.42],[850.2,360.42],[850.2,360.42],[850.21,360.42],[850.21,360.42],[850.22,360.43],[850.23,360.43],[850.23,360.44],[850.23,360.44],[850.24,360.44],[850.24,360.45],[850.25,360.45],[850.26,360.46],[850.26,360.46],[850.27,360.47],[850.27,360.47],[850.27,360.47],[850.28,360.48],[850.28,360.48],[850.28,360.48],[850.29,360.48],[850.3,360.48],[850.3,360.48],[850.3,360.48],[850.31,360.48],[850.31,360.49],[850.32,360.49],[850.32,360.49],[850.33,360.49],[850.33,360.5],[850.33,360.5],[850.34,360.51],[850.35,360.51],[850.36,360.52],[850.36,360.52],[850.36,360.52],[850.37,360.52],[850.38,360.53],[850.38,360.54],[850.39,360.54],[850.39,360.55],[850.39,360.55],[850.4,360.55],[850.4,360.56],[850.41,360.56],[850.41,360.56],[850.41,360.56],[850.42,360.56],[850.42,360.56],[850.42,360.57],[850.43,360.57],[850.43,360.57],[850.43,360.57],[850.43,360.57],[850.45,360.58],[850.45,360.58],[850.45,360.58],[850.45,360.59],[850.45,360.59],[850.46,360.59],[850.46,360.59],[850.47,360.6],[850.47,360.6],[850.47,360.6],[850.47,360.6],[850.48,360.6],[850.48,360.6],[850.48,360.61],[850.48,360.61],[850.48,360.61],[850.48,360.61],[850.49,360.62],[850.49,360.62],[850.5,360.62],[850.5,360.62],[850.51,360.62],[850.51,360.62],[850.51,360.62],[850.51,360.63],[850.52,360.63],[850.52,360.64],[850.53,360.64],[850.53,360.64],[850.53,360.65],[850.54,360.65],[850.54,360.65],[850.54,360.66],[850.54,360.66],[850.54,360.66],[850.55,360.66],[850.55,360.67],[850.55,360.67],[850.55,360.68],[850.55,360.68],[850.55,360.68],[850.56,360.69],[850.56,360.69],[850.57,360.7],[850.57,360.7],[850.57,360.7],[850.58,360.7],[850.58,360.71],[850.58,360.71],[850.59,360.72],[850.6,360.72],[850.6,360.73],[850.61,360.73],[850.61,360.73],[850.61,360.73],[850.61,360.74],[850.61,360.74],[850.61,360.74],[850.62,360.75],[850.62,360.75],[850.62,360.75],[850.63,360.76],[850.63,360.76],[850.63,360.76],[850.63,360.77],[850.64,360.78],[850.65,360.79],[850.66,360.8],[850.66,360.8],[850.66,360.8],[850.66,360.81],[850.67,360.81],[850.67,360.81],[850.67,360.82],[850.67,360.82],[850.67,360.82],[850.68,360.82],[850.68,360.82],[850.69,360.82],[850.69,360.83],[850.69,360.83],[850.7,360.83],[850.7,360.83],[850.7,360.83],[850.71,360.83],[850.71,360.83],[850.71,360.83],[850.72,360.84],[850.72,360.84],[850.73,360.85],[850.73,360.85],[850.73,360.86],[850.73,360.86],[850.73,360.86],[850.73,360.86],[850.74,360.87],[850.74,360.87],[850.74,360.88],[850.74,360.88],[850.74,360.88],[850.75,360.89],[850.75,360.9],[850.75,360.9],[850.76,360.9],[850.77,360.9],[850.77,360.91],[850.78,360.91],[850.78,360.91],[850.79,360.92],[850.79,360.92],[850.8,360.92],[850.8,360.92],[850.8,360.93],[850.8,360.93],[850.8,360.93],[850.81,360.93],[850.82,360.93],[850.82,360.93],[850.82,360.93],[850.83,360.94],[850.83,360.94],[850.84,360.95],[850.84,360.95],[850.85,360.95],[850.85,360.95],[850.86,360.96],[850.87,360.98],[850.87,360.98],[850.87,360.98],[850.88,360.99],[850.89,360.99],[850.89,361],[850.9,361],[850.9,361],[850.9,361.01],[850.91,361.01],[850.91,361.01],[850.91,361.01],[850.92,361.02],[850.92,361.02],[850.92,361.02],[850.92,361.02],[850.93,361.03],[850.93,361.04],[850.93,361.04],[850.93,361.05],[850.94,361.06],[850.94,361.06],[850.95,361.08],[850.95,361.08],[850.96,361.08],[850.96,361.09],[850.96,361.09],[850.97,361.1],[850.98,361.11],[850.99,361.12],[850.99,361.13],[851,361.14],[851,361.14],[851.01,361.15],[851.02,361.16],[851.04,361.16],[851.04,361.16],[851.05,361.17],[851.06,361.17],[851.07,361.18],[851.08,361.18],[851.09,361.18],[851.09,361.18],[851.09,361.17],[851.09,361.17],[851.1,361.17],[851.1,361.17],[851.12,361.17],[851.13,361.17],[851.17,361.17],[851.19,361.17],[851.19,361.17],[851.2,361.17],[851.22,361.17],[851.23,361.17],[851.24,361.17],[851.25,361.17],[851.25,361.17],[851.26,361.17],[851.26,361.17],[851.27,361.17],[851.27,361.17],[851.28,361.17],[851.28,361.17],[851.29,361.18],[851.3,361.18],[851.32,361.18],[851.32,361.17],[851.34,361.16],[851.34,361.16],[851.35,361.16],[851.37,361.15],[851.37,361.15],[851.38,361.15],[851.39,361.15],[851.4,361.15],[851.41,361.15],[851.41,361.15],[851.41,361.15],[851.42,361.15],[851.42,361.15],[851.42,361.15],[851.43,361.15],[851.43,361.15],[851.44,361.15],[851.44,361.15],[851.44,361.15],[851.44,361.16],[851.46,361.17],[851.46,361.18],[851.46,361.18],[851.46,361.18],[851.47,361.18],[851.48,361.19],[851.48,361.19],[851.49,361.19],[851.49,361.19],[851.5,361.19],[851.5,361.2],[851.51,361.2],[851.51,361.2],[851.52,361.2],[851.52,361.21],[851.53,361.21],[851.53,361.21],[851.55,361.21],[851.57,361.21],[851.58,361.22],[851.59,361.22],[851.59,361.22],[851.59,361.22],[851.61,361.22],[851.61,361.22],[851.62,361.22],[851.63,361.22],[851.64,361.21],[851.65,361.2],[851.65,361.2],[851.67,361.19],[851.67,361.19],[851.67,361.19],[851.68,361.18],[851.68,361.17],[851.68,361.17],[851.68,361.17],[851.69,361.16],[851.7,361.16],[851.7,361.16],[851.7,361.16],[851.71,361.16],[851.71,361.16],[851.72,361.16],[851.72,361.15],[851.73,361.15],[851.74,361.15],[851.75,361.15],[851.76,361.14],[851.76,361.14],[851.77,361.14],[851.78,361.13],[851.79,361.13],[851.79,361.13],[851.8,361.13],[851.83,361.13],[851.83,361.12],[851.84,361.12],[851.85,361.12],[851.85,361.12],[851.85,361.12],[851.86,361.12],[851.87,361.12],[851.87,361.12],[851.87,361.12],[851.87,361.12],[851.88,361.12],[851.88,361.12],[851.89,361.12],[851.9,361.12],[851.91,361.12],[851.91,361.12],[851.94,361.12],[851.96,361.13],[851.97,361.14],[851.97,361.14],[851.98,361.15],[851.98,361.15],[852,361.15],[852,361.15],[852,361.15],[852.01,361.15],[852.01,361.15],[852.02,361.15],[852.03,361.16],[852.04,361.17],[852.05,361.17],[852.05,361.17],[852.05,361.18],[852.05,361.19],[852.05,361.19],[852.06,361.2],[852.06,361.2],[852.06,361.21],[852.07,361.23],[852.07,361.24],[852.07,361.24],[852.08,361.25],[852.09,361.26],[852.09,361.26],[852.1,361.26],[852.1,361.27],[852.11,361.27],[852.11,361.27],[852.11,361.28],[852.11,361.29],[852.11,361.29],[852.11,361.3],[852.11,361.3],[852.11,361.31],[852.11,361.31],[852.1,361.33],[852.1,361.36],[852.1,361.36],[852.1,361.37],[852.1,361.38],[852.11,361.39],[852.12,361.4],[852.14,361.4],[852.14,361.4],[852.15,361.41],[852.16,361.42],[852.16,361.42],[852.16,361.43],[852.16,361.44],[852.16,361.44],[852.16,361.45],[852.16,361.45],[852.16,361.46],[852.17,361.46],[852.17,361.46],[852.17,361.47],[852.17,361.47],[852.17,361.48],[852.17,361.48],[852.17,361.49],[852.17,361.49],[852.17,361.5],[852.17,361.5],[852.16,361.51],[852.16,361.51],[852.15,361.51],[852.15,361.51],[852.15,361.52],[852.14,361.52],[852.14,361.52],[852.14,361.52],[852.13,361.53],[852.13,361.53],[852.13,361.53],[852.12,361.54],[852.12,361.54],[852.12,361.54],[852.12,361.54],[852.12,361.55],[852.12,361.56],[852.12,361.56],[852.12,361.56],[852.12,361.57],[852.12,361.57],[852.13,361.58],[852.13,361.58],[852.13,361.58],[852.13,361.58],[852.13,361.59],[852.14,361.59],[852.14,361.59],[852.15,361.59],[852.15,361.6],[852.15,361.6],[852.16,361.6],[852.16,361.59],[852.17,361.59],[852.17,361.59],[852.17,361.59],[852.18,361.59],[852.19,361.59],[852.19,361.59],[852.19,361.59],[852.2,361.59],[852.2,361.59],[852.2,361.59],[852.21,361.59],[852.21,361.59],[852.22,361.59],[852.22,361.6],[852.22,361.6],[852.22,361.61],[852.22,361.61],[852.22,361.62],[852.22,361.62],[852.22,361.63],[852.22,361.63],[852.23,361.63],[852.23,361.64],[852.23,361.64],[852.23,361.65],[852.23,361.65],[852.24,361.65],[852.24,361.65],[852.24,361.65],[852.25,361.65],[852.26,361.65],[852.26,361.65],[852.26,361.65],[852.27,361.65],[852.27,361.65],[852.28,361.65],[852.28,361.65],[852.29,361.65],[852.29,361.66],[852.29,361.66],[852.29,361.67],[852.3,361.68],[852.3,361.68],[852.3,361.68],[852.3,361.69],[852.3,361.69],[852.3,361.7],[852.3,361.7],[852.31,361.71],[852.31,361.71],[852.31,361.71],[852.31,361.72],[852.31,361.72],[852.31,361.73],[852.31,361.73],[852.31,361.73],[852.31,361.74],[852.31,361.74],[852.31,361.75],[852.31,361.75],[852.31,361.76],[852.31,361.76],[852.31,361.77],[852.31,361.77],[852.31,361.78],[852.32,361.78],[852.32,361.78],[852.33,361.79],[852.33,361.79],[852.33,361.79],[852.33,361.79],[852.34,361.79],[852.34,361.79],[852.34,361.79],[852.35,361.79],[852.35,361.8],[852.35,361.8],[852.36,361.8],[852.37,361.8],[852.37,361.8],[852.38,361.81],[852.38,361.81],[852.38,361.81],[852.38,361.81],[852.38,361.82],[852.38,361.82],[852.38,361.83],[852.38,361.83],[852.38,361.83],[852.38,361.84],[852.38,361.84],[852.38,361.84],[852.37,361.85],[852.37,361.85],[852.37,361.86],[852.37,361.86],[852.37,361.87],[852.37,361.87],[852.37,361.87],[852.37,361.88],[852.37,361.89],[852.37,361.89],[852.37,361.89],[852.38,361.91],[852.38,361.91],[852.39,361.92],[852.39,361.93],[852.39,361.93],[852.41,361.94],[852.52,361.98],[852.54,361.99],[852.54,361.99],[852.54,361.99],[852.54,361.99],[852.55,361.99],[852.55,361.99],[852.56,361.99],[852.56,361.99],[852.57,361.99],[852.57,361.99],[852.58,361.99],[852.58,361.99],[852.59,361.99],[852.59,361.99],[852.59,361.99],[852.6,361.99],[852.6,361.99],[852.61,361.99],[852.61,362],[852.61,362],[852.61,362],[852.62,362],[852.62,362],[852.62,362.01],[852.62,362.01],[852.63,362.01],[852.64,362.02],[852.64,362.02],[852.65,362.02],[852.65,362.03],[852.66,362.03],[852.66,362.03],[852.66,362.03],[852.67,362.03],[852.67,362.04],[852.67,362.04],[852.67,362.04],[852.67,362.06],[852.67,362.06],[852.68,362.07],[852.68,362.08],[852.68,362.09],[852.68,362.09],[852.69,362.09],[852.69,362.09],[852.71,362.1],[852.71,362.11],[852.71,362.11],[852.71,362.11],[852.71,362.11],[852.72,362.13],[852.72,362.14],[852.72,362.14],[852.71,362.15],[852.71,362.15],[852.71,362.16],[852.71,362.17],[852.71,362.18],[852.71,362.18],[852.71,362.19],[852.71,362.19],[852.71,362.2],[852.71,362.2],[852.71,362.21],[852.71,362.21],[852.71,362.21],[852.71,362.22],[852.71,362.22],[852.71,362.22],[852.71,362.22],[852.71,362.23],[852.71,362.24],[852.71,362.24],[852.71,362.25],[852.71,362.26],[852.7,362.26],[852.71,362.26],[852.71,362.27],[852.71,362.27],[852.71,362.28],[852.71,362.28],[852.71,362.29],[852.71,362.29],[852.71,362.29],[852.72,362.3],[852.72,362.3],[852.72,362.31],[852.72,362.31],[852.72,362.32],[852.72,362.32],[852.72,362.33],[852.72,362.33],[852.72,362.33],[852.72,362.34],[852.72,362.34],[852.72,362.34],[852.72,362.35],[852.72,362.35],[852.72,362.36],[852.72,362.37],[852.72,362.37],[852.72,362.38],[852.72,362.38],[852.72,362.39],[852.72,362.4],[852.72,362.4],[852.72,362.41],[852.72,362.41],[852.72,362.41],[852.72,362.42],[852.72,362.42],[852.72,362.42],[852.72,362.43],[852.72,362.43],[852.72,362.44],[852.71,362.44],[852.71,362.45],[852.71,362.45],[852.71,362.45],[852.71,362.46],[852.71,362.46],[852.71,362.47],[852.71,362.47],[852.71,362.48],[852.71,362.49],[852.71,362.51],[852.71,362.52],[852.7,362.52],[852.7,362.53],[852.7,362.54],[852.7,362.56],[852.7,362.57],[852.7,362.57],[852.7,362.57],[852.7,362.58],[852.7,362.59],[852.7,362.59],[852.71,362.6],[852.71,362.6],[852.71,362.63],[852.71,362.63],[852.71,362.63],[852.71,362.64],[852.71,362.64],[852.71,362.64],[852.71,362.65],[852.71,362.65],[852.71,362.65],[852.71,362.65],[852.71,362.65],[852.71,362.65],[852.71,362.65],[852.71,362.66],[852.71,362.66],[852.71,362.67],[852.71,362.68],[852.71,362.68],[852.71,362.69],[852.71,362.69],[852.71,362.7],[852.71,362.7],[852.71,362.71],[852.71,362.71],[852.71,362.72],[852.7,362.73],[852.7,362.73],[852.7,362.74],[852.7,362.74],[852.7,362.75],[852.7,362.75],[852.7,362.75],[852.7,362.76],[852.71,362.77],[852.72,362.78],[852.72,362.78],[852.73,362.79],[852.73,362.8],[852.74,362.8],[852.74,362.81],[852.74,362.81],[852.75,362.82],[852.76,362.82],[852.76,362.82],[852.77,362.82],[852.77,362.82],[852.77,362.82],[852.78,362.82],[852.78,362.82],[852.79,362.82],[852.79,362.82],[852.79,362.82],[852.8,362.82],[852.8,362.82],[852.81,362.82],[852.81,362.82],[852.81,362.82],[852.81,362.82],[852.82,362.82],[852.83,362.82],[852.83,362.82],[852.83,362.82],[852.84,362.82],[852.84,362.82],[852.84,362.82],[852.85,362.82],[852.85,362.83],[852.85,362.83],[852.85,362.83],[852.85,362.83],[852.85,362.84],[852.85,362.84],[852.85,362.85],[852.86,362.85],[852.86,362.86],[852.86,362.86],[852.86,362.86],[852.86,362.87],[852.86,362.87],[852.87,362.87],[852.87,362.88],[852.87,362.88],[852.87,362.88],[852.88,362.88],[852.88,362.88],[852.88,362.88],[852.88,362.88],[852.89,362.88],[852.89,362.88],[852.9,362.88],[852.91,362.87],[852.91,362.86],[852.92,362.86],[852.92,362.86],[852.92,362.86],[852.93,362.85],[852.93,362.85],[852.93,362.85],[852.93,362.85],[852.94,362.85],[852.94,362.85],[852.94,362.84],[852.95,362.84],[852.95,362.84],[852.96,362.84],[852.97,362.83],[852.97,362.83],[852.98,362.84],[852.98,362.84],[852.98,362.85],[852.99,362.85],[852.99,362.86],[852.99,362.86],[852.99,362.86],[852.99,362.86],[852.99,362.87],[852.99,362.87],[852.99,362.88],[852.99,362.88],[852.99,362.89],[852.99,362.89],[853,362.89],[853,362.9],[853,362.9],[853,362.9],[853,362.91],[853,362.91],[853.01,362.92],[853.02,362.93],[853.02,362.93],[853.03,362.93],[853.03,362.94],[853.16,362.99],[853.17,362.99],[853.18,362.99],[853.18,363],[853.19,363],[853.19,363.01],[853.19,363.01],[853.19,363.02],[853.2,363.02],[853.2,363.02],[853.2,363.03],[853.2,363.03],[853.2,363.04],[853.2,363.04],[853.2,363.05],[853.21,363.05],[853.21,363.05],[853.21,363.06],[853.21,363.07],[853.21,363.07],[853.21,363.07],[853.21,363.07],[853.21,363.08],[853.21,363.08],[853.2,363.08],[853.2,363.08],[853.2,363.09],[853.2,363.09],[853.2,363.09],[853.2,363.1],[853.21,363.1],[853.21,363.11],[853.21,363.11],[853.22,363.12],[853.22,363.12],[853.22,363.12],[853.22,363.12],[853.22,363.13],[853.22,363.14],[853.22,363.14],[853.22,363.14],[853.22,363.15],[853.22,363.15],[853.22,363.16],[853.22,363.16],[853.22,363.16],[853.22,363.17],[853.23,363.17],[853.23,363.18],[853.23,363.18],[853.24,363.19],[853.24,363.19],[853.24,363.19],[853.24,363.2],[853.24,363.21],[853.24,363.22],[853.24,363.23],[853.24,363.23],[853.24,363.23],[853.25,363.24],[853.26,363.25],[853.26,363.26],[853.26,363.27],[853.26,363.28],[853.27,363.28],[853.27,363.28],[853.27,363.29],[853.28,363.3],[853.28,363.32],[853.28,363.32],[853.29,363.33],[853.29,363.33],[853.3,363.34],[853.3,363.34],[853.31,363.35],[853.31,363.35],[853.32,363.36],[853.32,363.36],[853.32,363.36],[853.33,363.37],[853.33,363.37],[853.33,363.38],[853.33,363.38],[853.33,363.38],[853.33,363.39],[853.33,363.4],[853.33,363.4],[853.33,363.41],[853.33,363.42],[853.33,363.43],[853.33,363.43],[853.33,363.43],[853.33,363.44],[853.34,363.44],[853.34,363.44],[853.34,363.45],[853.34,363.45],[853.35,363.45],[853.35,363.46],[853.35,363.46],[853.36,363.46],[853.36,363.47],[853.36,363.47],[853.37,363.47],[853.37,363.47],[853.37,363.48],[853.37,363.48],[853.37,363.48],[853.37,363.48],[853.37,363.49],[853.38,363.49],[853.38,363.49],[853.38,363.5],[853.38,363.51],[853.38,363.51],[853.39,363.52],[853.41,363.59],[853.41,363.59],[853.41,363.61],[853.42,363.61],[853.42,363.62],[853.42,363.62],[853.43,363.63],[853.43,363.63],[853.44,363.63],[853.44,363.64],[853.45,363.64],[853.45,363.64],[853.45,363.64],[853.46,363.65],[853.46,363.65],[853.46,363.66],[853.46,363.66],[853.46,363.66],[853.47,363.66],[853.47,363.67],[853.47,363.67],[853.48,363.67],[853.48,363.67],[853.48,363.67],[853.49,363.67],[853.5,363.66],[853.51,363.67],[853.51,363.67],[853.51,363.67],[853.52,363.67],[853.52,363.68],[853.52,363.68],[853.53,363.68],[853.53,363.68],[853.53,363.68],[853.53,363.68],[853.53,363.68],[853.54,363.68],[853.55,363.68],[853.56,363.68],[853.56,363.68],[853.56,363.68],[853.57,363.68],[853.57,363.68],[853.57,363.69],[853.58,363.69],[853.58,363.69],[853.58,363.69],[853.59,363.69],[853.6,363.69],[853.6,363.69],[853.61,363.69],[853.61,363.69],[853.62,363.69],[853.62,363.7],[853.62,363.7],[853.63,363.7],[853.63,363.7],[853.63,363.7],[853.64,363.7],[853.64,363.7],[853.65,363.71],[853.66,363.7],[853.66,363.7],[853.66,363.7],[853.67,363.7],[853.67,363.69],[853.67,363.69],[853.67,363.68],[853.69,363.66],[853.69,363.65],[853.69,363.65],[853.7,363.65],[853.7,363.65],[853.71,363.65],[853.71,363.65],[853.72,363.65],[853.73,363.66],[853.74,363.66],[853.75,363.67],[853.75,363.67],[853.75,363.67],[853.76,363.68],[853.76,363.68],[853.76,363.68],[853.77,363.69],[853.78,363.69],[853.79,363.7],[853.8,363.71],[853.81,363.72],[853.82,363.72],[853.83,363.73],[853.84,363.74],[853.85,363.75],[853.87,363.76],[853.88,363.78],[853.88,363.78],[853.88,363.8],[853.88,363.81],[853.87,363.83],[853.87,363.83],[853.87,363.83],[853.86,363.86],[853.86,363.87],[853.85,363.88],[853.84,363.91],[853.83,363.93],[853.83,363.94],[853.83,363.94],[853.83,363.95],[853.83,363.96],[853.82,363.97],[853.82,363.97],[853.82,363.98],[853.81,364.02],[853.81,364.02],[853.82,364.02],[853.82,364.03],[853.83,364.03],[853.84,364.04],[853.84,364.04],[853.84,364.04],[853.84,364.04],[853.85,364.05],[853.85,364.05],[853.86,364.06],[853.86,364.06],[853.86,364.06],[853.86,364.06],[853.87,364.06],[853.87,364.07],[853.88,364.07],[853.88,364.07],[853.88,364.07],[853.89,364.07],[853.9,364.08],[853.9,364.08],[853.9,364.09],[853.9,364.1],[853.9,364.1],[853.9,364.11],[853.9,364.11],[853.89,364.12],[853.89,364.12],[853.89,364.13],[853.88,364.13],[853.88,364.14],[853.88,364.14],[853.87,364.14],[853.87,364.14],[853.87,364.15],[853.87,364.15],[853.87,364.16],[853.87,364.17],[853.87,364.18],[853.88,364.2],[853.88,364.2],[853.9,364.23],[853.9,364.24],[853.9,364.24],[853.9,364.25],[853.9,364.27],[853.9,364.28],[853.92,364.29],[853.93,364.3],[853.94,364.31],[853.95,364.31],[853.96,364.31],[853.96,364.3],[853.96,364.3],[853.97,364.3],[853.97,364.3],[853.98,364.3],[853.98,364.3],[853.99,364.3],[853.99,364.3],[854,364.3],[854.02,364.29],[854.02,364.29],[854.03,364.29],[854.03,364.3],[854.03,364.3],[854.04,364.3],[854.04,364.31],[854.04,364.31],[854.05,364.31],[854.06,364.31],[854.06,364.31],[854.07,364.31],[854.07,364.31],[854.08,364.31],[854.08,364.31],[854.1,364.31],[854.1,364.31],[854.11,364.31],[854.11,364.31],[854.13,364.3],[854.14,364.3],[854.16,364.3],[854.17,364.3],[854.17,364.31],[854.19,364.31],[854.2,364.32],[854.21,364.32],[854.21,364.32],[854.22,364.32],[854.22,364.32],[854.23,364.32],[854.23,364.32],[854.23,364.31],[854.23,364.31],[854.24,364.31],[854.25,364.29],[854.25,364.29],[854.26,364.28],[854.26,364.28],[854.26,364.28],[854.27,364.27],[854.28,364.26],[854.29,364.26],[854.32,364.25],[854.33,364.25],[854.34,364.24],[854.34,364.24],[854.35,364.24],[854.35,364.24],[854.36,364.24],[854.36,364.24],[854.37,364.24],[854.37,364.24],[854.37,364.24],[854.38,364.24],[854.38,364.25],[854.38,364.25],[854.38,364.25],[854.39,364.26],[854.39,364.26],[854.4,364.26],[854.4,364.27],[854.41,364.28],[854.42,364.29],[854.42,364.3],[854.43,364.31],[854.43,364.31],[854.43,364.31],[854.43,364.31],[854.43,364.32],[854.43,364.33],[854.44,364.34],[854.44,364.34],[854.44,364.35],[854.44,364.35],[854.44,364.36],[854.45,364.36],[854.45,364.38],[854.45,364.39],[854.45,364.39],[854.45,364.4],[854.46,364.42],[854.46,364.42],[854.46,364.42],[854.45,364.43],[854.45,364.43],[854.45,364.44],[854.45,364.44],[854.45,364.45],[854.46,364.48],[854.46,364.5],[854.46,364.5],[854.47,364.51],[854.47,364.51],[854.47,364.52],[854.47,364.53],[854.47,364.55],[854.48,364.58],[854.48,364.6],[854.49,364.61],[854.5,364.62],[854.5,364.63],[854.5,364.65],[854.5,364.65],[854.5,364.65],[854.5,364.66],[854.5,364.66],[854.5,364.67],[854.5,364.68],[854.5,364.69],[854.5,364.7],[854.5,364.71],[854.52,364.72],[854.52,364.73],[854.52,364.74],[854.52,364.74],[854.52,364.75],[854.52,364.75],[854.52,364.77],[854.52,364.79],[854.52,364.79],[854.52,364.8],[854.52,364.81],[854.53,364.83],[854.53,364.83],[854.53,364.83],[854.53,364.84],[854.53,364.85],[854.52,364.85],[854.52,364.86],[854.53,364.87],[854.53,364.89],[854.54,364.89],[854.54,364.9],[854.55,364.91],[854.56,364.92],[854.56,364.94],[854.55,364.97],[854.55,364.98],[854.54,365],[854.54,365],[854.54,365.01],[854.54,365.02],[854.54,365.03],[854.54,365.03],[854.54,365.04],[854.54,365.05],[854.55,365.06],[854.55,365.06],[854.56,365.06],[854.57,365.07],[854.57,365.07],[854.58,365.08],[854.58,365.08],[854.59,365.09],[854.59,365.1],[854.6,365.11],[854.6,365.11],[854.6,365.11],[854.63,365.12],[854.63,365.12],[854.64,365.12],[854.65,365.14],[854.65,365.14],[854.65,365.15],[854.65,365.15],[854.65,365.16],[854.64,365.17],[854.64,365.18],[854.63,365.2],[854.63,365.2],[854.63,365.2],[854.63,365.21],[854.63,365.21],[854.62,365.21],[854.62,365.21],[854.62,365.21],[854.62,365.22],[854.62,365.22],[854.62,365.22],[854.61,365.23],[854.61,365.24],[854.61,365.24],[854.61,365.24],[854.6,365.25],[854.6,365.25],[854.6,365.26],[854.6,365.26],[854.6,365.26],[854.6,365.28],[854.6,365.28],[854.6,365.29],[854.59,365.3],[854.59,365.32],[854.58,365.35],[854.58,365.35],[854.57,365.37],[854.57,365.37],[854.57,365.37],[854.58,365.38],[854.58,365.38],[854.58,365.38],[854.59,365.39],[854.59,365.4],[854.59,365.41],[854.58,365.42],[854.58,365.44],[854.58,365.44],[854.58,365.45],[854.58,365.47],[854.57,365.49],[854.57,365.5],[854.56,365.52],[854.56,365.53],[854.54,365.54],[854.52,365.55],[854.51,365.57],[854.51,365.58],[854.5,365.58],[854.5,365.59],[854.5,365.6],[854.49,365.6],[854.48,365.6],[854.48,365.61],[854.48,365.61],[854.48,365.61],[854.48,365.62],[854.47,365.62],[854.47,365.62],[854.47,365.63],[854.47,365.63],[854.47,365.63],[854.46,365.63],[854.46,365.63],[854.45,365.63],[854.45,365.63],[854.45,365.63],[854.45,365.63],[854.45,365.63],[854.44,365.63],[854.44,365.63],[854.44,365.62],[854.43,365.62],[854.43,365.62],[854.42,365.62],[854.42,365.62],[854.42,365.63],[854.41,365.63],[854.41,365.63],[854.41,365.64],[854.41,365.64],[854.41,365.64],[854.41,365.64],[854.4,365.65],[854.4,365.66],[854.4,365.66],[854.39,365.67],[854.38,365.68],[854.38,365.69],[854.38,365.7],[854.38,365.7],[854.38,365.71],[854.39,365.73],[854.39,365.73],[854.39,365.73],[854.4,365.74],[854.41,365.74],[854.41,365.75],[854.41,365.76],[854.4,365.76],[854.4,365.76],[854.4,365.76],[854.4,365.76],[854.4,365.76],[854.4,365.78],[854.4,365.79],[854.4,365.8],[854.4,365.81],[854.4,365.81],[854.4,365.81],[854.4,365.82],[854.4,365.82],[854.4,365.83],[854.4,365.83],[854.4,365.83],[854.4,365.83],[854.41,365.84],[854.41,365.84],[854.41,365.84],[854.41,365.85],[854.41,365.85],[854.4,365.85],[854.4,365.85],[854.4,365.85],[854.39,365.85],[854.39,365.85],[854.39,365.85],[854.38,365.86],[854.38,365.86],[854.38,365.87],[854.38,365.87],[854.38,365.87],[854.38,365.88],[854.38,365.88],[854.37,365.88],[854.37,365.88],[854.37,365.88],[854.37,365.89],[854.37,365.89],[854.37,365.89],[854.37,365.9],[854.36,365.9],[854.36,365.91],[854.36,365.91],[854.36,365.92],[854.36,365.93],[854.36,365.93],[854.36,365.95],[854.36,365.95],[854.35,365.96],[854.35,365.96],[854.34,365.96],[854.34,365.96],[854.33,365.97],[854.32,365.98],[854.31,365.99],[854.3,366],[854.3,366.01],[854.3,366.02],[854.3,366.02],[854.3,366.02],[854.29,366.03],[854.29,366.03],[854.29,366.04],[854.29,366.04],[854.27,366.06],[854.27,366.07],[854.26,366.08],[854.26,366.08],[854.26,366.08],[854.25,366.09],[854.24,366.11],[854.23,366.12],[854.23,366.12],[854.23,366.13],[854.23,366.13],[854.21,366.14],[854.21,366.15],[854.21,366.15],[854.2,366.16],[854.21,366.16],[854.21,366.16],[854.21,366.17],[854.2,366.17],[854.2,366.17],[854.2,366.17],[854.19,366.18],[854.19,366.18],[854.19,366.18],[854.19,366.19],[854.19,366.19],[854.19,366.19],[854.19,366.19],[854.19,366.2],[854.19,366.19],[854.18,366.19],[854.18,366.19],[854.18,366.2],[854.18,366.21],[854.18,366.21],[854.18,366.21],[854.19,366.21],[854.19,366.21],[854.19,366.21],[854.19,366.21],[854.19,366.21],[854.19,366.22],[854.19,366.22],[854.18,366.22],[854.18,366.22],[854.18,366.23],[854.17,366.23],[854.17,366.23],[854.17,366.23],[854.16,366.23],[854.16,366.24],[854.16,366.24],[854.16,366.24],[854.16,366.24],[854.17,366.24],[854.18,366.26],[854.18,366.26],[854.19,366.26],[854.18,366.27],[854.18,366.27],[854.18,366.27],[854.19,366.27],[854.19,366.27],[854.19,366.27],[854.2,366.28],[854.2,366.28],[854.2,366.28],[854.2,366.28],[854.21,366.28],[854.21,366.28],[854.22,366.29],[854.22,366.29],[854.22,366.3],[854.22,366.3],[854.22,366.3],[854.21,366.31],[854.22,366.31],[854.22,366.31],[854.23,366.31],[854.23,366.31],[854.24,366.32],[854.24,366.33],[854.24,366.34],[854.24,366.35],[854.24,366.35],[854.23,366.37],[854.23,366.38],[854.22,366.38],[854.22,366.38],[854.22,366.38],[854.22,366.38],[854.22,366.38],[854.22,366.39],[854.22,366.39],[854.23,366.39],[854.23,366.39],[854.23,366.39],[854.24,366.39],[854.24,366.39],[854.24,366.39],[854.24,366.39],[854.24,366.39],[854.24,366.4],[854.24,366.41],[854.24,366.41],[854.24,366.42],[854.23,366.43],[854.22,366.43],[854.2,366.43],[854.2,366.43],[854.2,366.43],[854.2,366.43],[854.19,366.43],[854.18,366.43],[854.18,366.43],[854.18,366.43],[854.18,366.42],[854.18,366.42],[854.17,366.42],[854.17,366.42],[854.16,366.42],[854.16,366.43],[854.16,366.43],[854.16,366.43],[854.15,366.43],[854.15,366.43],[854.15,366.42],[854.15,366.42],[854.15,366.42],[854.15,366.42],[854.15,366.42],[854.14,366.42],[854.14,366.42],[854.14,366.42],[854.14,366.42],[854.14,366.42],[854.14,366.42],[854.14,366.42],[854.13,366.43],[854.13,366.43],[854.13,366.43],[854.12,366.43],[854.12,366.43],[854.12,366.43],[854.12,366.44],[854.13,366.44],[854.12,366.44],[854.12,366.45],[854.12,366.45],[854.12,366.45],[854.12,366.45],[854.11,366.46],[854.11,366.46],[854.09,366.46],[854.09,366.46],[854.08,366.45],[854.07,366.45],[854.06,366.44],[854.05,366.44],[854.04,366.44],[854.04,366.44],[854.03,366.44],[854.03,366.44],[854.02,366.44],[854.02,366.44],[854.01,366.44],[854,366.44],[853.99,366.45],[853.99,366.45],[853.98,366.45],[853.97,366.44],[853.97,366.44],[853.96,366.45],[853.95,366.45],[853.94,366.45],[853.94,366.45],[853.92,366.43],[853.91,366.43],[853.91,366.43],[853.9,366.44],[853.89,366.44],[853.89,366.44],[853.88,366.45],[853.88,366.45],[853.88,366.46],[853.87,366.47],[853.87,366.47],[853.86,366.47],[853.86,366.48],[853.85,366.48],[853.85,366.48],[853.85,366.48],[853.84,366.47],[853.84,366.47],[853.84,366.47],[853.84,366.47],[853.83,366.49],[853.83,366.49],[853.82,366.49],[853.82,366.5],[853.82,366.5],[853.82,366.52],[853.82,366.52],[853.82,366.53],[853.82,366.53],[853.82,366.53],[853.81,366.53],[853.81,366.53],[853.81,366.53],[853.81,366.53],[853.8,366.53],[853.8,366.53],[853.79,366.54],[853.79,366.55],[853.79,366.56],[853.78,366.56],[853.78,366.56],[853.78,366.57],[853.77,366.58],[853.77,366.59],[853.76,366.59],[853.76,366.59],[853.75,366.59],[853.75,366.59],[853.75,366.59],[853.74,366.59],[853.74,366.59],[853.73,366.58],[853.72,366.58],[853.72,366.58],[853.72,366.58],[853.72,366.59],[853.72,366.6],[853.72,366.6],[853.72,366.6],[853.71,366.61],[853.7,366.62],[853.7,366.62],[853.69,366.62],[853.68,366.63],[853.68,366.63],[853.68,366.63],[853.68,366.64],[853.67,366.65],[853.67,366.66],[853.67,366.66],[853.65,366.67],[853.64,366.68],[853.63,366.68],[853.62,366.69],[853.61,366.7],[853.61,366.7],[853.6,366.7],[853.6,366.7],[853.59,366.71],[853.58,366.71],[853.57,366.72],[853.57,366.72],[853.55,366.73],[853.55,366.73],[853.55,366.73],[853.54,366.74],[853.54,366.74],[853.54,366.74],[853.53,366.73],[853.53,366.74],[853.52,366.74],[853.52,366.74],[853.52,366.74],[853.52,366.75],[853.51,366.75],[853.51,366.75],[853.51,366.75],[853.5,366.76],[853.5,366.76],[853.5,366.77],[853.5,366.78],[853.5,366.78],[853.51,366.79],[853.51,366.8],[853.5,366.8],[853.5,366.81],[853.49,366.81],[853.47,366.82],[853.47,366.82],[853.47,366.82],[853.47,366.82],[853.46,366.82],[853.46,366.82],[853.45,366.82],[853.45,366.82],[853.45,366.82],[853.45,366.83],[853.44,366.84],[853.44,366.84],[853.44,366.84],[853.43,366.85],[853.43,366.85],[853.43,366.85],[853.43,366.86],[853.43,366.86],[853.43,366.85],[853.43,366.85],[853.42,366.85],[853.42,366.85],[853.42,366.86],[853.42,366.86],[853.41,366.86],[853.41,366.86],[853.4,366.86],[853.39,366.87],[853.39,366.87],[853.38,366.87],[853.38,366.88],[853.37,366.88],[853.37,366.89],[853.37,366.89],[853.37,366.89],[853.37,366.89],[853.37,366.89],[853.36,366.89],[853.35,366.89],[853.33,366.9],[853.32,366.9],[853.31,366.9],[853.31,366.9],[853.31,366.9],[853.3,366.9],[853.3,366.9],[853.28,366.91],[853.28,366.91],[853.28,366.91],[853.27,366.91],[853.27,366.92],[853.27,366.92],[853.27,366.94],[853.26,366.94],[853.26,366.94],[853.26,366.94],[853.26,366.94],[853.25,366.94],[853.24,366.94],[853.24,366.94],[853.23,366.94],[853.22,366.94],[853.22,366.95],[853.22,366.95],[853.21,366.95],[853.21,366.95],[853.21,366.95],[853.21,366.95],[853.19,366.95],[853.19,366.96],[853.19,366.96],[853.19,366.96],[853.18,366.96],[853.18,366.97],[853.18,366.97],[853.17,366.97],[853.17,366.98],[853.17,366.98],[853.17,366.98],[853.16,366.99],[853.15,367],[853.15,367],[853.12,367.03],[853.1,367.05],[853.06,367.07],[853.04,367.08],[853.03,367.09],[852.99,367.1],[852.99,367.1],[852.98,367.1],[852.98,367.11],[852.98,367.11],[852.97,367.13],[852.97,367.14],[852.97,367.15],[852.96,367.16],[852.96,367.16],[852.95,367.17],[852.93,367.18],[852.92,367.19],[852.89,367.2],[852.87,367.21],[852.86,367.21],[852.85,367.22],[852.85,367.22],[852.84,367.22],[852.84,367.23],[852.83,367.24],[852.83,367.25],[852.83,367.27],[852.83,367.28],[852.83,367.28],[852.83,367.29],[852.83,367.3],[852.83,367.3],[852.82,367.31],[852.81,367.31],[852.81,367.32],[852.81,367.32],[852.81,367.32],[852.81,367.33],[852.8,367.34],[852.8,367.34],[852.8,367.34],[852.79,367.35],[852.78,367.35],[852.78,367.35],[852.77,367.35],[852.77,367.35],[852.76,367.35],[852.76,367.36],[852.76,367.36],[852.75,367.36],[852.75,367.37],[852.74,367.37],[852.74,367.37],[852.73,367.38],[852.73,367.38],[852.72,367.38],[852.72,367.38],[852.71,367.38],[852.7,367.38],[852.7,367.38],[852.7,367.37],[852.69,367.37],[852.69,367.38],[852.68,367.38],[852.68,367.38],[852.67,367.38],[852.66,367.38],[852.66,367.38],[852.65,367.39],[852.64,367.4],[852.64,367.4],[852.64,367.41],[852.64,367.42],[852.64,367.42],[852.64,367.42],[852.64,367.43],[852.64,367.43],[852.63,367.43],[852.63,367.42],[852.62,367.42],[852.62,367.42],[852.61,367.42],[852.61,367.42],[852.61,367.43],[852.6,367.43],[852.6,367.43],[852.59,367.43],[852.59,367.43],[852.59,367.44],[852.58,367.45],[852.58,367.45],[852.57,367.45],[852.56,367.46],[852.54,367.46],[852.54,367.46],[852.53,367.46],[852.53,367.47],[852.53,367.46],[852.52,367.47],[852.51,367.47],[852.5,367.48],[852.5,367.49],[852.49,367.5],[852.48,367.51],[852.47,367.51],[852.47,367.51],[852.46,367.52],[852.46,367.52],[852.45,367.52],[852.45,367.53],[852.44,367.53],[852.44,367.53],[852.44,367.53],[852.43,367.53],[852.43,367.53],[852.42,367.53],[852.42,367.54],[852.42,367.53],[852.41,367.53],[852.41,367.52],[852.41,367.52],[852.4,367.52],[852.4,367.52],[852.4,367.52],[852.39,367.52],[852.39,367.53],[852.39,367.53],[852.39,367.54],[852.39,367.54],[852.38,367.54],[852.38,367.54],[852.38,367.55],[852.37,367.55],[852.37,367.55],[852.37,367.55],[852.37,367.55],[852.37,367.55],[852.36,367.55],[852.36,367.56],[852.36,367.56],[852.36,367.56],[852.35,367.57],[852.35,367.57],[852.35,367.57],[852.35,367.58],[852.35,367.58],[852.35,367.58],[852.35,367.58],[852.35,367.58],[852.34,367.58],[852.34,367.59],[852.34,367.59],[852.34,367.59],[852.34,367.59],[852.34,367.6],[852.33,367.6],[852.33,367.6],[852.33,367.61],[852.33,367.61],[852.33,367.61],[852.32,367.61],[852.32,367.62],[852.32,367.62],[852.32,367.63],[852.32,367.63],[852.32,367.63],[852.33,367.63],[852.33,367.63],[852.33,367.63],[852.32,367.63],[852.31,367.63],[852.31,367.63],[852.31,367.63],[852.3,367.63],[852.3,367.64],[852.3,367.64],[852.29,367.64],[852.29,367.64],[852.29,367.64],[852.29,367.63],[852.29,367.63],[852.28,367.63],[852.28,367.63],[852.28,367.64],[852.28,367.64],[852.27,367.64],[852.27,367.65],[852.27,367.65],[852.27,367.65],[852.27,367.65],[852.26,367.66],[852.26,367.66],[852.26,367.66],[852.26,367.66],[852.26,367.67],[852.25,367.67],[852.25,367.68],[852.24,367.69],[852.24,367.69],[852.23,367.7],[852.23,367.71],[852.23,367.71],[852.23,367.72],[852.22,367.72],[852.22,367.73],[852.22,367.73],[852.22,367.73],[852.21,367.74],[852.21,367.74],[852.21,367.75],[852.21,367.76],[852.21,367.77],[852.21,367.77],[852.21,367.77],[852.21,367.78],[852.21,367.78],[852.21,367.79],[852.21,367.79],[852.21,367.79],[852.21,367.8],[852.21,367.8],[852.19,367.82],[852.19,367.82],[852.19,367.82],[852.19,367.82],[852.18,367.82],[852.17,367.82],[852.17,367.82],[852.16,367.82],[852.15,367.82],[852.15,367.83],[852.13,367.84],[852.13,367.84],[852.11,367.85],[852.11,367.86],[852.11,367.86],[852.1,367.87],[852.1,367.87],[852.09,367.87],[852.09,367.88],[852.09,367.88],[852.08,367.88],[852.07,367.88],[852.06,367.89],[852.05,367.89],[852.05,367.9],[852.04,367.9],[852.03,367.91],[852.03,367.91],[852.03,367.92],[852.03,367.92],[852.03,367.92],[852.03,367.93],[852.02,367.93],[852.02,367.94],[852.02,367.95],[852.01,367.95],[852.01,367.96],[852.01,367.96],[852,367.96],[852,367.96],[852,367.97],[852,367.97],[852,367.97],[851.99,367.98],[851.99,367.98],[851.99,367.99],[851.99,367.99],[851.98,367.99],[851.98,367.99],[851.98,367.99],[851.98,368],[851.97,368],[851.97,368],[851.97,368.01],[851.97,368.01],[851.96,368.01],[851.96,368.01],[851.96,368.01],[851.95,368.01],[851.95,368.01],[851.95,368.02],[851.95,368.02],[851.95,368.02],[851.95,368.03],[851.95,368.03],[851.95,368.04],[851.94,368.04],[851.94,368.04],[851.94,368.05],[851.93,368.05],[851.93,368.06],[851.93,368.06],[851.93,368.07],[851.93,368.07],[851.93,368.08],[851.92,368.08],[851.92,368.08],[851.92,368.09],[851.92,368.09],[851.91,368.09],[851.91,368.1],[851.91,368.1],[851.9,368.1],[851.9,368.11],[851.89,368.11],[851.88,368.12],[851.88,368.11],[851.88,368.11],[851.87,368.11],[851.86,368.12],[851.84,368.13],[851.84,368.13],[851.83,368.13],[851.83,368.13],[851.83,368.13],[851.82,368.14],[851.82,368.14],[851.82,368.14],[851.81,368.14],[851.81,368.14],[851.8,368.14],[851.8,368.15],[851.79,368.15],[851.79,368.15],[851.79,368.16],[851.78,368.16],[851.78,368.17],[851.78,368.17],[851.77,368.18],[851.77,368.18],[851.77,368.19],[851.76,368.19],[851.75,368.2],[851.75,368.2],[851.74,368.21],[851.74,368.21],[851.74,368.22],[851.73,368.22],[851.73,368.22],[851.73,368.23],[851.72,368.23],[851.72,368.23],[851.72,368.23],[851.72,368.24],[851.71,368.24],[851.7,368.25],[851.7,368.25],[851.7,368.26],[851.69,368.26],[851.68,368.26],[851.68,368.27],[851.68,368.27],[851.68,368.28],[851.66,368.29],[851.66,368.29],[851.66,368.3],[851.66,368.31],[851.66,368.31],[851.65,368.31],[851.64,368.32],[851.63,368.32],[851.63,368.32],[851.62,368.33],[851.61,368.34],[851.6,368.35],[851.59,368.35],[851.59,368.35],[851.59,368.36],[851.58,368.37],[851.57,368.37],[851.57,368.38],[851.56,368.38],[851.55,368.38],[851.54,368.39],[851.54,368.39],[851.53,368.39],[851.52,368.39],[851.52,368.39],[851.51,368.4],[851.5,368.41],[851.5,368.41],[851.48,368.42],[851.47,368.42],[851.47,368.43],[851.46,368.43],[851.46,368.43],[851.45,368.44],[851.45,368.44],[851.43,368.44],[851.42,368.45],[851.41,368.46],[851.4,368.46],[851.39,368.46],[851.37,368.47],[851.36,368.47],[851.36,368.47],[851.35,368.47],[851.35,368.47],[851.34,368.47],[851.33,368.47],[851.33,368.48],[851.32,368.48],[851.31,368.49],[851.3,368.49],[851.28,368.51],[851.27,368.51],[851.27,368.52],[851.26,368.52],[851.24,368.53],[851.24,368.53],[851.24,368.53],[851.23,368.53],[851.22,368.54],[851.21,368.54],[851.2,368.55],[851.2,368.55],[851.19,368.55],[851.18,368.56],[851.17,368.57],[851.16,368.58],[851.15,368.58],[851.14,368.59],[851.13,368.59],[851.12,368.6],[851.11,368.62],[851.11,368.62],[851.1,368.62],[851.08,368.63],[851.06,368.65],[851.05,368.66],[851.04,368.66],[851.03,368.67],[851.02,368.66],[851.01,368.66],[851.01,368.66],[850.98,368.67],[850.98,368.68],[850.98,368.68],[850.97,368.68],[850.96,368.68],[850.94,368.68],[850.94,368.68],[850.93,368.68],[850.93,368.68],[850.93,368.68],[850.92,368.69],[850.92,368.7],[850.92,368.7],[850.92,368.71],[850.92,368.71],[850.93,368.72],[850.94,368.73],[850.94,368.74],[850.94,368.74],[850.94,368.74],[850.94,368.75],[850.94,368.75],[850.94,368.76],[850.94,368.76],[850.94,368.77],[850.94,368.77],[850.94,368.77],[850.94,368.78],[850.94,368.78],[850.94,368.79],[850.93,368.79],[850.93,368.79],[850.93,368.79],[850.93,368.8],[850.93,368.81],[850.93,368.81],[850.93,368.81],[850.93,368.82],[850.93,368.82],[850.93,368.82],[850.93,368.82],[850.93,368.83],[850.92,368.83],[850.92,368.84],[850.92,368.85],[850.92,368.85],[850.92,368.85],[850.92,368.86],[850.94,368.86],[850.95,368.87],[850.96,368.87],[850.96,368.87],[850.96,368.87],[850.97,368.87],[850.97,368.88],[850.98,368.88],[850.98,368.89],[850.99,368.89],[851,368.89],[851,368.89],[851,368.91],[851,368.91],[851.01,368.91],[851.01,368.91],[851.02,368.92],[851.02,368.92],[851.02,368.92],[851.03,368.93],[851.03,368.93],[851.04,368.94],[851.04,368.95],[851.04,368.95],[851.04,368.96],[851.05,368.96],[851.05,368.97],[851.05,368.97],[851.05,368.98],[851.05,368.99],[851.05,369],[851.06,369],[851.06,369],[851.06,369.01],[851.06,369.02],[851.05,369.03],[851.05,369.03],[851.04,369.03],[851.04,369.03],[851.03,369.04],[851.02,369.05],[851.02,369.06],[851.01,369.08],[851,369.09],[851,369.1],[851,369.1],[851,369.1],[850.99,369.11],[850.99,369.11],[850.98,369.11],[850.98,369.11],[850.97,369.12],[850.97,369.12],[850.96,369.13],[850.96,369.14],[850.96,369.15],[850.96,369.15],[850.95,369.16],[850.95,369.16],[850.95,369.17],[850.95,369.17],[850.95,369.18],[850.95,369.18],[850.95,369.19],[850.94,369.19],[850.94,369.2],[850.94,369.21],[850.93,369.22],[850.93,369.22],[850.93,369.23],[850.92,369.23],[850.92,369.23],[850.92,369.24],[850.92,369.24],[850.91,369.25],[850.91,369.25],[850.9,369.26],[850.88,369.26],[850.87,369.27],[850.87,369.27],[850.86,369.28],[850.85,369.29],[850.85,369.3],[850.85,369.3],[850.85,369.31],[850.85,369.32],[850.85,369.33],[850.84,369.33],[850.84,369.33],[850.83,369.33],[850.83,369.33],[850.83,369.34],[850.82,369.35],[850.82,369.35],[850.82,369.35],[850.81,369.35],[850.81,369.35],[850.81,369.34],[850.81,369.34],[850.79,369.33],[850.79,369.33],[850.79,369.32],[850.8,369.32],[850.8,369.32],[850.8,369.32],[850.8,369.31],[850.8,369.31],[850.8,369.31],[850.8,369.31],[850.79,369.31],[850.79,369.31],[850.79,369.31],[850.78,369.31],[850.78,369.31],[850.78,369.3],[850.78,369.3],[850.77,369.3],[850.77,369.31],[850.78,369.31],[850.78,369.32],[850.77,369.32],[850.77,369.32],[850.76,369.32],[850.76,369.32],[850.75,369.33],[850.75,369.34],[850.74,369.34],[850.75,369.34],[850.75,369.34],[850.75,369.34],[850.75,369.35],[850.75,369.35],[850.74,369.35],[850.74,369.35],[850.74,369.35],[850.74,369.36],[850.74,369.36],[850.74,369.38],[850.74,369.39],[850.73,369.39],[850.73,369.39],[850.73,369.39],[850.72,369.39],[850.72,369.39],[850.72,369.4],[850.72,369.4],[850.72,369.4],[850.72,369.42],[850.72,369.42],[850.72,369.42],[850.71,369.42],[850.71,369.42],[850.71,369.42],[850.71,369.43],[850.71,369.43],[850.7,369.43],[850.7,369.43],[850.7,369.43],[850.69,369.43],[850.69,369.43],[850.69,369.43],[850.69,369.44],[850.69,369.44],[850.69,369.45],[850.69,369.45],[850.69,369.45],[850.68,369.45],[850.68,369.46],[850.68,369.46],[850.67,369.46],[850.67,369.47],[850.67,369.47],[850.66,369.47],[850.66,369.47],[850.65,369.47],[850.65,369.47],[850.64,369.47],[850.64,369.47],[850.64,369.47],[850.64,369.47],[850.63,369.46],[850.63,369.46],[850.62,369.46],[850.62,369.46],[850.62,369.46],[850.62,369.46],[850.62,369.46],[850.62,369.47],[850.61,369.47],[850.61,369.47],[850.61,369.47],[850.6,369.47],[850.6,369.47],[850.6,369.47],[850.6,369.47],[850.59,369.47],[850.59,369.47],[850.59,369.48],[850.59,369.48],[850.58,369.47],[850.58,369.47],[850.58,369.47],[850.58,369.47],[850.57,369.47],[850.56,369.47],[850.55,369.47],[850.55,369.47],[850.55,369.47],[850.54,369.47],[850.54,369.48],[850.54,369.48],[850.54,369.48],[850.53,369.48],[850.53,369.49],[850.54,369.49],[850.53,369.49],[850.53,369.49],[850.53,369.5],[850.52,369.5],[850.52,369.5],[850.52,369.51],[850.52,369.51],[850.51,369.51],[850.52,369.52],[850.52,369.52],[850.51,369.52],[850.51,369.52],[850.51,369.52],[850.51,369.52],[850.51,369.51],[850.5,369.51],[850.5,369.51],[850.5,369.51],[850.5,369.51],[850.49,369.51],[850.48,369.51],[850.47,369.51],[850.47,369.51],[850.46,369.51],[850.45,369.52],[850.45,369.52],[850.45,369.53],[850.44,369.53],[850.44,369.53],[850.44,369.54],[850.44,369.54],[850.44,369.55],[850.43,369.55],[850.43,369.55],[850.43,369.56],[850.43,369.57],[850.43,369.57],[850.43,369.57],[850.43,369.58],[850.43,369.58],[850.43,369.59],[850.43,369.59],[850.43,369.59],[850.43,369.59],[850.43,369.6],[850.43,369.61],[850.42,369.61],[850.42,369.62],[850.41,369.62],[850.4,369.62],[850.4,369.62],[850.4,369.62],[850.4,369.63],[850.39,369.63],[850.39,369.63],[850.39,369.63],[850.38,369.63],[850.38,369.64],[850.37,369.64],[850.37,369.64],[850.37,369.64],[850.36,369.64],[850.36,369.64],[850.36,369.65],[850.36,369.65],[850.35,369.65],[850.35,369.65],[850.35,369.65],[850.35,369.65],[850.35,369.65],[850.35,369.66],[850.34,369.66],[850.34,369.66],[850.34,369.66],[850.34,369.66],[850.33,369.66],[850.33,369.66],[850.33,369.66],[850.33,369.67],[850.32,369.67],[850.32,369.68],[850.32,369.68],[850.32,369.69],[850.32,369.69],[850.32,369.69],[850.32,369.69],[850.32,369.69],[850.32,369.69],[850.32,369.7],[850.32,369.7],[850.33,369.7],[850.33,369.7],[850.32,369.7],[850.32,369.71],[850.32,369.71],[850.32,369.71],[850.32,369.71],[850.32,369.71],[850.32,369.72],[850.32,369.72],[850.32,369.72],[850.32,369.73],[850.32,369.73],[850.32,369.73],[850.32,369.73],[850.32,369.73],[850.32,369.74],[850.32,369.74],[850.32,369.74],[850.32,369.75],[850.32,369.75],[850.32,369.75],[850.32,369.75],[850.32,369.76],[850.32,369.76],[850.32,369.76],[850.32,369.76],[850.31,369.76],[850.31,369.76],[850.31,369.77],[850.31,369.77],[850.31,369.77],[850.31,369.77],[850.31,369.77],[850.3,369.77],[850.3,369.77],[850.29,369.78],[850.29,369.78],[850.29,369.78],[850.29,369.78],[850.29,369.78],[850.28,369.78],[850.28,369.78],[850.28,369.78],[850.27,369.79],[850.27,369.79],[850.27,369.79],[850.27,369.79],[850.27,369.79],[850.27,369.8],[850.27,369.8],[850.27,369.8],[850.26,369.8],[850.26,369.8],[850.25,369.81],[850.24,369.81],[850.24,369.81],[850.24,369.81],[850.24,369.81],[850.23,369.81],[850.23,369.82],[850.23,369.82],[850.23,369.83],[850.23,369.83],[850.22,369.83],[850.22,369.83],[850.22,369.83],[850.21,369.83],[850.21,369.83],[850.21,369.83],[850.21,369.83],[850.2,369.83],[850.2,369.83],[850.2,369.83],[850.2,369.84],[850.19,369.84],[850.19,369.84],[850.19,369.84],[850.19,369.84],[850.18,369.84],[850.18,369.85],[850.18,369.85],[850.17,369.86],[850.17,369.86],[850.16,369.86],[850.16,369.86],[850.16,369.86],[850.16,369.86],[850.15,369.86],[850.15,369.86],[850.14,369.86],[850.14,369.86],[850.13,369.87],[850.13,369.87],[850.13,369.87],[850.12,369.87],[850.12,369.88],[850.12,369.88],[850.12,369.88],[850.12,369.89],[850.11,369.89],[850.11,369.89],[850.11,369.89],[850.11,369.9],[850.1,369.9],[850.1,369.9],[850.09,369.91],[850.09,369.92],[850.08,369.92],[850.08,369.92],[850.07,369.93],[850.07,369.93],[850.07,369.93],[850.07,369.93],[850.06,369.93],[850.06,369.94],[850.06,369.94],[850.05,369.95],[850.04,369.95],[850.04,369.96],[850.03,369.97],[850.03,369.97],[850.03,369.97],[850.03,369.98],[850.03,369.98],[850.04,369.99],[850.04,369.99],[850.04,369.99],[850.04,369.99],[850.04,370],[850.04,370],[850.04,370],[850.03,370],[850.03,370.01],[850.03,370.01],[850.03,370.01],[850.04,370.01],[850.04,370.01],[850.03,370.02],[850.03,370.02],[850.03,370.02],[850.02,370.02],[850.02,370.02],[850.02,370.03],[850.02,370.03],[850.02,370.03],[850.02,370.03],[850.02,370.03],[850.02,370.03],[850.02,370.03],[850.01,370.04],[850.01,370.04],[850.01,370.04],[850.01,370.05],[850.01,370.06],[850.01,370.06],[850.01,370.07],[850.01,370.07],[850.01,370.07],[850.01,370.08],[850.01,370.08],[850.01,370.08],[850.01,370.08],[850.01,370.08],[850.01,370.08],[850.01,370.09],[850.02,370.09],[850.02,370.09],[850.02,370.09],[850.02,370.09],[850.02,370.1],[850.02,370.1],[850.02,370.1],[850.02,370.1],[850.02,370.1],[850.02,370.11],[850.02,370.11],[850.02,370.11],[850.02,370.11],[850.02,370.11],[850.02,370.11],[850.01,370.11],[850.01,370.11],[850.01,370.11],[850.01,370.12],[850.01,370.12],[850.01,370.12],[850.01,370.12],[850.01,370.13],[850,370.13],[850,370.13],[850,370.13],[850,370.13],[850,370.13],[849.99,370.14],[849.99,370.14],[849.99,370.14],[849.99,370.14],[849.99,370.14],[849.99,370.15],[849.98,370.15],[849.98,370.15],[849.98,370.16],[849.98,370.16],[849.98,370.16],[849.97,370.16],[849.96,370.17],[849.96,370.17],[849.95,370.17],[849.95,370.18],[849.95,370.18],[849.94,370.18],[849.94,370.18],[849.94,370.19],[849.94,370.19],[849.94,370.19],[849.93,370.2],[849.93,370.21],[849.93,370.21],[849.93,370.21],[849.92,370.22],[849.92,370.22],[849.91,370.22],[849.91,370.22],[849.9,370.22],[849.9,370.22],[849.89,370.22],[849.89,370.22],[849.88,370.22],[849.88,370.22],[849.88,370.21],[849.88,370.21],[849.87,370.22],[849.87,370.22],[849.86,370.22],[849.85,370.22],[849.85,370.22],[849.85,370.22],[849.84,370.22],[849.84,370.22],[849.84,370.23],[849.84,370.23],[849.84,370.24],[849.83,370.24],[849.83,370.25],[849.83,370.25],[849.82,370.26],[849.81,370.26],[849.81,370.27],[849.81,370.27],[849.81,370.28],[849.81,370.28],[849.81,370.28],[849.81,370.29],[849.81,370.29],[849.81,370.29],[849.81,370.3],[849.81,370.31],[849.81,370.31],[849.81,370.31],[849.8,370.31],[849.8,370.31],[849.79,370.31],[849.79,370.31],[849.79,370.31],[849.79,370.31],[849.79,370.3],[849.78,370.3],[849.77,370.3],[849.77,370.31],[849.76,370.31],[849.76,370.31],[849.75,370.32],[849.74,370.32],[849.74,370.32],[849.74,370.32],[849.73,370.33],[849.74,370.33],[849.74,370.33],[849.73,370.34],[849.73,370.35],[849.73,370.35],[849.73,370.36],[849.73,370.36],[849.73,370.37],[849.73,370.37],[849.74,370.37],[849.73,370.37],[849.73,370.37],[849.74,370.37],[849.74,370.38],[849.73,370.38],[849.73,370.38],[849.73,370.38],[849.73,370.37],[849.73,370.38],[849.72,370.38],[849.72,370.38],[849.72,370.38],[849.72,370.38],[849.71,370.38],[849.71,370.38],[849.71,370.38],[849.71,370.38],[849.69,370.39],[849.69,370.39],[849.68,370.39],[849.68,370.4],[849.67,370.4],[849.67,370.4],[849.67,370.4],[849.67,370.4],[849.66,370.4],[849.66,370.4],[849.66,370.4],[849.65,370.41],[849.65,370.41],[849.65,370.41],[849.64,370.41],[849.63,370.42],[849.63,370.42],[849.63,370.42],[849.62,370.42],[849.62,370.42],[849.62,370.42],[849.62,370.43],[849.61,370.43],[849.61,370.44],[849.61,370.44],[849.61,370.44],[849.6,370.45],[849.6,370.46],[849.6,370.46],[849.59,370.46],[849.59,370.46],[849.59,370.47],[849.58,370.47],[849.55,370.49],[849.55,370.49],[849.55,370.49],[849.54,370.49],[849.54,370.49],[849.54,370.49],[849.53,370.49],[849.53,370.49],[849.52,370.49],[849.52,370.49],[849.51,370.49],[849.51,370.49],[849.51,370.49],[849.51,370.49],[849.51,370.5],[849.51,370.5],[849.5,370.5],[849.51,370.51],[849.51,370.51],[849.5,370.51],[849.5,370.51],[849.5,370.51],[849.5,370.52],[849.49,370.52],[849.48,370.52],[849.47,370.53],[849.47,370.53],[849.46,370.53],[849.46,370.53],[849.46,370.53],[849.45,370.53],[849.45,370.54],[849.44,370.54],[849.44,370.54],[849.43,370.54],[849.43,370.55],[849.42,370.55],[849.41,370.55],[849.41,370.55],[849.4,370.55],[849.4,370.56],[849.39,370.56],[849.38,370.56],[849.37,370.56],[849.36,370.57],[849.36,370.57],[849.34,370.58],[849.34,370.58],[849.33,370.58],[849.33,370.58],[849.33,370.59],[849.32,370.59],[849.32,370.59],[849.33,370.59],[849.33,370.6],[849.33,370.61],[849.33,370.61],[849.33,370.61],[849.33,370.61],[849.33,370.61],[849.32,370.61],[849.31,370.63],[849.31,370.63],[849.31,370.63],[849.31,370.63],[849.31,370.64],[849.31,370.64],[849.31,370.64],[849.31,370.64],[849.31,370.64],[849.31,370.64],[849.31,370.64],[849.3,370.64],[849.29,370.64],[849.29,370.64],[849.29,370.63],[849.29,370.63],[849.28,370.63],[849.28,370.64],[849.28,370.64],[849.28,370.63],[849.27,370.64],[849.27,370.64],[849.26,370.64],[849.26,370.65],[849.26,370.65],[849.26,370.65],[849.26,370.65],[849.26,370.65],[849.25,370.65],[849.25,370.65],[849.24,370.66],[849.24,370.66],[849.23,370.66],[849.23,370.65],[849.23,370.65],[849.23,370.65],[849.23,370.65],[849.23,370.65],[849.22,370.65],[849.22,370.65],[849.22,370.65],[849.21,370.65],[849.21,370.65],[849.21,370.65],[849.21,370.65],[849.21,370.65],[849.21,370.65],[849.2,370.65],[849.2,370.65],[849.2,370.65],[849.19,370.65],[849.19,370.65],[849.19,370.65],[849.19,370.65],[849.19,370.65],[849.19,370.65],[849.18,370.65],[849.18,370.65],[849.18,370.65],[849.17,370.65],[849.17,370.65],[849.16,370.65],[849.16,370.65],[849.15,370.65],[849.15,370.65],[849.15,370.66],[849.14,370.66],[849.14,370.66],[849.13,370.66],[849.12,370.67],[849.12,370.66],[849.12,370.66],[849.11,370.66],[849.11,370.66],[849.11,370.67],[849.11,370.67],[849.11,370.67],[849.1,370.68],[849.1,370.68],[849.1,370.68],[849.1,370.68],[849.1,370.69],[849.09,370.69],[849.08,370.69],[849.07,370.7],[849.06,370.7],[849.06,370.7],[849.06,370.71],[849.06,370.71],[849.05,370.71],[849.05,370.71],[849.05,370.71],[849.04,370.71],[849.04,370.71],[849.04,370.71],[849.04,370.71],[849.03,370.7],[849.02,370.68],[849.01,370.68],[849.01,370.68],[848.99,370.68],[848.99,370.68],[848.99,370.69],[848.98,370.69],[848.98,370.69],[848.98,370.69],[848.97,370.7],[848.97,370.7],[848.97,370.7],[848.96,370.7],[848.96,370.7],[848.96,370.69],[848.96,370.69],[848.95,370.69],[848.95,370.69],[848.95,370.69],[848.95,370.69],[848.94,370.68],[848.95,370.68],[848.94,370.67],[848.94,370.67],[848.94,370.67],[848.94,370.66],[848.94,370.66],[848.94,370.66],[848.94,370.66],[848.94,370.65],[848.94,370.65],[848.94,370.65],[848.93,370.65],[848.93,370.65],[848.93,370.65],[848.93,370.65],[848.92,370.65],[848.92,370.65],[848.92,370.65],[848.91,370.65],[848.91,370.65],[848.9,370.65],[848.9,370.65],[848.9,370.65],[848.89,370.64],[848.89,370.64],[848.89,370.64],[848.89,370.64],[848.89,370.63],[848.88,370.64],[848.88,370.64],[848.87,370.64],[848.87,370.64],[848.87,370.64],[848.86,370.64],[848.85,370.63],[848.85,370.63],[848.84,370.63],[848.84,370.62],[848.83,370.61],[848.82,370.61],[848.82,370.61],[848.81,370.62],[848.81,370.62],[848.8,370.62],[848.8,370.62],[848.79,370.62],[848.79,370.63],[848.79,370.63],[848.78,370.63],[848.77,370.63],[848.77,370.63],[848.76,370.63],[848.76,370.63],[848.75,370.63],[848.75,370.63],[848.75,370.63],[848.75,370.63],[848.75,370.63],[848.74,370.63],[848.74,370.63],[848.74,370.63],[848.74,370.63],[848.74,370.64],[848.74,370.64],[848.73,370.64],[848.73,370.65],[848.73,370.65],[848.72,370.65],[848.71,370.65],[848.7,370.65],[848.69,370.65],[848.69,370.65],[848.68,370.66],[848.67,370.66],[848.67,370.66],[848.66,370.66],[848.66,370.66],[848.66,370.66],[848.65,370.66],[848.65,370.66],[848.65,370.66],[848.64,370.66],[848.63,370.66],[848.63,370.66],[848.62,370.67],[848.62,370.67],[848.61,370.67],[848.61,370.67],[848.61,370.67],[848.6,370.68],[848.6,370.68],[848.59,370.68],[848.58,370.68],[848.58,370.68],[848.57,370.69],[848.57,370.69],[848.56,370.68],[848.56,370.68],[848.56,370.68],[848.56,370.68],[848.55,370.69],[848.55,370.69],[848.54,370.69],[848.54,370.69],[848.54,370.69],[848.54,370.69],[848.54,370.68],[848.54,370.68],[848.53,370.68],[848.53,370.68],[848.53,370.68],[848.53,370.68],[848.52,370.69],[848.52,370.69],[848.51,370.69],[848.51,370.68],[848.5,370.68],[848.5,370.69],[848.5,370.69],[848.5,370.69],[848.49,370.68],[848.49,370.68],[848.49,370.68],[848.49,370.68],[848.48,370.68],[848.48,370.67],[848.49,370.67],[848.49,370.67],[848.49,370.67],[848.49,370.66],[848.49,370.66],[848.49,370.65],[848.49,370.65],[848.49,370.65],[848.49,370.64],[848.49,370.64],[848.48,370.64],[848.48,370.64],[848.48,370.64],[848.47,370.64],[848.47,370.63],[848.47,370.63],[848.47,370.63],[848.47,370.63],[848.47,370.62],[848.47,370.62],[848.47,370.61],[848.47,370.61],[848.47,370.61],[848.46,370.61],[848.46,370.6],[848.46,370.6],[848.46,370.6],[848.45,370.6],[848.44,370.61],[848.44,370.61],[848.43,370.61],[848.42,370.61],[848.42,370.6],[848.4,370.6],[848.39,370.6],[848.38,370.6],[848.38,370.6],[848.37,370.59],[848.37,370.59],[848.37,370.59],[848.36,370.58],[848.36,370.58],[848.36,370.58],[848.35,370.58],[848.35,370.58],[848.34,370.57],[848.34,370.57],[848.34,370.56],[848.32,370.53],[848.31,370.53],[848.3,370.53],[848.3,370.52],[848.28,370.52],[848.27,370.51],[848.26,370.5],[848.25,370.49],[848.23,370.49],[848.23,370.49],[848.21,370.5],[848.17,370.53],[848.17,370.53],[848.14,370.6],[848.13,370.61],[848.13,370.62],[848.11,370.62],[848.1,370.63],[848.04,370.65],[848.04,370.67],[848.01,370.69],[847.98,370.71],[847.97,370.72],[847.96,370.73],[847.95,370.73],[847.93,370.76],[847.92,370.77],[847.92,370.77],[847.91,370.79],[847.9,370.8],[847.89,370.8],[847.89,370.82],[847.89,370.83],[847.88,370.84],[847.87,370.84],[847.87,370.85],[847.87,370.86],[847.87,370.86],[847.86,370.86],[847.84,370.87],[847.84,370.87],[847.84,370.87],[847.84,370.88],[847.85,370.89],[847.86,370.89],[847.86,370.9],[847.86,370.9],[847.86,370.91],[847.86,370.92],[847.87,370.92],[847.87,370.93],[847.86,370.93],[847.86,370.93],[847.86,370.94],[847.85,370.95],[847.85,370.95],[847.84,370.96],[847.83,370.98],[847.83,370.98],[847.83,371],[847.83,371.02],[847.82,371.03],[847.82,371.03],[847.81,371.04],[847.8,371.04],[847.79,371.04],[847.79,371.04],[847.78,371.05],[847.78,371.06],[847.77,371.07],[847.76,371.08],[847.75,371.11],[847.72,371.12],[847.71,371.12],[847.69,371.14],[847.68,371.16],[847.65,371.16],[847.62,371.17],[847.61,371.17],[847.58,371.16],[847.56,371.17],[847.55,371.17],[847.53,371.18],[847.52,371.21],[847.53,371.22],[847.53,371.23],[847.53,371.24],[847.53,371.25],[847.52,371.26],[847.46,371.3],[847.41,371.31],[847.4,371.32],[847.4,371.33],[847.39,371.33],[847.38,371.33],[847.38,371.33],[847.37,371.32],[847.37,371.32],[847.37,371.31],[847.36,371.31],[847.36,371.31],[847.35,371.32],[847.35,371.32],[847.35,371.32],[847.34,371.32],[847.34,371.32],[847.34,371.31],[847.34,371.32],[847.34,371.32],[847.34,371.32],[847.33,371.32],[847.33,371.32],[847.32,371.32],[847.31,371.32],[847.31,371.32],[847.31,371.31],[847.3,371.31],[847.3,371.31],[847.29,371.3],[847.29,371.3],[847.28,371.3],[847.28,371.29],[847.28,371.29],[847.27,371.29],[847.27,371.28],[847.26,371.26],[847.26,371.25],[847.25,371.25],[847.25,371.24],[847.25,371.24],[847.25,371.23],[847.25,371.23],[847.25,371.23],[847.25,371.22],[847.24,371.22],[847.24,371.22],[847.24,371.21],[847.24,371.21],[847.24,371.2],[847.24,371.19],[847.24,371.19],[847.24,371.18],[847.24,371.18],[847.23,371.17],[847.23,371.17],[847.23,371.17],[847.23,371.16],[847.23,371.16],[847.22,371.16],[847.22,371.16],[847.22,371.17],[847.22,371.17],[847.22,371.17],[847.2,371.17],[847.2,371.17],[847.2,371.17],[847.2,371.17],[847.2,371.17],[847.2,371.17],[847.19,371.17],[847.19,371.17],[847.19,371.17],[847.19,371.17],[847.19,371.18],[847.18,371.18],[847.18,371.18],[847.18,371.18],[847.17,371.18],[847.17,371.17],[847.17,371.17],[847.17,371.17],[847.16,371.17],[847.16,371.17],[847.16,371.17],[847.16,371.17],[847.16,371.17],[847.15,371.17],[847.15,371.17],[847.15,371.17],[847.15,371.17],[847.15,371.17],[847.15,371.16],[847.15,371.16],[847.15,371.16],[847.15,371.16],[847.14,371.16],[847.14,371.16],[847.14,371.15],[847.14,371.15],[847.14,371.15],[847.14,371.15],[847.14,371.14],[847.14,371.14],[847.14,371.14],[847.14,371.14],[847.14,371.13],[847.13,371.13],[847.13,371.12],[847.13,371.12],[847.12,371.11],[847.12,371.11],[847.12,371.1],[847.11,371.09],[847.11,371.09],[847.11,371.09],[847.11,371.08],[847.11,371.08],[847.11,371.08],[847.11,371.07],[847.11,371.07],[847.11,371.07],[847.1,371.07],[847.1,371.06],[847.1,371.06],[847.1,371.06],[847.11,371.05],[847.11,371.05],[847.1,371.05],[847.1,371.05],[847.1,371.04],[847.1,371.04],[847.1,371.04],[847.1,371.03],[847.1,371.02],[847.1,371.01],[847.1,371.01],[847.1,371],[847.1,371],[847.1,370.99],[847.09,370.99],[847.09,370.99],[847.09,370.99],[847.09,370.99],[847.09,370.99],[847.08,370.99],[847.08,370.98],[847.08,370.98],[847.08,370.98],[847.08,370.97],[847.07,370.97],[847.07,370.97],[847.07,370.97],[847.07,370.96],[847.06,370.96],[847.06,370.96],[847.06,370.96],[847.06,370.95],[847.06,370.95],[847.06,370.95],[847.06,370.95],[847.06,370.94],[847.05,370.94],[847.05,370.94],[847.05,370.94],[847.05,370.94],[847.05,370.93],[847.05,370.93],[847.05,370.93],[847.05,370.93],[847.05,370.92],[847.05,370.92],[847.05,370.92],[847.05,370.92],[847.05,370.91],[847.05,370.91],[847.04,370.91],[847.04,370.91],[847.04,370.9],[847.04,370.9],[847.05,370.9],[847.05,370.89],[847.05,370.89],[847.05,370.89],[847.05,370.89],[847.05,370.88],[847.05,370.88],[847.05,370.88],[847.05,370.88],[847.05,370.87],[847.05,370.87],[847.05,370.87],[847.05,370.87],[847.05,370.86],[847.05,370.86],[847.05,370.86],[847.04,370.86],[847.04,370.86],[847.04,370.85],[847.04,370.85],[847.04,370.85],[847.04,370.85],[847.04,370.85],[847.03,370.84],[847.03,370.84],[847.03,370.84],[847.03,370.84],[847.03,370.84],[847.03,370.84],[847.03,370.83],[847.03,370.83],[847.03,370.83],[847.03,370.83],[847.03,370.83],[847.03,370.82],[847.03,370.82],[847.03,370.82],[847.03,370.82],[847.03,370.82],[847.03,370.82],[847.03,370.81],[847.03,370.81],[847.03,370.81],[847.03,370.81],[847.03,370.81],[847.03,370.8],[847.03,370.8],[847.03,370.8],[847.02,370.8],[847.02,370.8],[847.02,370.8],[847.02,370.79],[847.02,370.79],[847.02,370.79],[847.02,370.79],[847.02,370.79],[847.02,370.79],[847.02,370.79],[847.02,370.79],[847.02,370.78],[847.02,370.78],[847.02,370.78],[847.02,370.78],[847.02,370.78],[847.02,370.77],[847.02,370.77],[847.02,370.77],[847.02,370.77],[847.02,370.77],[847.02,370.76],[847.02,370.76],[847.02,370.76],[847.01,370.76],[847.01,370.76],[847.01,370.76],[847.01,370.76],[847.02,370.76],[847.02,370.76],[847.02,370.75],[847.02,370.75],[847.02,370.75],[847.02,370.75],[847.02,370.75],[847.02,370.75],[847.02,370.75],[847.02,370.74],[847.02,370.74],[847.01,370.74],[847.01,370.74],[847.01,370.74],[847.01,370.73],[847.01,370.73],[847,370.73],[847,370.73],[847,370.73],[847,370.73],[847,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.73],[846.99,370.72],[846.99,370.72],[846.99,370.72],[846.99,370.72],[846.99,370.72],[846.98,370.72],[846.98,370.72],[846.98,370.72],[846.98,370.72],[846.98,370.72],[846.98,370.72],[846.98,370.72],[846.97,370.72],[846.97,370.72],[846.97,370.73],[846.96,370.73],[846.96,370.73],[846.96,370.73],[846.96,370.72],[846.96,370.72],[846.96,370.72],[846.96,370.72],[846.95,370.73],[846.95,370.73],[846.95,370.72],[846.95,370.72],[846.95,370.72],[846.95,370.72],[846.95,370.72],[846.95,370.71],[846.95,370.71],[846.95,370.71],[846.94,370.71],[846.94,370.71],[846.94,370.7],[846.94,370.7],[846.94,370.71],[846.94,370.71],[846.93,370.71],[846.93,370.71],[846.93,370.71],[846.92,370.71],[846.92,370.71],[846.92,370.71],[846.91,370.71],[846.91,370.72],[846.91,370.72],[846.91,370.72],[846.9,370.72],[846.9,370.72],[846.89,370.72],[846.88,370.73],[846.88,370.74],[846.87,370.74],[846.86,370.74],[846.85,370.74],[846.84,370.74],[846.82,370.75],[846.81,370.75],[846.8,370.75],[846.79,370.75],[846.79,370.75],[846.78,370.74],[846.78,370.74],[846.78,370.73],[846.78,370.73],[846.78,370.74],[846.77,370.74],[846.77,370.75],[846.77,370.75],[846.77,370.75],[846.77,370.76],[846.77,370.76],[846.76,370.76],[846.76,370.76],[846.75,370.76],[846.75,370.76],[846.75,370.76],[846.75,370.76],[846.74,370.77],[846.74,370.77],[846.74,370.77],[846.74,370.78],[846.74,370.78],[846.74,370.79],[846.74,370.79],[846.73,370.79],[846.73,370.8],[846.72,370.81],[846.71,370.81],[846.71,370.81],[846.71,370.81],[846.7,370.81],[846.7,370.81],[846.69,370.82],[846.69,370.82],[846.69,370.82],[846.69,370.83],[846.69,370.83],[846.69,370.83],[846.68,370.84],[846.68,370.85],[846.68,370.86],[846.67,370.86],[846.67,370.86],[846.67,370.86],[846.66,370.86],[846.66,370.86],[846.66,370.86],[846.65,370.87],[846.65,370.87],[846.64,370.86],[846.64,370.87],[846.64,370.87],[846.63,370.87],[846.63,370.87],[846.62,370.88],[846.62,370.88],[846.61,370.88],[846.6,370.88],[846.59,370.88],[846.59,370.88],[846.58,370.88],[846.58,370.89],[846.58,370.89],[846.57,370.89],[846.57,370.89],[846.56,370.89],[846.56,370.9],[846.54,370.89],[846.54,370.9],[846.54,370.9],[846.52,370.9],[846.52,370.9],[846.52,370.91],[846.52,370.91],[846.52,370.91],[846.51,370.92],[846.51,370.92],[846.5,370.92],[846.5,370.93],[846.5,370.93],[846.49,370.94],[846.47,370.95],[846.46,370.95],[846.45,370.96],[846.45,370.97],[846.44,370.97],[846.43,370.97],[846.42,370.98],[846.42,370.98],[846.4,370.98],[846.39,370.98],[846.39,370.98],[846.37,370.99],[846.36,370.99],[846.35,370.99],[846.33,370.99],[846.33,371],[846.32,371],[846.32,371],[846.32,371.01],[846.32,371.01],[846.32,371.01],[846.31,371.02],[846.3,371.01],[846.29,371.02],[846.29,371.02],[846.27,371.02],[846.25,371.02],[846.25,371.02],[846.25,371.03],[846.25,371.03],[846.24,371.03],[846.24,371.03],[846.22,371.03],[846.21,371.03],[846.2,371.03],[846.19,371.02],[846.19,371.02],[846.18,371.02],[846.18,371.02],[846.18,371.02],[846.17,371.03],[846.16,371.04],[846.16,371.05],[846.15,371.06],[846.15,371.06],[846.15,371.06],[846.15,371.07],[846.15,371.07],[846.14,371.08],[846.14,371.08],[846.14,371.09],[846.14,371.09],[846.14,371.1],[846.13,371.11],[846.12,371.11],[846.12,371.12],[846.11,371.13],[846.1,371.14],[846.09,371.14],[846.09,371.15],[846.08,371.15],[846.08,371.15],[846.07,371.16],[846.07,371.16],[846.06,371.16],[846.05,371.16],[846.05,371.17],[846.04,371.17],[846.03,371.18],[846.02,371.18],[846.02,371.19],[846.01,371.19],[846,371.2],[846,371.2],[845.99,371.21],[845.99,371.21],[845.98,371.23],[845.97,371.23],[845.97,371.24],[845.96,371.24],[845.96,371.25],[845.96,371.25],[845.95,371.25],[845.94,371.26],[845.93,371.26],[845.92,371.26],[845.92,371.26],[845.92,371.28],[845.91,371.29],[845.91,371.3],[845.91,371.32],[845.9,371.33],[845.9,371.33],[845.9,371.34],[845.9,371.35],[845.89,371.35],[845.88,371.36],[845.87,371.37],[845.86,371.37],[845.85,371.38],[845.84,371.38],[845.84,371.38],[845.83,371.39],[845.82,371.4],[845.81,371.4],[845.8,371.4],[845.79,371.4],[845.77,371.4],[845.74,371.38],[845.74,371.38],[845.74,371.38],[845.73,371.39],[845.71,371.44],[845.71,371.46],[845.71,371.49],[845.71,371.49],[845.71,371.5],[845.7,371.5],[845.67,371.5],[845.66,371.5],[845.65,371.5],[845.65,371.5],[845.64,371.5],[845.64,371.5],[845.63,371.5],[845.63,371.5],[845.63,371.49],[845.63,371.49],[845.63,371.48],[845.63,371.47],[845.62,371.46],[845.62,371.45],[845.61,371.44],[845.61,371.43],[845.6,371.42],[845.6,371.41],[845.6,371.41],[845.6,371.39],[845.6,371.39],[845.6,371.39],[845.6,371.38],[845.6,371.38],[845.59,371.37],[845.59,371.37],[845.59,371.37],[845.58,371.36],[845.58,371.36],[845.57,371.36],[845.54,371.36],[845.53,371.36],[845.52,371.36],[845.51,371.35],[845.5,371.35],[845.49,371.35],[845.49,371.35],[845.47,371.34],[845.47,371.33],[845.47,371.33],[845.46,371.31],[845.44,371.28],[845.43,371.27],[845.42,371.26],[845.38,371.26],[845.37,371.26],[845.36,371.26],[845.35,371.25],[845.33,371.21],[845.33,371.21],[845.32,371.21],[845.32,371.22],[845.32,371.22],[845.32,371.22],[845.31,371.22],[845.31,371.22],[845.31,371.22],[845.3,371.21],[845.3,371.21],[845.3,371.21],[845.3,371.21],[845.29,371.21],[845.28,371.21],[845.28,371.21],[845.28,371.21],[845.27,371.21],[845.27,371.21],[845.26,371.21],[845.26,371.2],[845.22,371.2],[845.21,371.2],[845.21,371.2],[845.21,371.2],[845.2,371.2],[845.2,371.19],[845.2,371.19],[845.19,371.19],[845.19,371.19],[845.18,371.19],[845.18,371.19],[845.18,371.19],[845.17,371.19],[845.17,371.18],[845.16,371.17],[845.16,371.16],[845.15,371.15],[845.15,371.15],[845.15,371.15],[845.14,371.13],[845.13,371.13],[845.13,371.13],[845.12,371.13],[845.1,371.13],[845.1,371.13],[845.1,371.13],[845.08,371.12],[845.07,371.12],[845.07,371.12],[845.04,371.11],[845.04,371.11],[845.04,371.11],[845.03,371.12],[845.02,371.12],[845,371.13],[845,371.13],[845,371.13],[845,371.13],[844.99,371.13],[844.99,371.14],[844.99,371.14],[844.98,371.14],[844.98,371.14],[844.97,371.14],[844.97,371.15],[844.96,371.15],[844.96,371.15],[844.96,371.15],[844.96,371.16],[844.95,371.16],[844.95,371.16],[844.95,371.16],[844.95,371.17],[844.95,371.17],[844.94,371.17],[844.94,371.17],[844.93,371.16],[844.93,371.16],[844.93,371.17],[844.92,371.17],[844.92,371.17],[844.91,371.16],[844.9,371.16],[844.9,371.16],[844.9,371.16],[844.89,371.16],[844.88,371.16],[844.88,371.16],[844.86,371.17],[844.86,371.17],[844.85,371.17],[844.85,371.17],[844.85,371.18],[844.84,371.18],[844.84,371.18],[844.84,371.19],[844.84,371.19],[844.84,371.2],[844.83,371.21],[844.83,371.22],[844.83,371.22],[844.82,371.23],[844.81,371.26],[844.81,371.26],[844.81,371.27],[844.81,371.27],[844.78,371.31],[844.77,371.32],[844.76,371.32],[844.76,371.33],[844.75,371.33],[844.75,371.34],[844.72,371.36],[844.71,371.37],[844.67,371.4],[844.67,371.4],[844.67,371.4],[844.67,371.41],[844.66,371.41],[844.66,371.41],[844.66,371.41],[844.66,371.42],[844.66,371.42],[844.64,371.44],[844.63,371.44],[844.63,371.45],[844.61,371.47],[844.6,371.47],[844.59,371.49],[844.58,371.49],[844.58,371.5],[844.55,371.52],[844.53,371.54],[844.53,371.54],[844.51,371.56],[844.5,371.56],[844.49,371.58],[844.48,371.58],[844.46,371.61],[844.46,371.61],[844.45,371.61],[844.45,371.61],[844.43,371.62],[844.42,371.63],[844.41,371.63],[844.41,371.63],[844.39,371.64],[844.37,371.65],[844.37,371.65],[844.37,371.65],[844.37,371.65],[844.36,371.65],[844.36,371.66],[844.35,371.66],[844.35,371.66],[844.35,371.66],[844.34,371.66],[844.34,371.66],[844.33,371.66],[844.33,371.66],[844.32,371.66],[844.32,371.66],[844.31,371.67],[844.31,371.67],[844.3,371.68],[844.29,371.68],[844.27,371.7],[844.26,371.71],[844.25,371.72],[844.25,371.72],[844.24,371.72],[844.24,371.73],[844.23,371.73],[844.23,371.73],[844.22,371.73],[844.22,371.74],[844.22,371.74],[844.22,371.74],[844.22,371.74],[844.21,371.74],[844.21,371.74],[844.21,371.75],[844.21,371.75],[844.21,371.75],[844.21,371.75],[844.21,371.76],[844.2,371.76],[844.2,371.77],[844.2,371.77],[844.19,371.78],[844.19,371.78],[844.18,371.79],[844.18,371.79],[844.18,371.79],[844.17,371.79],[844.17,371.8],[844.17,371.8],[844.16,371.8],[844.16,371.8],[844.16,371.81],[844.15,371.81],[844.15,371.82],[844.14,371.83],[844.14,371.83],[844.14,371.84],[844.13,371.84],[844.13,371.84],[844.12,371.85],[844.12,371.86],[844.12,371.86],[844.12,371.86],[844.12,371.87],[844.12,371.87],[844.11,371.88],[844.11,371.88],[844.1,371.89],[844.1,371.89],[844.1,371.89],[844.1,371.89],[844.09,371.89],[844.09,371.9],[844.09,371.9],[844.09,371.9],[844.09,371.9],[844.09,371.91],[844.09,371.91],[844.08,371.92],[844.08,371.92],[844.08,371.93],[844.08,371.93],[844.08,371.94],[844.08,371.95],[844.08,371.95],[844.08,371.95],[844.08,371.96],[844.08,371.96],[844.08,371.96],[844.08,371.97],[844.08,371.98],[844.07,371.99],[844.07,372],[844.07,372],[844.07,372],[844.08,372],[844.08,372.01],[844.08,372.01],[844.1,372.02],[844.1,372.03],[844.11,372.04],[844.11,372.05],[844.12,372.05],[844.12,372.05],[844.12,372.05],[844.13,372.07],[844.13,372.07],[844.14,372.07],[844.14,372.08],[844.14,372.09],[844.14,372.09],[844.14,372.1],[844.14,372.11],[844.15,372.12],[844.15,372.12],[844.16,372.13],[844.16,372.14],[844.16,372.14],[844.17,372.14],[844.17,372.15],[844.17,372.19],[844.17,372.24],[844.17,372.24],[844.18,372.25],[844.18,372.26],[844.18,372.27],[844.18,372.29],[844.18,372.29],[844.18,372.3],[844.18,372.32],[844.18,372.32],[844.18,372.35],[844.18,372.36],[844.18,372.38],[844.18,372.39],[844.18,372.4],[844.18,372.42],[844.18,372.44],[844.18,372.46],[844.18,372.5],[844.18,372.51],[844.18,372.52],[844.18,372.54],[844.18,372.55],[844.19,372.56],[844.19,372.56],[844.19,372.56],[844.19,372.56],[844.19,372.57],[844.19,372.58],[844.18,372.59],[844.18,372.6],[844.18,372.61],[844.17,372.65],[844.17,372.66],[844.16,372.68],[844.16,372.7],[844.16,372.71],[844.15,372.74],[844.15,372.74],[844.15,372.75],[844.14,372.77],[844.14,372.79],[844.13,372.81],[844.13,372.82],[844.13,372.84],[844.13,372.84],[844.13,372.84],[844.12,372.86],[844.12,372.87],[844.12,372.88],[844.11,372.89],[844.11,372.9],[844.11,372.91],[844.1,372.93],[844.1,372.94],[844.09,372.98],[844.09,372.98],[844.09,372.98],[844.08,373],[844.08,373],[844.08,373.03],[844.07,373.03],[844.07,373.04],[844.07,373.04],[844.07,373.05],[844.07,373.05],[844.06,373.07],[844.05,373.08],[844.05,373.08],[844.05,373.09],[844.05,373.1],[844.05,373.1],[844.04,373.11],[844.04,373.12],[844.04,373.12],[844.04,373.13],[844.03,373.13],[844.03,373.14],[844.03,373.14],[844.03,373.14],[844.03,373.15],[844.03,373.15],[844.02,373.15],[844.02,373.16],[844.02,373.17],[844.01,373.19],[844.01,373.19],[844.01,373.2],[844.01,373.2],[844.01,373.21],[844.01,373.21],[844.01,373.23],[844.01,373.24],[844.01,373.25],[844.01,373.26],[844,373.27],[844,373.27],[844,373.28],[844,373.28],[844,373.29],[844,373.29],[844.01,373.29],[844.01,373.29],[844.01,373.3],[844.01,373.31],[844.02,373.32],[844.02,373.33],[844.02,373.33],[844.02,373.33],[844.02,373.34],[844.02,373.34],[844.02,373.35],[844.02,373.35],[844.02,373.35],[844.01,373.35],[844.01,373.35],[844.01,373.35],[844.01,373.35],[844.01,373.36],[844.01,373.36],[844,373.36],[844,373.36],[844,373.36],[843.99,373.36],[843.99,373.37],[843.99,373.37],[843.99,373.37],[843.99,373.37],[843.99,373.37],[843.98,373.38],[843.98,373.38],[843.98,373.38],[843.98,373.38],[843.98,373.39],[843.98,373.39],[843.98,373.39],[843.98,373.39],[843.98,373.39],[843.98,373.39],[843.98,373.4],[843.98,373.4],[843.98,373.4],[843.98,373.41],[843.98,373.41],[843.98,373.41],[843.98,373.42],[843.98,373.42],[843.98,373.42],[843.98,373.43],[843.98,373.43],[843.98,373.43],[843.97,373.45],[843.97,373.46],[843.97,373.47],[843.97,373.48],[843.96,373.49],[843.96,373.49],[843.96,373.5],[843.96,373.51],[843.96,373.51],[843.95,373.54],[843.94,373.56],[843.94,373.57],[843.94,373.57],[843.94,373.57],[843.94,373.57],[843.94,373.58],[843.93,373.58],[843.93,373.59],[843.92,373.59],[843.91,373.6],[843.91,373.61],[843.9,373.62],[843.89,373.64],[843.89,373.65],[843.88,373.66],[843.88,373.66],[843.88,373.66],[843.87,373.67],[843.87,373.67],[843.87,373.68],[843.85,373.69],[843.85,373.69],[843.85,373.7],[843.84,373.71],[843.83,373.72],[843.83,373.72],[843.82,373.74],[843.81,373.74],[843.8,373.75],[843.79,373.76],[843.78,373.77],[843.77,373.77],[843.77,373.77],[843.76,373.78],[843.75,373.79],[843.75,373.79],[843.74,373.79],[843.74,373.8],[843.72,373.81],[843.71,373.81],[843.69,373.82],[843.68,373.83],[843.67,373.84],[843.65,373.85],[843.65,373.85],[843.65,373.85],[843.63,373.87],[843.63,373.87],[843.63,373.87],[843.62,373.88],[843.61,373.88],[843.61,373.88],[843.61,373.89],[843.6,373.89],[843.58,373.89],[843.57,373.9],[843.56,373.9],[843.56,373.9],[843.56,373.91],[843.56,373.91],[843.55,373.91],[843.55,373.91],[843.54,373.92],[843.53,373.94],[843.53,373.95],[843.52,373.95],[843.52,373.96],[843.51,373.97],[843.51,373.98],[843.5,373.99],[843.5,374],[843.5,374],[843.5,374],[843.49,374.01],[843.49,374.02],[843.49,374.02],[843.49,374.04],[843.49,374.04],[843.49,374.05],[843.48,374.06],[843.48,374.06],[843.47,374.07],[843.47,374.07],[843.47,374.07],[843.47,374.08],[843.46,374.08],[843.46,374.08],[843.46,374.09],[843.45,374.1],[843.45,374.12],[843.44,374.13],[843.44,374.13],[843.44,374.14],[843.43,374.15],[843.43,374.16],[843.42,374.16],[843.42,374.17],[843.42,374.17],[843.42,374.18],[843.42,374.18],[843.42,374.18],[843.41,374.19],[843.41,374.2],[843.41,374.2],[843.4,374.21],[843.4,374.22],[843.4,374.22],[843.39,374.23],[843.39,374.24],[843.39,374.24],[843.39,374.25],[843.39,374.26],[843.39,374.26],[843.38,374.27],[843.38,374.27],[843.38,374.27],[843.38,374.28],[843.38,374.29],[843.37,374.3],[843.37,374.31],[843.37,374.31],[843.37,374.31],[843.37,374.32],[843.36,374.34],[843.35,374.35],[843.35,374.35],[843.35,374.35],[843.34,374.36],[843.34,374.36],[843.34,374.36],[843.34,374.36],[843.34,374.37],[843.34,374.37],[843.33,374.38],[843.33,374.38],[843.33,374.38],[843.33,374.38],[843.32,374.39],[843.32,374.41],[843.31,374.41],[843.31,374.42],[843.31,374.42],[843.31,374.43],[843.3,374.45],[843.28,374.48],[843.28,374.49],[843.28,374.49],[843.28,374.49],[843.27,374.51],[843.27,374.53],[843.27,374.54],[843.27,374.54],[843.27,374.55],[843.28,374.55],[843.28,374.56],[843.29,374.57],[843.3,374.58],[843.3,374.59],[843.3,374.59],[843.3,374.6],[843.3,374.6],[843.29,374.61],[843.29,374.61],[843.29,374.62],[843.29,374.62],[843.29,374.63],[843.29,374.63],[843.3,374.66],[843.3,374.68],[843.31,374.71],[843.31,374.71],[843.31,374.72],[843.32,374.72],[843.33,374.74],[843.33,374.74],[843.34,374.75],[843.34,374.76],[843.34,374.76],[843.34,374.77],[843.34,374.77],[843.35,374.8],[843.36,374.82],[843.36,374.82],[843.36,374.83],[843.36,374.83],[843.37,374.84],[843.37,374.85],[843.37,374.85],[843.38,374.86],[843.38,374.89],[843.38,374.9],[843.38,374.9],[843.38,374.91],[843.39,374.91],[843.39,374.93],[843.39,374.94],[843.39,374.95],[843.39,374.95],[843.39,374.95],[843.39,374.96],[843.39,374.96],[843.39,374.97],[843.4,374.97],[843.4,374.98],[843.4,374.98],[843.4,374.99],[843.4,374.99],[843.4,374.99],[843.41,375],[843.41,375],[843.42,375.01],[843.42,375.03],[843.43,375.03],[843.43,375.04],[843.43,375.08],[843.43,375.11],[843.43,375.13],[843.43,375.13],[843.43,375.14],[843.44,375.17],[843.44,375.18],[843.45,375.19],[843.45,375.19],[843.45,375.21],[843.46,375.23],[843.46,375.24],[843.46,375.25],[843.46,375.25],[843.46,375.28],[843.46,375.28],[843.46,375.28],[843.45,375.3],[843.45,375.3],[843.45,375.31],[843.45,375.31],[843.45,375.32],[843.44,375.36],[843.44,375.36],[843.44,375.37],[843.44,375.38],[843.44,375.39],[843.44,375.4],[843.45,375.4],[843.45,375.41],[843.45,375.41],[843.46,375.41],[843.47,375.43],[843.47,375.43],[843.48,375.44],[843.48,375.44],[843.48,375.44],[843.48,375.45],[843.48,375.45],[843.47,375.48],[843.47,375.49],[843.46,375.52],[843.46,375.53],[843.45,375.55],[843.45,375.56],[843.45,375.56],[843.45,375.57],[843.45,375.57],[843.44,375.58],[843.44,375.58],[843.43,375.59],[843.43,375.6],[843.43,375.6],[843.43,375.6],[843.42,375.6],[843.42,375.6],[843.42,375.61],[843.42,375.61],[843.42,375.62],[843.42,375.62],[843.42,375.62],[843.42,375.63],[843.42,375.64],[843.43,375.64],[843.43,375.65],[843.43,375.65],[843.43,375.66],[843.43,375.66],[843.43,375.67],[843.43,375.68],[843.43,375.7],[843.44,375.74],[843.44,375.76],[843.44,375.8],[843.44,375.8],[843.45,375.82],[843.45,375.83],[843.45,375.85],[843.45,375.85],[843.45,375.86],[843.45,375.86],[843.45,375.87],[843.46,375.88],[843.46,375.88],[843.47,375.95],[843.47,375.98],[843.48,376.02],[843.49,376.05],[843.49,376.05],[843.5,376.08],[843.5,376.09],[843.5,376.09],[843.5,376.09],[843.5,376.1],[843.5,376.11],[843.5,376.12],[843.5,376.13],[843.51,376.14],[843.51,376.16],[843.51,376.16],[843.51,376.19],[843.51,376.2],[843.51,376.2],[843.51,376.21],[843.52,376.22],[843.52,376.24],[843.53,376.27],[843.55,376.31],[843.56,376.32],[843.56,376.33],[843.56,376.33],[843.56,376.34],[843.57,376.35],[843.57,376.38],[843.58,376.39],[843.58,376.4],[843.58,376.4],[843.61,376.46],[843.62,376.47],[843.62,376.47],[843.62,376.48],[843.63,376.49],[843.65,376.53],[843.66,376.55],[843.66,376.55],[843.67,376.57],[843.68,376.6],[843.69,376.62],[843.7,376.64],[843.71,376.65],[843.71,376.66],[843.73,376.69],[843.73,376.7],[843.74,376.71],[843.74,376.72],[843.75,376.73],[843.75,376.73],[843.76,376.74],[843.76,376.74],[843.76,376.74],[843.76,376.74],[843.77,376.75],[843.77,376.76],[843.77,376.76],[843.77,376.76],[843.78,376.77],[843.79,376.79],[843.8,376.8],[843.81,376.82],[843.81,376.82],[843.81,376.82],[843.82,376.83],[843.82,376.83],[843.82,376.83],[843.82,376.83],[843.81,376.83],[843.8,376.84],[843.8,376.84],[843.79,376.85],[843.79,376.85],[843.78,376.85],[843.77,376.85],[843.76,376.86],[843.76,376.86],[843.75,376.86],[843.75,376.86],[843.74,376.87],[843.74,376.88],[843.73,376.88],[843.73,376.88],[843.73,376.88],[843.73,376.88],[843.73,376.88],[843.73,376.88],[843.73,376.88],[843.73,376.89],[843.72,376.89],[843.72,376.89],[843.72,376.89],[843.72,376.89],[843.72,376.89],[843.72,376.9],[843.72,376.9],[843.72,376.9],[843.72,376.91],[843.72,376.91],[843.72,376.92],[843.72,376.93],[843.72,376.94],[843.72,376.95],[843.72,376.96],[843.72,376.97],[843.72,376.98],[843.72,376.99],[843.72,376.99],[843.72,377],[843.72,377.01],[843.72,377.01],[843.73,377.02],[843.73,377.02],[843.73,377.02],[843.73,377.02],[843.73,377.02],[843.74,377.02],[843.74,377.02],[843.74,377.02],[843.74,377.02],[843.75,377.02],[843.75,377.02],[843.75,377.02],[843.76,377.02],[843.76,377.02],[843.76,377.02],[843.76,377.02],[843.76,377.02],[843.77,377.02],[843.77,377.03],[843.77,377.03],[843.77,377.03],[843.77,377.03],[843.78,377.03],[843.78,377.03],[843.78,377.03],[843.78,377.03],[843.79,377.04],[843.79,377.04],[843.79,377.04],[843.79,377.04],[843.79,377.04],[843.8,377.04],[843.8,377.04],[843.8,377.04],[843.8,377.04],[843.8,377.04],[843.8,377.05],[843.8,377.05],[843.8,377.05],[843.8,377.05],[843.81,377.06],[843.81,377.06],[843.81,377.06],[843.81,377.07],[843.81,377.07],[843.81,377.07],[843.81,377.09],[843.82,377.1],[843.83,377.12],[843.83,377.12],[843.83,377.13],[843.83,377.14],[843.84,377.14],[843.84,377.15],[843.84,377.16],[843.84,377.16],[843.84,377.16],[843.84,377.17],[843.84,377.18],[843.84,377.2],[843.85,377.21],[843.85,377.22],[843.85,377.22],[843.85,377.23],[843.85,377.23],[843.85,377.24],[843.85,377.24],[843.86,377.24],[843.86,377.24],[843.86,377.25],[843.86,377.25],[843.86,377.25],[843.86,377.26],[843.86,377.26],[843.86,377.27],[843.87,377.28],[843.87,377.29],[843.87,377.3],[843.88,377.31],[843.88,377.31],[843.88,377.32],[843.89,377.33],[843.89,377.33],[843.89,377.34],[843.89,377.35],[843.89,377.36],[843.89,377.37],[843.9,377.39],[843.9,377.41],[843.91,377.43],[843.91,377.44],[843.91,377.45],[843.92,377.47],[843.92,377.48],[843.92,377.49],[843.92,377.5],[843.93,377.51],[843.93,377.53],[843.93,377.53],[843.94,377.54],[843.94,377.54],[843.94,377.55],[843.94,377.56],[843.94,377.56],[843.94,377.57],[843.94,377.57],[843.94,377.57],[843.94,377.58],[843.95,377.59],[843.95,377.6],[843.96,377.62],[843.96,377.62],[843.96,377.63],[843.96,377.63],[843.96,377.63],[843.96,377.64],[843.96,377.65],[843.96,377.65],[843.96,377.66],[843.96,377.67],[843.96,377.67],[843.97,377.68],[843.97,377.68],[843.96,377.69],[843.96,377.69],[843.96,377.7],[843.96,377.7],[843.96,377.71],[843.96,377.72],[843.96,377.73],[843.96,377.74],[843.96,377.74],[843.96,377.75],[843.96,377.75],[843.96,377.75],[843.96,377.76],[843.96,377.78],[843.96,377.78],[843.96,377.79],[843.96,377.79],[843.96,377.8],[843.96,377.8],[843.96,377.8],[843.95,377.81],[843.95,377.81],[843.94,377.82],[843.94,377.82],[843.94,377.82],[843.94,377.83],[843.94,377.84],[843.94,377.84],[843.94,377.85],[843.94,377.85],[843.94,377.86],[843.94,377.86],[843.94,377.87],[843.94,377.88],[843.94,377.89],[843.94,377.89],[843.93,377.9],[843.93,377.91],[843.93,377.91],[843.93,377.91],[843.93,377.92],[843.93,377.92],[843.93,377.92],[843.93,377.93],[843.92,377.93],[843.92,377.93],[843.92,377.93],[843.93,377.95],[843.93,377.96],[843.93,377.96],[843.93,377.97],[843.94,377.98],[843.94,377.98],[843.94,377.98],[843.94,377.99],[843.94,377.99],[843.94,378],[843.94,378.01],[843.95,378.02],[843.96,378.04],[843.96,378.04],[843.97,378.05],[843.98,378.07],[843.98,378.07],[843.99,378.08],[843.99,378.08],[843.99,378.08],[843.99,378.08],[843.99,378.09],[843.99,378.09],[844,378.1],[844,378.12],[844.01,378.13],[844.01,378.14],[844.01,378.14],[844.01,378.14],[844.01,378.15],[844.01,378.16],[844.01,378.16],[844.01,378.16],[844.03,378.16],[844.03,378.16],[844.04,378.15],[844.05,378.14],[844.06,378.14],[844.06,378.14],[844.07,378.14],[844.08,378.13],[844.09,378.13],[844.09,378.13],[844.09,378.13],[844.1,378.12],[844.11,378.12],[844.12,378.11],[844.14,378.11],[844.15,378.1],[844.16,378.1],[844.17,378.09],[844.17,378.09],[844.19,378.08],[844.2,378.07],[844.22,378.07],[844.22,378.07],[844.22,378.07],[844.22,378.07],[844.22,378.07],[844.23,378.07],[844.23,378.07],[844.23,378.07],[844.23,378.07],[844.23,378.06],[844.24,378.06],[844.24,378.06],[844.26,378.06],[844.3,378.04],[844.35,378.03],[844.38,378.03],[844.38,378.09],[844.35,378.18],[844.35,378.19],[844.37,378.22],[844.38,378.26],[844.39,378.3],[844.4,378.32],[844.45,378.38],[844.48,378.42],[844.48,378.46],[844.5,378.53],[844.51,378.55],[844.52,378.57],[844.52,378.6],[844.52,378.61],[844.5,378.63],[844.5,378.64],[844.49,378.65],[844.47,378.7],[844.45,378.72],[844.44,378.75],[844.43,378.76],[844.38,378.78],[844.35,378.81],[844.33,378.83],[844.32,378.84],[844.31,378.85],[844.32,378.87],[844.33,378.89],[844.34,378.91],[844.34,378.93],[844.36,378.94],[844.36,378.96],[844.36,378.99],[844.38,379.01],[844.39,379.02],[844.4,379.03],[844.41,379.05],[844.43,379.07],[844.44,379.09],[844.44,379.13],[844.45,379.14],[844.45,379.17],[844.49,379.24],[844.5,379.26],[844.51,379.27],[844.5,379.3],[844.51,379.33],[844.52,379.34],[844.53,379.36],[844.57,379.44],[844.57,379.46],[844.58,379.49],[844.59,379.52],[844.57,379.55],[844.58,379.58],[844.59,379.63],[844.6,379.67],[844.6,379.72],[844.59,379.77],[844.59,379.8],[844.6,379.87],[844.6,379.93],[844.6,379.95],[844.65,380.03],[844.66,380.05],[844.69,380.15],[844.69,380.16],[844.71,380.18],[844.72,380.22],[844.74,380.29],[844.74,380.3],[844.72,380.33],[844.72,380.36],[844.75,380.42],[844.75,380.44],[844.74,380.46],[844.73,380.48],[844.73,380.5],[844.71,380.51],[844.71,380.52],[844.7,380.54],[844.7,380.55],[844.7,380.56],[844.69,380.56],[844.67,380.59],[844.65,380.59],[844.65,380.61],[844.65,380.63],[844.65,380.64],[844.64,380.64],[844.63,380.67],[844.62,380.68],[844.6,380.69],[844.59,380.7],[844.57,380.74],[844.57,380.75],[844.57,380.76],[844.52,380.8],[844.48,380.83],[844.48,380.84],[844.47,380.87],[844.46,380.91],[844.44,380.93],[844.44,380.94],[844.44,380.97],[844.44,380.99],[844.43,381.01],[844.42,381.03],[844.4,381.06],[844.39,381.07],[844.37,381.12],[844.37,381.13],[844.36,381.17],[844.36,381.17],[844.37,381.19],[844.36,381.21],[844.35,381.23],[844.34,381.25],[844.34,381.26],[844.33,381.27],[844.32,381.28],[844.31,381.3],[844.31,381.32],[844.3,381.34],[844.29,381.35],[844.29,381.36],[844.28,381.37],[844.28,381.38],[844.27,381.39],[844.24,381.42],[844.24,381.42],[844.24,381.43],[844.24,381.43],[844.23,381.44],[844.23,381.45],[844.22,381.45],[844.21,381.46],[844.2,381.47],[844.2,381.48],[844.18,381.5],[844.17,381.5],[844.16,381.5],[844.15,381.5],[844.13,381.51],[844.13,381.52],[844.12,381.52],[844.1,381.53],[844.09,381.54],[844.06,381.55],[844.06,381.56],[844.05,381.56],[844.04,381.57],[844.03,381.58],[844.03,381.59],[843.98,381.62],[843.98,381.64],[843.97,381.64],[843.97,381.65],[843.95,381.66],[843.93,381.69],[843.92,381.7],[843.92,381.72],[843.89,381.77],[843.87,381.8],[843.86,381.79],[843.82,381.88],[843.79,382],[843.79,382.02],[843.78,382.04],[843.78,382.04],[843.78,382.08],[843.77,382.08],[843.78,382.1],[843.77,382.1],[843.76,382.12],[843.74,382.14],[843.74,382.15],[843.72,382.15],[843.71,382.17],[843.69,382.17],[843.69,382.17],[843.68,382.19],[843.66,382.19],[843.61,382.22],[843.61,382.23],[843.6,382.24],[843.59,382.26],[843.58,382.27],[843.49,382.33],[843.48,382.33],[843.46,382.35],[843.45,382.35],[843.43,382.34],[843.42,382.35],[843.41,382.36],[843.39,382.36],[843.38,382.36],[843.37,382.36],[843.37,382.36],[843.35,382.36],[843.35,382.37],[843.35,382.37],[843.34,382.36],[843.34,382.36],[843.33,382.36],[843.33,382.36],[843.33,382.35],[843.32,382.33],[843.32,382.32],[843.31,382.32],[843.31,382.31],[843.3,382.31],[843.3,382.31],[843.29,382.31],[843.28,382.3],[843.28,382.3],[843.27,382.3],[843.26,382.3],[843.25,382.3],[843.25,382.3],[843.24,382.3],[843.24,382.3],[843.24,382.3],[843.23,382.31],[843.23,382.31],[843.23,382.31],[843.22,382.31],[843.21,382.31],[843.2,382.31],[843.19,382.31],[843.18,382.32],[843.18,382.32],[843.17,382.32],[843.17,382.32],[843.16,382.32],[843.15,382.33],[843.15,382.33],[843.14,382.34],[843.14,382.34],[843.12,382.34],[843.12,382.34],[843.11,382.34],[843.1,382.34],[843.1,382.34],[843.09,382.35],[843.09,382.34],[843.09,382.34],[843.08,382.34],[843.07,382.34],[843.06,382.34],[843.04,382.35],[843.03,382.35],[843.02,382.35],[843.01,382.35],[843.01,382.35],[842.99,382.35],[842.98,382.35],[842.97,382.35],[842.97,382.35],[842.92,382.37],[842.91,382.37],[842.9,382.38],[842.87,382.4],[842.84,382.44],[842.81,382.48],[842.76,382.52],[842.7,382.57],[842.61,382.62],[842.51,382.68],[842.42,382.74],[842.32,382.8],[842.28,382.84],[842.21,382.98],[842.21,383.02],[842.2,383.04],[842.15,383.12],[842.12,383.16],[842.11,383.17],[842.11,383.17],[842.11,383.17],[842.11,383.18],[842.09,383.18],[842.08,383.18],[842.08,383.18],[842.08,383.19],[842.07,383.19],[842.06,383.19],[842.05,383.19],[842.04,383.19],[842.02,383.19],[842.02,383.19],[842,383.19],[842,383.19],[842,383.19],[841.99,383.19],[841.99,383.19],[841.99,383.2],[841.95,383.22],[841.94,383.23],[841.92,383.24],[841.9,383.26],[841.9,383.26],[841.87,383.28],[841.86,383.29],[841.86,383.29],[841.83,383.32],[841.8,383.35],[841.79,383.36],[841.79,383.36],[841.79,383.36],[841.78,383.37],[841.77,383.38],[841.76,383.4],[841.76,383.4],[841.76,383.4],[841.74,383.41],[841.72,383.43],[841.72,383.43],[841.7,383.45],[841.69,383.45],[841.67,383.47],[841.67,383.47],[841.66,383.48],[841.66,383.48],[841.65,383.48],[841.65,383.48],[841.65,383.49],[841.65,383.49],[841.63,383.54],[841.62,383.56],[841.6,383.59],[841.6,383.59],[841.6,383.6],[841.58,383.61],[841.56,383.63],[841.55,383.64],[841.54,383.65],[841.54,383.65],[841.53,383.66],[841.53,383.66],[841.53,383.66],[841.53,383.67],[841.53,383.67],[841.52,383.67],[841.52,383.68],[841.52,383.68],[841.52,383.69],[841.52,383.69],[841.52,383.7],[841.51,383.7],[841.51,383.71],[841.51,383.72],[841.51,383.73],[841.51,383.73],[841.51,383.74],[841.52,383.74],[841.52,383.76],[841.52,383.77],[841.53,383.78],[841.53,383.79],[841.53,383.79],[841.53,383.8],[841.53,383.8],[841.53,383.81],[841.51,383.85],[841.51,383.87],[841.5,383.89],[841.5,383.92],[841.5,383.92],[841.49,383.93],[841.49,383.95],[841.49,383.97],[841.49,383.97],[841.49,383.98],[841.49,383.98],[841.49,383.98],[841.48,383.99],[841.48,383.99],[841.48,383.99],[841.47,383.99],[841.45,384],[841.44,384],[841.44,384.01],[841.43,384.01],[841.43,384.01],[841.43,384.02],[841.43,384.02],[841.43,384.02],[841.42,384.03],[841.42,384.03],[841.42,384.03],[841.42,384.04],[841.42,384.06],[841.42,384.09],[841.43,384.1],[841.43,384.13],[841.47,384.25],[841.47,384.26],[841.47,384.28],[841.46,384.29],[841.46,384.31],[841.46,384.32],[841.46,384.32],[841.45,384.34],[841.45,384.36],[841.45,384.37],[841.44,384.42],[841.43,384.45],[841.42,384.47],[841.42,384.5],[841.42,384.52],[841.41,384.54],[841.41,384.55],[841.4,384.56],[841.39,384.57],[841.38,384.6],[841.37,384.61],[841.37,384.62],[841.36,384.63],[841.34,384.65],[841.34,384.65],[841.33,384.67],[841.33,384.67],[841.33,384.68],[841.33,384.68],[841.33,384.69],[841.33,384.73],[841.32,384.74],[841.32,384.74],[841.24,384.8],[841.23,384.81],[841.23,384.81],[841.22,384.88],[841.23,384.94],[841.23,384.98],[841.22,384.99],[841.23,385.02],[841.22,385.03],[841.21,385.05],[841.21,385.06],[841.21,385.07],[841.22,385.1],[841.22,385.1],[841.22,385.1],[841.22,385.11],[841.22,385.11],[841.22,385.11],[841.22,385.12],[841.22,385.12],[841.21,385.12],[841.21,385.13],[841.21,385.13],[841.2,385.14],[841.2,385.14],[841.2,385.15],[841.2,385.15],[841.2,385.15],[841.2,385.15],[841.2,385.16],[841.2,385.16],[841.2,385.16],[841.2,385.17],[841.2,385.17],[841.2,385.18],[841.2,385.19],[841.2,385.2],[841.2,385.2],[841.2,385.2],[841.2,385.2],[841.2,385.2],[841.2,385.21],[841.2,385.21],[841.2,385.21],[841.19,385.22],[841.19,385.22],[841.19,385.23],[841.19,385.24],[841.18,385.24],[841.18,385.24],[841.18,385.25],[841.18,385.25],[841.18,385.26],[841.18,385.27],[841.18,385.28],[841.18,385.28],[841.17,385.3],[841.17,385.31],[841.17,385.32],[841.17,385.33],[841.16,385.35],[841.16,385.35],[841.16,385.35],[841.16,385.36],[841.16,385.36],[841.16,385.37],[841.16,385.37],[841.16,385.37],[841.15,385.38],[841.15,385.38],[841.15,385.39],[841.15,385.39],[841.15,385.39],[841.15,385.39],[841.15,385.39],[841.15,385.4],[841.15,385.4],[841.15,385.4],[841.14,385.41],[841.14,385.42],[841.14,385.42],[841.14,385.43],[841.14,385.44],[841.14,385.45],[841.14,385.45],[841.14,385.45],[841.14,385.46],[841.14,385.46],[841.14,385.47],[841.14,385.47],[841.14,385.48],[841.14,385.48],[841.14,385.48],[841.14,385.48],[841.14,385.49],[841.14,385.49],[841.14,385.5],[841.14,385.51],[841.13,385.53],[841.13,385.53],[841.13,385.54],[841.13,385.55],[841.13,385.56],[841.12,385.57],[841.12,385.58],[841.12,385.59],[841.12,385.6],[841.12,385.6],[841.12,385.61],[841.12,385.61],[841.12,385.61],[841.12,385.62],[841.12,385.62],[841.12,385.63],[841.12,385.64],[841.12,385.64],[841.12,385.65],[841.12,385.65],[841.12,385.65],[841.12,385.66],[841.12,385.66],[841.12,385.66],[841.11,385.66],[841.11,385.66],[841.11,385.67],[841.11,385.67],[841.11,385.67],[841.1,385.67],[841.1,385.68],[841.09,385.68],[841.09,385.69],[841.08,385.69],[841.08,385.69],[841.08,385.69],[841.07,385.7],[841.07,385.7],[841.06,385.7],[841.06,385.7],[841.05,385.7],[841.03,385.7],[841.02,385.7],[841,385.7],[840.99,385.7],[840.99,385.7],[840.99,385.7],[840.98,385.7],[840.98,385.71],[840.97,385.71],[840.96,385.71],[840.96,385.71],[840.96,385.71],[840.96,385.71],[840.96,385.71],[840.95,385.72],[840.95,385.72],[840.95,385.73],[840.94,385.73],[840.94,385.74],[840.93,385.74],[840.93,385.74],[840.93,385.74],[840.93,385.74],[840.93,385.74],[840.92,385.75],[840.92,385.75],[840.92,385.75],[840.91,385.75],[840.89,385.75],[840.89,385.75],[840.88,385.75],[840.88,385.75],[840.88,385.75],[840.88,385.75],[840.87,385.75],[840.87,385.76],[840.87,385.76],[840.87,385.76],[840.87,385.76],[840.87,385.76],[840.87,385.76],[840.87,385.76],[840.86,385.77],[840.86,385.77],[840.86,385.77],[840.86,385.77],[840.86,385.77],[840.86,385.78],[840.86,385.78],[840.86,385.78],[840.87,385.8],[840.87,385.81],[840.87,385.81],[840.87,385.82],[840.87,385.82],[840.87,385.82],[840.87,385.82],[840.87,385.83],[840.87,385.83],[840.87,385.83],[840.87,385.83],[840.87,385.84],[840.86,385.84],[840.86,385.84],[840.86,385.85],[840.86,385.85],[840.86,385.85],[840.85,385.85],[840.85,385.85],[840.85,385.86],[840.85,385.86],[840.85,385.86],[840.85,385.86],[840.85,385.88],[840.85,385.88],[840.85,385.88],[840.85,385.88],[840.85,385.88],[840.85,385.89],[840.85,385.89],[840.85,385.89],[840.84,385.89],[840.84,385.89],[840.84,385.89],[840.84,385.89],[840.84,385.9],[840.83,385.9],[840.82,385.9],[840.82,385.9],[840.82,385.9],[840.82,385.9],[840.82,385.9],[840.81,385.9],[840.81,385.91],[840.81,385.91],[840.81,385.91],[840.81,385.91],[840.81,385.91],[840.81,385.91],[840.81,385.91],[840.81,385.92],[840.81,385.92],[840.81,385.92],[840.81,385.94],[840.81,385.94],[840.81,385.95],[840.81,385.95],[840.81,385.95],[840.81,385.95],[840.81,385.96],[840.81,385.96],[840.81,385.96],[840.81,385.96],[840.8,385.97],[840.8,385.97],[840.8,385.97],[840.8,385.97],[840.8,385.97],[840.8,385.97],[840.79,385.97],[840.76,385.99],[840.75,385.99],[840.75,385.99],[840.75,385.99],[840.75,385.99],[840.74,385.99],[840.74,386],[840.74,386],[840.73,386.01],[840.73,386.01],[840.72,386.02],[840.72,386.02],[840.72,386.02],[840.72,386.02],[840.72,386.03],[840.72,386.03],[840.72,386.03],[840.72,386.03],[840.72,386.03],[840.72,386.04],[840.72,386.04],[840.72,386.05],[840.72,386.05],[840.72,386.06],[840.72,386.06],[840.72,386.06],[840.72,386.06],[840.72,386.06],[840.72,386.07],[840.72,386.07],[840.72,386.07],[840.71,386.08],[840.71,386.09],[840.7,386.11],[840.7,386.12],[840.69,386.14],[840.69,386.14],[840.69,386.15],[840.68,386.15],[840.68,386.16],[840.68,386.16],[840.68,386.16],[840.68,386.16],[840.68,386.16],[840.67,386.17],[840.67,386.17],[840.66,386.18],[840.66,386.18],[840.65,386.19],[840.63,386.2],[840.63,386.21],[840.63,386.21],[840.62,386.21],[840.62,386.21],[840.62,386.21],[840.62,386.22],[840.62,386.23],[840.62,386.23],[840.61,386.24],[840.61,386.25],[840.61,386.26],[840.61,386.26],[840.61,386.26],[840.6,386.26],[840.6,386.27],[840.59,386.28],[840.59,386.28],[840.59,386.28],[840.58,386.28],[840.58,386.29],[840.58,386.29],[840.58,386.29],[840.58,386.3],[840.58,386.3],[840.58,386.31],[840.58,386.31],[840.58,386.31],[840.57,386.32],[840.57,386.32],[840.57,386.32],[840.57,386.33],[840.56,386.33],[840.55,386.34],[840.54,386.35],[840.54,386.35],[840.54,386.35],[840.54,386.35],[840.54,386.35],[840.53,386.36],[840.53,386.37],[840.53,386.37],[840.53,386.37],[840.53,386.38],[840.52,386.38],[840.52,386.39],[840.52,386.39],[840.52,386.39],[840.51,386.39],[840.51,386.39],[840.51,386.4],[840.51,386.4],[840.51,386.4],[840.51,386.4],[840.51,386.41],[840.51,386.41],[840.51,386.41],[840.52,386.42],[840.53,386.43],[840.53,386.43],[840.53,386.43],[840.53,386.44],[840.53,386.44],[840.53,386.44],[840.53,386.44],[840.53,386.45],[840.53,386.45],[840.53,386.45],[840.53,386.46],[840.53,386.46],[840.52,386.47],[840.52,386.47],[840.52,386.48],[840.52,386.49],[840.51,386.5],[840.51,386.5],[840.51,386.5],[840.51,386.51],[840.51,386.51],[840.51,386.51],[840.51,386.52],[840.5,386.52],[840.5,386.52],[840.5,386.53],[840.5,386.53],[840.5,386.53],[840.5,386.54],[840.5,386.54],[840.5,386.54],[840.5,386.54],[840.5,386.54],[840.5,386.55],[840.5,386.56],[840.5,386.56],[840.5,386.59],[840.51,386.6],[840.51,386.61],[840.51,386.61],[840.51,386.61],[840.51,386.61],[840.51,386.61],[840.51,386.61],[840.51,386.61],[840.52,386.64],[840.52,386.67],[840.53,386.68],[840.53,386.68],[840.53,386.68],[840.53,386.68],[840.53,386.69],[840.53,386.69],[840.53,386.69],[840.53,386.69],[840.53,386.69],[840.53,386.69],[840.53,386.7],[840.52,386.7],[840.52,386.7],[840.52,386.7],[840.52,386.7],[840.52,386.71],[840.52,386.71],[840.52,386.71],[840.52,386.71],[840.52,386.71],[840.52,386.71],[840.52,386.71],[840.52,386.72],[840.53,386.72],[840.53,386.72],[840.53,386.72],[840.53,386.72],[840.53,386.72],[840.53,386.73],[840.53,386.73],[840.54,386.73],[840.54,386.73],[840.55,386.74],[840.55,386.74],[840.56,386.74],[840.56,386.74],[840.56,386.75],[840.56,386.75],[840.56,386.75],[840.57,386.76],[840.58,386.79],[840.59,386.82],[840.59,386.84],[840.59,386.85],[840.59,386.85],[840.59,386.85],[840.6,386.85],[840.6,386.85],[840.6,386.85],[840.59,386.86],[840.59,386.87],[840.59,386.87],[840.59,386.87],[840.59,386.87],[840.59,386.88],[840.59,386.88],[840.59,386.88],[840.59,386.88],[840.59,386.88],[840.59,386.88],[840.59,386.88],[840.59,386.89],[840.59,386.89],[840.6,386.89],[840.6,386.89],[840.6,386.89],[840.61,386.9],[840.61,386.9],[840.62,386.91],[840.62,386.91],[840.62,386.91],[840.62,386.91],[840.62,386.91],[840.62,386.92],[840.63,386.92],[840.63,386.92],[840.63,386.92],[840.63,386.93],[840.63,386.93],[840.63,386.93],[840.63,386.93],[840.63,386.94],[840.63,386.94],[840.63,386.94],[840.63,386.95],[840.63,386.95],[840.62,386.95],[840.62,386.95],[840.62,386.95],[840.62,386.95],[840.62,386.96],[840.62,386.96],[840.61,386.96],[840.61,386.97],[840.6,386.97],[840.59,386.97],[840.59,386.98],[840.59,386.98],[840.59,386.98],[840.58,386.98],[840.58,386.99],[840.58,386.99],[840.58,386.99],[840.58,387],[840.57,387.01],[840.57,387.02],[840.57,387.02],[840.57,387.02],[840.56,387.02],[840.56,387.03],[840.56,387.03],[840.56,387.03],[840.56,387.03],[840.56,387.04],[840.56,387.05],[840.56,387.07],[840.56,387.07],[840.56,387.08],[840.56,387.08],[840.56,387.08],[840.56,387.08],[840.56,387.09],[840.56,387.09],[840.56,387.09],[840.56,387.09],[840.56,387.1],[840.56,387.1],[840.55,387.1],[840.55,387.11],[840.55,387.11],[840.55,387.12],[840.55,387.13],[840.55,387.13],[840.54,387.13],[840.54,387.13],[840.54,387.14],[840.52,387.16],[840.51,387.17],[840.51,387.17],[840.51,387.18],[840.5,387.21],[840.49,387.22],[840.48,387.25],[840.48,387.26],[840.47,387.28],[840.46,387.3],[840.45,387.34],[840.45,387.34],[840.45,387.34],[840.45,387.35],[840.45,387.35],[840.44,387.35],[840.44,387.36],[840.39,387.39],[840.36,387.41],[840.36,387.41],[840.36,387.42],[840.35,387.42],[840.35,387.42],[840.35,387.43],[840.35,387.43],[840.35,387.43],[840.35,387.44],[840.35,387.44],[840.35,387.46],[840.36,387.47],[840.36,387.49],[840.36,387.49],[840.36,387.5],[840.36,387.5],[840.36,387.5],[840.36,387.51],[840.34,387.54],[840.32,387.59],[840.3,387.63],[840.28,387.68],[840.26,387.73],[840.25,387.76],[840.25,387.79],[840.24,387.8],[840.24,387.81],[840.21,387.84],[840.2,387.86],[840.2,387.86],[840.15,387.92],[840.12,388.01],[840.12,388.04],[840.11,388.19],[840.1,388.32],[840.09,388.34],[840.09,388.35],[840.06,388.39],[840.05,388.4],[840.05,388.42],[840.05,388.46],[840.05,388.51],[840.04,388.56],[840.05,388.59],[840.05,388.61],[840.03,388.67],[840.03,388.68],[840.05,388.73],[840.05,388.74],[840.05,388.77],[840.05,388.79],[840.05,388.8],[840.06,388.82],[840.07,388.84],[840.08,388.85],[840.08,388.86],[840.04,389.03],[840.01,389.08],[840,389.14],[840,389.16],[839.96,389.3],[839.93,389.36],[839.9,389.41],[839.9,389.42],[839.9,389.43],[839.9,389.61],[839.9,389.62],[839.91,389.62],[839.91,389.63],[839.94,389.7],[839.99,389.77],[839.99,389.78],[839.98,389.8],[839.97,389.84],[839.95,389.9],[839.94,389.94],[839.93,389.96],[839.84,390.01],[839.81,390.04],[839.79,390.05],[839.76,390.09],[839.72,390.15],[839.7,390.16],[839.68,390.18],[839.66,390.19],[839.64,390.2],[839.63,390.21],[839.62,390.22],[839.61,390.3],[839.57,390.4],[839.57,390.41],[839.58,390.43],[839.59,390.44],[839.61,390.49],[839.65,390.56],[839.7,390.63],[839.75,390.7],[839.82,390.79],[839.84,390.85],[839.87,390.91],[839.89,390.95],[839.9,390.96],[839.9,390.96],[839.93,390.98],[839.94,390.99],[839.94,391],[839.94,391.03],[839.95,391.05],[839.95,391.07],[839.86,391.31],[839.86,391.32],[839.86,391.33],[839.88,391.35],[839.89,391.38],[839.92,391.43],[839.93,391.45],[839.93,391.47],[839.93,391.48],[839.92,391.52],[839.92,391.53],[839.92,391.54],[839.94,391.57],[839.96,391.6],[839.99,391.65],[839.94,391.67],[839.9,391.69],[839.9,391.7],[839.87,391.71],[839.85,391.72],[839.84,391.72],[839.84,391.74],[839.83,391.75],[839.84,391.76],[839.85,391.78],[839.85,391.78],[839.86,391.8],[839.87,391.82],[839.94,391.9],[840.05,392.02],[840.06,392.03],[840.07,392.04],[840.1,392.05],[840.12,392.07],[840.15,392.09],[840.28,392.21],[840.3,392.24],[840.57,392.56],[840.67,392.69],[840.71,392.75],[840.71,392.75],[840.72,392.77],[840.73,392.77],[840.73,392.77],[840.73,392.78],[840.73,392.78],[840.74,392.78],[840.74,392.78],[840.74,392.78],[840.74,392.78],[840.74,392.78],[840.75,392.78],[840.76,392.78],[840.76,392.78],[840.77,392.78],[840.77,392.78],[840.78,392.79],[840.78,392.79],[840.79,392.79],[840.8,392.79],[840.81,392.79],[840.81,392.79],[840.81,392.79],[840.82,392.79],[840.82,392.79],[840.84,392.79],[840.86,392.79],[840.86,392.78],[840.88,392.78],[840.89,392.78],[840.89,392.78],[840.9,392.78],[840.9,392.78],[840.9,392.78],[840.9,392.78],[840.9,392.78],[840.91,392.78],[840.91,392.78],[840.91,392.78],[840.92,392.78],[840.92,392.79],[840.92,392.79],[840.93,392.8],[840.95,392.82],[840.95,392.82],[840.97,392.84],[840.97,392.84],[840.97,392.84],[840.97,392.84],[840.98,392.85],[840.98,392.85],[840.98,392.85],[840.99,392.86],[840.99,392.86],[840.99,392.86],[841,392.87],[841.02,392.89],[841.03,392.9],[841.03,392.9],[841.05,392.92],[841.06,392.93],[841.07,392.94],[841.07,392.94],[841.09,392.96],[841.09,392.97],[841.1,392.97],[841.1,392.97],[841.12,392.99],[841.16,393.02],[841.18,393.04],[841.19,393.04],[841.19,393.04],[841.19,393.05],[841.21,393.05],[841.23,393.07],[841.23,393.07],[841.24,393.08],[841.25,393.09],[841.27,393.11],[841.3,393.13],[841.31,393.13],[841.31,393.13],[841.32,393.14],[841.32,393.14],[841.32,393.14],[841.33,393.14],[841.35,393.15],[841.36,393.15],[841.37,393.16],[841.39,393.17],[841.39,393.17],[841.39,393.17],[841.4,393.17],[841.4,393.17],[841.41,393.18],[841.41,393.18],[841.42,393.18],[841.43,393.19],[841.45,393.19],[841.45,393.2],[841.46,393.2],[841.46,393.2],[841.48,393.21],[841.49,393.21],[841.49,393.21],[841.52,393.23],[841.54,393.24],[841.55,393.24],[841.55,393.24],[841.56,393.24],[841.57,393.25],[841.57,393.25],[841.58,393.25],[841.58,393.25],[841.6,393.26],[841.62,393.27],[841.65,393.28],[841.68,393.29],[841.69,393.3],[841.69,393.31],[841.7,393.32],[841.7,393.33],[841.7,393.33],[841.7,393.34],[841.72,393.37],[841.72,393.37],[841.72,393.37],[841.72,393.37],[841.72,393.38],[841.73,393.39],[841.73,393.41],[841.73,393.42],[841.74,393.43],[841.74,393.44],[841.75,393.46],[841.75,393.46],[841.75,393.46],[841.76,393.47],[841.77,393.49],[841.8,393.51],[841.81,393.52],[841.81,393.53],[841.83,393.54],[841.83,393.55],[841.83,393.55],[841.84,393.55],[841.84,393.55],[841.84,393.56],[841.84,393.56],[841.84,393.56],[841.84,393.56],[841.84,393.56],[841.85,393.56],[841.85,393.57],[841.85,393.57],[841.85,393.57],[841.86,393.58],[841.86,393.58],[841.86,393.58],[841.87,393.59],[841.87,393.59],[841.88,393.59],[841.88,393.6],[841.88,393.6],[841.88,393.6],[841.89,393.61],[841.89,393.61],[841.89,393.61],[841.91,393.63],[841.91,393.64],[841.92,393.66],[841.92,393.67],[841.92,393.67],[841.92,393.67],[841.92,393.68],[841.92,393.68],[841.92,393.68],[841.92,393.68],[841.93,393.7],[841.93,393.71],[841.94,393.72],[841.94,393.74],[841.95,393.75],[841.95,393.75],[841.95,393.76],[841.95,393.76],[841.95,393.77],[841.95,393.77],[841.95,393.77],[841.95,393.78],[841.95,393.8],[841.95,393.8],[841.95,393.8],[841.95,393.82],[841.94,393.82],[841.94,393.83],[841.94,393.83],[841.94,393.84],[841.94,393.85],[841.95,393.86],[841.95,393.87],[841.96,393.87],[841.98,393.89],[841.98,393.89],[841.98,393.9],[841.99,393.91],[842,393.91],[842,393.91],[842.01,393.92],[842.01,393.92],[842.01,393.92],[842.01,393.92],[842.02,393.93],[842.02,393.93],[842.03,393.94],[842.03,393.95],[842.03,393.95],[842.03,393.95],[842.03,393.95],[842.03,393.95],[842.02,393.96],[842.02,393.96],[842.02,393.97],[842.02,393.98],[842.02,393.98],[842.02,393.98],[842.02,393.99],[842.02,393.99],[842.02,394],[842.02,394],[842.02,394.01],[842.02,394.01],[842.02,394.02],[842.02,394.04],[842.02,394.04],[842.02,394.06],[842.02,394.07],[842.02,394.08],[842.04,394.1],[842.05,394.11],[842.05,394.12],[842.06,394.13],[842.06,394.13],[842.06,394.13],[842.08,394.15],[842.08,394.15],[842.09,394.17],[842.1,394.17],[842.11,394.18],[842.12,394.2],[842.14,394.23],[842.16,394.25],[842.16,394.26],[842.17,394.26],[842.17,394.27],[842.17,394.27],[842.17,394.28],[842.17,394.29],[842.17,394.31],[842.17,394.32],[842.17,394.33],[842.17,394.33],[842.17,394.34],[842.17,394.35],[842.17,394.37],[842.17,394.37],[842.17,394.4],[842.17,394.4],[842.17,394.42],[842.17,394.43],[842.17,394.44],[842.17,394.44],[842.17,394.44],[842.17,394.45],[842.17,394.46],[842.17,394.47],[842.17,394.47],[842.18,394.48],[842.18,394.48],[842.18,394.49],[842.19,394.49],[842.19,394.49],[842.19,394.49],[842.21,394.5],[842.21,394.51],[842.22,394.51],[842.23,394.51],[842.23,394.52],[842.24,394.52],[842.24,394.52],[842.24,394.52],[842.26,394.54],[842.29,394.55],[842.29,394.56],[842.3,394.56],[842.32,394.58],[842.33,394.58],[842.33,394.58],[842.36,394.6],[842.38,394.61],[842.38,394.61],[842.39,394.61],[842.39,394.62],[842.4,394.62],[842.41,394.62],[842.43,394.64],[842.45,394.65],[842.49,394.67],[842.52,394.69],[842.54,394.7],[842.56,394.71],[842.59,394.72],[842.61,394.74],[842.63,394.75],[842.64,394.76],[842.68,394.77],[842.7,394.77],[842.73,394.79],[842.77,394.81],[842.77,394.81],[842.77,394.81],[842.78,394.81],[842.78,394.82],[842.81,394.83],[842.85,394.85],[842.86,394.85],[842.9,394.87],[842.92,394.88],[842.93,394.88],[842.94,394.9],[842.94,394.91],[842.95,394.92],[842.98,394.96],[842.98,394.96],[842.98,394.97],[842.98,394.97],[842.99,394.97],[842.99,394.98],[842.99,394.98],[842.99,394.98],[842.99,394.98],[842.99,394.99],[843,395],[843.01,395.01],[843.01,395.01],[843.01,395.02],[843.03,395.04],[843.05,395.08],[843.07,395.1],[843.08,395.12],[843.08,395.14],[843.09,395.16],[843.09,395.17],[843.09,395.17],[843.1,395.21],[843.11,395.22],[843.11,395.22],[843.11,395.23],[843.11,395.23],[843.11,395.23],[843.11,395.24],[843.11,395.24],[843.11,395.25],[843.12,395.28],[843.13,395.31],[843.14,395.32],[843.15,395.35],[843.15,395.36],[843.16,395.39],[843.16,395.4],[843.18,395.44],[843.19,395.48],[843.2,395.51],[843.21,395.53],[843.21,395.55],[843.21,395.55],[843.22,395.58],[843.23,395.6],[843.24,395.64],[843.25,395.66],[843.26,395.7],[843.26,395.7],[843.28,395.74],[843.28,395.77],[843.29,395.78],[843.29,395.79],[843.29,395.8],[843.3,395.8],[843.3,395.81],[843.3,395.82],[843.3,395.83],[843.3,395.83],[843.3,395.83],[843.3,395.84],[843.3,395.84],[843.3,395.85],[843.3,395.88],[843.3,395.89],[843.3,395.91],[843.3,395.95],[843.3,395.99],[843.3,396.03],[843.3,396.04],[843.29,396.04],[843.29,396.06],[843.29,396.07],[843.29,396.1],[843.29,396.1],[843.29,396.14],[843.29,396.14],[843.29,396.15],[843.29,396.15],[843.29,396.16],[843.29,396.16],[843.29,396.16],[843.3,396.17],[843.3,396.17],[843.3,396.18],[843.3,396.19],[843.31,396.2],[843.31,396.21],[843.32,396.24],[843.33,396.24],[843.34,396.27],[843.34,396.28],[843.35,396.31],[843.36,396.34],[843.37,396.34],[843.37,396.36],[843.38,396.37],[843.38,396.38],[843.38,396.38],[843.39,396.39],[843.39,396.39],[843.39,396.39],[843.39,396.4],[843.41,396.41],[843.44,396.44],[843.44,396.44],[843.45,396.45],[843.47,396.47],[843.47,396.47],[843.48,396.48],[843.51,396.5],[843.53,396.53],[843.53,396.53],[843.54,396.54],[843.55,396.55],[843.56,396.55],[843.56,396.55],[843.58,396.57],[843.58,396.57],[843.59,396.58],[843.6,396.59],[843.6,396.59],[843.63,396.62],[843.64,396.64],[843.65,396.64],[843.65,396.65],[843.67,396.67],[843.68,396.68],[843.68,396.68],[843.68,396.68],[843.68,396.68],[843.69,396.68],[843.7,396.7],[843.71,396.7],[843.72,396.72],[843.73,396.72],[843.74,396.73],[843.74,396.74],[843.75,396.74],[843.76,396.75],[843.76,396.76],[843.77,396.76],[843.77,396.76],[843.78,396.77],[843.78,396.77],[843.78,396.78],[843.78,396.78],[843.79,396.78],[843.79,396.79],[843.8,396.79],[843.81,396.81],[843.84,396.83],[843.86,396.86],[843.89,396.89],[843.92,396.92],[843.94,396.95],[843.97,396.97],[843.99,397],[844.01,397.02],[844.04,397.05],[844.06,397.08],[844.09,397.11],[844.12,397.14],[844.14,397.17],[844.16,397.19],[844.17,397.2],[844.18,397.22],[844.19,397.23],[844.21,397.25],[844.24,397.29],[844.25,397.3],[844.25,397.3],[844.26,397.31],[844.27,397.32],[844.27,397.33],[844.27,397.33],[844.29,397.36],[844.29,397.37],[844.3,397.38],[844.31,397.39],[844.31,397.4],[844.32,397.41],[844.32,397.42],[844.33,397.43],[844.34,397.45],[844.34,397.45],[844.34,397.45],[844.34,397.45],[844.35,397.46],[844.35,397.46],[844.35,397.47],[844.35,397.47],[844.35,397.48],[844.36,397.48],[844.36,397.5],[844.37,397.5],[844.37,397.5],[844.37,397.5],[844.37,397.51],[844.37,397.51],[844.37,397.51],[844.38,397.52],[844.39,397.55],[844.41,397.57],[844.42,397.59],[844.43,397.61],[844.43,397.62],[844.44,397.62],[844.44,397.64],[844.46,397.66],[844.46,397.67],[844.48,397.7],[844.48,397.71],[844.49,397.72],[844.49,397.73],[844.49,397.73],[844.5,397.74],[844.5,397.75],[844.51,397.76],[844.51,397.77],[844.52,397.77],[844.52,397.78],[844.52,397.78],[844.53,397.79],[844.53,397.79],[844.53,397.8],[844.53,397.8],[844.53,397.8],[844.54,397.81],[844.54,397.81],[844.54,397.81],[844.54,397.82],[844.54,397.82],[844.54,397.82],[844.55,397.83],[844.55,397.84],[844.56,397.85],[844.56,397.85],[844.57,397.86],[844.58,397.88],[844.6,397.9],[844.61,397.91],[844.61,397.91],[844.61,397.92],[844.61,397.92],[844.62,397.92],[844.65,397.95],[844.67,397.98],[844.69,398],[844.69,398.01],[844.7,398.01],[844.7,398.01],[844.7,398.02],[844.73,398.04],[844.74,398.05],[844.76,398.08],[844.79,398.11],[844.8,398.12],[844.8,398.12],[844.8,398.13],[844.81,398.13],[844.81,398.13],[844.82,398.14],[844.82,398.15],[844.82,398.15],[844.83,398.16],[844.83,398.16],[844.83,398.16],[844.84,398.16],[844.84,398.17],[844.84,398.17],[844.85,398.17],[844.86,398.19],[844.88,398.21],[844.89,398.22],[844.89,398.22],[844.9,398.23],[844.9,398.24],[844.91,398.25],[844.91,398.25],[844.92,398.25],[844.92,398.26],[844.92,398.26],[844.92,398.26],[844.92,398.26],[844.93,398.26],[844.93,398.27],[844.94,398.27],[844.94,398.27],[844.94,398.28],[844.94,398.28],[844.95,398.29],[844.95,398.29],[844.96,398.29],[844.96,398.3],[844.97,398.3],[844.98,398.31],[844.99,398.31],[844.99,398.31],[845.01,398.32],[845.02,398.33],[845.02,398.33],[845.05,398.34],[845.05,398.35],[845.07,398.36],[845.07,398.36],[845.08,398.36],[845.08,398.36],[845.1,398.37],[845.11,398.38],[845.11,398.38],[845.12,398.38],[845.12,398.38],[845.13,398.39],[845.15,398.4],[845.15,398.4],[845.17,398.41],[845.18,398.42],[845.19,398.42],[845.2,398.43],[845.21,398.43],[845.21,398.43],[845.21,398.43],[845.21,398.44],[845.22,398.44],[845.22,398.44],[845.22,398.44],[845.22,398.44],[845.22,398.44],[845.22,398.44],[845.22,398.44],[845.22,398.45],[845.22,398.45],[845.22,398.45],[845.22,398.46],[845.22,398.46],[845.21,398.47],[845.21,398.49],[845.21,398.5],[845.21,398.51],[845.21,398.52],[845.21,398.52],[845.21,398.56],[845.21,398.59],[845.21,398.62],[845.21,398.63],[845.21,398.65],[845.21,398.67],[845.21,398.69],[845.21,398.69],[845.22,398.7],[845.22,398.71],[845.23,398.71],[845.23,398.72],[845.24,398.73],[845.24,398.73],[845.24,398.74],[845.25,398.74],[845.25,398.75],[845.25,398.75],[845.25,398.75],[845.25,398.75],[845.26,398.76],[845.27,398.76],[845.27,398.77],[845.28,398.77],[845.29,398.78],[845.3,398.79],[845.33,398.81],[845.33,398.82],[845.36,398.84],[845.36,398.84],[845.38,398.87],[845.4,398.88],[845.41,398.89],[845.43,398.91],[845.44,398.92],[845.45,398.92],[845.45,398.93],[845.46,398.93],[845.47,398.94],[845.47,398.95],[845.48,398.95],[845.49,398.96],[845.51,398.98],[845.54,399.01],[845.54,399.01],[845.55,399.02],[845.57,399.03],[845.58,399.04],[845.58,399.05],[845.59,399.05],[845.59,399.05],[845.59,399.05],[845.59,399.05],[845.59,399.05],[845.59,399.05],[845.58,399.06],[845.58,399.06],[845.58,399.06],[845.58,399.06],[845.58,399.06],[845.58,399.07],[845.58,399.1],[845.59,399.12],[845.59,399.13],[845.59,399.14],[845.59,399.14],[845.59,399.15],[845.59,399.17],[845.59,399.18],[845.59,399.19],[845.59,399.19],[845.59,399.22],[845.6,399.23],[845.6,399.24],[845.6,399.26],[845.6,399.27],[845.6,399.29],[845.6,399.31],[845.61,399.33],[845.61,399.33],[845.61,399.36],[845.61,399.38],[845.61,399.38],[845.61,399.39],[845.61,399.39],[845.61,399.4],[845.61,399.4],[845.61,399.4],[845.62,399.44],[845.62,399.45],[845.62,399.46],[845.62,399.46],[845.62,399.47],[845.61,399.49],[845.61,399.49],[845.6,399.52],[845.6,399.53],[845.6,399.55],[845.6,399.55],[845.61,399.58],[845.61,399.59],[845.61,399.61],[845.61,399.62],[845.61,399.64],[845.6,399.67],[845.6,399.67],[845.6,399.67],[845.6,399.68],[845.6,399.69],[845.6,399.7],[845.6,399.71],[845.61,399.71],[845.61,399.72],[845.61,399.73],[845.61,399.73],[845.62,399.74],[845.63,399.77],[845.63,399.77],[845.64,399.8],[845.65,399.81],[845.65,399.81],[845.65,399.82],[845.66,399.82],[845.67,399.84],[845.67,399.85],[845.68,399.85],[845.68,399.85],[845.68,399.86],[845.69,399.86],[845.69,399.86],[845.69,399.86],[845.69,399.87],[845.69,399.87],[845.7,399.89],[845.7,399.89],[845.71,399.94],[845.71,399.94],[845.71,399.95],[845.71,399.96],[845.72,399.98],[845.72,400],[845.72,400],[845.72,400.01],[845.72,400.01],[845.72,400.03],[845.72,400.03],[845.72,400.04],[845.71,400.06],[845.71,400.08],[845.71,400.08],[845.71,400.09],[845.7,400.1],[845.7,400.12],[845.7,400.12],[845.7,400.13],[845.7,400.14],[845.7,400.14],[845.7,400.15],[845.71,400.16],[845.71,400.17],[845.72,400.19],[845.72,400.2],[845.73,400.2],[845.73,400.21],[845.73,400.22],[845.73,400.22],[845.73,400.23],[845.73,400.24],[845.73,400.25],[845.73,400.27],[845.73,400.3],[845.73,400.31],[845.73,400.31],[845.73,400.32],[845.73,400.33],[845.73,400.33],[845.73,400.34],[845.73,400.34],[845.73,400.34],[845.73,400.34],[845.73,400.35],[845.73,400.35],[845.73,400.35],[845.73,400.35],[845.73,400.36],[845.73,400.37],[845.73,400.37],[845.74,400.37],[845.74,400.38],[845.74,400.38],[845.74,400.39],[845.74,400.4],[845.75,400.42],[845.75,400.42],[845.75,400.43],[845.75,400.43],[845.75,400.44],[845.76,400.45],[845.76,400.45],[845.76,400.47],[845.77,400.49],[845.78,400.52],[845.79,400.54],[845.8,400.56],[845.8,400.58],[845.81,400.59],[845.82,400.62],[845.83,400.63],[845.83,400.63],[845.84,400.66],[845.85,400.66],[845.85,400.67],[845.85,400.67],[845.85,400.68],[845.85,400.68],[845.86,400.69],[845.86,400.69],[845.86,400.69],[845.87,400.71],[845.88,400.72],[845.88,400.74],[845.89,400.74],[845.89,400.76],[845.9,400.76],[845.9,400.76],[845.9,400.77],[845.91,400.78],[845.91,400.78],[845.91,400.79],[845.92,400.81],[845.93,400.82],[845.93,400.82],[845.94,400.83],[845.94,400.85],[845.95,400.86],[845.96,400.87],[845.96,400.87],[845.96,400.88],[845.96,400.88],[845.96,400.89],[845.97,400.89],[845.97,400.91],[845.97,400.91],[845.97,400.91],[845.97,400.91],[845.98,400.91],[845.98,400.92],[845.98,400.92],[845.98,400.92],[845.98,400.92],[845.98,400.92],[845.98,400.92],[845.98,400.92],[845.98,400.92],[845.98,400.93],[845.98,400.93],[845.99,400.94],[845.99,400.94],[845.99,400.94],[845.99,400.95],[845.99,400.95],[845.99,400.97],[845.99,400.97],[846,400.98],[846,400.99],[846,400.99],[846,400.99],[846.01,401.02],[846.01,401.04],[846.01,401.05],[846.02,401.06],[846.02,401.06],[846.02,401.07],[846.03,401.09],[846.03,401.13],[846.04,401.14],[846.04,401.14],[846.04,401.15],[846.04,401.15],[846.04,401.16],[846.04,401.16],[846.05,401.17],[846.05,401.17],[846.05,401.17],[846.05,401.19],[846.05,401.2],[846.05,401.2],[846.05,401.21],[846.05,401.21],[846.06,401.22],[846.06,401.22],[846.06,401.23],[846.06,401.24],[846.06,401.25],[846.06,401.26],[846.07,401.28],[846.07,401.29],[846.07,401.3],[846.08,401.31],[846.08,401.32],[846.09,401.36],[846.09,401.36],[846.09,401.38],[846.09,401.38],[846.09,401.38],[846.1,401.39],[846.1,401.39],[846.1,401.4],[846.1,401.41],[846.11,401.42],[846.12,401.44],[846.12,401.45],[846.13,401.46],[846.14,401.48],[846.15,401.5],[846.17,401.53],[846.18,401.55],[846.18,401.56],[846.19,401.57],[846.21,401.6],[846.21,401.61],[846.22,401.62],[846.22,401.62],[846.23,401.63],[846.23,401.64],[846.23,401.64],[846.24,401.65],[846.24,401.65],[846.25,401.67],[846.26,401.68],[846.27,401.69],[846.27,401.69],[846.27,401.69],[846.28,401.71],[846.29,401.73],[846.3,401.74],[846.31,401.74],[846.31,401.75],[846.31,401.75],[846.32,401.77],[846.33,401.79],[846.33,401.79],[846.33,401.8],[846.34,401.81],[846.34,401.81],[846.35,401.82],[846.35,401.82],[846.35,401.83],[846.35,401.83],[846.35,401.83],[846.35,401.83],[846.35,401.84],[846.36,401.85],[846.37,401.87],[846.37,401.87],[846.37,401.87],[846.38,401.89],[846.38,401.89],[846.38,401.89],[846.38,401.9],[846.39,401.9],[846.39,401.9],[846.39,401.91],[846.39,401.91],[846.39,401.91],[846.39,401.92],[846.39,401.92],[846.4,401.94],[846.41,401.95],[846.43,401.96],[846.43,401.97],[846.45,401.98],[846.46,401.99],[846.46,401.99],[846.48,402],[846.5,402.02],[846.52,402.03],[846.52,402.03],[846.52,402.03],[846.54,402.04],[846.55,402.06],[846.56,402.08],[846.57,402.09],[846.57,402.09],[846.57,402.1],[846.58,402.11],[846.59,402.13],[846.61,402.15],[846.61,402.16],[846.62,402.16],[846.62,402.17],[846.63,402.18],[846.63,402.19],[846.64,402.19],[846.64,402.2],[846.65,402.21],[846.66,402.22],[846.67,402.23],[846.68,402.24],[846.69,402.26],[846.71,402.27],[846.72,402.29],[846.74,402.33],[846.75,402.36],[846.77,402.39],[846.77,402.4],[846.78,402.41],[846.79,402.43],[846.8,402.46],[846.8,402.48],[846.82,402.56],[846.83,402.58],[846.84,402.61],[846.87,402.69],[846.91,402.75],[846.94,402.8],[847.08,402.99],[847.11,403.04],[847.12,403.05],[847.13,403.07],[847.16,403.13],[847.19,403.19],[847.2,403.21],[847.21,403.22],[847.22,403.23],[847.23,403.23],[847.23,403.23],[847.24,403.25],[847.27,403.27],[847.28,403.27],[847.28,403.28],[847.29,403.28],[847.29,403.29],[847.32,403.32],[847.34,403.36],[847.36,403.39],[847.36,403.39],[847.36,403.39],[847.36,403.4],[847.37,403.41],[847.38,403.43],[847.38,403.43],[847.39,403.44],[847.39,403.45],[847.39,403.46],[847.4,403.48],[847.42,403.56],[847.42,403.57],[847.43,403.6],[847.43,403.62],[847.44,403.65],[847.43,403.68],[847.43,403.71],[847.43,403.74],[847.43,403.76],[847.44,403.78],[847.45,403.8],[847.47,403.83],[847.49,403.86],[847.49,403.88],[847.5,403.9],[847.5,403.91],[847.5,403.91],[847.49,403.92],[847.49,403.93],[847.49,403.94],[847.48,403.95],[847.47,403.98],[847.46,403.99],[847.46,404],[847.46,404.01],[847.45,404.02],[847.45,404.04],[847.46,404.05],[847.46,404.06],[847.46,404.06],[847.46,404.09],[847.47,404.1],[847.47,404.13],[847.47,404.15],[847.47,404.2],[847.48,404.27],[847.48,404.34],[847.48,404.35],[847.48,404.37],[847.48,404.4],[847.48,404.42],[847.48,404.44],[847.49,404.45],[847.49,404.46],[847.5,404.48],[847.5,404.49],[847.52,404.51],[847.54,404.54],[847.54,404.55],[847.55,404.56],[847.56,404.57],[847.56,404.58],[847.56,404.58],[847.56,404.59],[847.57,404.6],[847.57,404.61],[847.57,404.62],[847.58,404.67],[847.59,404.73],[847.59,404.76],[847.59,404.79],[847.58,404.84],[847.56,404.95],[847.56,404.96],[847.56,404.97],[847.56,404.98],[847.56,404.99],[847.56,405],[847.56,405.01],[847.57,405.01],[847.57,405.02],[847.59,405.05],[847.59,405.06],[847.59,405.06],[847.6,405.07],[847.61,405.09],[847.62,405.11],[847.64,405.14],[847.66,405.17],[847.66,405.17],[847.67,405.18],[847.68,405.19],[847.68,405.2],[847.68,405.2],[847.69,405.22],[847.69,405.22],[847.7,405.23],[847.7,405.24],[847.71,405.25],[847.72,405.28],[847.72,405.29],[847.73,405.31],[847.74,405.34],[847.76,405.41],[847.76,405.43],[847.77,405.46],[847.78,405.48],[847.79,405.49],[847.79,405.49],[847.79,405.5],[847.79,405.5],[847.8,405.51],[847.8,405.51],[847.81,405.52],[847.81,405.53],[847.82,405.54],[847.83,405.55],[847.84,405.57],[847.84,405.57],[847.85,405.59],[847.85,405.59],[847.86,405.6],[847.86,405.62],[847.86,405.63],[847.87,405.65],[847.88,405.67],[847.89,405.68],[847.9,405.71],[847.92,405.76],[847.93,405.78],[847.94,405.79],[847.94,405.8],[847.94,405.81],[847.94,405.81],[847.94,405.81],[847.95,405.82],[847.95,405.82],[847.95,405.83],[847.95,405.83],[847.95,405.84],[847.95,405.85],[847.96,405.88],[847.96,405.89],[847.97,405.91],[847.97,405.94],[847.97,405.94],[847.97,405.95],[847.98,405.97],[847.98,405.98],[847.99,405.99],[848,406],[848.02,406.01],[848.04,406.03],[848.05,406.04],[848.06,406.04],[848.07,406.05],[848.08,406.06],[848.1,406.08],[848.13,406.1],[848.15,406.12],[848.21,406.17],[848.22,406.18],[848.23,406.19],[848.24,406.2],[848.26,406.22],[848.27,406.22],[848.27,406.23],[848.28,406.23],[848.28,406.23],[848.28,406.23],[848.29,406.25],[848.31,406.27],[848.33,406.3],[848.34,406.31],[848.35,406.33],[848.35,406.34],[848.35,406.35],[848.36,406.37],[848.36,406.39],[848.37,406.4],[848.37,406.42],[848.38,406.44],[848.38,406.45],[848.38,406.46],[848.38,406.48],[848.38,406.5],[848.38,406.53],[848.38,406.6],[848.38,406.62],[848.38,406.68],[848.38,406.74],[848.38,406.77],[848.38,406.77],[848.38,406.78],[848.38,406.89],[848.38,407],[848.38,407.01],[848.38,407.04],[848.38,407.07],[848.38,407.1],[848.38,407.12],[848.38,407.14],[848.37,407.18],[848.37,407.18],[848.37,407.19],[848.36,407.29],[848.35,407.31],[848.35,407.32],[848.35,407.32],[848.35,407.33],[848.35,407.34],[848.35,407.35],[848.35,407.36],[848.35,407.37],[848.36,407.39],[848.36,407.4],[848.36,407.42],[848.37,407.44],[848.38,407.48],[848.39,407.5],[848.39,407.5],[848.39,407.51],[848.39,407.51],[848.4,407.51],[848.4,407.51],[848.4,407.51],[848.4,407.52],[848.4,407.52],[848.4,407.52],[848.4,407.52],[848.4,407.52],[848.4,407.52],[848.4,407.53],[848.4,407.53],[848.4,407.53],[848.4,407.54],[848.4,407.54],[848.4,407.54],[848.4,407.54],[848.4,407.55],[848.39,407.55],[848.39,407.55],[848.39,407.55],[848.39,407.55],[848.38,407.55],[848.38,407.56],[848.38,407.56],[848.32,407.56],[848.27,407.56],[848.26,407.56],[848.26,407.56],[848.24,407.56],[848.24,407.57],[848.24,407.57],[848.23,407.57],[848.21,407.58],[848.19,407.6],[848.14,407.62],[848.13,407.63],[848.13,407.63],[848.12,407.63],[848.1,407.65],[848.09,407.65],[848.06,407.67],[848.06,407.67],[848.05,407.68],[847.99,407.71],[847.97,407.73],[847.96,407.76],[847.94,407.84],[847.93,407.87],[847.93,407.88],[847.92,407.9],[847.92,407.92],[847.92,407.92],[847.91,407.93],[847.91,407.94],[847.91,407.94],[847.9,407.95],[847.9,407.96],[847.89,407.96],[847.89,407.97],[847.88,407.97],[847.87,407.98],[847.86,407.99],[847.81,408.03],[847.81,408.03],[847.67,408.14],[847.66,408.15],[847.65,408.15],[847.64,408.16],[847.64,408.16],[847.61,408.17],[847.6,408.18],[847.58,408.18],[847.58,408.18],[847.55,408.19],[847.55,408.2],[847.54,408.2],[847.54,408.2],[847.54,408.21],[847.53,408.21],[847.53,408.22],[847.52,408.23],[847.52,408.24],[847.51,408.26],[847.5,408.28],[847.49,408.29],[847.49,408.29],[847.48,408.3],[847.48,408.31],[847.48,408.32],[847.47,408.33],[847.47,408.33],[847.46,408.34],[847.46,408.34],[847.46,408.35],[847.46,408.35],[847.46,408.36],[847.46,408.37],[847.46,408.42],[847.46,408.46],[847.46,408.47],[847.46,408.51],[847.46,408.51],[847.46,408.51],[847.46,408.52],[847.46,408.52],[847.46,408.53],[847.46,408.53],[847.45,408.54],[847.45,408.54],[847.45,408.55],[847.45,408.55],[847.43,408.58],[847.43,408.58],[847.39,408.66],[847.39,408.67],[847.38,408.68],[847.38,408.69],[847.35,408.74],[847.35,408.75],[847.34,408.76],[847.33,408.77],[847.33,408.78],[847.33,408.78],[847.33,408.79],[847.32,408.8],[847.3,408.83],[847.3,408.83],[847.29,408.86],[847.28,408.88],[847.27,408.89],[847.27,408.9],[847.27,408.9],[847.27,408.9],[847.27,408.91],[847.26,408.93],[847.26,408.93],[847.25,408.95],[847.25,408.97],[847.25,408.97],[847.24,408.99],[847.23,409.01],[847.23,409.03],[847.23,409.04],[847.22,409.06],[847.22,409.06],[847.21,409.09],[847.21,409.09],[847.21,409.09],[847.21,409.11],[847.21,409.11],[847.21,409.11],[847.21,409.11],[847.21,409.12],[847.21,409.12],[847.21,409.21],[847.22,409.26],[847.22,409.3],[847.22,409.31],[847.22,409.32],[847.22,409.32],[847.23,409.33],[847.23,409.33],[847.23,409.34],[847.23,409.34],[847.23,409.34],[847.23,409.35],[847.23,409.36],[847.23,409.37],[847.23,409.38],[847.23,409.39],[847.23,409.4],[847.23,409.41],[847.23,409.42],[847.23,409.43],[847.24,409.44],[847.24,409.46],[847.24,409.47],[847.24,409.48],[847.24,409.49],[847.24,409.5],[847.24,409.51],[847.24,409.52],[847.24,409.52],[847.24,409.53],[847.24,409.56],[847.24,409.58],[847.23,409.65],[847.23,409.72],[847.22,409.74],[847.22,409.77],[847.22,409.78],[847.22,409.79],[847.22,409.8],[847.22,409.81],[847.22,409.81],[847.22,409.82],[847.22,409.83],[847.22,409.84],[847.21,409.85],[847.2,409.98],[847.2,409.99],[847.2,410.01],[847.2,410.08],[847.2,410.08],[847.2,410.09],[847.2,410.09],[847.2,410.1],[847.2,410.11],[847.2,410.12],[847.2,410.13],[847.2,410.14],[847.2,410.15],[847.2,410.16],[847.2,410.17],[847.2,410.17],[847.2,410.19],[847.2,410.19],[847.2,410.21],[847.2,410.22],[847.2,410.22],[847.2,410.22],[847.2,410.22],[847.2,410.22],[847.2,410.23],[847.2,410.23],[847.2,410.23],[847.2,410.23],[847.2,410.23],[847.2,410.23],[847.2,410.23],[847.2,410.23],[847.2,410.23],[847.21,410.24],[847.21,410.24],[847.21,410.24],[847.21,410.24],[847.21,410.24],[847.21,410.24],[847.21,410.24],[847.21,410.24],[847.21,410.25],[847.21,410.25],[847.21,410.25],[847.21,410.25],[847.2,410.25],[847.19,410.25],[847.19,410.25],[847.19,410.25],[847.18,410.25],[847.18,410.25],[847.18,410.25],[847.17,410.25],[847.16,410.25],[847.15,410.25],[847.14,410.25],[847.14,410.25],[847.13,410.25],[847.11,410.26],[847.09,410.26],[847.08,410.26],[847.06,410.26],[847.04,410.26],[847.02,410.26],[847,410.26],[846.98,410.27],[846.97,410.27],[846.96,410.27],[846.94,410.27],[846.92,410.27],[846.9,410.27],[846.88,410.27],[846.85,410.28],[846.83,410.28],[846.81,410.28],[846.79,410.28],[846.79,410.28],[846.78,410.28],[846.77,410.28],[846.77,410.28],[846.77,410.28],[846.76,410.28],[846.75,410.28],[846.75,410.29],[846.74,410.29],[846.73,410.29],[846.73,410.28],[846.72,410.28],[846.71,410.28],[846.7,410.28],[846.69,410.28],[846.68,410.28],[846.67,410.28],[846.67,410.28],[846.66,410.28],[846.65,410.28],[846.64,410.28],[846.63,410.28],[846.62,410.27],[846.62,410.27],[846.61,410.27],[846.6,410.27],[846.6,410.27],[846.59,410.27],[846.57,410.27],[846.55,410.27],[846.54,410.27],[846.54,410.27],[846.53,410.27],[846.53,410.26],[846.52,410.26],[846.51,410.26],[846.5,410.26],[846.49,410.26],[846.48,410.26],[846.47,410.26],[846.46,410.26],[846.45,410.26],[846.44,410.26],[846.43,410.26],[846.42,410.25],[846.42,410.25],[846.41,410.25],[846.41,410.25],[846.41,410.25],[846.41,410.25],[846.41,410.25],[846.4,410.25],[846.4,410.25],[846.4,410.25],[846.4,410.25],[846.4,410.24],[846.39,410.24],[846.39,410.24],[846.38,410.22],[846.38,410.22],[846.37,410.21],[846.36,410.2],[846.36,410.2],[846.35,410.19],[846.35,410.18],[846.34,410.18],[846.34,410.17],[846.33,410.16],[846.33,410.16],[846.32,410.15],[846.31,410.14],[846.3,410.13],[846.29,410.12],[846.29,410.11],[846.29,410.11],[846.28,410.11],[846.28,410.1],[846.27,410.09],[846.26,410.08],[846.26,410.08],[846.26,410.07],[846.25,410.07],[846.25,410.07],[846.25,410.07],[846.25,410.06],[846.25,410.06],[846.24,410.06],[846.24,410.06],[846.24,410.06],[846.23,410.06],[846.22,410.05],[846.2,410.05],[846.19,410.04],[846.19,410.04],[846.19,410.04],[846.19,410.04],[846.18,410.04],[846.18,410.04],[846.18,410.04],[846.18,410.04],[846.17,410.04],[846.17,410.04],[846.17,410.04],[846.16,410.04],[846.15,410.04],[846.14,410.05],[846.13,410.05],[846.12,410.05],[846.11,410.05],[846.11,410.05],[846.11,410.05],[846.1,410.05],[846.1,410.05],[846.1,410.05],[846.09,410.05],[846.09,410.05],[846.09,410.05],[846.08,410.05],[846.08,410.05],[846.08,410.05],[846.08,410.05],[846.07,410.04],[846.06,410.04],[846.05,410.03],[846.04,410.02],[846.03,410.02],[846.02,410.01],[846.02,410.01],[846,410],[845.99,409.99],[845.98,409.99],[845.97,409.98],[845.97,409.98],[845.97,409.98],[845.97,409.98],[845.96,409.97],[845.96,409.97],[845.96,409.97],[845.96,409.96],[845.96,409.96],[845.94,409.94],[845.94,409.93],[845.94,409.92],[845.93,409.92],[845.93,409.91],[845.93,409.91],[845.93,409.9],[845.92,409.9],[845.92,409.89],[845.92,409.89],[845.92,409.89],[845.91,409.88],[845.91,409.88],[845.91,409.87],[845.91,409.87],[845.9,409.86],[845.9,409.86],[845.9,409.85],[845.9,409.84],[845.89,409.84],[845.89,409.84],[845.89,409.83],[845.89,409.83],[845.88,409.82],[845.88,409.82],[845.88,409.81],[845.88,409.81],[845.87,409.81],[845.87,409.8],[845.87,409.79],[845.87,409.79],[845.87,409.79],[845.86,409.78],[845.86,409.78],[845.86,409.77],[845.85,409.77],[845.85,409.76],[845.85,409.76],[845.85,409.76],[845.85,409.75],[845.85,409.75],[845.84,409.74],[845.84,409.74],[845.84,409.73],[845.84,409.73],[845.83,409.72],[845.83,409.72],[845.83,409.72],[845.83,409.71],[845.82,409.71],[845.82,409.7],[845.82,409.7],[845.81,409.7],[845.81,409.7],[845.81,409.69],[845.8,409.69],[845.79,409.69],[845.78,409.69],[845.78,409.69],[845.78,409.69],[845.77,409.69],[845.77,409.69],[845.76,409.69],[845.75,409.68],[845.74,409.68],[845.74,409.68],[845.73,409.68],[845.72,409.68],[845.72,409.68],[845.71,409.68],[845.7,409.67],[845.7,409.67],[845.7,409.67],[845.69,409.67],[845.68,409.67],[845.68,409.67],[845.67,409.67],[845.67,409.67],[845.66,409.67],[845.65,409.67],[845.65,409.67],[845.64,409.66],[845.64,409.66],[845.63,409.66],[845.63,409.66],[845.62,409.66],[845.61,409.66],[845.6,409.66],[845.6,409.66],[845.59,409.66],[845.58,409.66],[845.58,409.65],[845.57,409.65],[845.57,409.65],[845.56,409.65],[845.56,409.65],[845.56,409.65],[845.55,409.65],[845.55,409.65],[845.55,409.65],[845.55,409.65],[845.54,409.65],[845.54,409.64],[845.54,409.64],[845.53,409.64],[845.53,409.64],[845.52,409.64],[845.52,409.65],[845.51,409.65],[845.51,409.65],[845.5,409.65],[845.49,409.65],[845.49,409.65],[845.48,409.65],[845.48,409.65],[845.48,409.65],[845.48,409.65],[845.47,409.65],[845.47,409.65],[845.47,409.65],[845.46,409.65],[845.46,409.65],[845.46,409.65],[845.45,409.64],[845.45,409.64],[845.44,409.64],[845.44,409.64],[845.44,409.64],[845.43,409.64],[845.43,409.64],[845.43,409.64],[845.42,409.64],[845.42,409.64],[845.42,409.64],[845.42,409.64],[845.42,409.64],[845.41,409.64],[845.41,409.64],[845.41,409.64],[845.4,409.64],[845.4,409.64],[845.4,409.64],[845.39,409.64],[845.39,409.64],[845.39,409.64],[845.39,409.64],[845.39,409.64],[845.39,409.64],[845.38,409.64],[845.36,409.64],[845.36,409.65],[845.35,409.65],[845.34,409.65],[845.33,409.65],[845.33,409.65],[845.32,409.65],[845.32,409.65],[845.31,409.65],[845.3,409.66],[845.3,409.66],[845.29,409.66],[845.28,409.66],[845.28,409.66],[845.27,409.66],[845.27,409.66],[845.27,409.66],[845.26,409.66],[845.26,409.66],[845.26,409.67],[845.25,409.67],[845.25,409.67],[845.24,409.67],[845.24,409.67],[845.23,409.67],[845.22,409.67],[845.22,409.67],[845.21,409.67],[845.21,409.68],[845.2,409.68],[845.19,409.68],[845.19,409.68],[845.18,409.68],[845.17,409.68],[845.17,409.68],[845.17,409.68],[845.16,409.69],[845.16,409.69],[845.16,409.69],[845.16,409.69],[845.16,409.69],[845.15,409.69],[845.15,409.69],[845.15,409.69],[845.14,409.69],[845.13,409.69],[845.13,409.69],[845.12,409.69],[845.12,409.7],[845.11,409.7],[845.11,409.7],[845.1,409.7],[845.1,409.7],[845.1,409.7],[845.1,409.7],[845.1,409.7],[845.09,409.7],[845.09,409.7],[845.09,409.7],[845.09,409.7],[845.09,409.7],[845.08,409.7],[845.08,409.7],[845.07,409.7],[845.07,409.7],[845.07,409.7],[845.06,409.7],[845.05,409.7],[845.05,409.7],[845.05,409.7],[845.05,409.7],[845.04,409.7],[845.03,409.7],[845.02,409.7],[845.02,409.7],[845.01,409.7],[845,409.7],[844.99,409.7],[844.99,409.7],[844.98,409.7],[844.98,409.7],[844.97,409.7],[844.96,409.7],[844.95,409.7],[844.95,409.7],[844.94,409.71],[844.94,409.71],[844.93,409.71],[844.92,409.71],[844.92,409.71],[844.91,409.71],[844.9,409.71],[844.89,409.71],[844.89,409.71],[844.88,409.71],[844.87,409.71],[844.87,409.71],[844.86,409.72],[844.85,409.72],[844.85,409.72],[844.84,409.72],[844.83,409.72],[844.83,409.72],[844.82,409.72],[844.81,409.73],[844.81,409.73],[844.8,409.73],[844.8,409.73],[844.8,409.73],[844.79,409.73],[844.79,409.73],[844.78,409.73],[844.78,409.73],[844.77,409.73],[844.77,409.73],[844.76,409.73],[844.75,409.73],[844.75,409.73],[844.74,409.73],[844.74,409.73],[844.73,409.74],[844.72,409.74],[844.72,409.74],[844.71,409.74],[844.7,409.74],[844.7,409.74],[844.69,409.74],[844.68,409.74],[844.68,409.74],[844.67,409.74],[844.66,409.74],[844.66,409.74],[844.65,409.75],[844.65,409.75],[844.64,409.75],[844.64,409.75],[844.63,409.75],[844.63,409.75],[844.62,409.75],[844.62,409.76],[844.61,409.76],[844.6,409.77],[844.58,409.78],[844.57,409.8],[844.55,409.81],[844.54,409.82],[844.54,409.83],[844.53,409.84],[844.52,409.86],[844.5,409.9],[844.47,409.96],[844.45,410.01],[844.42,410.06],[844.42,410.07],[844.41,410.08],[844.39,410.1],[844.38,410.12],[844.37,410.12],[844.37,410.13],[844.37,410.13],[844.35,410.18],[844.35,410.18],[844.32,410.22],[844.31,410.24],[844.31,410.24],[844.3,410.26],[844.3,410.26],[844.3,410.27],[844.29,410.27],[844.28,410.3],[844.24,410.36],[844.22,410.4],[844.2,410.43],[844.18,410.46],[844.15,410.53],[844.15,410.54],[844.13,410.55],[844.11,410.57],[844.09,410.6],[844.08,410.61],[844.07,410.62],[844.06,410.64],[844.04,410.67],[844.03,410.7],[844.03,410.7],[844.03,410.71],[844.03,410.72],[844,410.75],[844,410.76],[843.99,410.77],[843.98,410.8],[843.97,410.84],[843.96,410.87],[843.93,410.91],[843.93,410.92],[843.93,410.93],[843.93,410.93],[843.92,411.12],[843.92,411.15],[843.92,411.16],[843.92,411.16],[843.91,411.17],[843.91,411.17],[843.91,411.17],[843.9,411.18],[843.9,411.18],[843.89,411.18],[843.89,411.18],[843.88,411.18],[843.87,411.18],[843.87,411.18],[843.87,411.18],[843.85,411.18],[843.82,411.19],[843.82,411.19],[843.81,411.19],[843.8,411.19],[843.8,411.19],[843.79,411.2],[843.79,411.21],[843.78,411.21],[843.76,411.23],[843.73,411.28],[843.72,411.29],[843.72,411.29],[843.72,411.29],[843.71,411.3],[843.71,411.33],[843.7,411.33],[843.7,411.36],[843.7,411.36],[843.69,411.37],[843.69,411.37],[843.69,411.38],[843.69,411.39],[843.69,411.39],[843.69,411.39],[843.69,411.4],[843.69,411.4],[843.7,411.4],[843.7,411.4],[843.71,411.42],[843.71,411.44],[843.72,411.44],[843.72,411.44],[843.72,411.44],[843.72,411.45],[843.72,411.46],[843.72,411.48],[843.72,411.52],[843.72,411.6],[843.73,411.64],[843.74,411.69],[843.76,411.77],[843.77,411.8],[843.77,411.82],[843.79,411.87],[843.8,411.93],[843.81,411.99],[843.83,412.03],[843.84,412.1],[843.86,412.14],[843.87,412.18],[843.88,412.25],[843.92,412.39],[843.92,412.4],[843.93,412.41],[843.93,412.42],[843.93,412.43],[843.92,412.48],[843.92,412.49],[843.92,412.49],[843.91,412.52],[843.9,412.58],[843.9,412.6],[843.89,412.62],[843.89,412.64],[843.89,412.66],[843.88,412.68],[843.88,412.71],[843.87,412.73],[843.87,412.75],[843.86,412.78],[843.86,412.79],[843.86,412.8],[843.87,412.82],[843.87,412.84],[843.88,412.86],[843.88,412.88],[843.89,412.89],[843.9,412.92],[843.9,412.93],[843.9,412.94],[843.89,412.99],[843.88,413.01],[843.88,413.01],[843.88,413.02],[843.89,413.03],[843.89,413.05],[843.9,413.11],[843.9,413.16],[843.9,413.17],[843.91,413.18],[843.91,413.19],[843.92,413.23],[843.93,413.27],[843.95,413.34],[843.97,413.39],[843.99,413.43],[843.99,413.44],[844,413.46],[844.03,413.5],[844.04,413.51],[844.07,413.55],[844.08,413.57],[844.08,413.58],[844.09,413.61],[844.11,413.63],[844.13,413.64],[844.15,413.65],[844.16,413.65],[844.18,413.67],[844.19,413.67],[844.2,413.67],[844.22,413.67],[844.33,413.71],[844.42,413.72],[844.47,413.73],[844.49,413.74],[844.5,413.75],[844.5,413.75],[844.51,413.77],[844.52,413.79],[844.52,413.8],[844.52,413.8],[844.53,413.8],[844.53,413.81],[844.53,413.82],[844.55,413.87],[844.56,413.89],[844.58,413.92],[844.59,413.95],[844.59,413.95],[844.59,413.96],[844.59,413.96],[844.59,413.97],[844.59,414],[844.58,414.04],[844.58,414.05],[844.57,414.06],[844.57,414.07],[844.57,414.08],[844.56,414.09],[844.53,414.14],[844.49,414.2],[844.47,414.23],[844.43,414.3],[844.43,414.31],[844.35,414.43],[844.34,414.46],[844.34,414.46],[844.34,414.47],[844.32,414.49],[844.31,414.5],[844.31,414.5],[844.31,414.51],[844.31,414.51],[844.31,414.51],[844.31,414.51],[844.31,414.51],[844.31,414.52],[844.31,414.52],[844.31,414.52],[844.31,414.52],[844.31,414.52],[844.31,414.54],[844.31,414.56],[844.31,414.56],[844.32,414.57],[844.32,414.57],[844.32,414.57],[844.32,414.6],[844.33,414.66],[844.34,414.71],[844.34,414.73],[844.34,414.75],[844.34,414.75],[844.35,414.81],[844.36,414.88],[844.37,414.93],[844.37,414.94],[844.37,414.95],[844.38,414.98],[844.38,415.03],[844.39,415.07],[844.39,415.08],[844.39,415.09],[844.39,415.09],[844.39,415.1],[844.4,415.1],[844.4,415.11],[844.4,415.12],[844.47,415.29],[844.5,415.35],[844.51,415.38],[844.54,415.43],[844.57,415.5],[844.57,415.51],[844.57,415.51],[844.57,415.53],[844.54,415.63],[844.51,415.78],[844.47,415.98],[844.43,416.04],[844.38,416.13],[844.31,416.22],[844.22,416.29],[844.18,416.37],[844.17,416.41],[844.11,416.5],[844.09,416.52],[844.08,416.54],[844.08,416.55],[844.08,416.56],[844.08,416.57],[844.1,416.66],[844.1,416.7],[844.12,416.83],[844.13,416.88],[844.14,416.93],[844.15,416.97],[844.19,417.09],[844.2,417.14],[844.22,417.22],[844.22,417.23],[844.23,417.27],[844.26,417.38],[844.27,417.39],[844.27,417.4],[844.27,417.41],[844.3,417.5],[844.3,417.52],[844.31,417.53],[844.31,417.54],[844.31,417.55],[844.32,417.56],[844.32,417.57],[844.33,417.59],[844.35,417.61],[844.36,417.64],[844.37,417.66],[844.38,417.67],[844.39,417.69],[844.4,417.71],[844.41,417.72],[844.41,417.73],[844.42,417.74],[844.43,417.74],[844.44,417.76],[844.45,417.78],[844.46,417.78],[844.46,417.78],[844.46,417.79],[844.46,417.79],[844.46,417.79],[844.46,417.79],[844.46,417.8],[844.46,417.81],[844.46,417.83],[844.46,417.85],[844.45,417.87],[844.45,417.89],[844.45,417.9],[844.45,417.9],[844.45,417.9],[844.45,417.91],[844.44,417.91],[844.44,417.91],[844.44,417.91],[844.43,417.92],[844.42,417.93],[844.42,417.94],[844.42,417.94],[844.41,417.95],[844.41,417.95],[844.41,417.95],[844.4,417.95],[844.33,417.97],[844.32,417.97],[844.32,417.98],[844.32,417.98],[844.25,418.04],[844.25,418.04],[844.25,418.05],[844.25,418.05],[844.25,418.06],[844.21,418.31],[844.21,418.31],[844.2,418.38],[844.17,418.54],[844.17,418.56],[844.17,418.58],[844.16,418.64],[844.16,418.64],[844.15,418.67],[844.15,418.7],[844.14,418.71],[844.14,418.71],[844.15,418.72],[844.15,418.73],[844.15,418.78],[844.16,418.79],[844.16,418.79],[844.16,418.8],[844.16,418.8],[844.14,418.88],[844.14,418.9],[844.13,418.92],[844.12,418.95],[844.1,418.98],[844.09,419.03],[844.08,419.05],[844.07,419.08],[844.05,419.12],[844.04,419.14],[844.02,419.19],[844,419.22],[844,419.23],[844,419.23],[844,419.24],[844,419.26],[844,419.26],[844,419.27],[844,419.28],[844.01,419.31],[844.02,419.35],[844.05,419.49],[844.05,419.5],[844.05,419.51],[844.05,419.52],[844.06,419.7],[844.06,419.71],[844.06,419.71],[844.09,419.83],[844.09,419.83],[844.09,419.84],[844.09,419.87],[844.09,419.88],[844.08,419.88],[844.07,419.89],[844.06,419.91],[844.05,419.92],[844.05,419.92],[844.05,419.93],[844.03,419.98],[844,420.05],[843.99,420.07],[843.99,420.08],[843.98,420.1],[843.96,420.14],[843.96,420.15],[843.95,420.17],[843.95,420.18],[843.95,420.18],[843.95,420.19],[843.94,420.24],[843.94,420.26],[843.93,420.31],[843.92,420.39],[843.92,420.39],[843.92,420.4],[843.92,420.4],[843.92,420.4],[843.92,420.41],[843.92,420.41],[843.93,420.43],[843.93,420.43],[843.93,420.44],[843.93,420.44],[843.94,420.45],[843.94,420.45],[843.93,420.45],[843.93,420.46],[843.88,420.56],[843.87,420.59],[843.86,420.59],[843.86,420.6],[843.82,420.62],[843.82,420.63],[843.81,420.63],[843.79,420.66],[843.79,420.66],[843.79,420.67],[843.76,420.69],[843.75,420.7],[843.75,420.7],[843.75,420.71],[843.75,420.71],[843.75,420.72],[843.74,420.74],[843.72,420.8],[843.72,420.82],[843.72,420.82],[843.72,420.82],[843.72,420.83],[843.7,420.85],[843.7,420.85],[843.7,420.86],[843.69,420.87],[843.69,420.87],[843.69,420.91],[843.67,421],[843.67,421.01],[843.66,421.05],[843.65,421.11],[843.65,421.14],[843.64,421.15],[843.65,421.16],[843.65,421.23],[843.65,421.24],[843.64,421.27],[843.64,421.28],[843.64,421.28],[843.63,421.3],[843.63,421.34],[843.62,421.37],[843.62,421.39],[843.61,421.4],[843.61,421.42],[843.61,421.43],[843.61,421.43],[843.6,421.45],[843.59,421.52],[843.57,421.63],[843.57,421.63],[843.57,421.63],[843.57,421.64],[843.56,421.64],[843.54,421.68],[843.54,421.68],[843.53,421.69],[843.52,421.7],[843.35,421.81],[843.35,421.81],[843.35,421.81],[843.35,421.81],[843.34,421.82],[843.32,421.85],[843.28,421.9],[843.1,422.16],[843.09,422.17],[843.09,422.18],[843.08,422.19],[843.08,422.2],[843.01,422.4],[842.96,422.54],[842.96,422.55],[842.83,422.79],[842.8,422.84],[842.78,422.88],[842.64,423.13],[842.62,423.16],[842.62,423.17],[842.62,423.17],[842.62,423.17],[842.62,423.17],[842.62,423.18],[842.62,423.21],[842.62,423.22],[842.62,423.23],[842.62,423.23],[842.62,423.23],[842.62,423.24],[842.62,423.24],[842.57,423.28],[842.53,423.33],[842.48,423.37],[842.44,423.41],[842.43,423.42],[842.43,423.42],[842.43,423.43],[842.42,423.44],[842.4,423.49],[842.39,423.52],[842.38,423.53],[842.38,423.53],[842.38,423.53],[842.37,423.53],[842.18,423.58],[842.18,423.59],[842.18,423.59],[842.18,423.59],[842.17,423.6],[842.17,423.6],[842.17,423.61],[842.17,423.66],[842.17,423.66],[842.17,423.66],[842.17,423.66],[842.17,423.67],[842.06,423.84],[842.05,423.85],[841.91,424.14],[841.91,424.15],[841.69,424.45],[841.69,424.45],[841.69,424.46],[841.69,424.46],[841.69,424.46],[841.69,424.46],[841.7,424.58],[841.7,424.59],[841.7,424.6],[841.7,424.6],[841.7,424.6],[841.7,424.61],[841.69,424.62],[841.68,424.62],[841.68,424.63],[841.68,424.63],[841.67,424.65],[841.67,424.65],[841.67,424.66],[841.65,424.68],[841.64,424.7],[841.63,424.7],[841.62,424.71],[841.61,424.74],[841.6,424.75],[841.6,424.75],[841.6,424.75],[841.6,424.75],[841.58,424.76],[841.57,424.76],[841.57,424.76],[841.56,424.76],[841.56,424.76],[841.55,424.76],[841.55,424.76],[841.54,424.76],[841.54,424.77],[841.53,424.77],[841.53,424.77],[841.51,424.82],[841.5,424.83],[841.49,424.9],[841.49,424.91],[841.49,424.91],[841.49,424.92],[841.49,424.92],[841.49,424.93],[841.49,424.93],[841.49,424.93],[841.49,424.94],[841.49,424.94],[841.49,424.94],[841.48,424.95],[841.48,424.95],[841.47,424.95],[841.47,424.96],[841.45,425.09],[841.45,425.09],[841.45,425.1],[841.45,425.1],[841.44,425.11],[841.43,425.11],[841.39,425.14],[841.38,425.14],[841.38,425.15],[841.36,425.2],[841.36,425.2],[841.36,425.21],[841.36,425.21],[841.36,425.25],[841.36,425.26],[841.36,425.26],[841.35,425.26],[841.32,425.31],[841.31,425.32],[841.31,425.32],[841.31,425.33],[841.29,425.4],[841.29,425.4],[841.29,425.41],[841.3,425.5],[841.31,425.5],[841.31,425.51],[841.31,425.51],[841.3,425.56],[841.3,425.57],[841.3,425.57],[841.3,425.57],[841.31,425.58],[841.32,425.6],[841.32,425.62],[841.32,425.62],[841.32,425.62],[841.32,425.63],[841.32,425.63],[841.31,425.78],[841.3,425.79],[841.3,425.8],[841.31,425.84],[841.31,425.85],[841.31,425.86],[841.31,425.86],[841.31,425.87],[841.28,426.06],[841.28,426.06],[841.28,426.06],[841.28,426.07],[841.27,426.07],[841.27,426.07],[841.25,426.08],[841.25,426.08],[841.25,426.1],[841.24,426.1],[841.24,426.1],[841.23,426.1],[841.22,426.09],[841.21,426.09],[841.21,426.09],[841.21,426.09],[841.21,426.09],[841.2,426.09],[841.2,426.09],[841.16,426.1],[841.16,426.1],[841.15,426.1],[841.15,426.1],[841.05,426.21],[841.04,426.21],[841.02,426.23],[840.92,426.32],[840.9,426.35],[840.9,426.35],[840.89,426.35],[840.89,426.36],[840.87,426.39],[840.85,426.44],[840.83,426.47],[840.83,426.49],[840.82,426.5],[840.82,426.5],[840.82,426.5],[840.8,426.53],[840.78,426.56],[840.76,426.57],[840.76,426.58],[840.76,426.59],[840.75,426.59],[840.75,426.6],[840.75,426.61],[840.75,426.62],[840.74,426.62],[840.73,426.64],[840.73,426.65],[840.73,426.66],[840.73,426.67],[840.72,426.67],[840.72,426.67],[840.71,426.69],[840.7,426.7],[840.67,426.73],[840.67,426.73],[840.66,426.73],[840.66,426.74],[840.64,426.75],[840.64,426.75],[840.64,426.76],[840.62,426.79],[840.61,426.8],[840.61,426.81],[840.61,426.81],[840.61,426.83],[840.61,426.84],[840.61,426.85],[840.61,426.85],[840.6,426.85],[840.6,426.86],[840.55,426.89],[840.53,426.9],[840.52,426.9],[840.52,426.9],[840.52,426.9],[840.52,426.91],[840.51,426.93],[840.51,426.93],[840.5,426.94],[840.5,426.94],[840.49,426.95],[840.48,426.95],[840.46,426.96],[840.45,426.97],[840.44,426.97],[840.44,426.97],[840.44,426.98],[840.43,426.98],[840.43,426.99],[840.41,427.06],[840.41,427.06],[840.41,427.07],[840.4,427.08],[840.4,427.08],[840.4,427.09],[840.4,427.11],[840.4,427.11],[840.4,427.12],[840.36,427.17],[840.35,427.18],[840.32,427.24],[840.32,427.24],[840.32,427.24],[840.29,427.26],[840.28,427.27],[840.28,427.27],[840.28,427.28],[840.28,427.28],[840.28,427.29],[840.28,427.3],[840.28,427.3],[840.28,427.31],[840.29,427.32],[840.3,427.35],[840.32,427.38],[840.32,427.38],[840.32,427.39],[840.32,427.4],[840.33,427.41],[840.34,427.42],[840.34,427.44],[840.35,427.46],[840.36,427.46],[840.36,427.48],[840.37,427.49],[840.37,427.49],[840.37,427.5],[840.38,427.51],[840.38,427.52],[840.37,427.53],[840.37,427.54],[840.37,427.55],[840.37,427.57],[840.37,427.58],[840.37,427.59],[840.37,427.63],[840.37,427.67],[840.37,427.68],[840.37,427.71],[840.37,427.74],[840.37,427.76],[840.36,427.78],[840.36,427.8],[840.36,427.83],[840.36,427.84],[840.36,427.87],[840.36,427.89],[840.35,427.91],[840.35,427.93],[840.35,427.95],[840.35,427.95],[840.35,427.96],[840.35,427.96],[840.35,427.97],[840.35,427.98],[840.35,427.98],[840.34,427.98],[840.34,427.99],[840.33,427.99],[840.31,428],[840.3,428],[840.3,428],[840.3,428],[840.29,428.01],[840.27,428.05],[840.26,428.06],[840.26,428.06],[840.25,428.07],[840.25,428.08],[840.25,428.09],[840.25,428.09],[840.25,428.11],[840.25,428.11],[840.25,428.12],[840.25,428.12],[840.24,428.14],[840.24,428.14],[840.24,428.14],[840.23,428.15],[840.22,428.16],[840.22,428.16],[840.21,428.17],[840.21,428.18],[840.21,428.18],[840.21,428.19],[840.21,428.2],[840.21,428.2],[840.21,428.21],[840.2,428.23],[840.2,428.23],[840.19,428.25],[840.18,428.26],[840.18,428.27],[840.18,428.27],[840.17,428.29],[840.16,428.31],[840.15,428.32],[840.15,428.33],[840.14,428.34],[840.14,428.35],[840.13,428.35],[840.13,428.36],[840.13,428.36],[840.13,428.36],[840.13,428.36],[840.09,428.36],[840.08,428.36],[840.08,428.36],[840.08,428.36],[840.07,428.37],[840.05,428.38],[840.05,428.38],[840.05,428.38],[840.04,428.39],[840.04,428.39],[840,428.38],[839.99,428.38],[839.95,428.38],[839.94,428.38],[839.93,428.38],[839.92,428.38],[839.92,428.38],[839.92,428.38],[839.91,428.38],[839.88,428.39],[839.88,428.4],[839.87,428.4],[839.85,428.43],[839.85,428.43],[839.85,428.43],[839.85,428.43],[839.85,428.44],[839.85,428.44],[839.85,428.46],[839.85,428.47],[839.85,428.47],[839.86,428.49],[839.86,428.5],[839.86,428.52],[839.86,428.56],[839.86,428.61],[839.87,428.65],[839.87,428.65],[839.87,428.66],[839.86,428.68],[839.86,428.69],[839.86,428.69],[839.87,428.7],[839.87,428.71],[839.87,428.71],[839.85,428.75],[839.85,428.75],[839.85,428.76],[839.85,428.76],[839.86,428.76],[839.88,428.81],[839.88,428.82],[839.88,428.82],[839.87,428.86],[839.87,428.86],[839.87,428.87],[839.87,428.87],[839.87,428.87],[839.87,428.89],[839.87,428.9],[839.87,428.9],[839.89,428.96],[839.89,428.97],[839.91,429.03],[839.91,429.04],[839.92,429.07],[839.93,429.1],[839.95,429.15],[839.95,429.16],[839.96,429.19],[839.96,429.2],[839.96,429.21],[839.96,429.21],[839.97,429.22],[839.97,429.23],[839.97,429.23],[839.96,429.23],[839.96,429.24],[839.96,429.24],[839.93,429.29],[839.92,429.29],[839.92,429.29],[839.92,429.3],[839.92,429.3],[839.92,429.3],[839.93,429.34],[839.94,429.36],[839.94,429.38],[839.94,429.4],[839.94,429.4],[839.94,429.4],[839.94,429.41],[839.93,429.43],[839.92,429.45],[839.92,429.45],[839.92,429.45],[839.92,429.46],[839.93,429.48],[839.93,429.5],[839.93,429.5],[839.93,429.51],[839.93,429.51],[839.94,429.52],[839.94,429.53],[839.94,429.56],[839.94,429.57],[839.94,429.57],[839.94,429.61],[839.94,429.62],[839.93,429.64],[839.92,429.66],[839.91,429.7],[839.91,429.71],[839.91,429.71],[839.91,429.72],[839.91,429.72],[839.91,429.72],[839.86,429.77],[839.86,429.78],[839.84,429.81],[839.83,429.81],[839.83,429.82],[839.83,429.84],[839.83,429.84],[839.83,429.84],[839.81,429.86],[839.79,429.88],[839.79,429.89],[839.78,429.89],[839.78,429.89],[839.76,429.89],[839.76,429.89],[839.76,429.9],[839.73,429.91],[839.73,429.91],[839.73,429.92],[839.73,429.92],[839.73,429.92],[839.72,429.93],[839.72,429.95],[839.72,429.97],[839.72,429.99],[839.72,430.01],[839.72,430.09],[839.72,430.09],[839.72,430.1],[839.73,430.12],[839.73,430.12],[839.73,430.13],[839.73,430.13],[839.73,430.13],[839.73,430.13],[839.72,430.14],[839.7,430.17],[839.69,430.18],[839.69,430.18],[839.69,430.19],[839.67,430.25],[839.66,430.25],[839.66,430.26],[839.66,430.26],[839.66,430.27],[839.66,430.3],[839.66,430.3],[839.66,430.3],[839.67,430.31],[839.68,430.33],[839.69,430.34],[839.7,430.36],[839.7,430.37],[839.72,430.41],[839.76,430.49],[839.76,430.5],[839.77,430.5],[839.77,430.55],[839.77,430.55],[839.77,430.55],[839.76,430.61],[839.76,430.61],[839.76,430.64],[839.76,430.66],[839.76,430.67],[839.75,430.74],[839.75,430.76],[839.75,430.83],[839.75,430.85],[839.74,430.87],[839.74,430.87],[839.75,430.9],[839.75,430.93],[839.76,430.96],[839.76,430.96],[839.76,430.97],[839.76,430.97],[839.76,430.97],[839.75,430.98],[839.73,431.03],[839.73,431.03],[839.73,431.04],[839.71,431.07],[839.68,431.15],[839.67,431.18],[839.66,431.19],[839.66,431.21],[839.66,431.21],[839.65,431.25],[839.65,431.27],[839.64,431.31],[839.64,431.34],[839.64,431.34],[839.63,431.36],[839.63,431.37],[839.63,431.38],[839.62,431.45],[839.62,431.45],[839.62,431.47],[839.63,431.48],[839.63,431.48],[839.63,431.49],[839.63,431.49],[839.62,431.51],[839.61,431.53],[839.6,431.58],[839.6,431.59],[839.59,431.59],[839.59,431.61],[839.58,431.69],[839.58,431.72],[839.57,431.78],[839.57,431.78],[839.57,431.79],[839.58,431.8],[839.59,431.84],[839.59,431.85],[839.59,431.85],[839.59,431.86],[839.59,431.88],[839.59,431.89],[839.59,431.9],[839.59,431.94],[839.59,431.94],[839.59,431.98],[839.59,432.01],[839.59,432.01],[839.59,432.02],[839.59,432.02],[839.59,432.03],[839.57,432.06],[839.57,432.07],[839.56,432.11],[839.56,432.14],[839.55,432.15],[839.55,432.16],[839.54,432.22],[839.54,432.24],[839.54,432.25],[839.54,432.25],[839.54,432.25],[839.55,432.3],[839.55,432.33],[839.56,432.39],[839.56,432.39],[839.56,432.41],[839.56,432.43],[839.56,432.43],[839.56,432.44],[839.56,432.5],[839.56,432.5],[839.56,432.52],[839.55,432.53],[839.54,432.55],[839.54,432.56],[839.53,432.62],[839.53,432.64],[839.51,432.73],[839.51,432.74],[839.51,432.74],[839.51,432.75],[839.51,432.75],[839.51,432.76],[839.53,432.79],[839.56,432.87],[839.57,432.9],[839.58,432.92],[839.59,432.94],[839.62,433.01],[839.63,433.03],[839.64,433.07],[839.65,433.08],[839.65,433.09],[839.65,433.1],[839.65,433.1],[839.65,433.16],[839.65,433.17],[839.65,433.17],[839.65,433.17],[839.66,433.18],[839.68,433.21],[839.7,433.24],[839.71,433.25],[839.71,433.26],[839.72,433.27],[839.72,433.27],[839.73,433.27],[839.73,433.28],[839.74,433.28],[839.76,433.29],[839.76,433.29],[839.77,433.3],[839.77,433.3],[839.77,433.3],[839.77,433.31],[839.78,433.31],[839.78,433.32],[839.78,433.32],[839.78,433.33],[839.79,433.44],[839.79,433.45],[839.8,433.5],[839.8,433.54],[839.81,433.56],[839.81,433.6],[839.81,433.61],[839.81,433.64],[839.82,433.65],[839.82,433.65],[839.82,433.66],[839.83,433.68],[839.84,433.71],[839.86,433.75],[839.86,433.76],[839.87,433.77],[839.9,433.83],[839.9,433.83],[839.9,433.83],[839.9,433.84],[839.9,433.85],[839.9,433.86],[839.9,433.87],[839.91,433.89],[839.91,433.91],[839.92,433.97],[839.92,433.98],[839.92,433.99],[839.92,434.01],[839.92,434.02],[839.92,434.04],[839.92,434.08],[839.92,434.1],[839.93,434.19],[839.93,434.19],[839.93,434.23],[839.94,434.26],[839.94,434.28],[839.94,434.33],[839.95,434.37],[839.96,434.48],[839.96,434.49],[839.96,434.5],[839.95,434.55],[839.95,434.56],[839.95,434.63],[839.94,434.66],[839.94,434.67],[839.94,434.67],[839.94,434.68],[839.94,434.68],[839.95,434.69],[839.96,434.73],[839.96,434.73],[839.97,434.74],[839.98,434.76],[839.99,434.77],[840.01,434.81],[840.02,434.82],[840.03,434.84],[840.07,434.9],[840.07,434.9],[840.07,434.91],[840.07,434.91],[840.07,434.92],[840.07,434.92],[840.07,434.99],[840.07,434.99],[840.07,435],[840.07,435.05],[840.07,435.07],[840.07,435.1],[840.07,435.1],[840.07,435.11],[840.08,435.15],[840.08,435.16],[840.08,435.16],[840.09,435.17],[840.09,435.17],[840.13,435.23],[840.15,435.25],[840.15,435.26],[840.15,435.26],[840.15,435.27],[840.15,435.27],[840.16,435.29],[840.16,435.35],[840.17,435.43],[840.18,435.44],[840.19,435.49],[840.19,435.5],[840.19,435.5],[840.19,435.5],[840.19,435.51],[840.19,435.51],[840.09,435.65],[840.08,435.67],[840.07,435.68],[840.07,435.68],[840.06,435.72],[840.05,435.72],[840.04,435.77],[840.03,435.78],[840.03,435.78],[840.03,435.79],[840.03,435.79],[840.03,435.8],[840.03,435.8],[840.04,435.84],[840.04,435.86],[840.04,435.87],[840.05,436],[840.06,436.01],[840.07,436.05],[840.07,436.06],[840.07,436.06],[840.07,436.07],[840.07,436.07],[840.07,436.07],[840.03,436.13],[840.02,436.14],[840.01,436.16],[840,436.18],[840,436.18],[840,436.18],[840,436.19],[839.99,436.19],[839.99,436.2],[839.99,436.24],[839.99,436.28],[839.99,436.29],[839.99,436.29],[840,436.34],[840,436.35],[840,436.36],[840.01,436.44],[840.01,436.44],[840.01,436.45],[840.01,436.46],[840.01,436.46],[840.01,436.47],[839.97,436.54],[839.97,436.54],[839.97,436.55],[839.97,436.55],[839.97,436.56],[839.97,436.56],[839.97,436.56],[839.97,436.57],[839.99,436.6],[840,436.63],[840,436.64],[840,436.64],[840.01,436.65],[840.02,436.66],[840.02,436.67],[840.03,436.68],[840.06,436.72],[840.06,436.73],[840.08,436.75],[840.08,436.75],[840.09,436.76],[840.09,436.76],[840.09,436.77],[840.1,436.78],[840.1,436.78],[840.1,436.79],[840.1,436.79],[840.11,436.79],[840.11,436.8],[840.11,436.84],[840.11,436.86],[840.11,436.89],[840.12,436.92],[840.12,436.94],[840.12,436.97],[840.12,436.99],[840.12,437.01],[840.12,437.01],[840.13,437.02],[840.13,437.03],[840.17,437.09],[840.17,437.1],[840.19,437.14],[840.2,437.15],[840.2,437.16],[840.2,437.17],[840.2,437.2],[840.19,437.24],[840.19,437.27],[840.19,437.28],[840.18,437.39],[840.18,437.41],[840.19,437.42],[840.2,437.43],[840.29,437.57],[840.34,437.64],[840.35,437.65],[840.37,437.65],[840.4,437.66],[840.4,437.66],[840.44,437.67],[840.45,437.68],[840.46,437.68],[840.47,437.7],[840.48,437.74],[840.49,437.76],[840.5,437.77],[840.54,437.8],[840.55,437.81],[840.56,437.83],[840.57,437.86],[840.58,437.9],[840.59,437.9],[840.59,437.91],[840.61,437.91],[840.62,437.91],[840.64,437.92],[840.65,437.92],[840.67,437.93],[840.69,437.94],[840.7,437.95],[840.7,437.95],[840.71,437.95],[840.72,437.97],[840.72,437.97],[840.72,437.97],[840.78,438.03],[840.79,438.04],[840.79,438.04],[840.79,438.05],[840.79,438.06],[840.83,438.18],[840.83,438.19],[840.83,438.19],[840.83,438.2],[840.87,438.23],[840.87,438.23],[840.87,438.24],[840.87,438.24],[840.87,438.24],[840.88,438.25],[840.88,438.25],[840.91,438.4],[840.93,438.48],[840.94,438.52],[840.98,438.66],[840.98,438.68],[840.98,438.68],[840.98,438.74],[840.98,438.77],[840.98,438.78],[840.98,438.79],[840.98,438.79],[840.99,438.8],[841.08,438.97],[841.08,438.98],[841.08,438.98],[841.08,438.99],[841.09,438.99],[841.11,439.29],[841.11,439.49],[841.11,439.5],[841.11,439.5],[841.11,439.51],[841.11,439.51],[841.18,439.65],[841.19,439.66],[841.19,439.66],[841.2,439.69],[841.2,439.7],[841.23,439.8],[841.24,439.87],[841.24,439.87],[841.24,439.88],[841.24,439.88],[841.24,439.89],[841.24,439.89],[841.24,439.89],[841.2,439.98],[841.19,439.99],[841.18,440.04],[841.17,440.07],[841.15,440.12],[841.15,440.12],[841.15,440.13],[841.15,440.13],[841.16,440.2],[841.18,440.34],[841.18,440.35],[841.19,440.4],[841.19,440.4],[841.19,440.41],[841.19,440.46],[841.19,440.49],[841.2,440.52],[841.2,440.59],[841.21,440.67],[841.21,440.7],[841.21,440.7],[841.21,440.71],[841.21,440.71],[841.26,440.83],[841.27,440.83],[841.27,440.84],[841.33,441.03],[841.33,441.03],[841.33,441.03],[841.33,441.04],[841.33,441.04],[841.34,441.04],[841.34,441.04],[841.34,441.05],[841.35,441.05],[841.35,441.05],[841.4,441.06],[841.4,441.06],[841.4,441.06],[841.41,441.06],[841.41,441.06],[841.46,441.1],[841.55,441.17],[841.56,441.17],[841.56,441.17],[841.56,441.18],[841.56,441.18],[841.57,441.18],[841.57,441.19],[841.58,441.28],[841.58,441.29],[841.58,441.29],[841.58,441.3],[841.58,441.3],[841.62,441.35],[841.63,441.37],[841.66,441.41],[841.66,441.41],[841.66,441.42],[841.67,441.42],[841.67,441.42],[841.67,441.43],[841.72,441.45],[841.79,441.48],[841.82,441.5],[841.91,441.54],[842,441.58],[842.05,441.61],[842.06,441.61],[842.06,441.61],[842.08,441.62],[842.14,441.65],[842.18,441.67],[842.18,441.68],[842.19,441.68],[842.19,441.68],[842.2,441.69],[842.22,441.71],[842.36,441.88],[842.36,441.89],[842.36,441.89],[842.37,441.9],[842.37,441.91],[842.39,441.97],[842.41,442.01],[842.41,442.02],[842.42,442.04],[842.42,442.06],[842.45,442.12],[842.45,442.12],[842.45,442.13],[842.45,442.13],[842.46,442.14],[842.48,442.15],[842.5,442.16],[842.74,442.3],[842.75,442.31],[842.79,442.33],[842.8,442.33],[842.81,442.34],[842.92,442.38],[842.93,442.38],[842.95,442.39],[842.95,442.39],[842.95,442.39],[842.95,442.39],[842.95,442.39],[842.96,442.4],[842.96,442.4],[842.97,442.41],[842.97,442.42],[842.97,442.42],[842.98,442.42],[842.98,442.42],[843.02,442.44],[843.03,442.44],[843.03,442.44],[843.06,442.44],[843.07,442.44],[843.08,442.44],[843.08,442.44],[843.09,442.44],[843.1,442.44],[843.1,442.44],[843.1,442.45],[843.11,442.46],[843.12,442.46],[843.12,442.46],[843.13,442.46],[843.13,442.46],[843.13,442.46],[843.14,442.46],[843.19,442.44],[843.2,442.44],[843.2,442.44],[843.21,442.43],[843.24,442.41],[843.24,442.41],[843.24,442.41],[843.25,442.41],[843.25,442.41],[843.25,442.41],[843.26,442.41],[843.27,442.41],[843.28,442.41],[843.31,442.43],[843.31,442.43],[843.47,442.48],[843.48,442.49],[843.48,442.49],[843.49,442.49],[843.52,442.52],[843.52,442.52],[843.53,442.52],[843.53,442.52],[843.55,442.53],[843.56,442.53],[843.56,442.53],[843.56,442.53],[843.57,442.53],[843.59,442.52],[843.59,442.52],[843.59,442.52],[843.59,442.52],[843.59,442.52],[843.6,442.53],[843.6,442.53],[843.61,442.53],[843.61,442.53],[843.62,442.53],[843.62,442.53],[843.62,442.54],[843.63,442.54],[843.63,442.54],[843.63,442.54],[843.63,442.54],[843.65,442.54],[843.67,442.54],[843.68,442.54],[843.69,442.54],[843.7,442.53],[843.76,442.51],[843.77,442.51],[843.78,442.51],[843.79,442.51],[843.81,442.5],[843.85,442.49],[843.87,442.49],[843.87,442.49],[843.88,442.49],[843.89,442.49],[843.89,442.5],[843.93,442.51],[843.94,442.52],[843.94,442.52],[843.95,442.52],[843.96,442.54],[843.96,442.54],[843.97,442.55],[844.03,442.58],[844.06,442.59],[844.22,442.69],[844.22,442.69],[844.23,442.69],[844.23,442.7],[844.23,442.7],[844.23,442.7],[844.23,442.71],[844.24,442.71],[844.24,442.71],[844.24,442.73],[844.24,442.74],[844.24,442.79],[844.24,442.8],[844.24,442.81],[844.26,442.88],[844.26,442.89],[844.27,442.94],[844.27,442.97],[844.27,442.98],[844.29,443.14],[844.29,443.16],[844.29,443.16],[844.3,443.17],[844.3,443.18],[844.32,443.26],[844.33,443.28],[844.35,443.34],[844.36,443.4],[844.36,443.42],[844.37,443.42],[844.37,443.46],[844.38,443.48],[844.39,443.54],[844.4,443.55],[844.41,443.59],[844.42,443.66],[844.42,443.67],[844.44,443.73],[844.46,443.82],[844.46,443.84],[844.49,443.97],[844.5,444.01],[844.5,444.03],[844.51,444.04],[844.51,444.07],[844.53,444.16],[844.54,444.2],[844.54,444.21],[844.56,444.32],[844.56,444.32],[844.56,444.33],[844.58,444.37],[844.66,444.54],[844.68,444.57],[844.73,444.67],[844.75,444.72],[844.75,444.73],[844.76,444.74],[844.76,444.75],[844.78,444.87],[844.79,444.87],[844.8,444.93],[844.8,444.94],[844.8,444.95],[844.81,444.95],[844.81,444.95],[844.84,445],[844.85,445.02],[844.9,445.1],[844.92,445.12],[844.94,445.15],[844.97,445.19],[844.99,445.22],[844.99,445.23],[844.99,445.23],[845.05,445.28],[845.05,445.29],[845.05,445.29],[845.14,445.45],[845.14,445.45],[845.15,445.47],[845.15,445.47],[845.16,445.48],[845.18,445.56],[845.19,445.56],[845.2,445.58],[845.2,445.59],[845.21,445.61],[845.21,445.63],[845.21,445.64],[845.21,445.64],[845.21,445.64],[845.21,445.65],[845.21,445.66],[845.2,445.71],[845.19,445.72],[845.19,445.73],[845.18,445.75],[845.18,445.76],[845.18,445.76],[845.16,445.79],[845.16,445.8],[845.16,445.8],[845.16,445.8],[845.16,445.81],[845.16,445.81],[845.17,445.82],[845.17,445.83],[845.17,445.83],[845.17,445.84],[845.17,445.85],[845.17,445.85],[845.17,445.86],[845.16,445.87],[845.16,445.87],[845.15,445.88],[845.15,445.88],[845.15,445.89],[845.14,445.9],[845.14,445.9],[845.14,445.92],[845.13,445.92],[845.13,445.93],[845.12,445.94],[845.12,445.94],[845.12,445.94],[845.12,445.95],[845.11,445.96],[845.11,445.97],[845.11,445.97],[845.11,445.97],[845.11,445.98],[845.11,445.98],[845.12,445.98],[845.15,446.02],[845.19,446.07],[845.2,446.07],[845.22,446.09],[845.22,446.09],[845.25,446.11],[845.25,446.12],[845.25,446.12],[845.25,446.13],[845.26,446.13],[845.26,446.14],[845.26,446.14],[845.26,446.14],[845.26,446.15],[845.25,446.16],[845.25,446.16],[845.25,446.17],[845.25,446.17],[845.25,446.17],[845.25,446.2],[845.26,446.21],[845.26,446.21],[845.26,446.21],[845.25,446.22],[845.25,446.23],[845.25,446.23],[845.25,446.24],[845.25,446.24],[845.26,446.27],[845.27,446.29],[845.28,446.3],[845.3,446.35],[845.31,446.38],[845.31,446.38],[845.31,446.39],[845.31,446.39],[845.31,446.41],[845.31,446.42],[845.31,446.43],[845.31,446.46],[845.3,446.49],[845.3,446.49],[845.3,446.49],[845.3,446.5],[845.29,446.5],[845.29,446.5],[845.29,446.51],[845.27,446.56],[845.25,446.6],[845.25,446.6],[845.25,446.61],[845.25,446.61],[845.25,446.61],[845.25,446.61],[845.26,446.62],[845.29,446.66],[845.29,446.66],[845.29,446.66],[845.3,446.67],[845.3,446.67],[845.31,446.67],[845.33,446.68],[845.33,446.68],[845.34,446.68],[845.34,446.68],[845.36,446.72],[845.37,446.73],[845.37,446.73],[845.45,446.78],[845.46,446.79],[845.47,446.8],[845.5,446.82],[845.5,446.82],[845.51,446.83],[845.52,446.86],[845.54,446.89],[845.57,446.94],[845.58,446.97],[845.62,447.04],[845.67,447.14],[845.68,447.16],[845.7,447.19],[845.73,447.23],[845.74,447.26],[845.75,447.27],[845.75,447.27],[845.75,447.28],[845.75,447.28],[845.75,447.28],[845.74,447.35],[845.74,447.36],[845.74,447.36],[845.75,447.37],[845.77,447.43],[845.77,447.45],[845.78,447.45],[845.78,447.45],[845.78,447.46],[845.78,447.46],[845.78,447.46],[845.83,447.48],[845.84,447.49],[845.85,447.49],[845.85,447.5],[845.85,447.5],[845.86,447.5],[845.86,447.51],[845.87,447.54],[845.88,447.56],[845.92,447.67],[845.92,447.67],[845.92,447.67],[845.92,447.68],[845.92,447.68],[845.92,447.71],[845.92,447.72],[845.92,447.72],[845.92,447.72],[845.92,447.72],[845.93,447.73],[845.97,447.78],[846.01,447.83],[846.03,447.84],[846.03,447.85],[846.08,447.9],[846.1,447.93],[846.11,447.94],[846.13,447.96],[846.13,447.97],[846.15,447.98],[846.16,447.99],[846.17,448],[846.17,448],[846.17,448.01],[846.18,448.01],[846.18,448.01],[846.24,448.02],[846.24,448.02],[846.25,448.02],[846.25,448.02],[846.29,448.01],[846.31,448.01],[846.31,448.01],[846.32,448.01],[846.33,448.01],[846.33,448.01],[846.34,448.01],[846.34,448.02],[846.34,448.02],[846.34,448.02],[846.34,448.05],[846.34,448.05],[846.35,448.05],[846.35,448.05],[846.35,448.06],[846.35,448.06],[846.37,448.06],[846.37,448.06],[846.38,448.06],[846.38,448.06],[846.39,448.07],[846.4,448.08],[846.46,448.14],[846.46,448.14],[846.46,448.14],[846.46,448.15],[846.46,448.16],[846.47,448.16],[846.47,448.17],[846.47,448.17],[846.53,448.22],[846.54,448.23],[846.54,448.24],[846.54,448.24],[846.51,448.25],[846.5,448.26],[846.49,448.26],[846.49,448.26],[846.44,448.28],[846.41,448.29],[846.36,448.3],[846.35,448.31],[846.35,448.31],[846.34,448.31],[846.33,448.32],[846.3,448.33],[846.29,448.33],[846.24,448.36],[846.23,448.37],[846.22,448.37],[846.22,448.38],[846.22,448.38],[846.22,448.38],[846.22,448.39],[846.23,448.4],[846.23,448.41],[846.25,448.48],[846.26,448.5],[846.29,448.57],[846.29,448.58],[846.29,448.58],[846.3,448.58],[846.32,448.61],[846.33,448.62],[846.33,448.62],[846.35,448.68],[846.36,448.68],[846.36,448.68],[846.36,448.69],[846.37,448.69],[846.41,448.74],[846.42,448.75],[846.42,448.75],[846.44,448.77],[846.49,448.87],[846.49,448.87],[846.52,448.93],[846.58,449.02],[846.58,449.02],[846.58,449.03],[846.59,449.04],[846.59,449.04],[846.6,449.05],[846.62,449.06],[846.64,449.08],[846.64,449.08],[846.65,449.09],[846.67,449.1],[846.69,449.12],[846.75,449.16],[846.75,449.16],[846.75,449.17],[846.76,449.17],[846.76,449.17],[846.76,449.18],[846.76,449.19],[846.76,449.19],[846.76,449.19],[846.76,449.19],[846.77,449.2],[846.77,449.2],[846.77,449.2],[846.78,449.2],[846.79,449.2],[846.8,449.2],[846.81,449.21],[846.81,449.21],[846.81,449.21],[846.81,449.21],[846.81,449.21],[846.82,449.21],[846.82,449.21],[846.83,449.21],[846.84,449.21],[846.84,449.21],[846.85,449.22],[846.85,449.22],[846.87,449.22],[846.88,449.21],[846.88,449.21],[846.88,449.21],[846.91,449.2],[846.94,449.19],[846.94,449.19],[846.94,449.18],[846.98,449.18],[847.03,449.17],[847.03,449.17],[847.04,449.17],[847.07,449.16],[847.07,449.16],[847.1,449.16],[847.12,449.15],[847.12,449.15],[847.14,449.15],[847.21,449.13],[847.22,449.13],[847.23,449.13],[847.25,449.13],[847.25,449.13],[847.26,449.12],[847.27,449.12],[847.27,449.12],[847.27,449.12],[847.27,449.12],[847.27,449.12],[847.27,449.13],[847.27,449.14],[847.27,449.14],[847.27,449.14],[847.28,449.14],[847.28,449.14],[847.28,449.14],[847.28,449.14],[847.28,449.14],[847.28,449.14],[847.28,449.14],[847.28,449.15],[847.28,449.15],[847.28,449.15],[847.28,449.15],[847.29,449.15],[847.29,449.15],[847.29,449.15],[847.29,449.15],[847.29,449.15],[847.29,449.15],[847.3,449.15],[847.31,449.15],[847.32,449.15],[847.33,449.15],[847.33,449.15],[847.33,449.15],[847.35,449.16],[847.37,449.16],[847.38,449.16],[847.41,449.16],[847.43,449.16],[847.44,449.16],[847.44,449.17],[847.45,449.17],[847.45,449.17],[847.45,449.17],[847.46,449.17],[847.47,449.17],[847.48,449.18],[847.49,449.18],[847.49,449.18],[847.52,449.19],[847.53,449.19],[847.55,449.2],[847.56,449.2],[847.58,449.21],[847.59,449.21],[847.59,449.22],[847.6,449.22],[847.61,449.22],[847.62,449.22],[847.62,449.22],[847.62,449.23],[847.61,449.23],[847.61,449.23],[847.61,449.24],[847.61,449.24],[847.6,449.26],[847.6,449.26],[847.6,449.26],[847.6,449.27],[847.6,449.27],[847.6,449.28],[847.59,449.29],[847.58,449.33],[847.58,449.33],[847.58,449.34],[847.58,449.36],[847.57,449.38],[847.57,449.38],[847.57,449.39],[847.57,449.42],[847.57,449.42],[847.57,449.42],[847.56,449.44],[847.56,449.45],[847.56,449.47],[847.55,449.48],[847.55,449.48],[847.55,449.48],[847.55,449.49],[847.55,449.5],[847.55,449.5],[847.56,449.54],[847.56,449.63],[847.56,449.68],[847.56,449.71],[847.56,449.78],[847.56,449.79],[847.56,449.8],[847.56,449.81],[847.56,449.86],[847.57,449.88],[847.57,449.89],[847.57,449.89],[847.57,449.91],[847.57,449.91],[847.57,449.93],[847.56,449.95],[847.56,449.95],[847.56,449.96],[847.56,449.97],[847.53,450.04],[847.51,450.08],[847.51,450.09],[847.48,450.16],[847.48,450.18],[847.47,450.21],[847.47,450.24],[847.47,450.25],[847.47,450.26],[847.47,450.27],[847.47,450.27],[847.47,450.29],[847.47,450.29],[847.47,450.31],[847.47,450.31],[847.47,450.35],[847.47,450.35],[847.47,450.35],[847.47,450.35],[847.49,450.4],[847.5,450.42],[847.5,450.42],[847.5,450.42],[847.5,450.45],[847.5,450.45],[847.5,450.45],[847.5,450.45],[847.5,450.46],[847.49,450.47],[847.46,450.51],[847.46,450.51],[847.46,450.51],[847.46,450.51],[847.46,450.56],[847.46,450.56],[847.45,450.59],[847.45,450.61],[847.45,450.62],[847.44,450.66],[847.42,450.72],[847.42,450.75],[847.42,450.75],[847.41,450.77],[847.4,450.82],[847.38,450.93],[847.37,450.94],[847.35,451.01],[847.32,451.1],[847.3,451.15],[847.3,451.16],[847.3,451.17],[847.3,451.18],[847.28,451.27],[847.27,451.31],[847.27,451.33],[847.27,451.34],[847.23,451.5],[847.22,451.51],[847.22,451.52],[847.22,451.53],[847.23,451.54],[847.24,451.62],[847.25,451.69],[847.25,451.69],[847.25,451.69],[847.26,451.69],[847.26,451.69],[847.26,451.69],[847.26,451.69],[847.26,451.69],[847.26,451.69],[847.25,451.7],[847.25,451.7],[847.25,451.7],[847.26,451.77],[847.27,451.8],[847.27,451.83],[847.28,451.86],[847.28,451.88],[847.28,451.89],[847.28,451.9],[847.29,451.91],[847.29,451.92],[847.29,451.93],[847.29,451.94],[847.29,451.95],[847.29,451.97],[847.3,451.98],[847.3,451.99],[847.3,452],[847.3,452.01],[847.3,452.01],[847.3,452.03],[847.31,452.04],[847.31,452.05],[847.31,452.07],[847.31,452.1],[847.32,452.11],[847.32,452.12],[847.32,452.14],[847.33,452.17],[847.33,452.19],[847.33,452.21],[847.33,452.21],[847.33,452.22],[847.33,452.23],[847.33,452.26],[847.33,452.28],[847.33,452.3],[847.33,452.33],[847.33,452.34],[847.33,452.35],[847.33,452.35],[847.33,452.36],[847.33,452.37],[847.33,452.38],[847.33,452.39],[847.32,452.42],[847.32,452.44],[847.32,452.44],[847.32,452.46],[847.32,452.48],[847.32,452.5],[847.31,452.53],[847.31,452.54],[847.31,452.57],[847.31,452.59],[847.31,452.6],[847.31,452.61],[847.3,452.62],[847.3,452.64],[847.3,452.67],[847.3,452.69],[847.3,452.71],[847.3,452.72],[847.29,452.72],[847.29,452.74],[847.29,452.75],[847.29,452.76],[847.29,452.77],[847.29,452.79],[847.29,452.8],[847.28,452.82],[847.28,452.83],[847.28,452.84],[847.28,452.85],[847.28,452.85],[847.28,452.86],[847.28,452.89],[847.28,452.91],[847.28,452.93],[847.28,452.94],[847.28,452.96],[847.28,452.97],[847.28,452.99],[847.28,453.01],[847.28,453.04],[847.28,453.06],[847.28,453.08],[847.28,453.09],[847.28,453.1],[847.28,453.1],[847.28,453.11],[847.28,453.11],[847.29,453.12],[847.29,453.12],[847.3,453.14],[847.3,453.15],[847.3,453.16],[847.31,453.17],[847.31,453.18],[847.31,453.2],[847.32,453.22],[847.32,453.24],[847.33,453.25],[847.33,453.26],[847.33,453.26],[847.33,453.26],[847.33,453.27],[847.33,453.27],[847.34,453.27],[847.35,453.29],[847.35,453.3],[847.36,453.3],[847.36,453.31],[847.36,453.31],[847.36,453.32],[847.36,453.32],[847.36,453.33],[847.36,453.34],[847.36,453.35],[847.36,453.36],[847.37,453.37],[847.37,453.37],[847.37,453.39],[847.37,453.39],[847.37,453.4],[847.37,453.4],[847.37,453.41],[847.36,453.42],[847.36,453.42],[847.36,453.43],[847.35,453.45],[847.34,453.47],[847.34,453.48],[847.33,453.5],[847.32,453.52],[847.32,453.54],[847.31,453.55],[847.3,453.58],[847.3,453.59],[847.29,453.61],[847.28,453.63],[847.27,453.66],[847.26,453.68],[847.25,453.7],[847.24,453.71],[847.24,453.73],[847.23,453.75],[847.22,453.76],[847.22,453.78],[847.22,453.78],[847.21,453.79],[847.21,453.8],[847.21,453.81],[847.21,453.81],[847.21,453.82],[847.21,453.83],[847.2,453.84],[847.2,453.85],[847.2,453.87],[847.2,453.88],[847.2,453.89],[847.2,453.89],[847.2,453.9],[847.19,453.92],[847.18,453.94],[847.18,453.96],[847.17,453.98],[847.17,454],[847.16,454.02],[847.16,454.03],[847.15,454.07],[847.14,454.1],[847.13,454.13],[847.12,454.15],[847.11,454.18],[847.11,454.19],[847.11,454.19],[847.11,454.2],[847.1,454.21],[847.1,454.21],[847.1,454.22],[847.1,454.22],[847.1,454.23],[847.1,454.24],[847.1,454.25],[847.11,454.26],[847.11,454.26],[847.11,454.27],[847.1,454.27],[847.1,454.28],[847.1,454.28],[847.1,454.28],[847.1,454.29],[847.1,454.29],[847.1,454.3],[847.09,454.31],[847.07,454.33],[847.07,454.34],[847.06,454.35],[847.06,454.35],[847.06,454.36],[847.06,454.37],[847.07,454.37],[847.07,454.39],[847.1,454.44],[847.13,454.49],[847.16,454.54],[847.19,454.59],[847.19,454.59],[847.2,454.6],[847.2,454.61],[847.21,454.61],[847.21,454.62],[847.23,454.62],[847.24,454.63],[847.24,454.63],[847.24,454.64],[847.25,454.64],[847.25,454.65],[847.25,454.65],[847.25,454.66],[847.25,454.69],[847.25,454.7],[847.25,454.7],[847.25,454.71],[847.27,454.73],[847.29,454.78],[847.31,454.8],[847.33,454.85],[847.37,454.91],[847.37,454.91],[847.37,454.91],[847.38,454.92],[847.38,454.92],[847.39,454.93],[847.4,454.94],[847.4,454.94],[847.41,454.95],[847.41,454.95],[847.42,454.96],[847.42,454.97],[847.42,454.98],[847.42,454.98],[847.42,454.99],[847.43,455.01],[847.43,455.01],[847.43,455.02],[847.43,455.02],[847.45,455.06],[847.48,455.1],[847.49,455.13],[847.5,455.14],[847.52,455.19],[847.54,455.25],[847.56,455.3],[847.58,455.36],[847.59,455.38],[847.6,455.42],[847.6,455.42],[847.6,455.42],[847.61,455.43],[847.61,455.43],[847.61,455.49],[847.61,455.56],[847.61,455.57],[847.61,455.58],[847.61,455.58],[847.61,455.58],[847.61,455.59],[847.61,455.59],[847.62,455.6],[847.63,455.62],[847.64,455.63],[847.64,455.64],[847.64,455.65],[847.64,455.65],[847.65,455.66],[847.65,455.66],[847.65,455.67],[847.65,455.67],[847.65,455.68],[847.66,455.72],[847.66,455.75],[847.67,455.77],[847.67,455.79],[847.67,455.81],[847.68,455.82],[847.68,455.82],[847.68,455.83],[847.68,455.84],[847.68,455.85],[847.68,455.86],[847.68,455.86],[847.69,455.87],[847.69,455.89],[847.69,455.9],[847.7,455.93],[847.71,455.94],[847.72,455.96],[847.73,455.98],[847.73,455.99],[847.74,456.02],[847.75,456.03],[847.75,456.06],[847.75,456.08],[847.76,456.1],[847.76,456.13],[847.76,456.16],[847.77,456.17],[847.77,456.19],[847.79,456.21],[847.81,456.25],[847.83,456.29],[847.85,456.31],[847.86,456.34],[847.86,456.37],[847.87,456.4],[847.87,456.44],[847.87,456.47],[847.87,456.49],[847.87,456.51],[847.86,456.54],[847.85,456.57],[847.85,456.59],[847.84,456.62],[847.83,456.65],[847.82,456.68],[847.82,456.68],[847.81,456.7],[847.81,456.71],[847.8,456.73],[847.79,456.76],[847.79,456.78],[847.79,456.79],[847.79,456.8],[847.79,456.82],[847.79,456.84],[847.79,456.86],[847.8,456.9],[847.8,456.92],[847.8,456.92],[847.8,456.93],[847.8,456.93],[847.79,456.94],[847.79,456.94],[847.78,456.95],[847.77,456.96],[847.75,456.97],[847.74,456.98],[847.72,457],[847.7,457.02],[847.69,457.03],[847.69,457.03],[847.69,457.04],[847.68,457.04],[847.68,457.06],[847.67,457.07],[847.67,457.07],[847.66,457.09],[847.66,457.1],[847.65,457.11],[847.64,457.13],[847.63,457.15],[847.63,457.16],[847.62,457.17],[847.61,457.17],[847.6,457.18],[847.6,457.18],[847.6,457.18],[847.59,457.19],[847.55,457.2],[847.5,457.22],[847.49,457.23],[847.48,457.24],[847.47,457.24],[847.46,457.25],[847.45,457.25],[847.45,457.26],[847.44,457.26],[847.43,457.27],[847.43,457.27],[847.42,457.28],[847.42,457.29],[847.41,457.29],[847.41,457.3],[847.4,457.31],[847.39,457.32],[847.39,457.33],[847.39,457.34],[847.38,457.34],[847.38,457.35],[847.37,457.36],[847.37,457.37],[847.37,457.37],[847.37,457.38],[847.37,457.39],[847.37,457.4],[847.37,457.41],[847.37,457.42],[847.37,457.42],[847.37,457.43],[847.37,457.44],[847.37,457.45],[847.37,457.45],[847.37,457.45],[847.37,457.46],[847.37,457.46],[847.37,457.47],[847.37,457.48],[847.37,457.48],[847.37,457.49],[847.37,457.5],[847.37,457.51],[847.37,457.51],[847.38,457.52],[847.38,457.52],[847.38,457.53],[847.39,457.54],[847.39,457.54],[847.39,457.55],[847.39,457.55],[847.4,457.56],[847.4,457.57],[847.4,457.57],[847.4,457.57],[847.41,457.58],[847.41,457.58],[847.41,457.59],[847.41,457.59],[847.41,457.59],[847.41,457.59],[847.41,457.6],[847.41,457.6],[847.41,457.61],[847.4,457.61],[847.4,457.62],[847.4,457.62],[847.4,457.63],[847.4,457.64],[847.39,457.64],[847.39,457.65],[847.39,457.66],[847.38,457.66],[847.38,457.67],[847.37,457.67],[847.37,457.68],[847.37,457.68],[847.36,457.69],[847.36,457.69],[847.35,457.7],[847.35,457.7],[847.34,457.71],[847.34,457.71],[847.33,457.71],[847.32,457.72],[847.32,457.72],[847.31,457.72],[847.31,457.72],[847.31,457.73],[847.3,457.73],[847.3,457.73],[847.3,457.73],[847.29,457.74],[847.29,457.74],[847.28,457.75],[847.28,457.75],[847.28,457.75],[847.28,457.76],[847.28,457.76],[847.27,457.77],[847.27,457.77],[847.27,457.78],[847.27,457.78],[847.27,457.79],[847.27,457.79],[847.27,457.8],[847.27,457.81],[847.27,457.82],[847.27,457.85],[847.27,457.88],[847.27,457.89],[847.27,457.9],[847.27,457.91],[847.27,457.92],[847.27,457.93],[847.27,457.94],[847.27,457.95],[847.27,457.97],[847.27,457.98],[847.27,457.99],[847.27,457.99],[847.27,458],[847.27,458.01],[847.27,458.01],[847.27,458.02],[847.27,458.02],[847.27,458.03],[847.27,458.03],[847.27,458.04],[847.27,458.05],[847.26,458.07],[847.26,458.07],[847.26,458.08],[847.26,458.08],[847.26,458.08],[847.26,458.09],[847.25,458.09],[847.25,458.1],[847.24,458.11],[847.22,458.13],[847.21,458.13],[847.21,458.13],[847.21,458.14],[847.21,458.14],[847.21,458.14],[847.21,458.15],[847.21,458.17],[847.21,458.17],[847.21,458.19],[847.2,458.21],[847.2,458.23],[847.2,458.24],[847.2,458.24],[847.2,458.25],[847.2,458.26],[847.2,458.26],[847.2,458.27],[847.2,458.28],[847.2,458.29],[847.19,458.3],[847.19,458.31],[847.19,458.32],[847.19,458.32],[847.19,458.33],[847.19,458.33],[847.19,458.34],[847.19,458.35],[847.19,458.36],[847.18,458.36],[847.18,458.37],[847.18,458.38],[847.17,458.39],[847.17,458.4],[847.17,458.4],[847.16,458.41],[847.16,458.41],[847.16,458.41],[847.16,458.41],[847.16,458.42],[847.16,458.42],[847.16,458.42],[847.16,458.42],[847.16,458.43],[847.16,458.43],[847.16,458.43],[847.16,458.43],[847.16,458.43],[847.16,458.44],[847.17,458.44],[847.17,458.44],[847.17,458.44],[847.17,458.44],[847.17,458.45],[847.19,458.46],[847.23,458.48],[847.24,458.48],[847.26,458.49],[847.26,458.49],[847.27,458.5],[847.27,458.5],[847.27,458.5],[847.28,458.5],[847.28,458.51],[847.28,458.51],[847.29,458.51],[847.29,458.52],[847.3,458.52],[847.3,458.53],[847.32,458.54],[847.32,458.55],[847.33,458.56],[847.34,458.57],[847.34,458.57],[847.34,458.58],[847.35,458.58],[847.35,458.59],[847.35,458.59],[847.35,458.59],[847.35,458.59],[847.35,458.59],[847.36,458.6],[847.36,458.6],[847.36,458.6],[847.36,458.6],[847.36,458.6],[847.36,458.61],[847.36,458.61],[847.36,458.61],[847.36,458.61],[847.36,458.61],[847.36,458.61],[847.36,458.62],[847.37,458.62],[847.37,458.62],[847.37,458.62],[847.37,458.63],[847.37,458.63],[847.37,458.63],[847.37,458.63],[847.37,458.64],[847.37,458.64],[847.37,458.64],[847.37,458.65],[847.37,458.65],[847.37,458.65],[847.37,458.66],[847.37,458.68],[847.37,458.68],[847.38,458.69],[847.38,458.69],[847.38,458.7],[847.38,458.7],[847.38,458.7],[847.38,458.71],[847.38,458.72],[847.38,458.73],[847.38,458.73],[847.38,458.73],[847.38,458.74],[847.39,458.74],[847.39,458.74],[847.39,458.75],[847.39,458.76],[847.4,458.76],[847.4,458.77],[847.4,458.77],[847.4,458.78],[847.41,458.79],[847.41,458.8],[847.42,458.82],[847.43,458.83],[847.43,458.84],[847.45,458.86],[847.45,458.88],[847.45,458.88],[847.46,458.89],[847.46,458.89],[847.46,458.9],[847.47,458.91],[847.47,458.92],[847.47,458.93],[847.48,458.94],[847.48,458.95],[847.49,458.97],[847.5,458.98],[847.5,458.99],[847.51,459.01],[847.52,459.02],[847.53,459.03],[847.54,459.05],[847.55,459.07],[847.57,459.1],[847.58,459.11],[847.59,459.13],[847.6,459.14],[847.62,459.16],[847.64,459.19],[847.64,459.2],[847.64,459.2],[847.65,459.21],[847.65,459.21],[847.65,459.22],[847.65,459.23],[847.65,459.23],[847.65,459.24],[847.65,459.25],[847.65,459.26],[847.65,459.26],[847.65,459.28],[847.65,459.28],[847.64,459.3],[847.64,459.32],[847.63,459.33],[847.62,459.35],[847.62,459.36],[847.62,459.37],[847.62,459.37],[847.62,459.38],[847.62,459.38],[847.62,459.38],[847.62,459.39],[847.62,459.39],[847.63,459.4],[847.63,459.4],[847.64,459.41],[847.64,459.41],[847.64,459.41],[847.65,459.41],[847.65,459.42],[847.68,459.43],[847.68,459.43],[847.69,459.43],[847.69,459.43],[847.69,459.44],[847.7,459.44],[847.7,459.44],[847.71,459.44],[847.71,459.45],[847.71,459.45],[847.71,459.45],[847.72,459.46],[847.72,459.46],[847.72,459.46],[847.72,459.46],[847.73,459.47],[847.73,459.47],[847.73,459.48],[847.74,459.49],[847.74,459.5],[847.75,459.53],[847.76,459.54],[847.77,459.56],[847.78,459.59],[847.79,459.61],[847.79,459.62],[847.79,459.63],[847.8,459.66],[847.8,459.68],[847.81,459.71],[847.81,459.72],[847.81,459.73],[847.81,459.73],[847.81,459.74],[847.81,459.74],[847.82,459.75],[847.82,459.75],[847.82,459.76],[847.82,459.76],[847.83,459.77],[847.83,459.77],[847.84,459.78],[847.85,459.78],[847.86,459.79],[847.86,459.79],[847.88,459.79],[847.88,459.8],[847.89,459.8],[847.9,459.8],[847.9,459.8],[847.91,459.81],[847.92,459.81],[847.92,459.82],[847.92,459.82],[847.93,459.83],[847.93,459.84],[847.94,459.84],[847.94,459.85],[847.94,459.85],[847.95,459.86],[847.95,459.86],[847.96,459.86],[847.96,459.87],[847.97,459.87],[847.97,459.87],[847.98,459.87],[847.99,459.87],[847.99,459.87],[848.01,459.87],[848.01,459.87],[848.02,459.87],[848.03,459.88],[848.03,459.88],[848.04,459.88],[848.05,459.88],[848.05,459.89],[848.06,459.89],[848.06,459.9],[848.07,459.9],[848.08,459.91],[848.08,459.92],[848.09,459.93],[848.1,459.95],[848.12,459.96],[848.13,459.98],[848.19,460.06],[848.22,460.09],[848.24,460.11],[848.25,460.13],[848.26,460.14],[848.27,460.15],[848.29,460.17],[848.33,460.21],[848.33,460.22],[848.35,460.23],[848.36,460.24],[848.37,460.25],[848.38,460.25],[848.39,460.25],[848.39,460.25],[848.4,460.26],[848.41,460.26],[848.41,460.26],[848.42,460.26],[848.47,460.26],[848.48,460.26],[848.49,460.26],[848.5,460.26],[848.51,460.26],[848.52,460.27],[848.52,460.27],[848.53,460.27],[848.53,460.27],[848.53,460.28],[848.54,460.28],[848.54,460.28],[848.54,460.29],[848.55,460.3],[848.55,460.3],[848.55,460.31],[848.55,460.32],[848.55,460.32],[848.55,460.33],[848.55,460.34],[848.55,460.34],[848.55,460.35],[848.56,460.36],[848.56,460.37],[848.56,460.38],[848.56,460.39],[848.56,460.39],[848.56,460.4],[848.56,460.41],[848.56,460.42],[848.56,460.42],[848.56,460.43],[848.56,460.43],[848.56,460.44],[848.56,460.44],[848.57,460.45],[848.57,460.45],[848.57,460.45],[848.57,460.46],[848.57,460.47],[848.57,460.47],[848.57,460.48],[848.57,460.48],[848.57,460.49],[848.57,460.5],[848.57,460.5],[848.57,460.51],[848.57,460.51],[848.57,460.52],[848.57,460.52],[848.58,460.53],[848.58,460.53],[848.58,460.54],[848.58,460.54],[848.59,460.54],[848.59,460.55],[848.59,460.55],[848.6,460.55],[848.6,460.56],[848.61,460.56],[848.61,460.56],[848.62,460.56],[848.62,460.56],[848.63,460.56],[848.63,460.56],[848.64,460.56],[848.65,460.56],[848.65,460.57],[848.65,460.57],[848.66,460.57],[848.66,460.57],[848.66,460.58],[848.67,460.58],[848.67,460.59],[848.67,460.59],[848.67,460.59],[848.68,460.6],[848.68,460.61],[848.68,460.62],[848.68,460.62],[848.69,460.63],[848.69,460.64],[848.69,460.65],[848.69,460.66],[848.7,460.67],[848.7,460.68],[848.7,460.69],[848.71,460.7],[848.71,460.71],[848.71,460.72],[848.72,460.73],[848.72,460.74],[848.72,460.75],[848.72,460.76],[848.72,460.76],[848.72,460.77],[848.72,460.78],[848.72,460.78],[848.72,460.79],[848.71,460.79],[848.71,460.8],[848.71,460.81],[848.71,460.82],[848.71,460.83],[848.71,460.84],[848.71,460.84],[848.71,460.85],[848.71,460.86],[848.71,460.86],[848.71,460.87],[848.71,460.87],[848.71,460.88],[848.71,460.88],[848.71,460.89],[848.71,460.89],[848.71,460.9],[848.71,460.91],[848.71,460.92],[848.71,460.92],[848.71,460.93],[848.71,460.93],[848.71,460.94],[848.71,460.95],[848.71,460.96],[848.71,460.96],[848.71,460.97],[848.71,460.98],[848.71,460.98],[848.71,460.99],[848.7,461],[848.7,461.01],[848.7,461.02],[848.7,461.03],[848.7,461.03],[848.7,461.04],[848.69,461.05],[848.69,461.05],[848.69,461.06],[848.69,461.07],[848.69,461.07],[848.69,461.08],[848.68,461.09],[848.68,461.1],[848.68,461.1],[848.68,461.11],[848.68,461.12],[848.68,461.13],[848.68,461.13],[848.68,461.14],[848.68,461.14],[848.68,461.15],[848.68,461.15],[848.68,461.16],[848.68,461.17],[848.68,461.18],[848.68,461.19],[848.68,461.2],[848.68,461.21],[848.68,461.22],[848.69,461.23],[848.69,461.24],[848.69,461.24],[848.7,461.25],[848.7,461.26],[848.7,461.27],[848.71,461.28],[848.71,461.28],[848.71,461.29],[848.72,461.3],[848.72,461.3],[848.72,461.31],[848.72,461.32],[848.73,461.33],[848.73,461.33],[848.73,461.33],[848.73,461.34],[848.73,461.34],[848.73,461.35],[848.73,461.36],[848.73,461.36],[848.73,461.37],[848.73,461.38],[848.73,461.39],[848.73,461.4],[848.73,461.42],[848.73,461.42],[848.73,461.43],[848.73,461.43],[848.73,461.44],[848.73,461.45],[848.73,461.46],[848.73,461.47],[848.73,461.48],[848.73,461.49],[848.73,461.5],[848.73,461.51],[848.73,461.52],[848.74,461.53],[848.74,461.53],[848.74,461.54],[848.74,461.55],[848.75,461.56],[848.75,461.57],[848.76,461.58],[848.76,461.59],[848.76,461.59],[848.77,461.6],[848.77,461.61],[848.78,461.62],[848.78,461.63],[848.78,461.64],[848.79,461.64],[848.79,461.66],[848.79,461.67],[848.8,461.67],[848.8,461.67],[848.81,461.68],[848.81,461.69],[848.81,461.69],[848.82,461.7],[848.82,461.7],[848.83,461.71],[848.84,461.71],[848.84,461.71],[848.86,461.72],[848.87,461.72],[848.88,461.73],[848.89,461.73],[848.9,461.74],[848.91,461.75],[848.93,461.75],[848.94,461.76],[848.95,461.76],[848.96,461.77],[848.97,461.77],[848.98,461.78],[848.98,461.78],[849,461.79],[849.01,461.79],[849.01,461.79],[849.03,461.8],[849.03,461.8],[849.04,461.81],[849.05,461.81],[849.06,461.81],[849.07,461.81],[849.08,461.81],[849.1,461.82],[849.11,461.82],[849.13,461.81],[849.14,461.81],[849.16,461.81],[849.19,461.81],[849.21,461.81],[849.22,461.81],[849.24,461.81],[849.25,461.81],[849.26,461.81],[849.28,461.81],[849.29,461.81],[849.31,461.81],[849.32,461.81],[849.32,461.81],[849.33,461.81],[849.34,461.81],[849.35,461.8],[849.36,461.8],[849.37,461.8],[849.37,461.8],[849.38,461.8],[849.38,461.8],[849.39,461.8],[849.39,461.8],[849.4,461.8],[849.41,461.8],[849.42,461.8],[849.42,461.8],[849.43,461.8],[849.44,461.8],[849.45,461.79],[849.46,461.79],[849.47,461.79],[849.47,461.79],[849.48,461.78],[849.49,461.78],[849.49,461.78],[849.5,461.77],[849.51,461.77],[849.51,461.77],[849.52,461.77],[849.52,461.77],[849.52,461.77],[849.53,461.77],[849.53,461.77],[849.54,461.77],[849.54,461.77],[849.55,461.78],[849.55,461.78],[849.56,461.78],[849.56,461.79],[849.56,461.79],[849.57,461.79],[849.57,461.8],[849.58,461.8],[849.58,461.81],[849.59,461.81],[849.59,461.81],[849.59,461.81],[849.6,461.81],[849.61,461.81],[849.61,461.81],[849.62,461.81],[849.63,461.81],[849.64,461.81],[849.65,461.81],[849.66,461.81],[849.66,461.82],[849.67,461.82],[849.68,461.82],[849.69,461.82],[849.7,461.83],[849.71,461.83],[849.72,461.84],[849.72,461.84],[849.73,461.84],[849.74,461.85],[849.75,461.85],[849.75,461.85],[849.76,461.85],[849.77,461.86],[849.78,461.86],[849.79,461.86],[849.8,461.86],[849.81,461.86],[849.82,461.86],[849.83,461.86],[849.84,461.86],[849.85,461.85],[849.86,461.85],[849.87,461.85],[849.88,461.85],[849.89,461.85],[849.9,461.85],[849.92,461.85],[849.93,461.85],[849.94,461.85],[849.96,461.85],[849.96,461.85],[849.97,461.85],[849.98,461.85],[849.98,461.85],[849.99,461.85],[849.99,461.85],[849.99,461.85],[850,461.85],[850,461.85],[850.01,461.85],[850.01,461.86],[850.02,461.86],[850.02,461.86],[850.02,461.86],[850.03,461.87],[850.03,461.87],[850.03,461.88],[850.03,461.88],[850.04,461.9],[850.04,461.91],[850.04,461.92],[850.05,461.92],[850.05,461.93],[850.06,461.94],[850.06,461.94],[850.07,461.95],[850.08,461.96],[850.09,461.97],[850.09,461.97],[850.1,461.98],[850.11,461.98],[850.11,461.99],[850.12,461.99],[850.12,462],[850.13,462],[850.13,462.01],[850.14,462.02],[850.14,462.03],[850.15,462.03],[850.15,462.04],[850.15,462.04],[850.16,462.05],[850.16,462.05],[850.16,462.06],[850.17,462.06],[850.17,462.07],[850.17,462.07],[850.18,462.08],[850.18,462.08],[850.19,462.08],[850.19,462.09],[850.2,462.09],[850.21,462.1],[850.21,462.1],[850.22,462.1],[850.22,462.11],[850.22,462.11],[850.23,462.11],[850.23,462.12],[850.24,462.12],[850.24,462.13],[850.24,462.13],[850.25,462.13],[850.26,462.14],[850.26,462.15],[850.27,462.15],[850.27,462.16],[850.27,462.16],[850.28,462.16],[850.28,462.17],[850.29,462.17],[850.29,462.17],[850.29,462.17],[850.3,462.18],[850.3,462.18],[850.3,462.19],[850.3,462.19],[850.31,462.19],[850.31,462.2],[850.31,462.2],[850.32,462.2],[850.33,462.21],[850.33,462.21],[850.34,462.22],[850.35,462.23],[850.35,462.23],[850.36,462.24],[850.36,462.24],[850.37,462.25],[850.38,462.25],[850.38,462.25],[850.38,462.26],[850.39,462.26],[850.39,462.26],[850.39,462.26],[850.4,462.26],[850.4,462.26],[850.4,462.26],[850.41,462.26],[850.41,462.26],[850.41,462.27],[850.42,462.27],[850.42,462.27],[850.42,462.27],[850.43,462.28],[850.43,462.28],[850.43,462.28],[850.44,462.29],[850.44,462.29],[850.44,462.29],[850.45,462.29],[850.45,462.29],[850.46,462.3],[850.46,462.3],[850.47,462.3],[850.47,462.3],[850.47,462.3],[850.48,462.3],[850.48,462.3],[850.48,462.3],[850.49,462.3],[850.49,462.3],[850.49,462.3],[850.5,462.3],[850.5,462.3],[850.51,462.3],[850.51,462.3],[850.51,462.3],[850.51,462.3],[850.52,462.3],[850.52,462.3],[850.53,462.3],[850.53,462.3],[850.54,462.31],[850.54,462.31],[850.54,462.31],[850.55,462.31],[850.55,462.31],[850.56,462.31],[850.56,462.31],[850.57,462.31],[850.58,462.31],[850.58,462.31],[850.58,462.31],[850.58,462.31],[850.58,462.31],[850.58,462.31],[850.59,462.31],[850.59,462.31],[850.59,462.3],[850.59,462.3],[850.59,462.3],[850.6,462.3],[850.6,462.3],[850.6,462.3],[850.6,462.3],[850.61,462.3],[850.61,462.3],[850.61,462.3],[850.62,462.3],[850.62,462.29],[850.63,462.29],[850.63,462.29],[850.64,462.29],[850.64,462.28],[850.65,462.28],[850.65,462.28],[850.66,462.28],[850.66,462.28],[850.66,462.28],[850.67,462.28],[850.67,462.28],[850.67,462.28],[850.68,462.27],[850.68,462.27],[850.68,462.27],[850.68,462.27],[850.68,462.27],[850.68,462.26],[850.68,462.26],[850.68,462.26],[850.68,462.25],[850.68,462.25],[850.69,462.25],[850.69,462.24],[850.69,462.24],[850.69,462.24],[850.69,462.24],[850.7,462.24],[850.7,462.24],[850.7,462.24],[850.7,462.24],[850.7,462.24],[850.7,462.24],[850.71,462.25],[850.71,462.25],[850.71,462.25],[850.71,462.25],[850.71,462.26],[850.71,462.26],[850.71,462.26],[850.71,462.27],[850.71,462.27],[850.71,462.28],[850.71,462.28],[850.71,462.29],[850.71,462.29],[850.71,462.29],[850.71,462.29],[850.71,462.3],[850.71,462.3],[850.71,462.3],[850.71,462.3],[850.73,462.31],[850.77,462.33],[850.79,462.33],[850.8,462.33],[850.8,462.33],[850.81,462.34],[850.82,462.34],[850.82,462.34],[850.82,462.34],[850.83,462.34],[850.83,462.34],[850.84,462.34],[850.84,462.34],[850.85,462.34],[850.87,462.35],[850.87,462.35],[850.87,462.35],[850.88,462.35],[850.88,462.35],[850.88,462.36],[850.89,462.36],[850.89,462.36],[850.89,462.36],[850.9,462.36],[850.9,462.37],[850.9,462.37],[850.9,462.37],[850.91,462.37],[850.91,462.37],[850.91,462.38],[850.92,462.38],[850.92,462.38],[850.92,462.39],[850.93,462.39],[850.93,462.39],[850.93,462.39],[850.93,462.39],[850.93,462.4],[850.94,462.4],[850.94,462.4],[850.94,462.4],[850.94,462.4],[850.95,462.41],[850.95,462.41],[850.95,462.41],[850.96,462.41],[850.96,462.41],[850.96,462.41],[850.96,462.41],[850.97,462.41],[850.97,462.41],[850.97,462.41],[850.97,462.42],[850.98,462.42],[850.98,462.42],[850.99,462.42],[850.99,462.42],[850.99,462.42],[851,462.42],[851.01,462.42],[851.01,462.42],[851.02,462.43],[851.03,462.43],[851.03,462.44],[851.03,462.44],[851.05,462.46],[851.06,462.47],[851.07,462.48],[851.07,462.49],[851.07,462.49],[851.07,462.5],[851.07,462.5],[851.07,462.51],[851.07,462.51],[851.07,462.52],[851.07,462.52],[851.07,462.53],[851.07,462.53],[851.07,462.53],[851.07,462.54],[851.07,462.54],[851.08,462.54],[851.08,462.55],[851.08,462.55],[851.08,462.55],[851.08,462.56],[851.08,462.56],[851.08,462.56],[851.08,462.57],[851.08,462.57],[851.08,462.58],[851.09,462.58],[851.09,462.59],[851.09,462.59],[851.1,462.6],[851.1,462.6],[851.1,462.6],[851.1,462.61],[851.11,462.61],[851.11,462.61],[851.11,462.62],[851.12,462.62],[851.12,462.62],[851.12,462.62],[851.12,462.62],[851.13,462.62],[851.13,462.63],[851.14,462.63],[851.14,462.63],[851.15,462.63],[851.15,462.64],[851.15,462.64],[851.16,462.64],[851.16,462.64],[851.16,462.64],[851.17,462.65],[851.17,462.65],[851.17,462.65],[851.18,462.65],[851.18,462.65],[851.18,462.65],[851.19,462.65],[851.19,462.65],[851.19,462.65],[851.2,462.65],[851.2,462.65],[851.21,462.66],[851.22,462.66],[851.22,462.66],[851.23,462.66],[851.23,462.66],[851.24,462.66],[851.24,462.66],[851.24,462.66],[851.25,462.67],[851.25,462.67],[851.25,462.67],[851.26,462.68],[851.26,462.68],[851.26,462.69],[851.27,462.69],[851.27,462.7],[851.27,462.7],[851.27,462.71],[851.28,462.72],[851.29,462.72],[851.29,462.73],[851.29,462.74],[851.3,462.74],[851.3,462.74],[851.3,462.75],[851.31,462.75],[851.31,462.75],[851.32,462.75],[851.33,462.76],[851.34,462.76],[851.35,462.77],[851.35,462.77],[851.35,462.77],[851.36,462.77],[851.36,462.78],[851.37,462.78],[851.37,462.78],[851.37,462.79],[851.37,462.79],[851.38,462.79],[851.38,462.8],[851.38,462.8],[851.38,462.81],[851.39,462.82],[851.39,462.83],[851.4,462.84],[851.4,462.85],[851.4,462.86],[851.4,462.87],[851.4,462.88],[851.4,462.89],[851.4,462.89],[851.4,462.9],[851.4,462.9],[851.4,462.91],[851.4,462.92],[851.4,462.92],[851.4,462.94],[851.41,462.95],[851.41,462.96],[851.41,462.97],[851.41,462.97],[851.41,462.98],[851.41,462.99],[851.41,463],[851.41,463],[851.41,463.01],[851.41,463.02],[851.41,463.03],[851.4,463.04],[851.39,463.06],[851.39,463.06],[851.39,463.07],[851.38,463.07],[851.38,463.08],[851.38,463.09],[851.38,463.09],[851.38,463.11],[851.38,463.12],[851.38,463.13],[851.38,463.14],[851.37,463.15],[851.36,463.17],[851.36,463.18],[851.35,463.18],[851.35,463.19],[851.35,463.2],[851.35,463.21],[851.35,463.22],[851.35,463.22],[851.35,463.23],[851.35,463.24],[851.35,463.25],[851.35,463.26],[851.36,463.27],[851.36,463.28],[851.37,463.29],[851.37,463.29],[851.39,463.32],[851.4,463.33],[851.41,463.35],[851.42,463.36],[851.43,463.36],[851.44,463.37],[851.44,463.38],[851.45,463.38],[851.5,463.41],[851.51,463.42],[851.51,463.42],[851.52,463.43],[851.52,463.43],[851.53,463.44],[851.53,463.44],[851.53,463.45],[851.53,463.45],[851.54,463.47],[851.55,463.48],[851.55,463.49],[851.56,463.5],[851.56,463.51],[851.57,463.52],[851.57,463.52],[851.57,463.53],[851.57,463.53],[851.57,463.54],[851.57,463.54],[851.57,463.55],[851.57,463.56],[851.56,463.57],[851.55,463.6],[851.55,463.61],[851.55,463.62],[851.55,463.63],[851.55,463.64],[851.55,463.65],[851.55,463.66],[851.56,463.67],[851.56,463.67],[851.56,463.68],[851.56,463.68],[851.57,463.69],[851.57,463.7],[851.58,463.7],[851.58,463.71],[851.59,463.71],[851.59,463.71],[851.6,463.72],[851.61,463.72],[851.61,463.72],[851.62,463.72],[851.62,463.72],[851.62,463.73],[851.63,463.73],[851.64,463.73],[851.64,463.74],[851.65,463.74],[851.66,463.75],[851.67,463.75],[851.67,463.76],[851.68,463.76],[851.69,463.77],[851.69,463.77],[851.7,463.78],[851.7,463.78],[851.71,463.79],[851.71,463.79],[851.71,463.79],[851.71,463.8],[851.71,463.8],[851.72,463.81],[851.72,463.81],[851.72,463.81],[851.72,463.82],[851.72,463.82],[851.73,463.83],[851.73,463.83],[851.73,463.84],[851.73,463.84],[851.73,463.84],[851.73,463.85],[851.73,463.85],[851.73,463.85],[851.73,463.86],[851.74,463.86],[851.74,463.87],[851.74,463.87],[851.75,463.87],[851.75,463.88],[851.75,463.88],[851.75,463.88],[851.76,463.89],[851.76,463.89],[851.76,463.89],[851.76,463.89],[851.76,463.9],[851.76,463.9],[851.77,463.9],[851.77,463.91],[851.77,463.91],[851.77,463.91],[851.78,463.92],[851.78,463.92],[851.78,463.92],[851.78,463.93],[851.78,463.93],[851.78,463.93],[851.78,463.94],[851.78,463.94],[851.78,463.95],[851.78,463.95],[851.78,463.95],[851.78,463.96],[851.79,463.96],[851.79,463.97],[851.79,463.97],[851.79,463.97],[851.79,463.98],[851.8,463.98],[851.8,463.99],[851.8,464],[851.8,464],[851.81,464.01],[851.81,464.02],[851.81,464.02],[851.82,464.03],[851.82,464.04],[851.82,464.05],[851.82,464.05],[851.83,464.05],[851.83,464.06],[851.83,464.06],[851.84,464.06],[851.84,464.07],[851.84,464.07],[851.85,464.07],[851.85,464.07],[851.86,464.08],[851.87,464.08],[851.87,464.08],[851.87,464.09],[851.88,464.09],[851.88,464.09],[851.88,464.1],[851.89,464.1],[851.89,464.11],[851.89,464.11],[851.89,464.11],[851.89,464.12],[851.9,464.12],[851.9,464.13],[851.9,464.13],[851.9,464.14],[851.9,464.14],[851.9,464.15],[851.89,464.15],[851.89,464.16],[851.89,464.17],[851.89,464.17],[851.89,464.18],[851.89,464.18],[851.89,464.19],[851.89,464.19],[851.89,464.19],[851.89,464.19],[851.89,464.2],[851.89,464.21],[851.89,464.21],[851.89,464.21],[851.9,464.22],[851.9,464.22],[851.9,464.22],[851.9,464.23],[851.9,464.23],[851.9,464.24],[851.91,464.24],[851.91,464.24],[851.91,464.25],[851.91,464.25],[851.91,464.26],[851.91,464.26],[851.91,464.27],[851.91,464.28],[851.91,464.28],[851.91,464.29],[851.91,464.29],[851.91,464.3],[851.92,464.3],[851.92,464.31],[851.92,464.31],[851.92,464.32],[851.92,464.32],[851.93,464.33],[851.93,464.33],[851.93,464.33],[851.93,464.33],[851.94,464.34],[851.94,464.34],[851.94,464.34],[851.94,464.34],[851.95,464.35],[851.95,464.35],[851.95,464.36],[851.96,464.37],[851.96,464.37],[851.96,464.38],[851.96,464.38],[851.96,464.38],[851.97,464.39],[851.97,464.39],[851.97,464.4],[851.97,464.4],[851.97,464.41],[851.97,464.41],[851.97,464.42],[851.97,464.42],[851.98,464.43],[851.98,464.43],[851.98,464.44],[851.98,464.45],[851.98,464.46],[851.98,464.46],[851.99,464.47],[851.99,464.48],[851.99,464.49],[851.99,464.49],[851.99,464.5],[851.99,464.51],[852,464.52],[852,464.52],[852,464.53],[852,464.54],[852,464.54],[852,464.55],[852,464.56],[852,464.56],[852,464.57],[852,464.58],[852,464.59],[852,464.59],[852,464.6],[852,464.61],[852,464.62],[852,464.63],[851.99,464.64],[851.99,464.65],[851.99,464.66],[851.99,464.67],[851.99,464.67],[851.99,464.68],[851.99,464.69],[851.99,464.7],[851.99,464.71],[851.99,464.72],[851.99,464.73],[851.99,464.74],[851.99,464.75],[851.99,464.76],[851.99,464.76],[851.99,464.77],[851.99,464.77],[851.99,464.78],[851.99,464.79],[851.99,464.79],[851.99,464.8],[851.99,464.8],[851.99,464.81],[851.99,464.81],[852,464.82],[852,464.82],[852,464.82],[852,464.83],[852,464.83],[852.01,464.84],[852.01,464.84],[852.01,464.85],[852.02,464.85],[852.02,464.86],[852.02,464.86],[852.03,464.87],[852.03,464.87],[852.03,464.88],[852.03,464.88],[852.04,464.89],[852.04,464.89],[852.04,464.9],[852.04,464.9],[852.04,464.91],[852.04,464.91],[852.04,464.92],[852.05,464.92],[852.05,464.92],[852.05,464.93],[852.05,464.93],[852.06,464.94],[852.06,464.94],[852.06,464.94],[852.07,464.95],[852.07,464.95],[852.07,464.96],[852.08,464.96],[852.08,464.96],[852.09,464.97],[852.1,464.97],[852.1,464.98],[852.1,464.98],[852.11,464.98],[852.11,464.99],[852.11,464.99],[852.12,464.99],[852.12,465],[852.12,465],[852.12,465],[852.13,465.01],[852.13,465.01],[852.13,465.02],[852.14,465.03],[852.14,465.04],[852.15,465.04],[852.15,465.05],[852.16,465.06],[852.16,465.06],[852.16,465.07],[852.17,465.08],[852.17,465.08],[852.17,465.09],[852.18,465.1],[852.18,465.11],[852.18,465.11],[852.19,465.12],[852.19,465.13],[852.19,465.14],[852.19,465.14],[852.2,465.15],[852.2,465.15],[852.2,465.16],[852.2,465.17],[852.21,465.17],[852.21,465.18],[852.21,465.18],[852.21,465.18],[852.22,465.19],[852.22,465.19],[852.23,465.2],[852.23,465.2],[852.23,465.21],[852.24,465.22],[852.24,465.23],[852.25,465.23],[852.25,465.24],[852.26,465.25],[852.26,465.25],[852.27,465.26],[852.27,465.27],[852.27,465.28],[852.28,465.29],[852.28,465.3],[852.28,465.3],[852.29,465.31],[852.29,465.32],[852.29,465.33],[852.29,465.34],[852.29,465.34],[852.29,465.35],[852.29,465.36],[852.29,465.37],[852.29,465.38],[852.29,465.39],[852.3,465.4],[852.3,465.4],[852.3,465.41],[852.3,465.42],[852.3,465.42],[852.3,465.43],[852.3,465.44],[852.3,465.44],[852.3,465.45],[852.31,465.46],[852.31,465.46],[852.31,465.47],[852.31,465.48],[852.31,465.48],[852.31,465.49],[852.31,465.5],[852.3,465.51],[852.3,465.52],[852.3,465.53],[852.29,465.54],[852.29,465.54],[852.29,465.55],[852.29,465.56],[852.29,465.56],[852.29,465.57],[852.29,465.58],[852.29,465.58],[852.29,465.59],[852.3,465.6],[852.3,465.62],[852.3,465.62],[852.3,465.63],[852.3,465.64],[852.3,465.65],[852.3,465.66],[852.3,465.67],[852.3,465.68],[852.3,465.69],[852.3,465.7],[852.3,465.71],[852.3,465.72],[852.3,465.74],[852.3,465.75],[852.3,465.76],[852.3,465.77],[852.3,465.78],[852.3,465.8],[852.3,465.81],[852.3,465.82],[852.3,465.83],[852.3,465.84],[852.3,465.85],[852.3,465.86],[852.31,465.87],[852.31,465.88],[852.31,465.89],[852.32,465.9],[852.32,465.91],[852.32,465.92],[852.33,465.93],[852.33,465.94],[852.34,465.95],[852.34,465.96],[852.35,465.97],[852.35,465.98],[852.35,465.99],[852.36,466],[852.36,466.01],[852.36,466.02],[852.36,466.02],[852.36,466.02],[852.36,466.03],[852.36,466.04],[852.36,466.04],[852.36,466.05],[852.36,466.06],[852.36,466.06],[852.36,466.07],[852.36,466.07],[852.36,466.08],[852.37,466.08],[852.37,466.09],[852.37,466.09],[852.37,466.1],[852.38,466.1],[852.38,466.11],[852.38,466.11],[852.38,466.12],[852.38,466.12],[852.39,466.12],[852.39,466.13],[852.39,466.13],[852.39,466.14],[852.39,466.14],[852.39,466.15],[852.39,466.16],[852.38,466.16],[852.38,466.17],[852.38,466.17],[852.38,466.18],[852.38,466.19],[852.38,466.19],[852.38,466.2],[852.38,466.21],[852.38,466.21],[852.38,466.22],[852.38,466.23],[852.38,466.23],[852.38,466.24],[852.38,466.24],[852.38,466.25],[852.39,466.25],[852.39,466.26],[852.39,466.26],[852.39,466.27],[852.39,466.28],[852.4,466.28],[852.4,466.29],[852.4,466.29],[852.41,466.3],[852.41,466.31],[852.42,466.31],[852.42,466.32],[852.43,466.33],[852.44,466.33],[852.44,466.34],[852.45,466.34],[852.46,466.35],[852.46,466.35],[852.47,466.36],[852.47,466.36],[852.48,466.37],[852.49,466.37],[852.49,466.38],[852.49,466.39],[852.5,466.39],[852.5,466.39],[852.5,466.4],[852.5,466.41],[852.5,466.41],[852.5,466.42],[852.5,466.43],[852.5,466.43],[852.5,466.44],[852.5,466.44],[852.5,466.45],[852.49,466.46],[852.49,466.47],[852.49,466.47],[852.49,466.48],[852.49,466.48],[852.49,466.49],[852.49,466.49],[852.49,466.5],[852.49,466.5],[852.49,466.51],[852.5,466.51],[852.5,466.52],[852.5,466.52],[852.51,466.53],[852.51,466.53],[852.51,466.54],[852.52,466.55],[852.53,466.55],[852.53,466.56],[852.53,466.56],[852.54,466.57],[852.54,466.57],[852.54,466.58],[852.55,466.58],[852.55,466.59],[852.56,466.6],[852.56,466.6],[852.56,466.61],[852.56,466.62],[852.57,466.62],[852.57,466.63],[852.57,466.63],[852.57,466.64],[852.57,466.65],[852.57,466.65],[852.57,466.66],[852.58,466.67],[852.58,466.67],[852.58,466.68],[852.58,466.68],[852.58,466.69],[852.58,466.69],[852.58,466.7],[852.59,466.71],[852.59,466.71],[852.59,466.72],[852.6,466.72],[852.6,466.73],[852.6,466.74],[852.61,466.75],[852.61,466.75],[852.62,466.76],[852.62,466.76],[852.63,466.77],[852.63,466.77],[852.64,466.78],[852.65,466.79],[852.66,466.8],[852.67,466.81],[852.67,466.82],[852.68,466.82],[852.68,466.82],[852.68,466.82],[852.69,466.83],[852.69,466.83],[852.7,466.83],[852.7,466.83],[852.7,466.83],[852.71,466.83],[852.72,466.83],[852.72,466.83],[852.72,466.83],[852.73,466.83],[852.73,466.83],[852.73,466.83],[852.74,466.83],[852.74,466.83],[852.74,466.83],[852.75,466.84],[852.75,466.84],[852.75,466.84],[852.76,466.84],[852.76,466.85],[852.76,466.85],[852.77,466.85],[852.77,466.86],[852.77,466.86],[852.77,466.87],[852.77,466.87],[852.77,466.88],[852.78,466.88],[852.78,466.89],[852.78,466.9],[852.78,466.91],[852.79,466.91],[852.79,466.92],[852.79,466.93],[852.79,466.93],[852.79,466.94],[852.8,466.95],[852.8,466.95],[852.8,466.96],[852.8,466.97],[852.8,466.98],[852.8,466.98],[852.8,466.99],[852.8,467],[852.8,467.01],[852.8,467.01],[852.8,467.02],[852.8,467.02],[852.8,467.03],[852.81,467.03],[852.81,467.04],[852.81,467.04],[852.82,467.05],[852.82,467.05],[852.83,467.06],[852.83,467.07],[852.83,467.07],[852.84,467.08],[852.84,467.08],[852.84,467.09],[852.85,467.1],[852.86,467.11],[852.86,467.12],[852.87,467.12],[852.87,467.12],[852.87,467.12],[852.87,467.12],[852.88,467.13],[852.88,467.13],[852.88,467.13],[852.89,467.13],[852.89,467.13],[852.89,467.13],[852.89,467.13],[852.9,467.13],[852.9,467.13],[852.91,467.13],[852.91,467.13],[852.92,467.13],[852.92,467.13],[852.93,467.13],[852.93,467.13],[852.93,467.13],[852.93,467.13],[852.94,467.13],[852.94,467.13],[852.94,467.13],[852.95,467.13],[852.95,467.13],[852.95,467.13],[852.95,467.13],[852.96,467.14],[852.96,467.14],[852.97,467.15],[852.97,467.15],[852.97,467.15],[852.97,467.16],[852.98,467.16],[852.99,467.17],[852.99,467.18],[853,467.19],[853,467.19],[853.01,467.2],[853.01,467.21],[853.02,467.21],[853.02,467.22],[853.03,467.23],[853.03,467.23],[853.04,467.24],[853.04,467.25],[853.04,467.26],[853.05,467.27],[853.05,467.28],[853.06,467.28],[853.06,467.29],[853.06,467.3],[853.06,467.3],[853.07,467.31],[853.07,467.32],[853.07,467.32],[853.08,467.33],[853.08,467.34],[853.08,467.34],[853.08,467.35],[853.09,467.35],[853.09,467.36],[853.09,467.36],[853.09,467.36],[853.09,467.37],[853.08,467.37],[853.08,467.37],[853.08,467.38],[853.08,467.39],[853.08,467.39],[853.08,467.39],[853.07,467.4],[853.07,467.4],[853.07,467.4],[853.07,467.41],[853.07,467.41],[853.08,467.42],[853.08,467.42],[853.08,467.42],[853.08,467.43],[853.08,467.43],[853.08,467.43],[853.09,467.44],[853.09,467.44],[853.1,467.44],[853.1,467.45],[853.1,467.45],[853.11,467.46],[853.11,467.46],[853.12,467.47],[853.13,467.48],[853.13,467.49],[853.14,467.5],[853.15,467.51],[853.15,467.52],[853.15,467.52],[853.16,467.53],[853.16,467.54],[853.16,467.55],[853.16,467.55],[853.16,467.56],[853.16,467.57],[853.16,467.58],[853.16,467.58],[853.16,467.59],[853.16,467.59],[853.16,467.6],[853.16,467.6],[853.16,467.61],[853.16,467.61],[853.17,467.62],[853.17,467.62],[853.17,467.63],[853.17,467.64],[853.18,467.64],[853.18,467.65],[853.18,467.66],[853.18,467.67],[853.19,467.67],[853.19,467.68],[853.19,467.69],[853.2,467.7],[853.2,467.7],[853.21,467.71],[853.21,467.72],[853.22,467.73],[853.22,467.74],[853.22,467.74],[853.22,467.75],[853.22,467.76],[853.23,467.76],[853.23,467.77],[853.23,467.77],[853.23,467.78],[853.23,467.78],[853.24,467.79],[853.24,467.79],[853.24,467.8],[853.25,467.8],[853.25,467.8],[853.26,467.81],[853.27,467.81],[853.27,467.82],[853.28,467.82],[853.28,467.83],[853.29,467.83],[853.29,467.84],[853.29,467.84],[853.29,467.84],[853.29,467.85],[853.29,467.85],[853.3,467.86],[853.3,467.86],[853.3,467.87],[853.3,467.87],[853.3,467.88],[853.3,467.88],[853.3,467.89],[853.3,467.89],[853.3,467.9],[853.3,467.9],[853.31,467.91],[853.31,467.91],[853.31,467.92],[853.32,467.92],[853.32,467.93],[853.33,467.94],[853.33,467.94],[853.34,467.95],[853.35,467.96],[853.35,467.96],[853.36,467.97],[853.36,467.98],[853.37,467.98],[853.37,467.99],[853.38,468],[853.38,468],[853.39,468.01],[853.4,468.02],[853.4,468.03],[853.4,468.04],[853.41,468.05],[853.42,468.06],[853.43,468.07],[853.43,468.07],[853.43,468.08],[853.44,468.08],[853.44,468.09],[853.45,468.09],[853.45,468.1],[853.46,468.1],[853.47,468.11],[853.47,468.11],[853.48,468.11],[853.49,468.12],[853.5,468.13],[853.5,468.13],[853.51,468.13],[853.52,468.14],[853.53,468.14],[853.54,468.15],[853.55,468.16],[853.55,468.16],[853.55,468.16],[853.56,468.16],[853.56,468.17],[853.56,468.17],[853.56,468.17],[853.56,468.17],[853.57,468.18],[853.57,468.18],[853.57,468.19],[853.57,468.2],[853.57,468.21],[853.57,468.21],[853.57,468.22],[853.58,468.22],[853.58,468.23],[853.58,468.23],[853.59,468.24],[853.59,468.24],[853.6,468.25],[853.6,468.25],[853.61,468.26],[853.61,468.27],[853.62,468.27],[853.62,468.27],[853.62,468.28],[853.62,468.28],[853.62,468.28],[853.62,468.29],[853.62,468.29],[853.62,468.3],[853.62,468.3],[853.62,468.31],[853.62,468.31],[853.62,468.32],[853.62,468.33],[853.62,468.33],[853.62,468.34],[853.62,468.34],[853.62,468.35],[853.62,468.36],[853.62,468.36],[853.62,468.37],[853.62,468.38],[853.62,468.38],[853.62,468.38],[853.62,468.39],[853.62,468.39],[853.62,468.39],[853.62,468.4],[853.61,468.4],[853.61,468.4],[853.61,468.4],[853.6,468.41],[853.6,468.41],[853.6,468.41],[853.59,468.41],[853.58,468.41],[853.57,468.42],[853.56,468.42],[853.56,468.42],[853.56,468.42],[853.56,468.42],[853.55,468.42],[853.55,468.43],[853.55,468.43],[853.55,468.43],[853.55,468.43],[853.55,468.43],[853.55,468.44],[853.54,468.44],[853.54,468.44],[853.54,468.44],[853.54,468.45],[853.54,468.45],[853.54,468.45],[853.55,468.46],[853.55,468.46],[853.55,468.47],[853.55,468.47],[853.55,468.47],[853.55,468.48],[853.55,468.48],[853.55,468.48],[853.55,468.49],[853.55,468.49],[853.55,468.49],[853.55,468.49],[853.55,468.5],[853.55,468.5],[853.55,468.5],[853.55,468.51],[853.54,468.51],[853.54,468.51],[853.54,468.51],[853.53,468.52],[853.53,468.52],[853.53,468.53],[853.53,468.53],[853.52,468.53],[853.52,468.54],[853.52,468.54],[853.52,468.54],[853.52,468.55],[853.52,468.55],[853.52,468.55],[853.53,468.56],[853.53,468.56],[853.53,468.56],[853.53,468.57],[853.54,468.57],[853.54,468.58],[853.54,468.59],[853.55,468.6],[853.55,468.61],[853.56,468.62],[853.56,468.62],[853.56,468.62],[853.56,468.63],[853.56,468.63],[853.56,468.63],[853.56,468.63],[853.56,468.64],[853.56,468.64],[853.56,468.64],[853.56,468.64],[853.56,468.65],[853.56,468.65],[853.56,468.65],[853.56,468.66],[853.56,468.66],[853.56,468.66],[853.56,468.67],[853.56,468.67],[853.56,468.67],[853.55,468.68],[853.55,468.68],[853.55,468.68],[853.55,468.69],[853.55,468.69],[853.55,468.69],[853.55,468.69],[853.55,468.7],[853.55,468.7],[853.55,468.7],[853.55,468.71],[853.55,468.71],[853.54,468.72],[853.54,468.73],[853.54,468.74],[853.53,468.75],[853.53,468.76],[853.53,468.76],[853.53,468.76],[853.53,468.76],[853.53,468.77],[853.53,468.77],[853.53,468.77],[853.53,468.77],[853.53,468.78],[853.53,468.78],[853.53,468.78],[853.53,468.79],[853.53,468.79],[853.53,468.8],[853.53,468.8],[853.53,468.8],[853.53,468.81],[853.53,468.82],[853.53,468.83],[853.53,468.84],[853.53,468.85],[853.53,468.85],[853.53,468.85],[853.53,468.85],[853.53,468.85],[853.53,468.86],[853.53,468.86],[853.53,468.86],[853.53,468.86],[853.53,468.87],[853.53,468.87],[853.54,468.88],[853.54,468.88],[853.54,468.89],[853.54,468.9],[853.55,468.9],[853.55,468.91],[853.55,468.92],[853.56,468.92],[853.56,468.93],[853.56,468.94],[853.56,468.94],[853.57,468.95],[853.57,468.96],[853.57,468.97],[853.58,468.98],[853.58,468.98],[853.58,468.99],[853.58,468.99],[853.58,469],[853.58,469],[853.58,469],[853.58,469.01],[853.58,469.01],[853.58,469.01],[853.58,469.02],[853.58,469.02],[853.58,469.02],[853.58,469.02],[853.57,469.04],[853.57,469.05],[853.57,469.05],[853.57,469.05],[853.57,469.06],[853.57,469.06],[853.57,469.06],[853.57,469.06],[853.57,469.07],[853.58,469.07],[853.58,469.07],[853.58,469.08],[853.59,469.08],[853.59,469.09],[853.6,469.11],[853.61,469.12],[853.61,469.12],[853.61,469.12],[853.62,469.12],[853.62,469.13],[853.62,469.13],[853.62,469.13],[853.62,469.13],[853.62,469.14],[853.62,469.14],[853.62,469.14],[853.62,469.15],[853.62,469.15],[853.62,469.15],[853.62,469.16],[853.62,469.16],[853.62,469.17],[853.62,469.17],[853.62,469.18],[853.62,469.18],[853.62,469.19],[853.62,469.19],[853.62,469.19],[853.62,469.2],[853.62,469.2],[853.62,469.21],[853.62,469.21],[853.62,469.21],[853.62,469.22],[853.62,469.22],[853.63,469.23],[853.63,469.24],[853.64,469.24],[853.65,469.25],[853.65,469.26],[853.65,469.26],[853.65,469.26],[853.65,469.27],[853.65,469.27],[853.65,469.28],[853.65,469.28],[853.65,469.29],[853.66,469.3],[853.66,469.3],[853.66,469.31],[853.66,469.33],[853.66,469.34],[853.66,469.36],[853.66,469.37],[853.67,469.39],[853.67,469.4],[853.67,469.4],[853.67,469.41],[853.67,469.41],[853.67,469.41],[853.67,469.42],[853.67,469.42],[853.66,469.42],[853.66,469.43],[853.66,469.44],[853.66,469.44],[853.66,469.44],[853.66,469.45],[853.66,469.45],[853.66,469.45],[853.66,469.45],[853.66,469.45],[853.66,469.46],[853.67,469.46],[853.67,469.46],[853.67,469.46],[853.67,469.47],[853.67,469.47],[853.68,469.47],[853.68,469.47],[853.68,469.47],[853.68,469.48],[853.69,469.48],[853.69,469.48],[853.69,469.48],[853.69,469.48],[853.7,469.48],[853.7,469.49],[853.7,469.49],[853.7,469.49],[853.7,469.49],[853.7,469.5],[853.7,469.5],[853.7,469.5],[853.7,469.5],[853.7,469.51],[853.7,469.51],[853.7,469.51],[853.7,469.52],[853.7,469.53],[853.7,469.54],[853.7,469.54],[853.7,469.54],[853.7,469.56],[853.7,469.56],[853.7,469.56],[853.7,469.56],[853.7,469.57],[853.7,469.57],[853.69,469.57],[853.69,469.58],[853.69,469.58],[853.69,469.58],[853.69,469.59],[853.68,469.59],[853.68,469.6],[853.68,469.6],[853.68,469.61],[853.68,469.61],[853.68,469.61],[853.68,469.62],[853.68,469.62],[853.68,469.62],[853.68,469.62],[853.68,469.63],[853.68,469.63],[853.68,469.63],[853.69,469.64],[853.69,469.64],[853.69,469.64],[853.69,469.65],[853.69,469.65],[853.7,469.65],[853.7,469.66],[853.7,469.67],[853.71,469.67],[853.71,469.67],[853.72,469.68],[853.72,469.69],[853.73,469.7],[853.74,469.71],[853.74,469.71],[853.75,469.72],[853.75,469.72],[853.76,469.73],[853.76,469.73],[853.76,469.73],[853.76,469.74],[853.76,469.74],[853.76,469.74],[853.76,469.74],[853.76,469.75],[853.76,469.75],[853.76,469.76],[853.76,469.76],[853.77,469.76],[853.77,469.77],[853.77,469.77],[853.77,469.77],[853.77,469.78],[853.77,469.78],[853.77,469.78],[853.77,469.79],[853.77,469.79],[853.77,469.79],[853.77,469.79],[853.76,469.8],[853.76,469.8],[853.76,469.8],[853.76,469.8],[853.76,469.81],[853.75,469.81],[853.75,469.82],[853.74,469.82],[853.74,469.83],[853.74,469.83],[853.74,469.83],[853.74,469.84],[853.74,469.84],[853.74,469.84],[853.73,469.85],[853.73,469.85],[853.73,469.86],[853.73,469.86],[853.73,469.87],[853.73,469.87],[853.73,469.88],[853.73,469.88],[853.73,469.89],[853.73,469.89],[853.73,469.89],[853.73,469.9],[853.73,469.9],[853.73,469.91],[853.73,469.91],[853.72,469.92],[853.72,469.92],[853.72,469.93],[853.72,469.93],[853.72,469.94],[853.72,469.94],[853.72,469.94],[853.72,469.95],[853.72,469.95],[853.72,469.95],[853.72,469.96],[853.72,469.96],[853.73,469.96],[853.73,469.97],[853.73,469.97],[853.73,469.97],[853.73,469.97],[853.73,469.98],[853.73,469.98],[853.74,469.98],[853.74,469.99],[853.74,469.99],[853.75,470],[853.75,470],[853.75,470],[853.75,470],[853.75,470.01],[853.75,470.01],[853.75,470.01],[853.76,470.01],[853.76,470.02],[853.76,470.02],[853.76,470.02],[853.76,470.02],[853.76,470.03],[853.76,470.03],[853.76,470.04],[853.76,470.04],[853.76,470.05],[853.76,470.05],[853.76,470.06],[853.76,470.06],[853.76,470.07],[853.76,470.07],[853.76,470.07],[853.76,470.08],[853.76,470.08],[853.76,470.08],[853.76,470.09],[853.76,470.09],[853.76,470.09],[853.76,470.09],[853.76,470.1],[853.75,470.1],[853.75,470.1],[853.75,470.1],[853.75,470.1],[853.74,470.11],[853.74,470.11],[853.73,470.12],[853.73,470.12],[853.72,470.13],[853.72,470.13],[853.71,470.13],[853.71,470.14],[853.7,470.14],[853.69,470.15],[853.69,470.16],[853.68,470.16],[853.68,470.16],[853.68,470.17],[853.68,470.17],[853.68,470.18],[853.68,470.18],[853.68,470.22],[853.69,470.24],[853.69,470.25],[853.69,470.25],[853.69,470.25],[853.7,470.26],[853.7,470.26],[853.7,470.26],[853.7,470.26],[853.7,470.27],[853.72,470.28],[853.73,470.3],[853.73,470.3],[853.74,470.3],[853.74,470.3],[853.74,470.3],[853.74,470.31],[853.74,470.31],[853.74,470.31],[853.74,470.31],[853.74,470.32],[853.74,470.32],[853.74,470.32],[853.74,470.32],[853.74,470.33],[853.74,470.34],[853.73,470.35],[853.73,470.36],[853.72,470.37],[853.72,470.38],[853.71,470.39],[853.71,470.4],[853.71,470.4],[853.71,470.4],[853.71,470.4],[853.71,470.41],[853.71,470.41],[853.71,470.41],[853.71,470.41],[853.71,470.42],[853.72,470.42],[853.72,470.42],[853.72,470.42],[853.72,470.43],[853.73,470.44],[853.75,470.45],[853.77,470.48],[853.78,470.49],[853.79,470.5],[853.79,470.51],[853.79,470.51],[853.8,470.51],[853.8,470.52],[853.8,470.52],[853.8,470.52],[853.8,470.52],[853.8,470.52],[853.8,470.53],[853.8,470.56],[853.8,470.59],[853.8,470.59],[853.8,470.59],[853.8,470.59],[853.8,470.6],[853.8,470.6],[853.81,470.6],[853.81,470.61],[853.81,470.61],[853.82,470.62],[853.84,470.63],[853.85,470.64],[853.85,470.64],[853.86,470.65],[853.86,470.65],[853.86,470.66],[853.87,470.66],[853.88,470.7],[853.89,470.71],[853.89,470.72],[853.89,470.72],[853.89,470.73],[853.89,470.74],[853.89,470.76],[853.89,470.79],[853.89,470.79],[853.89,470.81],[853.89,470.82],[853.89,470.83],[853.89,470.84],[853.9,470.84],[853.9,470.84],[853.91,470.85],[853.94,470.86],[853.96,470.87],[853.96,470.87],[853.97,470.88],[853.98,470.88],[853.98,470.89],[853.99,470.89],[853.99,470.89],[853.99,470.9],[853.99,470.9],[853.99,470.91],[853.99,470.91],[854,470.91],[854,470.92],[854,470.92],[854,470.92],[853.99,470.93],[853.99,470.94],[853.98,470.96],[853.98,470.97],[853.97,470.97],[853.97,470.98],[853.97,470.98],[853.98,471],[853.98,471],[853.98,471.02],[853.98,471.03],[853.98,471.03],[853.98,471.03],[853.98,471.04],[853.98,471.04],[853.98,471.05],[853.98,471.05],[853.98,471.08],[853.97,471.09],[853.97,471.1],[853.97,471.11],[853.97,471.11],[853.97,471.12],[853.97,471.14],[853.97,471.15],[853.97,471.15],[853.97,471.15],[853.97,471.15],[853.98,471.15],[853.98,471.15],[853.98,471.16],[853.98,471.16],[853.98,471.16],[853.98,471.16],[853.99,471.16],[854,471.16],[854.01,471.16],[854.02,471.16],[854.03,471.16],[854.05,471.17],[854.06,471.17],[854.07,471.17],[854.07,471.17],[854.1,471.17],[854.11,471.17],[854.11,471.17],[854.11,471.17],[854.11,471.17],[854.12,471.17],[854.12,471.17],[854.12,471.17],[854.13,471.17],[854.13,471.17],[854.14,471.18],[854.15,471.18],[854.16,471.18],[854.16,471.18],[854.16,471.18],[854.16,471.18],[854.17,471.18],[854.17,471.18],[854.17,471.17],[854.19,471.17],[854.19,471.17],[854.19,471.17],[854.19,471.17],[854.2,471.17],[854.2,471.17],[854.2,471.17],[854.21,471.18],[854.22,471.18],[854.22,471.19],[854.22,471.19],[854.23,471.19],[854.23,471.19],[854.23,471.19],[854.24,471.19],[854.24,471.19],[854.24,471.2],[854.24,471.2],[854.24,471.2],[854.25,471.2],[854.25,471.2],[854.25,471.2],[854.25,471.2],[854.25,471.2],[854.25,471.2],[854.25,471.2],[854.26,471.19],[854.26,471.19],[854.26,471.19],[854.26,471.19],[854.26,471.19],[854.26,471.19],[854.26,471.18],[854.27,471.18],[854.27,471.18],[854.27,471.18],[854.27,471.17],[854.28,471.17],[854.28,471.17],[854.28,471.17],[854.29,471.16],[854.29,471.16],[854.29,471.16],[854.29,471.16],[854.29,471.16],[854.29,471.16],[854.3,471.15],[854.3,471.15],[854.3,471.15],[854.3,471.15],[854.31,471.15],[854.31,471.15],[854.31,471.15],[854.32,471.15],[854.32,471.15],[854.32,471.15],[854.32,471.16],[854.32,471.16],[854.33,471.16],[854.33,471.17],[854.34,471.17],[854.34,471.17],[854.34,471.18],[854.34,471.18],[854.34,471.19],[854.34,471.19],[854.34,471.2],[854.34,471.21],[854.34,471.21],[854.34,471.22],[854.34,471.23],[854.34,471.23],[854.34,471.23],[854.34,471.24],[854.34,471.24],[854.34,471.24],[854.34,471.24],[854.34,471.24],[854.35,471.24],[854.35,471.25],[854.35,471.25],[854.35,471.25],[854.35,471.25],[854.35,471.25],[854.35,471.25],[854.35,471.25],[854.35,471.25],[854.35,471.26],[854.35,471.26],[854.35,471.26],[854.35,471.26],[854.35,471.26],[854.35,471.27],[854.35,471.27],[854.35,471.27],[854.35,471.27],[854.36,471.27],[854.36,471.27],[854.37,471.27],[854.39,471.27],[854.39,471.27],[854.4,471.27],[854.4,471.27],[854.41,471.27],[854.41,471.27],[854.42,471.27],[854.42,471.27],[854.42,471.27],[854.43,471.27],[854.43,471.27],[854.43,471.27],[854.43,471.27],[854.44,471.27],[854.44,471.27],[854.44,471.27],[854.45,471.27],[854.45,471.28],[854.45,471.28],[854.46,471.28],[854.46,471.28],[854.46,471.28],[854.47,471.28],[854.47,471.29],[854.48,471.29],[854.48,471.29],[854.49,471.29],[854.49,471.29],[854.49,471.29],[854.5,471.29],[854.51,471.31],[854.51,471.31],[854.52,471.31],[854.52,471.31],[854.52,471.31],[854.53,471.33],[854.53,471.33],[854.53,471.33],[854.53,471.33],[854.53,471.33],[854.54,471.33],[854.54,471.34],[854.54,471.34],[854.55,471.34],[854.55,471.34],[854.55,471.34],[854.55,471.34],[854.55,471.34],[854.55,471.34],[854.55,471.35],[854.55,471.35],[854.55,471.35],[854.55,471.35],[854.55,471.35],[854.55,471.35],[854.55,471.36],[854.55,471.36],[854.55,471.36],[854.54,471.36],[854.54,471.36],[854.54,471.36],[854.54,471.36],[854.54,471.36],[854.54,471.36],[854.54,471.37],[854.54,471.37],[854.53,471.37],[854.53,471.38],[854.53,471.38],[854.53,471.38],[854.53,471.39],[854.53,471.39],[854.53,471.39],[854.53,471.39],[854.53,471.4],[854.54,471.4],[854.54,471.41],[854.54,471.41],[854.54,471.42],[854.54,471.42],[854.55,471.44],[854.55,471.44],[854.55,471.44],[854.55,471.45],[854.56,471.45],[854.56,471.45],[854.56,471.45],[854.57,471.46],[854.57,471.46],[854.57,471.46],[854.57,471.46],[854.57,471.46],[854.58,471.46],[854.58,471.47],[854.58,471.47],[854.58,471.47],[854.58,471.47],[854.58,471.48],[854.58,471.48],[854.58,471.48],[854.58,471.48],[854.58,471.49],[854.58,471.5],[854.58,471.5],[854.58,471.5],[854.58,471.51],[854.58,471.52],[854.58,471.54],[854.58,471.54],[854.58,471.55],[854.58,471.55],[854.58,471.55],[854.58,471.56],[854.58,471.57],[854.58,471.57],[854.58,471.58],[854.58,471.58],[854.59,471.59],[854.59,471.6],[854.59,471.61],[854.59,471.61],[854.59,471.62],[854.59,471.63],[854.59,471.63],[854.59,471.64],[854.59,471.65],[854.59,471.67],[854.59,471.68],[854.6,471.7],[854.6,471.7],[854.6,471.7],[854.59,471.71],[854.59,471.71],[854.59,471.71],[854.59,471.71],[854.59,471.72],[854.59,471.72],[854.59,471.72],[854.59,471.73],[854.59,471.73],[854.59,471.73],[854.6,471.74],[854.6,471.75],[854.61,471.76],[854.61,471.77],[854.63,471.78],[854.64,471.8],[854.65,471.8],[854.66,471.82],[854.7,471.9],[854.71,471.9],[854.71,471.91],[854.71,471.91],[854.72,471.92],[854.73,471.92],[854.73,471.92],[854.73,471.93],[854.74,471.93],[854.74,471.93],[854.75,471.94],[854.75,471.94],[854.76,471.95],[854.76,471.95],[854.78,471.99],[854.78,471.99],[854.79,472],[854.79,472.01],[854.8,472.02],[854.8,472.03],[854.8,472.03],[854.8,472.04],[854.8,472.04],[854.8,472.08],[854.8,472.09],[854.8,472.1],[854.81,472.11],[854.81,472.11],[854.81,472.12],[854.81,472.12],[854.81,472.13],[854.82,472.14],[854.85,472.18],[854.85,472.19],[854.85,472.2],[854.86,472.22],[854.86,472.25],[854.86,472.26],[854.86,472.27],[854.87,472.28],[854.87,472.3],[854.88,472.33],[854.88,472.33],[854.89,472.33],[854.89,472.34],[854.89,472.34],[854.89,472.35],[854.89,472.36],[854.89,472.36],[854.88,472.38],[854.88,472.38],[854.88,472.38],[854.88,472.39],[854.88,472.39],[854.88,472.4],[854.88,472.4],[854.89,472.41],[854.89,472.42],[854.89,472.42],[854.9,472.42],[854.9,472.43],[854.91,472.43],[854.92,472.44],[854.93,472.45],[854.93,472.46],[854.94,472.46],[854.94,472.47],[854.94,472.48],[854.94,472.49],[854.94,472.53],[854.94,472.55],[854.94,472.56],[854.95,472.57],[854.95,472.58],[854.96,472.59],[854.98,472.59],[855,472.6],[855.01,472.61],[855.03,472.62],[855.04,472.62],[855.05,472.63],[855.06,472.65],[855.06,472.65],[855.07,472.66],[855.07,472.66],[855.07,472.67],[855.07,472.67],[855.07,472.68],[855.07,472.68],[855.07,472.69],[855.07,472.7],[855.07,472.7],[855.07,472.71],[855.06,472.72],[855.06,472.72],[855.06,472.73],[855.06,472.73],[855.06,472.74],[855.06,472.75],[855.06,472.75],[855.06,472.76],[855.06,472.76],[855.06,472.77],[855.06,472.78],[855.06,472.8],[855.06,472.8],[855.06,472.81],[855.06,472.82],[855.06,472.82],[855.07,472.83],[855.07,472.84],[855.07,472.84],[855.07,472.85],[855.08,472.87],[855.08,472.87],[855.08,472.88],[855.08,472.88],[855.08,472.89],[855.09,472.9],[855.09,472.9],[855.09,472.91],[855.11,472.92],[855.12,472.93],[855.13,472.94],[855.14,472.95],[855.14,472.95],[855.15,472.96],[855.15,472.97],[855.16,472.98],[855.16,472.99],[855.17,472.99],[855.17,473],[855.18,473.01],[855.19,473.02],[855.19,473.03],[855.19,473.03],[855.19,473.04],[855.2,473.05],[855.19,473.12],[855.19,473.14],[855.2,473.17],[855.21,473.19],[855.21,473.19],[855.22,473.2],[855.23,473.21],[855.24,473.22],[855.3,473.27],[855.31,473.28],[855.33,473.29],[855.35,473.3],[855.38,473.3],[855.41,473.31],[855.43,473.32],[855.45,473.33],[855.53,473.38],[855.55,473.39],[855.57,473.39],[855.6,473.4],[855.61,473.4],[855.61,473.41],[855.62,473.41],[855.63,473.42],[855.65,473.45],[855.66,473.46],[855.67,473.47],[855.68,473.48],[855.7,473.49],[855.71,473.5],[855.73,473.51],[855.74,473.52],[855.76,473.52],[855.77,473.53],[855.79,473.54],[855.8,473.55],[855.81,473.56],[855.81,473.57],[855.82,473.59],[855.83,473.61],[855.84,473.63],[855.84,473.65],[855.85,473.67],[855.86,473.68],[855.87,473.69],[855.89,473.71],[855.89,473.71],[855.9,473.71],[855.9,473.71],[855.91,473.71],[855.91,473.72],[855.94,473.71],[855.97,473.72],[856,473.72],[856.03,473.72],[856.04,473.73],[856.05,473.73],[856.06,473.74],[856.06,473.74],[856.07,473.75],[856.07,473.76],[856.07,473.77],[856.08,473.78],[856.08,473.79],[856.08,473.8],[856.09,473.81],[856.1,473.83],[856.12,473.84],[856.13,473.85],[856.14,473.85],[856.15,473.86],[856.17,473.86],[856.18,473.86],[856.18,473.87],[856.19,473.87],[856.2,473.88],[856.21,473.89],[856.21,473.9],[856.22,473.91],[856.22,473.94],[856.23,473.95],[856.24,473.97],[856.25,474],[856.26,474.02],[856.26,474.04],[856.27,474.05],[856.27,474.05],[856.27,474.07],[856.28,474.08],[856.28,474.09],[856.32,474.14],[856.33,474.15],[856.34,474.16],[856.34,474.16],[856.35,474.17],[856.37,474.18],[856.41,474.19],[856.42,474.2],[856.43,474.21],[856.44,474.22],[856.45,474.23],[856.46,474.24],[856.46,474.25],[856.47,474.26],[856.47,474.27],[856.48,474.3],[856.48,474.32],[856.49,474.34],[856.49,474.36],[856.5,474.38],[856.5,474.38],[856.51,474.39],[856.52,474.4],[856.53,474.42],[856.55,474.44],[856.56,474.45],[856.59,474.47],[856.6,474.49],[856.63,474.52],[856.65,474.53],[856.66,474.55],[856.67,474.57],[856.69,474.6],[856.7,474.63],[856.72,474.67],[856.75,474.71],[856.8,474.77],[856.82,474.81],[856.84,474.86],[856.86,474.89],[856.88,474.91],[856.91,474.94],[856.94,474.95],[857,474.97],[857.03,474.97],[857.12,474.96],[857.14,474.96],[857.16,474.97],[857.17,474.99],[857.25,475.07],[857.26,475.08],[857.27,475.08],[857.28,475.09],[857.3,475.09],[857.36,475.09],[857.37,475.09],[857.38,475.1],[857.39,475.11],[857.4,475.11],[857.43,475.14],[857.45,475.17],[857.47,475.2],[857.48,475.22],[857.49,475.23],[857.5,475.24],[857.5,475.25],[857.51,475.31],[857.51,475.32],[857.52,475.34],[857.52,475.35],[857.53,475.37],[857.55,475.39],[857.55,475.4],[857.55,475.4],[857.59,475.45],[857.6,475.47],[857.66,475.53],[857.67,475.55],[857.69,475.56],[857.7,475.57],[857.74,475.6],[857.75,475.6],[857.77,475.61],[857.78,475.63],[857.79,475.64],[857.79,475.65],[857.84,475.73],[857.85,475.75],[857.86,475.76],[857.87,475.77],[857.88,475.78],[857.89,475.79],[857.92,475.8],[857.96,475.83],[858,475.86],[858.01,475.87],[858.02,475.87],[858.03,475.88],[858.04,475.88],[858.05,475.89],[858.06,475.89],[858.07,475.9],[858.09,475.9],[858.1,475.91],[858.11,475.91],[858.13,475.91],[858.16,475.91],[858.19,475.92],[858.21,475.92],[858.22,475.92],[858.23,475.93],[858.24,475.93],[858.25,475.93],[858.26,475.93],[858.27,475.94],[858.3,475.95],[858.33,475.97],[858.36,475.98],[858.37,475.98],[858.38,475.99],[858.39,475.99],[858.41,475.99],[858.42,475.99],[858.43,476],[858.46,476],[858.5,476],[858.54,476],[858.57,476],[858.59,476],[858.6,476],[858.61,476],[858.62,476],[858.63,476.01],[858.65,476.01],[858.66,476.02],[858.67,476.03],[858.68,476.04],[858.7,476.05],[858.72,476.06],[858.74,476.07],[858.75,476.08],[858.77,476.09],[858.78,476.1],[858.79,476.1],[858.81,476.11],[858.83,476.11],[858.87,476.13],[858.9,476.14],[858.93,476.15],[858.95,476.16],[858.97,476.17],[858.99,476.18],[859,476.18],[859.02,476.18],[859.04,476.19],[859.1,476.19],[859.15,476.2],[859.2,476.21],[859.2,476.21],[859.22,476.21],[859.25,476.21],[859.29,476.21],[859.29,476.21],[859.31,476.21],[859.33,476.21],[859.36,476.21],[859.37,476.22],[859.39,476.22],[859.4,476.22],[859.41,476.23],[859.42,476.24],[859.44,476.25],[859.45,476.26],[859.46,476.27],[859.47,476.27],[859.48,476.27],[859.49,476.28],[859.5,476.28],[859.53,476.28],[859.57,476.29],[859.61,476.3],[859.62,476.3],[859.64,476.31],[859.65,476.31],[859.66,476.32],[859.68,476.33],[859.71,476.35],[859.74,476.37],[859.75,476.38],[859.76,476.39],[859.77,476.4],[859.78,476.42],[859.79,476.43],[859.8,476.45],[859.81,476.47],[859.83,476.51],[859.9,476.62],[859.91,476.64],[859.91,476.64],[859.92,476.65],[859.93,476.66],[859.94,476.67],[859.95,476.68],[860.01,476.71],[860.04,476.73],[860.05,476.74],[860.06,476.74],[860.07,476.74],[860.08,476.75],[860.09,476.75],[860.13,476.75],[860.18,476.75],[860.19,476.75],[860.21,476.75],[860.22,476.76],[860.25,476.77],[860.31,476.8],[860.36,476.83],[860.44,476.87],[860.44,476.87],[860.45,476.87],[860.46,476.87],[860.46,476.87],[860.46,476.87],[860.47,476.87],[860.47,476.87],[860.47,476.87],[860.48,476.88],[860.49,476.88],[860.53,476.88],[860.53,476.88],[860.54,476.87],[860.54,476.87],[860.55,476.87],[860.56,476.87],[860.56,476.87],[860.57,476.87],[860.58,476.86],[860.58,476.86],[860.59,476.86],[860.6,476.86],[860.6,476.86],[860.61,476.85],[860.62,476.85],[860.62,476.85],[860.63,476.85],[860.64,476.85],[860.65,476.85],[860.65,476.85],[860.66,476.85],[860.67,476.85],[860.68,476.85],[860.69,476.85],[860.69,476.86],[860.7,476.86],[860.7,476.86],[860.71,476.86],[860.71,476.86],[860.72,476.87],[860.72,476.87],[860.73,476.87],[860.73,476.87],[860.74,476.88],[860.74,476.88],[860.74,476.88],[860.74,476.88],[860.75,476.89],[860.75,476.89],[860.75,476.89],[860.76,476.9],[860.76,476.9],[860.76,476.91],[860.77,476.91],[860.78,476.94],[860.79,476.95],[860.79,476.95],[860.79,476.96],[860.8,476.96],[860.8,476.97],[860.81,476.97],[860.81,476.98],[860.82,476.98],[860.82,476.98],[860.83,476.99],[860.83,476.99],[860.83,476.99],[860.84,476.99],[860.84,476.99],[860.85,476.99],[860.85,476.99],[860.85,477],[860.86,477],[860.86,477],[860.87,477],[860.87,477],[860.89,477],[860.92,477],[860.94,477],[860.94,477],[860.94,477],[860.95,477],[860.96,477],[860.99,477.01],[861,477.01],[861.01,477.01],[861.02,477.01],[861.05,477.01],[861.06,477.02],[861.06,477.02],[861.07,477.02],[861.07,477.02],[861.08,477.02],[861.09,477.02],[861.09,477.02],[861.11,477.02],[861.11,477.01],[861.11,477.01],[861.12,477.02],[861.12,477.02],[861.13,477.02],[861.13,477.02],[861.13,477.02],[861.14,477.02],[861.14,477.02],[861.14,477.02],[861.15,477.03],[861.15,477.03],[861.15,477.03],[861.16,477.03],[861.16,477.04],[861.17,477.04],[861.17,477.05],[861.17,477.05],[861.17,477.05],[861.18,477.06],[861.18,477.08],[861.19,477.08],[861.19,477.08],[861.19,477.09],[861.2,477.1],[861.21,477.1],[861.21,477.11],[861.22,477.12],[861.22,477.12],[861.22,477.13],[861.23,477.13],[861.23,477.14],[861.24,477.15],[861.26,477.17],[861.28,477.18],[861.29,477.19],[861.29,477.19],[861.3,477.19],[861.3,477.2],[861.3,477.2],[861.31,477.2],[861.31,477.2],[861.32,477.2],[861.32,477.2],[861.33,477.21],[861.33,477.21],[861.33,477.21],[861.34,477.21],[861.34,477.21],[861.35,477.21],[861.35,477.21],[861.36,477.21],[861.37,477.21],[861.37,477.21],[861.38,477.21],[861.38,477.2],[861.39,477.2],[861.39,477.2],[861.39,477.2],[861.4,477.2],[861.4,477.19],[861.41,477.19],[861.41,477.19],[861.41,477.19],[861.42,477.18],[861.42,477.18],[861.43,477.17],[861.43,477.17],[861.44,477.16],[861.46,477.12],[861.48,477.09],[861.48,477.09],[861.48,477.09],[861.49,477.08],[861.49,477.08],[861.49,477.08],[861.49,477.07],[861.5,477.07],[861.5,477.07],[861.5,477.07],[861.51,477.06],[861.51,477.06],[861.52,477.06],[861.52,477.06],[861.53,477.05],[861.53,477.05],[861.53,477.05],[861.54,477.05],[861.54,477.05],[861.55,477.05],[861.55,477.05],[861.55,477.05],[861.56,477.05],[861.56,477.05],[861.56,477.05],[861.58,477.05],[861.62,477.05],[861.62,477.05],[861.63,477.05],[861.63,477.05],[861.63,477.05],[861.64,477.05],[861.64,477.05],[861.65,477.05],[861.65,477.06],[861.65,477.06],[861.66,477.06],[861.66,477.06],[861.67,477.07],[861.67,477.07],[861.7,477.09],[861.72,477.12],[861.74,477.13],[861.75,477.14],[861.75,477.15],[861.76,477.15],[861.77,477.16],[861.79,477.19],[861.8,477.2],[861.8,477.2],[861.8,477.21],[861.81,477.21],[861.82,477.22],[861.84,477.24],[861.87,477.26],[861.91,477.3],[861.93,477.31],[861.93,477.31],[861.94,477.32],[861.94,477.32],[861.95,477.33],[861.95,477.33],[861.96,477.34],[861.96,477.35],[861.97,477.37],[861.99,477.4],[862,477.41],[862,477.41],[862,477.41],[862.01,477.42],[862.01,477.43],[862.02,477.43],[862.05,477.45],[862.05,477.46],[862.05,477.46],[862.08,477.49],[862.1,477.51],[862.12,477.52],[862.14,477.55],[862.17,477.58],[862.19,477.59],[862.21,477.61],[862.23,477.64],[862.24,477.64],[862.24,477.64],[862.24,477.64],[862.25,477.65],[862.25,477.65],[862.25,477.65],[862.26,477.65],[862.26,477.65],[862.26,477.65],[862.27,477.65],[862.27,477.65],[862.27,477.65],[862.28,477.65],[862.28,477.65],[862.29,477.65],[862.29,477.65],[862.3,477.65],[862.3,477.64],[862.31,477.64],[862.31,477.64],[862.32,477.64],[862.32,477.64],[862.32,477.64],[862.33,477.64],[862.33,477.64],[862.33,477.64],[862.34,477.64],[862.34,477.64],[862.37,477.64],[862.42,477.65],[862.42,477.65],[862.43,477.65],[862.43,477.65],[862.44,477.65],[862.45,477.65],[862.45,477.65],[862.46,477.66],[862.47,477.66],[862.47,477.66],[862.48,477.67],[862.49,477.67],[862.49,477.67],[862.5,477.67],[862.5,477.68],[862.51,477.68],[862.51,477.68],[862.52,477.69],[862.52,477.69],[862.53,477.69],[862.53,477.7],[862.53,477.7],[862.54,477.71],[862.57,477.74],[862.58,477.75],[862.58,477.75],[862.59,477.76],[862.6,477.78],[862.61,477.79],[862.61,477.79],[862.61,477.79],[862.62,477.79],[862.62,477.8],[862.63,477.8],[862.63,477.8],[862.63,477.8],[862.66,477.8],[862.66,477.8],[862.67,477.81],[862.67,477.81],[862.68,477.81],[862.68,477.81],[862.68,477.81],[862.69,477.82],[862.69,477.82],[862.69,477.82],[862.7,477.83],[862.73,477.87],[862.73,477.87],[862.73,477.87],[862.74,477.88],[862.74,477.88],[862.74,477.88],[862.75,477.88],[862.76,477.89],[862.76,477.89],[862.77,477.89],[862.77,477.9],[862.78,477.9],[862.81,477.92],[862.81,477.93],[862.82,477.93],[862.86,477.95],[862.88,477.97],[862.89,477.97],[862.89,477.97],[862.9,477.98],[862.97,478.01],[862.99,478.02],[863.01,478.03],[863.02,478.03],[863.03,478.04],[863.04,478.04],[863.04,478.05],[863.05,478.05],[863.06,478.06],[863.09,478.08],[863.12,478.1],[863.12,478.11],[863.13,478.11],[863.14,478.12],[863.14,478.12],[863.15,478.13],[863.16,478.15],[863.18,478.17],[863.18,478.17],[863.18,478.17],[863.19,478.18],[863.2,478.19],[863.2,478.19],[863.21,478.2],[863.22,478.2],[863.24,478.21],[863.26,478.22],[863.28,478.23],[863.29,478.24],[863.32,478.25],[863.33,478.26],[863.34,478.26],[863.35,478.26],[863.35,478.27],[863.36,478.27],[863.37,478.28],[863.38,478.29],[863.4,478.3],[863.42,478.32],[863.43,478.32],[863.43,478.33],[863.44,478.34],[863.45,478.34],[863.45,478.35],[863.46,478.36],[863.46,478.37],[863.47,478.4],[863.48,478.42],[863.49,478.43],[863.5,478.44],[863.51,478.46],[863.52,478.47],[863.56,478.51],[863.57,478.52],[863.57,478.52],[863.58,478.53],[863.59,478.54],[863.6,478.55],[863.6,478.56],[863.61,478.57],[863.62,478.59],[863.64,478.61],[863.67,478.66],[863.7,478.7],[863.71,478.72],[863.73,478.73],[863.76,478.76],[863.78,478.78],[863.79,478.8],[863.83,478.83],[863.84,478.84],[863.88,478.88],[863.95,478.95],[863.96,478.96],[863.97,478.96],[863.98,478.97],[864,478.98],[864.01,478.99],[864.03,478.99],[864.04,479],[864.06,479],[864.07,479.01],[864.11,479.01],[864.13,479.02],[864.14,479.02],[864.16,479.03],[864.18,479.04],[864.19,479.05],[864.2,479.05],[864.21,479.06],[864.26,479.09],[864.34,479.15],[864.36,479.16],[864.41,479.2],[864.42,479.21],[864.46,479.25],[864.5,479.28],[864.57,479.34],[864.61,479.38],[864.66,479.43],[864.69,479.46],[864.78,479.53],[864.8,479.54],[864.81,479.55],[864.83,479.56],[864.84,479.57],[864.85,479.57],[864.87,479.58],[864.88,479.58],[864.89,479.59],[864.91,479.59],[864.92,479.6],[864.93,479.6],[864.95,479.6],[864.96,479.6],[864.98,479.6],[864.98,479.6],[865,479.6],[865.02,479.6],[865.03,479.6],[865.04,479.6],[865.05,479.6],[865.06,479.6],[865.07,479.6],[865.08,479.61],[865.09,479.61],[865.09,479.61],[865.1,479.62],[865.11,479.62],[865.11,479.63],[865.12,479.64],[865.16,479.68],[865.18,479.7],[865.2,479.72],[865.2,479.73],[865.21,479.74],[865.22,479.74],[865.23,479.74],[865.33,479.79],[865.42,479.84],[865.44,479.85],[865.45,479.86],[865.46,479.86],[865.46,479.87],[865.48,479.88],[865.5,479.9],[865.55,479.94],[865.58,479.97],[865.58,479.97],[865.59,479.98],[865.6,479.98],[865.61,479.99],[865.64,480],[865.68,480.02],[865.69,480.02],[865.7,480.03],[865.7,480.03],[865.7,480.03],[865.71,480.03],[865.71,480.02],[865.71,480.02],[865.71,480.02],[865.71,480.02],[865.71,480.02],[865.71,480.02],[865.7,480.02],[865.7,480.02],[865.7,480.02],[865.7,480.02],[865.7,480.02],[865.7,480.02],[865.7,480.02],[865.7,480.03],[865.71,480.05],[865.71,480.06],[865.71,480.06],[865.72,480.06],[865.72,480.07],[865.72,480.07],[865.72,480.08],[865.71,480.1],[865.71,480.11],[865.71,480.14],[865.7,480.14],[865.7,480.16],[865.7,480.16],[865.7,480.17],[865.7,480.18],[865.69,480.19],[865.69,480.2],[865.69,480.2],[865.7,480.21],[865.7,480.22],[865.7,480.22],[865.71,480.23],[865.72,480.24],[865.73,480.25],[865.74,480.26],[865.74,480.27],[865.75,480.28],[865.75,480.29],[865.76,480.3],[865.76,480.3],[865.77,480.3],[865.77,480.31],[865.8,480.32],[865.8,480.32],[865.81,480.32],[865.81,480.33],[865.82,480.33],[865.82,480.33],[865.87,480.41],[865.88,480.42],[865.89,480.43],[865.89,480.44],[865.9,480.45],[865.91,480.46],[865.95,480.48],[865.98,480.51],[866.02,480.53],[866.02,480.54],[866.02,480.54],[866.03,480.54],[866.03,480.54],[866.03,480.54],[866.03,480.54],[866.04,480.54],[866.04,480.54],[866.04,480.54],[866.04,480.54],[866.05,480.54],[866.05,480.54],[866.05,480.54],[866.05,480.54],[866.05,480.54],[866.05,480.54],[866.05,480.54],[866.06,480.54],[866.06,480.54],[866.07,480.54],[866.08,480.54],[866.08,480.54],[866.09,480.53],[866.09,480.53],[866.1,480.53],[866.12,480.52],[866.12,480.52],[866.13,480.52],[866.13,480.52],[866.14,480.52],[866.15,480.52],[866.15,480.52],[866.16,480.53],[866.17,480.53],[866.18,480.53],[866.19,480.53],[866.2,480.54],[866.21,480.55],[866.22,480.55],[866.23,480.55],[866.23,480.55],[866.24,480.56],[866.24,480.56],[866.24,480.57],[866.24,480.58],[866.24,480.59],[866.24,480.59],[866.24,480.6],[866.24,480.6],[866.25,480.61],[866.25,480.62],[866.26,480.62],[866.27,480.61],[866.27,480.61],[866.27,480.61],[866.27,480.61],[866.28,480.61],[866.28,480.62],[866.28,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.62],[866.29,480.63],[866.29,480.63],[866.29,480.63],[866.29,480.63],[866.29,480.63],[866.29,480.63],[866.29,480.63],[866.3,480.63],[866.3,480.63],[866.3,480.63],[866.31,480.63],[866.32,480.63],[866.32,480.64],[866.32,480.64],[866.32,480.65],[866.32,480.65],[866.31,480.65],[866.31,480.65],[866.31,480.65],[866.32,480.65],[866.32,480.66],[866.32,480.66],[866.32,480.66],[866.32,480.65],[866.32,480.65],[866.33,480.65],[866.33,480.65],[866.33,480.65],[866.33,480.65],[866.33,480.66],[866.32,480.66],[866.32,480.66],[866.32,480.67],[866.32,480.67],[866.31,480.67],[866.31,480.67],[866.31,480.68],[866.31,480.68],[866.31,480.68],[866.31,480.68],[866.31,480.68],[866.31,480.68],[866.32,480.68],[866.32,480.69],[866.32,480.69],[866.32,480.69],[866.32,480.69],[866.32,480.69],[866.32,480.7],[866.32,480.7],[866.32,480.7],[866.32,480.7],[866.32,480.7],[866.32,480.7],[866.32,480.71],[866.32,480.71],[866.32,480.71],[866.32,480.71],[866.32,480.71],[866.32,480.71],[866.32,480.71],[866.33,480.73],[866.33,480.74],[866.34,480.75],[866.34,480.75],[866.34,480.76],[866.34,480.76],[866.34,480.76],[866.33,480.77],[866.33,480.77],[866.33,480.78],[866.33,480.78],[866.33,480.79],[866.33,480.79],[866.33,480.79],[866.33,480.79],[866.33,480.79],[866.33,480.79],[866.33,480.79],[866.33,480.8],[866.33,480.8],[866.33,480.8],[866.33,480.8],[866.33,480.8],[866.33,480.79],[866.33,480.79],[866.33,480.79],[866.34,480.79],[866.34,480.79],[866.34,480.79],[866.34,480.79],[866.34,480.79],[866.34,480.79],[866.34,480.8],[866.35,480.8],[866.36,480.8],[866.36,480.8],[866.37,480.8],[866.37,480.79],[866.37,480.79],[866.37,480.79],[866.37,480.78],[866.37,480.78],[866.37,480.78],[866.37,480.78],[866.36,480.78],[866.36,480.77],[866.36,480.77],[866.36,480.77],[866.36,480.77]]; diff --git a/data/small.js b/data/small.js new file mode 100644 index 0000000..f1600fe --- /dev/null +++ b/data/small.js @@ -0,0 +1 @@ +export const data = [[0, 0], [1, 1], [1, 2], [2, 2], [5, 5], [5, 0], [6, 10], [10, 10]] diff --git a/lib/psimpl/LICENSE.txt b/lib/psimpl/LICENSE.txt new file mode 100644 index 0000000..7714141 --- /dev/null +++ b/lib/psimpl/LICENSE.txt @@ -0,0 +1,470 @@ + MOZILLA PUBLIC LICENSE + Version 1.1 + + --------------- + +1. Definitions. + + 1.0.1. "Commercial Use" means distribution or otherwise making the + Covered Code available to a third party. + + 1.1. "Contributor" means each entity that creates or contributes to + the creation of Modifications. + + 1.2. "Contributor Version" means the combination of the Original + Code, prior Modifications used by a Contributor, and the Modifications + made by that particular Contributor. + + 1.3. "Covered Code" means the Original Code or Modifications or the + combination of the Original Code and Modifications, in each case + including portions thereof. + + 1.4. "Electronic Distribution Mechanism" means a mechanism generally + accepted in the software development community for the electronic + transfer of data. + + 1.5. "Executable" means Covered Code in any form other than Source + Code. + + 1.6. "Initial Developer" means the individual or entity identified + as the Initial Developer in the Source Code notice required by Exhibit + A. + + 1.7. "Larger Work" means a work which combines Covered Code or + portions thereof with code not governed by the terms of this License. + + 1.8. "License" means this document. + + 1.8.1. "Licensable" means having the right to grant, to the maximum + extent possible, whether at the time of the initial grant or + subsequently acquired, any and all of the rights conveyed herein. + + 1.9. "Modifications" means any addition to or deletion from the + substance or structure of either the Original Code or any previous + Modifications. When Covered Code is released as a series of files, a + Modification is: + A. Any addition to or deletion from the contents of a file + containing Original Code or previous Modifications. + + B. Any new file that contains any part of the Original Code or + previous Modifications. + + 1.10. "Original Code" means Source Code of computer software code + which is described in the Source Code notice required by Exhibit A as + Original Code, and which, at the time of its release under this + License is not already Covered Code governed by this License. + + 1.10.1. "Patent Claims" means any patent claim(s), now owned or + hereafter acquired, including without limitation, method, process, + and apparatus claims, in any patent Licensable by grantor. + + 1.11. "Source Code" means the preferred form of the Covered Code for + making modifications to it, including all modules it contains, plus + any associated interface definition files, scripts used to control + compilation and installation of an Executable, or source code + differential comparisons against either the Original Code or another + well known, available Covered Code of the Contributor's choice. The + Source Code can be in a compressed or archival form, provided the + appropriate decompression or de-archiving software is widely available + for no charge. + + 1.12. "You" (or "Your") means an individual or a legal entity + exercising rights under, and complying with all of the terms of, this + License or a future version of this License issued under Section 6.1. + For legal entities, "You" includes any entity which controls, is + controlled by, or is under common control with You. For purposes of + this definition, "control" means (a) the power, direct or indirect, + to cause the direction or management of such entity, whether by + contract or otherwise, or (b) ownership of more than fifty percent + (50%) of the outstanding shares or beneficial ownership of such + entity. + +2. Source Code License. + + 2.1. The Initial Developer Grant. + The Initial Developer hereby grants You a world-wide, royalty-free, + non-exclusive license, subject to third party intellectual property + claims: + (a) under intellectual property rights (other than patent or + trademark) Licensable by Initial Developer to use, reproduce, + modify, display, perform, sublicense and distribute the Original + Code (or portions thereof) with or without Modifications, and/or + as part of a Larger Work; and + + (b) under Patents Claims infringed by the making, using or + selling of Original Code, to make, have made, use, practice, + sell, and offer for sale, and/or otherwise dispose of the + Original Code (or portions thereof). + + (c) the licenses granted in this Section 2.1(a) and (b) are + effective on the date Initial Developer first distributes + Original Code under the terms of this License. + + (d) Notwithstanding Section 2.1(b) above, no patent license is + granted: 1) for code that You delete from the Original Code; 2) + separate from the Original Code; or 3) for infringements caused + by: i) the modification of the Original Code or ii) the + combination of the Original Code with other software or devices. + + 2.2. Contributor Grant. + Subject to third party intellectual property claims, each Contributor + hereby grants You a world-wide, royalty-free, non-exclusive license + + (a) under intellectual property rights (other than patent or + trademark) Licensable by Contributor, to use, reproduce, modify, + display, perform, sublicense and distribute the Modifications + created by such Contributor (or portions thereof) either on an + unmodified basis, with other Modifications, as Covered Code + and/or as part of a Larger Work; and + + (b) under Patent Claims infringed by the making, using, or + selling of Modifications made by that Contributor either alone + and/or in combination with its Contributor Version (or portions + of such combination), to make, use, sell, offer for sale, have + made, and/or otherwise dispose of: 1) Modifications made by that + Contributor (or portions thereof); and 2) the combination of + Modifications made by that Contributor with its Contributor + Version (or portions of such combination). + + (c) the licenses granted in Sections 2.2(a) and 2.2(b) are + effective on the date Contributor first makes Commercial Use of + the Covered Code. + + (d) Notwithstanding Section 2.2(b) above, no patent license is + granted: 1) for any code that Contributor has deleted from the + Contributor Version; 2) separate from the Contributor Version; + 3) for infringements caused by: i) third party modifications of + Contributor Version or ii) the combination of Modifications made + by that Contributor with other software (except as part of the + Contributor Version) or other devices; or 4) under Patent Claims + infringed by Covered Code in the absence of Modifications made by + that Contributor. + +3. Distribution Obligations. + + 3.1. Application of License. + The Modifications which You create or to which You contribute are + governed by the terms of this License, including without limitation + Section 2.2. The Source Code version of Covered Code may be + distributed only under the terms of this License or a future version + of this License released under Section 6.1, and You must include a + copy of this License with every copy of the Source Code You + distribute. You may not offer or impose any terms on any Source Code + version that alters or restricts the applicable version of this + License or the recipients' rights hereunder. However, You may include + an additional document offering the additional rights described in + Section 3.5. + + 3.2. Availability of Source Code. + Any Modification which You create or to which You contribute must be + made available in Source Code form under the terms of this License + either on the same media as an Executable version or via an accepted + Electronic Distribution Mechanism to anyone to whom you made an + Executable version available; and if made available via Electronic + Distribution Mechanism, must remain available for at least twelve (12) + months after the date it initially became available, or at least six + (6) months after a subsequent version of that particular Modification + has been made available to such recipients. You are responsible for + ensuring that the Source Code version remains available even if the + Electronic Distribution Mechanism is maintained by a third party. + + 3.3. Description of Modifications. + You must cause all Covered Code to which You contribute to contain a + file documenting the changes You made to create that Covered Code and + the date of any change. You must include a prominent statement that + the Modification is derived, directly or indirectly, from Original + Code provided by the Initial Developer and including the name of the + Initial Developer in (a) the Source Code, and (b) in any notice in an + Executable version or related documentation in which You describe the + origin or ownership of the Covered Code. + + 3.4. Intellectual Property Matters + (a) Third Party Claims. + If Contributor has knowledge that a license under a third party's + intellectual property rights is required to exercise the rights + granted by such Contributor under Sections 2.1 or 2.2, + Contributor must include a text file with the Source Code + distribution titled "LEGAL" which describes the claim and the + party making the claim in sufficient detail that a recipient will + know whom to contact. If Contributor obtains such knowledge after + the Modification is made available as described in Section 3.2, + Contributor shall promptly modify the LEGAL file in all copies + Contributor makes available thereafter and shall take other steps + (such as notifying appropriate mailing lists or newsgroups) + reasonably calculated to inform those who received the Covered + Code that new knowledge has been obtained. + + (b) Contributor APIs. + If Contributor's Modifications include an application programming + interface and Contributor has knowledge of patent licenses which + are reasonably necessary to implement that API, Contributor must + also include this information in the LEGAL file. + + (c) Representations. + Contributor represents that, except as disclosed pursuant to + Section 3.4(a) above, Contributor believes that Contributor's + Modifications are Contributor's original creation(s) and/or + Contributor has sufficient rights to grant the rights conveyed by + this License. + + 3.5. Required Notices. + You must duplicate the notice in Exhibit A in each file of the Source + Code. If it is not possible to put such notice in a particular Source + Code file due to its structure, then You must include such notice in a + location (such as a relevant directory) where a user would be likely + to look for such a notice. If You created one or more Modification(s) + You may add your name as a Contributor to the notice described in + Exhibit A. You must also duplicate this License in any documentation + for the Source Code where You describe recipients' rights or ownership + rights relating to Covered Code. You may choose to offer, and to + charge a fee for, warranty, support, indemnity or liability + obligations to one or more recipients of Covered Code. However, You + may do so only on Your own behalf, and not on behalf of the Initial + Developer or any Contributor. You must make it absolutely clear than + any such warranty, support, indemnity or liability obligation is + offered by You alone, and You hereby agree to indemnify the Initial + Developer and every Contributor for any liability incurred by the + Initial Developer or such Contributor as a result of warranty, + support, indemnity or liability terms You offer. + + 3.6. Distribution of Executable Versions. + You may distribute Covered Code in Executable form only if the + requirements of Section 3.1-3.5 have been met for that Covered Code, + and if You include a notice stating that the Source Code version of + the Covered Code is available under the terms of this License, + including a description of how and where You have fulfilled the + obligations of Section 3.2. The notice must be conspicuously included + in any notice in an Executable version, related documentation or + collateral in which You describe recipients' rights relating to the + Covered Code. You may distribute the Executable version of Covered + Code or ownership rights under a license of Your choice, which may + contain terms different from this License, provided that You are in + compliance with the terms of this License and that the license for the + Executable version does not attempt to limit or alter the recipient's + rights in the Source Code version from the rights set forth in this + License. If You distribute the Executable version under a different + license You must make it absolutely clear that any terms which differ + from this License are offered by You alone, not by the Initial + Developer or any Contributor. You hereby agree to indemnify the + Initial Developer and every Contributor for any liability incurred by + the Initial Developer or such Contributor as a result of any such + terms You offer. + + 3.7. Larger Works. + You may create a Larger Work by combining Covered Code with other code + not governed by the terms of this License and distribute the Larger + Work as a single product. In such a case, You must make sure the + requirements of this License are fulfilled for the Covered Code. + +4. Inability to Comply Due to Statute or Regulation. + + If it is impossible for You to comply with any of the terms of this + License with respect to some or all of the Covered Code due to + statute, judicial order, or regulation then You must: (a) comply with + the terms of this License to the maximum extent possible; and (b) + describe the limitations and the code they affect. Such description + must be included in the LEGAL file described in Section 3.4 and must + be included with all distributions of the Source Code. Except to the + extent prohibited by statute or regulation, such description must be + sufficiently detailed for a recipient of ordinary skill to be able to + understand it. + +5. Application of this License. + + This License applies to code to which the Initial Developer has + attached the notice in Exhibit A and to related Covered Code. + +6. Versions of the License. + + 6.1. New Versions. + Netscape Communications Corporation ("Netscape") may publish revised + and/or new versions of the License from time to time. Each version + will be given a distinguishing version number. + + 6.2. Effect of New Versions. + Once Covered Code has been published under a particular version of the + License, You may always continue to use it under the terms of that + version. You may also choose to use such Covered Code under the terms + of any subsequent version of the License published by Netscape. No one + other than Netscape has the right to modify the terms applicable to + Covered Code created under this License. + + 6.3. Derivative Works. + If You create or use a modified version of this License (which you may + only do in order to apply it to code which is not already Covered Code + governed by this License), You must (a) rename Your license so that + the phrases "Mozilla", "MOZILLAPL", "MOZPL", "Netscape", + "MPL", "NPL" or any confusingly similar phrase do not appear in your + license (except to note that your license differs from this License) + and (b) otherwise make it clear that Your version of the license + contains terms which differ from the Mozilla Public License and + Netscape Public License. (Filling in the name of the Initial + Developer, Original Code or Contributor in the notice described in + Exhibit A shall not of themselves be deemed to be modifications of + this License.) + +7. DISCLAIMER OF WARRANTY. + + COVERED CODE IS PROVIDED UNDER THIS LICENSE ON AN "AS IS" BASIS, + WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, + WITHOUT LIMITATION, WARRANTIES THAT THE COVERED CODE IS FREE OF + DEFECTS, MERCHANTABLE, FIT FOR A PARTICULAR PURPOSE OR NON-INFRINGING. + THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE COVERED CODE + IS WITH YOU. SHOULD ANY COVERED CODE PROVE DEFECTIVE IN ANY RESPECT, + YOU (NOT THE INITIAL DEVELOPER OR ANY OTHER CONTRIBUTOR) ASSUME THE + COST OF ANY NECESSARY SERVICING, REPAIR OR CORRECTION. THIS DISCLAIMER + OF WARRANTY CONSTITUTES AN ESSENTIAL PART OF THIS LICENSE. NO USE OF + ANY COVERED CODE IS AUTHORIZED HEREUNDER EXCEPT UNDER THIS DISCLAIMER. + +8. TERMINATION. + + 8.1. This License and the rights granted hereunder will terminate + automatically if You fail to comply with terms herein and fail to cure + such breach within 30 days of becoming aware of the breach. All + sublicenses to the Covered Code which are properly granted shall + survive any termination of this License. Provisions which, by their + nature, must remain in effect beyond the termination of this License + shall survive. + + 8.2. If You initiate litigation by asserting a patent infringement + claim (excluding declatory judgment actions) against Initial Developer + or a Contributor (the Initial Developer or Contributor against whom + You file such action is referred to as "Participant") alleging that: + + (a) such Participant's Contributor Version directly or indirectly + infringes any patent, then any and all rights granted by such + Participant to You under Sections 2.1 and/or 2.2 of this License + shall, upon 60 days notice from Participant terminate prospectively, + unless if within 60 days after receipt of notice You either: (i) + agree in writing to pay Participant a mutually agreeable reasonable + royalty for Your past and future use of Modifications made by such + Participant, or (ii) withdraw Your litigation claim with respect to + the Contributor Version against such Participant. If within 60 days + of notice, a reasonable royalty and payment arrangement are not + mutually agreed upon in writing by the parties or the litigation claim + is not withdrawn, the rights granted by Participant to You under + Sections 2.1 and/or 2.2 automatically terminate at the expiration of + the 60 day notice period specified above. + + (b) any software, hardware, or device, other than such Participant's + Contributor Version, directly or indirectly infringes any patent, then + any rights granted to You by such Participant under Sections 2.1(b) + and 2.2(b) are revoked effective as of the date You first made, used, + sold, distributed, or had made, Modifications made by that + Participant. + + 8.3. If You assert a patent infringement claim against Participant + alleging that such Participant's Contributor Version directly or + indirectly infringes any patent where such claim is resolved (such as + by license or settlement) prior to the initiation of patent + infringement litigation, then the reasonable value of the licenses + granted by such Participant under Sections 2.1 or 2.2 shall be taken + into account in determining the amount or value of any payment or + license. + + 8.4. In the event of termination under Sections 8.1 or 8.2 above, + all end user license agreements (excluding distributors and resellers) + which have been validly granted by You or any distributor hereunder + prior to termination shall survive termination. + +9. LIMITATION OF LIABILITY. + + UNDER NO CIRCUMSTANCES AND UNDER NO LEGAL THEORY, WHETHER TORT + (INCLUDING NEGLIGENCE), CONTRACT, OR OTHERWISE, SHALL YOU, THE INITIAL + DEVELOPER, ANY OTHER CONTRIBUTOR, OR ANY DISTRIBUTOR OF COVERED CODE, + OR ANY SUPPLIER OF ANY OF SUCH PARTIES, BE LIABLE TO ANY PERSON FOR + ANY INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY + CHARACTER INCLUDING, WITHOUT LIMITATION, DAMAGES FOR LOSS OF GOODWILL, + WORK STOPPAGE, COMPUTER FAILURE OR MALFUNCTION, OR ANY AND ALL OTHER + COMMERCIAL DAMAGES OR LOSSES, EVEN IF SUCH PARTY SHALL HAVE BEEN + INFORMED OF THE POSSIBILITY OF SUCH DAMAGES. THIS LIMITATION OF + LIABILITY SHALL NOT APPLY TO LIABILITY FOR DEATH OR PERSONAL INJURY + RESULTING FROM SUCH PARTY'S NEGLIGENCE TO THE EXTENT APPLICABLE LAW + PROHIBITS SUCH LIMITATION. SOME JURISDICTIONS DO NOT ALLOW THE + EXCLUSION OR LIMITATION OF INCIDENTAL OR CONSEQUENTIAL DAMAGES, SO + THIS EXCLUSION AND LIMITATION MAY NOT APPLY TO YOU. + +10. U.S. GOVERNMENT END USERS. + + The Covered Code is a "commercial item," as that term is defined in + 48 C.F.R. 2.101 (Oct. 1995), consisting of "commercial computer + software" and "commercial computer software documentation," as such + terms are used in 48 C.F.R. 12.212 (Sept. 1995). Consistent with 48 + C.F.R. 12.212 and 48 C.F.R. 227.7202-1 through 227.7202-4 (June 1995), + all U.S. Government End Users acquire Covered Code with only those + rights set forth herein. + +11. MISCELLANEOUS. + + This License represents the complete agreement concerning subject + matter hereof. If any provision of this License is held to be + unenforceable, such provision shall be reformed only to the extent + necessary to make it enforceable. This License shall be governed by + California law provisions (except to the extent applicable law, if + any, provides otherwise), excluding its conflict-of-law provisions. + With respect to disputes in which at least one party is a citizen of, + or an entity chartered or registered to do business in the United + States of America, any litigation relating to this License shall be + subject to the jurisdiction of the Federal Courts of the Northern + District of California, with venue lying in Santa Clara County, + California, with the losing party responsible for costs, including + without limitation, court costs and reasonable attorneys' fees and + expenses. The application of the United Nations Convention on + Contracts for the International Sale of Goods is expressly excluded. + Any law or regulation which provides that the language of a contract + shall be construed against the drafter shall not apply to this + License. + +12. RESPONSIBILITY FOR CLAIMS. + + As between Initial Developer and the Contributors, each party is + responsible for claims and damages arising, directly or indirectly, + out of its utilization of rights under this License and You agree to + work with Initial Developer and Contributors to distribute such + responsibility on an equitable basis. Nothing herein is intended or + shall be deemed to constitute any admission of liability. + +13. MULTIPLE-LICENSED CODE. + + Initial Developer may designate portions of the Covered Code as + "Multiple-Licensed". "Multiple-Licensed" means that the Initial + Developer permits you to utilize portions of the Covered Code under + Your choice of the NPL or the alternative licenses, if any, specified + by the Initial Developer in the file described in Exhibit A. + +EXHIBIT A -Mozilla Public License. + + ``The contents of this file are subject to the Mozilla Public License + Version 1.1 (the "License"); you may not use this file except in + compliance with the License. You may obtain a copy of the License at + http://www.mozilla.org/MPL/ + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See the + License for the specific language governing rights and limitations + under the License. + + The Original Code is ______________________________________. + + The Initial Developer of the Original Code is ________________________. + Portions created by ______________________ are Copyright (C) ______ + _______________________. All Rights Reserved. + + Contributor(s): ______________________________________. + + Alternatively, the contents of this file may be used under the terms + of the _____ license (the "[___] License"), in which case the + provisions of [______] License are applicable instead of those + above. If you wish to allow use of your version of this file only + under the terms of the [____] License and not to allow others to use + your version of this file under the MPL, indicate your decision by + deleting the provisions above and replace them with the notice and + other provisions required by the [___] License. If you do not delete + the provisions above, a recipient may use your version of this file + under either the MPL or the [___] License." + + [NOTE: The text of this Exhibit A may differ slightly from the text of + the notices in the Source Code files of the Original Code. You should + use the text of this Exhibit A rather than the text found in the + Original Code Source Code for Your Modifications.] + diff --git a/lib/psimpl/README.txt b/lib/psimpl/README.txt new file mode 100644 index 0000000..398ebb4 --- /dev/null +++ b/lib/psimpl/README.txt @@ -0,0 +1,97 @@ +psimpl - generic n-dimensional polyline simplification +Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com +-------------------------------------------------------------------------------- +28-09-2010 - Initial version +23-10-2010 - Changed license from CPOL to MPL +26-10-2010 - Clarified input (type) requirements, and changed the + behavior of the algorithms under invalid input. +01-12-2010 - Added the nth point, perpendicular distance and Reumann-Witkam + routines; moved all functions related to distance calculations to + the math namespace +10-12-2010 - Fixed a bug in the perpendicular distance routine +27-02-2011 - Added Opheim simplification, and functions for computing positional + errors due to simplification; renamed simplify_douglas_peucker_alt + to simplify_douglas_peucker_n +18-06-2011 Added Lang simplification; fixed divide by zero bug when using + integers; fixed a bug where incorrect output iterators were + returned under invalid input; fixed a bug in douglas_peucker_n + where an incorrect number of points could be returned; fixed a bug + in compute_positional_errors2 that required the output and input + iterator types to be the same; fixed a bug in + compute_positional_error_statistics where invalid statistics could + be returned under questionable input; documented input iterator + requirements for each algorithm; miscellaneous refactoring of most + algorithms. +-------------------------------------------------------------------------------- +'psimpl' is licensed under the Mozilla Public License Version 1.1 (MPL), see +the accompanying LICENSE.txt file. Alternatively a copy of this license may be +obtained from http://www.mozilla.org/MPL/. +-------------------------------------------------------------------------------- +'psimpl' is hosted at SourceForge: http://sourceforge.net/projects/psimpl/ and +has a dedicated website: http://psimpl.sf.net +Originally psimpl was released as part of the article 'Polyline Simplification' +at The Code Project: +http://www.codeproject.com/KB/recipes/PolylineSimplification.aspx + +================================================================================ + +'psimpl' is a c++ polyline simplification library that is generic, easy to use, +and supports the following algorithms: + +Simplification +* Nth point - A naive algorithm that keeps only each nth point +* Distance between points - Removes successive points that are clustered + together +* Perpendicular distance - Removes points based on their distance to the line + segment defined by their left and right neighbors +* Reumann-Witkam - Shifts a strip along the polyline and removes points that + fall outside +* Opheim - A constrained version of Reumann-Witkam +* Lang - Similar to the Perpendicular distance routine, but instead of looking + only at direct neighbors, an entire search region is processed +* Douglas-Peucker - A classic simplification algorithm that provides an + excellent approximation of the original line +* A variation on the Douglas-Peucker algorithm - Slower, but yields better + results at lower resolutions + +Errors +* positional error - Distance of each polyline point to its simplification + +All the algorithms have been implemented in a single standalone C++ header +using an STL-style interface that operates on input and output iterators. +Polylines can be of any dimension, and defined using floating point or signed +integer data types. + +================================================================================ + +The demo package contains a win32 demo application for 'psimpl'. The demo +application allows you to experiment with the different simplification +algorithms. It can generate pseudo random 2D-polylines of up to 10.000.000 +vertices in various types of containers. The boundingbox of the generated +polyline is always 2n x n, where n is the amount of vertices of the generated +polyline. Use this fact to specify a proper distance tolerance. + +Internally, the generated and simplified polyline are always stored in a +QVector. Just before simplification, it is converted to the selected +container type. Afterwards, this temporary container is destructed. Normally you +won't notice this, but it seems that creating and destructing a +std::list(10.000.000) can take a rather long time. The resulting performance +measurements never include these conversion steps. I chose this approach as it +allowed me to quickly add new container types. + +Note that the entire application is single threaded (sorry for being lazy), +meaning it could go 'not responding' during a long running simplification. + +The demo application was made using Qt 4.7.3, Qt Creator 2.1.0 and Visual Studio +2008 Express. Complete source code is included. + +================================================================================ + +If you decide to use my code for your (commercial) project, let me know! I would +love to hear where my code ends up and why you chose to use it! If possible, a +voluntary donation to my PayPal account (edekoning@gmail.com) would be much +appreciated. + +Regards, +Elmar de Koning +edekoning@gmail.com diff --git a/lib/psimpl/demo/DPWorker.cpp b/lib/psimpl/demo/DPWorker.cpp new file mode 100644 index 0000000..e080ed8 --- /dev/null +++ b/lib/psimpl/demo/DPWorker.cpp @@ -0,0 +1,782 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#include "DPWorker.h" +#include "psimpl_reference.h" +#include "../lib/psimpl.h" +#include +#include + +namespace psimpl { + + DPWorker::DPWorker (QObject* inParent) : + QObject (inParent) + { + // note: disable this line during testing + srand ((unsigned)QTime::currentTime ().msec ()); + } + + void DPWorker::Generate (int inCount) { + emit SignalGeneratingPolyline (); + + QTime t; + t.start (); + + mGeneratedCoords.resize (inCount*2); + mSimplifiedCoords.clear (); + + qreal miny = inCount; + qreal maxy = -inCount; + + const qreal PI = std::atan (1.0) * 4; + qreal step = 2 * PI / inCount; + + int a = 1 + (rand () % 2); // [1, 3] + int b = 2 + (rand () % 3); // [2, 5] + int c = 3 + (rand () % 7); // [3, 10] + + // generate a random line + for (int i=0; i (begin, end, n, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_nth_point <2> (begin, end, n, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_nth_point <2> (begin, end, n, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_nth_point <2> (begin, end, n, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyRD (Container cont, QString tol) { + QTime t; + int duration = 0; + + mSimplifiedCoords.clear (); + + switch (cont) { + case ARRAY_FLOAT: + { + // convert + emit SignalConvertingPolyline (); + float* generatedPoints = new float [mGeneratedCoords.size ()]; + for (int c=0; c (begin, end, tol.toFloat(), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_radial_distance <2> (begin, end, tol.toDouble (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_radial_distance <2> (begin, end, tol.toDouble (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_radial_distance <2> (begin, end, tol.toLongLong (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyPD (Container cont, QString tol, int repeat) { + QTime t; + int duration = 0; + + mSimplifiedCoords.clear (); + + switch (cont) { + case ARRAY_FLOAT: + { + // convert + emit SignalConvertingPolyline (); + float* generatedPoints = new float [mGeneratedCoords.size ()]; + for (int c=0; c (begin, end, tol.toFloat(), repeat, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_perpendicular_distance <2> (begin, end, tol.toDouble (), repeat, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_perpendicular_distance <2> (begin, end, tol.toDouble (), repeat, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_perpendicular_distance <2> (begin, end, tol.toLongLong (), repeat, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyRW (Container cont, QString tol) + { + QTime t; + int duration = 0; + + mSimplifiedCoords.clear (); + + switch (cont) { + case ARRAY_FLOAT: + { + // convert + emit SignalConvertingPolyline (); + float* generatedPoints = new float [mGeneratedCoords.size ()]; + for (int c=0; c (begin, end, tol.toFloat(), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_reumann_witkam <2> (begin, end, tol.toDouble (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_reumann_witkam <2> (begin, end, tol.toDouble (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_reumann_witkam <2> (begin, end, tol.toLongLong (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyOp (Container cont, QString minTol, QString maxTol) { + QTime t; + int duration = 0; + + mSimplifiedCoords.clear (); + + switch (cont) { + case ARRAY_FLOAT: + { + // convert + emit SignalConvertingPolyline (); + float* generatedPoints = new float [mGeneratedCoords.size ()]; + for (int c=0; c (begin, end, minTol.toFloat(), maxTol.toFloat(), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_opheim <2> (begin, end, minTol.toDouble(), maxTol.toDouble(), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_opheim <2> (begin, end, minTol.toDouble(), maxTol.toDouble(), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_opheim <2> (begin, end, minTol.toLongLong(), maxTol.toLongLong(), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyLa (Container cont, QString tol, int size) { + QTime t; + int duration = 0; + + mSimplifiedCoords.clear (); + + switch (cont) { + case ARRAY_FLOAT: + { + // convert + emit SignalConvertingPolyline (); + float* generatedPoints = new float [mGeneratedCoords.size ()]; + for (int c=0; c (begin, end, tol.toFloat(), size, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_lang <2> (begin, end, tol.toDouble(), size, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_lang <2> (begin, end, tol.toDouble(), size, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_lang <2> (begin, end, tol.toLongLong(), size, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyDP (Container cont, QString tol) { + QTime t; + int duration = 0; + + mSimplifiedCoords.clear (); + + switch (cont) { + case ARRAY_FLOAT: + { + // convert + emit SignalConvertingPolyline (); + float* generatedPoints = new float [mGeneratedCoords.size ()]; + for (int c=0; c (begin, end, tol.toFloat(), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_douglas_peucker <2> (begin, end, tol.toDouble (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_douglas_peucker <2> (begin, end, tol.toDouble (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_douglas_peucker <2> (begin, end, tol.toLongLong (), + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyDP_variant (Container cont, int count) { + QTime t; + int duration = 0; + + mSimplifiedCoords.clear (); + + switch (cont) { + case ARRAY_FLOAT: + { + // convert + emit SignalConvertingPolyline (); + float* generatedPoints = new float [mGeneratedCoords.size ()]; + for (int c=0; c (begin, end, count, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + // done + emit SignalCleaningConvertedPolyline (); + delete [] generatedPoints; + break; + } + case QVECTOR_DOUBLE: + { + // simplify + emit SignalSimplifyingPolyline (); + QVector ::const_iterator begin = mGeneratedCoords.constBegin (); + QVector ::const_iterator end = mGeneratedCoords.constEnd (); + t.start (); + simplify_douglas_peucker_n <2> (begin, end, count, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + break; + } + case VECTOR_DOUBLE: + { + // convert + emit SignalConvertingPolyline (); + std::vector generatedPoints = mGeneratedCoords.toStdVector (); + // simplify + emit SignalSimplifyingPolyline (); + std::vector ::const_iterator begin = generatedPoints.begin (); + std::vector ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_douglas_peucker_n <2> (begin, end, count, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + case LIST_LONGLONG: + { + // convert + emit SignalConvertingPolyline (); + std::list generatedPoints; + foreach (double coord, mGeneratedCoords) { + generatedPoints.push_back (coord); + } + // simplify + emit SignalSimplifyingPolyline (); + std::list ::const_iterator begin = generatedPoints.begin (); + std::list ::const_iterator end = generatedPoints.end (); + t.start (); + simplify_douglas_peucker_n <2> (begin, end, count, + std::back_inserter (mSimplifiedCoords)); + duration = t.elapsed (); + emit SignalCleaningConvertedPolyline (); + break; + } + default: + break; + } + DoSignalSimplifiedPolyline (duration); + } + + void DPWorker::SimplifyDP_reference (QString tol) { + mSimplifiedCoords.clear(); + // convert generated polyline to Point array + emit SignalConvertingPolyline (); + int pointCount = mGeneratedCoords.size () / 2; + classic::Point* generatedPoints = new classic::Point [pointCount]; + classic::Point* simplifiedPoints = new classic::Point [pointCount]; + for (int i=0; i ( + mGeneratedCoords.constBegin (), mGeneratedCoords.constEnd (), + mSimplifiedCoords.constBegin (), mSimplifiedCoords.constEnd (), &validStatistics); + + if (validStatistics) { + emit SignalSimplifiedPolyline (duration, mSimplifiedCoords, stats.max, stats.sum, stats.mean, stats.std); + } + else { + emit SignalSimplifiedPolyline (duration, mSimplifiedCoords); + } + } +} // namespace psimpl diff --git a/lib/psimpl/demo/DPWorker.h b/lib/psimpl/demo/DPWorker.h new file mode 100644 index 0000000..914e881 --- /dev/null +++ b/lib/psimpl/demo/DPWorker.h @@ -0,0 +1,101 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#ifndef DPWORKER_H +#define DPWORKER_H + + +#include +#include + + +namespace psimpl { + typedef enum CONTAINER + { + ARRAY_FLOAT, + QVECTOR_DOUBLE, + VECTOR_DOUBLE, + LIST_LONGLONG, + } Container; + + /*! + \brief Worker class for generating and simplifying polylines. + + Polylines are always generated in a QVector container. Before simplification the + polyline is converted to the specified container type. This allows for easy adding of new + container types. + + */ + class DPWorker : public QObject + { + Q_OBJECT + + public: + DPWorker (QObject* inParent = 0); + + void Generate (int inCount); + void SimplifyNP (Container cont, int n); + void SimplifyRD (Container cont, QString tol); + void SimplifyPD (Container cont, QString tol, int repeat); + void SimplifyRW (Container cont, QString tol); + void SimplifyOp (Container cont, QString minTol, QString maxTol); + void SimplifyLa (Container cont, QString tol, int size); + void SimplifyDP (Container cont, QString tol); + void SimplifyDP_variant (Container cont, int count); + void SimplifyDP_reference (QString tol); + + int GetGeneratedPointCount () { return mGeneratedCoords.size () / 2; } + int GetSimplifiedGeneratedPointCount () { return mSimplifiedCoords.size () / 2; } + + private: + void DoSignalSimplifiedPolyline (qreal duration); + + signals: + void SignalGeneratingPolyline (); + void SignalConvertingPolyline (); + void SignalSimplifyingPolyline (); + void SignalCleaningConvertedPolyline (); + + void SignalGeneratedPolyline (int duration, QVector & polyline); + void SignalSimplifiedPolyline (int duration, QVector & polyline); + void SignalSimplifiedPolyline (int duration, QVector & polyline, double max, double sum, double mean, double std); + + private: + QVector mGeneratedCoords; + QVector mSimplifiedCoords; + }; + +} // namespace psimpl + + +#endif // DPWORKER_H diff --git a/lib/psimpl/demo/MainWindow.cpp b/lib/psimpl/demo/MainWindow.cpp new file mode 100644 index 0000000..1df1981 --- /dev/null +++ b/lib/psimpl/demo/MainWindow.cpp @@ -0,0 +1,256 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#include "MainWindow.h" +#include "ui_MainWindow.h" +#include "DPWorker.h" +#include +#include + + +namespace psimpl { + + MainWindow::MainWindow (QWidget *parent) : + QMainWindow (parent), + ui (new Ui::MainWindow) + { + mWorker = new DPWorker (this); + + ui->setupUi (this); + ui->polyTypeComboBox->setCurrentIndex(VECTOR_DOUBLE); + +#ifndef _DEBUG + ui->algorithmComboBox->removeItem (DOUGLAS_PEUCKER_REFERENCE); +#endif + connect (mWorker, SIGNAL (SignalGeneratingPolyline ()), + this, SLOT (SlotGeneratingPolyline ())); + connect (mWorker, SIGNAL (SignalConvertingPolyline ()), + this, SLOT (SlotConvertingPolyline ())); + connect (mWorker, SIGNAL (SignalSimplifyingPolyline ()), + this, SLOT (SlotSimplifyingPolyline ())); + connect (mWorker, SIGNAL (SignalCleaningConvertedPolyline ()), + this, SLOT (SlotCleaningConvertedPolyline ())); + + connect (mWorker, SIGNAL (SignalGeneratedPolyline (int, QVector &)), + this, SLOT (SlotGeneratedPolyline (int, QVector &))); + connect (mWorker, SIGNAL (SignalSimplifiedPolyline (int, QVector &)), + this, SLOT (SlotSimplifiedPolyline (int, QVector &))); + connect (mWorker, SIGNAL (SignalSimplifiedPolyline (int, QVector &, double, double, double, double)), + this, SLOT (SlotSimplifiedPolyline (int, QVector &, double, double, double, double))); + } + + MainWindow::~MainWindow () + { + delete ui; + delete mWorker; + } + + void MainWindow::changeEvent (QEvent *e) + { + QMainWindow::changeEvent (e); + + switch (e->type ()) { + case QEvent::LanguageChange: + ui->retranslateUi (this); + break; + + default: + break; + } + } + + void MainWindow::EnableButtons () + { + ui->generatePushButton->setEnabled (true); + ui->simplifyPushButton->setEnabled (true); + ui->togglePushButton->setEnabled( + ui->generatedPolylineCheckBox->isChecked () != + ui->simplifiedPolylineCheckBox->isChecked ()); + } + + void MainWindow::DisableButtons () + { + ui->generatePushButton->setDisabled (true); + ui->simplifyPushButton->setDisabled (true); + ui->togglePushButton->setDisabled (true); + } + + void MainWindow::on_generatePushButton_clicked () + { + QApplication::setOverrideCursor (QCursor (Qt::WaitCursor)); + DisableButtons (); + mWorker->Generate (ui->polyPointCountSpinBox->value ()); + } + + void MainWindow::on_simplifyPushButton_clicked () + { + QApplication::setOverrideCursor (QCursor (Qt::WaitCursor)); + DisableButtons (); + + switch (ui->algorithmComboBox->currentIndex ()) + { + case NTH_POINT: + mWorker->SimplifyNP ((Container)ui->polyTypeComboBox->currentIndex (), ui->npSpinBox->value ()); + break; + + case RADIAL_DISTANCE: + mWorker->SimplifyRD ((Container)ui->polyTypeComboBox->currentIndex (), ui->rdLineEdit->text ()); + break; + + case PERPENDICULAR_DISTANCE: + mWorker->SimplifyPD ((Container)ui->polyTypeComboBox->currentIndex (), ui->pdLineEdit->text (), ui->pdSpinBox->value ()); + break; + + case REUMANN_WITKAM: + mWorker->SimplifyRW ((Container)ui->polyTypeComboBox->currentIndex (), ui->rwLineEdit->text ()); + break; + + case OPHEIM: + mWorker->SimplifyOp ((Container)ui->polyTypeComboBox->currentIndex (), ui->minOpLineEdit->text (), ui->maxOpLineEdit->text ()); + break; + + case LANG: + mWorker->SimplifyLa ((Container)ui->polyTypeComboBox->currentIndex (), ui->laLineEdit->text (), ui->lookAheadLaSpinBox->value ()); + break; + + case DOUGLAS_PEUCKER: + mWorker->SimplifyDP ((Container)ui->polyTypeComboBox->currentIndex (), ui->dpLineEdit->text ()); + break; + + case DOUGLAS_PEUCKER_VARIANT: + mWorker->SimplifyDP_variant ((Container)ui->polyTypeComboBox->currentIndex (), ui->dpvSpinBox->value ()); + break; + + case DOUGLAS_PEUCKER_REFERENCE: + mWorker->SimplifyDP_reference (ui->dprLineEdit->text ()); + break; + } + } + + void MainWindow::on_algorithmComboBox_currentIndexChanged (int index) + { + if (index == DOUGLAS_PEUCKER_REFERENCE) { + ui->polyTypeComboBox->setCurrentIndex (ARRAY_FLOAT); + ui->polyTypeComboBox->setDisabled (true); + } + else { + ui->polyTypeComboBox->setEnabled (true); + } + } + + void MainWindow::on_generatedPolylineCheckBox_toggled (bool checked) + { + ui->renderArea->SetVisibleGeneratedPolyline (checked); + ui->togglePushButton->setDisabled( + ui->generatedPolylineCheckBox->isChecked () == + ui->simplifiedPolylineCheckBox->isChecked ()); + update(); + } + + void MainWindow::on_simplifiedPolylineCheckBox_toggled (bool checked) + { + ui->renderArea->SetVisibleSimplifiedPolyline (checked); + ui->togglePushButton->setDisabled( + ui->generatedPolylineCheckBox->isChecked () == + ui->simplifiedPolylineCheckBox->isChecked ()); + update(); + } + + void MainWindow::on_keepAspectRatioCheckBox_toggled (bool checked) + { + ui->renderArea->SetKeepAspectRatio (checked); + update(); + } + + void MainWindow::SlotGeneratingPolyline () { + ui->statusBar->showMessage ("Generating polyline..."); + } + + void MainWindow::SlotConvertingPolyline () { + ui->statusBar->showMessage (QString ("Converting polyline to '%1'...").arg (ui->polyTypeComboBox->currentText ())); + } + + void MainWindow::SlotSimplifyingPolyline () { + ui->statusBar->showMessage ("Simplifying polyline..."); + } + + void MainWindow::SlotCleaningConvertedPolyline () { + ui->statusBar->showMessage ("Deleting converted polyline..."); + } + + void MainWindow::SlotGeneratedPolyline (int duration, QVector & polyline) + { + ui->statusBar->showMessage (QString ("Generation took %1 ms").arg (duration)); + ui->renderArea->SetGeneratedPolyline (polyline); + ui->simplGroupBox->setEnabled (true); + EnableButtons (); + QApplication::restoreOverrideCursor (); + update(); + } + + void MainWindow::SlotSimplifiedPolyline (int duration, QVector & polyline) + { + int pointCount = polyline.count () / 2; + ui->maxValueLabel->setText ("-"); + ui->sumValueLabel->setText ("-"); + ui->meanValueLabel->setText ("-"); + ui->stdValueLabel->setText ("-"); + ui->statusBar->showMessage ( + QString ("Simplification took %1 ms; %2 (%3%) points remaining"). + arg (duration). + arg (pointCount). + arg (100.0 * pointCount / mWorker->GetGeneratedPointCount())); + ui->renderArea->SetSimplifiedPolyline(polyline); + EnableButtons (); + QApplication::restoreOverrideCursor (); + update(); + } + + void MainWindow::SlotSimplifiedPolyline (int duration, QVector & polyline, double max, double sum, double mean, double std) + { + int pointCount = polyline.count () / 2; + ui->maxValueLabel->setText (QString::number (max)); + ui->sumValueLabel->setText (QString::number (sum)); + ui->meanValueLabel->setText (QString::number (mean)); + ui->stdValueLabel->setText (QString::number (std)); + ui->statusBar->showMessage ( + QString ("Simplification took %1 ms; %2 (%3%) points remaining"). + arg (duration). + arg (pointCount). + arg (100.0 * pointCount / mWorker->GetGeneratedPointCount())); + ui->renderArea->SetSimplifiedPolyline(polyline); + EnableButtons (); + QApplication::restoreOverrideCursor (); + update(); + } +} // namespace psimpl diff --git a/lib/psimpl/demo/MainWindow.h b/lib/psimpl/demo/MainWindow.h new file mode 100644 index 0000000..296a9f3 --- /dev/null +++ b/lib/psimpl/demo/MainWindow.h @@ -0,0 +1,106 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#ifndef MAINWINDOW_H +#define MAINWINDOW_H + + +#include + + +namespace Ui { + class MainWindow; +} + + +namespace psimpl { + + class DPWorker; + + typedef enum ALGORITHM + { + NTH_POINT, + RADIAL_DISTANCE, + PERPENDICULAR_DISTANCE, + REUMANN_WITKAM, + OPHEIM, + LANG, + DOUGLAS_PEUCKER, + DOUGLAS_PEUCKER_VARIANT, + DOUGLAS_PEUCKER_REFERENCE, + } Algorithm; + + /*! + \brief Mainwindow where polylines can be generated and simplified. + + Multiple simplification algorithms, implementations and container types can be experimented + with. + */ + class MainWindow : public QMainWindow { + Q_OBJECT + + public: + MainWindow (QWidget *parent = 0); + ~MainWindow (); + + protected: + void changeEvent (QEvent *e); + + private: + void EnableButtons (); + void DisableButtons (); + + private: + Ui::MainWindow *ui; + DPWorker* mWorker; + +private slots: + void on_simplifiedPolylineCheckBox_toggled(bool checked); + void on_generatedPolylineCheckBox_toggled(bool checked); + void on_keepAspectRatioCheckBox_toggled(bool checked); + void on_simplifyPushButton_clicked (); + void on_algorithmComboBox_currentIndexChanged(int index); + void on_generatePushButton_clicked (); + void SlotGeneratingPolyline (); + void SlotConvertingPolyline (); + void SlotSimplifyingPolyline (); + void SlotCleaningConvertedPolyline (); + void SlotGeneratedPolyline (int duration, QVector & polyline); + void SlotSimplifiedPolyline (int duration, QVector & polyline); + void SlotSimplifiedPolyline (int duration, QVector & polyline, double max, double sum, double mean, double std); +}; + +} // namespace psimpl + + +#endif // MAINWINDOW_H diff --git a/lib/psimpl/demo/MainWindow.ui b/lib/psimpl/demo/MainWindow.ui new file mode 100644 index 0000000..2692fef --- /dev/null +++ b/lib/psimpl/demo/MainWindow.ui @@ -0,0 +1,855 @@ + + + MainWindow + + + + 0 + 0 + 800 + 600 + + + + psimpl v7 - generic n-dimensional polyline simplification + + + + + + + + + + <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN" "http://www.w3.org/TR/REC-html40/strict.dtd"> +<html><head><meta name="qrichtext" content="1" /><style type="text/css"> +p, li { white-space: pre-wrap; } +</style></head><body style=" font-family:'MS Shell Dlg 2'; font-size:8.25pt; font-weight:400; font-style:normal;"> +<p align="center" style=" margin-top:0px; margin-bottom:0px; margin-left:0px; margin-right:0px; -qt-block-indent:0; text-indent:0px;"><span style=" font-size:10pt; font-weight:600;">psimple v7</span><span style=" font-size:8pt;"> </span><span style=" font-size:8pt; color:#000000;">© Copyright 2010 - 2011 </span><a href="edekoning@gmail.com"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">Elmar de Koning</span></a><span style=" font-size:8pt;">; License - </span><a href="http://www.opensource.org/licenses/mozilla1.1.php"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">MPL 1.1</span></a><span style=" font-size:8pt;">; Website - </span><a href="http://psimpl.sf.net"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">psimpl.sf.net</span></a><span style=" font-size:8pt;">; Article - </span><a href="http://www.codeproject.com/KB/recipes/PolylineSimplification.aspx"><span style=" font-size:8pt; text-decoration: underline; color:#0000ff;">CodeProject</span></a></p></body></html> + + + true + + + Qt::LinksAccessibleByKeyboard|Qt::LinksAccessibleByMouse + + + + + + + + 0 + 3 + + + + QFrame::StyledPanel + + + QFrame::Sunken + + + + + + + + + + 0 + 0 + + + + Polyline + + + + + + Type + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + float [] + + + + + QVector <double> + + + + + std::vector <double> + + + + + std::list <long long> + + + + + + + + + 0 + 0 + + + + Generate + + + + + + + Point count + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + 2 + + + 10000000 + + + 10000 + + + 100000 + + + + + + + Qt::Vertical + + + + 20 + 20 + + + + + + + + + + + true + + + + 0 + 0 + + + + Simplification + + + + + + + Nth point + + + + + Radial distance + + + + + Perpendicular distance + + + + + Reumann-Witkam + + + + + Opheim + + + + + Lang + + + + + Douglas-Peucker + + + + + Douglas-Peucker (variant) + + + + + Douglas-Peucker (reference) + + + + + + + + Algorithm + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + false + + + Simplify + + + + + + + 0 + + + + + 0 + + + + + 10000000 + + + + + + + + + 0 + + + + + 0 + + + + + + + + + 0 + + + + + 0 + + + + + + + 1000000 + + + 1 + + + + + + + + + 0 + + + + + + + + 0 + + + + + + + + + 0 + + + + + 0 + + + + + + + 0 + + + + + + + + + 0 + + + + + 0 + + + + + + + 10000000 + + + 1 + + + + + + + + + 0 + + + + + 0 + + + + + + + + + 0 + + + + + 0 + + + 10000000 + + + 10 + + + 0 + + + + + + + + + 0 + + + + + 0 + + + + + + + + + + + 0 + + + + + 0 + + + + + n + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + Radial distance + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + Perpendicular distance + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Repeat count + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + Perpendicular distance + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + Minimum distance + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Maximum distance + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + Perpendicular distance + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Look ahead + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + Perpendicular distance + + + Qt::AlignCenter + + + + + + + + + 0 + + + + + Point count + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + 0 + + + + + Perpendicular distance + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + + + + + + + + Graphics + + + + + + Generated Polyline + + + true + + + + + + + Simplified Polyline + + + false + + + + + + + Toggle + + + + + + + Keep aspect ratio + + + true + + + + + + + + + + Positional errors are only calculated for doubles! + + + Positional error + + + + + + Sum + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Max + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Mean + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + Std + + + Qt::AlignRight|Qt::AlignTrailing|Qt::AlignVCenter + + + + + + + - + + + + + + + - + + + + + + + - + + + + + + + - + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + + + ? + + + About psimpl + + + F1 + + + + + + + psimpl::RenderArea + QFrame +
RenderArea.h
+ 1 +
+
+ + polyPointCountSpinBox + polyTypeComboBox + generatePushButton + algorithmComboBox + npSpinBox + rdLineEdit + pdLineEdit + pdSpinBox + rwLineEdit + dpLineEdit + dpvSpinBox + dprLineEdit + simplifyPushButton + generatedPolylineCheckBox + simplifiedPolylineCheckBox + + + + + togglePushButton + clicked() + generatedPolylineCheckBox + toggle() + + + 674 + 559 + + + 674 + 504 + + + + + togglePushButton + clicked() + simplifiedPolylineCheckBox + toggle() + + + 674 + 559 + + + 674 + 529 + + + + + algorithmComboBox + currentIndexChanged(int) + labelStackedWidget + setCurrentIndex(int) + + + 256 + 503 + + + 210 + 519 + + + + + algorithmComboBox + currentIndexChanged(int) + editStackedWidget + setCurrentIndex(int) + + + 281 + 490 + + + 279 + 512 + + + + +
diff --git a/lib/psimpl/demo/QTRules.rules b/lib/psimpl/demo/QTRules.rules new file mode 100644 index 0000000..9881b7b --- /dev/null +++ b/lib/psimpl/demo/QTRules.rules @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + diff --git a/lib/psimpl/demo/RenderArea.cpp b/lib/psimpl/demo/RenderArea.cpp new file mode 100644 index 0000000..28d89cc --- /dev/null +++ b/lib/psimpl/demo/RenderArea.cpp @@ -0,0 +1,123 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#include "RenderArea.h" +#include + + +namespace psimpl { + + RenderArea::RenderArea (QWidget *inParent, Qt::WindowFlags inFlags) : + QFrame (inParent, inFlags), + mDrawGeneratedPolyline (true), + mDrawSimplifiedPolyline (false), + mKeepAspectRatio (true) + { + } + + void RenderArea::paintEvent(QPaintEvent * /*inEvent*/) { + if (!mGeneratedPolyline.elementCount ()) + return; + + QRectF rect = mGeneratedPolyline.boundingRect (); + if (!rect.isValid ()) + return; + + QPainter painter (this); + + if (mKeepAspectRatio) { + qreal scale = qMin ((width () - 1) / rect.width (), (height () - 1) / rect.height ()); + painter.translate ((width () - (rect.width () * scale)) / 2.0, + (height () - (rect.height () * scale)) / 2.0); + painter.scale (scale, scale); + painter.translate (-rect.left (), -rect.top ()); + } + else { + painter.scale ((width () - 1) / rect.width (), (height () - 1) / rect.height ()); + painter.translate (-rect.left (), -rect.top ()); + } + + if (mDrawGeneratedPolyline) { + painter.setPen (Qt::darkBlue); + painter.drawPath (mGeneratedPolyline); + } + + if (!mSimplifiedPolyline.elementCount ()) + return; + + if (mDrawSimplifiedPolyline) { + painter.setPen (Qt::darkRed); + painter.drawPath (mSimplifiedPolyline); + } + } + + QPainterPath RenderArea::Convert (QVector & polyline) + { + // limit paths to max 100.000 points to speed up drawing + const int threshold = 100000; + + QPainterPath path; + if (polyline.empty ()) { + return path; + } + int pointCount = polyline.size () / 2; + qreal skipStep = (qreal) (pointCount - threshold) / (qreal) threshold; + qreal skipValue = skipStep; + + path.moveTo(polyline [0], polyline [1]); + for (int i=1; i 1.0) { + skipValue -= 1.0; + } + else { + path.lineTo (polyline [i*2], polyline [i*2+1]); + skipValue += skipStep; + } + } + int elemCount = path.elementCount (); + elemCount++; + return path; + } + + void RenderArea::SetGeneratedPolyline (QVector & polyline) + { + mSimplifiedPolyline = QPainterPath (); + mGeneratedPolyline = Convert (polyline); + } + + void RenderArea::SetSimplifiedPolyline (QVector & polyline) + { + mSimplifiedPolyline = Convert (polyline); + } + +} // namespace psimpl diff --git a/lib/psimpl/demo/RenderArea.h b/lib/psimpl/demo/RenderArea.h new file mode 100644 index 0000000..d198cd1 --- /dev/null +++ b/lib/psimpl/demo/RenderArea.h @@ -0,0 +1,76 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#ifndef RENDERAREA_H +#define RENDERAREA_H + + +#include +#include + + +namespace psimpl { + + /*! + \brief A frame that can draw polylines and their simplification. + + Note that the point count of each polyline is always limited to 100.000 to speed up drawing. + */ + class RenderArea : public QFrame + { + public: + RenderArea (QWidget *inParent = 0, Qt::WindowFlags inFlags = 0); + void SetGeneratedPolyline (QVector & polyline); + void SetSimplifiedPolyline (QVector & polyline); + void SetVisibleGeneratedPolyline (bool visible) { mDrawGeneratedPolyline = visible; } + void SetVisibleSimplifiedPolyline (bool visible) { mDrawSimplifiedPolyline = visible; } + void SetKeepAspectRatio (bool keep) { mKeepAspectRatio = keep; } + + protected: + void paintEvent (QPaintEvent *inEvent); + + private: + QPainterPath Convert (QVector & polyline); + + private: + QPainterPath mGeneratedPolyline; + QPainterPath mSimplifiedPolyline; + bool mDrawGeneratedPolyline; + bool mDrawSimplifiedPolyline; + bool mKeepAspectRatio; + }; + +} // namespace psimpl + + +#endif // RENDERAREA_H diff --git a/lib/psimpl/demo/main.cpp b/lib/psimpl/demo/main.cpp new file mode 100644 index 0000000..292d0be --- /dev/null +++ b/lib/psimpl/demo/main.cpp @@ -0,0 +1,43 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#include +#include "MainWindow.h" + +int main (int argc, char *argv []) +{ + QApplication a (argc, argv); + psimpl::MainWindow w; + w.show (); + return a.exec (); +} diff --git a/lib/psimpl/demo/psimpl.pro b/lib/psimpl/demo/psimpl.pro new file mode 100644 index 0000000..aadb665 --- /dev/null +++ b/lib/psimpl/demo/psimpl.pro @@ -0,0 +1,22 @@ +# ------------------------------------------------- +# Project created by QtCreator 2010-06-05T12:09:26 +# ------------------------------------------------- +TARGET = psimpl-demo +TEMPLATE = app +VERSION = 7 +SOURCES += main.cpp \ + MainWindow.cpp \ + DPWorker.cpp \ + RenderArea.cpp +HEADERS += MainWindow.h \ + DPWorker.h \ + RenderArea.h \ + psimpl_reference.h \ + psimpl.h \ + ../lib/psimpl.h +FORMS += MainWindow.ui +OTHER_FILES += \ + resource.rc \ + ../README.txt \ + ../LICENSE.txt +RC_FILE = resource.rc diff --git a/lib/psimpl/demo/psimpl.vcproj b/lib/psimpl/demo/psimpl.vcproj new file mode 100644 index 0000000..ccdca26 --- /dev/null +++ b/lib/psimpl/demo/psimpl.vcproj @@ -0,0 +1,304 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/psimpl/demo/psimpl_reference.h b/lib/psimpl/demo/psimpl_reference.h new file mode 100644 index 0000000..ac17471 --- /dev/null +++ b/lib/psimpl/demo/psimpl_reference.h @@ -0,0 +1,238 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +#ifndef PSIMPL_CLASSIC_H +#define PSIMPL_CLASSIC_H + +#include + +namespace psimpl { + namespace classic { + // Contains a minimal modified version of the Douglas-Peucker recursive simplification + // routine as available from www.softsurfer.com. Modifications include: + // - Removed recursion by using a stack + // - Added minimal Point, Vector, and Segment classes as needed by the algorithm + + + // minimal point class + class Point { + public: + Point () : + x (0.f), + y (0.f) + {} + + Point (float x, float y) : + x (x), + y (y) + {} + + float x, y; + }; + + // reuse the point class for a vector + typedef Point Vector; + + // operators as needed by the algorithm + Point operator+ (const Point& P, const Vector& V) { + return Point (P.x+V.x, P.y+V.y); + } + + Vector operator- (const Point& P0, const Point& P1) { + return Vector (P0.x-P1.x, P0.y-P1.y); + } + + Vector operator* (double s, const Vector& V) { + return Vector (s*V.x, s*V.y); + } + + // minimal segment class + class Segment { + public: + Segment (const Point& P0, const Point& P1) : + P0(P0), + P1(P1) + {} + + Point P0; + Point P1; + }; + + // define the stack and sub poly that are used to replace the original recusion + typedef std::pair< int, int > SubPoly; + typedef std::stack< SubPoly > Stack; + + + // Copyright 2002, softSurfer (www.softsurfer.com) + // This code may be freely used and modified for any purpose + // providing that this copyright notice is included with it. + // SoftSurfer makes no warranty for this code, and cannot be held + // liable for any real or imagined damage resulting from its use. + // Users of this code must verify correctness for their application. + + // Assume that classes are already given for the objects: + // Point and Vector with + // coordinates {float x, y, z;} // as many as are needed + // operators for: + // == to test equality + // != to test inequality + // (Vector)0 = (0,0,0) (null vector) + // Point = Point ± Vector + // Vector = Point - Point + // Vector = Vector ± Vector + // Vector = Scalar * Vector (scalar product) + // Vector = Vector * Vector (cross product) + // Segment with defining endpoints {Point P0, P1;} + //=================================================================== + + // dot product (3D) which allows vector operations in arguments + #define __dot(u,v) ((u).x * (v).x + (u).y * (v).y) + #define __norm2(v) __dot(v,v) // norm2 = squared length of vector + #define __norm(v) sqrt(__norm2(v)) // norm = length of vector + #define __d2(u,v) __norm2(u-v) // distance squared = norm2 of difference + #define __d(u,v) __norm(u-v) // distance = norm of difference + + // simplifyDP(): + // This is the Douglas-Peucker recursive simplification routine + // It just marks vertices that are part of the simplified polyline + // for approximating the polyline subchain v[j] to v[k]. + // Input: tol = approximation tolerance + // v[] = polyline array of vertex points + // j,k = indices for the subchain v[j] to v[k] + // Output: mk[] = array of markers matching vertex array v[] + void + simplifyDP( Stack& stack, float tol, Point* v, int j, int k, int* mk ) + { + if (k <= j+1) // there is nothing to simplify + return; + + // check for adequate approximation by segment S from v[j] to v[k] + int maxi = j; // index of vertex farthest from S + float maxd2 = 0; // distance squared of farthest vertex + float tol2 = tol * tol; // tolerance squared + Segment S (v[j], v[k]); // segment from v[j] to v[k] + Vector u = S.P1 - S.P0; // segment direction vector + double cu = __dot(u,u); // segment length squared + + // test each vertex v[i] for max distance from S + // compute using the Feb 2001 Algorithm's dist_Point_to_Segment() + // Note: this works in any dimension (2D, 3D, ...) + Vector w; + Point Pb; // base of perpendicular from v[i] to S + double b, cw, dv2; // dv2 = distance v[i] to S squared + + for (int i=j+1; i tol2) // error is worse than the tolerance + { + // split the polyline at the farthest vertex from S + mk[maxi] = 1; // mark v[maxi] for the simplified polyline + // recursively simplify the two subpolylines at v[maxi] + stack.push( std::make_pair (j, maxi)); + stack.push( std::make_pair (maxi, k)); + } + // else the approximation is OK, so ignore intermediate vertices + return; + } + + // poly_simplify(): + // Input: tol = approximation tolerance + // V[] = polyline array of vertex points + // n = the number of points in V[] + // Output: sV[]= simplified polyline vertices (max is n) + // Return: m = the number of points in sV[] + int + poly_simplify(float tol, Point* V, int n, Point* sV ) + { + int i, k, m, pv; // misc counters + float tol2 = tol * tol; // tolerance squared + Point* vt = new Point[n]; // vertex buffer + int* mk = new int[n]; // marker buffer + for (i=0; i +# else +# include +# endif + +VS_VERSION_INFO VERSIONINFO + FILEVERSION 7,0,0,0 + PRODUCTVERSION 7,0,0,0 + FILEFLAGSMASK 0x3fL +#ifdef _DEBUG + FILEFLAGS VS_FF_DEBUG +#else + FILEFLAGS 0x0L +#endif + FILEOS VOS__WINDOWS32 + FILETYPE VFT_DLL + FILESUBTYPE 0x0L + BEGIN + BLOCK "StringFileInfo" + BEGIN + BLOCK "040904B0" + BEGIN + VALUE "CompanyName", "Elmar de Koning\0" + VALUE "FileDescription", "psimpl demo application\0" + VALUE "FileVersion", "7.0.0.0\0" + VALUE "LegalCopyright", "Copyright (C) 2010-2011 Elmar de Koning\0" + VALUE "OriginalFilename", "psimpl-demo.exe\0" + VALUE "ProductName", "psimpl - generic n-dimensional polyline simplification\0" + END + END + END +/* End of Version info */ + diff --git a/lib/psimpl/psimpl.h b/lib/psimpl/psimpl.h new file mode 100644 index 0000000..f1c0d08 --- /dev/null +++ b/lib/psimpl/psimpl.h @@ -0,0 +1,1890 @@ +/* ***** BEGIN LICENSE BLOCK ***** + * Version: MPL 1.1 + * + * The contents of this file are subject to the Mozilla Public License Version + * 1.1 (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * http://www.mozilla.org/MPL/ + * + * Software distributed under the License is distributed on an "AS IS" basis, + * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License + * for the specific language governing rights and limitations under the + * License. + * + * The Original Code is + * 'psimpl - generic n-dimensional polyline simplification'. + * + * The Initial Developer of the Original Code is + * Elmar de Koning. + * Portions created by the Initial Developer are Copyright (C) 2010-2011 + * the Initial Developer. All Rights Reserved. + * + * Contributor(s): + * + * ***** END LICENSE BLOCK ***** */ + +/* + psimpl - generic n-dimensional polyline simplification + Copyright (C) 2010-2011 Elmar de Koning, edekoning@gmail.com + + This file is part of psimpl, and is hosted at SourceForge: + http://sourceforge.net/projects/psimpl/ +*/ + +/*! + \mainpage psimpl - generic n-dimensional polyline simplification + +
+    Author  - Elmar de Koning
+    Support - edekoning@gmail.com
+    Website - http://psimpl.sf.net
+    Article - http://www.codeproject.com/KB/recipes/PolylineSimplification.aspx
+    License - MPL 1.1
+

+ + \section sec_psimpl psimpl +
+    'psimpl' is a c++ polyline simplification library that is generic, easy to use, and supports
+    the following algorithms:
+
+    Simplification
+    + Nth point - A naive algorithm that keeps only each nth point
+    + Distance between points - Removes successive points that are clustered together
+    + Perpendicular distance - Removes points based on their distance to the line segment defined
+      by their left and right neighbors
+    + Reumann-Witkam - Shifts a strip along the polyline and removes points that fall outside
+    + Opheim - A constrained version of Reumann-Witkam
+    + Lang - Similar to the Perpendicular distance routine, but instead of looking only at direct
+      neighbors, an entire search region is processed
+    + Douglas-Peucker - A classic simplification algorithm that provides an excellent approximation
+      of the original line
+    + A variation on the Douglas-Peucker algorithm - Slower, but yields better results at lower resolutions
+
+    Errors
+    + positional error - Distance of each polyline point to its simplification
+
+    All the algorithms have been implemented in a single standalone C++ header using an STL-style
+    interface that operates on input and output iterators. Polylines can be of any dimension, and
+    defined using floating point or signed integer data types.
+

+ + \section sec_changelog changelog +
+    28-09-2010 - Initial version
+    23-10-2010 - Changed license from CPOL to MPL
+    26-10-2010 - Clarified input (type) requirements, and changed the behavior of the algorithms
+                 under invalid input
+    01-12-2010 - Added the nth point, perpendicular distance and Reumann-Witkam routines; moved all
+                 functions related to distance calculations to the math namespace
+    10-12-2010 - Fixed a bug in the perpendicular distance routine
+    27-02-2011 - Added Opheim simplification, and functions for computing positional errors due to
+                 simplification; renamed simplify_douglas_peucker_alt to simplify_douglas_peucker_n
+    18-06-2011 - Added Lang simplification; fixed divide by zero bug when using integers; fixed a
+                 bug where incorrect output iterators were returned under invalid input; fixed a bug
+                 in douglas_peucker_n where an incorrect number of points could be returned; fixed a
+                 bug in compute_positional_errors2 that required the output and input iterator types
+                 to be the same; fixed a bug in compute_positional_error_statistics where invalid
+                 statistics could be returned under questionable input; documented input iterator
+                 requirements for each algorithm; miscellaneous refactoring of most algorithms.
+
+*/ + +#ifndef PSIMPL_GENERIC +#define PSIMPL_GENERIC + + +#include +#include +#include +#include +#include + + +/*! + \brief Root namespace of the polyline simplification library. +*/ +namespace psimpl +{ + /*! + \brief Contains utility functions and classes. + */ + namespace util + { + /*! + \brief A smart pointer for holding a dynamically allocated array. + + Similar to boost::scoped_array. + */ + template + class scoped_array + { + public: + scoped_array (unsigned n) { + array = new T [n]; + } + + ~scoped_array () { + delete [] array; + } + + T& operator [] (int offset) { + return array [offset]; + } + + const T& operator [] (int offset) const { + return array [offset]; + } + + T* get () const { + return array; + } + + void swap (scoped_array& b) { + T* tmp = b.array; + b.array = array; + array = tmp; + } + + private: + scoped_array (const scoped_array&); + scoped_array& operator= (const scoped_array&); + + private: + T* array; + }; + + template inline void swap (scoped_array & a, scoped_array & b) { + a.swap (b); + } + } + + /*! + \brief Contains functions for calculating statistics and distances between various geometric entities. + */ + namespace math + { + /*! + \brief POD structure for storing several statistical values + */ + struct Statistics + { + Statistics () : + max (0), + sum (0), + mean (0), + std (0) + {} + + double max; + double sum; + double mean; + double std; //! standard deviation + }; + + /*! + \brief Determines if two points have the exact same coordinates. + + \param[in] p1 the first coordinate of the first point + \param[in] p2 the first coordinate of the second point + \return true when the points are equal; false otherwise + */ + template + inline bool equal ( + InputIterator p1, + InputIterator p2) + { + for (unsigned d = 0; d < DIM; ++d) { + if (*p1 != *p2) { + return false; + } + ++p1; + ++p2; + } + return true; + } + + /*! + \brief Creates a vector from two points. + + \param[in] p1 the first coordinate of the first point + \param[in] p2 the first coordinate of the second point + \param[in] result the resulting vector (p2-p1) + \return one beyond the last coordinate of the resulting vector + */ + template + inline OutputIterator make_vector ( + InputIterator p1, + InputIterator p2, + OutputIterator result) + { + for (unsigned d = 0; d < DIM; ++d) { + *result = *p2 - *p1; + ++result; + ++p1; + ++p2; + } + return result; + } + + /*! + \brief Computes the dot product of two vectors. + + \param[in] v1 the first coordinate of the first vector + \param[in] v2 the first coordinate of the second vector + \return the dot product (v1 * v2) + */ + template + inline typename std::iterator_traits ::value_type dot ( + InputIterator v1, + InputIterator v2) + { + typename std::iterator_traits ::value_type result = 0; + for (unsigned d = 0; d < DIM; ++d) { + result += (*v1) * (*v2); + ++v1; + ++v2; + } + return result; + } + + /*! + \brief Peforms linear interpolation between two points. + + \param[in] p1 the first coordinate of the first point + \param[in] p2 the first coordinate of the second point + \param[in] fraction the fraction used during interpolation + \param[in] result the interpolation result (p1 + fraction * (p2 - p1)) + \return one beyond the last coordinate of the interpolated point + */ + template + inline OutputIterator interpolate ( + InputIterator p1, + InputIterator p2, + float fraction, + OutputIterator result) + { + typedef typename std::iterator_traits ::value_type value_type; + + for (unsigned d = 0; d < DIM; ++d) { + *result = *p1 + static_cast (fraction * (*p2 - *p1)); + ++result; + ++p1; + ++p2; + } + return result; + } + + /*! + \brief Computes the squared distance of two points + + \param[in] p1 the first coordinate of the first point + \param[in] p2 the first coordinate of the second point + \return the squared distance + */ + template + inline typename std::iterator_traits ::value_type point_distance2 ( + InputIterator1 p1, + InputIterator2 p2) + { + typename std::iterator_traits ::value_type result = 0; + for (unsigned d = 0; d < DIM; ++d) { + result += (*p1 - *p2) * (*p1 - *p2); + ++p1; + ++p2; + } + return result; + } + + /*! + \brief Computes the squared distance between an infinite line (l1, l2) and a point p + + \param[in] l1 the first coordinate of the first point on the line + \param[in] l2 the first coordinate of the second point on the line + \param[in] p the first coordinate of the test point + \return the squared distance + */ + template + inline typename std::iterator_traits ::value_type line_distance2 ( + InputIterator l1, + InputIterator l2, + InputIterator p) + { + typedef typename std::iterator_traits ::value_type value_type; + + value_type v [DIM]; // vector l1 --> l2 + value_type w [DIM]; // vector l1 --> p + + make_vector (l1, l2, v); + make_vector (l1, p, w); + + value_type cv = dot (v, v); // squared length of v + value_type cw = dot (w, v); // project w onto v + + // avoid problems with divisions when value_type is an integer type + float fraction = cv == 0 ? 0 : static_cast (cw) / static_cast (cv); + + value_type proj [DIM]; // p projected onto line (l1, l2) + interpolate (l1, l2, fraction, proj); + + return point_distance2 (p, proj); + } + + /*! + \brief Computes the squared distance between a line segment (s1, s2) and a point p + + \param[in] s1 the first coordinate of the start point of the segment + \param[in] s2 the first coordinate of the end point of the segment + \param[in] p the first coordinate of the test point + \return the squared distance + */ + template + inline typename std::iterator_traits ::value_type segment_distance2 ( + InputIterator s1, + InputIterator s2, + InputIterator p) + { + typedef typename std::iterator_traits ::value_type value_type; + + value_type v [DIM]; // vector s1 --> s2 + value_type w [DIM]; // vector s1 --> p + + make_vector (s1, s2, v); + make_vector (s1, p, w); + + value_type cw = dot (w, v); // project w onto v + if (cw <= 0) { + // projection of w lies to the left of s1 + return point_distance2 (p, s1); + } + + value_type cv = dot (v, v); // squared length of v + if (cv <= cw) { + // projection of w lies to the right of s2 + return point_distance2 (p, s2); + } + + // avoid problems with divisions when value_type is an integer type + float fraction = cv == 0 ? 0 : static_cast (cw) / static_cast (cv); + + value_type proj [DIM]; // p projected onto segement (s1, s2) + interpolate (s1, s2, fraction, proj); + + return point_distance2 (p, proj); + } + + /*! + \brief Computes the squared distance between a ray (r1, r2) and a point p + + \param[in] r1 the first coordinate of the start point of the ray + \param[in] r2 the first coordinate of a point on the ray + \param[in] p the first coordinate of the test point + \return the squared distance + */ + template + inline typename std::iterator_traits ::value_type ray_distance2 ( + InputIterator r1, + InputIterator r2, + InputIterator p) + { + typedef typename std::iterator_traits ::value_type value_type; + + value_type v [DIM]; // vector r1 --> r2 + value_type w [DIM]; // vector r1 --> p + + make_vector (r1, r2, v); + make_vector (r1, p, w); + + value_type cv = dot (v, v); // squared length of v + value_type cw = dot (w, v); // project w onto v + + if (cw <= 0) { + // projection of w lies to the left of r1 (not on the ray) + return point_distance2 (p, r1); + } + + // avoid problems with divisions when value_type is an integer type + float fraction = cv == 0 ? 0 : static_cast (cw) / static_cast (cv); + + value_type proj [DIM]; // p projected onto ray (r1, r2) + interpolate (r1, r2, fraction, proj); + + return point_distance2 (p, proj); + } + + /*! + \brief Computes various statistics for the range [first, last) + + \param[in] first the first value + \param[in] last one beyond the last value + \return the calculated statistics + */ + template + inline Statistics compute_statistics ( + InputIterator first, + InputIterator last) + { + typedef typename std::iterator_traits ::value_type value_type; + typedef typename std::iterator_traits ::difference_type diff_type; + + Statistics stats; + + diff_type count = std::distance (first, last); + if (count == 0) { + return stats; + } + + value_type init = 0; + stats.max = static_cast (*std::max_element (first, last)); + stats.sum = static_cast (std::accumulate (first, last, init)); + stats.mean = stats.sum / count; + std::transform (first, last, first, std::bind2nd (std::minus (), stats.mean)); + stats.std = std::sqrt (static_cast (std::inner_product (first, last, first, init)) / count); + return stats; + } + } + + /*! + \brief Provides various simplification algorithms for n-dimensional simple polylines. + + A polyline is simple when it is non-closed and non-selfintersecting. All algorithms + operate on input iterators and output iterators. Note that unisgned integer types are + NOT supported. + */ + template + class PolylineSimplification + { + typedef typename std::iterator_traits ::difference_type diff_type; + typedef typename std::iterator_traits ::value_type value_type; + typedef typename std::iterator_traits ::difference_type ptr_diff_type; + + public: + /*! + \brief Performs the nth point routine (NP). + + NP is an O(n) algorithm for polyline simplification. It keeps only the first, last and + each nth point. As an example, consider any random line of 8 points. Using n = 3 will + always yield a simplification consisting of points: 1, 4, 7, 8 + + \image html psimpl_np.png + + NP is applied to the range [first, last). The resulting simplified polyline is copied + to the output range [result, result + m*DIM), where m is the number of vertices of the + simplified polyline. The return value is the end of the output range: result + m*DIM. + + Input (Type) requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a forward iterator + 3- The input iterator value type is convertible to a value type of the OutputIterator + 4- The range [first, last) contains only vertex coordinates in multiples of DIM, f.e.: + x, y, z, x, y, z, x, y, z when DIM = 3 + 5- The range [first, last) contains at least 2 vertices + 6- n is not 0 + + In case these requirements are not met, the entire input range [first, last) is copied + to the output range [result, result + (last - first)) OR compile errors may occur. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] n specifies 'each nth point' + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator NthPoint ( + InputIterator first, + InputIterator last, + unsigned n, + OutputIterator result) + { + diff_type coordCount = std::distance (first, last); + diff_type pointCount = DIM // protect against zero DIM + ? coordCount / DIM + : 0; + + // validate input and check if simplification required + if (coordCount % DIM || pointCount < 3 || n < 2) { + return std::copy (first, last, result); + } + + unsigned remaining = pointCount - 1; // the number of points remaining after key + InputIterator key = first; // indicates the current key + + // the first point is always part of the simplification + CopyKey (key, result); + + // copy each nth point + while (Forward (key, n, remaining)) { + CopyKey (key, result); + } + + return result; + } + + /*! + \brief Performs the (radial) distance between points routine (RD). + + RD is a brute-force O(n) algorithm for polyline simplification. It reduces successive + vertices that are clustered too closely to a single vertex, called a key. The resulting + keys form the simplified polyline. + + \image html psimpl_rd.png + + RD is applied to the range [first, last) using the specified tolerance tol. The + resulting simplified polyline is copied to the output range [result, result + m*DIM), + where m is the number of vertices of the simplified polyline. The return value is the + end of the output range: result + m*DIM. + + Input (Type) requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a forward iterator + 3- The input iterator value type is convertible to a value type of the output iterator + 4- The range [first, last) contains only vertex coordinates in multiples of DIM, f.e.: + x, y, z, x, y, z, x, y, z when DIM = 3 + 5- The range [first, last) contains at least 2 vertices + 6- tol is not 0 + + In case these requirements are not met, the entire input range [first, last) is copied + to the output range [result, result + (last - first)) OR compile errors may occur. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol radial (point-to-point) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator RadialDistance ( + InputIterator first, + InputIterator last, + value_type tol, + OutputIterator result) + { + diff_type coordCount = std::distance (first, last); + diff_type pointCount = DIM // protect against zero DIM + ? coordCount / DIM + : 0; + value_type tol2 = tol * tol; // squared distance tolerance + + // validate input and check if simplification required + if (coordCount % DIM || pointCount < 3 || tol2 == 0) { + return std::copy (first, last, result); + } + + InputIterator current = first; // indicates the current key + InputIterator next = first; // used to find the next key + + // the first point is always part of the simplification + CopyKeyAdvance (next, result); + + // Skip first and last point, because they are always part of the simplification + for (diff_type index = 1; index < pointCount - 1; ++index) { + if (math::point_distance2 (current, next) < tol2) { + Advance (next); + continue; + } + current = next; + CopyKeyAdvance (next, result); + } + // the last point is always part of the simplification + CopyKeyAdvance (next, result); + + return result; + } + + /*! + \brief Repeatedly performs the perpendicular distance routine (PD). + + The algorithm stops after calling the PD routine 'repeat' times OR when the + simplification does not improve. Note that this algorithm will need to store + up to two intermediate simplification results. + + \sa PerpendicularDistance(InputIterator, InputIterator, value_type, OutputIterator) + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (segment-to-point) distance tolerance + \param[in] repeat the number of times to successively apply the PD routine + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator PerpendicularDistance ( + InputIterator first, + InputIterator last, + value_type tol, + unsigned repeat, + OutputIterator result) + { + if (repeat == 1) { + // single pass + return PerpendicularDistance (first, last, tol, result); + } + // only validate repeat; other input is validated by simplify_perpendicular_distance + if (repeat < 1) { + return std::copy (first, last, result); + } + diff_type coordCount = std::distance (first, last); + + // first pass: [first, last) --> temporary array 'tempPoly' + util::scoped_array tempPoly (coordCount); + PolylineSimplification psimpl_to_array; + diff_type tempCoordCount = std::distance (tempPoly.get (), + psimpl_to_array.PerpendicularDistance (first, last, tol, tempPoly.get ())); + + // check if simplification did not improved + if (coordCount == tempCoordCount) { + return std::copy (tempPoly.get (), tempPoly.get () + coordCount, result); + } + std::swap (coordCount, tempCoordCount); + --repeat; + + // intermediate passes: temporary array 'tempPoly' --> temporary array 'tempResult' + if (1 < repeat) { + util::scoped_array tempResult (coordCount); + PolylineSimplification psimpl_arrays; + + while (--repeat) { + tempCoordCount = std::distance (tempResult.get (), + psimpl_arrays.PerpendicularDistance ( + tempPoly.get (), tempPoly.get () + coordCount, tol, tempResult.get ())); + + // check if simplification did not improved + if (coordCount == tempCoordCount) { + return std::copy (tempPoly.get (), tempPoly.get () + coordCount, result); + } + util::swap (tempPoly, tempResult); + std::swap (coordCount, tempCoordCount); + } + } + + // final pass: temporary array 'tempPoly' --> result + PolylineSimplification psimpl_from_array; + return psimpl_from_array.PerpendicularDistance ( + tempPoly.get (), tempPoly.get () + coordCount, tol, result); + } + + /*! + \brief Performs the perpendicular distance routine (PD). + + PD is an O(n) algorithm for polyline simplification. It computes the perpendicular + distance of each point pi to the line segment S(pi-1, pi+1). Only when this distance is + larger than the given tolerance will pi be part of the simpification. Note that the + original polyline can only be reduced by a maximum of 50%. Multiple passes are required + to achieve higher points reductions. + + \image html psimpl_pd.png + + PD is applied to the range [first, last) using the specified tolerance tol. The + resulting simplified polyline is copied to the output range [result, result + m*DIM), + where m is the number of vertices of the simplified polyline. The return value is the + end of the output range: result + m*DIM. + + Input (Type) requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a forward iterator + 3- The input iterator value type is convertible to a value type of the output iterator + 4- The range [first, last) contains only vertex coordinates in multiples of DIM, f.e.: + x, y, z, x, y, z, x, y, z when DIM = 3 + 5- The range [first, last) contains at least 2 vertices + 6- tol is not 0 + + In case these requirements are not met, the entire input range [first, last) is copied + to the output range [result, result + (last - first)) OR compile errors may occur. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (segment-to-point) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator PerpendicularDistance ( + InputIterator first, + InputIterator last, + value_type tol, + OutputIterator result) + { + diff_type coordCount = std::distance (first, last); + diff_type pointCount = DIM // protect against zero DIM + ? coordCount / DIM + : 0; + value_type tol2 = tol * tol; // squared distance tolerance + + // validate input and check if simplification required + if (coordCount % DIM || pointCount < 3 || tol2 == 0) { + return std::copy (first, last, result); + } + + InputIterator p0 = first; + InputIterator p1 = AdvanceCopy(p0); + InputIterator p2 = AdvanceCopy(p1); + + // the first point is always part of the simplification + CopyKey (p0, result); + + while (p2 != last) { + // test p1 against line segment S(p0, p2) + if (math::segment_distance2 (p0, p2, p1) < tol2) { + CopyKey (p2, result); + // move up by two points + p0 = p2; + Advance (p1, 2); + if (p1 == last) { + // protect against advancing p2 beyond last + break; + } + Advance (p2, 2); + } + else { + CopyKey (p1, result); + // move up by one point + p0 = p1; + p1 = p2; + Advance (p2); + } + } + // make sure the last point is part of the simplification + if (p1 != last) { + CopyKey (p1, result); + } + return result; + } + + /*! + \brief Performs Reumann-Witkam approximation (RW). + + The O(n) RW routine uses a point-to-line (perpendicular) distance tolerance. It defines + a line through the first two vertices of the original polyline. For each successive + vertex vi its perpendicular distance to this line is calculated. A new key is found at + vi-1, when this distance exceeds the specified tolerance. The vertices vi and vi+1 are + then used to define a new line, and the process repeats itself. + + \image html psimpl_rw.png + + RW routine is applied to the range [first, last) using the specified perpendicular + distance tolerance tol. The resulting simplified polyline is copied to the output range + [result, result + m*DIM), where m is the number of vertices of the simplified polyline. + The return value is the end of the output range: result + m*DIM. + + Input (Type) Requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a forward iterator + 3- The input iterator value type is convertible to a value type of the output iterator + 4- The range [first, last) contains vertex coordinates in multiples of DIM, + f.e.: x, y, z, x, y, z, x, y, z when DIM = 3 + 5- The range [first, last) contains at least 2 vertices + 6- tol is not 0 + + In case these requirements are not met, the entire input range [first, last) is copied + to the output range [result, result + (last - first)) OR compile errors may occur. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (point-to-line) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator ReumannWitkam ( + InputIterator first, + InputIterator last, + value_type tol, + OutputIterator result) + { + diff_type coordCount = std::distance (first, last); + diff_type pointCount = DIM // protect against zero DIM + ? coordCount / DIM + : 0; + value_type tol2 = tol * tol; // squared distance tolerance + + // validate input and check if simplification required + if (coordCount % DIM || pointCount < 3 || tol2 == 0) { + return std::copy (first, last, result); + } + + // define the line L(p0, p1) + InputIterator p0 = first; // indicates the current key + InputIterator p1 = AdvanceCopy (first); // indicates the next point after p0 + + // keep track of two test points + InputIterator pi = p1; // the previous test point + InputIterator pj = p1; // the current test point (pi+1) + + // the first point is always part of the simplification + CopyKey (p0, result); + + // check each point pj against L(p0, p1) + for (diff_type j = 2; j < pointCount; ++j) { + pi = pj; + Advance (pj); + + if (math::line_distance2 (p0, p1, pj) < tol2) { + continue; + } + // found the next key at pi + CopyKey (pi, result); + // define new line L(pi, pj) + p0 = pi; + p1 = pj; + } + // the last point is always part of the simplification + CopyKey (pj, result); + + return result; + } + + /*! + \brief Performs Opheim approximation (OP). + + The O(n) OP routine is very similar to the Reumann-Witkam (RW) routine, and can be seen + as a constrained version of that RW routine. OP uses both a minimum and a maximum + distance tolerance to constrain the search area. For each successive vertex vi, its + radial distance to the current key vkey (initially v0) is calculated. The last point + within the minimum distance tolerance is used to define a ray R (vkey, vi). If no + such vi exists, the ray is defined as R(vkey, vkey+1). For each successive vertex vj + beyond vi its perpendicular distance to the ray R is calculated. A new key is found at + vj-1, when this distance exceeds the minimum tolerance Or when the radial distance + between vj and the vkey exceeds the maximum tolerance. After a new key is found, the + process repeats itself. + + \image html psimpl_op.png + + OP routine is applied to the range [first, last) using the specified distance tolerances + min_tol and max_tol. The resulting simplified polyline is copied to the output range + [result, result + m*DIM), where m is the number of vertices of the simplified polyline. + The return value is the end of the output range: result + m*DIM. + + Input (Type) Requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a forward iterator + 3- The input iterator value type is convertible to a value type of the output iterator + 4- The range [first, last) contains vertex coordinates in multiples of DIM, + f.e.: x, y, z, x, y, z, x, y, z when DIM = 3 + 5- The range [first, last) contains at least 2 vertices + 6- min_tol is not 0 + 7- max_tol is not 0 + + In case these requirements are not met, the entire input range [first, last) is copied + to the output range [result, result + (last - first)) OR compile errors may occur. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] min_tol radial and perpendicular (point-to-ray) distance tolerance + \param[in] max_tol radial distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator Opheim ( + InputIterator first, + InputIterator last, + value_type min_tol, + value_type max_tol, + OutputIterator result) + { + diff_type coordCount = std::distance (first, last); + diff_type pointCount = DIM // protect against zero DIM + ? coordCount / DIM + : 0; + value_type min_tol2 = min_tol * min_tol; // squared minimum distance tolerance + value_type max_tol2 = max_tol * max_tol; // squared maximum distance tolerance + + // validate input and check if simplification required + if (coordCount % DIM || pointCount < 3 || min_tol2 == 0 || max_tol2 == 0) { + return std::copy (first, last, result); + } + + // define the ray R(r0, r1) + InputIterator r0 = first; // indicates the current key and start of the ray + InputIterator r1 = first; // indicates a point on the ray + bool rayDefined = false; + + // keep track of two test points + InputIterator pi = r0; // the previous test point + InputIterator pj = // the current test point (pi+1) + AdvanceCopy (pi); + + // the first point is always part of the simplification + CopyKey (r0, result); + + for (diff_type j = 2; j < pointCount; ++j) { + pi = pj; + Advance (pj); + + if (!rayDefined) { + // discard each point within minimum tolerance + if (math::point_distance2 (r0, pj) < min_tol2) { + continue; + } + // the last point within minimum tolerance pi defines the ray R(r0, r1) + r1 = pi; + rayDefined = true; + } + + // check each point pj against R(r0, r1) + if (math::point_distance2 (r0, pj) < max_tol2 && + math::ray_distance2 (r0, r1, pj) < min_tol2) + { + continue; + } + // found the next key at pi + CopyKey (pi, result); + // define new ray R(pi, pj) + r0 = pi; + rayDefined = false; + } + // the last point is always part of the simplification + CopyKey (pj, result); + + return result; + } + + /*! + \brief Performs Lang approximation (LA). + + The LA routine defines a fixed size search-region. The first and last points of that + search region form a segment. This segment is used to calculate the perpendicular + distance to each intermediate point. If any calculated distance is larger than the + specified tolerance, the search region will be shrunk by excluding its last point. This + process will continue untill all calculated distances fall below the specified tolerance + , or there are no more intermediate points. At this point all intermediate points are + removed and a new search region is defined starting at the last point from old search + region. + Note that the size of the search region (look_ahead parameter) controls the maximum + amount of simplification, e.g.: a size of 20 will always result in a simplification that + contains at least 5% of the original points. + + \image html psimpl_la.png + + LA routine is applied to the range [first, last) using the specified tolerance and + look ahead values. The resulting simplified polyline is copied to the output range + [result, result + m*DIM), where m is the number of vertices of the simplified polyline. + The return value is the end of the output range: result + m*DIM. + + Input (Type) Requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a bidirectional iterator + 3- The InputIterator value type is convertible to a value type of the output iterator + 4- The range [first, last) contains vertex coordinates in multiples of DIM, + f.e.: x, y, z, x, y, z, x, y, z when DIM = 3 + 5- The range [first, last) contains at least 2 vertices + 6- tol is not 0 + 7- look_ahead is not zero + + In case these requirements are not met, the entire input range [first, last) is copied + to the output range [result, result + (last - first)) OR compile errors may occur. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (point-to-segment) distance tolerance + \param[in] look_ahead defines the size of the search region + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator Lang ( + InputIterator first, + InputIterator last, + value_type tol, + unsigned look_ahead, + OutputIterator result) + { + diff_type coordCount = std::distance (first, last); + diff_type pointCount = DIM // protect against zero DIM + ? coordCount / DIM + : 0; + value_type tol2 = tol * tol; // squared minimum distance tolerance + + // validate input and check if simplification required + if (coordCount % DIM || pointCount < 3 || look_ahead < 2 || tol2 == 0) { + return std::copy (first, last, result); + } + + InputIterator current = first; // indicates the current key + InputIterator next = first; // used to find the next key + + unsigned remaining = pointCount - 1; // the number of points remaining after current + unsigned moved = Forward (next, look_ahead, remaining); + + // the first point is always part of the simplification + CopyKey (current, result); + + while (moved) { + value_type d2 = 0; + InputIterator p = AdvanceCopy (current); + + while (p != next) { + d2 = std::max (d2, math::segment_distance2 (current, next, p)); + if (tol2 < d2) { + break; + } + Advance (p); + } + if (d2 < tol2) { + current = next; + CopyKey (current, result); + moved = Forward (next, look_ahead, remaining); + } + else { + Backward (next, remaining); + } + } + return result; + } + + /*! + \brief Performs Douglas-Peucker approximation (DP). + + The DP algorithm uses the RadialDistance (RD) routine O(n) as a preprocessing step. + After RD the algorithm is O (n m) in worst case and O(n log m) on average, where m < n + (m is the number of points after RD). + + The DP algorithm starts with a simplification that is the single edge joining the first + and last vertices of the polyline. The distance of the remaining vertices to that edge + are computed. The vertex that is furthest away from theedge (called a key), and has a + computed distance that is larger than a specified tolerance, will be added to the + simplification. This process will recurse for each edge in the current simplification, + untill all vertices of the original polyline are within tolerance. + + \image html psimpl_dp.png + + Note that this algorithm will create a copy of the input polyline during the vertex + reduction step. + + RD followed by DP is applied to the range [first, last) using the specified tolerance + tol. The resulting simplified polyline is copied to the output range + [result, result + m*DIM), where m is the number of vertices of the simplified polyline. + The return value is the end of the output range: result + m*DIM. + + Input (Type) requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a forward iterator + 3- The InputIterator value type is convertible to a value type of the output iterator + 4- The range [first, last) contains vertex coordinates in multiples of DIM, f.e.: + x, y, z, x, y, z, x, y, z when DIM = 3 + 5- The range [first, last) contains at least 2 vertices + 6- tol is not 0 + + In case these requirements are not met, the entire input range [first, last) is copied + to the output range [result, result + (last - first)) OR compile errors may occur. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (point-to-segment) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + OutputIterator DouglasPeucker ( + InputIterator first, + InputIterator last, + value_type tol, + OutputIterator result) + { + diff_type coordCount = std::distance (first, last); + diff_type pointCount = DIM // protect against zero DIM + ? coordCount / DIM + : 0; + // validate input and check if simplification required + if (coordCount % DIM || pointCount < 3 || tol == 0) { + return std::copy (first, last, result); + } + // radial distance routine as preprocessing + util::scoped_array reduced (coordCount); // radial distance results + PolylineSimplification psimpl_to_array; + ptr_diff_type reducedCoordCount = std::distance (reduced.get (), + psimpl_to_array.RadialDistance (first, last, tol, reduced.get ())); + ptr_diff_type reducedPointCount = reducedCoordCount / DIM; + + // douglas-peucker approximation + util::scoped_array keys (pointCount); // douglas-peucker results + DPHelper::Approximate (reduced.get (), reducedCoordCount, tol, keys.get ()); + + // copy all keys + const value_type* current = reduced.get (); + for (ptr_diff_type p=0; p (count) || count < 2) { + return std::copy (first, last, result); + } + + // copy coords + util::scoped_array coords (coordCount); + for (ptr_diff_type c=0; c keys (pointCount); + DPHelper::ApproximateN (coords.get (), coordCount, count, keys.get ()); + + // copy keys + const value_type* current = coords.get (); + for (ptr_diff_type p=0; p (original_first, simplified_first)) + { + if (valid) { + *valid = false; + } + return result; + } + + // define (simplified) line segment S(simplified_prev, simplified_first) + InputIterator simplified_prev = simplified_first; + std::advance (simplified_first, DIM); + + // process each simplified line segment + while (simplified_first != simplified_last) { + // process each original point until it equals the end of the line segment + while (original_first != original_last && + !math::equal (original_first, simplified_first)) + { + *result = math::segment_distance2 (simplified_prev, simplified_first, + original_first); + ++result; + std::advance (original_first, DIM); + } + // update line segment S + simplified_prev = simplified_first; + std::advance (simplified_first, DIM); + } + // check if last original point matched + if (original_first != original_last) { + *result = 0; + ++result; + } + + if (valid) { + *valid = original_first != original_last; + } + return result; + } + + /*! + \brief Computes statistics for the positional errors between a polyline and its simplification. + + Various statistics (mean, max, sum, std) are calculated for the positional errors + between the range [original_first, original_last) and its simplification the range + [simplified_first, simplified_last). + + Input (Type) requirements: + 1- DIM is not 0, where DIM represents the dimension of the polyline + 2- The InputIterator type models the concept of a forward iterator + 3- The InputIterator value type is convertible to double + 4- The ranges [original_first, original_last) and [simplified_first, simplified_last) + contain vertex coordinates in multiples of DIM, f.e.: x, y, z, x, y, z, x, y, z + when DIM = 3 + 5- The ranges [original_first, original_last) and [simplified_first, simplified_last) + contain a minimum of 2 vertices + 6- The range [simplified_first, simplified_last) represents a simplification of the + range [original_first, original_last), meaning each point in the simplification + has the exact same coordinates as some point from the original polyline + + In case these requirements are not met, the valid flag is set to false OR + compile errors may occur. + + \sa ComputePositionalErrors2 + + \param[in] original_first the first coordinate of the first polyline point + \param[in] original_last one beyond the last coordinate of the last polyline point + \param[in] simplified_first the first coordinate of the first simplified polyline point + \param[in] simplified_last one beyond the last coordinate of the last simplified polyline point + \param[out] valid [optional] indicates if the computed statistics are valid + \return the computed statistics + */ + math::Statistics ComputePositionalErrorStatistics ( + InputIterator original_first, + InputIterator original_last, + InputIterator simplified_first, + InputIterator simplified_last, + bool* valid=0) + { + diff_type pointCount = std::distance (original_first, original_last) / DIM; + util::scoped_array errors (pointCount); + PolylineSimplification ps; + + diff_type errorCount = + std::distance ( + errors.get (), + ps.ComputePositionalErrors2 (original_first, original_last, + simplified_first, simplified_last, + errors.get (), valid)); + + std::transform (errors.get (), errors.get () + errorCount, + errors.get (), + std::ptr_fun (std::sqrt)); + + return math::compute_statistics (errors.get (), errors.get () + errorCount); + } + + private: + /*! + \brief Copies the key to the output destination, and increments the iterator. + + \sa CopyKey + + \param[in,out] key the first coordinate of the key + \param[in,out] result destination of the copied key + */ + inline void CopyKeyAdvance ( + InputIterator& key, + OutputIterator& result) + { + for (unsigned d = 0; d < DIM; ++d) { + *result = *key; + ++result; + ++key; + } + } + + /*! + \brief Copies the key to the output destination. + + \sa CopyKeyAdvance + + \param[in] key the first coordinate of the key + \param[in,out] result destination of the copied key + */ + inline void CopyKey ( + InputIterator key, + OutputIterator& result) + { + CopyKeyAdvance (key, result); + } + + /*! + \brief Increments the iterator by n points. + + \sa AdvanceCopy + + \param[in,out] it iterator to be advanced + \param[in] n number of points to advance + */ + inline void Advance ( + InputIterator& it, + diff_type n = 1) + { + std::advance (it, n * static_cast (DIM)); + } + + /*! + \brief Increments a copy of the iterator by n points. + + \sa Advance + + \param[in] it iterator to be advanced + \param[in] n number of points to advance + \return an incremented copy of the input iterator + */ + inline InputIterator AdvanceCopy ( + InputIterator it, + diff_type n = 1) + { + Advance (it, n); + return it; + } + + /*! + \brief Increments the iterator by n points if possible. + + If there are fewer than n point remaining the iterator will be incremented to the last + point. + + \sa Backward + + \param[in,out] it iterator to be advanced + \param[in] n number of points to advance + \param[in,out] remaining number of points remaining after it + \return the actual amount of points that the iterator advanced + */ + inline unsigned Forward ( + InputIterator& it, + unsigned n, + unsigned& remaining) + { + n = std::min (n, remaining); + Advance (it, n); + remaining -= n; + return n; + } + + /*! + \brief Decrements the iterator by 1 point. + + \sa Forward + + \param[in,out] it iterator to be advanced + \param[in,out] remaining number of points remaining after it + */ + inline void Backward ( + InputIterator& it, + unsigned& remaining) + { + Advance (it, -1); + ++remaining; + } + + private: + /*! + \brief Douglas-Peucker approximation helper class. + + Contains helper implentations for Douglas-Peucker approximation that operate solely on + value_type arrays and value_type pointers. Note that the PolylineSimplification + class only operates on iterators. + */ + class DPHelper + { + //! \brief Defines a sub polyline. + struct SubPoly { + SubPoly (ptr_diff_type first=0, ptr_diff_type last=0) : + first (first), last (last) {} + + ptr_diff_type first; //! coord index of the first point + ptr_diff_type last; //! coord index of the last point + }; + + //! \brief Defines the key of a polyline. + struct KeyInfo { + KeyInfo (ptr_diff_type index=0, value_type dist2=0) : + index (index), dist2 (dist2) {} + + ptr_diff_type index; //! coord index of the key + value_type dist2; //! squared distance of the key to a segment + }; + + //! \brief Defines a sub polyline including its key. + struct SubPolyAlt { + SubPolyAlt (ptr_diff_type first=0, ptr_diff_type last=0) : + first (first), last (last) {} + + ptr_diff_type first; //! coord index of the first point + ptr_diff_type last; //! coord index of the last point + KeyInfo keyInfo; //! key of this sub poly + + bool operator< (const SubPolyAlt& other) const { + return keyInfo.dist2 < other.keyInfo.dist2; + } + }; + + public: + /*! + \brief Performs Douglas-Peucker approximation. + + \param[in] coords array of polyline coordinates + \param[in] coordCount number of coordinates in coords [] + \param[in] tol approximation tolerance + \param[out] keys indicates for each polyline point if it is a key + */ + static void Approximate ( + const value_type* coords, + ptr_diff_type coordCount, + value_type tol, + unsigned char* keys) + { + value_type tol2 = tol * tol; // squared distance tolerance + ptr_diff_type pointCount = coordCount / DIM; + // zero out keys + std::fill_n (keys, pointCount, 0); + keys [0] = 1; // the first point is always a key + keys [pointCount - 1] = 1; // the last point is always a key + + typedef std::stack Stack; + Stack stack; // LIFO job-queue containing sub-polylines + + SubPoly subPoly (0, coordCount-DIM); + stack.push (subPoly); // add complete poly + + while (!stack.empty ()) { + subPoly = stack.top (); // take a sub poly + stack.pop (); // and find its key + KeyInfo keyInfo = FindKey (coords, subPoly.first, subPoly.last); + if (keyInfo.index && tol2 < keyInfo.dist2) { + // store the key if valid + keys [keyInfo.index / DIM] = 1; + // split the polyline at the key and recurse + stack.push (SubPoly (keyInfo.index, subPoly.last)); + stack.push (SubPoly (subPoly.first, keyInfo.index)); + } + } + } + + /*! + \brief Performs Douglas-Peucker approximation. + + \param[in] coords array of polyline coordinates + \param[in] coordCount number of coordinates in coords [] + \param[in] countTol point count tolerance + \param[out] keys indicates for each polyline point if it is a key + */ + static void ApproximateN ( + const value_type* coords, + ptr_diff_type coordCount, + unsigned countTol, + unsigned char* keys) + { + ptr_diff_type pointCount = coordCount / DIM; + // zero out keys + std::fill_n (keys, pointCount, 0); + keys [0] = 1; // the first point is always a key + keys [pointCount - 1] = 1; // the last point is always a key + unsigned keyCount = 2; + + if (countTol == 2) { + return; + } + + typedef std::priority_queue PriorityQueue; + PriorityQueue queue; // sorted (max dist2) job queue containing sub-polylines + + SubPolyAlt subPoly (0, coordCount-DIM); + subPoly.keyInfo = FindKey (coords, subPoly.first, subPoly.last); + queue.push (subPoly); // add complete poly + + while (!queue.empty ()) { + subPoly = queue.top (); // take a sub poly + queue.pop (); + // store the key + keys [subPoly.keyInfo.index / DIM] = 1; + // check point count tolerance + keyCount++; + if (keyCount == countTol) { + break; + } + // split the polyline at the key and recurse + SubPolyAlt left (subPoly.first, subPoly.keyInfo.index); + left.keyInfo = FindKey (coords, left.first, left.last); + if (left.keyInfo.index) { + queue.push (left); + } + SubPolyAlt right (subPoly.keyInfo.index, subPoly.last); + right.keyInfo = FindKey (coords, right.first, right.last); + if (right.keyInfo.index) { + queue.push (right); + } + } + } + + private: + /*! + \brief Finds the key for the given sub polyline. + + Finds the point in the range [first, last] that is furthest away from the + segment (first, last). This point is called the key. + + \param[in] coords array of polyline coordinates + \param[in] first the first coordinate of the first polyline point + \param[in] last the first coordinate of the last polyline point + \return the index of the key and its distance, or last when a key + could not be found + */ + static KeyInfo FindKey ( + const value_type* coords, + ptr_diff_type first, + ptr_diff_type last) + { + KeyInfo keyInfo; + + for (ptr_diff_type current = first + DIM; current < last; current += DIM) { + value_type d2 = math::segment_distance2 (coords + first, coords + last, + coords + current); + if (d2 < keyInfo.dist2) { + continue; + } + // update maximum squared distance and the point it belongs to + keyInfo.index = current; + keyInfo.dist2 = d2; + } + return keyInfo; + } + }; + }; + + /*! + \brief Performs the nth point routine (NP). + + This is a convenience function that provides template type deduction for + PolylineSimplification::NthPoint. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] n specifies 'each nth point' + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_nth_point ( + ForwardIterator first, + ForwardIterator last, + unsigned n, + OutputIterator result) + { + PolylineSimplification ps; + return ps.NthPoint (first, last, n, result); + } + + /*! + \brief Performs the (radial) distance between points routine (RD). + + This is a convenience function that provides template type deduction for + PolylineSimplification::RadialDistance. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol radial (point-to-point) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_radial_distance ( + ForwardIterator first, + ForwardIterator last, + typename std::iterator_traits ::value_type tol, + OutputIterator result) + { + PolylineSimplification ps; + return ps.RadialDistance (first, last, tol, result); + } + + /*! + \brief Repeatedly performs the perpendicular distance routine (PD). + + This is a convenience function that provides template type deduction for + PolylineSimplification::PerpendicularDistance. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (segment-to-point) distance tolerance + \param[in] repeat the number of times to successively apply the PD routine. + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_perpendicular_distance ( + ForwardIterator first, + ForwardIterator last, + typename std::iterator_traits ::value_type tol, + unsigned repeat, + OutputIterator result) + { + PolylineSimplification ps; + return ps.PerpendicularDistance (first, last, tol, repeat, result); + } + + /*! + \brief Performs the perpendicular distance routine (PD). + + This is a convenience function that provides template type deduction for + PolylineSimplification::PerpendicularDistance. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (segment-to-point) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_perpendicular_distance ( + ForwardIterator first, + ForwardIterator last, + typename std::iterator_traits ::value_type tol, + OutputIterator result) + { + PolylineSimplification ps; + return ps.PerpendicularDistance (first, last, tol, result); + } + + /*! + \brief Performs Reumann-Witkam polyline simplification (RW). + + This is a convenience function that provides template type deduction for + PolylineSimplification::ReumannWitkam. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (point-to-line) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_reumann_witkam ( + ForwardIterator first, + ForwardIterator last, + typename std::iterator_traits ::value_type tol, + OutputIterator result) + { + PolylineSimplification ps; + return ps.ReumannWitkam (first, last, tol, result); + } + + /*! + \brief Performs Opheim polyline simplification (OP). + + This is a convenience function that provides template type deduction for + PolylineSimplification::Opheim. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] min_tol minimum distance tolerance + \param[in] max_tol maximum distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_opheim ( + ForwardIterator first, + ForwardIterator last, + typename std::iterator_traits ::value_type min_tol, + typename std::iterator_traits ::value_type max_tol, + OutputIterator result) + { + PolylineSimplification ps; + return ps.Opheim (first, last, min_tol, max_tol, result); + } + + /*! + \brief Performs Lang polyline simplification (LA). + + This is a convenience function that provides template type deduction for + PolylineSimplification::Lang. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (point-to-segment) distance tolerance + \param[in] look_ahead defines the size of the search region + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_lang ( + BidirectionalIterator first, + BidirectionalIterator last, + typename std::iterator_traits ::value_type tol, + unsigned look_ahead, + OutputIterator result) + { + PolylineSimplification ps; + return ps.Lang (first, last, tol, look_ahead, result); + } + + /*! + \brief Performs Douglas-Peucker polyline simplification (DP). + + This is a convenience function that provides template type deduction for + PolylineSimplification::DouglasPeucker. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] tol perpendicular (point-to-segment) distance tolerance + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_douglas_peucker ( + ForwardIterator first, + ForwardIterator last, + typename std::iterator_traits ::value_type tol, + OutputIterator result) + { + PolylineSimplification ps; + return ps.DouglasPeucker (first, last, tol, result); + } + + /*! + \brief Performs a variant of Douglas-Peucker polyline simplification (DPn). + + This is a convenience function that provides template type deduction for + PolylineSimplification::DouglasPeuckerAlt. + + \param[in] first the first coordinate of the first polyline point + \param[in] last one beyond the last coordinate of the last polyline point + \param[in] count the maximum number of points of the simplified polyline + \param[in] result destination of the simplified polyline + \return one beyond the last coordinate of the simplified polyline + */ + template + OutputIterator simplify_douglas_peucker_n ( + ForwardIterator first, + ForwardIterator last, + unsigned count, + OutputIterator result) + { + PolylineSimplification ps; + return ps.DouglasPeuckerN (first, last, count, result); + } + + /*! + \brief Computes the squared positional error between a polyline and its simplification. + + This is a convenience function that provides template type deduction for + PolylineSimplification::ComputePositionalErrors2. + + \param[in] original_first the first coordinate of the first polyline point + \param[in] original_last one beyond the last coordinate of the last polyline point + \param[in] simplified_first the first coordinate of the first simplified polyline point + \param[in] simplified_last one beyond the last coordinate of the last simplified polyline point + \param[in] result destination of the squared positional errors + \param[out] valid [optional] indicates if the computed positional errors are valid + \return one beyond the last computed positional error + */ + template + OutputIterator compute_positional_errors2 ( + ForwardIterator original_first, + ForwardIterator original_last, + ForwardIterator simplified_first, + ForwardIterator simplified_last, + OutputIterator result, + bool* valid=0) + { + PolylineSimplification ps; + return ps.ComputePositionalErrors2 (original_first, original_last, simplified_first, simplified_last, result, valid); + } + + /*! + \brief Computes statistics for the positional errors between a polyline and its simplification. + + This is a convenience function that provides template type deduction for + PolylineSimplification::ComputePositionalErrorStatistics. + + \param[in] original_first the first coordinate of the first polyline point + \param[in] original_last one beyond the last coordinate of the last polyline point + \param[in] simplified_first the first coordinate of the first simplified polyline point + \param[in] simplified_last one beyond the last coordinate of the last simplified polyline point + \param[out] valid [optional] indicates if the computed statistics are valid + \return the computed statistics + */ + template + math::Statistics compute_positional_error_statistics ( + ForwardIterator original_first, + ForwardIterator original_last, + ForwardIterator simplified_first, + ForwardIterator simplified_last, + bool* valid=0) + { + PolylineSimplification ps; + return ps.ComputePositionalErrorStatistics (original_first, original_last, simplified_first, simplified_last, valid); + } +} + +#endif // PSIMPL_GENERIC diff --git a/lib/simplify-js-alternative/Makefile b/lib/simplify-js-alternative/Makefile new file mode 100644 index 0000000..708634f --- /dev/null +++ b/lib/simplify-js-alternative/Makefile @@ -0,0 +1,2 @@ +simplify.diff: + diff ../turf-simplify/lib/simplify.js simplify.js > simplify.diff || true diff --git a/lib/simplify-js-alternative/README.md b/lib/simplify-js-alternative/README.md new file mode 100644 index 0000000..92dedb3 --- /dev/null +++ b/lib/simplify-js-alternative/README.md @@ -0,0 +1 @@ +This is an alternative Simplify.js version to take coordinates as a nested array. diff --git a/lib/simplify-js-alternative/simplify.diff b/lib/simplify-js-alternative/simplify.diff new file mode 100644 index 0000000..df3bfad --- /dev/null +++ b/lib/simplify-js-alternative/simplify.diff @@ -0,0 +1,42 @@ +1,9d0 +< /* +< (c) 2013, Vladimir Agafonkin +< Simplify.js, a high-performance JS polyline simplification library +< mourner.github.io/simplify-js +< */ +< +< // to suit your point format, run search/replace for '.x' and '.y'; +< // for 3D version, see 3d branch (configurability would draw significant performance overhead) +< +13,14c4,5 +< var dx = p1.x - p2.x, +< dy = p1.y - p2.y; +--- +> var dx = p1[0] - p2[0], +> dy = p1[1] - p2[1]; +22,25c13,16 +< var x = p1.x, +< y = p1.y, +< dx = p2.x - x, +< dy = p2.y - y; +--- +> var x = p1[0], +> y = p1[1], +> dx = p2[0] - x, +> dy = p2[1] - y; +29c20 +< var t = ((p.x - x) * dx + (p.y - y) * dy) / (dx * dx + dy * dy); +--- +> var t = ((p[0] - x) * dx + (p[1] - y) * dy) / (dx * dx + dy * dy); +32,33c23,24 +< x = p2.x; +< y = p2.y; +--- +> x = p2[0]; +> y = p2[1]; +41,42c32,33 +< dx = p.x - x; +< dy = p.y - y; +--- +> dx = p[0] - x; +> dy = p[1] - y; diff --git a/lib/simplify-js-alternative/simplify.js b/lib/simplify-js-alternative/simplify.js new file mode 100644 index 0000000..b4244eb --- /dev/null +++ b/lib/simplify-js-alternative/simplify.js @@ -0,0 +1,102 @@ +// square distance between 2 points +function getSqDist(p1, p2) { + + var dx = p1[0] - p2[0], + dy = p1[1] - p2[1]; + + return dx * dx + dy * dy; +} + +// square distance from a point to a segment +function getSqSegDist(p, p1, p2) { + + var x = p1[0], + y = p1[1], + dx = p2[0] - x, + dy = p2[1] - y; + + if (dx !== 0 || dy !== 0) { + + var t = ((p[0] - x) * dx + (p[1] - y) * dy) / (dx * dx + dy * dy); + + if (t > 1) { + x = p2[0]; + y = p2[1]; + + } else if (t > 0) { + x += dx * t; + y += dy * t; + } + } + + dx = p[0] - x; + dy = p[1] - y; + + return dx * dx + dy * dy; +} +// rest of the code doesn't care about point format + +// basic distance-based simplification +function simplifyRadialDist(points, sqTolerance) { + + var prevPoint = points[0], + newPoints = [prevPoint], + point; + + for (var i = 1, len = points.length; i < len; i++) { + point = points[i]; + + if (getSqDist(point, prevPoint) > sqTolerance) { + newPoints.push(point); + prevPoint = point; + } + } + + if (prevPoint !== point) newPoints.push(point); + + return newPoints; +} + +function simplifyDPStep(points, first, last, sqTolerance, simplified) { + var maxSqDist = sqTolerance, + index; + + for (var i = first + 1; i < last; i++) { + var sqDist = getSqSegDist(points[i], points[first], points[last]); + + if (sqDist > maxSqDist) { + index = i; + maxSqDist = sqDist; + } + } + + if (maxSqDist > sqTolerance) { + if (index - first > 1) simplifyDPStep(points, first, index, sqTolerance, simplified); + simplified.push(points[index]); + if (last - index > 1) simplifyDPStep(points, index, last, sqTolerance, simplified); + } +} + +// simplification using Ramer-Douglas-Peucker algorithm +function simplifyDouglasPeucker(points, sqTolerance) { + var last = points.length - 1; + + var simplified = [points[0]]; + simplifyDPStep(points, 0, last, sqTolerance, simplified); + simplified.push(points[last]); + + return simplified; +} + +// both algorithms combined for awesome performance +export default function simplify(points, tolerance, highestQuality) { + + if (points.length <= 2) return points; + + var sqTolerance = tolerance !== undefined ? tolerance * tolerance : 1; + + points = highestQuality ? points : simplifyRadialDist(points, sqTolerance); + points = simplifyDouglasPeucker(points, sqTolerance); + + return points; +} diff --git a/lib/simplify-js/.gitignore b/lib/simplify-js/.gitignore new file mode 100644 index 0000000..c26f93a --- /dev/null +++ b/lib/simplify-js/.gitignore @@ -0,0 +1,28 @@ +### Node template +# Logs +logs +*.log + +# Runtime data +pids +*.pid +*.seed + +# Directory for instrumented libs generated by jscoverage/JSCover +lib-cov + +# Coverage directory used by tools like istanbul +coverage + +# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) +.grunt + +# node-waf configuration +.lock-wscript + +# Compiled binary addons (http://nodejs.org/api/addons.html) +build/Release + +# Dependency directory +# https://docs.npmjs.com/misc/faq#should-i-check-my-node-modules-folder-into-git +node_modules diff --git a/lib/simplify-js/LICENSE b/lib/simplify-js/LICENSE new file mode 100644 index 0000000..bda6bcc --- /dev/null +++ b/lib/simplify-js/LICENSE @@ -0,0 +1,22 @@ +Copyright (c) 2017, Vladimir Agafonkin +All rights reserved. + +Redistribution and use in source and binary forms, with or without modification, are +permitted provided that the following conditions are met: + + 1. Redistributions of source code must retain the above copyright notice, this list of + conditions and the following disclaimer. + + 2. Redistributions in binary form must reproduce the above copyright notice, this list + of conditions and the following disclaimer in the documentation and/or other materials + provided with the distribution. + +THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY +EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF +MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE +COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, +EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF +SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) +HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR +TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS +SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. diff --git a/lib/simplify-js/README.md b/lib/simplify-js/README.md new file mode 100644 index 0000000..626a3b5 --- /dev/null +++ b/lib/simplify-js/README.md @@ -0,0 +1,19 @@ +Simplify.js is a high-performance JavaScript polyline simplification library by Vladimir Agafonkin, extracted from [Leaflet](http://leafletjs.com). + +Checkout the demo with docs: http://mourner.github.io/simplify-js/ + +#### Ports + + * Python: [omarestrella / simplify.py](https://github.com/omarestrella/simplify.py) (by Omar Estrella) + * PHP: [AKeN / simplify-php](https://github.com/AKeN/simplify-php) (by Rotari Gheorghe) + * PHP: [andreychumak / simplify-php](https://github.com/andreychumak/simplify-php) (by Andrey Chumak) + * Java: [ekeneijeoma / simplify-java](https://github.com/ekeneijeoma/simplify-java) (by Ekene Ijeoma) + * Java: [hgoebl / simplify-java](https://github.com/hgoebl/simplify-java) (by Heinrich Göbl) + * Processing: [ekeneijeoma / simplify-processing](https://github.com/ekeneijeoma/simplify-processing) (by Ekene Ijeoma) + * AS3: [fnicollet / simplify-as3](https://github.com/fnicollet/simplify-as3) (by Fabien Nicollet) + * Rust: [calvinmetcalf / simplify-rs](https://github.com/calvinmetcalf/simplify-rs) (by Calvin Metcalf) + * Ruby: [odlp / simplify_rb](https://github.com/odlp/simplify_rb) (by Oliver Peate) + * Go: [yrsh / simplify_go](https://github.com/yrsh/simplify-go) (by Anton Korotkikh) + * C# (Portable): [imshz / simplify-net](https://github.com/imshz/simplify-net) (by Shees Ul-Hassan) + * Swift: [malcommac / SwiftSimplify](https://github.com/malcommac/SwiftSimplify) (by Daniele Margutti) + * Unreal Engine: [SINTEF-9012 / SimplifyUnreal](https://github.com/SINTEF-9012/SimplifyUnreal) (by Antoine Pultier) diff --git a/lib/simplify-js/bench/bench.js b/lib/simplify-js/bench/bench.js new file mode 100644 index 0000000..b06ddad --- /dev/null +++ b/lib/simplify-js/bench/bench.js @@ -0,0 +1,19 @@ + +var Benchmark = require('benchmark'); +var simplify = require('../simplify'); + +var points = require('../test/fixtures/1k.json'); + +console.log('Benchmarking simplify on ' + points.length + ' points...'); + +new Benchmark.Suite() +.add('simplify (HQ)', function() { + simplify(points, 1, true); +}) +.add('simplify', function() { + simplify(points, 1, false); +}) +.on('cycle', function(event) { + console.log(String(event.target)); +}) +.run(); diff --git a/lib/simplify-js/index.d.ts b/lib/simplify-js/index.d.ts new file mode 100644 index 0000000..b2bf7af --- /dev/null +++ b/lib/simplify-js/index.d.ts @@ -0,0 +1,9 @@ +interface Point { + x: number; + y: number; +} + +declare function simplify (points: Point[], tolerance?: number, highQuality?: boolean): Point[]; +declare namespace simplify {} + +export = simplify; diff --git a/lib/simplify-js/package.json b/lib/simplify-js/package.json new file mode 100644 index 0000000..f7d3e2d --- /dev/null +++ b/lib/simplify-js/package.json @@ -0,0 +1,38 @@ +{ + "name": "simplify-js", + "version": "1.2.3", + "description": "A high-performance JavaScript 2D/3D polyline simplification library", + "homepage": "http://mourner.github.com/simplify-js/", + "author": "Vladimir Agafonkin", + "license": "BSD-2-Clause", + "keywords": [ + "math", + "geometry", + "polyline", + "simplification" + ], + "repository": { + "type": "git", + "url": "git://github.com/mourner/simplify-js.git" + }, + "main": "simplify.js", + "files": [ + "index.d.ts", + "simplify.js" + ], + "types": "index.d.ts", + "devDependencies": { + "benchmark": "^2.1.4", + "faucet": "0.0.1", + "jshint": "^2.9.5", + "tape": "^4.8.0" + }, + "scripts": { + "test": "jshint simplify.js test/test.js && node test/test.js | faucet" + }, + "jshintConfig": { + "quotmark": "single", + "trailing": true, + "unused": true + } +} diff --git a/lib/simplify-js/simplify.js b/lib/simplify-js/simplify.js new file mode 100644 index 0000000..339c84f --- /dev/null +++ b/lib/simplify-js/simplify.js @@ -0,0 +1,123 @@ +/* + (c) 2017, Vladimir Agafonkin + Simplify.js, a high-performance JS polyline simplification library + mourner.github.io/simplify-js +*/ + +(function () { 'use strict'; + +// to suit your point format, run search/replace for '.x' and '.y'; +// for 3D version, see 3d branch (configurability would draw significant performance overhead) + +// square distance between 2 points +function getSqDist(p1, p2) { + + var dx = p1.x - p2.x, + dy = p1.y - p2.y; + + return dx * dx + dy * dy; +} + +// square distance from a point to a segment +function getSqSegDist(p, p1, p2) { + + var x = p1.x, + y = p1.y, + dx = p2.x - x, + dy = p2.y - y; + + if (dx !== 0 || dy !== 0) { + + var t = ((p.x - x) * dx + (p.y - y) * dy) / (dx * dx + dy * dy); + + if (t > 1) { + x = p2.x; + y = p2.y; + + } else if (t > 0) { + x += dx * t; + y += dy * t; + } + } + + dx = p.x - x; + dy = p.y - y; + + return dx * dx + dy * dy; +} +// rest of the code doesn't care about point format + +// basic distance-based simplification +function simplifyRadialDist(points, sqTolerance) { + + var prevPoint = points[0], + newPoints = [prevPoint], + point; + + for (var i = 1, len = points.length; i < len; i++) { + point = points[i]; + + if (getSqDist(point, prevPoint) > sqTolerance) { + newPoints.push(point); + prevPoint = point; + } + } + + if (prevPoint !== point) newPoints.push(point); + + return newPoints; +} + +function simplifyDPStep(points, first, last, sqTolerance, simplified) { + var maxSqDist = sqTolerance, + index; + + for (var i = first + 1; i < last; i++) { + var sqDist = getSqSegDist(points[i], points[first], points[last]); + + if (sqDist > maxSqDist) { + index = i; + maxSqDist = sqDist; + } + } + + if (maxSqDist > sqTolerance) { + if (index - first > 1) simplifyDPStep(points, first, index, sqTolerance, simplified); + simplified.push(points[index]); + if (last - index > 1) simplifyDPStep(points, index, last, sqTolerance, simplified); + } +} + +// simplification using Ramer-Douglas-Peucker algorithm +function simplifyDouglasPeucker(points, sqTolerance) { + var last = points.length - 1; + + var simplified = [points[0]]; + simplifyDPStep(points, 0, last, sqTolerance, simplified); + simplified.push(points[last]); + + return simplified; +} + +// both algorithms combined for awesome performance +function simplify(points, tolerance, highestQuality) { + + if (points.length <= 2) return points; + + var sqTolerance = tolerance !== undefined ? tolerance * tolerance : 1; + + points = highestQuality ? points : simplifyRadialDist(points, sqTolerance); + points = simplifyDouglasPeucker(points, sqTolerance); + + return points; +} + +// export as AMD module / Node module / browser or worker variable +if (typeof define === 'function' && define.amd) define(function() { return simplify; }); +else if (typeof module !== 'undefined') { + module.exports = simplify; + module.exports.default = simplify; +} else if (typeof self !== 'undefined') self.simplify = simplify; +else window.simplify = simplify; + +})(); diff --git a/lib/simplify-js/test/fixtures/1k.json b/lib/simplify-js/test/fixtures/1k.json new file mode 100644 index 0000000..1f3180f --- /dev/null +++ b/lib/simplify-js/test/fixtures/1k.json @@ -0,0 +1 @@ +[{"x":224.55,"y":250.15},{"x":224.69,"y":250.61},{"x":225.15,"y":249.8},{"x":224.16,"y":249.25},{"x":224.26,"y":248.87},{"x":224.93,"y":247.89},{"x":225.18,"y":246.9},{"x":226.56,"y":245.62},{"x":226.9,"y":245.04},{"x":226.91,"y":244.19},{"x":227.47,"y":244.29},{"x":227.98,"y":244.1},{"x":229.79,"y":244.14},{"x":231.58,"y":243.65},{"x":232.32,"y":242.32},{"x":232.76,"y":242.1},{"x":233.31,"y":241.45},{"x":233.59,"y":240.66},{"x":233.38,"y":238.66},{"x":234.32,"y":237.77},{"x":234.98,"y":236.06},{"x":235.45,"y":235.85},{"x":237.05,"y":235.71},{"x":237.44,"y":235.95},{"x":238.8,"y":235.98},{"x":240.13,"y":234.6},{"x":243.53,"y":233.18},{"x":243.72,"y":232.87},{"x":244.21,"y":232.76},{"x":244.67,"y":232.26},{"x":244.79,"y":231.8},{"x":245.39,"y":231.58},{"x":245.71,"y":231.27},{"x":247.44,"y":229},{"x":248.09,"y":228.83},{"x":248.75,"y":228.18},{"x":248.91,"y":227.75},{"x":249.91,"y":226.75},{"x":250.68,"y":225.45},{"x":251.76,"y":224.93},{"x":253.59,"y":223.23},{"x":254.27,"y":222.87},{"x":254.68,"y":222.92},{"x":255.45,"y":222.66},{"x":255.65,"y":222.25},{"x":256.48,"y":221.57},{"x":256.9,"y":221.42},{"x":257.8,"y":220.52},{"x":258.29,"y":220.46},{"x":259.12,"y":219.84},{"x":259.65,"y":219.81},{"x":259.69,"y":219.55},{"x":259.94,"y":219.41},{"x":259.96,"y":219.1},{"x":260.68,"y":218.47},{"x":260.62,"y":218.23},{"x":260.98,"y":218.1},{"x":261.38,"y":217.5},{"x":262.15,"y":216.86},{"x":262.15,"y":216},{"x":262.59,"y":215.31},{"x":263,"y":215.52},{"x":263.31,"y":215.31},{"x":265.12,"y":215.33},{"x":265.37,"y":215.08},{"x":266.19,"y":214.86},{"x":267.11,"y":214.04},{"x":267.76,"y":213.81},{"x":267.97,"y":212.72},{"x":268.57,"y":212.22},{"x":269,"y":212.1},{"x":269.13,"y":211.31},{"x":270.22,"y":209.55},{"x":270.42,"y":208.65},{"x":271.35,"y":206.48},{"x":271.16,"y":204.85},{"x":271.25,"y":204.51},{"x":272.26,"y":203.54},{"x":272.52,"y":203.4},{"x":272.91,"y":203.47},{"x":273.16,"y":203.05},{"x":273.09,"y":202.64},{"x":273.57,"y":201.84},{"x":273.24,"y":200.81},{"x":273.26,"y":200.35},{"x":272.56,"y":198.59},{"x":272.47,"y":197.87},{"x":272.65,"y":196.88},{"x":272.18,"y":195.66},{"x":272.46,"y":194.59},{"x":272.82,"y":194.1},{"x":273.12,"y":192.16},{"x":274.21,"y":190.81},{"x":276.63,"y":189.43},{"x":277.2,"y":189.42},{"x":277.62,"y":189.03},{"x":278,"y":188.43},{"x":278.14,"y":187.72},{"x":278.89,"y":187.1},{"x":279.35,"y":184.47},{"x":279.94,"y":182.84},{"x":280.02,"y":182.02},{"x":280.36,"y":181.41},{"x":282.49,"y":180.2},{"x":283.6,"y":180.14},{"x":285.89,"y":177.93},{"x":286.51,"y":177.74},{"x":286.51,"y":174.97},{"x":286.88,"y":173.04},{"x":286.83,"y":172.31},{"x":288.11,"y":171.63},{"x":288.83,"y":170.76},{"x":289.02,"y":170.83},{"x":289.34,"y":170.35},{"x":289.37,"y":169.96},{"x":290.07,"y":169.32},{"x":290.07,"y":168.66},{"x":290.41,"y":168.18},{"x":290.56,"y":167.19},{"x":291.34,"y":165.93},{"x":291.34,"y":164.45},{"x":292.41,"y":159.37},{"x":293.32,"y":158.78},{"x":294.89,"y":157.33},{"x":295.21,"y":156.86},{"x":295.71,"y":156.55},{"x":296.26,"y":156.57},{"x":296.91,"y":155.64},{"x":298.25,"y":155.53},{"x":298.69,"y":155.19},{"x":299.08,"y":155.3},{"x":299.69,"y":155.09},{"x":300.4,"y":155.31},{"x":301.77,"y":155.4},{"x":302.39,"y":155.17},{"x":303.28,"y":155.17},{"x":304.16,"y":154.83},{"x":305,"y":154.86},{"x":305.76,"y":154.33},{"x":306.8,"y":154.06},{"x":307.25,"y":153.61},{"x":307.94,"y":153.43},{"x":308.74,"y":153.92},{"x":310.09,"y":153.8},{"x":310.87,"y":153.12},{"x":311.14,"y":152.68},{"x":311.1,"y":152.41},{"x":311.44,"y":152.21},{"x":312.63,"y":152.11},{"x":313.39,"y":151.64},{"x":314.04,"y":151.61},{"x":314.49,"y":151.27},{"x":314.95,"y":151.37},{"x":315.01,"y":150.76},{"x":315.63,"y":150.29},{"x":316.54,"y":149.92},{"x":316.67,"y":149.58},{"x":317.12,"y":149.2},{"x":317.26,"y":148.67},{"x":317.1,"y":148.35},{"x":317.33,"y":147.82},{"x":318.7,"y":146.87},{"x":318.92,"y":146.51},{"x":319.39,"y":146.2},{"x":319.75,"y":145.16},{"x":321,"y":144.76},{"x":321.37,"y":144.26},{"x":321.61,"y":143.55},{"x":324.39,"y":142.35},{"x":325,"y":141.75},{"x":325.3,"y":140.82},{"x":325.7,"y":140.45},{"x":325.73,"y":140.23},{"x":326.1,"y":140.08},{"x":326.27,"y":139.6},{"x":327.29,"y":139.43},{"x":328.26,"y":139.49},{"x":328.77,"y":139.29},{"x":329.75,"y":138.04},{"x":330.33,"y":137.57},{"x":331.77,"y":137.48},{"x":332.2,"y":137.78},{"x":333.94,"y":138.17},{"x":334.22,"y":138.36},{"x":337.6,"y":138.61},{"x":338.49,"y":139.04},{"x":338.91,"y":139.46},{"x":341.06,"y":139.74},{"x":341.48,"y":139.96},{"x":342.92,"y":139.36},{"x":345.95,"y":139.2},{"x":346.8,"y":138.88},{"x":347.37,"y":138.23},{"x":348.87,"y":138.35},{"x":349.47,"y":138.79},{"x":352.86,"y":138.52},{"x":353.58,"y":138.61},{"x":354,"y":138.48},{"x":355.41,"y":138.6},{"x":356.64,"y":138.3},{"x":358.69,"y":138.57},{"x":361.11,"y":138.35},{"x":362.24,"y":138.46},{"x":362.92,"y":138.76},{"x":363.58,"y":138.53},{"x":364.44,"y":138.48},{"x":365.39,"y":138.74},{"x":366.01,"y":138.47},{"x":367.8,"y":138.1},{"x":369.98,"y":137.89},{"x":370.82,"y":138.25},{"x":372.24,"y":138.21},{"x":373.71,"y":138.64},{"x":375.12,"y":138.53},{"x":376.08,"y":138.63},{"x":379.45,"y":139.95},{"x":380.38,"y":140.19},{"x":381.02,"y":140.07},{"x":381.86,"y":140.18},{"x":382.52,"y":140.4},{"x":383.38,"y":141.16},{"x":385.1,"y":142},{"x":387.39,"y":142.51},{"x":387.67,"y":142.49},{"x":387.78,"y":142.12},{"x":389.17,"y":141.03},{"x":389.39,"y":140.38},{"x":390.47,"y":140.07},{"x":390.92,"y":139.47},{"x":391.14,"y":139.58},{"x":391.28,"y":139.39},{"x":393.29,"y":139.65},{"x":395.17,"y":139.38},{"x":395.55,"y":139.48},{"x":395.98,"y":139.3},{"x":398.28,"y":139.63},{"x":398.75,"y":139.84},{"x":400.57,"y":139.55},{"x":402.4,"y":139.89},{"x":402.45,"y":140.15},{"x":403.03,"y":140.26},{"x":404.11,"y":140.85},{"x":404.97,"y":141.02},{"x":405.47,"y":141.48},{"x":405.79,"y":141.49},{"x":406.09,"y":141.23},{"x":406.53,"y":141.13},{"x":407.24,"y":141.17},{"x":407.51,"y":141},{"x":408.37,"y":141.17},{"x":409.52,"y":141.14},{"x":410.11,"y":140.33},{"x":410.76,"y":140.08},{"x":411.69,"y":140.42},{"x":414.13,"y":139.64},{"x":414.47,"y":139.84},{"x":414.82,"y":139.75},{"x":414.99,"y":139.32},{"x":417.7,"y":137.3},{"x":419.56,"y":135.5},{"x":421.29,"y":134.3},{"x":421.9,"y":133.5},{"x":422.7,"y":131.95},{"x":423.23,"y":131.48},{"x":423.38,"y":130.94},{"x":426.08,"y":129.26},{"x":427.15,"y":128.21},{"x":427.72,"y":127.3},{"x":429.37,"y":126.9},{"x":429.83,"y":126.52},{"x":430.08,"y":125.88},{"x":432.07,"y":125.45},{"x":433.14,"y":125.07},{"x":434.13,"y":124.46},{"x":434.88,"y":123.79},{"x":435.25,"y":123},{"x":436.4,"y":122.42},{"x":437.77,"y":122.05},{"x":439.1,"y":120.02},{"x":439.6,"y":119.74},{"x":440.85,"y":119.64},{"x":441.91,"y":119.03},{"x":442.73,"y":118.95},{"x":445.6,"y":117.92},{"x":446.05,"y":117.97},{"x":447.34,"y":117.65},{"x":447.77,"y":117.29},{"x":448.22,"y":117.18},{"x":448.99,"y":116.53},{"x":451.14,"y":115.9},{"x":452.8,"y":115.83},{"x":455.08,"y":115.26},{"x":456.19,"y":114.32},{"x":458.08,"y":114.11},{"x":458.64,"y":113.86},{"x":460,"y":112.48},{"x":465.64,"y":111.28},{"x":466.42,"y":110.95},{"x":467.42,"y":111},{"x":468.84,"y":110.79},{"x":469.75,"y":110.92},{"x":471.64,"y":110.14},{"x":474.93,"y":107.87},{"x":475.8,"y":107.73},{"x":477.38,"y":107.87},{"x":478.2,"y":108.1},{"x":481.19,"y":108.21},{"x":481.8,"y":107.84},{"x":483.39,"y":107.3},{"x":486.51,"y":106.75},{"x":486.37,"y":107.53},{"x":486.79,"y":107.98},{"x":487.66,"y":108.73},{"x":488.86,"y":109.07},{"x":489.2,"y":109.45},{"x":491.39,"y":109.36},{"x":492.01,"y":109.1},{"x":493.15,"y":109.03},{"x":493.57,"y":108.63},{"x":493.79,"y":108.63},{"x":494.48,"y":109.16},{"x":495.27,"y":110.44},{"x":495.78,"y":110.65},{"x":496.09,"y":111.22},{"x":497.28,"y":111.75},{"x":497.3,"y":112.24},{"x":497.55,"y":112.68},{"x":498.84,"y":113.96},{"x":501.08,"y":115.96},{"x":502.08,"y":116.42},{"x":502.63,"y":117.28},{"x":503.71,"y":118.01},{"x":504.16,"y":118.77},{"x":504.18,"y":119.09},{"x":504.74,"y":119.66},{"x":505.18,"y":119.8},{"x":507.32,"y":119.66},{"x":508.21,"y":119.83},{"x":508.79,"y":120.46},{"x":509.6,"y":120.56},{"x":510.02,"y":121.08},{"x":512.96,"y":122.35},{"x":513.27,"y":121.99},{"x":513.66,"y":122.18},{"x":514.28,"y":122.2},{"x":514.8,"y":121.6},{"x":515.49,"y":121.39},{"x":516.2,"y":121.4},{"x":517.51,"y":120.87},{"x":517.86,"y":121.04},{"x":518.63,"y":120.89},{"x":518.88,"y":121.42},{"x":519.95,"y":122.03},{"x":520.43,"y":122.49},{"x":520.56,"y":122.87},{"x":521.93,"y":123.43},{"x":523.01,"y":125.73},{"x":524.09,"y":126.88},{"x":524.55,"y":126.97},{"x":524.92,"y":127.38},{"x":525.36,"y":127.41},{"x":526.63,"y":127.94},{"x":527.99,"y":127.95},{"x":528.98,"y":127.61},{"x":529.57,"y":127.86},{"x":529.89,"y":128.14},{"x":530.53,"y":129.23},{"x":530.87,"y":129.47},{"x":530.69,"y":129.79},{"x":530.81,"y":132.77},{"x":532.48,"y":134.47},{"x":533.15,"y":136.66},{"x":533.9,"y":137.9},{"x":534.03,"y":138.86},{"x":533.91,"y":139.82},{"x":534.21,"y":140.93},{"x":534.77,"y":141.58},{"x":535.23,"y":142.66},{"x":536.2,"y":143.65},{"x":536.69,"y":144.76},{"x":537.01,"y":144.47},{"x":537.85,"y":144.57},{"x":538.5,"y":144.83},{"x":539.24,"y":145.53},{"x":539.45,"y":146.73},{"x":539.27,"y":147.24},{"x":541.59,"y":148.01},{"x":542.6,"y":148.02},{"x":543.15,"y":148.44},{"x":543.68,"y":148.54},{"x":546.12,"y":148.44},{"x":546.26,"y":148.13},{"x":547.74,"y":147.7},{"x":548.95,"y":147.72},{"x":549.68,"y":147.45},{"x":550.4,"y":147.56},{"x":550.66,"y":147.27},{"x":552,"y":147.31},{"x":552.94,"y":148.22},{"x":554.75,"y":148.14},{"x":555.02,"y":148.64},{"x":555.32,"y":148.74},{"x":556.16,"y":148.56},{"x":557.88,"y":148.83},{"x":559.07,"y":148.41},{"x":559.7,"y":148.48},{"x":559.99,"y":148.85},{"x":560.62,"y":148.99},{"x":560.92,"y":149.29},{"x":562.06,"y":149.76},{"x":565.3,"y":149.57},{"x":566.51,"y":148.91},{"x":567.69,"y":148.91},{"x":567.89,"y":148.98},{"x":567.77,"y":149.19},{"x":568.1,"y":149.46},{"x":568.52,"y":149.57},{"x":568.94,"y":149.45},{"x":569.23,"y":150.05},{"x":570.38,"y":151.12},{"x":571.1,"y":152.6},{"x":571.76,"y":153.09},{"x":575.25,"y":157.26},{"x":576.85,"y":157.4},{"x":580.62,"y":158.15},{"x":581.86,"y":158.14},{"x":583.83,"y":157.79},{"x":584.98,"y":158.17},{"x":586.67,"y":158.32},{"x":592.8,"y":158.21},{"x":593.19,"y":157.95},{"x":595.17,"y":157.66},{"x":596.17,"y":157.78},{"x":598.02,"y":157.63},{"x":598.61,"y":157.4},{"x":599.48,"y":157.39},{"x":601.06,"y":157.06},{"x":601.53,"y":156.85},{"x":601.68,"y":157.03},{"x":605.03,"y":157.05},{"x":606.47,"y":157.69},{"x":606.9,"y":157.71},{"x":608.23,"y":157.27},{"x":608.5,"y":157.46},{"x":608.81,"y":157.35},{"x":609.47,"y":158.05},{"x":609.86,"y":157.92},{"x":611.26,"y":158.55},{"x":612.3,"y":158.44},{"x":614.73,"y":158.8},{"x":617.74,"y":159.86},{"x":618.14,"y":160.29},{"x":617.91,"y":160.98},{"x":619.71,"y":164.86},{"x":621.52,"y":166.36},{"x":622,"y":167.04},{"x":622.11,"y":170.69},{"x":622.01,"y":171.26},{"x":623.66,"y":173.26},{"x":624.15,"y":176.75},{"x":624.68,"y":177.5},{"x":625.05,"y":179.03},{"x":625.69,"y":179.83},{"x":626.06,"y":181.1},{"x":625.92,"y":185.63},{"x":626.45,"y":185.96},{"x":626.72,"y":186.8},{"x":627.07,"y":186.84},{"x":627.62,"y":188.65},{"x":628.11,"y":189.21},{"x":628.09,"y":190.19},{"x":629.18,"y":192.37},{"x":629.55,"y":194.6},{"x":629.93,"y":194.86},{"x":630.78,"y":194.7},{"x":632.12,"y":194.86},{"x":633.06,"y":195.47},{"x":635.78,"y":196.31},{"x":638.39,"y":195.52},{"x":638.9,"y":195.61},{"x":640.48,"y":197.63},{"x":640.44,"y":199.01},{"x":641.26,"y":200.81},{"x":644.54,"y":202.78},{"x":645.02,"y":202.82},{"x":645.55,"y":202.57},{"x":647.72,"y":202.67},{"x":648.57,"y":203.55},{"x":648.85,"y":203.38},{"x":648.94,"y":203.12},{"x":649.85,"y":203.32},{"x":651,"y":204.22},{"x":651.77,"y":204.56},{"x":653.14,"y":206.28},{"x":655.45,"y":208.18},{"x":656.46,"y":208.26},{"x":657.19,"y":208.81},{"x":657.89,"y":209.06},{"x":658.59,"y":210.25},{"x":659.45,"y":210.83},{"x":661.57,"y":213.37},{"x":664.15,"y":215.09},{"x":664.54,"y":215},{"x":664.76,"y":215.19},{"x":664.73,"y":215.38},{"x":665.8,"y":215.98},{"x":666.58,"y":216.94},{"x":667.21,"y":217.45},{"x":669.67,"y":219.1},{"x":669.72,"y":219.89},{"x":670.07,"y":220.84},{"x":670.36,"y":221.01},{"x":671.19,"y":222.26},{"x":671.55,"y":222.55},{"x":671.9,"y":222.07},{"x":672.3,"y":222.11},{"x":672.9,"y":221.69},{"x":673.65,"y":221.62},{"x":674.39,"y":221.09},{"x":675.68,"y":220.97},{"x":677.51,"y":221.33},{"x":677.85,"y":220.89},{"x":678.6,"y":220.39},{"x":679.03,"y":219.79},{"x":681.31,"y":218.71},{"x":681.6,"y":217.98},{"x":681.8,"y":217.85},{"x":682.62,"y":218.16},{"x":683.68,"y":217.45},{"x":686.87,"y":217.67},{"x":687.49,"y":217.59},{"x":688.81,"y":218.15},{"x":690.62,"y":218.21},{"x":695.25,"y":219.15},{"x":696.58,"y":218.76},{"x":697.68,"y":218.83},{"x":699.34,"y":218.53},{"x":699.44,"y":218.09},{"x":700.64,"y":217.98},{"x":701.01,"y":217.32},{"x":700.98,"y":216.37},{"x":701.16,"y":215.87},{"x":702.86,"y":214.71},{"x":703.12,"y":214.36},{"x":707.1,"y":215.09},{"x":707.62,"y":214.92},{"x":709.34,"y":215.08},{"x":709.97,"y":215.36},{"x":710.42,"y":215.78},{"x":712.26,"y":215.87},{"x":713.11,"y":215.63},{"x":713.67,"y":215.25},{"x":714.04,"y":215.23},{"x":714.79,"y":214.47},{"x":715.81,"y":214.36},{"x":717.26,"y":213.55},{"x":717.92,"y":213.57},{"x":718.67,"y":213.28},{"x":721.25,"y":212.98},{"x":721.49,"y":212.81},{"x":721.76,"y":213.15},{"x":723.17,"y":213.29},{"x":723.44,"y":214},{"x":724.02,"y":214.27},{"x":726.71,"y":213.43},{"x":726.88,"y":213.52},{"x":727.13,"y":213.32},{"x":727.28,"y":213.43},{"x":727.81,"y":213.36},{"x":728.05,"y":213.1},{"x":728.07,"y":211.23},{"x":728.78,"y":210.03},{"x":729.98,"y":208.73},{"x":730.99,"y":208.38},{"x":732.01,"y":208.25},{"x":733.02,"y":207.73},{"x":733.8,"y":208.35},{"x":735.32,"y":208.2},{"x":735.9,"y":207.87},{"x":737.28,"y":206.1},{"x":737.56,"y":205.95},{"x":737.78,"y":206.1},{"x":737.69,"y":205.78},{"x":738.66,"y":205.44},{"x":738.96,"y":204.97},{"x":739.94,"y":204.77},{"x":742.94,"y":204.7},{"x":743.39,"y":204.86},{"x":744.12,"y":205.44},{"x":745.4,"y":205.53},{"x":746.71,"y":205.36},{"x":747.72,"y":204.96},{"x":747.93,"y":204.54},{"x":748.7,"y":204.81},{"x":749.82,"y":204.91},{"x":750.6,"y":205.38},{"x":751.17,"y":205.32},{"x":751.64,"y":205.58},{"x":751.78,"y":205.93},{"x":753.07,"y":206.02},{"x":754.04,"y":206.39},{"x":754.36,"y":206.67},{"x":755.78,"y":206.77},{"x":756.67,"y":206.5},{"x":756.99,"y":206.68},{"x":758.49,"y":206.49},{"x":759.99,"y":206.84},{"x":760.57,"y":206.82},{"x":761.03,"y":207.05},{"x":762.69,"y":207.01},{"x":763.05,"y":207.31},{"x":763.56,"y":207.32},{"x":764.71,"y":207.68},{"x":765.3,"y":207.74},{"x":765.97,"y":207.51},{"x":767.35,"y":208.01},{"x":767.71,"y":207.96},{"x":769.98,"y":208.42},{"x":771.92,"y":209.93},{"x":773.43,"y":210.6},{"x":773.77,"y":211.31},{"x":773.63,"y":211.74},{"x":773.94,"y":212.21},{"x":774.16,"y":212.25},{"x":774.26,"y":212.59},{"x":775.22,"y":212.7},{"x":776.36,"y":213.25},{"x":777.16,"y":214.24},{"x":777.95,"y":214.82},{"x":778.4,"y":214.87},{"x":778.64,"y":215.14},{"x":778.66,"y":215.48},{"x":779.21,"y":215.85},{"x":779.6,"y":216.87},{"x":780.98,"y":217.05},{"x":781.53,"y":217.41},{"x":782.83,"y":217.49},{"x":784.2,"y":218.16},{"x":785.44,"y":218.23},{"x":785.78,"y":218.02},{"x":787.96,"y":218.51},{"x":789.45,"y":218.36},{"x":789.93,"y":217.8},{"x":792.07,"y":217.27},{"x":793.31,"y":216.27},{"x":794.3,"y":215.97},{"x":796.24,"y":214.79},{"x":797.09,"y":214.55},{"x":797.67,"y":214.73},{"x":798.01,"y":214.61},{"x":798.25,"y":214.7},{"x":799.15,"y":214.29},{"x":800.24,"y":214.62},{"x":800.4,"y":215.1},{"x":801.04,"y":215.54},{"x":802.54,"y":215.57},{"x":803.32,"y":216.22},{"x":808.09,"y":218.4},{"x":808.83,"y":218.91},{"x":809.39,"y":218.95},{"x":810.53,"y":219.73},{"x":811.64,"y":221},{"x":811.65,"y":222.65},{"x":813.64,"y":224.71},{"x":815.18,"y":225.97},{"x":815.43,"y":225.97},{"x":816.14,"y":226.61},{"x":816.68,"y":226.79},{"x":817.06,"y":226.68},{"x":817.19,"y":226.82},{"x":817.85,"y":228.24},{"x":818.19,"y":228.64},{"x":818.6,"y":231.56},{"x":819.14,"y":232.38},{"x":819.1,"y":232.81},{"x":819.87,"y":233.97},{"x":820.77,"y":236.17},{"x":821.54,"y":236.39},{"x":823.92,"y":236.03},{"x":827.23,"y":236.16},{"x":827.53,"y":236.42},{"x":828.36,"y":238.42},{"x":829.89,"y":239.89},{"x":832.6,"y":241.26},{"x":834.54,"y":241.96},{"x":835.07,"y":241.88},{"x":835.18,"y":242.14},{"x":835.58,"y":242.13},{"x":836.17,"y":242.51},{"x":836.78,"y":242.66},{"x":837.53,"y":243.4},{"x":838.37,"y":243.88},{"x":838.43,"y":243.5},{"x":838.66,"y":243.57},{"x":839.04,"y":244.12},{"x":839.22,"y":244.92},{"x":841.21,"y":245.84},{"x":841.83,"y":246.04},{"x":842.04,"y":245.77},{"x":842.41,"y":245.75},{"x":843.26,"y":245.27},{"x":844.24,"y":245.57},{"x":845.03,"y":246.39},{"x":845.85,"y":246.6},{"x":847,"y":247.64},{"x":847.34,"y":247.73},{"x":847.41,"y":248.18},{"x":848.42,"y":248.13},{"x":849.7,"y":248.92},{"x":851,"y":248.94},{"x":851.44,"y":249.29},{"x":852.08,"y":250.28},{"x":852.61,"y":250.7},{"x":852.83,"y":251.42},{"x":854.06,"y":252.12},{"x":854.8,"y":252.81},{"x":856.59,"y":253.4},{"x":858.68,"y":254.64},{"x":859.5,"y":255.39},{"x":859.88,"y":255.49},{"x":860.33,"y":256.75},{"x":861.17,"y":257.75},{"x":861.43,"y":258.74},{"x":861.26,"y":259.2},{"x":861.57,"y":259.34},{"x":860.95,"y":260.82},{"x":862.67,"y":262.25},{"x":862.85,"y":262.88},{"x":863.1,"y":263.15},{"x":863.12,"y":263.53},{"x":864.01,"y":265},{"x":864.49,"y":267.98},{"x":864.76,"y":268.06},{"x":865.21,"y":268.53},{"x":865.02,"y":269.11},{"x":864.37,"y":268.85},{"x":864.15,"y":269.33},{"x":863.73,"y":269.69},{"x":863.78,"y":269.93},{"x":863.88,"y":269.85},{"x":864.53,"y":270.31},{"x":864.3,"y":270.94},{"x":864.43,"y":271.25},{"x":864.29,"y":271.5},{"x":863.59,"y":271.56},{"x":863.07,"y":272.03},{"x":863.14,"y":272.21},{"x":861.6,"y":273.31},{"x":861.47,"y":273.58},{"x":860.76,"y":273.83},{"x":860.64,"y":274.09},{"x":860.96,"y":274.52},{"x":860.93,"y":274.95},{"x":861.15,"y":275.41},{"x":861.42,"y":275.58},{"x":861.54,"y":276.09},{"x":861.18,"y":276.87},{"x":860.91,"y":276.89},{"x":861.03,"y":277.41},{"x":860.24,"y":277.5},{"x":859.28,"y":278.03},{"x":858.98,"y":278.5},{"x":858.91,"y":279.15},{"x":858.01,"y":279.83},{"x":857.95,"y":280.3},{"x":858.02,"y":280.95},{"x":858.56,"y":281.61},{"x":859.44,"y":281.91},{"x":859.85,"y":282.31},{"x":860.42,"y":282.4},{"x":860.41,"y":282.97},{"x":861.29,"y":283.62},{"x":861.73,"y":284.46},{"x":861.78,"y":285.25},{"x":861.6,"y":285.89},{"x":862.09,"y":286.16},{"x":862.38,"y":285.9},{"x":862.55,"y":285.95},{"x":862.9,"y":286.61},{"x":863.29,"y":288.07},{"x":863.36,"y":288.97},{"x":863.98,"y":289.4},{"x":863.94,"y":290.43},{"x":864.45,"y":290.42},{"x":864.57,"y":290.73},{"x":864.91,"y":290.59},{"x":865.21,"y":291.29},{"x":865.48,"y":291.45},{"x":865.32,"y":292.52},{"x":865.63,"y":293.4},{"x":866.1,"y":294.07},{"x":866.06,"y":294.62},{"x":866.32,"y":295.2},{"x":866.04,"y":296.21},{"x":865.82,"y":296.36},{"x":865.78,"y":297.21},{"x":866.12,"y":298.04},{"x":866.61,"y":298.23},{"x":866.81,"y":298.66},{"x":865.76,"y":299.92},{"x":865.06,"y":300.33},{"x":864.58,"y":301.43},{"x":864.79,"y":302},{"x":864.68,"y":302.71},{"x":865.32,"y":303.37},{"x":865.35,"y":303.62},{"x":865.46,"y":303.68},{"x":865.63,"y":303.49},{"x":866.81,"y":304.67},{"x":867.29,"y":304.96},{"x":867.33,"y":305.89},{"x":867.79,"y":306.17},{"x":866.43,"y":308.08},{"x":865.7,"y":308.15},{"x":864.81,"y":308.75},{"x":864.24,"y":308.72},{"x":863.18,"y":308.96},{"x":862.52,"y":309.54},{"x":861.87,"y":309.86},{"x":861.49,"y":310.42},{"x":861.54,"y":310.76},{"x":861.2,"y":311.37},{"x":860.66,"y":311.38},{"x":860.43,"y":311.04},{"x":859.87,"y":311.37},{"x":859.84,"y":311.72},{"x":859.7,"y":311.8},{"x":859.89,"y":312.99},{"x":859.71,"y":313.68},{"x":860.08,"y":314.35},{"x":859.84,"y":314.22},{"x":859.59,"y":314.42},{"x":859.41,"y":314.31},{"x":859.35,"y":314.56},{"x":859.05,"y":314.76},{"x":858.87,"y":314.68},{"x":858.29,"y":314.94},{"x":858.49,"y":315.35},{"x":858.19,"y":315.6},{"x":858.2,"y":316.09},{"x":857.97,"y":316.42},{"x":857.99,"y":317.18},{"x":857.71,"y":317.99},{"x":857.81,"y":318.45},{"x":857.63,"y":318.77},{"x":857.65,"y":319.12},{"x":857.32,"y":319.49},{"x":857.37,"y":320.92},{"x":857.23,"y":321.32},{"x":857.23,"y":322.66},{"x":857.44,"y":324.03},{"x":857.34,"y":326.69},{"x":858.08,"y":327.3},{"x":858.1,"y":327.6},{"x":857.59,"y":328.6},{"x":857.21,"y":328.98},{"x":856.81,"y":330.34},{"x":856.37,"y":330.51},{"x":855.98,"y":330.93},{"x":855.95,"y":331.89},{"x":855.36,"y":332.13},{"x":855.38,"y":332.51},{"x":855.06,"y":332.61},{"x":854.91,"y":333.44},{"x":855.21,"y":334.74},{"x":854.57,"y":335.21},{"x":854.54,"y":335.4},{"x":855.01,"y":336.06},{"x":855,"y":336.45},{"x":855.28,"y":336.79},{"x":855.8,"y":338.6},{"x":856.14,"y":338.6},{"x":856.23,"y":338.86},{"x":856.35,"y":338.63},{"x":856.71,"y":338.94},{"x":857.05,"y":338.89},{"x":857.23,"y":338.64},{"x":858.07,"y":338.79},{"x":858.2,"y":338.94},{"x":858.92,"y":338.57},{"x":859.11,"y":338.89},{"x":858.81,"y":339.55},{"x":858.92,"y":340.41},{"x":859.53,"y":340.69},{"x":859.84,"y":341.04},{"x":860.07,"y":341.37},{"x":860.06,"y":341.83},{"x":860.66,"y":342.03},{"x":860.92,"y":343},{"x":860.55,"y":343.73},{"x":859.97,"y":344.14},{"x":859.58,"y":344.7},{"x":858.97,"y":346.97},{"x":858.43,"y":347.23},{"x":857.95,"y":347.79},{"x":857.37,"y":348.06},{"x":857.06,"y":348.95},{"x":856.76,"y":349.12},{"x":856.84,"y":349.26},{"x":856.38,"y":349.83},{"x":856.43,"y":350.15},{"x":856.12,"y":350.24},{"x":856,"y":350.57},{"x":855.55,"y":350.42},{"x":855.29,"y":350.5},{"x":854.9,"y":351.05},{"x":854.52,"y":351.3},{"x":854.44,"y":351.92},{"x":854.11,"y":351.83},{"x":853.89,"y":352.24},{"x":853.66,"y":352.25},{"x":853.37,"y":352.65},{"x":852.5,"y":352.57},{"x":852.42,"y":353.03},{"x":852.19,"y":352.87},{"x":851.42,"y":352.96},{"x":851.41,"y":353.57},{"x":850.85,"y":354.08},{"x":850.76,"y":354.94},{"x":850.88,"y":355.32},{"x":850.21,"y":356.07},{"x":850.17,"y":356.49},{"x":850.62,"y":356.9},{"x":851.06,"y":357.75},{"x":850.59,"y":357.96},{"x":850.56,"y":358.47},{"x":849.95,"y":359.08},{"x":849.84,"y":359.59},{"x":850.11,"y":360.29},{"x":849.92,"y":360.43},{"x":850.33,"y":360.49},{"x":851.07,"y":361.18},{"x":852.05,"y":361.17},{"x":852.13,"y":361.59},{"x":852.71,"y":362.1},{"x":852.73,"y":362.8},{"x":853.19,"y":363},{"x":853.47,"y":363.67},{"x":853.87,"y":363.76},{"x":853.9,"y":364.28},{"x":854.42,"y":364.29},{"x":854.65,"y":365.14},{"x":854.56,"y":365.53},{"x":854.16,"y":366.23},{"x":854.24,"y":366.42},{"x":853.84,"y":366.47},{"x":852.39,"y":367.52},{"x":851.57,"y":368.38},{"x":850.93,"y":368.68},{"x":851.06,"y":369},{"x":850.93,"y":369.23},{"x":850.46,"y":369.51},{"x":849.74,"y":370.38},{"x":849.06,"y":370.71},{"x":848.5,"y":370.69},{"x":848.23,"y":370.49},{"x":847.4,"y":371.33},{"x":847.14,"y":371.16},{"x":846.94,"y":370.7},{"x":846.18,"y":371.02},{"x":845.71,"y":371.5},{"x":845.04,"y":371.11},{"x":844.09,"y":371.89},{"x":844.19,"y":372.58},{"x":844.02,"y":373.35},{"x":843.52,"y":373.95},{"x":843.27,"y":374.55},{"x":843.51,"y":376.21},{"x":843.82,"y":376.83},{"x":843.72,"y":377.01},{"x":843.96,"y":377.62},{"x":843.94,"y":378.01},{"x":844.01,"y":378.16},{"x":844.38,"y":378.03},{"x":844.52,"y":378.57},{"x":844.31,"y":378.85},{"x":844.75,"y":380.44},{"x":843.74,"y":382.15},{"x":843.46,"y":382.35},{"x":842.91,"y":382.37},{"x":841.52,"y":383.67},{"x":841.12,"y":385.66},{"x":840.87,"y":385.75},{"x":840.51,"y":386.39},{"x":840.63,"y":386.95},{"x":840.12,"y":388.01},{"x":839.9,"y":389.41},{"x":839.99,"y":389.78},{"x":839.57,"y":390.4},{"x":839.94,"y":390.99},{"x":839.86,"y":391.33},{"x":839.99,"y":391.65},{"x":839.87,"y":391.82},{"x":840.73,"y":392.78},{"x":841.69,"y":393.3},{"x":842.18,"y":394.49},{"x":842.93,"y":394.88},{"x":843.07,"y":395.1},{"x":843.39,"y":396.4},{"x":844.27,"y":397.32},{"x":844.69,"y":398.01},{"x":845.22,"y":398.44},{"x":845.22,"y":398.71},{"x":845.59,"y":399.05},{"x":845.73,"y":400.37},{"x":846.1,"y":401.41},{"x":847.39,"y":403.44},{"x":847.56,"y":405.01},{"x":847.98,"y":405.98},{"x":848.35,"y":406.33},{"x":848.4,"y":407.55},{"x":847.99,"y":407.71},{"x":847.46,"y":408.34},{"x":847.21,"y":409.09},{"x":847.21,"y":410.25},{"x":846.4,"y":410.25},{"x":845.98,"y":409.99},{"x":845.81,"y":409.69},{"x":844.62,"y":409.75},{"x":843.99,"y":410.77},{"x":843.92,"y":411.16},{"x":843.71,"y":411.3},{"x":843.95,"y":413.34},{"x":844.59,"y":413.95},{"x":844.31,"y":414.5},{"x":844.57,"y":415.53},{"x":844.47,"y":415.98},{"x":844.08,"y":416.54},{"x":844.46,"y":417.78},{"x":844.25,"y":418.04},{"x":844,"y":419.22},{"x":844.09,"y":419.88},{"x":843.69,"y":420.87},{"x":843.57,"y":421.64},{"x":843.09,"y":422.17},{"x":842.62,"y":423.24},{"x":842.18,"y":423.58},{"x":841.69,"y":424.45},{"x":841.31,"y":425.32},{"x":841.28,"y":426.07},{"x":840.43,"y":426.98},{"x":840.28,"y":427.27},{"x":840.35,"y":427.98},{"x":840.13,"y":428.36},{"x":839.85,"y":428.43},{"x":839.94,"y":429.62},{"x":839.66,"y":430.25},{"x":839.76,"y":430.97},{"x":839.51,"y":432.76},{"x":839.78,"y":433.31},{"x":840.19,"y":435.49},{"x":839.97,"y":436.57},{"x":840.18,"y":437.41},{"x":840.88,"y":438.25},{"x":841.33,"y":441.04},{"x":842.75,"y":442.31},{"x":843.89,"y":442.49},{"x":844.23,"y":442.69},{"x":844.56,"y":444.33},{"x":845.21,"y":445.61},{"x":845.11,"y":445.98},{"x":845.26,"y":446.13},{"x":845.25,"y":446.61},{"x":845.51,"y":446.83},{"x":845.92,"y":447.72},{"x":846.54,"y":448.23},{"x":846.22,"y":448.39},{"x":846.58,"y":449.03},{"x":846.85,"y":449.22},{"x":847.26,"y":449.12},{"x":847.62,"y":449.22},{"x":847.22,"y":451.51},{"x":847.37,"y":453.41},{"x":847.06,"y":454.37},{"x":847.52,"y":455.19},{"x":847.87,"y":456.51},{"x":847.8,"y":456.93},{"x":847.37,"y":457.36},{"x":847.16,"y":458.44},{"x":847.35,"y":458.58},{"x":847.82,"y":459.76},{"x":848.54,"y":460.28},{"x":848.79,"y":461.67},{"x":849.1,"y":461.82},{"x":850.01,"y":461.85},{"x":850.38,"y":462.26},{"x":850.7,"y":462.24},{"x":851.38,"y":462.79},{"x":851.35,"y":463.26},{"x":851.9,"y":464.12},{"x":851.99,"y":464.81},{"x":852.29,"y":465.31},{"x":852.39,"y":466.28},{"x":853.62,"y":468.27},{"x":853.52,"y":468.55},{"x":853.77,"y":469.76},{"x":853.68,"y":470.22},{"x":854,"y":470.91},{"x":853.97,"y":471.15},{"x":854.32,"y":471.15},{"x":854.55,"y":471.34},{"x":855.21,"y":473.19},{"x":856.05,"y":473.73},{"x":856.86,"y":474.89},{"x":857.4,"y":475.11},{"x":857.89,"y":475.79},{"x":859.65,"y":476.31},{"x":860.05,"y":476.74},{"x":860.69,"y":476.85},{"x":861.3,"y":477.2},{"x":861.65,"y":477.05},{"x":862.23,"y":477.64},{"x":862.5,"y":477.67},{"x":863.43,"y":478.32},{"x":863.96,"y":478.96},{"x":865.71,"y":480.02},{"x":865.75,"y":480.29},{"x":866.36,"y":480.77}] diff --git a/lib/simplify-js/test/test.js b/lib/simplify-js/test/test.js new file mode 100644 index 0000000..2850850 --- /dev/null +++ b/lib/simplify-js/test/test.js @@ -0,0 +1,60 @@ +var points = [ + {x:224.55,y:250.15},{x:226.91,y:244.19},{x:233.31,y:241.45},{x:234.98,y:236.06}, + {x:244.21,y:232.76},{x:262.59,y:215.31},{x:267.76,y:213.81},{x:273.57,y:201.84}, + {x:273.12,y:192.16},{x:277.62,y:189.03},{x:280.36,y:181.41},{x:286.51,y:177.74}, + {x:292.41,y:159.37},{x:296.91,y:155.64},{x:314.95,y:151.37},{x:319.75,y:145.16}, + {x:330.33,y:137.57},{x:341.48,y:139.96},{x:369.98,y:137.89},{x:387.39,y:142.51}, + {x:391.28,y:139.39},{x:409.52,y:141.14},{x:414.82,y:139.75},{x:427.72,y:127.30}, + {x:439.60,y:119.74},{x:474.93,y:107.87},{x:486.51,y:106.75},{x:489.20,y:109.45}, + {x:493.79,y:108.63},{x:504.74,y:119.66},{x:512.96,y:122.35},{x:518.63,y:120.89}, + {x:524.09,y:126.88},{x:529.57,y:127.86},{x:534.21,y:140.93},{x:539.27,y:147.24}, + {x:567.69,y:148.91},{x:575.25,y:157.26},{x:580.62,y:158.15},{x:601.53,y:156.85}, + {x:617.74,y:159.86},{x:622.00,y:167.04},{x:629.55,y:194.60},{x:638.90,y:195.61}, + {x:641.26,y:200.81},{x:651.77,y:204.56},{x:671.55,y:222.55},{x:683.68,y:217.45}, + {x:695.25,y:219.15},{x:700.64,y:217.98},{x:703.12,y:214.36},{x:712.26,y:215.87}, + {x:721.49,y:212.81},{x:727.81,y:213.36},{x:729.98,y:208.73},{x:735.32,y:208.20}, + {x:739.94,y:204.77},{x:769.98,y:208.42},{x:779.60,y:216.87},{x:784.20,y:218.16}, + {x:800.24,y:214.62},{x:810.53,y:219.73},{x:817.19,y:226.82},{x:820.77,y:236.17}, + {x:827.23,y:236.16},{x:829.89,y:239.89},{x:851.00,y:248.94},{x:859.88,y:255.49}, + {x:865.21,y:268.53},{x:857.95,y:280.30},{x:865.48,y:291.45},{x:866.81,y:298.66}, + {x:864.68,y:302.71},{x:867.79,y:306.17},{x:859.87,y:311.37},{x:860.08,y:314.35}, + {x:858.29,y:314.94},{x:858.10,y:327.60},{x:854.54,y:335.40},{x:860.92,y:343.00}, + {x:856.43,y:350.15},{x:851.42,y:352.96},{x:849.84,y:359.59},{x:854.56,y:365.53}, + {x:849.74,y:370.38},{x:844.09,y:371.89},{x:844.75,y:380.44},{x:841.52,y:383.67}, + {x:839.57,y:390.40},{x:845.59,y:399.05},{x:848.40,y:407.55},{x:843.71,y:411.30}, + {x:844.09,y:419.88},{x:839.51,y:432.76},{x:841.33,y:441.04},{x:847.62,y:449.22}, + {x:847.16,y:458.44},{x:851.38,y:462.79},{x:853.97,y:471.15},{x:866.36,y:480.77} +]; + +var simplified = [ + {x:224.55,y:250.15},{x:267.76,y:213.81},{x:296.91,y:155.64},{x:330.33,y:137.57}, + {x:409.52,y:141.14},{x:439.60,y:119.74},{x:486.51,y:106.75},{x:529.57,y:127.86}, + {x:539.27,y:147.24},{x:617.74,y:159.86},{x:629.55,y:194.60},{x:671.55,y:222.55}, + {x:727.81,y:213.36},{x:739.94,y:204.77},{x:769.98,y:208.42},{x:779.60,y:216.87}, + {x:800.24,y:214.62},{x:820.77,y:236.17},{x:859.88,y:255.49},{x:865.21,y:268.53}, + {x:857.95,y:280.30},{x:867.79,y:306.17},{x:859.87,y:311.37},{x:854.54,y:335.40}, + {x:860.92,y:343.00},{x:849.84,y:359.59},{x:854.56,y:365.53},{x:844.09,y:371.89}, + {x:839.57,y:390.40},{x:848.40,y:407.55},{x:839.51,y:432.76},{x:853.97,y:471.15}, + {x:866.36,y:480.77} +]; + +var simplify = require('../simplify'), + t = require('tape'); + +t('simplifies points correctly with the given tolerance', function (t) { + var result = simplify(points, 5); + t.same(result, simplified); + t.end(); +}); + +t('just return the points if it has only one point', function(t){ + var result = simplify([{x:1, y:2}]); + t.same(result, [{x:1, y:2}]); + t.end(); +}); + +t('just return the points if it has no points', function(t){ + var result = simplify([]); + t.same(result, []); + t.end(); +}); diff --git a/lib/simplify-wasm/Makefile b/lib/simplify-wasm/Makefile new file mode 100644 index 0000000..f1be4dd --- /dev/null +++ b/lib/simplify-wasm/Makefile @@ -0,0 +1,13 @@ +OPTIMIZE="-O3" + +simplify.wasm module.js: simplify.c + emcc \ + ${OPTIMIZE} \ + --closure 1 \ + -s WASM=1 \ + -s ALLOW_MEMORY_GROWTH=1 \ + -s MODULARIZE=1 \ + -s EXPORT_ES6=1 \ + -s EXPORTED_FUNCTIONS='["_simplify", "_malloc", "_free"]' \ + -o simplify.js \ + simplify.c diff --git a/lib/simplify-wasm/example.html b/lib/simplify-wasm/example.html new file mode 100644 index 0000000..094596d --- /dev/null +++ b/lib/simplify-wasm/example.html @@ -0,0 +1,32 @@ + + + + + + + Document + + + +
Original array: Loading...
+
Simplified array: Loading...
+ + + + + \ No newline at end of file diff --git a/lib/simplify-wasm/index.js b/lib/simplify-wasm/index.js new file mode 100644 index 0000000..16caa5e --- /dev/null +++ b/lib/simplify-wasm/index.js @@ -0,0 +1,31 @@ +/* + This file is meant to be processed in the context of an asset bundler. + Specifically the import of 'simplify.wasm' is meant to be resolved by the + corresponding path to that file. Configure a file loader to resolve .wasm + files (e.g. Webpack: file-loader) accordingly. + + Otherwise you have to use the module factory 'simplify.js' manually and + reproduce the steps from below to fit your build context. See example.html. + + Other than wrapping the memory handling for convenience this method also makes + sure the module is only loaded once. +*/ + +import wasmModuleFactory from './simplify.js' +import wasmUrl from './simplify.wasm' +import { initEmscriptenModule } from '../wasm-util/initEmscripten.js' +import { storeCoords, loadResultAndFreeMemory } from '../wasm-util/coordinates.js' + +export async function simplifyWasm(coords, tolerance, highestQuality) { + const module = await getModule() + const buffer = storeCoords(module, coords) + const result = module._simplify(buffer, coords.length * 2, tolerance, highestQuality) + module._free(buffer) + return loadResultAndFreeMemory(module, result) +} + +let emscriptenModule +export async function getModule () { + if (!emscriptenModule) emscriptenModule = initEmscriptenModule(wasmModuleFactory, wasmUrl) + return await emscriptenModule +} diff --git a/lib/simplify-wasm/simplify.c b/lib/simplify-wasm/simplify.c new file mode 100644 index 0000000..a18b2b4 --- /dev/null +++ b/lib/simplify-wasm/simplify.c @@ -0,0 +1,122 @@ +#include + +#define DIM 2 + +void copyCoordinate(double* from, double* to) { + for (int i = 0; i < DIM; i++) { + to[i] = from[i]; + } +} + +// extends array and copies point on the end. Returns new length +int push(double* array, int length, double* point) { + int newLength = length + DIM; + // realloc(array, newLength * sizeof(double)); + copyCoordinate(point, array + length); + return newLength; +} + +// square distance between 2 points +double getSqDist(double* p1, double* p2) { + double dx = p1[0] - p2[0], + dy = p1[1] - p2[1]; + return dx * dx + dy * dy; +} + + +// square distance from a point to a segment +double getSqSegDist(double* p, double* p1, double* p2) { + double x = p1[0], + y = p1[1], + dx = p2[0] - x, + dy = p2[1] - y; + + if (dx != 0 || dy != 0) { + double t = ((p[0] - x) * dx + (p[1] - y) * dy) / (dx * dx + dy * dy); + + if (t > 1) { + x = p2[0]; + y = p2[1]; + + } else if (t > 0) { + x += dx * t; + y += dy * t; + } + } + + dx = p[0] - x; + dy = p[1] - y; + + return dx * dx + dy * dy; +} + +// basic distance-based simplification +int simplifyRadialDist(double* points, int length, double sqTolerance, double* newPoints) { + double* prevPoint = points; + double* point; + int sizeOfNewPoints = push(newPoints, 0, points); + + for (int i = 1; i < length; i += DIM) { + point = points + i; + if (getSqDist(point, prevPoint) > sqTolerance) { + sizeOfNewPoints = push(newPoints, sizeOfNewPoints, point); + prevPoint = point; + } + } + + if (prevPoint != point) { + sizeOfNewPoints = push(newPoints, sizeOfNewPoints, point); + } + + return sizeOfNewPoints; +} + +int simplifyDPStep(double* points, int first, int last, double sqTolerance, double* simplified, int lengthOfSimplified) { + double maxSqDist = sqTolerance; + int index; + + for (int i = first + DIM; i < last; i += DIM) { + double sqDist = getSqSegDist(points + i, points + first, points + last); + + if (sqDist > maxSqDist) { + index = i; + maxSqDist = sqDist; + } + } + + if (maxSqDist > sqTolerance) { + if (index - first > DIM) lengthOfSimplified = simplifyDPStep(points, first, index, sqTolerance, simplified, lengthOfSimplified); + lengthOfSimplified = push(simplified, lengthOfSimplified, points + index); + if (last - index > DIM) lengthOfSimplified = simplifyDPStep(points, index, last, sqTolerance, simplified, lengthOfSimplified); + } + return lengthOfSimplified; +} + +// simplification using Ramer-Douglas-Peucker algorithm +int simplifyDouglasPeucker(double* points, int length, double sqTolerance, double* simplified) { + int lengthOfSimplified; + lengthOfSimplified = push(simplified, 0, points); + lengthOfSimplified = simplifyDPStep(points, 0, length - DIM, sqTolerance, simplified, lengthOfSimplified); + lengthOfSimplified = push(simplified, lengthOfSimplified, points + length - DIM); + return lengthOfSimplified; +} + +int* simplify(double * input, int length, double tolerance, int highestQuality) { + double sqTolerance = tolerance * tolerance; + double* points = input; + double* resultRdDistance = NULL; + double* result = malloc(length * sizeof(double)); + + if (!highestQuality) { + resultRdDistance = malloc(length * sizeof(double)); + length = simplifyRadialDist(points, length, sqTolerance, resultRdDistance); + points = resultRdDistance; + } + int resultLength = simplifyDouglasPeucker(points, length, sqTolerance, result); + free(resultRdDistance); + + int* resultInfo = malloc(2); + resultInfo[0] = (int) result; + resultInfo[1] = resultLength; + return resultInfo; +} diff --git a/lib/simplify-wasm/simplify.js b/lib/simplify-wasm/simplify.js new file mode 100644 index 0000000..e75e5ed --- /dev/null +++ b/lib/simplify-wasm/simplify.js @@ -0,0 +1,31 @@ + +var Module = (function() { + var _scriptDir = typeof document !== 'undefined' && document.currentScript ? document.currentScript.src : undefined; + return ( +function(Module) { + Module = Module || {}; + +var a;a||(a=typeof Module !== 'undefined' ? Module : {});var f={},g;for(g in a)a.hasOwnProperty(g)&&(f[g]=a[g]);a.arguments=[];a.thisProgram="./this.program";a.quit=function(b,c){throw c;};a.preRun=[];a.postRun=[];var h=!1,k=!1,l=!1,m=!1;h="object"===typeof window;k="function"===typeof importScripts;l="object"===typeof process&&"function"===typeof require&&!h&&!k;m=!h&&!l&&!k;var n=""; +if(l){n=__dirname+"/";var p,q;a.read=function(b,c){p||(p=require("fs"));q||(q=require("path"));b=q.normalize(b);b=p.readFileSync(b);return c?b:b.toString()};a.readBinary=function(b){b=a.read(b,!0);b.buffer||(b=new Uint8Array(b));b.buffer||r("Assertion failed: undefined");return b};1E&&v("TOTAL_MEMORY should be larger than TOTAL_STACK, was "+E+"! (TOTAL_STACK=5242880)"); +a.buffer?buffer=a.buffer:"object"===typeof WebAssembly&&"function"===typeof WebAssembly.Memory?(x=new WebAssembly.Memory({initial:E/65536}),buffer=x.buffer):buffer=new ArrayBuffer(E);C();B[684]=5245648;function F(b){for(;0>2]=b);return b},e:V,d:function(b){if(2147418112=c?c=z(2*c):c=Math.min(z((3*c+2147483648)/4),2147418112);if(!W(c))return!1;C();return!0},c:function(){r("OOM")},a:2736},buffer);a.asm=X;a.___errno_location=function(){return a.asm.f.apply(null,arguments)};a._free=function(){return a.asm.g.apply(null,arguments)};a._malloc=function(){return a.asm.h.apply(null,arguments)}; +a._simplify=function(){return a.asm.i.apply(null,arguments)};a.asm=X;a.then=function(b){if(a.calledRun)b(a);else{var c=a.onRuntimeInitialized;a.onRuntimeInitialized=function(){c&&c();b(a)}}return a};function t(b){this.name="ExitStatus";this.message="Program terminated with exit("+b+")";this.status=b}t.prototype=Error();t.prototype.constructor=t;O=function aa(){a.calledRun||Z();a.calledRun||(O=aa)}; +function Z(){function b(){if(!a.calledRun&&(a.calledRun=!0,!y)){K||(K=!0,F(H));F(I);if(a.onRuntimeInitialized)a.onRuntimeInitialized();if(a.postRun)for("function"==typeof a.postRun&&(a.postRun=[a.postRun]);a.postRun.length;){var b=a.postRun.shift();J.unshift(b)}F(J)}}if(!(0u@ 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 + +## simplify + +Takes a [GeoJSON][1] object and returns a simplified version. Internally uses +[simplify-js][2] to perform simplification using the Ramer-Douglas-Peucker algorithm. + +**Parameters** + +- `geojson` **[GeoJSON][3]** object to be simplified +- `options` **[Object][4]** Optional parameters (optional, default `{}`) + - `options.tolerance` **[number][5]** simplification tolerance (optional, default `1`) + - `options.highQuality` **[boolean][6]** whether or not to spend more time to create a higher-quality simplification with a different algorithm (optional, default `false`) + - `options.mutate` **[boolean][6]** allows GeoJSON input to be mutated (significant performance increase if true) (optional, default `false`) + +**Examples** + +```javascript +var geojson = turf.polygon([[ + [-70.603637, -33.399918], + [-70.614624, -33.395332], + [-70.639343, -33.392466], + [-70.659942, -33.394759], + [-70.683975, -33.404504], + [-70.697021, -33.419406], + [-70.701141, -33.434306], + [-70.700454, -33.446339], + [-70.694274, -33.458369], + [-70.682601, -33.465816], + [-70.668869, -33.472117], + [-70.646209, -33.473835], + [-70.624923, -33.472117], + [-70.609817, -33.468107], + [-70.595397, -33.458369], + [-70.587158, -33.442901], + [-70.587158, -33.426283], + [-70.590591, -33.414248], + [-70.594711, -33.406224], + [-70.603637, -33.399918] +]]); +var options = {tolerance: 0.01, highQuality: false}; +var simplified = turf.simplify(geojson, options); + +//addToMap +var addToMap = [geojson, simplified] +``` + +Returns **[GeoJSON][3]** a simplified GeoJSON + +[1]: https://tools.ietf.org/html/rfc7946#section-3 + +[2]: http://mourner.github.io/simplify-js/ + +[3]: https://tools.ietf.org/html/rfc7946#section-3 + +[4]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object + +[5]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Number + +[6]: https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Boolean + + + +--- + +This module is part of the [Turfjs project](http://turfjs.org/), an open source +module collection dedicated to geographic algorithms. It is maintained in the +[Turfjs/turf](https://github.com/Turfjs/turf) repository, where you can create +PRs and issues. + +### Installation + +Install this module individually: + +```sh +$ npm install @turf/simplify +``` + +Or install the Turf module that includes it as a function: + +```sh +$ npm install @turf/turf +``` diff --git a/lib/turf-simplify/bench.js b/lib/turf-simplify/bench.js new file mode 100644 index 0000000..3258cda --- /dev/null +++ b/lib/turf-simplify/bench.js @@ -0,0 +1,67 @@ +import fs from 'fs'; +import path from 'path'; +import load from 'load-json-file'; +import Benchmark from 'benchmark'; +import simplify from './'; + +const directory = path.join(__dirname, 'test', 'in') + path.sep; +const fixtures = fs.readdirSync(directory).map(filename => { + return { + name: path.parse(filename).name, + geojson: load.sync(directory + filename) + }; +}); + +/** + * Single Process Benchmark + * + * argentina: 4.695ms + * featurecollection: 1.647ms + * fiji-hiQ: 0.461ms + * geometrycollection: 3.332ms + * linestring: 0.460ms + * multilinestring: 0.657ms + * multipoint: 0.193ms + * multipolygon: 6.108ms + * point: 0.032ms + * poly-issue#555-5: 4.956ms + * polygon: 0.675ms + * simple-polygon: 2.735ms + */ +for (const {name, geojson} of fixtures) { + let {tolerance, highQuality} = geojson.properties || {}; + tolerance = tolerance || 0.01; + highQuality = highQuality || false; + console.time(name); + simplify(geojson, tolerance, highQuality); + console.timeEnd(name); +} + +/** + * Benchmark Results + * + * argentina x 13,380 ops/sec ±4.31% (72 runs sampled) + * featurecollection x 4,709 ops/sec ±2.24% (76 runs sampled) + * fiji-hiQ x 41,197 ops/sec ±1.96% (80 runs sampled) + * geometrycollection x 4,690 ops/sec ±2.25% (78 runs sampled) + * linestring x 29,737 ops/sec ±2.26% (77 runs sampled) + * multilinestring x 20,530 ops/sec ±2.08% (77 runs sampled) + * multipoint x 394,980 ops/sec ±2.35% (77 runs sampled) + * multipolygon x 809 ops/sec ±3.32% (70 runs sampled) + * point x 5,157,027 ops/sec ±8.79% (72 runs sampled) + * poly-issue#555-5 x 1,816 ops/sec ±2.43% (66 runs sampled) + * polygon x 2,996 ops/sec ±2.85% (74 runs sampled) + * simple-polygon x 369 ops/sec ±7.55% (66 runs sampled) + */ +const suite = new Benchmark.Suite('turf-transform-simplify'); +for (const {name, geojson} of fixtures) { + let {tolerance, highQuality} = geojson.properties || {}; + tolerance = tolerance || 0.01; + highQuality = highQuality || false; + suite.add(name, () => simplify(geojson, tolerance, highQuality)); +} + +suite + .on('cycle', e => console.log(String(e.target))) + .on('complete', () => {}) + .run(); diff --git a/lib/turf-simplify/index.d.ts b/lib/turf-simplify/index.d.ts new file mode 100644 index 0000000..2b2b2bd --- /dev/null +++ b/lib/turf-simplify/index.d.ts @@ -0,0 +1,13 @@ +import { AllGeoJSON } from '@turf/helpers' + +/** + * http://turfjs.org/docs/#simplify + */ +export default function simplify( + geojson: T, + options?: { + tolerance?: number, + highQuality?: boolean, + mutate?: boolean + } +): T; diff --git a/lib/turf-simplify/index.js b/lib/turf-simplify/index.js new file mode 100644 index 0000000..6522b76 --- /dev/null +++ b/lib/turf-simplify/index.js @@ -0,0 +1,175 @@ +import cleanCoords from '@turf/clean-coords'; +import clone from '@turf/clone'; +import { geomEach } from '@turf/meta'; +import { isObject } from '@turf/helpers'; +import simplifyJS from './lib/simplify'; + +/** + * Takes a {@link GeoJSON} object and returns a simplified version. Internally uses + * [simplify-js](http://mourner.github.io/simplify-js/) to perform simplification using the Ramer-Douglas-Peucker algorithm. + * + * @name simplify + * @param {GeoJSON} geojson object to be simplified + * @param {Object} [options={}] Optional parameters + * @param {number} [options.tolerance=1] simplification tolerance + * @param {boolean} [options.highQuality=false] whether or not to spend more time to create a higher-quality simplification with a different algorithm + * @param {boolean} [options.mutate=false] allows GeoJSON input to be mutated (significant performance increase if true) + * @returns {GeoJSON} a simplified GeoJSON + * @example + * var geojson = turf.polygon([[ + * [-70.603637, -33.399918], + * [-70.614624, -33.395332], + * [-70.639343, -33.392466], + * [-70.659942, -33.394759], + * [-70.683975, -33.404504], + * [-70.697021, -33.419406], + * [-70.701141, -33.434306], + * [-70.700454, -33.446339], + * [-70.694274, -33.458369], + * [-70.682601, -33.465816], + * [-70.668869, -33.472117], + * [-70.646209, -33.473835], + * [-70.624923, -33.472117], + * [-70.609817, -33.468107], + * [-70.595397, -33.458369], + * [-70.587158, -33.442901], + * [-70.587158, -33.426283], + * [-70.590591, -33.414248], + * [-70.594711, -33.406224], + * [-70.603637, -33.399918] + * ]]); + * var options = {tolerance: 0.01, highQuality: false}; + * var simplified = turf.simplify(geojson, options); + * + * //addToMap + * var addToMap = [geojson, simplified] + */ +function simplify(geojson, options) { + // Optional parameters + options = options || {}; + if (!isObject(options)) throw new Error('options is invalid'); + var tolerance = options.tolerance !== undefined ? options.tolerance : 1; + var highQuality = options.highQuality || false; + var mutate = options.mutate || false; + + if (!geojson) throw new Error('geojson is required'); + if (tolerance && tolerance < 0) throw new Error('invalid tolerance'); + + // Clone geojson to avoid side effects + if (mutate !== true) geojson = clone(geojson); + + geomEach(geojson, function (geom) { + simplifyGeom(geom, tolerance, highQuality); + }); + return geojson; +} + +/** + * Simplifies a feature's coordinates + * + * @private + * @param {Geometry} geometry to be simplified + * @param {number} [tolerance=1] simplification tolerance + * @param {boolean} [highQuality=false] whether or not to spend more time to create a higher-quality simplification with a different algorithm + * @returns {Geometry} output + */ +function simplifyGeom(geometry, tolerance, highQuality) { + var type = geometry.type; + + // "unsimplyfiable" geometry types + if (type === 'Point' || type === 'MultiPoint') return geometry; + + // Remove any extra coordinates + cleanCoords(geometry, true); + + var coordinates = geometry.coordinates; + switch (type) { + case 'LineString': + geometry['coordinates'] = simplifyLine(coordinates, tolerance, highQuality); + break; + case 'MultiLineString': + geometry['coordinates'] = coordinates.map(function (lines) { + return simplifyLine(lines, tolerance, highQuality); + }); + break; + case 'Polygon': + geometry['coordinates'] = simplifyPolygon(coordinates, tolerance, highQuality); + break; + case 'MultiPolygon': + geometry['coordinates'] = coordinates.map(function (rings) { + return simplifyPolygon(rings, tolerance, highQuality); + }); + } + return geometry; +} + + +/** + * Simplifies the coordinates of a LineString with simplify-js + * + * @private + * @param {Array} coordinates to be processed + * @param {number} tolerance simplification tolerance + * @param {boolean} highQuality whether or not to spend more time to create a higher-quality + * @returns {Array>} simplified coords + */ +function simplifyLine(coordinates, tolerance, highQuality) { + return simplifyJS(coordinates.map(function (coord) { + return {x: coord[0], y: coord[1], z: coord[2]}; + }), tolerance, highQuality).map(function (coords) { + return (coords.z) ? [coords.x, coords.y, coords.z] : [coords.x, coords.y]; + }); +} + + +/** + * Simplifies the coordinates of a Polygon with simplify-js + * + * @private + * @param {Array} coordinates to be processed + * @param {number} tolerance simplification tolerance + * @param {boolean} highQuality whether or not to spend more time to create a higher-quality + * @returns {Array>>} simplified coords + */ +function simplifyPolygon(coordinates, tolerance, highQuality) { + return coordinates.map(function (ring) { + var pts = ring.map(function (coord) { + return {x: coord[0], y: coord[1]}; + }); + if (pts.length < 4) { + throw new Error('invalid polygon'); + } + var simpleRing = simplifyJS(pts, tolerance, highQuality).map(function (coords) { + return [coords.x, coords.y]; + }); + //remove 1 percent of tolerance until enough points to make a triangle + while (!checkValidity(simpleRing)) { + tolerance -= tolerance * 0.01; + simpleRing = simplifyJS(pts, tolerance, highQuality).map(function (coords) { + return [coords.x, coords.y]; + }); + } + if ( + (simpleRing[simpleRing.length - 1][0] !== simpleRing[0][0]) || + (simpleRing[simpleRing.length - 1][1] !== simpleRing[0][1])) { + simpleRing.push(simpleRing[0]); + } + return simpleRing; + }); +} + + +/** + * Returns true if ring has at least 3 coordinates and its first coordinate is the same as its last + * + * @private + * @param {Array} ring coordinates to be checked + * @returns {boolean} true if valid + */ +function checkValidity(ring) { + if (ring.length < 3) return false; + //if the last point is the same as the first, it's not a triangle + return !(ring.length === 3 && ((ring[2][0] === ring[0][0]) && (ring[2][1] === ring[0][1]))); +} + +export default simplify; diff --git a/lib/turf-simplify/lib/simplify.js b/lib/turf-simplify/lib/simplify.js new file mode 100644 index 0000000..3d3a4fc --- /dev/null +++ b/lib/turf-simplify/lib/simplify.js @@ -0,0 +1,111 @@ +/* + (c) 2013, Vladimir Agafonkin + Simplify.js, a high-performance JS polyline simplification library + mourner.github.io/simplify-js +*/ + +// to suit your point format, run search/replace for '.x' and '.y'; +// for 3D version, see 3d branch (configurability would draw significant performance overhead) + +// square distance between 2 points +function getSqDist(p1, p2) { + + var dx = p1.x - p2.x, + dy = p1.y - p2.y; + + return dx * dx + dy * dy; +} + +// square distance from a point to a segment +function getSqSegDist(p, p1, p2) { + + var x = p1.x, + y = p1.y, + dx = p2.x - x, + dy = p2.y - y; + + if (dx !== 0 || dy !== 0) { + + var t = ((p.x - x) * dx + (p.y - y) * dy) / (dx * dx + dy * dy); + + if (t > 1) { + x = p2.x; + y = p2.y; + + } else if (t > 0) { + x += dx * t; + y += dy * t; + } + } + + dx = p.x - x; + dy = p.y - y; + + return dx * dx + dy * dy; +} +// rest of the code doesn't care about point format + +// basic distance-based simplification +function simplifyRadialDist(points, sqTolerance) { + + var prevPoint = points[0], + newPoints = [prevPoint], + point; + + for (var i = 1, len = points.length; i < len; i++) { + point = points[i]; + + if (getSqDist(point, prevPoint) > sqTolerance) { + newPoints.push(point); + prevPoint = point; + } + } + + if (prevPoint !== point) newPoints.push(point); + + return newPoints; +} + +function simplifyDPStep(points, first, last, sqTolerance, simplified) { + var maxSqDist = sqTolerance, + index; + + for (var i = first + 1; i < last; i++) { + var sqDist = getSqSegDist(points[i], points[first], points[last]); + + if (sqDist > maxSqDist) { + index = i; + maxSqDist = sqDist; + } + } + + if (maxSqDist > sqTolerance) { + if (index - first > 1) simplifyDPStep(points, first, index, sqTolerance, simplified); + simplified.push(points[index]); + if (last - index > 1) simplifyDPStep(points, index, last, sqTolerance, simplified); + } +} + +// simplification using Ramer-Douglas-Peucker algorithm +function simplifyDouglasPeucker(points, sqTolerance) { + var last = points.length - 1; + + var simplified = [points[0]]; + simplifyDPStep(points, 0, last, sqTolerance, simplified); + simplified.push(points[last]); + + return simplified; +} + +// both algorithms combined for awesome performance +export default function simplify(points, tolerance, highestQuality) { + + if (points.length <= 2) return points; + + var sqTolerance = tolerance !== undefined ? tolerance * tolerance : 1; + + points = highestQuality ? points : simplifyRadialDist(points, sqTolerance); + points = simplifyDouglasPeucker(points, sqTolerance); + + return points; +} diff --git a/lib/turf-simplify/package.json b/lib/turf-simplify/package.json new file mode 100644 index 0000000..dc71f58 --- /dev/null +++ b/lib/turf-simplify/package.json @@ -0,0 +1,63 @@ +{ + "name": "@turf/simplify", + "version": "5.1.5", + "description": "turf simplify module", + "main": "main.js", + "module": "main.es.js", + "types": "index.d.ts", + "files": [ + "index.js", + "index.d.ts", + "main.js", + "lib", + "main.es.js" + ], + "scripts": { + "pretest": "rollup -c ../../rollup.config.js", + "test": "node -r @std/esm test.js", + "posttest": "node -r @std/esm ../../scripts/validate-es5-dependencies.js", + "bench": "node -r @std/esm bench.js", + "docs": "node ../../scripts/generate-readmes" + }, + "repository": { + "type": "git", + "url": "git://github.com/Turfjs/turf.git" + }, + "keywords": [ + "turf", + "gis", + "simplify", + "Ramer-Douglas-Peucker", + "algorithm", + "peucker" + ], + "author": "Turf Authors", + "contributors": [ + "Vladimir Agafonkin <@mourner>", + "Stefano Borghi <@stebogit>" + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/Turfjs/turf/issues" + }, + "homepage": "https://github.com/Turfjs/turf", + "devDependencies": { + "@std/esm": "*", + "@turf/truncate": "6.x", + "benchmark": "*", + "load-json-file": "*", + "rollup": "*", + "tape": "*", + "write-json-file": "*" + }, + "dependencies": { + "@turf/clean-coords": "^5.1.5", + "@turf/clone": "6.x", + "@turf/helpers": "6.x", + "@turf/meta": "6.x" + }, + "@std/esm": { + "esm": "js", + "cjs": true + } +} diff --git a/lib/turf-simplify/test.js b/lib/turf-simplify/test.js new file mode 100644 index 0000000..070098c --- /dev/null +++ b/lib/turf-simplify/test.js @@ -0,0 +1,86 @@ +import fs from 'fs'; +import test from 'tape'; +import path from 'path'; +import load from 'load-json-file'; +import write from 'write-json-file'; +import truncate from '@turf/truncate'; +import { polygon, multiPolygon } from '@turf/helpers'; +import simplify from '.'; + +const directories = { + in: path.join(__dirname, 'test', 'in') + path.sep, + out: path.join(__dirname, 'test', 'out') + path.sep +}; + +let fixtures = fs.readdirSync(directories.in).map(filename => { + return { + filename, + name: path.parse(filename).name, + geojson: load.sync(directories.in + filename) + }; +}); +// fixtures = fixtures.filter(({name}) => name.includes('#555')); + +test('simplify', t => { + for (const {filename, name, geojson} of fixtures) { + let {tolerance, highQuality} = geojson.properties || {}; + tolerance = tolerance || 0.01; + highQuality = highQuality || false; + + const simplified = truncate(simplify(geojson, { + tolerance: tolerance, + highQuality: highQuality + })); + + if (process.env.REGEN) write.sync(directories.out + filename, simplified); + t.deepEqual(simplified, load.sync(directories.out + filename), name); + } + + t.end(); +}); + + +test('simplify -- throw', t => { + const poly = polygon([[[0, 0], [2, 2], [2, 0], [0, 0]]]); + t.throws(() => simplify(null), /geojson is required/, 'missing geojson'); + t.throws(() => simplify(poly, {tolerance: -1}), /invalid tolerance/, 'negative tolerance'); + t.end(); +}); + + +test('simplify -- removes ID & BBox from properties', t => { + const properties = {foo: 'bar'}; + const id = 12345; + const bbox = [0, 0, 2, 2]; + const poly = polygon([[[0, 0], [2, 2], [2, 0], [0, 0]]], properties, {bbox, id}); + const simple = simplify(poly, {tolerance: 0.1}); + + t.equal(simple.id, id); + t.deepEqual(simple.bbox, bbox); + t.deepEqual(simple.properties, properties); + t.end(); +}); + + +test('simplify -- issue #555', t => { + // polygons from issue #555 + const poly1 = polygon([[[-75.693254, 45.431144], [-75.693335, 45.431109], [-75.693335, 45.431109], [-75.693254, 45.431144]]]); + const poly2 = polygon([[[-75.627178, 45.438106], [-75.627179, 45.438106], [-75.62718, 45.438106], [-75.627178, 45.438106]]]); + const poly3 = polygon([[[-75.684722, 45.410083], [-75.684641, 45.409989], [-75.684641, 45.409989], [-75.684722, 45.410083], [-75.684722, 45.410083]]]); + const poly4 = polygon([[[-75.885634, 45.272762], [-75.885482, 45.272641], [-75.885554, 45.272596], [-75.885534, 45.272581], [-75.885581, 45.272551], [-75.885703, 45.272647], [-75.885706, 45.272645], [-75.885709, 45.272647], [-75.885767, 45.272693], [-75.885759, 45.272698], [-75.885716, 45.272728], [-75.885716, 45.272728], [-75.885712, 45.272731], [-75.885712, 45.272731], [-75.885708, 45.272734], [-75.885684, 45.272749], [-75.885671, 45.272739], [-75.885634, 45.272762]], [[-75.885708, 45.27273], [-75.885708, 45.272729], [-75.885708, 45.272729], [-75.885708, 45.27273]]]); + const options = {tolerance: 0.000001, highQuality: true}; + + t.throws(() => simplify(poly1, options), /invalid polygon/); + t.throws(() => simplify(poly2, options), /invalid polygon/); + t.throws(() => simplify(poly3, options), /invalid polygon/); + t.throws(() => simplify(poly4, options), /invalid polygon/); + t.end(); +}); + +test('simplify -- issue #918', t => { + // simplify hangs on this input #918 + t.throws(() => simplify(multiPolygon([[[[0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90], [0, 90]]]])), /invalid polygon/, 'invalid polygon'); + t.throws(() => simplify(multiPolygon([[[[0, 1], [0, 2], [0, 3], [0, 2.5], [0, 1]]]])), /invalid polygon/, 'invalid polygon'); + t.throws(() => simplify(multiPolygon([[[[0, 1], [0, 1], [1, 2], [0, 1]]]])), /invalid polygon/, 'invalid polygon'); + t.end(); +}); diff --git a/lib/turf-simplify/test/in/argentina.geojson b/lib/turf-simplify/test/in/argentina.geojson new file mode 100644 index 0000000..5f5f825 --- /dev/null +++ b/lib/turf-simplify/test/in/argentina.geojson @@ -0,0 +1,455 @@ +{ + "type": "Feature", + "id": "ARG", + "properties": { + "tolerance": 0.1, + "name": "Argentina" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -64.964892, + -22.075862 + ], + [ + -64.377021, + -22.798091 + ], + [ + -63.986838, + -21.993644 + ], + [ + -62.846468, + -22.034985 + ], + [ + -62.685057, + -22.249029 + ], + [ + -60.846565, + -23.880713 + ], + [ + -60.028966, + -24.032796 + ], + [ + -58.807128, + -24.771459 + ], + [ + -57.777217, + -25.16234 + ], + [ + -57.63366, + -25.603657 + ], + [ + -58.618174, + -27.123719 + ], + [ + -57.60976, + -27.395899 + ], + [ + -56.486702, + -27.548499 + ], + [ + -55.695846, + -27.387837 + ], + [ + -54.788795, + -26.621786 + ], + [ + -54.625291, + -25.739255 + ], + [ + -54.13005, + -25.547639 + ], + [ + -53.628349, + -26.124865 + ], + [ + -53.648735, + -26.923473 + ], + [ + -54.490725, + -27.474757 + ], + [ + -55.162286, + -27.881915 + ], + [ + -56.2909, + -28.852761 + ], + [ + -57.625133, + -30.216295 + ], + [ + -57.874937, + -31.016556 + ], + [ + -58.14244, + -32.044504 + ], + [ + -58.132648, + -33.040567 + ], + [ + -58.349611, + -33.263189 + ], + [ + -58.427074, + -33.909454 + ], + [ + -58.495442, + -34.43149 + ], + [ + -57.22583, + -35.288027 + ], + [ + -57.362359, + -35.97739 + ], + [ + -56.737487, + -36.413126 + ], + [ + -56.788285, + -36.901572 + ], + [ + -57.749157, + -38.183871 + ], + [ + -59.231857, + -38.72022 + ], + [ + -61.237445, + -38.928425 + ], + [ + -62.335957, + -38.827707 + ], + [ + -62.125763, + -39.424105 + ], + [ + -62.330531, + -40.172586 + ], + [ + -62.145994, + -40.676897 + ], + [ + -62.745803, + -41.028761 + ], + [ + -63.770495, + -41.166789 + ], + [ + -64.73209, + -40.802677 + ], + [ + -65.118035, + -41.064315 + ], + [ + -64.978561, + -42.058001 + ], + [ + -64.303408, + -42.359016 + ], + [ + -63.755948, + -42.043687 + ], + [ + -63.458059, + -42.563138 + ], + [ + -64.378804, + -42.873558 + ], + [ + -65.181804, + -43.495381 + ], + [ + -65.328823, + -44.501366 + ], + [ + -65.565269, + -45.036786 + ], + [ + -66.509966, + -45.039628 + ], + [ + -67.293794, + -45.551896 + ], + [ + -67.580546, + -46.301773 + ], + [ + -66.597066, + -47.033925 + ], + [ + -65.641027, + -47.236135 + ], + [ + -65.985088, + -48.133289 + ], + [ + -67.166179, + -48.697337 + ], + [ + -67.816088, + -49.869669 + ], + [ + -68.728745, + -50.264218 + ], + [ + -69.138539, + -50.73251 + ], + [ + -68.815561, + -51.771104 + ], + [ + -68.149995, + -52.349983 + ], + [ + -68.571545, + -52.299444 + ], + [ + -69.498362, + -52.142761 + ], + [ + -71.914804, + -52.009022 + ], + [ + -72.329404, + -51.425956 + ], + [ + -72.309974, + -50.67701 + ], + [ + -72.975747, + -50.74145 + ], + [ + -73.328051, + -50.378785 + ], + [ + -73.415436, + -49.318436 + ], + [ + -72.648247, + -48.878618 + ], + [ + -72.331161, + -48.244238 + ], + [ + -72.447355, + -47.738533 + ], + [ + -71.917258, + -46.884838 + ], + [ + -71.552009, + -45.560733 + ], + [ + -71.659316, + -44.973689 + ], + [ + -71.222779, + -44.784243 + ], + [ + -71.329801, + -44.407522 + ], + [ + -71.793623, + -44.207172 + ], + [ + -71.464056, + -43.787611 + ], + [ + -71.915424, + -43.408565 + ], + [ + -72.148898, + -42.254888 + ], + [ + -71.746804, + -42.051386 + ], + [ + -71.915734, + -40.832339 + ], + [ + -71.680761, + -39.808164 + ], + [ + -71.413517, + -38.916022 + ], + [ + -70.814664, + -38.552995 + ], + [ + -71.118625, + -37.576827 + ], + [ + -71.121881, + -36.658124 + ], + [ + -70.364769, + -36.005089 + ], + [ + -70.388049, + -35.169688 + ], + [ + -69.817309, + -34.193571 + ], + [ + -69.814777, + -33.273886 + ], + [ + -70.074399, + -33.09121 + ], + [ + -70.535069, + -31.36501 + ], + [ + -69.919008, + -30.336339 + ], + [ + -70.01355, + -29.367923 + ], + [ + -69.65613, + -28.459141 + ], + [ + -69.001235, + -27.521214 + ], + [ + -68.295542, + -26.89934 + ], + [ + -68.5948, + -26.506909 + ], + [ + -68.386001, + -26.185016 + ], + [ + -68.417653, + -24.518555 + ], + [ + -67.328443, + -24.025303 + ], + [ + -66.985234, + -22.986349 + ], + [ + -67.106674, + -22.735925 + ], + [ + -66.273339, + -21.83231 + ], + [ + -64.964892, + -22.075862 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/in/featurecollection.geojson b/lib/turf-simplify/test/in/featurecollection.geojson new file mode 100644 index 0000000..5baefcf --- /dev/null +++ b/lib/turf-simplify/test/in/featurecollection.geojson @@ -0,0 +1,388 @@ +{ + "type": "FeatureCollection", + "properties": { + "tolerance": 0.01 + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": 1 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.977542877197266, + -26.17500493262446 + ], + [ + 27.975482940673828, + -26.17870225771557 + ], + [ + 27.969818115234375, + -26.177931991326645 + ], + [ + 27.967071533203125, + -26.177623883345735 + ], + [ + 27.966899871826172, + -26.1810130263384 + ], + [ + 27.967758178710938, + -26.1853263385099 + ], + [ + 27.97290802001953, + -26.1853263385099 + ], + [ + 27.97496795654297, + -26.18270756087535 + ], + [ + 27.97840118408203, + -26.1810130263384 + ], + [ + 27.98011779785156, + -26.183323749143113 + ], + [ + 27.98011779785156, + -26.18655868408986 + ], + [ + 27.978744506835938, + -26.18933141398614 + ], + [ + 27.97496795654297, + -26.19025564262006 + ], + [ + 27.97119140625, + -26.19040968001282 + ], + [ + 27.969303131103516, + -26.1899475672235 + ], + [ + 27.96741485595703, + -26.189639491012183 + ], + [ + 27.9656982421875, + -26.187945057286793 + ], + [ + 27.965354919433594, + -26.18563442612686 + ], + [ + 27.96432495117187, + -26.183015655416536 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 2 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.972049713134762, + -26.199035448897074 + ], + [ + 27.9741096496582, + -26.196108920345292 + ], + [ + 27.977371215820312, + -26.197495179879635 + ], + [ + 27.978572845458984, + -26.20042167359348 + ], + [ + 27.980976104736328, + -26.200729721284862 + ], + [ + 27.982349395751953, + -26.197803235312957 + ], + [ + 27.982177734375, + -26.194414580727656 + ], + [ + 27.982177734375, + -26.19256618212382 + ], + [ + 27.98406600952148, + -26.192258112838022 + ], + [ + 27.985267639160156, + -26.191950042737417 + ], + [ + 27.986125946044922, + -26.19426054863105 + ], + [ + 27.986984252929688, + -26.196416979445644 + ], + [ + 27.987327575683594, + -26.198881422912123 + ], + [ + 27.98715591430664, + -26.201345814222698 + ], + [ + 27.985095977783203, + -26.20381015337393 + ], + [ + 27.983036041259766, + -26.20550435628209 + ], + [ + 27.979946136474606, + -26.20550435628209 + ], + [ + 27.97719955444336, + -26.20488828535003 + ], + [ + 27.97445297241211, + -26.203656133705152 + ], + [ + 27.972564697265625, + -26.201961903900578 + ], + [ + 27.972049713134762, + -26.199035448897074 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 3 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946643829345703, + -26.170845301716803 + ], + [ + 27.94269561767578, + -26.183631842055114 + ], + [ + 27.935657501220703, + -26.183323749143113 + ], + [ + 27.92741775512695, + -26.17685360983018 + ], + [ + 27.926902770996094, + -26.171153427614488 + ], + [ + 27.928619384765625, + -26.165298896316028 + ], + [ + 27.936859130859375, + -26.161292995018652 + ], + [ + 27.94509887695312, + -26.158981835530525 + ], + [ + 27.950420379638672, + -26.161601146157146 + ], + [ + 27.951793670654297, + -26.166223315536712 + ], + [ + 27.954025268554688, + -26.173464345889972 + ], + [ + 27.954025268554688, + -26.179626570662702 + ], + [ + 27.951278686523438, + -26.187945057286793 + ], + [ + 27.944583892822266, + -26.19395248382672 + ], + [ + 27.936172485351562, + -26.194876675795218 + ], + [ + 27.930850982666016, + -26.19379845111899 + ], + [ + 27.925701141357422, + -26.190563717201886 + ], + [ + 27.92278289794922, + -26.18655868408986 + ], + [ + 27.92072296142578, + -26.180858976522302 + ], + [ + 27.917118072509766, + -26.174080583026957 + ], + [ + 27.916603088378906, + -26.16683959094609 + ], + [ + 27.917118072509766, + -26.162987816205614 + ], + [ + 27.920207977294922, + -26.162987816205614 + ], + [ + 27.920894622802734, + -26.166069246175482 + ], + [ + 27.9217529296875, + -26.17146155269785 + ], + [ + 27.923297882080078, + -26.177469829049862 + ], + [ + 27.92673110961914, + -26.184248025435295 + ], + [ + 27.930335998535156, + -26.18856121785662 + ], + [ + 27.936687469482422, + -26.18871525748988 + ], + [ + 27.942352294921875, + -26.187945057286793 + ], + [ + 27.94647216796875, + -26.184248025435295 + ], + [ + 27.946815490722653, + -26.178548204845022 + ], + [ + 27.946643829345703, + -26.170845301716803 + ] + ], + [ + [ + 27.936859130859375, + -26.16591517661071 + ], + [ + 27.934799194335938, + -26.16945872510008 + ], + [ + 27.93497085571289, + -26.173926524048102 + ], + [ + 27.93874740600586, + -26.175621161617432 + ], + [ + 27.94149398803711, + -26.17007498340995 + ], + [ + 27.94321060180664, + -26.166223315536712 + ], + [ + 27.939090728759762, + -26.164528541367826 + ], + [ + 27.937545776367188, + -26.16406632595636 + ], + [ + 27.936859130859375, + -26.16591517661071 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 27.95642852783203, + -26.152510345365126 + ] + } + } + ] +} diff --git a/lib/turf-simplify/test/in/fiji-hiQ.geojson b/lib/turf-simplify/test/in/fiji-hiQ.geojson new file mode 100644 index 0000000..2133732 --- /dev/null +++ b/lib/turf-simplify/test/in/fiji-hiQ.geojson @@ -0,0 +1,258 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 0.005, + "highQuality": true + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 179.97528076171875, + -16.514770282237 + ], + [ + 179.97665405273438, + -16.519707611417825 + ], + [ + 179.97390747070312, + -16.523986527973733 + ], + [ + 179.98043060302734, + -16.539126548282127 + ], + [ + 179.985237121582, + -16.536822708755626 + ], + [ + 179.98695373535156, + -16.531227555400562 + ], + [ + 179.99073028564453, + -16.531556686558297 + ], + [ + 180.00205993652344, + -16.525632239869275 + ], + [ + 180.00686645507812, + -16.525961380565427 + ], + [ + 180.01029968261716, + -16.523328239288848 + ], + [ + 180.01304626464844, + -16.524644814414863 + ], + [ + 180.01235961914062, + -16.526619660274722 + ], + [ + 180.00995635986328, + -16.52694879928784 + ], + [ + 180.00823974609372, + -16.532873205577378 + ], + [ + 180.00755310058594, + -16.534847967269407 + ], + [ + 180.01819610595703, + -16.539126548282127 + ], + [ + 180.02334594726562, + -16.537810071920884 + ], + [ + 180.02437591552734, + -16.534189715617043 + ], + [ + 180.03707885742188, + -16.534189715617043 + ], + [ + 180.04188537597656, + -16.526619660274722 + ], + [ + 180.0487518310547, + -16.52826534972986 + ], + [ + 180.0497817993164, + -16.525632239869275 + ], + [ + 180.054931640625, + -16.52727793773992 + ], + [ + 180.05939483642578, + -16.52497395679397 + ], + [ + 180.06145477294922, + -16.525632239869275 + ], + [ + 180.06488800048825, + -16.515757758166256 + ], + [ + 180.0666046142578, + -16.513124477808333 + ], + [ + 180.0655746459961, + -16.5108203280625 + ], + [ + 180.06454467773438, + -16.507528637922594 + ], + [ + 180.05596160888672, + -16.490410945973114 + ], + [ + 180.0542449951172, + -16.485802077854263 + ], + [ + 180.0494384765625, + -16.484814448981634 + ], + [ + 180.04669189453125, + -16.482839176122972 + ], + [ + 180.04634857177734, + -16.479547009916406 + ], + [ + 180.05390167236328, + -16.47460865568325 + ], + [ + 180.05596160888672, + -16.47526711018803 + ], + [ + 180.0597381591797, + -16.470987115907786 + ], + [ + 180.0600814819336, + -16.467365508451035 + ], + [ + 180.06282806396482, + -16.46110984528612 + ], + [ + 180.07347106933594, + -16.455183241385555 + ], + [ + 180.07930755615232, + -16.45057353538345 + ], + [ + 180.08686065673828, + -16.44761009512282 + ], + [ + 180.08411407470703, + -16.441353794870704 + ], + [ + 180.06832122802734, + -16.437402343465862 + ], + [ + 180.05561828613278, + -16.439707366557357 + ], + [ + 180.04806518554688, + -16.448597913571174 + ], + [ + 180.0398254394531, + -16.45057353538345 + ], + [ + 180.02609252929688, + -16.46473156961583 + ], + [ + 180.02094268798828, + -16.4624268437789 + ], + [ + 180.01441955566406, + -16.464073079315213 + ], + [ + 180.00961303710935, + -16.468682464447188 + ], + [ + 180.00446319580078, + -16.476584012483762 + ], + [ + 179.99725341796875, + -16.48250996202084 + ], + [ + 179.99553680419922, + -16.487118908513903 + ], + [ + 179.99176025390625, + -16.48975254296043 + ], + [ + 179.99038696289062, + -16.49271533887906 + ], + [ + 179.9883270263672, + -16.49403212250543 + ], + [ + 179.98661041259763, + -16.50226181712924 + ], + [ + 179.98111724853516, + -16.50489524545779 + ], + [ + 179.97940063476562, + -16.50719946582597 + ], + [ + 179.97528076171875, + -16.514770282237 + ] + ] + ] + } +} \ No newline at end of file diff --git a/lib/turf-simplify/test/in/geometrycollection.geojson b/lib/turf-simplify/test/in/geometrycollection.geojson new file mode 100644 index 0000000..05a130a --- /dev/null +++ b/lib/turf-simplify/test/in/geometrycollection.geojson @@ -0,0 +1,364 @@ +{ + "type": "GeometryCollection", + "properties": { + "tolerance": 0.01 + }, + "geometries": [ + { + "type": "LineString", + "coordinates": [ + [ + 27.977542877197266, + -26.17500493262446 + ], + [ + 27.975482940673828, + -26.17870225771557 + ], + [ + 27.969818115234375, + -26.177931991326645 + ], + [ + 27.967071533203125, + -26.177623883345735 + ], + [ + 27.966899871826172, + -26.1810130263384 + ], + [ + 27.967758178710938, + -26.1853263385099 + ], + [ + 27.97290802001953, + -26.1853263385099 + ], + [ + 27.97496795654297, + -26.18270756087535 + ], + [ + 27.97840118408203, + -26.1810130263384 + ], + [ + 27.98011779785156, + -26.183323749143113 + ], + [ + 27.98011779785156, + -26.18655868408986 + ], + [ + 27.978744506835938, + -26.18933141398614 + ], + [ + 27.97496795654297, + -26.19025564262006 + ], + [ + 27.97119140625, + -26.19040968001282 + ], + [ + 27.969303131103516, + -26.1899475672235 + ], + [ + 27.96741485595703, + -26.189639491012183 + ], + [ + 27.9656982421875, + -26.187945057286793 + ], + [ + 27.965354919433594, + -26.18563442612686 + ], + [ + 27.96432495117187, + -26.183015655416536 + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.972049713134762, + -26.199035448897074 + ], + [ + 27.9741096496582, + -26.196108920345292 + ], + [ + 27.977371215820312, + -26.197495179879635 + ], + [ + 27.978572845458984, + -26.20042167359348 + ], + [ + 27.980976104736328, + -26.200729721284862 + ], + [ + 27.982349395751953, + -26.197803235312957 + ], + [ + 27.982177734375, + -26.194414580727656 + ], + [ + 27.982177734375, + -26.19256618212382 + ], + [ + 27.98406600952148, + -26.192258112838022 + ], + [ + 27.985267639160156, + -26.191950042737417 + ], + [ + 27.986125946044922, + -26.19426054863105 + ], + [ + 27.986984252929688, + -26.196416979445644 + ], + [ + 27.987327575683594, + -26.198881422912123 + ], + [ + 27.98715591430664, + -26.201345814222698 + ], + [ + 27.985095977783203, + -26.20381015337393 + ], + [ + 27.983036041259766, + -26.20550435628209 + ], + [ + 27.979946136474606, + -26.20550435628209 + ], + [ + 27.97719955444336, + -26.20488828535003 + ], + [ + 27.97445297241211, + -26.203656133705152 + ], + [ + 27.972564697265625, + -26.201961903900578 + ], + [ + 27.972049713134762, + -26.199035448897074 + ] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946643829345703, + -26.170845301716803 + ], + [ + 27.94269561767578, + -26.183631842055114 + ], + [ + 27.935657501220703, + -26.183323749143113 + ], + [ + 27.92741775512695, + -26.17685360983018 + ], + [ + 27.926902770996094, + -26.171153427614488 + ], + [ + 27.928619384765625, + -26.165298896316028 + ], + [ + 27.936859130859375, + -26.161292995018652 + ], + [ + 27.94509887695312, + -26.158981835530525 + ], + [ + 27.950420379638672, + -26.161601146157146 + ], + [ + 27.951793670654297, + -26.166223315536712 + ], + [ + 27.954025268554688, + -26.173464345889972 + ], + [ + 27.954025268554688, + -26.179626570662702 + ], + [ + 27.951278686523438, + -26.187945057286793 + ], + [ + 27.944583892822266, + -26.19395248382672 + ], + [ + 27.936172485351562, + -26.194876675795218 + ], + [ + 27.930850982666016, + -26.19379845111899 + ], + [ + 27.925701141357422, + -26.190563717201886 + ], + [ + 27.92278289794922, + -26.18655868408986 + ], + [ + 27.92072296142578, + -26.180858976522302 + ], + [ + 27.917118072509766, + -26.174080583026957 + ], + [ + 27.916603088378906, + -26.16683959094609 + ], + [ + 27.917118072509766, + -26.162987816205614 + ], + [ + 27.920207977294922, + -26.162987816205614 + ], + [ + 27.920894622802734, + -26.166069246175482 + ], + [ + 27.9217529296875, + -26.17146155269785 + ], + [ + 27.923297882080078, + -26.177469829049862 + ], + [ + 27.92673110961914, + -26.184248025435295 + ], + [ + 27.930335998535156, + -26.18856121785662 + ], + [ + 27.936687469482422, + -26.18871525748988 + ], + [ + 27.942352294921875, + -26.187945057286793 + ], + [ + 27.94647216796875, + -26.184248025435295 + ], + [ + 27.946815490722653, + -26.178548204845022 + ], + [ + 27.946643829345703, + -26.170845301716803 + ] + ], + [ + [ + 27.936859130859375, + -26.16591517661071 + ], + [ + 27.934799194335938, + -26.16945872510008 + ], + [ + 27.93497085571289, + -26.173926524048102 + ], + [ + 27.93874740600586, + -26.175621161617432 + ], + [ + 27.94149398803711, + -26.17007498340995 + ], + [ + 27.94321060180664, + -26.166223315536712 + ], + [ + 27.939090728759762, + -26.164528541367826 + ], + [ + 27.937545776367188, + -26.16406632595636 + ], + [ + 27.936859130859375, + -26.16591517661071 + ] + ] + ] + }, + { + "type": "Point", + "coordinates": [ + 27.95642852783203, + -26.152510345365126 + ] + } + ] +} diff --git a/lib/turf-simplify/test/in/issue-#1144.geojson b/lib/turf-simplify/test/in/issue-#1144.geojson new file mode 100644 index 0000000..17baeb1 --- /dev/null +++ b/lib/turf-simplify/test/in/issue-#1144.geojson @@ -0,0 +1,91 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.603637, + -33.399918 + ], + [ + -70.614624, + -33.395332 + ], + [ + -70.639343, + -33.392466 + ], + [ + -70.659942, + -33.394759 + ], + [ + -70.683975, + -33.404504 + ], + [ + -70.697021, + -33.419406 + ], + [ + -70.701141, + -33.434306 + ], + [ + -70.700454, + -33.446339 + ], + [ + -70.694274, + -33.458369 + ], + [ + -70.682601, + -33.465816 + ], + [ + -70.668869, + -33.472117 + ], + [ + -70.646209, + -33.473835 + ], + [ + -70.624923, + -33.472117 + ], + [ + -70.609817, + -33.468107 + ], + [ + -70.595397, + -33.458369 + ], + [ + -70.587158, + -33.442901 + ], + [ + -70.587158, + -33.426283 + ], + [ + -70.590591, + -33.414248 + ], + [ + -70.594711, + -33.406224 + ], + [ + -70.603637, + -33.399918 + ] + ] + ] + } +} \ No newline at end of file diff --git a/lib/turf-simplify/test/in/linestring.geojson b/lib/turf-simplify/test/in/linestring.geojson new file mode 100644 index 0000000..6701058 --- /dev/null +++ b/lib/turf-simplify/test/in/linestring.geojson @@ -0,0 +1,329 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -80.51399230957031, + 28.069556808283608 + ], + [ + -80.51193237304688, + 28.057438520876673 + ], + [ + -80.49819946289062, + 28.05622661698537 + ], + [ + -80.5023193359375, + 28.04471284867091 + ], + [ + -80.48583984375, + 28.042288740362853 + ], + [ + -80.50575256347656, + 28.028349057505775 + ], + [ + -80.50163269042969, + 28.02168161433489 + ], + [ + -80.49476623535156, + 28.021075462659883 + ], + [ + -80.48652648925781, + 28.021075462659883 + ], + [ + -80.47691345214844, + 28.021075462659883 + ], + [ + -80.46936035156249, + 28.015619944017807 + ], + [ + -80.47760009765624, + 28.007133032319448 + ], + [ + -80.49201965332031, + 27.998039170620494 + ], + [ + -80.46730041503906, + 27.962262536875905 + ], + [ + -80.46524047851562, + 27.91980029694533 + ], + [ + -80.40550231933594, + 27.930114089618602 + ], + [ + -80.39657592773438, + 27.980455528671527 + ], + [ + -80.41305541992188, + 27.982274659104082 + ], + [ + -80.42953491210938, + 27.990763528690582 + ], + [ + -80.4144287109375, + 28.00955793247135 + ], + [ + -80.3594970703125, + 27.972572275562527 + ], + [ + -80.36224365234375, + 27.948919060105453 + ], + [ + -80.38215637207031, + 27.913732900444284 + ], + [ + -80.41786193847656, + 27.881570017022806 + ], + [ + -80.40550231933594, + 27.860932192608534 + ], + [ + -80.39382934570312, + 27.85425440786446 + ], + [ + -80.37803649902344, + 27.86336037597851 + ], + [ + -80.38215637207031, + 27.880963078302393 + ], + [ + -80.36842346191405, + 27.888246118437756 + ], + [ + -80.35743713378906, + 27.882176952341734 + ], + [ + -80.35469055175781, + 27.86882358965466 + ], + [ + -80.3594970703125, + 27.8421119273228 + ], + [ + -80.37940979003906, + 27.83300417483936 + ], + [ + -80.39932250976561, + 27.82511017099003 + ], + [ + -80.40069580078125, + 27.79352841586229 + ], + [ + -80.36155700683594, + 27.786846483587688 + ], + [ + -80.35537719726562, + 27.794743268514615 + ], + [ + -80.36705017089844, + 27.800209937418252 + ], + [ + -80.36889553070068, + 27.801918215058347 + ], + [ + -80.3690242767334, + 27.803930152059845 + ], + [ + -80.36713600158691, + 27.805942051806845 + ], + [ + -80.36584854125977, + 27.805524490772143 + ], + [ + -80.36563396453857, + 27.80465140342285 + ], + [ + -80.36619186401367, + 27.803095012921272 + ], + [ + -80.36623477935791, + 27.801842292177923 + ], + [ + -80.36524772644043, + 27.80127286888392 + ], + [ + -80.36224365234375, + 27.801158983867033 + ], + [ + -80.36065578460693, + 27.802639479776524 + ], + [ + -80.36138534545898, + 27.803740348273823 + ], + [ + -80.36220073699951, + 27.804803245204976 + ], + [ + -80.36190032958984, + 27.806625330038287 + ], + [ + -80.3609561920166, + 27.80742248254359 + ], + [ + -80.35932540893555, + 27.806853088493792 + ], + [ + -80.35889625549315, + 27.806321651354835 + ], + [ + -80.35902500152588, + 27.805448570411585 + ], + [ + -80.35863876342773, + 27.804461600896783 + ], + [ + -80.35739421844482, + 27.804461600896783 + ], + [ + -80.35700798034668, + 27.805334689771293 + ], + [ + -80.35696506500244, + 27.80673920932572 + ], + [ + -80.35726547241211, + 27.80772615814989 + ], + [ + -80.35808086395264, + 27.808295547623707 + ], + [ + -80.3585958480835, + 27.80928248230861 + ], + [ + -80.35653591156006, + 27.80943431761813 + ], + [ + -80.35572052001953, + 27.808637179875486 + ], + [ + -80.3555917739868, + 27.80772615814989 + ], + [ + -80.3555917739868, + 27.806055931810487 + ], + [ + -80.35572052001953, + 27.803778309057556 + ], + [ + -80.35537719726562, + 27.801804330717825 + ], + [ + -80.3554630279541, + 27.799564581098746 + ], + [ + -80.35670757293701, + 27.799564581098746 + ], + [ + -80.35499095916748, + 27.796831264786892 + ], + [ + -80.34610748291016, + 27.79478123244122 + ], + [ + -80.34404754638672, + 27.802070060660014 + ], + [ + -80.34748077392578, + 27.804955086774896 + ], + [ + -80.3433609008789, + 27.805790211616266 + ], + [ + -80.34353256225586, + 27.8101555324401 + ], + [ + -80.33499240875244, + 27.810079615315917 + ], + [ + -80.33383369445801, + 27.805676331334084 + ], + [ + -80.33022880554199, + 27.801652484744796 + ], + [ + -80.32872676849365, + 27.80848534345178 + ] + ] + } +} \ No newline at end of file diff --git a/lib/turf-simplify/test/in/multilinestring.geojson b/lib/turf-simplify/test/in/multilinestring.geojson new file mode 100644 index 0000000..8ca1fae --- /dev/null +++ b/lib/turf-simplify/test/in/multilinestring.geojson @@ -0,0 +1,413 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [ + -80.51399230957031, + 28.069556808283608 + ], + [ + -80.51193237304688, + 28.057438520876673 + ], + [ + -80.49819946289062, + 28.05622661698537 + ], + [ + -80.5023193359375, + 28.04471284867091 + ], + [ + -80.48583984375, + 28.042288740362853 + ], + [ + -80.50575256347656, + 28.028349057505775 + ], + [ + -80.50163269042969, + 28.02168161433489 + ], + [ + -80.49476623535156, + 28.021075462659883 + ], + [ + -80.48652648925781, + 28.021075462659883 + ], + [ + -80.47691345214844, + 28.021075462659883 + ], + [ + -80.46936035156249, + 28.015619944017807 + ], + [ + -80.47760009765624, + 28.007133032319448 + ], + [ + -80.49201965332031, + 27.998039170620494 + ], + [ + -80.46730041503906, + 27.962262536875905 + ], + [ + -80.46524047851562, + 27.91980029694533 + ], + [ + -80.40550231933594, + 27.930114089618602 + ], + [ + -80.39657592773438, + 27.980455528671527 + ], + [ + -80.41305541992188, + 27.982274659104082 + ], + [ + -80.42953491210938, + 27.990763528690582 + ], + [ + -80.4144287109375, + 28.00955793247135 + ], + [ + -80.3594970703125, + 27.972572275562527 + ], + [ + -80.36224365234375, + 27.948919060105453 + ], + [ + -80.38215637207031, + 27.913732900444284 + ], + [ + -80.41786193847656, + 27.881570017022806 + ], + [ + -80.40550231933594, + 27.860932192608534 + ], + [ + -80.39382934570312, + 27.85425440786446 + ], + [ + -80.37803649902344, + 27.86336037597851 + ], + [ + -80.38215637207031, + 27.880963078302393 + ], + [ + -80.36842346191405, + 27.888246118437756 + ], + [ + -80.35743713378906, + 27.882176952341734 + ], + [ + -80.35469055175781, + 27.86882358965466 + ], + [ + -80.3594970703125, + 27.8421119273228 + ], + [ + -80.37940979003906, + 27.83300417483936 + ], + [ + -80.39932250976561, + 27.82511017099003 + ], + [ + -80.40069580078125, + 27.79352841586229 + ], + [ + -80.36155700683594, + 27.786846483587688 + ], + [ + -80.35537719726562, + 27.794743268514615 + ], + [ + -80.36705017089844, + 27.800209937418252 + ], + [ + -80.36889553070068, + 27.801918215058347 + ], + [ + -80.3690242767334, + 27.803930152059845 + ], + [ + -80.36713600158691, + 27.805942051806845 + ], + [ + -80.36584854125977, + 27.805524490772143 + ], + [ + -80.36563396453857, + 27.80465140342285 + ], + [ + -80.36619186401367, + 27.803095012921272 + ], + [ + -80.36623477935791, + 27.801842292177923 + ], + [ + -80.36524772644043, + 27.80127286888392 + ], + [ + -80.36224365234375, + 27.801158983867033 + ], + [ + -80.36065578460693, + 27.802639479776524 + ], + [ + -80.36138534545898, + 27.803740348273823 + ], + [ + -80.36220073699951, + 27.804803245204976 + ], + [ + -80.36190032958984, + 27.806625330038287 + ], + [ + -80.3609561920166, + 27.80742248254359 + ], + [ + -80.35932540893555, + 27.806853088493792 + ], + [ + -80.35889625549315, + 27.806321651354835 + ], + [ + -80.35902500152588, + 27.805448570411585 + ], + [ + -80.35863876342773, + 27.804461600896783 + ], + [ + -80.35739421844482, + 27.804461600896783 + ], + [ + -80.35700798034668, + 27.805334689771293 + ], + [ + -80.35696506500244, + 27.80673920932572 + ], + [ + -80.35726547241211, + 27.80772615814989 + ], + [ + -80.35808086395264, + 27.808295547623707 + ], + [ + -80.3585958480835, + 27.80928248230861 + ], + [ + -80.35653591156006, + 27.80943431761813 + ], + [ + -80.35572052001953, + 27.808637179875486 + ], + [ + -80.3555917739868, + 27.80772615814989 + ], + [ + -80.3555917739868, + 27.806055931810487 + ], + [ + -80.35572052001953, + 27.803778309057556 + ], + [ + -80.35537719726562, + 27.801804330717825 + ], + [ + -80.3554630279541, + 27.799564581098746 + ], + [ + -80.35670757293701, + 27.799564581098746 + ], + [ + -80.35499095916748, + 27.796831264786892 + ], + [ + -80.34610748291016, + 27.79478123244122 + ], + [ + -80.34404754638672, + 27.802070060660014 + ], + [ + -80.34748077392578, + 27.804955086774896 + ], + [ + -80.3433609008789, + 27.805790211616266 + ], + [ + -80.34353256225586, + 27.8101555324401 + ], + [ + -80.33499240875244, + 27.810079615315917 + ], + [ + -80.33383369445801, + 27.805676331334084 + ], + [ + -80.33022880554199, + 27.801652484744796 + ], + [ + -80.32872676849365, + 27.80848534345178 + ] + ], + [ + [ + -80.51193237304688, + 28.091366281406945 + ], + [ + -80.47760009765624, + 28.074403740607135 + ], + [ + -80.47210693359375, + 28.058650411105386 + ], + [ + -80.46936035156249, + 28.01016414897993 + ], + [ + -80.45425415039061, + 27.99682659773872 + ], + [ + -80.44464111328125, + 28.02956127552927 + ], + [ + -80.43228149414062, + 28.024712321517228 + ], + [ + -80.40069580078125, + 28.01743848094423 + ], + [ + -80.3704833984375, + 28.004101830368654 + ], + [ + -80.35537719726562, + 27.991976169784156 + ], + [ + -80.3485107421875, + 27.947099367319762 + ], + [ + -80.32379150390625, + 27.937393821330247 + ], + [ + -80.34027099609375, + 27.879142241732627 + ], + [ + -80.35263061523436, + 27.90948552034696 + ], + [ + -80.36773681640625, + 27.858503954841247 + ], + [ + -80.34027099609375, + 27.822073862795612 + ], + [ + -80.29220581054688, + 27.853647316127383 + ], + [ + -80.30319213867188, + 27.860932192608534 + ], + [ + -80.30319213867188, + 27.88278388425912 + ], + [ + -80.2935791015625, + 27.894921808206057 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/in/multipoint.geojson b/lib/turf-simplify/test/in/multipoint.geojson new file mode 100644 index 0000000..7fba21b --- /dev/null +++ b/lib/turf-simplify/test/in/multipoint.geojson @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPoint", + "coordinates":[[ + 0, + 0 + ],[ 1,2]] + } +} \ No newline at end of file diff --git a/lib/turf-simplify/test/in/multipolygon.geojson b/lib/turf-simplify/test/in/multipolygon.geojson new file mode 100644 index 0000000..7909d05 --- /dev/null +++ b/lib/turf-simplify/test/in/multipolygon.geojson @@ -0,0 +1,4504 @@ +{ + "type": "Feature", + "properties": { + "country": "South Africa", + "tolerance": 0.01 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 19.418070002000036, + -34.68667999799993 + ], + [ + 19.418070002000036, + -34.686830002999955 + ], + [ + 19.41808000000003, + -34.686920002999955 + ], + [ + 19.418110010000078, + -34.68702000099995 + ], + [ + 19.418210000000045, + -34.68706000199995 + ], + [ + 19.418250001000047, + -34.68711000099995 + ], + [ + 19.41821999900003, + -34.68724999999995 + ], + [ + 19.41820000200005, + -34.687349996999956 + ], + [ + 19.41808000000003, + -34.687349996999956 + ], + [ + 19.41799000000003, + -34.687330000999964 + ], + [ + 19.41794999900003, + -34.687370001999966 + ], + [ + 19.41794999900003, + -34.68747999799996 + ], + [ + 19.417999998000028, + -34.68754000299998 + ], + [ + 19.418110010000078, + -34.68764000099998 + ], + [ + 19.418179998000028, + -34.68774999699997 + ], + [ + 19.41814999500002, + -34.68786000099993 + ], + [ + 19.418070002000036, + -34.68785000299994 + ], + [ + 19.41800999700007, + -34.687810001999935 + ], + [ + 19.41799000000003, + -34.687869991999946 + ], + [ + 19.41795999800007, + -34.68794000299994 + ], + [ + 19.417890002000036, + -34.68796999799997 + ], + [ + 19.417770000000075, + -34.68791999899997 + ], + [ + 19.417729999000073, + -34.68796999799997 + ], + [ + 19.41770000400004, + -34.68804000099993 + ], + [ + 19.417819999000073, + -34.68810999599998 + ], + [ + 19.41791999700007, + -34.68825000299995 + ], + [ + 19.41791999700007, + -34.68838000299996 + ], + [ + 19.41786999800007, + -34.68844000099995 + ], + [ + 19.417710003000025, + -34.688399999999945 + ], + [ + 19.417670002000023, + -34.68844000099995 + ], + [ + 19.417729999000073, + -34.68853999899994 + ], + [ + 19.417779990000042, + -34.68862999799995 + ], + [ + 19.417760002000023, + -34.68879999999996 + ], + [ + 19.417729999000073, + -34.688849990999984 + ], + [ + 19.417670002000023, + -34.68891000399998 + ], + [ + 19.41755999800006, + -34.68891000399998 + ], + [ + 19.41750999900006, + -34.68887000299998 + ], + [ + 19.417490002000022, + -34.688830001999975 + ], + [ + 19.417460000000062, + -34.68878000299998 + ], + [ + 19.417299997000043, + -34.68878000299998 + ], + [ + 19.41724000000005, + -34.688830001999975 + ], + [ + 19.417249990000073, + -34.688920001999975 + ], + [ + 19.417230001000064, + -34.68906000099997 + ], + [ + 19.41715000000005, + -34.68911999799997 + ], + [ + 19.417109999000047, + -34.68915999899997 + ], + [ + 19.41701000100005, + -34.68915999899997 + ], + [ + 19.416929999000047, + -34.68912999599996 + ], + [ + 19.416889999000034, + -34.68906000099997 + ], + [ + 19.41683000200004, + -34.68906000099997 + ], + [ + 19.41679999100006, + -34.68910999999997 + ], + [ + 19.416690003000042, + -34.68910999999997 + ], + [ + 19.416640012000073, + -34.68903999599996 + ], + [ + 19.41654999600007, + -34.68903999599996 + ], + [ + 19.416489999000078, + -34.68910999999997 + ], + [ + 19.416390001000025, + -34.68919000099993 + ], + [ + 19.416300001000025, + -34.68920999799997 + ], + [ + 19.416250002000027, + -34.68912999599996 + ], + [ + 19.41620000300003, + -34.68910999999997 + ], + [ + 19.416110011000058, + -34.689149999999984 + ], + [ + 19.41600999800005, + -34.68924999799998 + ], + [ + 19.415900001000068, + -34.68924999799998 + ], + [ + 19.415860001000055, + -34.68920999799997 + ], + [ + 19.415810002000057, + -34.68923000199993 + ], + [ + 19.415730000000053, + -34.68927000299993 + ], + [ + 19.415640000000053, + -34.68928000099993 + ], + [ + 19.415590001000055, + -34.68930000499995 + ], + [ + 19.415659997000034, + -34.689439995999976 + ], + [ + 19.415730000000053, + -34.689490002999946 + ], + [ + 19.41571000400006, + -34.68959000099994 + ], + [ + 19.41564999900004, + -34.689630001999944 + ], + [ + 19.415590001000055, + -34.68977000099994 + ], + [ + 19.41549000300006, + -34.68990999899995 + ], + [ + 19.41542000000004, + -34.689969995999945 + ], + [ + 19.415299998000023, + -34.69004999799995 + ], + [ + 19.415219996000076, + -34.69000999699995 + ], + [ + 19.41515000100003, + -34.689869990999966 + ], + [ + 19.414989998000067, + -34.689869990999966 + ], + [ + 19.41498000000007, + -34.68994000199996 + ], + [ + 19.414960003000033, + -34.689990000999956 + ], + [ + 19.414909996000063, + -34.69004999799995 + ], + [ + 19.41479999200004, + -34.690039999999954 + ], + [ + 19.41476000700004, + -34.689969995999945 + ], + [ + 19.414700002000075, + -34.68991999799994 + ], + [ + 19.414610002000074, + -34.68991999799994 + ], + [ + 19.41454999700005, + -34.689969995999945 + ], + [ + 19.414520003000064, + -34.690059995999945 + ], + [ + 19.414449999000055, + -34.69008999899995 + ], + [ + 19.41427999800004, + -34.690059995999945 + ], + [ + 19.41423000700007, + -34.68999999899995 + ], + [ + 19.414139999000042, + -34.689969995999945 + ], + [ + 19.41396000000003, + -34.689879996999935 + ], + [ + 19.413889996000023, + -34.68980000299996 + ], + [ + 19.41379999700007, + -34.689739997999936 + ], + [ + 19.413699999000073, + -34.68974999599993 + ], + [ + 19.41369000000003, + -34.689810000999955 + ], + [ + 19.41369000000003, + -34.68991999799994 + ], + [ + 19.413609999000073, + -34.689969995999945 + ], + [ + 19.413500003000024, + -34.689969995999945 + ], + [ + 19.413359996000054, + -34.68998000299996 + ], + [ + 19.413289993000035, + -34.689869990999966 + ], + [ + 19.413230003000024, + -34.68985999999995 + ], + [ + 19.41316000000006, + -34.68990999899995 + ], + [ + 19.41314000400007, + -34.68999999899995 + ], + [ + 19.413169998000058, + -34.690150003999975 + ], + [ + 19.413110001000064, + -34.69028000399993 + ], + [ + 19.412899999000047, + -34.69028000399993 + ], + [ + 19.412840002000053, + -34.69032000499993 + ], + [ + 19.412840002000053, + -34.69035998999993 + ], + [ + 19.412750002000053, + -34.69042000299993 + ], + [ + 19.412649996000027, + -34.69046000399993 + ], + [ + 19.41253000200004, + -34.69046000399993 + ], + [ + 19.412419998000075, + -34.69043000099998 + ], + [ + 19.412369999000077, + -34.69032000499993 + ], + [ + 19.41233999600007, + -34.69021000099997 + ], + [ + 19.412220002000026, + -34.690219998999964 + ], + [ + 19.41208000300003, + -34.690219998999964 + ], + [ + 19.412029996000058, + -34.690150003999975 + ], + [ + 19.412059999000064, + -34.69003000199996 + ], + [ + 19.41206999700006, + -34.68985999999995 + ], + [ + 19.41197999700006, + -34.68977999899994 + ], + [ + 19.41183999800006, + -34.68979000499996 + ], + [ + 19.411700000000053, + -34.68977000099994 + ], + [ + 19.411600002000057, + -34.68968000099994 + ], + [ + 19.411579997000047, + -34.689559997999936 + ], + [ + 19.41161999800005, + -34.689400002999946 + ], + [ + 19.411539997000034, + -34.689349995999976 + ], + [ + 19.411470001000055, + -34.689400002999946 + ], + [ + 19.411430000000053, + -34.68951999799998 + ], + [ + 19.411309998000036, + -34.68953000399995 + ], + [ + 19.411240003000046, + -34.689490002999946 + ], + [ + 19.411200002000044, + -34.689349995999976 + ], + [ + 19.411139997000078, + -34.68923000199993 + ], + [ + 19.411099996000075, + -34.68924999799998 + ], + [ + 19.410990000000027, + -34.689239999999984 + ], + [ + 19.410810000000026, + -34.68918000299993 + ], + [ + 19.41085000100003, + -34.68905000299998 + ], + [ + 19.410930003000033, + -34.68897000099997 + ], + [ + 19.410990000000027, + -34.68888000099997 + ], + [ + 19.410959997000077, + -34.68878000299998 + ], + [ + 19.410909998000022, + -34.68861000199996 + ], + [ + 19.410840003000033, + -34.688579998999955 + ], + [ + 19.41077000000007, + -34.688669998999956 + ], + [ + 19.410720001000072, + -34.688719997999954 + ], + [ + 19.410559998000053, + -34.688740001999975 + ], + [ + 19.41050000000007, + -34.68869001099995 + ], + [ + 19.410429989000022, + -34.68862999799995 + ], + [ + 19.41033999700005, + -34.68867999699995 + ], + [ + 19.410170004000065, + -34.68876999699995 + ], + [ + 19.410060000000044, + -34.688669998999956 + ], + [ + 19.410100001000046, + -34.68853999899994 + ], + [ + 19.410050002000048, + -34.68843000199996 + ], + [ + 19.409960002000048, + -34.68830000199995 + ], + [ + 19.409870002000048, + -34.68816000299995 + ], + [ + 19.409880000000044, + -34.68804999899993 + ], + [ + 19.409929999000042, + -34.68798000399994 + ], + [ + 19.41000000300005, + -34.68795999899993 + ], + [ + 19.410130003000063, + -34.68799999999993 + ], + [ + 19.410239999000055, + -34.68804999899993 + ], + [ + 19.410379998000053, + -34.68803000299994 + ], + [ + 19.41050000000007, + -34.68795999899993 + ], + [ + 19.410620003000076, + -34.68794000299994 + ], + [ + 19.410689998000066, + -34.68795999899993 + ], + [ + 19.41077000000007, + -34.68804000099993 + ], + [ + 19.410810000000026, + -34.68814999699998 + ], + [ + 19.41081999900007, + -34.68823999699998 + ], + [ + 19.410930003000033, + -34.68832999699998 + ], + [ + 19.411190004000048, + -34.68826999899994 + ], + [ + 19.411240003000046, + -34.688189997999984 + ], + [ + 19.411359997000034, + -34.688189997999984 + ], + [ + 19.41146000300006, + -34.68830000199995 + ], + [ + 19.411510002000057, + -34.688399999999945 + ], + [ + 19.41147999900005, + -34.68854999699994 + ], + [ + 19.411430000000053, + -34.688600003999966 + ], + [ + 19.41147999900005, + -34.688719997999954 + ], + [ + 19.411610000000053, + -34.68879000099997 + ], + [ + 19.411690001000068, + -34.68885999699995 + ], + [ + 19.411759997000047, + -34.68888000099997 + ], + [ + 19.411929998000062, + -34.68885999699995 + ], + [ + 19.41200000200007, + -34.68881000599998 + ], + [ + 19.41205000100007, + -34.68885999699995 + ], + [ + 19.41206999700006, + -34.68894999699995 + ], + [ + 19.412040002000026, + -34.68901999999997 + ], + [ + 19.412040002000026, + -34.689079996999965 + ], + [ + 19.41206999700006, + -34.689149999999984 + ], + [ + 19.41215999700006, + -34.689149999999984 + ], + [ + 19.41226000300003, + -34.68915999899997 + ], + [ + 19.412379997000073, + -34.689220011999964 + ], + [ + 19.412400001000037, + -34.68928999899998 + ], + [ + 19.412469997000073, + -34.689310003999935 + ], + [ + 19.412580001000038, + -34.689349995999976 + ], + [ + 19.412760008000078, + -34.68941000199993 + ], + [ + 19.412809999000046, + -34.68946000099993 + ], + [ + 19.413060002000066, + -34.68946000099993 + ], + [ + 19.413269996000054, + -34.68941000199993 + ], + [ + 19.413320003000024, + -34.689349995999976 + ], + [ + 19.413280002000022, + -34.68924999799998 + ], + [ + 19.413269996000054, + -34.68920999799997 + ], + [ + 19.413280002000022, + -34.689149999999984 + ], + [ + 19.413380000000075, + -34.68911999799997 + ], + [ + 19.413470000000075, + -34.68911999799997 + ], + [ + 19.413560000000075, + -34.689169996999965 + ], + [ + 19.413630003000037, + -34.689239999999984 + ], + [ + 19.41370999700007, + -34.68924999799998 + ], + [ + 19.41374999800007, + -34.689149999999984 + ], + [ + 19.41374999800007, + -34.68901999999997 + ], + [ + 19.413789998000027, + -34.68893999799997 + ], + [ + 19.41385000400004, + -34.68893999799997 + ], + [ + 19.413950001000046, + -34.68900000399998 + ], + [ + 19.413969998000027, + -34.68906000099997 + ], + [ + 19.414019997000025, + -34.689149999999984 + ], + [ + 19.41408000200005, + -34.68919000099993 + ], + [ + 19.414139999000042, + -34.68918000299993 + ], + [ + 19.41418999800004, + -34.68911999799997 + ], + [ + 19.41417000200005, + -34.688989996999965 + ], + [ + 19.41418999800004, + -34.688920001999975 + ], + [ + 19.41427999800004, + -34.688920001999975 + ], + [ + 19.414340003000063, + -34.68892999999997 + ], + [ + 19.41439000200006, + -34.68903999599996 + ], + [ + 19.414470004000066, + -34.68901999999997 + ], + [ + 19.414539999000056, + -34.68891000399998 + ], + [ + 19.414580000000058, + -34.68885999699995 + ], + [ + 19.414610002000074, + -34.688830001999975 + ], + [ + 19.414660001000072, + -34.688830001999975 + ], + [ + 19.41472999700005, + -34.68893999799997 + ], + [ + 19.41472999700005, + -34.68901999999997 + ], + [ + 19.414740003000077, + -34.68910999999997 + ], + [ + 19.41476000700004, + -34.689149999999984 + ], + [ + 19.41479999200004, + -34.689169996999965 + ], + [ + 19.41489000000007, + -34.689169996999965 + ], + [ + 19.41493999900007, + -34.689149999999984 + ], + [ + 19.41492000200003, + -34.68906000099997 + ], + [ + 19.414899998000067, + -34.68900000399998 + ], + [ + 19.414899998000067, + -34.688920001999975 + ], + [ + 19.41492000200003, + -34.688830001999975 + ], + [ + 19.41498000000007, + -34.68883999999997 + ], + [ + 19.415069999000025, + -34.68879999999996 + ], + [ + 19.415090004000035, + -34.68875000099996 + ], + [ + 19.41510000200003, + -34.68867999699995 + ], + [ + 19.415159999000025, + -34.68862999799995 + ], + [ + 19.415230002000044, + -34.68862999799995 + ], + [ + 19.41533000000004, + -34.68861000199996 + ], + [ + 19.41540000400005, + -34.68853999899994 + ], + [ + 19.41540000400005, + -34.68844000099995 + ], + [ + 19.41542000000004, + -34.68835000099995 + ], + [ + 19.41549000300006, + -34.68835000099995 + ], + [ + 19.415569997000034, + -34.68838000299996 + ], + [ + 19.415609998000036, + -34.68847000299996 + ], + [ + 19.415680001000055, + -34.68867999699995 + ], + [ + 19.415779991000022, + -34.68867999699995 + ], + [ + 19.415900001000068, + -34.68862999799995 + ], + [ + 19.415980003000072, + -34.68858999799994 + ], + [ + 19.41603000200007, + -34.688489999999945 + ], + [ + 19.416040000000066, + -34.68844000099995 + ], + [ + 19.416089999000064, + -34.688419995999936 + ], + [ + 19.416179999000065, + -34.68848000099996 + ], + [ + 19.416260000000023, + -34.68852999999996 + ], + [ + 19.416319998000063, + -34.68854999699994 + ], + [ + 19.416399999000078, + -34.68853999899994 + ], + [ + 19.416520001000038, + -34.688489999999945 + ], + [ + 19.416610001000038, + -34.68845999699994 + ], + [ + 19.416660000000036, + -34.688489999999945 + ], + [ + 19.416700001000038, + -34.68853999899994 + ], + [ + 19.41675999000006, + -34.68849999799994 + ], + [ + 19.41675999000006, + -34.68844000099995 + ], + [ + 19.416780003000042, + -34.68838000299996 + ], + [ + 19.41679999100006, + -34.68835999099997 + ], + [ + 19.41692000100005, + -34.688399999999945 + ], + [ + 19.41698999700003, + -34.688419995999936 + ], + [ + 19.417040004000057, + -34.68844000099995 + ], + [ + 19.417140002000053, + -34.688399999999945 + ], + [ + 19.417140002000053, + -34.68834000299995 + ], + [ + 19.41710000100005, + -34.68825000299995 + ], + [ + 19.41710000100005, + -34.68814999699998 + ], + [ + 19.417180002000066, + -34.68808999999993 + ], + [ + 19.417230001000064, + -34.68808999999993 + ], + [ + 19.41740000300007, + -34.688099997999984 + ], + [ + 19.41740000300007, + -34.68805999699998 + ], + [ + 19.417360002000066, + -34.68796999799997 + ], + [ + 19.417370000000062, + -34.687869991999946 + ], + [ + 19.417440003000024, + -34.687779999999975 + ], + [ + 19.417500001000064, + -34.687709996999956 + ], + [ + 19.41750999900006, + -34.68764000099998 + ], + [ + 19.417609997000056, + -34.68755999999996 + ], + [ + 19.417630001000077, + -34.687489995999954 + ], + [ + 19.417550000000062, + -34.68746999999996 + ], + [ + 19.417440003000024, + -34.68746999999996 + ], + [ + 19.417370000000062, + -34.68742999899996 + ], + [ + 19.417360002000066, + -34.687349996999956 + ], + [ + 19.417389996000054, + -34.68720999899995 + ], + [ + 19.417530003000024, + -34.68717999599994 + ], + [ + 19.41755999800006, + -34.68714000299997 + ], + [ + 19.417530003000024, + -34.68706000199995 + ], + [ + 19.417440003000024, + -34.68702000099995 + ], + [ + 19.417370000000062, + -34.686989997999945 + ], + [ + 19.417339997000056, + -34.686899998999934 + ], + [ + 19.417370000000062, + -34.686779995999984 + ], + [ + 19.41741999900006, + -34.68672999699993 + ], + [ + 19.417530003000024, + -34.686759999999936 + ], + [ + 19.417630001000077, + -34.686779995999984 + ], + [ + 19.41774000500004, + -34.686779995999984 + ], + [ + 19.417770000000075, + -34.68667999799993 + ], + [ + 19.417750003000037, + -34.68653999999998 + ], + [ + 19.417800002000035, + -34.68649000099998 + ], + [ + 19.41791999700007, + -34.68649000099998 + ], + [ + 19.41800999700007, + -34.68653000099994 + ], + [ + 19.41806000300005, + -34.68658999899998 + ], + [ + 19.418070002000036, + -34.68667999799993 + ] + ] + ], + [ + [ + [ + 19.418799998000054, + -34.67816000099998 + ], + [ + 19.418900004000022, + -34.67817999699997 + ], + [ + 19.419050001000073, + -34.67804999699996 + ], + [ + 19.419119996000063, + -34.677899999999966 + ], + [ + 19.41916999500006, + -34.67786999699996 + ], + [ + 19.419279999000025, + -34.67786999699996 + ], + [ + 19.419379997000078, + -34.67792000399993 + ], + [ + 19.41945000100003, + -34.67802000199998 + ], + [ + 19.419390003000046, + -34.67813999599997 + ], + [ + 19.419329998000023, + -34.67820999999998 + ], + [ + 19.419279999000025, + -34.67826999699997 + ], + [ + 19.419260003000034, + -34.67833000199994 + ], + [ + 19.419329998000023, + -34.67838999899993 + ], + [ + 19.419379997000078, + -34.67839999699993 + ], + [ + 19.41945000100003, + -34.67848999699993 + ], + [ + 19.419459999000026, + -34.678590002999954 + ], + [ + 19.419530002000045, + -34.678609998999946 + ], + [ + 19.419670001000043, + -34.678590002999954 + ], + [ + 19.41967999900004, + -34.678410002999954 + ], + [ + 19.419670001000043, + -34.67829999899993 + ], + [ + 19.419710002000045, + -34.67820999999998 + ], + [ + 19.419819998000037, + -34.67816999899998 + ], + [ + 19.419999997000048, + -34.67820999999998 + ], + [ + 19.420160000000067, + -34.678219997999975 + ], + [ + 19.420179997000048, + -34.67829999899993 + ], + [ + 19.420179997000048, + -34.67838999899993 + ], + [ + 19.42024000200007, + -34.67842000199994 + ], + [ + 19.42035999600006, + -34.67839999699993 + ], + [ + 19.420430000000067, + -34.67829999899993 + ], + [ + 19.420519999000078, + -34.67829999899993 + ], + [ + 19.420650000000023, + -34.67828000299994 + ], + [ + 19.420709997000074, + -34.67829999899993 + ], + [ + 19.420759988000043, + -34.67838999899993 + ], + [ + 19.420780000000036, + -34.67846000199995 + ], + [ + 19.420839998000076, + -34.678539995999984 + ], + [ + 19.420960000000036, + -34.67852999799993 + ], + [ + 19.42101999700003, + -34.67848999699993 + ], + [ + 19.421050000000037, + -34.67834999799993 + ], + [ + 19.421139999000047, + -34.67834999799993 + ], + [ + 19.421279998000045, + -34.678410002999954 + ], + [ + 19.421300002000066, + -34.67848999699993 + ], + [ + 19.421329997000043, + -34.678590002999954 + ], + [ + 19.42137999600004, + -34.67864000199995 + ], + [ + 19.42147000400007, + -34.678590002999954 + ], + [ + 19.42153999900006, + -34.67851999199996 + ], + [ + 19.421639997000057, + -34.67851000099995 + ], + [ + 19.421759999000074, + -34.678539995999984 + ], + [ + 19.421819997000057, + -34.67860000099995 + ], + [ + 19.421840001000078, + -34.678680002999954 + ], + [ + 19.421830003000025, + -34.67878000099995 + ], + [ + 19.421830003000025, + -34.67884999599994 + ], + [ + 19.42194999700007, + -34.67882999999995 + ], + [ + 19.421999996000068, + -34.67878000099995 + ], + [ + 19.42203999700007, + -34.67873000199995 + ], + [ + 19.422190002000036, + -34.67873000199995 + ], + [ + 19.42223000300004, + -34.67875999599994 + ], + [ + 19.422280002000036, + -34.67890000299997 + ], + [ + 19.422259997000026, + -34.67897000599993 + ], + [ + 19.422259997000026, + -34.67905999799996 + ], + [ + 19.42233999900003, + -34.679040001999965 + ], + [ + 19.42241000200005, + -34.678929997999944 + ], + [ + 19.422439997000026, + -34.67886999999996 + ], + [ + 19.422559999000043, + -34.67886999999996 + ], + [ + 19.422690000000046, + -34.67891999899996 + ], + [ + 19.42274999700004, + -34.67899000299997 + ], + [ + 19.422710004000066, + -34.67908000199998 + ], + [ + 19.42265999700004, + -34.67917000199998 + ], + [ + 19.422619996000037, + -34.67925000399998 + ], + [ + 19.42259000200005, + -34.67935000199998 + ], + [ + 19.42268000100006, + -34.679400000999976 + ], + [ + 19.422760003000064, + -34.67930000299998 + ], + [ + 19.422810002000062, + -34.67922999899997 + ], + [ + 19.422850003000065, + -34.67917000199998 + ], + [ + 19.42295000100006, + -34.67915999599995 + ], + [ + 19.42300000000006, + -34.67921000299998 + ], + [ + 19.423030002000075, + -34.67927999799997 + ], + [ + 19.42300000000006, + -34.679400000999976 + ], + [ + 19.422959999000057, + -34.67948999999993 + ], + [ + 19.42300000000006, + -34.679539991999945 + ], + [ + 19.423120002000076, + -34.679520002999936 + ], + [ + 19.423210002000076, + -34.67948999999993 + ], + [ + 19.42334000200003, + -34.679520002999936 + ], + [ + 19.423420004000036, + -34.67954999799997 + ], + [ + 19.423459997000066, + -34.67963999699998 + ], + [ + 19.423399999000026, + -34.67972999699998 + ], + [ + 19.423329996000064, + -34.67980000099993 + ], + [ + 19.423290003000034, + -34.67985999799998 + ], + [ + 19.423279997000066, + -34.67992000299995 + ], + [ + 19.423279997000066, + -34.680020000999946 + ], + [ + 19.423350000000028, + -34.680089995999936 + ], + [ + 19.423420004000036, + -34.68014000299996 + ], + [ + 19.423420004000036, + -34.68024000099996 + ], + [ + 19.423329996000064, + -34.68029999799995 + ], + [ + 19.423170001000074, + -34.68024000099996 + ], + [ + 19.423099998000055, + -34.680180003999965 + ], + [ + 19.423020004000023, + -34.68015000099996 + ], + [ + 19.422980003000077, + -34.680159999999944 + ], + [ + 19.42300000000006, + -34.68020999899994 + ], + [ + 19.42295000100006, + -34.68029999799995 + ], + [ + 19.42295000100006, + -34.68038999799995 + ], + [ + 19.423030002000075, + -34.680429998999955 + ], + [ + 19.42304000000007, + -34.680540002999976 + ], + [ + 19.42300000000006, + -34.68061999699995 + ], + [ + 19.422890003000077, + -34.68061999699995 + ], + [ + 19.422810002000062, + -34.680500001999974 + ], + [ + 19.422760003000064, + -34.68049000399998 + ], + [ + 19.42273000000006, + -34.68058000399998 + ], + [ + 19.42274999700004, + -34.680680001999974 + ], + [ + 19.422690000000046, + -34.680749996999964 + ], + [ + 19.42251999800004, + -34.680770000999985 + ], + [ + 19.422439997000026, + -34.680680001999974 + ], + [ + 19.422460001000047, + -34.680540002999976 + ], + [ + 19.422380000000032, + -34.680500001999974 + ], + [ + 19.422280002000036, + -34.68052999699995 + ], + [ + 19.422280002000036, + -34.680590001999974 + ], + [ + 19.42209000400004, + -34.680680001999974 + ], + [ + 19.421999996000068, + -34.68072000199993 + ], + [ + 19.421989998000072, + -34.68091999799998 + ], + [ + 19.421930001000078, + -34.68097000499995 + ], + [ + 19.421880002000023, + -34.68097000499995 + ], + [ + 19.42180999800007, + -34.68091999799998 + ], + [ + 19.421759999000074, + -34.68085001099996 + ], + [ + 19.42167999800006, + -34.680749996999964 + ], + [ + 19.421619993000036, + -34.68073000099997 + ], + [ + 19.421570002000067, + -34.680749996999964 + ], + [ + 19.421530001000065, + -34.68086999899998 + ], + [ + 19.42153999900006, + -34.68097000499995 + ], + [ + 19.42152000300007, + -34.68108999999998 + ], + [ + 19.42144999900006, + -34.68108999999998 + ], + [ + 19.42137999600004, + -34.68103000199994 + ], + [ + 19.42134000300007, + -34.68094000299993 + ], + [ + 19.421279998000045, + -34.68099999999998 + ], + [ + 19.421260002000054, + -34.68114999699998 + ], + [ + 19.421239997000043, + -34.68127999699993 + ], + [ + 19.421149998000033, + -34.681300001999944 + ], + [ + 19.421129993000022, + -34.681229997999935 + ], + [ + 19.421099999000035, + -34.68112999999994 + ], + [ + 19.42101999700003, + -34.68112999999994 + ], + [ + 19.421009999000034, + -34.681229997999935 + ], + [ + 19.421030003000055, + -34.681319997999935 + ], + [ + 19.421120003000055, + -34.68148999899995 + ], + [ + 19.421099999000035, + -34.68161000199996 + ], + [ + 19.42100000100004, + -34.681660000999955 + ], + [ + 19.42092999700003, + -34.681660000999955 + ], + [ + 19.420850004000044, + -34.68174000199997 + ], + [ + 19.420759988000043, + -34.681749999999965 + ], + [ + 19.420709997000074, + -34.68188000099997 + ], + [ + 19.420659998000076, + -34.68198998899993 + ], + [ + 19.420619997000074, + -34.68203999599996 + ], + [ + 19.420519999000078, + -34.68201000199997 + ], + [ + 19.420439998000063, + -34.68197000099997 + ], + [ + 19.42039999700006, + -34.68198998899993 + ], + [ + 19.420389999000065, + -34.68205000199998 + ], + [ + 19.420389999000065, + -34.68213000399993 + ], + [ + 19.42035999600006, + -34.68223000199998 + ], + [ + 19.42020000100007, + -34.682249997999975 + ], + [ + 19.420089997000048, + -34.68222000399993 + ], + [ + 19.41997000300006, + -34.68218000299993 + ], + [ + 19.419930002000058, + -34.68228000099998 + ], + [ + 19.41997000300006, + -34.68237999899998 + ], + [ + 19.41997000300006, + -34.68249000299994 + ], + [ + 19.419890001000056, + -34.682549999999935 + ], + [ + 19.419890001000056, + -34.682620002999954 + ], + [ + 19.41989999900005, + -34.68269999699993 + ], + [ + 19.41983000400006, + -34.682800002999954 + ], + [ + 19.419710002000045, + -34.682800002999954 + ], + [ + 19.419620010000074, + -34.68268000099994 + ], + [ + 19.41949999900004, + -34.682659995999984 + ], + [ + 19.41949999900004, + -34.68273999799993 + ], + [ + 19.41952000400005, + -34.68285000999998 + ], + [ + 19.419490001000042, + -34.68294000199995 + ], + [ + 19.41936000100003, + -34.68290000099995 + ], + [ + 19.41931000200003, + -34.682800002999954 + ], + [ + 19.419210004000035, + -34.68276000199995 + ], + [ + 19.41914999900007, + -34.68294000199995 + ], + [ + 19.419119996000063, + -34.68308999899995 + ], + [ + 19.418950003000077, + -34.68316999999996 + ], + [ + 19.418860003000077, + -34.68309999699994 + ], + [ + 19.418709998000054, + -34.68297000399997 + ], + [ + 19.418639995000035, + -34.68303000099996 + ], + [ + 19.41865000100006, + -34.68311000299997 + ], + [ + 19.418669997000052, + -34.68325999999996 + ], + [ + 19.418619998000054, + -34.683319996999955 + ], + [ + 19.418520000000058, + -34.68330999899996 + ], + [ + 19.418430001000047, + -34.68324000299998 + ], + [ + 19.418370003000064, + -34.683160001999966 + ], + [ + 19.41829000200005, + -34.68321999899996 + ], + [ + 19.418259999000043, + -34.68330999899996 + ], + [ + 19.41829000200005, + -34.683409996999956 + ], + [ + 19.41829000200005, + -34.68352999899997 + ], + [ + 19.418170000000032, + -34.68352999899997 + ], + [ + 19.41806000300005, + -34.683479999999975 + ], + [ + 19.417980002000036, + -34.68336999599995 + ], + [ + 19.41782999700007, + -34.68337999399995 + ], + [ + 19.417810001000078, + -34.68347000199998 + ], + [ + 19.41788000400004, + -34.683600001999935 + ], + [ + 19.41790000000003, + -34.683690001999935 + ], + [ + 19.417890002000036, + -34.68378999999993 + ], + [ + 19.417810001000078, + -34.68383999899993 + ], + [ + 19.417670002000023, + -34.68378999999993 + ], + [ + 19.417570004000027, + -34.68371999699997 + ], + [ + 19.417540001000077, + -34.683780001999935 + ], + [ + 19.417590000000075, + -34.68386999399996 + ], + [ + 19.417609997000056, + -34.68404000299995 + ], + [ + 19.41755999800006, + -34.68409000199995 + ], + [ + 19.41750999900006, + -34.684009999999944 + ], + [ + 19.417429997000056, + -34.68393999699998 + ], + [ + 19.417370000000062, + -34.683889997999984 + ], + [ + 19.41726000400007, + -34.68392999899993 + ], + [ + 19.417249990000073, + -34.68405999899994 + ], + [ + 19.417299997000043, + -34.68418000199995 + ], + [ + 19.417299997000043, + -34.68426000299996 + ], + [ + 19.417230001000064, + -34.68426000299996 + ], + [ + 19.41716999600004, + -34.684189999999944 + ], + [ + 19.41707999600004, + -34.68413000299995 + ], + [ + 19.417019999000047, + -34.68404000299995 + ], + [ + 19.416929999000047, + -34.68404000299995 + ], + [ + 19.41692000100005, + -34.68413000299995 + ], + [ + 19.416950004000057, + -34.68422000299995 + ], + [ + 19.416960002000053, + -34.68428999799994 + ], + [ + 19.41689999700003, + -34.68432000799993 + ], + [ + 19.41679999100006, + -34.684279999999944 + ], + [ + 19.41666999800003, + -34.68418000199995 + ], + [ + 19.41656000200004, + -34.684230000999946 + ], + [ + 19.41651000300004, + -34.684299995999936 + ], + [ + 19.41656000200004, + -34.68446999699995 + ], + [ + 19.416610001000038, + -34.68458000199996 + ], + [ + 19.416579999000078, + -34.684660002999976 + ], + [ + 19.41645999600007, + -34.684639998999955 + ], + [ + 19.416359998000075, + -34.68458000199996 + ], + [ + 19.416250002000027, + -34.68450999799995 + ], + [ + 19.416160002000026, + -34.68441999799995 + ], + [ + 19.41600999800005, + -34.68440999999996 + ], + [ + 19.41594000200007, + -34.68446999699995 + ], + [ + 19.41600999800005, + -34.68458000199996 + ], + [ + 19.416070003000073, + -34.68467999999996 + ], + [ + 19.41608000100007, + -34.68476000099997 + ], + [ + 19.41600999800005, + -34.684819997999966 + ], + [ + 19.41608000100007, + -34.68494000099997 + ], + [ + 19.416160002000026, + -34.685010003999935 + ], + [ + 19.416179999000065, + -34.68507999899998 + ], + [ + 19.416179999000065, + -34.68517999699998 + ], + [ + 19.416059997000048, + -34.685229995999975 + ], + [ + 19.41594000200007, + -34.68512999799998 + ], + [ + 19.41586999900005, + -34.68512999799998 + ], + [ + 19.41585000200007, + -34.685190002999946 + ], + [ + 19.415980003000072, + -34.68532000399995 + ], + [ + 19.41599000100007, + -34.68541000399995 + ], + [ + 19.41594000200007, + -34.685510001999944 + ], + [ + 19.415749997000034, + -34.685420001999944 + ], + [ + 19.41560000000004, + -34.68541000399995 + ], + [ + 19.41551000000004, + -34.68547000099994 + ], + [ + 19.41551000000004, + -34.68565999899994 + ], + [ + 19.415450003000046, + -34.68569999899995 + ], + [ + 19.415320002000044, + -34.68565999899994 + ], + [ + 19.415180003000046, + -34.685619997999936 + ], + [ + 19.415129996000076, + -34.68569999899995 + ], + [ + 19.415129996000076, + -34.685849995999945 + ], + [ + 19.415079998000067, + -34.68597999699995 + ], + [ + 19.415050003000033, + -34.68601999799995 + ], + [ + 19.41519000200003, + -34.686189998999964 + ], + [ + 19.415169997000078, + -34.68628999699996 + ], + [ + 19.41510000200003, + -34.68632999799996 + ], + [ + 19.41501000200003, + -34.68628999699996 + ], + [ + 19.41484999900007, + -34.686189998999964 + ], + [ + 19.41472000600004, + -34.68618000099997 + ], + [ + 19.41472000600004, + -34.68623999799996 + ], + [ + 19.414819996000062, + -34.68637999699996 + ], + [ + 19.414859997000065, + -34.68648000299993 + ], + [ + 19.414819996000062, + -34.686549997999975 + ], + [ + 19.414670000000058, + -34.68652000299994 + ], + [ + 19.414580000000058, + -34.68644999999998 + ], + [ + 19.41444000100006, + -34.68649000099998 + ], + [ + 19.41445999700005, + -34.686669999999935 + ], + [ + 19.41441999700004, + -34.686740003999944 + ], + [ + 19.414319999000043, + -34.686740003999944 + ], + [ + 19.414220001000047, + -34.686650003999944 + ], + [ + 19.41418999800004, + -34.68644999999998 + ], + [ + 19.414059998000027, + -34.68641999699997 + ], + [ + 19.41394000300005, + -34.68652000299994 + ], + [ + 19.413770002000035, + -34.68659999699997 + ], + [ + 19.413640001000033, + -34.68652000299994 + ], + [ + 19.41361999700007, + -34.68639000299993 + ], + [ + 19.413699999000073, + -34.68628999699996 + ], + [ + 19.413789998000027, + -34.68621000299993 + ], + [ + 19.413770002000035, + -34.68606999699995 + ], + [ + 19.413630003000037, + -34.686099998999964 + ], + [ + 19.41352999700007, + -34.686189998999964 + ], + [ + 19.413460002000022, + -34.68617000199998 + ], + [ + 19.413439998000058, + -34.68601999799995 + ], + [ + 19.413439998000058, + -34.68591000099997 + ], + [ + 19.413370002000022, + -34.68578999899995 + ], + [ + 19.413230003000024, + -34.685759996999934 + ], + [ + 19.413150002000066, + -34.68586999299998 + ], + [ + 19.41307000000006, + -34.68591000099997 + ], + [ + 19.412949998000045, + -34.68586000199997 + ], + [ + 19.412949998000045, + -34.68572000399996 + ], + [ + 19.41289000100005, + -34.68556999899994 + ], + [ + 19.412769999000034, + -34.68551999999994 + ], + [ + 19.41259999700003, + -34.685619997999936 + ], + [ + 19.412490001000037, + -34.68573000199996 + ], + [ + 19.41224999600007, + -34.685690000999955 + ], + [ + 19.41224999600007, + -34.68556999899994 + ], + [ + 19.41226000300003, + -34.68547999899994 + ], + [ + 19.412199997000073, + -34.68537999299997 + ], + [ + 19.412059999000064, + -34.68541000399995 + ], + [ + 19.411929998000062, + -34.685510001999944 + ], + [ + 19.41177999300004, + -34.68551999999994 + ], + [ + 19.411700000000053, + -34.68542999999994 + ], + [ + 19.411680003000072, + -34.68530999799998 + ], + [ + 19.411579997000047, + -34.68521999799998 + ], + [ + 19.411439999000038, + -34.68520000199993 + ], + [ + 19.411340001000042, + -34.68517999699998 + ], + [ + 19.411340001000042, + -34.68507000099993 + ], + [ + 19.411439999000038, + -34.685010003999935 + ], + [ + 19.411489998000036, + -34.68494999899997 + ], + [ + 19.41139000000004, + -34.68485999899997 + ], + [ + 19.41130000000004, + -34.68481000799994 + ], + [ + 19.41131999600003, + -34.684729997999966 + ], + [ + 19.41139000000004, + -34.68471999999997 + ], + [ + 19.41152999800005, + -34.68454000099996 + ], + [ + 19.411690001000068, + -34.684549998999955 + ], + [ + 19.41181999400004, + -34.68450999799995 + ], + [ + 19.41181999400004, + -34.68440999999996 + ], + [ + 19.411680003000072, + -34.68428999799994 + ], + [ + 19.411579997000047, + -34.68423999899994 + ], + [ + 19.411579997000047, + -34.684099999999944 + ], + [ + 19.411629996000045, + -34.68400000199995 + ], + [ + 19.411770003000072, + -34.68400000199995 + ], + [ + 19.411870001000068, + -34.684050000999946 + ], + [ + 19.411969999000064, + -34.684050000999946 + ], + [ + 19.41208000300003, + -34.68398998799995 + ], + [ + 19.412029996000058, + -34.68386000399994 + ], + [ + 19.41191000200007, + -34.68375999799997 + ], + [ + 19.41188999700006, + -34.683659999999975 + ], + [ + 19.411960001000068, + -34.683569999999975 + ], + [ + 19.41206999700006, + -34.683569999999975 + ], + [ + 19.412140000000022, + -34.68362999699997 + ], + [ + 19.412239998000075, + -34.68366999799997 + ], + [ + 19.41233999600007, + -34.68366999799997 + ], + [ + 19.41239000300004, + -34.683569999999975 + ], + [ + 19.41233999600007, + -34.68349998899998 + ], + [ + 19.41239000300004, + -34.68339999899996 + ], + [ + 19.412490001000037, + -34.68335999799996 + ], + [ + 19.412559996000027, + -34.68334000899995 + ], + [ + 19.41250999700003, + -34.68321999899996 + ], + [ + 19.41239000300004, + -34.68315000399997 + ], + [ + 19.41233999600007, + -34.68299999899995 + ], + [ + 19.41244000200004, + -34.68285999999995 + ], + [ + 19.41253000200004, + -34.682869997999944 + ], + [ + 19.412660002000052, + -34.68299000099995 + ], + [ + 19.41271000100005, + -34.68297000399997 + ], + [ + 19.41271000100005, + -34.682869997999944 + ], + [ + 19.412679999000034, + -34.68277999899993 + ], + [ + 19.41271000100005, + -34.68268000099994 + ], + [ + 19.412750002000053, + -34.68263000199994 + ], + [ + 19.41281999800003, + -34.68268000099994 + ], + [ + 19.412920003000067, + -34.682729999999935 + ], + [ + 19.41311999900006, + -34.68268000099994 + ], + [ + 19.413129998000045, + -34.682569995999984 + ], + [ + 19.413129998000045, + -34.68250000099994 + ], + [ + 19.413179997000043, + -34.68241999999998 + ], + [ + 19.413240002000066, + -34.68241000099994 + ], + [ + 19.413399997000056, + -34.682479988999944 + ], + [ + 19.413560000000075, + -34.682479988999944 + ], + [ + 19.413550002000022, + -34.68234999599997 + ], + [ + 19.413550002000022, + -34.682159997999975 + ], + [ + 19.41365999800007, + -34.68213000399993 + ], + [ + 19.413699999000073, + -34.682159997999975 + ], + [ + 19.41385000400004, + -34.68236000999997 + ], + [ + 19.41394000300005, + -34.68236000999997 + ], + [ + 19.414040001000046, + -34.68234999599997 + ], + [ + 19.414090000000044, + -34.68223000199998 + ], + [ + 19.414090000000044, + -34.68206000099997 + ], + [ + 19.414109997000025, + -34.68193999799996 + ], + [ + 19.414160004000053, + -34.68193999799996 + ], + [ + 19.414250003000063, + -34.68197000099997 + ], + [ + 19.414319999000043, + -34.68202999799996 + ], + [ + 19.41439000200006, + -34.68210999899998 + ], + [ + 19.41441999700004, + -34.68229999699997 + ], + [ + 19.414610002000074, + -34.68236000999997 + ], + [ + 19.414660001000072, + -34.68229999699997 + ], + [ + 19.414700002000075, + -34.68220999699997 + ], + [ + 19.414880002000075, + -34.68220999699997 + ], + [ + 19.41489000000007, + -34.68205000199998 + ], + [ + 19.41492000200003, + -34.68189999699996 + ], + [ + 19.41493999900007, + -34.681870010999944 + ], + [ + 19.415039997000065, + -34.681870010999944 + ], + [ + 19.415079998000067, + -34.681979998999964 + ], + [ + 19.415159999000025, + -34.68206000099997 + ], + [ + 19.415280001000042, + -34.682090002999985 + ], + [ + 19.415349997000078, + -34.68192000199997 + ], + [ + 19.415370001000042, + -34.681820003999974 + ], + [ + 19.415469999000038, + -34.681729995999945 + ], + [ + 19.41542000000004, + -34.681589996999946 + ], + [ + 19.415429998000036, + -34.68148999899995 + ], + [ + 19.415540002000057, + -34.68147000299996 + ], + [ + 19.415609998000036, + -34.68153999799995 + ], + [ + 19.415699998000036, + -34.681589996999946 + ], + [ + 19.41585000200007, + -34.68156000299996 + ], + [ + 19.41585000200007, + -34.68147000299996 + ], + [ + 19.41594000200007, + -34.68137999499993 + ], + [ + 19.41600999800005, + -34.68135000099994 + ], + [ + 19.41608000100007, + -34.681409997999936 + ], + [ + 19.416250002000027, + -34.68139999999994 + ], + [ + 19.416319998000063, + -34.68135000099994 + ], + [ + 19.41638000300003, + -34.68117999899994 + ], + [ + 19.416409997000073, + -34.68104999899998 + ], + [ + 19.41654999600007, + -34.680980002999945 + ], + [ + 19.41654999600007, + -34.680770000999985 + ], + [ + 19.41666999800003, + -34.68067000299993 + ], + [ + 19.416820003000055, + -34.68068999999997 + ], + [ + 19.416889999000034, + -34.680770000999985 + ], + [ + 19.41698999700003, + -34.68072000199993 + ], + [ + 19.41701000100005, + -34.68061999699995 + ], + [ + 19.41710000100005, + -34.68058000399998 + ], + [ + 19.41716999600004, + -34.68059999999997 + ], + [ + 19.417270002000066, + -34.68070999599996 + ], + [ + 19.41740000300007, + -34.68076000299993 + ], + [ + 19.417389996000054, + -34.68073000099997 + ], + [ + 19.41740000300007, + -34.680590001999974 + ], + [ + 19.417429997000056, + -34.680500001999974 + ], + [ + 19.417479996000054, + -34.68051999099998 + ], + [ + 19.417519997000056, + -34.68048000599998 + ], + [ + 19.417550000000062, + -34.68037000199996 + ], + [ + 19.417519997000056, + -34.680270003999965 + ], + [ + 19.417570004000027, + -34.68019000199996 + ], + [ + 19.41770000400004, + -34.680180003999965 + ], + [ + 19.417789996000067, + -34.68023000299996 + ], + [ + 19.417860000000076, + -34.680339998999955 + ], + [ + 19.41794999900003, + -34.68039999599995 + ], + [ + 19.41808000000003, + -34.680410001999974 + ], + [ + 19.418190004000053, + -34.68036001099995 + ], + [ + 19.41824000300005, + -34.68029999799995 + ], + [ + 19.41824000300005, + -34.680180003999965 + ], + [ + 19.418210000000045, + -34.68002999099997 + ], + [ + 19.418089998000028, + -34.67985999799998 + ], + [ + 19.41790000000003, + -34.67971000099993 + ], + [ + 19.417630001000077, + -34.67958999799998 + ], + [ + 19.41732999900006, + -34.67941999699997 + ], + [ + 19.417140002000053, + -34.67932999699997 + ], + [ + 19.41688000000005, + -34.67915999599995 + ], + [ + 19.416750000000036, + -34.67905999799996 + ], + [ + 19.416709999000034, + -34.67895999999996 + ], + [ + 19.416709999000034, + -34.67882999999995 + ], + [ + 19.416790001000038, + -34.67875999599994 + ], + [ + 19.416859996000028, + -34.67878000099995 + ], + [ + 19.41689999700003, + -34.67890000299997 + ], + [ + 19.416979998000045, + -34.67897000599993 + ], + [ + 19.41707999600004, + -34.67897000599993 + ], + [ + 19.41713001100004, + -34.67891999899996 + ], + [ + 19.41710000100005, + -34.67882999999995 + ], + [ + 19.417119997000043, + -34.67870999699994 + ], + [ + 19.41724000000005, + -34.67864000199995 + ], + [ + 19.41731000300007, + -34.67866999699993 + ], + [ + 19.417379998000058, + -34.67873999999995 + ], + [ + 19.417379998000058, + -34.67879999699994 + ], + [ + 19.417450002000066, + -34.67882999999995 + ], + [ + 19.417500001000064, + -34.67882999999995 + ], + [ + 19.417570004000027, + -34.67878000099995 + ], + [ + 19.417609997000056, + -34.67864000199995 + ], + [ + 19.417620011000054, + -34.67855999999995 + ], + [ + 19.417710003000025, + -34.67851999199996 + ], + [ + 19.417760002000023, + -34.678539995999984 + ], + [ + 19.417819999000073, + -34.67864000199995 + ], + [ + 19.417860000000076, + -34.67866999699993 + ], + [ + 19.41794999900003, + -34.67866999699993 + ], + [ + 19.41799000000003, + -34.678590002999954 + ], + [ + 19.41791999700007, + -34.67848999699993 + ], + [ + 19.41791999700007, + -34.67839999699993 + ], + [ + 19.417980002000036, + -34.67829999899993 + ], + [ + 19.418089998000028, + -34.67833000199994 + ], + [ + 19.418190004000053, + -34.67834999799993 + ], + [ + 19.418259999000043, + -34.67825999899998 + ], + [ + 19.41824000300005, + -34.67816000099998 + ], + [ + 19.41824000300005, + -34.67802999199995 + ], + [ + 19.418319997000026, + -34.67793000199998 + ], + [ + 19.418319997000026, + -34.67782999599996 + ], + [ + 19.418430001000047, + -34.67776000099997 + ], + [ + 19.418520000000058, + -34.67777999699996 + ], + [ + 19.418569999000056, + -34.67786999699996 + ], + [ + 19.418619998000054, + -34.677970002999984 + ], + [ + 19.418709998000054, + -34.67810000299994 + ], + [ + 19.418799998000054, + -34.67816000099998 + ] + ] + ], + [ + [ + [ + 19.456289997000056, + -34.39274000199998 + ], + [ + 19.495130001000064, + -34.39983000199993 + ], + [ + 19.499409998000033, + -34.398500000999945 + ], + [ + 19.514840003000074, + -34.39353000199998 + ], + [ + 19.524470000000065, + -34.390319998999985 + ], + [ + 19.555989999000076, + -34.38973999999996 + ], + [ + 19.548930006000035, + -34.395770004999974 + ], + [ + 19.68811000100004, + -34.765320000999964 + ], + [ + 19.687989999000024, + -34.76540000199998 + ], + [ + 19.687920003000045, + -34.76536999999996 + ], + [ + 19.687819997000076, + -34.76535000299998 + ], + [ + 19.687819997000076, + -34.765429996999956 + ], + [ + 19.687869996000074, + -34.765499999999975 + ], + [ + 19.687920003000045, + -34.765589999999975 + ], + [ + 19.687970002000043, + -34.76567000199998 + ], + [ + 19.68793000100004, + -34.76573999699997 + ], + [ + 19.68776999800008, + -34.76579000399994 + ], + [ + 19.68762999200004, + -34.76573999699997 + ], + [ + 19.687599997000063, + -34.76568999799997 + ], + [ + 19.68752000300003, + -34.76563999899997 + ], + [ + 19.687440002000073, + -34.76563999899997 + ], + [ + 19.687340004000077, + -34.76567000199998 + ], + [ + 19.687239998000052, + -34.765589999999975 + ], + [ + 19.687050000000056, + -34.765589999999975 + ], + [ + 19.686900003000062, + -34.76553000299998 + ], + [ + 19.686759997000024, + -34.76545000899995 + ], + [ + 19.686640002000047, + -34.76540000199998 + ], + [ + 19.686280003000036, + -34.76540000199998 + ], + [ + 19.68603999900006, + -34.76529999599995 + ], + [ + 19.685890002000065, + -34.76519999899995 + ], + [ + 19.685710002000064, + -34.76510999899995 + ], + [ + 19.685459999000045, + -34.76510999899995 + ], + [ + 19.685249997000028, + -34.765180001999965 + ], + [ + 19.685019999000076, + -34.76529999599995 + ], + [ + 19.684790000000078, + -34.765499999999975 + ], + [ + 19.68457999800006, + -34.76562000299998 + ], + [ + 19.68435000000005, + -34.76580999999993 + ], + [ + 19.684159994000026, + -34.76607999999993 + ], + [ + 19.68396999600003, + -34.76629000199995 + ], + [ + 19.683749988000045, + -34.76653999699994 + ], + [ + 19.683590009000056, + -34.76690000399998 + ], + [ + 19.683500001000027, + -34.767159996999965 + ], + [ + 19.68343999600006, + -34.767480002999946 + ], + [ + 19.683479997000063, + -34.76780999899995 + ], + [ + 19.683599999000023, + -34.76808999699995 + ], + [ + 19.683680001000027, + -34.76829000099997 + ], + [ + 19.683770000000038, + -34.768389998999965 + ], + [ + 19.683919997000032, + -34.76845000399993 + ], + [ + 19.68405999600003, + -34.76852999699997 + ], + [ + 19.684120009000026, + -34.76863000299994 + ], + [ + 19.677619999000058, + -34.78188000299997 + ], + [ + 19.677619999000058, + -34.781980000999965 + ], + [ + 19.677629997000054, + -34.78206000299997 + ], + [ + 19.677629997000054, + -34.782160000999966 + ], + [ + 19.677600002000077, + -34.78221999799996 + ], + [ + 19.67748000000006, + -34.78221999799996 + ], + [ + 19.677380002000064, + -34.78227000499993 + ], + [ + 19.67739000000006, + -34.78233000199998 + ], + [ + 19.67748000000006, + -34.78237000299998 + ], + [ + 19.677640003000022, + -34.78237000299998 + ], + [ + 19.677750007000043, + -34.78239999699997 + ], + [ + 19.671800002000055, + -34.783570001999976 + ], + [ + 19.671639998000046, + -34.78359999699995 + ], + [ + 19.67151999600003, + -34.78359999699995 + ], + [ + 19.67141999000006, + -34.783549997999955 + ], + [ + 19.671329998000033, + -34.78353999899997 + ], + [ + 19.671230000000037, + -34.783549997999955 + ], + [ + 19.671090002000028, + -34.78357999999997 + ], + [ + 19.671029997000062, + -34.783639996999966 + ], + [ + 19.670799998000064, + -34.78367999799997 + ], + [ + 19.67071999700005, + -34.78375000199998 + ], + [ + 19.67056000100007, + -34.78385999799997 + ], + [ + 19.670499996000046, + -34.78390999699997 + ], + [ + 19.670340001000056, + -34.784010002999935 + ], + [ + 19.670210001000044, + -34.78405000299995 + ], + [ + 19.67017000000004, + -34.784100001999946 + ], + [ + 19.67017000000004, + -34.784259996999936 + ], + [ + 19.67012999900004, + -34.78436000299996 + ], + [ + 19.669999999000026, + -34.784399995999934 + ], + [ + 19.669890002000045, + -34.784399995999934 + ], + [ + 19.669840003000047, + -34.784330000999944 + ], + [ + 19.669800003000034, + -34.784330000999944 + ], + [ + 19.669750004000036, + -34.78442999899994 + ], + [ + 19.669660004000036, + -34.784529996999936 + ], + [ + 19.669530003000034, + -34.78455000099996 + ], + [ + 19.669410001000074, + -34.784509999999955 + ], + [ + 19.669360002000076, + -34.78429999799994 + ], + [ + 19.66937000000007, + -34.78420999799994 + ], + [ + 19.669339998000055, + -34.78418000399995 + ], + [ + 19.66924000000006, + -34.78418000399995 + ], + [ + 19.669220003000078, + -34.78427000399995 + ], + [ + 19.66919000100006, + -34.784370001999946 + ], + [ + 19.669069998000055, + -34.78447999799994 + ], + [ + 19.668979999000044, + -34.784529996999936 + ], + [ + 19.668870003000052, + -34.78456999799994 + ], + [ + 19.66874000200005, + -34.78456999799994 + ], + [ + 19.668610001000047, + -34.78455000099996 + ], + [ + 19.66857999900003, + -34.784529996999936 + ], + [ + 19.66843999200006, + -34.78445000299996 + ], + [ + 19.66840000700006, + -34.78447999799994 + ], + [ + 19.668200003000038, + -34.78456999799994 + ], + [ + 19.668030002000023, + -34.78455000099996 + ], + [ + 19.667940002000023, + -34.78456999799994 + ], + [ + 19.667910008000035, + -34.784670002999974 + ], + [ + 19.667910008000035, + -34.78477000099997 + ], + [ + 19.667879997000057, + -34.78486000099997 + ], + [ + 19.667810002000067, + -34.78490999999997 + ], + [ + 19.66769000000005, + -34.78487999799995 + ], + [ + 19.638179999000045, + -34.779159997999955 + ], + [ + 19.638340002000064, + -34.77919999899996 + ], + [ + 19.638429994000035, + -34.77937999799997 + ], + [ + 19.63854998900007, + -34.77938999699995 + ], + [ + 19.63888999900007, + -34.77920999699995 + ], + [ + 19.639079997000067, + -34.779069997999954 + ], + [ + 19.639249998000025, + -34.778929999999946 + ], + [ + 19.63950999900004, + -34.77870999899994 + ], + [ + 19.63968999900004, + -34.77854999599998 + ], + [ + 19.63999000000007, + -34.77849999699998 + ], + [ + 19.640179998000065, + -34.778430001999936 + ], + [ + 19.64033000300003, + -34.77826000099998 + ], + [ + 19.640550003000044, + -34.77807000299998 + ], + [ + 19.64083000100004, + -34.77778000699993 + ], + [ + 19.641130003000058, + -34.77750999999995 + ], + [ + 19.641289998000047, + -34.77714000299994 + ], + [ + 19.641409992000035, + -34.776859996999974 + ], + [ + 19.641530002000025, + -34.77654999699996 + ], + [ + 19.641609996000057, + -34.776089999999954 + ], + [ + 19.641660003000027, + -34.77556999799998 + ], + [ + 19.641760001000023, + -34.775060001999975 + ], + [ + 19.641850001000023, + -34.77449999999993 + ], + [ + 19.641940000000034, + -34.77408000299994 + ], + [ + 19.61252999800007, + -34.75730999899997 + ], + [ + 19.612379993000047, + -34.75735999799997 + ], + [ + 19.612250001000064, + -34.757330002999936 + ], + [ + 19.612219998000057, + -34.757259999999974 + ], + [ + 19.612160001000063, + -34.757259999999974 + ], + [ + 19.612060003000067, + -34.757369995999966 + ], + [ + 19.611869997000042, + -34.75735999799997 + ], + [ + 19.611790004000056, + -34.75726999799997 + ], + [ + 19.61168999800003, + -34.75725000199998 + ], + [ + 19.61159999800003, + -34.75731999699997 + ], + [ + 19.60039999600008, + -34.74716999799995 + ], + [ + 19.600429999000028, + -34.747289999999964 + ], + [ + 19.60033000100003, + -34.74741999999998 + ], + [ + 19.60016999000004, + -34.74747999799996 + ], + [ + 19.60006000100003, + -34.74751999799997 + ], + [ + 19.59989999800007, + -34.747559998999975 + ], + [ + 19.599830003000022, + -34.74755000099998 + ], + [ + 19.599819997000054, + -34.74745000299998 + ], + [ + 19.599689996000052, + -34.74734999699996 + ], + [ + 19.599470004000068, + -34.74733999899996 + ], + [ + 19.59940000100005, + -34.74729999799996 + ], + [ + 19.599319999000045, + -34.74727000399997 + ], + [ + 19.59917000200005, + -34.74727000399997 + ], + [ + 19.599090001000036, + -34.747379999999964 + ], + [ + 19.59896999800003, + -34.74742999899996 + ], + [ + 19.598839998000074, + -34.74738999799996 + ], + [ + 19.598780000000033, + -34.747309995999956 + ], + [ + 19.59872000300004, + -34.74718000399997 + ], + [ + 19.598590003000027, + -34.74716999799995 + ], + [ + 19.598540012000058, + -34.74725999699996 + ], + [ + 19.59843999800006, + -34.74733999899996 + ], + [ + 19.598290001000066, + -34.747379999999964 + ], + [ + 19.598219998000047, + -34.74729999799996 + ], + [ + 19.598150002000068, + -34.74725999699996 + ], + [ + 19.598049996000043, + -34.74723000299997 + ], + [ + 19.597949998000047, + -34.74729999799996 + ], + [ + 19.597949998000047, + -34.74742999899996 + ], + [ + 19.597819998000034, + -34.74751999799997 + ], + [ + 19.597689997000032, + -34.74752999699996 + ], + [ + 19.597559997000076, + -34.74750999999998 + ], + [ + 19.597520012000075, + -34.74745000299998 + ], + [ + 19.597480003000044, + -34.74742999899996 + ], + [ + 19.597379997000075, + -34.74738999799996 + ], + [ + 19.59711999600006, + -34.74745000299998 + ], + [ + 19.596990004000077, + -34.747399987999984 + ], + [ + 19.596860003000074, + -34.74733999899996 + ], + [ + 19.594120002000068, + -34.73309000399996 + ], + [ + 19.594120002000068, + -34.73297999899995 + ], + [ + 19.594110004000072, + -34.73292999999995 + ], + [ + 19.594080001000066, + -34.732719997999936 + ], + [ + 19.59408999900006, + -34.73267999799998 + ], + [ + 19.594120002000068, + -34.73262999899998 + ], + [ + 19.59420999400004, + -34.732560002999946 + ], + [ + 19.594310000000064, + -34.73254999699998 + ], + [ + 19.594330004000028, + -34.73253000099993 + ], + [ + 19.594330004000028, + -34.732470003999936 + ], + [ + 19.594279997000058, + -34.732419996999965 + ], + [ + 19.59420999400004, + -34.732380003999936 + ], + [ + 19.594120002000068, + -34.73234000299993 + ], + [ + 19.59408999900006, + -34.73230000199993 + ], + [ + 19.571799999000064, + -34.72350999699995 + ], + [ + 19.571880001000068, + -34.723430003999965 + ], + [ + 19.572020000000066, + -34.72337999699994 + ], + [ + 19.572119990000033, + -34.72339000299996 + ], + [ + 19.57222000400003, + -34.72344000199996 + ], + [ + 19.572280001000024, + -34.72335999999996 + ], + [ + 19.572289999000077, + -34.72328999699994 + ], + [ + 19.57231000300004, + -34.72319000699997 + ], + [ + 19.572379999000077, + -34.72313000199995 + ], + [ + 19.57252999600007, + -34.72310999699994 + ], + [ + 19.572640000000035, + -34.72304000199995 + ], + [ + 19.572730000000035, + -34.72304000199995 + ], + [ + 19.572850002000052, + -34.72313000199995 + ], + [ + 19.57296999600004, + -34.723159995999936 + ], + [ + 19.57306000400007, + -34.72321000299996 + ], + [ + 19.57310000500007, + -34.72337999699994 + ], + [ + 19.572999999000047, + -34.72344000199996 + ], + [ + 19.57301999500004, + -34.72354999799995 + ], + [ + 19.573120001000063, + -34.723589998999955 + ], + [ + 19.573229997000055, + -34.72368999699995 + ], + [ + 19.57321999900006, + -34.72375999199994 + ], + [ + 19.573279996000053, + -34.723819996999964 + ], + [ + 19.57338000200002, + -34.72380000099997 + ], + [ + 19.57339999900006, + -34.72372000699994 + ], + [ + 19.573480000000075, + -34.72365000399998 + ], + [ + 19.573570000000075, + -34.723660001999974 + ], + [ + 19.573690002000035, + -34.723750001999974 + ], + [ + 19.57374999900003, + -34.72384999999997 + ], + [ + 19.573830001000033, + -34.72392000299993 + ], + [ + 19.57392999900003, + -34.72389000099997 + ], + [ + 19.573989996000023, + -34.72380000099997 + ], + [ + 19.537649997000074, + -34.69208999799997 + ], + [ + 19.537469997000073, + -34.69211999999993 + ], + [ + 19.537400002000027, + -34.69217999699998 + ], + [ + 19.537220002000026, + -34.692219997999985 + ], + [ + 19.537090010000043, + -34.69219000399994 + ], + [ + 19.537010000000066, + -34.69208999799997 + ], + [ + 19.537059999000064, + -34.69195999699997 + ], + [ + 19.537040003000072, + -34.69180000199998 + ], + [ + 19.537149999000064, + -34.691720000999965 + ], + [ + 19.53724998900003, + -34.69171000999995 + ], + [ + 19.537310002000027, + -34.69162000299997 + ], + [ + 19.53726000300003, + -34.69148000399997 + ], + [ + 19.537149999000064, + -34.69136999999995 + ], + [ + 19.537100000000066, + -34.69125999599993 + ], + [ + 19.536990004000074, + -34.69114999899995 + ], + [ + 19.536830001000055, + -34.69111999699993 + ], + [ + 19.536759990000064, + -34.69100000199995 + ], + [ + 19.536690002000057, + -34.69093999699993 + ], + [ + 19.536720005000063, + -34.690839998999934 + ], + [ + 19.536920001000055, + -34.69074999999998 + ], + [ + 19.536970000000053, + -34.69065999999998 + ], + [ + 19.536939997000047, + -34.69056999999998 + ], + [ + 19.536880000000053, + -34.69052000099998 + ], + [ + 19.536780002000057, + -34.69047999999998 + ], + [ + 19.536759990000064, + -34.69039000099997 + ], + [ + 19.53677000400006, + -34.69032000499993 + ], + [ + 19.536780002000057, + -34.690239995999946 + ], + [ + 19.536740001000055, + -34.69012000099997 + ], + [ + 19.53660001000003, + -34.690080000999956 + ], + [ + 19.53646000400005, + -34.69007000199997 + ], + [ + 19.536399999000025, + -34.69016000199997 + ], + [ + 19.536190004000048, + -34.69013999799995 + ], + [ + 19.536049998000067, + -34.69013999799995 + ], + [ + 19.535959998000067, + -34.69007000199997 + ], + [ + 19.535890003000077, + -34.68994999999995 + ], + [ + 19.535779998000066, + -34.68993000399996 + ], + [ + 19.53563000200006, + -34.68994999999995 + ], + [ + 19.535599999000056, + -34.69007000199997 + ], + [ + 19.535640000000058, + -34.690200010999945 + ], + [ + 19.535599999000056, + -34.69030000099997 + ], + [ + 19.53545000200006, + -34.69033000299993 + ], + [ + 19.53533999800004, + -34.69025999999997 + ], + [ + 19.53529999700004, + -34.690150003999975 + ], + [ + 19.53523000200005, + -34.69002000299997 + ], + [ + 19.535129996000023, + -34.689990000999956 + ], + [ + 19.535039996000023, + -34.68990999899995 + ], + [ + 19.53485999700007, + -34.68985999999995 + ], + [ + 19.53484000000003, + -34.68998000299996 + ], + [ + 19.534849998000027, + -34.690059995999945 + ], + [ + 19.534690003000037, + -34.69011000299997 + ], + [ + 19.534510004000026, + -34.69011000299997 + ], + [ + 19.495539999000073, + -34.671620004999966 + ], + [ + 19.495570002000022, + -34.671779999999956 + ], + [ + 19.495490000000075, + -34.67186000199996 + ], + [ + 19.495360008000034, + -34.671850003999964 + ], + [ + 19.49531999900006, + -34.671779999999956 + ], + [ + 19.495189999000047, + -34.67173000099996 + ], + [ + 19.495130001000064, + -34.67181000299996 + ], + [ + 19.495099999000047, + -34.67191000099996 + ], + [ + 19.494990003000055, + -34.67191000099996 + ], + [ + 19.494940004000057, + -34.672009998999954 + ], + [ + 19.494860002000053, + -34.67206999599995 + ], + [ + 19.49470999700003, + -34.67208999999997 + ], + [ + 19.494579997000073, + -34.67201999699995 + ], + [ + 19.494489997000073, + -34.671869999999956 + ], + [ + 19.49455000200004, + -34.67173000099996 + ], + [ + 19.494489997000073, + -34.671620004999966 + ], + [ + 19.494399997000073, + -34.67165998999997 + ], + [ + 19.494379993000052, + -34.67174999799994 + ], + [ + 19.494309997000073, + -34.67186000199996 + ], + [ + 19.494219998000062, + -34.671869999999956 + ], + [ + 19.494129998000062, + -34.67181000299996 + ], + [ + 19.49399999700006, + -34.671690000999945 + ], + [ + 19.494030000000066, + -34.67153999599998 + ], + [ + 19.49392999400004, + -34.67146999999994 + ], + [ + 19.49381999800005, + -34.67152999799998 + ], + [ + 19.493530002000057, + -34.67156999799994 + ], + [ + 19.49339000300006, + -34.67146000199995 + ], + [ + 19.493350003000046, + -34.67137000199995 + ], + [ + 19.493260003000046, + -34.67126999699997 + ], + [ + 19.493220002000044, + -34.67111000099993 + ], + [ + 19.493329998000036, + -34.671070000999975 + ], + [ + 19.493440002000057, + -34.671049995999965 + ], + [ + 19.493339997000078, + -34.67094999799997 + ], + [ + 19.49336000900007, + -34.67084999999997 + ], + [ + 19.493490001000055, + -34.670819997999956 + ], + [ + 19.493549999000038, + -34.67083000399998 + ], + [ + 19.493620002000057, + -34.67076999899996 + ], + [ + 19.496010002000048, + -34.66878999599993 + ], + [ + 19.496079998000027, + -34.668869997999934 + ], + [ + 19.496129997000025, + -34.66897000399996 + ], + [ + 19.49620999800004, + -34.66900999699993 + ], + [ + 19.496330001000047, + -34.66900999699993 + ], + [ + 19.49643999700004, + -34.66898999999995 + ], + [ + 19.496510000000058, + -34.66906000299997 + ], + [ + 19.496649999000056, + -34.66900999699993 + ], + [ + 19.49677999900007, + -34.668869997999934 + ], + [ + 19.496969997000065, + -34.66873999699993 + ], + [ + 19.496990002000075, + -34.66864999799998 + ], + [ + 19.496900002000075, + -34.668620002999944 + ], + [ + 19.496739999000056, + -34.66858999999994 + ], + [ + 19.492300000000057, + -34.668410000999984 + ], + [ + 19.492210001000046, + -34.66846999799998 + ], + [ + 19.492139997000038, + -34.66858999999994 + ], + [ + 19.491940001000046, + -34.66858999999994 + ], + [ + 19.49177000000003, + -34.668570003999946 + ], + [ + 19.456289997000056, + -34.39274000199998 + ] + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/in/point.geojson b/lib/turf-simplify/test/in/point.geojson new file mode 100644 index 0000000..2ae4810 --- /dev/null +++ b/lib/turf-simplify/test/in/point.geojson @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 5, + 1 + ] + } +} \ No newline at end of file diff --git a/lib/turf-simplify/test/in/poly-issue#555-5.geojson b/lib/turf-simplify/test/in/poly-issue#555-5.geojson new file mode 100644 index 0000000..ba34f85 --- /dev/null +++ b/lib/turf-simplify/test/in/poly-issue#555-5.geojson @@ -0,0 +1,183 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 0.00005 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.788024, + 45.345283 + ], + [ + -75.788012, + 45.345262 + ], + [ + -75.787966, + 45.345274 + ], + [ + -75.787959, + 45.345262 + ], + [ + -75.787947, + 45.345266 + ], + [ + -75.787931, + 45.345237 + ], + [ + -75.787943, + 45.345234 + ], + [ + -75.787928, + 45.345207 + ], + [ + -75.787999, + 45.345187 + ], + [ + -75.787975, + 45.345143 + ], + [ + -75.787906, + 45.345162 + ], + [ + -75.7879, + 45.345151 + ], + [ + -75.787897, + 45.345152 + ], + [ + -75.787882, + 45.345125 + ], + [ + -75.787872, + 45.345128 + ], + [ + -75.787855, + 45.345099 + ], + [ + -75.787866, + 45.345096 + ], + [ + -75.787862, + 45.345088 + ], + [ + -75.787855, + 45.34509 + ], + [ + -75.787832, + 45.345086 + ], + [ + -75.787825, + 45.345069 + ], + [ + -75.787842, + 45.345056 + ], + [ + -75.787867, + 45.34506 + ], + [ + -75.787872, + 45.345081 + ], + [ + -75.787903, + 45.345073 + ], + [ + -75.787897, + 45.345052 + ], + [ + -75.787913, + 45.345048 + ], + [ + -75.78792, + 45.345059 + ], + [ + -75.787928, + 45.345056 + ], + [ + -75.787928, + 45.345055 + ], + [ + -75.788023, + 45.345028 + ], + [ + -75.78814, + 45.345236 + ], + [ + -75.788044, + 45.345263 + ], + [ + -75.788043, + 45.345262 + ], + [ + -75.78804, + 45.345263 + ], + [ + -75.788032, + 45.345265 + ], + [ + -75.78804, + 45.345279 + ], + [ + -75.788024, + 45.345283 + ] + ], + [ + [ + -75.787933, + 45.345065 + ], + [ + -75.78793, + 45.34506 + ], + [ + -75.78793, + 45.345066 + ], + [ + -75.787933, + 45.345065 + ] + ] + ] + } +} \ No newline at end of file diff --git a/lib/turf-simplify/test/in/polygon.geojson b/lib/turf-simplify/test/in/polygon.geojson new file mode 100644 index 0000000..a154d16 --- /dev/null +++ b/lib/turf-simplify/test/in/polygon.geojson @@ -0,0 +1,734 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 1, + "elevation": 25 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.51527029981442, + 39.11245 + ], + [ + -75.39282224024916, + 39.12823474024917 + ], + [ + -75.3770375, + 39.135447305104925 + ], + [ + -75.35235519043113, + 39.13713230956888 + ], + [ + -75.34721355956887, + 39.13713230956888 + ], + [ + -75.32253125, + 39.139083755473514 + ], + [ + -75.29670096335326, + 39.141125963353275 + ], + [ + -75.29326540004632, + 39.14171584995367 + ], + [ + -75.268025, + 39.14408623760705 + ], + [ + -75.25277832507136, + 39.15170957507138 + ], + [ + -75.24515498760704, + 39.166956250000005 + ], + [ + -75.23985410433178, + 39.1932916043318 + ], + [ + -75.23985410433178, + 39.19512714566821 + ], + [ + -75.23607469121049, + 39.2214625 + ], + [ + -75.23324391324394, + 39.24118766324395 + ], + [ + -75.23324391324394, + 39.25624358675606 + ], + [ + -75.23104443417348, + 39.27596875 + ], + [ + -75.22621125895654, + 39.28866125895655 + ], + [ + -75.21351874999999, + 39.30405720540773 + ], + [ + -75.19590688693847, + 39.31286313693849 + ], + [ + -75.18710095540773, + 39.33047500000001 + ], + [ + -75.18476066926435, + 39.35622316926436 + ], + [ + -75.18476066926435, + 39.359233080735656 + ], + [ + -75.1827803677246, + 39.38498125 + ], + [ + -75.18108292305178, + 39.407051673051775 + ], + [ + -75.18108292305178, + 39.41741707694823 + ], + [ + -75.17961177196392, + 39.439487500000006 + ], + [ + -75.17842510611122, + 39.4589001061112 + ], + [ + -75.17842510611122, + 39.474581143888805 + ], + [ + -75.1773677140917, + 39.49399375 + ], + [ + -75.17806096906195, + 39.513042219061944 + ], + [ + -75.17806096906195, + 39.52945153093805 + ], + [ + -75.17880864635877, + 39.548500000000004 + ], + [ + -75.17436569692443, + 39.56385319692442 + ], + [ + -75.1590125, + 39.57861883514683 + ], + [ + -75.14275422343123, + 39.586747973431216 + ], + [ + -75.13462508514682, + 39.60300625000001 + ], + [ + -75.13199158752832, + 39.630027162471684 + ], + [ + -75.13192154096123, + 39.63042154096124 + ], + [ + -75.12971192190646, + 39.6575125 + ], + [ + -75.12958254641065, + 39.68258879641065 + ], + [ + -75.12958254641065, + 39.68694245358936 + ], + [ + -75.12945449224796, + 39.712018750000006 + ], + [ + -75.13075282512311, + 39.73826532512311 + ], + [ + -75.13075282512311, + 39.74027842487689 + ], + [ + -75.13219370977114, + 39.766525 + ], + [ + -75.13492951020307, + 39.79060798979694 + ], + [ + -75.13711471606355, + 39.799133466063545 + ], + [ + -75.14033360353974, + 39.821031250000004 + ], + [ + -75.1408737447648, + 39.839170005235225 + ], + [ + -75.14206588619443, + 39.85859088619443 + ], + [ + -75.14260248550531, + 39.87553750000001 + ], + [ + -75.14807249033687, + 39.88647750966314 + ], + [ + -75.1590125, + 39.8919475144947 + ], + [ + -75.17435420501783, + 39.89087920501784 + ], + [ + -75.20237093707816, + 39.886685312921855 + ], + [ + -75.21351874999999, + 39.88578343964871 + ], + [ + -75.22299781995783, + 39.88501656995784 + ], + [ + -75.26614108689465, + 39.87742141310536 + ], + [ + -75.268025, + 39.877239581040996 + ], + [ + -75.26957725960418, + 39.87708975960419 + ], + [ + -75.27684240189953, + 39.87553750000001 + ], + [ + -75.28419540106952, + 39.85936709893049 + ], + [ + -75.29112392832597, + 39.84413017832599 + ], + [ + -75.30162746500874, + 39.821031250000004 + ], + [ + -75.30816161875036, + 39.806661618750354 + ], + [ + -75.32253125, + 39.77506054072003 + ], + [ + -75.32519930917472, + 39.76919305917473 + ], + [ + -75.32641252811797, + 39.766525 + ], + [ + -75.3296491997708, + 39.75940705022919 + ], + [ + -75.34223699959911, + 39.73172449959911 + ], + [ + -75.35119759122719, + 39.712018750000006 + ], + [ + -75.36046052535204, + 39.69544177535203 + ], + [ + -75.3754130206531, + 39.659136979346904 + ], + [ + -75.37616437518106, + 39.6575125 + ], + [ + -75.3766762492428, + 39.65715124924281 + ], + [ + -75.3770375, + 39.65615200822954 + ], + [ + -75.39832547007784, + 39.62429422007785 + ], + [ + -75.4082395514723, + 39.60300625000001 + ], + [ + -75.4215797545908, + 39.5930422545908 + ], + [ + -75.43154375, + 39.56834216367474 + ], + [ + -75.45835566060614, + 39.57531191060614 + ], + [ + -75.45895426960922, + 39.5755957303908 + ], + [ + -75.48605, + 39.57947734440668 + ], + [ + -75.48898805047145, + 39.60006819952855 + ], + [ + -75.48994051537133, + 39.60300625 + ], + [ + -75.49123821601205, + 39.60819446601205 + ], + [ + -75.49220788576012, + 39.651354614239885 + ], + [ + -75.49509104207014, + 39.6575125 + ], + [ + -75.50305100880664, + 39.67451350880663 + ], + [ + -75.50416029911807, + 39.69390845088193 + ], + [ + -75.52933401544658, + 39.70079651544659 + ], + [ + -75.54055625, + 39.707797525000004 + ], + [ + -75.5417414003631, + 39.71083359963691 + ], + [ + -75.54210361986804, + 39.71201875000001 + ], + [ + -75.5424789600527, + 39.71394146005272 + ], + [ + -75.5438968233805, + 39.76318442661949 + ], + [ + -75.54488896795854, + 39.766525 + ], + [ + -75.54664835702378, + 39.77261710702379 + ], + [ + -75.54776976280363, + 39.81381773719638 + ], + [ + -75.55227698676161, + 39.821031250000004 + ], + [ + -75.56289470095811, + 39.84336970095812 + ], + [ + -75.56358754189749, + 39.852506208102504 + ], + [ + -75.57539756961809, + 39.8558725696181 + ], + [ + -75.59506249999998, + 39.868174228685255 + ], + [ + -75.59931300492002, + 39.871286995079984 + ], + [ + -75.60432992735852, + 39.87553750000001 + ], + [ + -75.63504292712292, + 39.89006332287709 + ], + [ + -75.64956874999999, + 39.89284139354837 + ], + [ + -75.66838020678718, + 39.89434895678719 + ], + [ + -75.68308195946902, + 39.896530540530996 + ], + [ + -75.704075, + 39.89798053092993 + ], + [ + -75.72818318448331, + 39.89964568448332 + ], + [ + -75.73375331940231, + 39.9003654305977 + ], + [ + -75.75858125, + 39.901872157624666 + ], + [ + -75.78514101585267, + 39.90348398414733 + ], + [ + -75.78652773414733, + 39.90348398414733 + ], + [ + -75.8130875, + 39.904921352207175 + ], + [ + -75.83722610887358, + 39.905905141126446 + ], + [ + -75.84345514112644, + 39.905905141126446 + ], + [ + -75.86759375, + 39.906814783587755 + ], + [ + -75.88844527239183, + 39.89638902239184 + ], + [ + -75.89887103358774, + 39.87553750000001 + ], + [ + -75.89854841478977, + 39.85198591478977 + ], + [ + -75.89854841478977, + 39.84458283521024 + ], + [ + -75.89821670830216, + 39.821031250000004 + ], + [ + -75.89787552465965, + 39.79680677465965 + ], + [ + -75.89787552465965, + 39.79074947534036 + ], + [ + -75.89752445181962, + 39.766525 + ], + [ + -75.89716305350223, + 39.74158805350222 + ], + [ + -75.89716305350223, + 39.73695569649778 + ], + [ + -75.89679086738143, + 39.712018750000006 + ], + [ + -75.89640740311208, + 39.686326153112084 + ], + [ + -75.89640740311208, + 39.683205096887924 + ], + [ + -75.89601214017446, + 39.6575125 + ], + [ + -75.89560452551711, + 39.63101702551712 + ], + [ + -75.89560452551711, + 39.6295017244829 + ], + [ + -75.8951839709748, + 39.60300625000001 + ], + [ + -75.89475288239396, + 39.57584711760604 + ], + [ + -75.8947466163539, + 39.57565286635391 + ], + [ + -75.89430149673764, + 39.548500000000004 + ], + [ + -75.89387073552223, + 39.52222301447779 + ], + [ + -75.89380341704393, + 39.520203417043916 + ], + [ + -75.8933591950366, + 39.49399375 + ], + [ + -75.89292978011362, + 39.468657719886366 + ], + [ + -75.89279284789451, + 39.46468659789453 + ], + [ + -75.89235076838531, + 39.439487500000006 + ], + [ + -75.8913260472361, + 39.4157552027639 + ], + [ + -75.89062746202809, + 39.408014962028105 + ], + [ + -75.88953890003162, + 39.38498125 + ], + [ + -75.88715925199065, + 39.365415748009355 + ], + [ + -75.88127062628152, + 39.34415187628153 + ], + [ + -75.87907248368842, + 39.33047500000001 + ], + [ + -75.87748307496805, + 39.32058567503195 + ], + [ + -75.86759375, + 39.29476457315633 + ], + [ + -75.85538716547042, + 39.288175334529576 + ], + [ + -75.8282870350059, + 39.275968750000004 + ], + [ + -75.8173286270748, + 39.27172762292521 + ], + [ + -75.8130875, + 39.25578472660005 + ], + [ + -75.79794874486377, + 39.236601255136236 + ], + [ + -75.79760439720079, + 39.2214625 + ], + [ + -75.7676722437337, + 39.2123715062663 + ], + [ + -75.75858125, + 39.21117295929072 + ], + [ + -75.74836987958975, + 39.21125112958973 + ], + [ + -75.7137522708571, + 39.21178522914291 + ], + [ + -75.704075, + 39.21186046264999 + ], + [ + -75.67996146438593, + 39.19734896438593 + ], + [ + -75.66694581884633, + 39.20408543115368 + ], + [ + -75.67566107970288, + 39.193048579702875 + ], + [ + -75.67054949218115, + 39.166956250000005 + ], + [ + -75.6635559114541, + 39.15296908854591 + ], + [ + -75.64956874999999, + 39.145975507818854 + ], + [ + -75.62914609464218, + 39.14653359464219 + ], + [ + -75.61467186011258, + 39.14734688988742 + ], + [ + -75.5950625, + 39.14791373192817 + ], + [ + -75.57631446045869, + 39.148208210458705 + ], + [ + -75.5587435012753, + 39.148768998724705 + ], + [ + -75.54055625, + 39.14906393405724 + ], + [ + -75.52104203854152, + 39.13196421145847 + ], + [ + -75.51527029981442, + 39.11245 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/in/simple-polygon.geojson b/lib/turf-simplify/test/in/simple-polygon.geojson new file mode 100644 index 0000000..bcaaa7b --- /dev/null +++ b/lib/turf-simplify/test/in/simple-polygon.geojson @@ -0,0 +1,325 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 100 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 26.148429528000065, + -28.29755210099995 + ], + [ + 26.148582685000065, + -28.29778390599995 + ], + [ + 26.149207731000047, + -28.29773837299996 + ], + [ + 26.14925541100007, + -28.297771688999944 + ], + [ + 26.149255844000038, + -28.297773261999964 + ], + [ + 26.149276505000046, + -28.29784835099997 + ], + [ + 26.14928482700003, + -28.29787859399994 + ], + [ + 26.14928916200006, + -28.29800647199994 + ], + [ + 26.14931069800008, + -28.298641791999955 + ], + [ + 26.149339971000074, + -28.298641232999955 + ], + [ + 26.151298488000066, + -28.29860385099994 + ], + [ + 26.151290002000053, + -28.298628995999934 + ], + [ + 26.151417002000073, + -28.299308003999954 + ], + [ + 26.15159000400007, + -28.299739003999946 + ], + [ + 26.151951998000072, + -28.30051100299994 + ], + [ + 26.15206407200003, + -28.30076885099993 + ], + [ + 26.152066543000046, + -28.30077453499996 + ], + [ + 26.151987021000025, + -28.300799009999935 + ], + [ + 26.149896693000073, + -28.301442350999935 + ], + [ + 26.150354333000053, + -28.30260575099993 + ], + [ + 26.14914131000006, + -28.302975170999957 + ], + [ + 26.14836387300005, + -28.302853868999932 + ], + [ + 26.147575408000023, + -28.30269948399996 + ], + [ + 26.146257624000043, + -28.302462392999928 + ], + [ + 26.14557943400007, + -28.302181192999967 + ], + [ + 26.145492669000078, + -28.302154609999945 + ], + [ + 26.144921243000056, + -28.303395982999973 + ], + [ + 26.14482272200007, + -28.30455853999996 + ], + [ + 26.14431040900007, + -28.30451913099995 + ], + [ + 26.14429070400007, + -28.304144747999942 + ], + [ + 26.143837504000032, + -28.304144747999942 + ], + [ + 26.143613499000026, + -28.304592757999956 + ], + [ + 26.14346312200007, + -28.304893512999968 + ], + [ + 26.143260178000048, + -28.304893512999968 + ], + [ + 26.143246374000057, + -28.304893512999968 + ], + [ + 26.143147852000027, + -28.304893512999968 + ], + [ + 26.14295080900007, + -28.304834399999947 + ], + [ + 26.14200500000004, + -28.30449942699994 + ], + [ + 26.14198529600003, + -28.304420608999976 + ], + [ + 26.141525339000054, + -28.304298579999966 + ], + [ + 26.141019783000047, + -28.30416445299994 + ], + [ + 26.141118305000077, + -28.304637356999933 + ], + [ + 26.140940966000073, + -28.30512996599998 + ], + [ + 26.140376789000072, + -28.306172836999963 + ], + [ + 26.140476282000066, + -28.30621363399996 + ], + [ + 26.14041675800007, + -28.306326533999936 + ], + [ + 26.140146555000058, + -28.30640398099996 + ], + [ + 26.140073975000064, + -28.306410747999962 + ], + [ + 26.137315367000042, + -28.305189078999945 + ], + [ + 26.136645419000047, + -28.304854104999947 + ], + [ + 26.135719315000074, + -28.30451913099995 + ], + [ + 26.135515376000058, + -28.304330879999952 + ], + [ + 26.13546315800005, + -28.304282678999982 + ], + [ + 26.13558800000004, + -28.30419999999998 + ], + [ + 26.137463000000025, + -28.30242899999996 + ], + [ + 26.13794500000006, + -28.30202799999995 + ], + [ + 26.13796479100006, + -28.30201049699997 + ], + [ + 26.13798299700005, + -28.302025000999947 + ], + [ + 26.139450004000025, + -28.30074499999995 + ], + [ + 26.141302000000053, + -28.29914199999996 + ], + [ + 26.141913997000074, + -28.29862600399997 + ], + [ + 26.14212216900006, + -28.29845037299998 + ], + [ + 26.144304360000035, + -28.296499429999983 + ], + [ + 26.144799071000023, + -28.29614006399993 + ], + [ + 26.145209090000037, + -28.295759748999956 + ], + [ + 26.145465732000048, + -28.295507246999932 + ], + [ + 26.14575028200005, + -28.295352539999953 + ], + [ + 26.14589208800004, + -28.295275441999934 + ], + [ + 26.146584820000044, + -28.295135245999973 + ], + [ + 26.146587504000024, + -28.295134702999974 + ], + [ + 26.146827588000065, + -28.295606591999956 + ], + [ + 26.14685742000006, + -28.29565372899998 + ], + [ + 26.14691261200005, + -28.29574093599996 + ], + [ + 26.147077344000024, + -28.296001226999977 + ], + [ + 26.147117344000037, + -28.296041226999932 + ], + [ + 26.147907966000048, + -28.29696016899993 + ], + [ + 26.147913396000035, + -28.296966331999954 + ], + [ + 26.148429528000065, + -28.29755210099995 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/argentina.geojson b/lib/turf-simplify/test/out/argentina.geojson new file mode 100644 index 0000000..642ba65 --- /dev/null +++ b/lib/turf-simplify/test/out/argentina.geojson @@ -0,0 +1,419 @@ +{ + "type": "Feature", + "id": "ARG", + "properties": { + "tolerance": 0.1, + "name": "Argentina" + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -64.964892, + -22.075862 + ], + [ + -64.377021, + -22.798091 + ], + [ + -63.986838, + -21.993644 + ], + [ + -62.846468, + -22.034985 + ], + [ + -60.846565, + -23.880713 + ], + [ + -60.028966, + -24.032796 + ], + [ + -58.807128, + -24.771459 + ], + [ + -57.777217, + -25.16234 + ], + [ + -57.63366, + -25.603657 + ], + [ + -58.618174, + -27.123719 + ], + [ + -56.486702, + -27.548499 + ], + [ + -55.695846, + -27.387837 + ], + [ + -54.788795, + -26.621786 + ], + [ + -54.625291, + -25.739255 + ], + [ + -54.13005, + -25.547639 + ], + [ + -53.628349, + -26.124865 + ], + [ + -53.648735, + -26.923473 + ], + [ + -55.162286, + -27.881915 + ], + [ + -57.625133, + -30.216295 + ], + [ + -58.14244, + -32.044504 + ], + [ + -58.132648, + -33.040567 + ], + [ + -58.349611, + -33.263189 + ], + [ + -58.495442, + -34.43149 + ], + [ + -57.22583, + -35.288027 + ], + [ + -57.362359, + -35.97739 + ], + [ + -56.737487, + -36.413126 + ], + [ + -56.788285, + -36.901572 + ], + [ + -57.749157, + -38.183871 + ], + [ + -59.231857, + -38.72022 + ], + [ + -61.237445, + -38.928425 + ], + [ + -62.335957, + -38.827707 + ], + [ + -62.125763, + -39.424105 + ], + [ + -62.330531, + -40.172586 + ], + [ + -62.145994, + -40.676897 + ], + [ + -62.745803, + -41.028761 + ], + [ + -63.770495, + -41.166789 + ], + [ + -64.73209, + -40.802677 + ], + [ + -65.118035, + -41.064315 + ], + [ + -64.978561, + -42.058001 + ], + [ + -64.303408, + -42.359016 + ], + [ + -63.755948, + -42.043687 + ], + [ + -63.458059, + -42.563138 + ], + [ + -64.378804, + -42.873558 + ], + [ + -65.181804, + -43.495381 + ], + [ + -65.328823, + -44.501366 + ], + [ + -65.565269, + -45.036786 + ], + [ + -66.509966, + -45.039628 + ], + [ + -67.293794, + -45.551896 + ], + [ + -67.580546, + -46.301773 + ], + [ + -66.597066, + -47.033925 + ], + [ + -65.641027, + -47.236135 + ], + [ + -65.985088, + -48.133289 + ], + [ + -67.166179, + -48.697337 + ], + [ + -67.816088, + -49.869669 + ], + [ + -68.728745, + -50.264218 + ], + [ + -69.138539, + -50.73251 + ], + [ + -68.815561, + -51.771104 + ], + [ + -68.149995, + -52.349983 + ], + [ + -71.914804, + -52.009022 + ], + [ + -72.329404, + -51.425956 + ], + [ + -72.309974, + -50.67701 + ], + [ + -72.975747, + -50.74145 + ], + [ + -73.328051, + -50.378785 + ], + [ + -73.415436, + -49.318436 + ], + [ + -72.648247, + -48.878618 + ], + [ + -72.331161, + -48.244238 + ], + [ + -72.447355, + -47.738533 + ], + [ + -71.917258, + -46.884838 + ], + [ + -71.552009, + -45.560733 + ], + [ + -71.659316, + -44.973689 + ], + [ + -71.222779, + -44.784243 + ], + [ + -71.329801, + -44.407522 + ], + [ + -71.793623, + -44.207172 + ], + [ + -71.464056, + -43.787611 + ], + [ + -71.915424, + -43.408565 + ], + [ + -72.148898, + -42.254888 + ], + [ + -71.746804, + -42.051386 + ], + [ + -71.915734, + -40.832339 + ], + [ + -71.413517, + -38.916022 + ], + [ + -70.814664, + -38.552995 + ], + [ + -71.118625, + -37.576827 + ], + [ + -71.121881, + -36.658124 + ], + [ + -70.364769, + -36.005089 + ], + [ + -70.388049, + -35.169688 + ], + [ + -69.817309, + -34.193571 + ], + [ + -69.814777, + -33.273886 + ], + [ + -70.074399, + -33.09121 + ], + [ + -70.535069, + -31.36501 + ], + [ + -69.919008, + -30.336339 + ], + [ + -70.01355, + -29.367923 + ], + [ + -69.65613, + -28.459141 + ], + [ + -69.001235, + -27.521214 + ], + [ + -68.295542, + -26.89934 + ], + [ + -68.5948, + -26.506909 + ], + [ + -68.386001, + -26.185016 + ], + [ + -68.417653, + -24.518555 + ], + [ + -67.328443, + -24.025303 + ], + [ + -66.985234, + -22.986349 + ], + [ + -67.106674, + -22.735925 + ], + [ + -66.273339, + -21.83231 + ], + [ + -64.964892, + -22.075862 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/featurecollection.geojson b/lib/turf-simplify/test/out/featurecollection.geojson new file mode 100644 index 0000000..f391b44 --- /dev/null +++ b/lib/turf-simplify/test/out/featurecollection.geojson @@ -0,0 +1,136 @@ +{ + "type": "FeatureCollection", + "properties": { + "tolerance": 0.01 + }, + "features": [ + { + "type": "Feature", + "properties": { + "id": 1 + }, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + 27.977543, + -26.175005 + ], + [ + 27.964325, + -26.183016 + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 2 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.97205, + -26.199035 + ], + [ + 27.984066, + -26.192258 + ], + [ + 27.987156, + -26.201346 + ], + [ + 27.97205, + -26.199035 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 3 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946644, + -26.170845 + ], + [ + 27.942696, + -26.183632 + ], + [ + 27.928619, + -26.165299 + ], + [ + 27.945099, + -26.158982 + ], + [ + 27.954025, + -26.173464 + ], + [ + 27.936172, + -26.194877 + ], + [ + 27.916603, + -26.16684 + ], + [ + 27.930336, + -26.188561 + ], + [ + 27.946644, + -26.170845 + ] + ], + [ + [ + 27.936859, + -26.165915 + ], + [ + 27.934971, + -26.173927 + ], + [ + 27.941494, + -26.170075 + ], + [ + 27.936859, + -26.165915 + ] + ] + ] + } + }, + { + "type": "Feature", + "properties": { + "id": 4 + }, + "geometry": { + "type": "Point", + "coordinates": [ + 27.956429, + -26.15251 + ] + } + } + ] +} diff --git a/lib/turf-simplify/test/out/fiji-hiQ.geojson b/lib/turf-simplify/test/out/fiji-hiQ.geojson new file mode 100644 index 0000000..d1bc43b --- /dev/null +++ b/lib/turf-simplify/test/out/fiji-hiQ.geojson @@ -0,0 +1,70 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 0.005, + "highQuality": true + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 179.975281, + -16.51477 + ], + [ + 179.980431, + -16.539127 + ], + [ + 180.0103, + -16.523328 + ], + [ + 180.007553, + -16.534848 + ], + [ + 180.018196, + -16.539127 + ], + [ + 180.061455, + -16.525632 + ], + [ + 180.066605, + -16.513124 + ], + [ + 180.046349, + -16.479547 + ], + [ + 180.086861, + -16.44761 + ], + [ + 180.084114, + -16.441354 + ], + [ + 180.055618, + -16.439707 + ], + [ + 180.026093, + -16.464732 + ], + [ + 180.01442, + -16.464073 + ], + [ + 179.975281, + -16.51477 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/geometrycollection.geojson b/lib/turf-simplify/test/out/geometrycollection.geojson new file mode 100644 index 0000000..ff5ac8b --- /dev/null +++ b/lib/turf-simplify/test/out/geometrycollection.geojson @@ -0,0 +1,109 @@ +{ + "type": "GeometryCollection", + "geometries": [ + { + "type": "LineString", + "coordinates": [ + [ + 27.977543, + -26.175005 + ], + [ + 27.964325, + -26.183016 + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.97205, + -26.199035 + ], + [ + 27.984066, + -26.192258 + ], + [ + 27.987156, + -26.201346 + ], + [ + 27.97205, + -26.199035 + ] + ] + ] + }, + { + "type": "Polygon", + "coordinates": [ + [ + [ + 27.946644, + -26.170845 + ], + [ + 27.942696, + -26.183632 + ], + [ + 27.928619, + -26.165299 + ], + [ + 27.945099, + -26.158982 + ], + [ + 27.954025, + -26.173464 + ], + [ + 27.936172, + -26.194877 + ], + [ + 27.916603, + -26.16684 + ], + [ + 27.930336, + -26.188561 + ], + [ + 27.946644, + -26.170845 + ] + ], + [ + [ + 27.936859, + -26.165915 + ], + [ + 27.934971, + -26.173927 + ], + [ + 27.941494, + -26.170075 + ], + [ + 27.936859, + -26.165915 + ] + ] + ] + }, + { + "type": "Point", + "coordinates": [ + 27.956429, + -26.15251 + ] + } + ] +} diff --git a/lib/turf-simplify/test/out/issue-#1144.geojson b/lib/turf-simplify/test/out/issue-#1144.geojson new file mode 100644 index 0000000..6049499 --- /dev/null +++ b/lib/turf-simplify/test/out/issue-#1144.geojson @@ -0,0 +1,43 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -70.603637, + -33.399918 + ], + [ + -70.683975, + -33.404504 + ], + [ + -70.701141, + -33.434306 + ], + [ + -70.694274, + -33.458369 + ], + [ + -70.668869, + -33.472117 + ], + [ + -70.609817, + -33.468107 + ], + [ + -70.587158, + -33.442901 + ], + [ + -70.603637, + -33.399918 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/linestring.geojson b/lib/turf-simplify/test/out/linestring.geojson new file mode 100644 index 0000000..d9903af --- /dev/null +++ b/lib/turf-simplify/test/out/linestring.geojson @@ -0,0 +1,105 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "LineString", + "coordinates": [ + [ + -80.513992, + 28.069557 + ], + [ + -80.48584, + 28.042289 + ], + [ + -80.505753, + 28.028349 + ], + [ + -80.476913, + 28.021075 + ], + [ + -80.49202, + 27.998039 + ], + [ + -80.4673, + 27.962263 + ], + [ + -80.46524, + 27.9198 + ], + [ + -80.405502, + 27.930114 + ], + [ + -80.396576, + 27.980456 + ], + [ + -80.429535, + 27.990764 + ], + [ + -80.414429, + 28.009558 + ], + [ + -80.359497, + 27.972572 + ], + [ + -80.382156, + 27.913733 + ], + [ + -80.417862, + 27.88157 + ], + [ + -80.393829, + 27.854254 + ], + [ + -80.368423, + 27.888246 + ], + [ + -80.354691, + 27.868824 + ], + [ + -80.359497, + 27.842112 + ], + [ + -80.399323, + 27.82511 + ], + [ + -80.400696, + 27.793528 + ], + [ + -80.361557, + 27.786846 + ], + [ + -80.359325, + 27.806853 + ], + [ + -80.354991, + 27.796831 + ], + [ + -80.328727, + 27.808485 + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/multilinestring.geojson b/lib/turf-simplify/test/out/multilinestring.geojson new file mode 100644 index 0000000..f8b7208 --- /dev/null +++ b/lib/turf-simplify/test/out/multilinestring.geojson @@ -0,0 +1,169 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiLineString", + "coordinates": [ + [ + [ + -80.513992, + 28.069557 + ], + [ + -80.48584, + 28.042289 + ], + [ + -80.505753, + 28.028349 + ], + [ + -80.476913, + 28.021075 + ], + [ + -80.49202, + 27.998039 + ], + [ + -80.4673, + 27.962263 + ], + [ + -80.46524, + 27.9198 + ], + [ + -80.405502, + 27.930114 + ], + [ + -80.396576, + 27.980456 + ], + [ + -80.429535, + 27.990764 + ], + [ + -80.414429, + 28.009558 + ], + [ + -80.359497, + 27.972572 + ], + [ + -80.382156, + 27.913733 + ], + [ + -80.417862, + 27.88157 + ], + [ + -80.393829, + 27.854254 + ], + [ + -80.368423, + 27.888246 + ], + [ + -80.354691, + 27.868824 + ], + [ + -80.359497, + 27.842112 + ], + [ + -80.399323, + 27.82511 + ], + [ + -80.400696, + 27.793528 + ], + [ + -80.361557, + 27.786846 + ], + [ + -80.359325, + 27.806853 + ], + [ + -80.354991, + 27.796831 + ], + [ + -80.328727, + 27.808485 + ] + ], + [ + [ + -80.511932, + 28.091366 + ], + [ + -80.4776, + 28.074404 + ], + [ + -80.46936, + 28.010164 + ], + [ + -80.454254, + 27.996827 + ], + [ + -80.444641, + 28.029561 + ], + [ + -80.355377, + 27.991976 + ], + [ + -80.348511, + 27.947099 + ], + [ + -80.323792, + 27.937394 + ], + [ + -80.340271, + 27.879142 + ], + [ + -80.352631, + 27.909486 + ], + [ + -80.367737, + 27.858504 + ], + [ + -80.340271, + 27.822074 + ], + [ + -80.292206, + 27.853647 + ], + [ + -80.303192, + 27.860932 + ], + [ + -80.293579, + 27.894922 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/multipoint.geojson b/lib/turf-simplify/test/out/multipoint.geojson new file mode 100644 index 0000000..117a773 --- /dev/null +++ b/lib/turf-simplify/test/out/multipoint.geojson @@ -0,0 +1,17 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "MultiPoint", + "coordinates": [ + [ + 0, + 0 + ], + [ + 1, + 2 + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/multipolygon.geojson b/lib/turf-simplify/test/out/multipolygon.geojson new file mode 100644 index 0000000..0b90d85 --- /dev/null +++ b/lib/turf-simplify/test/out/multipolygon.geojson @@ -0,0 +1,88 @@ +{ + "type": "Feature", + "properties": { + "country": "South Africa", + "tolerance": 0.01 + }, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 19.41807, + -34.68668 + ], + [ + 19.41455, + -34.68997 + ], + [ + 19.40993, + -34.68798 + ], + [ + 19.41807, + -34.68668 + ] + ] + ], + [ + [ + [ + 19.4188, + -34.67816 + ], + [ + 19.42342, + -34.68024 + ], + [ + 19.41508, + -34.68598 + ], + [ + 19.4188, + -34.67816 + ] + ] + ], + [ + [ + [ + 19.45629, + -34.39274 + ], + [ + 19.55599, + -34.38974 + ], + [ + 19.68811, + -34.76532 + ], + [ + 19.67762, + -34.78188 + ], + [ + 19.63818, + -34.77916 + ], + [ + 19.59412, + -34.73309 + ], + [ + 19.49554, + -34.67162 + ], + [ + 19.45629, + -34.39274 + ] + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/point.geojson b/lib/turf-simplify/test/out/point.geojson new file mode 100644 index 0000000..d5078a1 --- /dev/null +++ b/lib/turf-simplify/test/out/point.geojson @@ -0,0 +1,11 @@ +{ + "type": "Feature", + "properties": {}, + "geometry": { + "type": "Point", + "coordinates": [ + 5, + 1 + ] + } +} diff --git a/lib/turf-simplify/test/out/poly-issue#555-5.geojson b/lib/turf-simplify/test/out/poly-issue#555-5.geojson new file mode 100644 index 0000000..87d63b9 --- /dev/null +++ b/lib/turf-simplify/test/out/poly-issue#555-5.geojson @@ -0,0 +1,59 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 0.00005 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.788024, + 45.345283 + ], + [ + -75.787931, + 45.345237 + ], + [ + -75.787975, + 45.345143 + ], + [ + -75.787855, + 45.345099 + ], + [ + -75.788023, + 45.345028 + ], + [ + -75.78814, + 45.345236 + ], + [ + -75.788024, + 45.345283 + ] + ], + [ + [ + -75.787933, + 45.345065 + ], + [ + -75.78793, + 45.34506 + ], + [ + -75.78793, + 45.345066 + ], + [ + -75.787933, + 45.345065 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/polygon.geojson b/lib/turf-simplify/test/out/polygon.geojson new file mode 100644 index 0000000..b6bd7b0 --- /dev/null +++ b/lib/turf-simplify/test/out/polygon.geojson @@ -0,0 +1,30 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 1, + "elevation": 25 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -75.51527, + 39.11245 + ], + [ + -75.142602, + 39.875538 + ], + [ + -75.813087, + 39.904921 + ], + [ + -75.51527, + 39.11245 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/test/out/simple-polygon.geojson b/lib/turf-simplify/test/out/simple-polygon.geojson new file mode 100644 index 0000000..bcaf956 --- /dev/null +++ b/lib/turf-simplify/test/out/simple-polygon.geojson @@ -0,0 +1,29 @@ +{ + "type": "Feature", + "properties": { + "tolerance": 100 + }, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 26.14843, + -28.297552 + ], + [ + 26.150354, + -28.302606 + ], + [ + 26.135463, + -28.304283 + ], + [ + 26.14843, + -28.297552 + ] + ] + ] + } +} diff --git a/lib/turf-simplify/types.ts b/lib/turf-simplify/types.ts new file mode 100644 index 0000000..5d12b48 --- /dev/null +++ b/lib/turf-simplify/types.ts @@ -0,0 +1,11 @@ +import {polygon, Feature, Polygon} from '@turf/helpers' +import simplify from './' + +const poly = polygon([[[0, 0], [10, 10], [20, 20], [0, 0]]]); + +// Output type is the same as Input type +const simple: Feature = simplify(poly); + +// Extra params +simplify(poly, {tolerance: 1}); +simplify(poly, {tolerance: 1, highQuality: true}); diff --git a/lib/wasm-util/README.md b/lib/wasm-util/README.md new file mode 100644 index 0000000..d51a884 --- /dev/null +++ b/lib/wasm-util/README.md @@ -0,0 +1 @@ +Utility function for handling emscripten modules and transfering arrays to and from module memory. \ No newline at end of file diff --git a/lib/wasm-util/coordinates.js b/lib/wasm-util/coordinates.js new file mode 100644 index 0000000..8d555be --- /dev/null +++ b/lib/wasm-util/coordinates.js @@ -0,0 +1,62 @@ +/* + Utility functions to store and load coordinates to and from module memory + Coordinates are assumed to be an array of coordinate pairs ([[x1,y1], [x2,y2], [x3,y3]]) +*/ + +/** + * Allocate memory for coordinates and stores them in a flat representation. + * Returns a pointer to the buffer. The length of the buffer is coords.length * 2 + * @param {*} module + * @param {Array} coords - An array of coordinate pairs + */ +export function storeCoords(module, coords) { + const buffer = module._malloc(coords.length * 2 * 8) + const heap = new Float64Array(module.HEAPF64.buffer, buffer, coords.length * 2) + for (let i = 0; i < coords.length; i++) { + heap[2*i] = coords[i][0] + heap[2*i + 1] = coords[i][1] + } + return buffer +} + +/** + * Loads coordinates from the memory by the result pointer. + * Frees the resultpointer and the result before returning + * @param {*} module + * @param {*} result - pointer to Uint32 array of length 2. Stores the resultPointer and resultLength + */ +export function loadResultAndFreeMemory(module, result) { + const [resultPointer, resultLength] = new Uint32Array(module.HEAPU32.buffer, result, 2) + const simplified = new Float64Array(module.HEAPF64.buffer, resultPointer, resultLength) + const coords = unflattenCoords(simplified) + module._free(result) + module._free(resultPointer) + return coords +} + +/** + * Loads coordinates from the memory by the result pointer without freeing memory. + * For benchmarking purposes + * @param {*} module + * @param {*} result - pointer to Uint32 array of length 2. Stores the resultPointer and resultLength + */ +export function loadResult(module, result) { + const [resultPointer, resultLength] = new Uint32Array(module.HEAPU32.buffer, result, 2) + const simplified = new Float64Array(module.HEAPF64.buffer, resultPointer, resultLength) + return unflattenCoords(simplified) +} + +/** + * Transforms a flat array to an array coordinate pairs + * @param {Array} flattened - length must be even + */ +export function unflattenCoords (flattened) { + const coords = [] + let x, y + for (let i = 0; i < flattened.length; i += 2) { + x = flattened[i] + y = flattened[i + 1] + coords.push([x, y]) + } + return coords +} diff --git a/lib/wasm-util/initEmscripten.js b/lib/wasm-util/initEmscripten.js new file mode 100644 index 0000000..9f5ea45 --- /dev/null +++ b/lib/wasm-util/initEmscripten.js @@ -0,0 +1,28 @@ +/** + * Promisify emscripten modules + * + * idea taken from squoosh app: https://raw.githubusercontent.com/GoogleChromeLabs/squoosh/master/src/codecs/util.ts + * + * usage: + * // create a global variable to store the initialized module once + * let emscriptenModule + * + * // inside an async function: + * // use the global as cache to the module or initialize it + * if (!emscriptenModule) emscriptenModule = initEmscriptenModule(importedGlueCode, urlToWasmFile) + * const module = await emscriptenModule + */ +export function initEmscriptenModule(moduleFactory, wasmUrl) { + return new Promise (resolve => { + const module = moduleFactory({ + noInitialRun: true, + locateFile: (url) => wasmUrl ? wasmUrl : url, + onRuntimeInitialized () { + // hack: deleting then breaks an infinite loop + // https://github.com/emscripten-core/emscripten/issues/5820 + delete module.then + resolve(module) + } + }) + }) +} diff --git a/scripts/bundle-size.sh b/scripts/bundle-size.sh new file mode 100755 index 0000000..70b8cc9 --- /dev/null +++ b/scripts/bundle-size.sh @@ -0,0 +1,26 @@ +#!/usr/bin/env bash +# Prints the size of a file + gzipped size + +human_print(){ +while read B dummy; do + [ $B -lt 1024 ] && echo ${B} bytes && break + KB=$(((B+512)/1024)) + [ $KB -lt 1024 ] && echo ${KB} kilobytes && break + MB=$(((KB+512)/1024)) + [ $MB -lt 1024 ] && echo ${MB} megabytes && break + GB=$(((MB+512)/1024)) + [ $GB -lt 1024 ] && echo ${GB} gigabytes && break + echo $(((GB+512)/1024)) terabytes +done +} + +export FILE_NAME=$1 + +export UNCOMPRESSED_FILE_SIZE=`wc -c < $FILE_NAME` +export GZIPPED_FILE_SIZE=`gzip -c < $FILE_NAME | wc -c` + +echo "Bundle size: $(echo $UNCOMPRESSED_FILE_SIZE | human_print)" +echo "gzipped size: $(echo $GZIPPED_FILE_SIZE | human_print)" +echo +echo "Machine readable:" +echo "BUNDLE_SIZE: $UNCOMPRESSED_FILE_SIZE,$GZIPPED_FILE_SIZE" diff --git a/thesis/chapters/chapter01.tex b/thesis/chapters/chapter01.tex new file mode 100644 index 0000000..92b69a2 --- /dev/null +++ b/thesis/chapters/chapter01.tex @@ -0,0 +1,13 @@ +% Principles + +\subsection{Polygon basics} + +\subsubsection{Topological aspects} + +\subsection{LineString simplification} + +\subsubsection{Positional errors} + +\subsubsection{Length errors} + +\subsubsection{Area Errors} \ No newline at end of file diff --git a/thesis/chapters/chapter02.tex b/thesis/chapters/chapter02.tex new file mode 100644 index 0000000..ef43c08 --- /dev/null +++ b/thesis/chapters/chapter02.tex @@ -0,0 +1,4 @@ +LineString Simplification. Compression and Heuristics. + +Compare compression analysis too image compression. + diff --git a/thesis/chapters/chapter03.tex b/thesis/chapters/chapter03.tex new file mode 100644 index 0000000..50e87d0 --- /dev/null +++ b/thesis/chapters/chapter03.tex @@ -0,0 +1,27 @@ +Compression algorithms. + +\subsection{n-th point algorithm} + +\subsection{Random-point routine} + +\subsection{Radial distance algorithm} + +\subsection{Perpendicular distance algorithm} + +\subsection{Reumann-Witkam simplification} + +\subsection{Opheim simplification} + +\subsection{Lang simplification} + +\subsection{Douglas-Peucker simplification} + +\subsubsection{with reduction parameter} + +\subsection{Jenks simplification} + +\subsection{Visvalingam-Whyatt simplification} + +\subsection{Zhao-Saalfeld simplification} + +\subsection{Summary} \ No newline at end of file diff --git a/thesis/chapters/chapter04.tex b/thesis/chapters/chapter04.tex new file mode 100644 index 0000000..5a3e3e1 --- /dev/null +++ b/thesis/chapters/chapter04.tex @@ -0,0 +1,50 @@ +% The Web Platform + + + +\subsection{Introduction to Webassembly} + +\todo[inline]{Present WebAssembly} + +\subsubsection{Existing compilers} + +\todo[inline]{Languages from which to compile} +\todo[inline]{emscripten} +\todo[inline]{assemblyscript} +\todo[inline]{rust} + +\subsubsection{Technical hurdles} + +\todo[inline]{Managing memory} +\todo[inline]{passing arrays} + +\subsubsection{Benefits of WebAssembly} + +Why are people going through the hassle of bringing machine code to a platform with a working scripting engine. Is javascript really that aweful. It is often stated that WebAssembly can bring performance benefits. It makes sense that statically typed machine code beats scripting languages performance wise. It has to be observed however if the overhead of switching contexts will neglect this performance gain. Javascript has made a lot of performance improvements over the past years. Not at least Googles development on the V8 engine has brought Javascript to an acceptable speed for extensive calculations. The engine observes the execution of running javascript code and will perform optimizations that can be compared to optimizations of compilers. + +\todo[inline]{Get chart and source of js performance} +\todo[inline]{Source for V8 performance observation} + +The javascript ecosystem has rapidly evolved the past years. Thanks to package managers like bower, npm and yarn it is super simple to pull code from external sources into ones codebase. In course of this growth many algorithms and implementations have been ported to javascript for use on the web. After all it is however not more then that. A port splits communities and contradicts the DRY principle. With WebAssembly existing work of many programmers can be reused as is for usage on the web. This is the second benefit proposed by the technology. Whole libraries exclusive for native development could be imported by a few simple tweaks. Codecs not supported by browsers can be made available for use in any browser supporting WebAssembly. One example could be the promising AV1 codec + +\todo[inline]{more about av1} + +To summarize the two main benefits that are expected from WebAssembly are perfomance and integration. In this thesis these two benefits will be tested. + + +\subsection{Two test cases - performance and integration} + +The benefits that WebAssembly promises shall be tested in two seperate Webpages. One for the performance measurements and one to test the integration of existing libraries. + +\paragraph{Performance} + +As it is the most applicated algorithm the Douglas-Peucker algorithm will be used for measuring performance. A Javascript implementation is quickly found. simplifyJS. It is the package used by Turf, the most used for geospatial calculations. To produce comparable results the implementation will be based on this package. Since WebAssembly defines a compilation goal several languages can be used for this test. + +\todo[inline]{source for simplify JS} +\todo[inline]{source for turf} + +\paragraph{Integration} + +An existing implementation of several simplification algorithms has found in the C++ ecosystem. psimpl implements x algorithms distributed as a single header file. It also provides a function for measuring positional errors making it ideal for use in a quality analysis tool for those algorithms. + + diff --git a/thesis/chapters/chapter05.tex b/thesis/chapters/chapter05.tex new file mode 100644 index 0000000..6ffcbb2 --- /dev/null +++ b/thesis/chapters/chapter05.tex @@ -0,0 +1,39 @@ +% Performance benchmark + +In this chapter i will explain the approach to improve the performance of a simplification algorithm in a web browser via WebAssembly. The go-to library for this kind of operation is simplifyJS. It is the javascript implementation of the Douglas-Peucker algorithm with optional radial distance preprocessing. The library will be rebuilt in the C programming language and compiled to Webassembly with emscripten. A webpage is built to produce benchmarking insights to compare the two approaches performance wise. + +\subsection{State of the art: simplifyJS} +% simplifyJS + turf + +Simplify.JS calls itself a "tiny high-performance JavaScript polyline simplification library. It was extracted from Leaflet, the "leading open-source JavaScript library for mobile-friendly interactive maps". Due to its usage in leaflet and Turf.js, a geospatial analysis library, it is the most common used library for polyline simplification. + +The library itself has currently 20,066 weekly downloads while the Turf.js derivate @turf/simplify has 30,389. + +The Douglas-Peucker algorithm is implemented with an optional radial distance preprocessing routine. This preprocessing trades performance for quality. Thus the mode for disabling this routine is called "highest quality". + +Interestingly the library expects coordinates to be a list of object with x and y properties. \todo{reference object vs array form} GeoJSON and TopoJSON however store Polylines in nested array form. Luckily since the library is small and written in javascript any skilled webdeveloper can easily fork and modify the code for his own purpose. This is even pointed out in the source code. The fact that Turf.js, which can be seen as a convenience wrapper for processing GeoJSON data, decided to keep the library as is might indicate a performance benefit to this format. Listing \ref{lst:turf-transformation} shows how Turf.js calls Simplify.js. Instead of altering the source code the data is transformed back and forth between the formats on each call as it is seen in listing. It is questionable if this practice is advisable at all. + +\lstinputlisting[ + float, floatplacement=H, + language=javascript, + firstline=116, lastline=122, + caption=Turf.js usage of simplify.js, + label=lst:turf-transformation +]{../lib/turf-simplify/index.js} + +Since it is not clear which case is faster, and given how simple the required changes are, two versions of Simplify.js will be tested: the original version, which expects the coordinates to be in array-of-objects form and the altered version, which operates on nested arrays. Listing \ref{lst:diff-simplify.js} shows an extract of the changes performed on the library. Instead of using properties, the coordinate values are accessed by index. Except for the removal of the lisencing header the alterations are restricted to these kind of changes. The full list of changes can be viewed in \texttt{lib/simplify-js-alternative/simplify.diff}. + + +\lstinputlisting[ + float, floatplacement=H, + language=diff, + firstline=11, lastline=16, + caption=Snippet of the difference between the original Simplify.js and alternative, + label=lst:diff-simplify.js +]{../lib/simplify-js-alternative/simplify.diff} + +\subsection{The webassembly solution} + +Just like the simplify-js library the webassembly solution requires the data to be transformed for processing. Meant with that is the storing and loading of bytes into and from the module heap. This transformations however are intensive ones and not as easy to overcome. In a larger project the data may already be managed in a webassembly module. So the raw execution time might be relevant as well. To make assumptions about the real-world usage of WebAssembly in this case there will be seperate measurements for storing and loading of data and the execution. + +\subsection{The implementation} \ No newline at end of file diff --git a/thesis/chapters/chapter06.tex b/thesis/chapters/chapter06.tex new file mode 100644 index 0000000..9d1b6d7 --- /dev/null +++ b/thesis/chapters/chapter06.tex @@ -0,0 +1,11 @@ +\subsection{State of the art: psimpl} + +\subsection{Compiling to webassembly} + +\subsubsection{Introduction to emscripten} + +\subsection{Preserving topology GeoJSON vs TopoJSON} + +\todo[inline]{object form vs array form} + +\subsection{The implementation} \ No newline at end of file diff --git a/thesis/chapters/conclusion.tex b/thesis/chapters/conclusion.tex new file mode 100644 index 0000000..4adbb06 --- /dev/null +++ b/thesis/chapters/conclusion.tex @@ -0,0 +1 @@ +Enhancement: Line Smoothing as preprocessing step diff --git a/thesis/chapters/introduction.tex b/thesis/chapters/introduction.tex new file mode 100644 index 0000000..12d2362 --- /dev/null +++ b/thesis/chapters/introduction.tex @@ -0,0 +1,36 @@ +% Introduction + +% Fragestellung & Zielsetzung - aim & research objectives +% Forschungsstand - +% Vorgehensweise +% Inhalt + +% Why important, who participants, trends, + + + +Compression of polygonal data structures is the task of simplifying geometries while preseving topological characteristics. The simplification often takes the form of removing points that make up the geometry. There are several solutions that tackle the problem in different ways. This thesis aims to compare and classify these solutions by various heuristics. Performance and compression rate are quantitative heuristic used. Positional, length and area errors will also be measured to quantify simplification errors. Qualitative heuristics will be determined by a user study. With the rising trend of moving desktop applications to the web platform also geographic information systems (GIS) have experienced the shift towards web browsers [example ESRI Web Gis]. Performance is critical in these applications. Since simplification is an important factor to performance the solutions will be tested by constructing a web application using a technology called WebAssembly. + + +\subsection{Binary instruction sets on the web platform} + +The recent development of WebAssembly allows code written in various programming languages to be run natively in web browsers. A privilege thus far only granted to the Javascript programming language. The goals of WebAssembly are to define a binary instruction format as a compilation target to execute code at native speed and taking advantage of common hardware capabilities [web-source wasm]. The integration into the web platform brings portability to a wide range of platforms like mobile and internet of things (IoT). The usage of this technology promises performance gains that will be tested by this thesis. The results can give conclusions to whether WebAssembly is worth a consideration for web applications with geographic computational aspects. WebGIS is an example technology that would benefit greatly of such an advancement. Thus far WebAssembly has been shipped to the stable version of the four most used browser engines [source]. The mainly targeted high-level languages for compilation are C and C++ [wasm-specs]. Also a compiler for Rust has been developed [rust-wasm working group]. It will be explored how existing implementations could easily be adopted when using a compiler. + +\subsection{Performance as important factor for web applications} + +Performance is one of the factors users complain the most about in websites. [Some study] shows that insufficient UI-performance is the main reason for negative user experience. [Another study] states that users will immediately leave websites after only 2 seconds of unresponsiveness. There has been a rapid growth of complex applications running in web-browsers [source]. These so called progressive web apps (PWA) combine the fast reachability of web pages with the feature richness of locally installed applications. Even though these applications can grow quire complex, the requirement for fast page loads and short time to user interaction still remains. One way to cope this need is the use of compression algorithms to reduce the amount of data transmitted and processed. Compression can be lossless. This is often used for the purpose of data transmission. Web servers use lossless compression algorithms like gzip to deflate data. Browsers that implement these algorithms can then fully restore the requested ressources resulting in lower bandwidth usage. Another form of compression removes information of the data in a way that cannot be restored. This is called lossy compression. The most common usage on the web is the compression of image data. + +\subsection{Topology simplification for rendering performance} + +While compression is often used to minimize bandwidth usage the compression of geospatial data can particulary influence rendering performance. The bottleneck for rendering often is the svg transformation used to display topology on the web [source]. Implementing simplification algorithms for use on the web platform can lead to smoother user experience when working with large geodata sets. + +\subsection{Structure of this thesis} + +This thesis is structured into a theoretical and a practical component. First the theoretical principles will be reviewed. Topology of polygonal data will be explained as how to store geodata. Also the fundamentals of LineString simplification will be covered. + +Then a number of algorithms will be introduced. In this section the each algorithm will be dissected by complexity, characteristics and the possible influence to the heuristics mentioned above. + +In the fourth chapter the practical implementation will be presented. This section will dig deeper in several topics important to web development. Such as single page applications, WebAssembly and how web workers will be used for asynchronous execution. The developed application will aim to implement modern best practices in web development such fast time to first user interaction and deferred loading of modules. + +The fifth chapter explains how performance will be measured in the web application. After presenting the +results the concluion chapter will finish the thesis. diff --git a/thesis/chapters/results.tex b/thesis/chapters/results.tex new file mode 100644 index 0000000..b188ca5 --- /dev/null +++ b/thesis/chapters/results.tex @@ -0,0 +1,3 @@ +\subsection{Benchmark results} + +\subsection{Comparing the results of different algorithms} \ No newline at end of file diff --git a/thesis/custom-listing.tex b/thesis/custom-listing.tex new file mode 100644 index 0000000..4642a30 --- /dev/null +++ b/thesis/custom-listing.tex @@ -0,0 +1,140 @@ +\definecolor{mygreen}{rgb}{0,0.6,0} +\definecolor{mygray}{rgb}{0.5,0.5,0.5} +\definecolor{mymauve}{rgb}{0.58,0,0.82} +\definecolor{darkgray}{rgb}{.4,.4,.4} +\definecolor{purple}{rgb}{0.65, 0.12, 0.82} + +% === Customize a bit the look === +\lstset{ % + backgroundcolor=\color{white}, % choose the background color; you must add \usepackage{color} or \usepackage{xcolor} + basicstyle=\footnotesize, % the size of the fonts that are used for the code + breakatwhitespace=false, % sets if automatic breaks should only happen at whitespace + breaklines=true, % sets automatic line breaking + captionpos=b, % sets the caption-position to bottom + commentstyle=\color{mygreen}, % comment style + deletekeywords={...}, % if you want to delete keywords from the given language + escapeinside={\%*}{*)}, % if you want to add LaTeX within your code + extendedchars=true, % lets you use non-ASCII characters; for 8-bits encodings only, does not work with UTF-8 + frame=single, % adds a frame around the code + keepspaces=true, % keeps spaces in text, useful for keeping indentation of code (possibly needs columns=flexible) + keywordstyle=\color{blue}, % keyword style + % language=Octave, % the language of the code + morekeywords={*,...}, % if you want to add more keywords to the set + numbers=left, % where to put the line-numbers; possible values are (none, left, right) + numbersep=5pt, % how far the line-numbers are from the code + numberstyle=\tiny\color{mygray}, % the style that is used for the line-numbers + rulecolor=\color{black}, % if not set, the frame-color may be changed on line-breaks within not-black text (e.g. comments (green here)) + showspaces=false, % show spaces everywhere adding particular underscores; it overrides 'showstringspaces' + showstringspaces=false, % underline spaces within strings only + showtabs=false, % show tabs within strings adding particular underscores + stepnumber=1, % the step between two line-numbers. If it's 1, each line will be numbered + stringstyle=\color{mymauve}, % string literal style + tabsize=2, % sets default tabsize to 2 spaces + title=\lstname, % show the filename of files included with \lstinputlisting; also try caption instead of title + aboveskip=1em, + belowskip=1em +} +% END of listing package + +% === define Javascript language === +\lstdefinelanguage{JavaScript}{ + keywords={typeof, new, true, false, catch, function, return, null, catch, switch, var, if, in, while, do, else, case, break}, + keywordstyle=\color{blue}\bfseries, + ndkeywords={class, export, boolean, throw, implements, import, this}, + ndkeywordstyle=\color{darkgray}\bfseries, + identifierstyle=\color{black}, + sensitive=false, + comment=[l]{//}, + morecomment=[s]{/*}{*/}, + commentstyle=\color{purple}\ttfamily, + stringstyle=\color{red}\ttfamily, + morestring=[b]', + morestring=[b]" +} + +\lstset{ + language=JavaScript, + extendedchars=true, + basicstyle=\footnotesize\ttfamily, + showstringspaces=false, + showspaces=false, + numbers=left, + numberstyle=\footnotesize, + numbersep=9pt, + tabsize=2, + breaklines=true, + showtabs=false, + captionpos=b +} + +% === define diff === + +\lstdefinelanguage{diff}{ + sensitive=true, + % diff command line + morecomment=[f][\color{gray}][0]{diff}, + % commit identifiers for git diff + morecomment=[f][\color{gray}][0]{index}, + % hunk location/line numbers for unified format + morecomment=[f][\color{blue}][0]{@@}, + % hunk location/line numbers for context format + morecomment=[f][\color{magenta}][0]{***}, + % changed line for context format + morecomment=[f][\color{violet}][0]{!}, + % deleted lines for unified format + morecomment=[f][\color{red!60!black}][0]-, + % added lines for unified format + morecomment=[f][\color{green!60!black}][0]+, + % file name and time stamp old file + morecomment=[f][\color{magenta}][0]{---}, + % file name and time stamp new file + morecomment=[f][\color{magenta}][0]{+++}, + % Binary files ... differ + morecomment=[f][\color{gray}][0]{Binary}, + % Only in ...: file.txt + morecomment=[f][\color{gray}][0]{Only}, + % old mode ... + morecomment=[f][\color{gray}][0]{old}, + % new mode ... + morecomment=[f][\color{gray}][0]{new}, + % rename from/to ... + morecomment=[f][\color{gray}][0]{rename}, + % similarity index ...% + morecomment=[f][\color{gray}][0]{similarity}, + % deleted file mode ...% + morecomment=[f][\color{gray}][0]{deleted}, + % hunk separator for context format + morecomment=[f][\color{magenta}][0]{***************}, + % deleted lines for normal format + morecomment=[f][\color{red!60!black}][0]<, + % added lines for normal format + morecomment=[f][\color{green!60!black}][0]>, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{0}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{1}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{2}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{3}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{4}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{5}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{6}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{7}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{8}, + % line number specifier for normal format + morecomment=[f][\color{blue}][0]{9}, +}[comments] + +\lstdefinelanguage{diff2}{ + morecomment=[f][\color{blue}]{@@}, % group identifier + morecomment=[f][\color{red}]-, % deleted lines + morecomment=[f][\color{green}]+, % added lines + morecomment=[f][\color{magenta}]{---}, % Diff header lines (must appear after +,-) + morecomment=[f][\color{magenta}]{+++}, +} diff --git a/thesis/images/uni-augsburg.jpeg b/thesis/images/uni-augsburg.jpeg new file mode 100644 index 0000000000000000000000000000000000000000..7111e4b21fdc01a2861d340ffe568447b801d51b GIT binary patch literal 25122 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 TSco)P?l{bxWE|u$olpM +(/usr/share/texlive/texmf-dist/tex/latex/base/article.cls +Document Class: article 2018/09/03 v1.4i Standard LaTeX document class +(/usr/share/texlive/texmf-dist/tex/latex/base/size12.clo +File: size12.clo 2018/09/03 v1.4i Standard LaTeX file (size option) +) +\c@part=\count80 +\c@section=\count81 +\c@subsection=\count82 +\c@subsubsection=\count83 +\c@paragraph=\count84 +\c@subparagraph=\count85 +\c@figure=\count86 +\c@table=\count87 +\abovecaptionskip=\skip41 +\belowcaptionskip=\skip42 +\bibindent=\dimen102 +) +(/usr/share/texlive/texmf-dist/tex/latex/base/inputenc.sty +Package: inputenc 2018/08/11 v1.3c Input encoding file +\inpenc@prehook=\toks14 +\inpenc@posthook=\toks15 +) +(/usr/share/texlive/texmf-dist/tex/latex/setspace/setspace.sty +Package: setspace 2011/12/19 v6.7a set line spacing +) +(/usr/share/texlive/texmf-dist/tex/latex/geometry/geometry.sty +Package: geometry 2018/04/16 v5.8 Page Geometry + +(/usr/share/texlive/texmf-dist/tex/latex/graphics/keyval.sty +Package: keyval 2014/10/28 v1.15 key=value parser (DPC) +\KV@toks@=\toks16 +) +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifpdf.sty +Package: ifpdf 2018/09/07 v3.3 Provides the ifpdf switch +) +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifvtex.sty +Package: ifvtex 2016/05/16 v1.6 Detect VTeX and its facilities (HO) +Package ifvtex Info: VTeX not detected. +) +(/usr/share/texlive/texmf-dist/tex/generic/ifxetex/ifxetex.sty +Package: ifxetex 2010/09/12 v0.6 Provides ifxetex conditional +) +\Gm@cnth=\count88 +\Gm@cntv=\count89 +\c@Gm@tempcnt=\count90 +\Gm@bindingoffset=\dimen103 +\Gm@wd@mp=\dimen104 +\Gm@odd@mp=\dimen105 +\Gm@even@mp=\dimen106 +\Gm@layoutwidth=\dimen107 +\Gm@layoutheight=\dimen108 +\Gm@layouthoffset=\dimen109 +\Gm@layoutvoffset=\dimen110 +\Gm@dimlist=\toks17 +) +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphicx.sty +Package: graphicx 2017/06/01 v1.1a Enhanced LaTeX Graphics (DPC,SPQR) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics/graphics.sty +Package: graphics 2017/06/25 v1.2c Standard LaTeX Graphics (DPC,SPQR) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics/trig.sty +Package: trig 2016/01/03 v1.10 sin cos tan (DPC) +) +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/graphics.cfg +File: graphics.cfg 2016/06/04 v1.11 sample graphics configuration +) +Package graphics Info: Driver file: pdftex.def on input line 99. + +(/usr/share/texlive/texmf-dist/tex/latex/graphics-def/pdftex.def +File: pdftex.def 2018/01/08 v1.0l Graphics/color driver for pdftex +)) +\Gin@req@height=\dimen111 +\Gin@req@width=\dimen112 +) +(/usr/share/texlive/texmf-dist/tex/latex/todonotes/todonotes.sty +Package: todonotes 2019/01/24 v1.1.2 Todonotes source and documentation. +Package: todonotes 2018/11/22 + +(/usr/share/texlive/texmf-dist/tex/latex/base/ifthen.sty +Package: ifthen 2014/09/29 v1.1c Standard LaTeX ifthen package (DPC) +) +(/usr/share/texlive/texmf-dist/tex/latex/xkeyval/xkeyval.sty +Package: xkeyval 2014/12/03 v2.7a package option processing (HA) + +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkeyval.tex +(/usr/share/texlive/texmf-dist/tex/generic/xkeyval/xkvutils.tex +\XKV@toks=\toks18 +\XKV@tempa@toks=\toks19 +) +\XKV@depth=\count91 +File: xkeyval.tex 2014/12/03 v2.7a key=value parser (HA) +)) +(/usr/share/texlive/texmf-dist/tex/latex/xcolor/xcolor.sty +Package: xcolor 2016/05/11 v2.12 LaTeX color extensions (UK) + +(/usr/share/texlive/texmf-dist/tex/latex/graphics-cfg/color.cfg +File: color.cfg 2016/01/02 v1.6 sample color configuration +) +Package xcolor Info: Driver file: pdftex.def on input line 225. +Package xcolor Info: Model `cmy' substituted by `cmy0' on input line 1348. +Package xcolor Info: Model `hsb' substituted by `rgb' on input line 1352. +Package xcolor Info: Model `RGB' extended on input line 1364. +Package xcolor Info: Model `HTML' substituted by `rgb' on input line 1366. +Package xcolor Info: Model `Hsb' substituted by `hsb' on input line 1367. +Package xcolor Info: Model `tHsb' substituted by `hsb' on input line 1368. +Package xcolor Info: Model `HSB' substituted by `hsb' on input line 1369. +Package xcolor Info: Model `Gray' substituted by `gray' on input line 1370. +Package xcolor Info: Model `wave' substituted by `hsb' on input line 1371. +) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/frontendlayer/tikz.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgf.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfrcs.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common.tex +\pgfutil@everybye=\toks20 +\pgfutil@tempdima=\dimen113 +\pgfutil@tempdimb=\dimen114 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-common-lists.t +ex)) (/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfutil-latex.def +\pgfutil@abb=\box27 +(/usr/share/texlive/texmf-dist/tex/latex/ms/everyshi.sty +Package: everyshi 2001/05/15 v3.00 EveryShipout Package (MS) +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfrcs.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/pgf.revision.tex) +Package: pgfrcs 2019/02/02 v3.1.1 (3.1.1) +)) +Package: pgf 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/latex/pgf/basiclayer/pgfcore.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/systemlayer/pgfsys.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys.code.tex +Package: pgfsys 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex +\pgfkeys@pathtoks=\toks21 +\pgfkeys@temptoks=\toks22 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeysfiltered.code.t +ex +\pgfkeys@tmptoks=\toks23 +)) +\pgf@x=\dimen115 +\pgf@y=\dimen116 +\pgf@xa=\dimen117 +\pgf@ya=\dimen118 +\pgf@xb=\dimen119 +\pgf@yb=\dimen120 +\pgf@xc=\dimen121 +\pgf@yc=\dimen122 +\w@pgf@writea=\write3 +\r@pgf@reada=\read1 +\c@pgf@counta=\count92 +\c@pgf@countb=\count93 +\c@pgf@countc=\count94 +\c@pgf@countd=\count95 +\t@pgf@toka=\toks24 +\t@pgf@tokb=\toks25 +\t@pgf@tokc=\toks26 +\pgf@sys@id@count=\count96 + (/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgf.cfg +File: pgf.cfg 2019/02/02 v3.1.1 (3.1.1) +) +Driver file for pgf: pgfsys-pdftex.def + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-pdftex.def +File: pgfsys-pdftex.def 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsys-common-pdf.de +f +File: pgfsys-common-pdf.def 2019/02/02 v3.1.1 (3.1.1) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsyssoftpath.code. +tex +File: pgfsyssoftpath.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgfsyssoftpath@smallbuffer@items=\count97 +\pgfsyssoftpath@bigbuffer@items=\count98 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/systemlayer/pgfsysprotocol.code. +tex +File: pgfsysprotocol.code.tex 2019/02/02 v3.1.1 (3.1.1) +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcore.code.tex +Package: pgfcore 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathcalc.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathutil.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathparser.code.tex +\pgfmath@dimen=\dimen123 +\pgfmath@count=\count99 +\pgfmath@box=\box28 +\pgfmath@toks=\toks27 +\pgfmath@stack@operand=\toks28 +\pgfmath@stack@operation=\toks29 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.code.tex +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.basic.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.trigonomet +ric.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.random.cod +e.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.comparison +.code.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.base.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.round.code +.tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.misc.code. +tex) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfunctions.integerari +thmetics.code.tex))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmathfloat.code.tex +\c@pgfmathroundto@lastzeros=\count100 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepoints.code.te +x +File: pgfcorepoints.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgf@picminx=\dimen124 +\pgf@picmaxx=\dimen125 +\pgf@picminy=\dimen126 +\pgf@picmaxy=\dimen127 +\pgf@pathminx=\dimen128 +\pgf@pathmaxx=\dimen129 +\pgf@pathminy=\dimen130 +\pgf@pathmaxy=\dimen131 +\pgf@xx=\dimen132 +\pgf@xy=\dimen133 +\pgf@yx=\dimen134 +\pgf@yy=\dimen135 +\pgf@zx=\dimen136 +\pgf@zy=\dimen137 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathconstruct. +code.tex +File: pgfcorepathconstruct.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgf@path@lastx=\dimen138 +\pgf@path@lasty=\dimen139 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathusage.code +.tex +File: pgfcorepathusage.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgf@shorten@end@additional=\dimen140 +\pgf@shorten@start@additional=\dimen141 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorescopes.code.te +x +File: pgfcorescopes.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgfpic=\box29 +\pgf@hbox=\box30 +\pgf@layerbox@main=\box31 +\pgf@picture@serial@count=\count101 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoregraphicstate.c +ode.tex +File: pgfcoregraphicstate.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgflinewidth=\dimen142 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransformation +s.code.tex +File: pgfcoretransformations.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgf@pt@x=\dimen143 +\pgf@pt@y=\dimen144 +\pgf@pt@temp=\dimen145 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorequick.code.tex +File: pgfcorequick.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreobjects.code.t +ex +File: pgfcoreobjects.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepathprocessing +.code.tex +File: pgfcorepathprocessing.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorearrows.code.te +x +File: pgfcorearrows.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgfarrowsep=\dimen146 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreshade.code.tex +File: pgfcoreshade.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgf@max=\dimen147 +\pgf@sys@shading@range@num=\count102 +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreimage.code.tex +File: pgfcoreimage.code.tex 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoreexternal.code. +tex +File: pgfcoreexternal.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgfexternal@startupbox=\box32 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorelayers.code.te +x +File: pgfcorelayers.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcoretransparency.c +ode.tex +File: pgfcoretransparency.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorepatterns.code. +tex +File: pgfcorepatterns.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/basiclayer/pgfcorerdf.code.tex +File: pgfcorerdf.code.tex 2019/02/02 v3.1.1 (3.1.1) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleshapes.code.tex +File: pgfmoduleshapes.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgfnodeparttextbox=\box33 +) (/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmoduleplot.code.tex +File: pgfmoduleplot.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-0-65 +.sty +Package: pgfcomp-version-0-65 2019/02/02 v3.1.1 (3.1.1) +\pgf@nodesepstart=\dimen148 +\pgf@nodesepend=\dimen149 +) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/compatibility/pgfcomp-version-1-18 +.sty +Package: pgfcomp-version-1-18 2019/02/02 v3.1.1 (3.1.1) +)) (/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgffor.sty +(/usr/share/texlive/texmf-dist/tex/latex/pgf/utilities/pgfkeys.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgfkeys.code.tex)) +(/usr/share/texlive/texmf-dist/tex/latex/pgf/math/pgfmath.sty +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/utilities/pgffor.code.tex +Package: pgffor 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/math/pgfmath.code.tex) +\pgffor@iter=\dimen150 +\pgffor@skip=\dimen151 +\pgffor@stack=\toks30 +\pgffor@toks=\toks31 +)) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/tikz.code.tex +Package: tikz 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryplothandlers +.code.tex +File: pgflibraryplothandlers.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgf@plot@mark@count=\count103 +\pgfplotmarksize=\dimen152 +) +\tikz@lastx=\dimen153 +\tikz@lasty=\dimen154 +\tikz@lastxsaved=\dimen155 +\tikz@lastysaved=\dimen156 +\tikzleveldistance=\dimen157 +\tikzsiblingdistance=\dimen158 +\tikz@figbox=\box34 +\tikz@figbox@bg=\box35 +\tikz@tempbox=\box36 +\tikz@tempbox@bg=\box37 +\tikztreelevel=\count104 +\tikznumberofchildren=\count105 +\tikznumberofcurrentchild=\count106 +\tikz@fig@count=\count107 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/modules/pgfmodulematrix.code.tex +File: pgfmodulematrix.code.tex 2019/02/02 v3.1.1 (3.1.1) +\pgfmatrixcurrentrow=\count108 +\pgfmatrixcurrentcolumn=\count109 +\pgf@matrix@numberofcolumns=\count110 +) +\tikz@expandcount=\count111 + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarytopaths.code.tex +File: tikzlibrarytopaths.code.tex 2019/02/02 v3.1.1 (3.1.1) +))) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibrarypositioning.code.tex +File: tikzlibrarypositioning.code.tex 2019/02/02 v3.1.1 (3.1.1) +) +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryshadows.code.tex +File: tikzlibraryshadows.code.tex 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/frontendlayer/tikz/libraries/tik +zlibraryfadings.code.tex +File: tikzlibraryfadings.code.tex 2019/02/02 v3.1.1 (3.1.1) + +(/usr/share/texlive/texmf-dist/tex/generic/pgf/libraries/pgflibraryfadings.code +.tex +File: pgflibraryfadings.code.tex 2019/02/02 v3.1.1 (3.1.1) +))) (/usr/share/texlive/texmf-dist/tex/latex/tools/calc.sty +Package: calc 2017/05/25 v4.3 Infix arithmetic (KKT,FJ) +\calc@Acount=\count112 +\calc@Bcount=\count113 +\calc@Adimen=\dimen159 +\calc@Bdimen=\dimen160 +\calc@Askip=\skip43 +\calc@Bskip=\skip44 +LaTeX Info: Redefining \setlength on input line 80. +LaTeX Info: Redefining \addtolength on input line 81. +\calc@Ccount=\count114 +\calc@Cskip=\skip45 +) +\c@@todonotes@numberoftodonotes=\count115 +) +(/usr/share/texlive/texmf-dist/tex/latex/fancyhdr/fancyhdr.sty +Package: fancyhdr 2019/01/31 v3.10 Extensive control of page headers and footer +s +\f@nch@headwidth=\skip46 +\f@nch@O@elh=\skip47 +\f@nch@O@erh=\skip48 +\f@nch@O@olh=\skip49 +\f@nch@O@orh=\skip50 +\f@nch@O@elf=\skip51 +\f@nch@O@erf=\skip52 +\f@nch@O@olf=\skip53 +\f@nch@O@orf=\skip54 +) +(/usr/share/texlive/texmf-dist/tex/latex/ms/ragged2e.sty +Package: ragged2e 2009/05/21 v2.1 ragged2e Package (MS) + +(/usr/share/texlive/texmf-dist/tex/latex/ms/everysel.sty +Package: everysel 2011/10/28 v1.2 EverySelectfont Package (MS) +) +\CenteringLeftskip=\skip55 +\RaggedLeftLeftskip=\skip56 +\RaggedRightLeftskip=\skip57 +\CenteringRightskip=\skip58 +\RaggedLeftRightskip=\skip59 +\RaggedRightRightskip=\skip60 +\CenteringParfillskip=\skip61 +\RaggedLeftParfillskip=\skip62 +\RaggedRightParfillskip=\skip63 +\JustifyingParfillskip=\skip64 +\CenteringParindent=\skip65 +\RaggedLeftParindent=\skip66 +\RaggedRightParindent=\skip67 +\JustifyingParindent=\skip68 +) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.sty +\lst@mode=\count116 +\lst@gtempboxa=\box38 +\lst@token=\toks32 +\lst@length=\count117 +\lst@currlwidth=\dimen161 +\lst@column=\count118 +\lst@pos=\count119 +\lst@lostspace=\dimen162 +\lst@width=\dimen163 +\lst@newlines=\count120 +\lst@lineno=\count121 +\lst@maxwidth=\dimen164 + +(/usr/share/texlive/texmf-dist/tex/latex/listings/lstmisc.sty +File: lstmisc.sty 2018/09/02 1.7 (Carsten Heinz) +\c@lstnumber=\count122 +\lst@skipnumbers=\count123 +\lst@framebox=\box39 +) +(/usr/share/texlive/texmf-dist/tex/latex/listings/listings.cfg +File: listings.cfg 2018/09/02 1.7 listings configuration +)) +Package: listings 2018/09/02 1.7 (Carsten Heinz) + +(./custom-listing.tex) (./main.aux) +\openout1 = `main.aux'. + +LaTeX Font Info: Checking defaults for OML/cmm/m/it on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for T1/cmr/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for OT1/cmr/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for OMS/cmsy/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for OMX/cmex/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. +LaTeX Font Info: Checking defaults for U/cmr/m/n on input line 33. +LaTeX Font Info: ... okay on input line 33. + +*geometry* driver: auto-detecting +*geometry* detected driver: pdftex +*geometry* verbose mode - [ preamble ] result: +* driver: pdftex +* paper: a4paper +* layout: +* layoutoffset:(h,v)=(0.0pt,0.0pt) +* modes: includehead +* h-part:(L,W,R)=(85.35826pt, 426.79134pt, 85.35828pt) +* v-part:(T,H,B)=(42.67912pt, 731.23584pt, 71.13188pt) +* \paperwidth=597.50787pt +* \paperheight=845.04684pt +* \textwidth=426.79134pt +* \textheight=691.23584pt +* \oddsidemargin=13.08827pt +* \evensidemargin=13.08827pt +* \topmargin=-29.59087pt +* \headheight=15.0pt +* \headsep=25.0pt +* \topskip=12.0pt +* \footskip=30.0pt +* \marginparwidth=56.9055pt +* \marginparsep=10.0pt +* \columnsep=10.0pt +* \skip\footins=10.8pt plus 4.0pt minus 2.0pt +* \hoffset=0.0pt +* \voffset=0.0pt +* \mag=1000 +* \@twocolumnfalse +* \@twosidefalse +* \@mparswitchfalse +* \@reversemarginfalse +* (1in=72.27pt=25.4mm, 1cm=28.453pt) + +(/usr/share/texlive/texmf-dist/tex/context/base/mkii/supp-pdf.mkii +[Loading MPS to PDF converter (version 2006.09.02).] +\scratchcounter=\count124 +\scratchdimen=\dimen165 +\scratchbox=\box40 +\nofMPsegments=\count125 +\nofMParguments=\count126 +\everyMPshowfont=\toks33 +\MPscratchCnt=\count127 +\MPscratchDim=\dimen166 +\MPnumerator=\count128 +\makeMPintoPDFobject=\count129 +\everyMPtoPDFconversion=\toks34 +) (/usr/share/texlive/texmf-dist/tex/latex/oberdiek/epstopdf-base.sty +Package: epstopdf-base 2016/05/15 v2.6 Base part for package epstopdf + +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/infwarerr.sty +Package: infwarerr 2016/05/16 v1.4 Providing info/warning/error messages (HO) +) +(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/grfext.sty +Package: grfext 2016/05/16 v1.2 Manage graphics extensions (HO) + +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvdefinekeys.sty +Package: kvdefinekeys 2016/05/16 v1.4 Define keys (HO) + +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ltxcmds.sty +Package: ltxcmds 2016/05/16 v1.23 LaTeX kernel commands for general use (HO) +))) +(/usr/share/texlive/texmf-dist/tex/latex/oberdiek/kvoptions.sty +Package: kvoptions 2016/05/16 v3.12 Key value format for package options (HO) + +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/kvsetkeys.sty +Package: kvsetkeys 2016/05/16 v1.17 Key value parser (HO) + +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/etexcmds.sty +Package: etexcmds 2016/05/16 v1.6 Avoid name clashes with e-TeX commands (HO) + +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/ifluatex.sty +Package: ifluatex 2016/05/16 v1.4 Provides the ifluatex switch (HO) +Package ifluatex Info: LuaTeX not detected. +)))) +(/usr/share/texlive/texmf-dist/tex/generic/oberdiek/pdftexcmds.sty +Package: pdftexcmds 2018/09/10 v0.29 Utility functions of pdfTeX for LuaTeX (HO +) +Package pdftexcmds Info: LuaTeX not detected. +Package pdftexcmds Info: \pdf@primitive is available. +Package pdftexcmds Info: \pdf@ifprimitive is available. +Package pdftexcmds Info: \pdfdraftmode found. +) +Package epstopdf-base Info: Redefining graphics rule for `.eps' on input line 4 +38. +Package grfext Info: Graphics extension search list: +(grfext) [.pdf,.png,.jpg,.mps,.jpeg,.jbig2,.jb2,.PDF,.PNG,.JPG,.JPE +G,.JBIG2,.JB2,.eps] +(grfext) \AppendGraphicsExtensions on input line 456. + +(/usr/share/texlive/texmf-dist/tex/latex/latexconfig/epstopdf-sys.cfg +File: epstopdf-sys.cfg 2010/07/13 v1.3 Configuration of (r)epstopdf for TeX Liv +e +)) +ABD: EveryShipout initializing macros ABD: EverySelectfont initializing macros +LaTeX Info: Redefining \selectfont on input line 33. +\c@lstlisting=\count130 + +File: images/uni-augsburg.jpeg Graphic file (type jpg) + +Package pdftex.def Info: images/uni-augsburg.jpeg used on input line 56. +(pdftex.def) Requested size: 170.71393pt x 87.56407pt. + +[1 + +{/var/lib/texmf/fonts/map/pdftex/updmap/pdftex.map} <./images/uni-augsburg.jpeg +>] [1] (./main.toc +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <12> on input line 2. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <8> on input line 2. +LaTeX Font Info: External font `cmex10' loaded for size +(Font) <6> on input line 2. + [2]) +\tf@toc=\write4 +\openout4 = `main.toc'. + + [3] (./chapters/content.tex +(./chapters/introduction.tex [1]) [2] (./chapters/chapter01.tex) [3] +(./chapters/chapter03.tex) [4] (./chapters/chapter04.tex [5]) [6] +(./chapters/chapter05.tex (../lib/turf-simplify/index.js +LaTeX Font Info: Font shape `OT1/cmtt/bx/n' in size <10> not available +(Font) Font shape `OT1/cmtt/m/n' tried instead on input line 116. +) +Overfull \hbox (28.87335pt too wide) in paragraph at lines 24--25 +\OT1/cmr/m/n/12 The full list of changes can be viewed in \OT1/cmtt/m/n/12 lib/ +simplify-js-alternative/simplify.diff\OT1/cmr/m/n/12 . + [] + +(../lib/simplify-js-alternative/simplify.diff) [7]) [8] +(./chapters/chapter06.tex) (./chapters/results.tex) [9] +(./chapters/conclusion.tex) [10]) (./main.lol) +\tf@lol=\write5 +\openout5 = `main.lol'. + + [11] (./main.aux) ) +Here is how much of TeX's memory you used: + 14824 strings out of 492615 + 287477 string characters out of 6131390 + 419968 words of memory out of 5000000 + 18408 multiletter control sequences out of 15000+600000 + 8583 words of font info for 31 fonts, out of 8000000 for 9000 + 1141 hyphenation exceptions out of 8191 + 62i,12n,81p,1332b,1290s stack positions out of 5000i,500n,10000p,200000b,80000s + + +Output written on main.pdf (15 pages, 134931 bytes). +PDF statistics: + 105 PDF objects out of 1000 (max. 8388607) + 64 compressed objects within 1 object stream + 0 named destinations out of 1000 (max. 500000) + 114 words of extra memory for PDF output out of 10000 (max. 10000000) + diff --git a/thesis/main.lol b/thesis/main.lol new file mode 100644 index 0000000..4f1baf8 --- /dev/null +++ b/thesis/main.lol @@ -0,0 +1,2 @@ +\contentsline {lstlisting}{\numberline {1}Turf.js usage of simplify.js}{8}% +\contentsline {lstlisting}{\numberline {2}Snippet of the difference between the original Simplify.js and alternative}{8}% diff --git a/thesis/main.pdf b/thesis/main.pdf new file mode 100644 index 0000000000000000000000000000000000000000..c2a4fa5eb3094bc53eda3235a9597aeb69f2deda GIT binary patch literal 134931 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 _X-SK?>uC$qI#it@$aOeR3?ZFgxn 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�wmvfa2=cpnCewNic?9 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